1 /* Connection tracking via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
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_seqadj.h>
41 #include <net/netfilter/nf_conntrack_l3proto.h>
42 #include <net/netfilter/nf_conntrack_l4proto.h>
43 #include <net/netfilter/nf_conntrack_tuple.h>
44 #include <net/netfilter/nf_conntrack_acct.h>
45 #include <net/netfilter/nf_conntrack_zones.h>
46 #include <net/netfilter/nf_conntrack_timestamp.h>
47 #include <net/netfilter/nf_conntrack_labels.h>
48 #ifdef CONFIG_NF_NAT_NEEDED
49 #include <net/netfilter/nf_nat_core.h>
50 #include <net/netfilter/nf_nat_l4proto.h>
51 #include <net/netfilter/nf_nat_helper.h>
54 #include <linux/netfilter/nfnetlink.h>
55 #include <linux/netfilter/nfnetlink_conntrack.h>
57 MODULE_LICENSE("GPL");
59 static char __initdata version[] = "0.93";
61 static int ctnetlink_dump_tuples_proto(struct sk_buff *skb,
62 const struct nf_conntrack_tuple *tuple,
63 struct nf_conntrack_l4proto *l4proto)
66 struct nlattr *nest_parms;
68 nest_parms = nla_nest_start(skb, CTA_TUPLE_PROTO | NLA_F_NESTED);
71 if (nla_put_u8(skb, CTA_PROTO_NUM, tuple->dst.protonum))
74 if (likely(l4proto->tuple_to_nlattr))
75 ret = l4proto->tuple_to_nlattr(skb, tuple);
77 nla_nest_end(skb, nest_parms);
85 static int ctnetlink_dump_tuples_ip(struct sk_buff *skb,
86 const struct nf_conntrack_tuple *tuple,
87 struct nf_conntrack_l3proto *l3proto)
90 struct nlattr *nest_parms;
92 nest_parms = nla_nest_start(skb, CTA_TUPLE_IP | NLA_F_NESTED);
96 if (likely(l3proto->tuple_to_nlattr))
97 ret = l3proto->tuple_to_nlattr(skb, tuple);
99 nla_nest_end(skb, nest_parms);
107 static int ctnetlink_dump_tuples(struct sk_buff *skb,
108 const struct nf_conntrack_tuple *tuple)
111 struct nf_conntrack_l3proto *l3proto;
112 struct nf_conntrack_l4proto *l4proto;
115 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
116 ret = ctnetlink_dump_tuples_ip(skb, tuple, l3proto);
119 l4proto = __nf_ct_l4proto_find(tuple->src.l3num,
120 tuple->dst.protonum);
121 ret = ctnetlink_dump_tuples_proto(skb, tuple, l4proto);
127 static int ctnetlink_dump_zone_id(struct sk_buff *skb, int attrtype,
128 const struct nf_conntrack_zone *zone, int dir)
130 if (zone->id == NF_CT_DEFAULT_ZONE_ID || zone->dir != dir)
132 if (nla_put_be16(skb, attrtype, htons(zone->id)))
133 goto nla_put_failure;
140 static int ctnetlink_dump_status(struct sk_buff *skb, const struct nf_conn *ct)
142 if (nla_put_be32(skb, CTA_STATUS, htonl(ct->status)))
143 goto nla_put_failure;
150 static int ctnetlink_dump_timeout(struct sk_buff *skb, const struct nf_conn *ct)
152 long timeout = nf_ct_expires(ct) / HZ;
154 if (nla_put_be32(skb, CTA_TIMEOUT, htonl(timeout)))
155 goto nla_put_failure;
162 static int ctnetlink_dump_protoinfo(struct sk_buff *skb, struct nf_conn *ct)
164 struct nf_conntrack_l4proto *l4proto;
165 struct nlattr *nest_proto;
168 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
169 if (!l4proto->to_nlattr)
172 nest_proto = nla_nest_start(skb, CTA_PROTOINFO | NLA_F_NESTED);
174 goto nla_put_failure;
176 ret = l4proto->to_nlattr(skb, nest_proto, ct);
178 nla_nest_end(skb, nest_proto);
186 static int ctnetlink_dump_helpinfo(struct sk_buff *skb,
187 const struct nf_conn *ct)
189 struct nlattr *nest_helper;
190 const struct nf_conn_help *help = nfct_help(ct);
191 struct nf_conntrack_helper *helper;
196 helper = rcu_dereference(help->helper);
200 nest_helper = nla_nest_start(skb, CTA_HELP | NLA_F_NESTED);
202 goto nla_put_failure;
203 if (nla_put_string(skb, CTA_HELP_NAME, helper->name))
204 goto nla_put_failure;
206 if (helper->to_nlattr)
207 helper->to_nlattr(skb, ct);
209 nla_nest_end(skb, nest_helper);
218 dump_counters(struct sk_buff *skb, struct nf_conn_acct *acct,
219 enum ip_conntrack_dir dir, int type)
221 enum ctattr_type attr = dir ? CTA_COUNTERS_REPLY: CTA_COUNTERS_ORIG;
222 struct nf_conn_counter *counter = acct->counter;
223 struct nlattr *nest_count;
226 if (type == IPCTNL_MSG_CT_GET_CTRZERO) {
227 pkts = atomic64_xchg(&counter[dir].packets, 0);
228 bytes = atomic64_xchg(&counter[dir].bytes, 0);
230 pkts = atomic64_read(&counter[dir].packets);
231 bytes = atomic64_read(&counter[dir].bytes);
234 nest_count = nla_nest_start(skb, attr | NLA_F_NESTED);
236 goto nla_put_failure;
238 if (nla_put_be64(skb, CTA_COUNTERS_PACKETS, cpu_to_be64(pkts),
240 nla_put_be64(skb, CTA_COUNTERS_BYTES, cpu_to_be64(bytes),
242 goto nla_put_failure;
244 nla_nest_end(skb, nest_count);
253 ctnetlink_dump_acct(struct sk_buff *skb, const struct nf_conn *ct, int type)
255 struct nf_conn_acct *acct = nf_conn_acct_find(ct);
260 if (dump_counters(skb, acct, IP_CT_DIR_ORIGINAL, type) < 0)
262 if (dump_counters(skb, acct, IP_CT_DIR_REPLY, type) < 0)
269 ctnetlink_dump_timestamp(struct sk_buff *skb, const struct nf_conn *ct)
271 struct nlattr *nest_count;
272 const struct nf_conn_tstamp *tstamp;
274 tstamp = nf_conn_tstamp_find(ct);
278 nest_count = nla_nest_start(skb, CTA_TIMESTAMP | NLA_F_NESTED);
280 goto nla_put_failure;
282 if (nla_put_be64(skb, CTA_TIMESTAMP_START, cpu_to_be64(tstamp->start),
283 CTA_TIMESTAMP_PAD) ||
284 (tstamp->stop != 0 && nla_put_be64(skb, CTA_TIMESTAMP_STOP,
285 cpu_to_be64(tstamp->stop),
287 goto nla_put_failure;
288 nla_nest_end(skb, nest_count);
296 #ifdef CONFIG_NF_CONNTRACK_MARK
297 static int ctnetlink_dump_mark(struct sk_buff *skb, const struct nf_conn *ct)
299 if (nla_put_be32(skb, CTA_MARK, htonl(ct->mark)))
300 goto nla_put_failure;
307 #define ctnetlink_dump_mark(a, b) (0)
310 #ifdef CONFIG_NF_CONNTRACK_SECMARK
311 static int ctnetlink_dump_secctx(struct sk_buff *skb, const struct nf_conn *ct)
313 struct nlattr *nest_secctx;
317 ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
322 nest_secctx = nla_nest_start(skb, CTA_SECCTX | NLA_F_NESTED);
324 goto nla_put_failure;
326 if (nla_put_string(skb, CTA_SECCTX_NAME, secctx))
327 goto nla_put_failure;
328 nla_nest_end(skb, nest_secctx);
332 security_release_secctx(secctx, len);
336 #define ctnetlink_dump_secctx(a, b) (0)
339 #ifdef CONFIG_NF_CONNTRACK_LABELS
340 static inline int ctnetlink_label_size(const struct nf_conn *ct)
342 struct nf_conn_labels *labels = nf_ct_labels_find(ct);
346 return nla_total_size(sizeof(labels->bits));
350 ctnetlink_dump_labels(struct sk_buff *skb, const struct nf_conn *ct)
352 struct nf_conn_labels *labels = nf_ct_labels_find(ct);
360 if (labels->bits[i] != 0)
361 return nla_put(skb, CTA_LABELS, sizeof(labels->bits),
364 } while (i < ARRAY_SIZE(labels->bits));
369 #define ctnetlink_dump_labels(a, b) (0)
370 #define ctnetlink_label_size(a) (0)
373 #define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
375 static int ctnetlink_dump_master(struct sk_buff *skb, const struct nf_conn *ct)
377 struct nlattr *nest_parms;
379 if (!(ct->status & IPS_EXPECTED))
382 nest_parms = nla_nest_start(skb, CTA_TUPLE_MASTER | NLA_F_NESTED);
384 goto nla_put_failure;
385 if (ctnetlink_dump_tuples(skb, master_tuple(ct)) < 0)
386 goto nla_put_failure;
387 nla_nest_end(skb, nest_parms);
396 dump_ct_seq_adj(struct sk_buff *skb, const struct nf_ct_seqadj *seq, int type)
398 struct nlattr *nest_parms;
400 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
402 goto nla_put_failure;
404 if (nla_put_be32(skb, CTA_SEQADJ_CORRECTION_POS,
405 htonl(seq->correction_pos)) ||
406 nla_put_be32(skb, CTA_SEQADJ_OFFSET_BEFORE,
407 htonl(seq->offset_before)) ||
408 nla_put_be32(skb, CTA_SEQADJ_OFFSET_AFTER,
409 htonl(seq->offset_after)))
410 goto nla_put_failure;
412 nla_nest_end(skb, nest_parms);
420 static int ctnetlink_dump_ct_seq_adj(struct sk_buff *skb,
421 const struct nf_conn *ct)
423 struct nf_conn_seqadj *seqadj = nfct_seqadj(ct);
424 struct nf_ct_seqadj *seq;
426 if (!(ct->status & IPS_SEQ_ADJUST) || !seqadj)
429 seq = &seqadj->seq[IP_CT_DIR_ORIGINAL];
430 if (dump_ct_seq_adj(skb, seq, CTA_SEQ_ADJ_ORIG) == -1)
433 seq = &seqadj->seq[IP_CT_DIR_REPLY];
434 if (dump_ct_seq_adj(skb, seq, CTA_SEQ_ADJ_REPLY) == -1)
440 static int ctnetlink_dump_id(struct sk_buff *skb, const struct nf_conn *ct)
442 if (nla_put_be32(skb, CTA_ID, htonl((unsigned long)ct)))
443 goto nla_put_failure;
450 static int ctnetlink_dump_use(struct sk_buff *skb, const struct nf_conn *ct)
452 if (nla_put_be32(skb, CTA_USE, htonl(atomic_read(&ct->ct_general.use))))
453 goto nla_put_failure;
461 ctnetlink_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
464 const struct nf_conntrack_zone *zone;
465 struct nlmsghdr *nlh;
466 struct nfgenmsg *nfmsg;
467 struct nlattr *nest_parms;
468 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
470 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_NEW);
471 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
475 nfmsg = nlmsg_data(nlh);
476 nfmsg->nfgen_family = nf_ct_l3num(ct);
477 nfmsg->version = NFNETLINK_V0;
480 zone = nf_ct_zone(ct);
482 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
484 goto nla_put_failure;
485 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
486 goto nla_put_failure;
487 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
488 NF_CT_ZONE_DIR_ORIG) < 0)
489 goto nla_put_failure;
490 nla_nest_end(skb, nest_parms);
492 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
494 goto nla_put_failure;
495 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
496 goto nla_put_failure;
497 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
498 NF_CT_ZONE_DIR_REPL) < 0)
499 goto nla_put_failure;
500 nla_nest_end(skb, nest_parms);
502 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
503 NF_CT_DEFAULT_ZONE_DIR) < 0)
504 goto nla_put_failure;
506 if (ctnetlink_dump_status(skb, ct) < 0 ||
507 ctnetlink_dump_timeout(skb, ct) < 0 ||
508 ctnetlink_dump_acct(skb, ct, type) < 0 ||
509 ctnetlink_dump_timestamp(skb, ct) < 0 ||
510 ctnetlink_dump_protoinfo(skb, ct) < 0 ||
511 ctnetlink_dump_helpinfo(skb, ct) < 0 ||
512 ctnetlink_dump_mark(skb, ct) < 0 ||
513 ctnetlink_dump_secctx(skb, ct) < 0 ||
514 ctnetlink_dump_labels(skb, ct) < 0 ||
515 ctnetlink_dump_id(skb, ct) < 0 ||
516 ctnetlink_dump_use(skb, ct) < 0 ||
517 ctnetlink_dump_master(skb, ct) < 0 ||
518 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
519 goto nla_put_failure;
526 nlmsg_cancel(skb, nlh);
530 static inline size_t ctnetlink_proto_size(const struct nf_conn *ct)
532 struct nf_conntrack_l3proto *l3proto;
533 struct nf_conntrack_l4proto *l4proto;
537 l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
538 len += l3proto->nla_size;
540 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
541 len += l4proto->nla_size;
547 static inline size_t ctnetlink_acct_size(const struct nf_conn *ct)
549 if (!nf_ct_ext_exist(ct, NF_CT_EXT_ACCT))
551 return 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
552 + 2 * nla_total_size_64bit(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
553 + 2 * nla_total_size_64bit(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
557 static inline int ctnetlink_secctx_size(const struct nf_conn *ct)
559 #ifdef CONFIG_NF_CONNTRACK_SECMARK
562 ret = security_secid_to_secctx(ct->secmark, NULL, &len);
566 return nla_total_size(0) /* CTA_SECCTX */
567 + nla_total_size(sizeof(char) * len); /* CTA_SECCTX_NAME */
573 static inline size_t ctnetlink_timestamp_size(const struct nf_conn *ct)
575 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
576 if (!nf_ct_ext_exist(ct, NF_CT_EXT_TSTAMP))
578 return nla_total_size(0) + 2 * nla_total_size_64bit(sizeof(uint64_t));
584 #ifdef CONFIG_NF_CONNTRACK_EVENTS
585 static size_t ctnetlink_nlmsg_size(const struct nf_conn *ct)
587 return NLMSG_ALIGN(sizeof(struct nfgenmsg))
588 + 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
589 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
590 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
591 + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
592 + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
593 + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
594 + ctnetlink_acct_size(ct)
595 + ctnetlink_timestamp_size(ct)
596 + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
597 + nla_total_size(0) /* CTA_PROTOINFO */
598 + nla_total_size(0) /* CTA_HELP */
599 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
600 + ctnetlink_secctx_size(ct)
601 #ifdef CONFIG_NF_NAT_NEEDED
602 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
603 + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
605 #ifdef CONFIG_NF_CONNTRACK_MARK
606 + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
608 #ifdef CONFIG_NF_CONNTRACK_ZONES
609 + nla_total_size(sizeof(u_int16_t)) /* CTA_ZONE|CTA_TUPLE_ZONE */
611 + ctnetlink_proto_size(ct)
612 + ctnetlink_label_size(ct)
617 ctnetlink_conntrack_event(unsigned int events, struct nf_ct_event *item)
619 const struct nf_conntrack_zone *zone;
621 struct nlmsghdr *nlh;
622 struct nfgenmsg *nfmsg;
623 struct nlattr *nest_parms;
624 struct nf_conn *ct = item->ct;
627 unsigned int flags = 0, group;
630 /* ignore our fake conntrack entry */
631 if (nf_ct_is_untracked(ct))
634 if (events & (1 << IPCT_DESTROY)) {
635 type = IPCTNL_MSG_CT_DELETE;
636 group = NFNLGRP_CONNTRACK_DESTROY;
637 } else if (events & ((1 << IPCT_NEW) | (1 << IPCT_RELATED))) {
638 type = IPCTNL_MSG_CT_NEW;
639 flags = NLM_F_CREATE|NLM_F_EXCL;
640 group = NFNLGRP_CONNTRACK_NEW;
642 type = IPCTNL_MSG_CT_NEW;
643 group = NFNLGRP_CONNTRACK_UPDATE;
648 if (!item->report && !nfnetlink_has_listeners(net, group))
651 skb = nlmsg_new(ctnetlink_nlmsg_size(ct), GFP_ATOMIC);
655 type |= NFNL_SUBSYS_CTNETLINK << 8;
656 nlh = nlmsg_put(skb, item->portid, 0, type, sizeof(*nfmsg), flags);
660 nfmsg = nlmsg_data(nlh);
661 nfmsg->nfgen_family = nf_ct_l3num(ct);
662 nfmsg->version = NFNETLINK_V0;
666 zone = nf_ct_zone(ct);
668 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
670 goto nla_put_failure;
671 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
672 goto nla_put_failure;
673 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
674 NF_CT_ZONE_DIR_ORIG) < 0)
675 goto nla_put_failure;
676 nla_nest_end(skb, nest_parms);
678 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
680 goto nla_put_failure;
681 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
682 goto nla_put_failure;
683 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
684 NF_CT_ZONE_DIR_REPL) < 0)
685 goto nla_put_failure;
686 nla_nest_end(skb, nest_parms);
688 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
689 NF_CT_DEFAULT_ZONE_DIR) < 0)
690 goto nla_put_failure;
692 if (ctnetlink_dump_id(skb, ct) < 0)
693 goto nla_put_failure;
695 if (ctnetlink_dump_status(skb, ct) < 0)
696 goto nla_put_failure;
698 if (events & (1 << IPCT_DESTROY)) {
699 if (ctnetlink_dump_acct(skb, ct, type) < 0 ||
700 ctnetlink_dump_timestamp(skb, ct) < 0)
701 goto nla_put_failure;
703 if (ctnetlink_dump_timeout(skb, ct) < 0)
704 goto nla_put_failure;
706 if (events & (1 << IPCT_PROTOINFO)
707 && ctnetlink_dump_protoinfo(skb, ct) < 0)
708 goto nla_put_failure;
710 if ((events & (1 << IPCT_HELPER) || nfct_help(ct))
711 && ctnetlink_dump_helpinfo(skb, ct) < 0)
712 goto nla_put_failure;
714 #ifdef CONFIG_NF_CONNTRACK_SECMARK
715 if ((events & (1 << IPCT_SECMARK) || ct->secmark)
716 && ctnetlink_dump_secctx(skb, ct) < 0)
717 goto nla_put_failure;
719 if (events & (1 << IPCT_LABEL) &&
720 ctnetlink_dump_labels(skb, ct) < 0)
721 goto nla_put_failure;
723 if (events & (1 << IPCT_RELATED) &&
724 ctnetlink_dump_master(skb, ct) < 0)
725 goto nla_put_failure;
727 if (events & (1 << IPCT_SEQADJ) &&
728 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
729 goto nla_put_failure;
732 #ifdef CONFIG_NF_CONNTRACK_MARK
733 if ((events & (1 << IPCT_MARK) || ct->mark)
734 && ctnetlink_dump_mark(skb, ct) < 0)
735 goto nla_put_failure;
740 err = nfnetlink_send(skb, net, item->portid, group, item->report,
742 if (err == -ENOBUFS || err == -EAGAIN)
749 nlmsg_cancel(skb, nlh);
753 if (nfnetlink_set_err(net, 0, group, -ENOBUFS) > 0)
758 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
760 static int ctnetlink_done(struct netlink_callback *cb)
763 nf_ct_put((struct nf_conn *)cb->args[1]);
768 struct ctnetlink_filter {
775 static struct ctnetlink_filter *
776 ctnetlink_alloc_filter(const struct nlattr * const cda[])
778 #ifdef CONFIG_NF_CONNTRACK_MARK
779 struct ctnetlink_filter *filter;
781 filter = kzalloc(sizeof(*filter), GFP_KERNEL);
783 return ERR_PTR(-ENOMEM);
785 filter->mark.val = ntohl(nla_get_be32(cda[CTA_MARK]));
786 filter->mark.mask = ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
790 return ERR_PTR(-EOPNOTSUPP);
794 static int ctnetlink_filter_match(struct nf_conn *ct, void *data)
796 struct ctnetlink_filter *filter = data;
801 #ifdef CONFIG_NF_CONNTRACK_MARK
802 if ((ct->mark & filter->mark.mask) == filter->mark.val)
810 ctnetlink_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
812 struct net *net = sock_net(skb->sk);
813 struct nf_conn *ct, *last;
814 struct nf_conntrack_tuple_hash *h;
815 struct hlist_nulls_node *n;
816 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
817 u_int8_t l3proto = nfmsg->nfgen_family;
818 struct nf_conn *nf_ct_evict[8];
822 last = (struct nf_conn *)cb->args[1];
826 for (; cb->args[0] < nf_conntrack_htable_size; cb->args[0]++) {
830 if (nf_ct_should_gc(nf_ct_evict[i]))
831 nf_ct_kill(nf_ct_evict[i]);
832 nf_ct_put(nf_ct_evict[i]);
835 lockp = &nf_conntrack_locks[cb->args[0] % CONNTRACK_LOCKS];
836 nf_conntrack_lock(lockp);
837 if (cb->args[0] >= nf_conntrack_htable_size) {
841 hlist_nulls_for_each_entry(h, n, &nf_conntrack_hash[cb->args[0]],
843 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
845 ct = nf_ct_tuplehash_to_ctrack(h);
846 if (nf_ct_is_expired(ct)) {
847 if (i < ARRAY_SIZE(nf_ct_evict) &&
848 atomic_inc_not_zero(&ct->ct_general.use))
849 nf_ct_evict[i++] = ct;
853 if (!net_eq(net, nf_ct_net(ct)))
856 /* Dump entries of a given L3 protocol number.
857 * If it is not specified, ie. l3proto == 0,
858 * then dump everything. */
859 if (l3proto && nf_ct_l3num(ct) != l3proto)
866 if (!ctnetlink_filter_match(ct, cb->data))
871 ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).portid,
873 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
877 nf_conntrack_get(&ct->ct_general);
878 cb->args[1] = (unsigned long)ct;
896 if (nf_ct_should_gc(nf_ct_evict[i]))
897 nf_ct_kill(nf_ct_evict[i]);
898 nf_ct_put(nf_ct_evict[i]);
904 static int ctnetlink_parse_tuple_ip(struct nlattr *attr,
905 struct nf_conntrack_tuple *tuple)
907 struct nlattr *tb[CTA_IP_MAX+1];
908 struct nf_conntrack_l3proto *l3proto;
911 ret = nla_parse_nested(tb, CTA_IP_MAX, attr, NULL);
916 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
918 if (likely(l3proto->nlattr_to_tuple)) {
919 ret = nla_validate_nested(attr, CTA_IP_MAX,
920 l3proto->nla_policy);
922 ret = l3proto->nlattr_to_tuple(tb, tuple);
930 static const struct nla_policy proto_nla_policy[CTA_PROTO_MAX+1] = {
931 [CTA_PROTO_NUM] = { .type = NLA_U8 },
934 static int ctnetlink_parse_tuple_proto(struct nlattr *attr,
935 struct nf_conntrack_tuple *tuple)
937 struct nlattr *tb[CTA_PROTO_MAX+1];
938 struct nf_conntrack_l4proto *l4proto;
941 ret = nla_parse_nested(tb, CTA_PROTO_MAX, attr, proto_nla_policy);
945 if (!tb[CTA_PROTO_NUM])
947 tuple->dst.protonum = nla_get_u8(tb[CTA_PROTO_NUM]);
950 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
952 if (likely(l4proto->nlattr_to_tuple)) {
953 ret = nla_validate_nested(attr, CTA_PROTO_MAX,
954 l4proto->nla_policy);
956 ret = l4proto->nlattr_to_tuple(tb, tuple);
965 ctnetlink_parse_zone(const struct nlattr *attr,
966 struct nf_conntrack_zone *zone)
968 nf_ct_zone_init(zone, NF_CT_DEFAULT_ZONE_ID,
969 NF_CT_DEFAULT_ZONE_DIR, 0);
970 #ifdef CONFIG_NF_CONNTRACK_ZONES
972 zone->id = ntohs(nla_get_be16(attr));
981 ctnetlink_parse_tuple_zone(struct nlattr *attr, enum ctattr_type type,
982 struct nf_conntrack_zone *zone)
986 if (zone->id != NF_CT_DEFAULT_ZONE_ID)
989 ret = ctnetlink_parse_zone(attr, zone);
993 if (type == CTA_TUPLE_REPLY)
994 zone->dir = NF_CT_ZONE_DIR_REPL;
996 zone->dir = NF_CT_ZONE_DIR_ORIG;
1001 static const struct nla_policy tuple_nla_policy[CTA_TUPLE_MAX+1] = {
1002 [CTA_TUPLE_IP] = { .type = NLA_NESTED },
1003 [CTA_TUPLE_PROTO] = { .type = NLA_NESTED },
1004 [CTA_TUPLE_ZONE] = { .type = NLA_U16 },
1008 ctnetlink_parse_tuple(const struct nlattr * const cda[],
1009 struct nf_conntrack_tuple *tuple,
1010 enum ctattr_type type, u_int8_t l3num,
1011 struct nf_conntrack_zone *zone)
1013 struct nlattr *tb[CTA_TUPLE_MAX+1];
1016 memset(tuple, 0, sizeof(*tuple));
1018 err = nla_parse_nested(tb, CTA_TUPLE_MAX, cda[type], tuple_nla_policy);
1022 if (!tb[CTA_TUPLE_IP])
1025 tuple->src.l3num = l3num;
1027 err = ctnetlink_parse_tuple_ip(tb[CTA_TUPLE_IP], tuple);
1031 if (!tb[CTA_TUPLE_PROTO])
1034 err = ctnetlink_parse_tuple_proto(tb[CTA_TUPLE_PROTO], tuple);
1038 if (tb[CTA_TUPLE_ZONE]) {
1042 err = ctnetlink_parse_tuple_zone(tb[CTA_TUPLE_ZONE],
1048 /* orig and expect tuples get DIR_ORIGINAL */
1049 if (type == CTA_TUPLE_REPLY)
1050 tuple->dst.dir = IP_CT_DIR_REPLY;
1052 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
1057 static const struct nla_policy help_nla_policy[CTA_HELP_MAX+1] = {
1058 [CTA_HELP_NAME] = { .type = NLA_NUL_STRING,
1059 .len = NF_CT_HELPER_NAME_LEN - 1 },
1062 static int ctnetlink_parse_help(const struct nlattr *attr, char **helper_name,
1063 struct nlattr **helpinfo)
1066 struct nlattr *tb[CTA_HELP_MAX+1];
1068 err = nla_parse_nested(tb, CTA_HELP_MAX, attr, help_nla_policy);
1072 if (!tb[CTA_HELP_NAME])
1075 *helper_name = nla_data(tb[CTA_HELP_NAME]);
1077 if (tb[CTA_HELP_INFO])
1078 *helpinfo = tb[CTA_HELP_INFO];
1083 static const struct nla_policy ct_nla_policy[CTA_MAX+1] = {
1084 [CTA_TUPLE_ORIG] = { .type = NLA_NESTED },
1085 [CTA_TUPLE_REPLY] = { .type = NLA_NESTED },
1086 [CTA_STATUS] = { .type = NLA_U32 },
1087 [CTA_PROTOINFO] = { .type = NLA_NESTED },
1088 [CTA_HELP] = { .type = NLA_NESTED },
1089 [CTA_NAT_SRC] = { .type = NLA_NESTED },
1090 [CTA_TIMEOUT] = { .type = NLA_U32 },
1091 [CTA_MARK] = { .type = NLA_U32 },
1092 [CTA_ID] = { .type = NLA_U32 },
1093 [CTA_NAT_DST] = { .type = NLA_NESTED },
1094 [CTA_TUPLE_MASTER] = { .type = NLA_NESTED },
1095 [CTA_NAT_SEQ_ADJ_ORIG] = { .type = NLA_NESTED },
1096 [CTA_NAT_SEQ_ADJ_REPLY] = { .type = NLA_NESTED },
1097 [CTA_ZONE] = { .type = NLA_U16 },
1098 [CTA_MARK_MASK] = { .type = NLA_U32 },
1099 [CTA_LABELS] = { .type = NLA_BINARY,
1100 .len = NF_CT_LABELS_MAX_SIZE },
1101 [CTA_LABELS_MASK] = { .type = NLA_BINARY,
1102 .len = NF_CT_LABELS_MAX_SIZE },
1105 static int ctnetlink_flush_conntrack(struct net *net,
1106 const struct nlattr * const cda[],
1107 u32 portid, int report)
1109 struct ctnetlink_filter *filter = NULL;
1111 if (cda[CTA_MARK] && cda[CTA_MARK_MASK]) {
1112 filter = ctnetlink_alloc_filter(cda);
1114 return PTR_ERR(filter);
1117 nf_ct_iterate_cleanup(net, ctnetlink_filter_match, filter,
1124 static int ctnetlink_del_conntrack(struct net *net, struct sock *ctnl,
1125 struct sk_buff *skb,
1126 const struct nlmsghdr *nlh,
1127 const struct nlattr * const cda[])
1129 struct nf_conntrack_tuple_hash *h;
1130 struct nf_conntrack_tuple tuple;
1132 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1133 u_int8_t u3 = nfmsg->nfgen_family;
1134 struct nf_conntrack_zone zone;
1137 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1141 if (cda[CTA_TUPLE_ORIG])
1142 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG,
1144 else if (cda[CTA_TUPLE_REPLY])
1145 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY,
1148 return ctnetlink_flush_conntrack(net, cda,
1149 NETLINK_CB(skb).portid,
1156 h = nf_conntrack_find_get(net, &zone, &tuple);
1160 ct = nf_ct_tuplehash_to_ctrack(h);
1163 u_int32_t id = ntohl(nla_get_be32(cda[CTA_ID]));
1164 if (id != (u32)(unsigned long)ct) {
1170 nf_ct_delete(ct, NETLINK_CB(skb).portid, nlmsg_report(nlh));
1176 static int ctnetlink_get_conntrack(struct net *net, struct sock *ctnl,
1177 struct sk_buff *skb,
1178 const struct nlmsghdr *nlh,
1179 const struct nlattr * const cda[])
1181 struct nf_conntrack_tuple_hash *h;
1182 struct nf_conntrack_tuple tuple;
1184 struct sk_buff *skb2 = NULL;
1185 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1186 u_int8_t u3 = nfmsg->nfgen_family;
1187 struct nf_conntrack_zone zone;
1190 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1191 struct netlink_dump_control c = {
1192 .dump = ctnetlink_dump_table,
1193 .done = ctnetlink_done,
1196 if (cda[CTA_MARK] && cda[CTA_MARK_MASK]) {
1197 struct ctnetlink_filter *filter;
1199 filter = ctnetlink_alloc_filter(cda);
1201 return PTR_ERR(filter);
1205 return netlink_dump_start(ctnl, skb, nlh, &c);
1208 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1212 if (cda[CTA_TUPLE_ORIG])
1213 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG,
1215 else if (cda[CTA_TUPLE_REPLY])
1216 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY,
1224 h = nf_conntrack_find_get(net, &zone, &tuple);
1228 ct = nf_ct_tuplehash_to_ctrack(h);
1231 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1238 err = ctnetlink_fill_info(skb2, NETLINK_CB(skb).portid, nlh->nlmsg_seq,
1239 NFNL_MSG_TYPE(nlh->nlmsg_type), ct);
1245 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
1254 /* this avoids a loop in nfnetlink. */
1255 return err == -EAGAIN ? -ENOBUFS : err;
1258 static int ctnetlink_done_list(struct netlink_callback *cb)
1261 nf_ct_put((struct nf_conn *)cb->args[1]);
1266 ctnetlink_dump_list(struct sk_buff *skb, struct netlink_callback *cb, bool dying)
1268 struct nf_conn *ct, *last;
1269 struct nf_conntrack_tuple_hash *h;
1270 struct hlist_nulls_node *n;
1271 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1272 u_int8_t l3proto = nfmsg->nfgen_family;
1275 struct hlist_nulls_head *list;
1276 struct net *net = sock_net(skb->sk);
1281 last = (struct nf_conn *)cb->args[1];
1283 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
1284 struct ct_pcpu *pcpu;
1286 if (!cpu_possible(cpu))
1289 pcpu = per_cpu_ptr(net->ct.pcpu_lists, cpu);
1290 spin_lock_bh(&pcpu->lock);
1291 list = dying ? &pcpu->dying : &pcpu->unconfirmed;
1293 hlist_nulls_for_each_entry(h, n, list, hnnode) {
1294 ct = nf_ct_tuplehash_to_ctrack(h);
1295 if (l3proto && nf_ct_l3num(ct) != l3proto)
1303 res = ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).portid,
1305 NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
1309 if (!atomic_inc_not_zero(&ct->ct_general.use))
1312 cb->args[1] = (unsigned long)ct;
1313 spin_unlock_bh(&pcpu->lock);
1321 spin_unlock_bh(&pcpu->lock);
1332 ctnetlink_dump_dying(struct sk_buff *skb, struct netlink_callback *cb)
1334 return ctnetlink_dump_list(skb, cb, true);
1337 static int ctnetlink_get_ct_dying(struct net *net, struct sock *ctnl,
1338 struct sk_buff *skb,
1339 const struct nlmsghdr *nlh,
1340 const struct nlattr * const cda[])
1342 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1343 struct netlink_dump_control c = {
1344 .dump = ctnetlink_dump_dying,
1345 .done = ctnetlink_done_list,
1347 return netlink_dump_start(ctnl, skb, nlh, &c);
1354 ctnetlink_dump_unconfirmed(struct sk_buff *skb, struct netlink_callback *cb)
1356 return ctnetlink_dump_list(skb, cb, false);
1359 static int ctnetlink_get_ct_unconfirmed(struct net *net, struct sock *ctnl,
1360 struct sk_buff *skb,
1361 const struct nlmsghdr *nlh,
1362 const struct nlattr * const cda[])
1364 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1365 struct netlink_dump_control c = {
1366 .dump = ctnetlink_dump_unconfirmed,
1367 .done = ctnetlink_done_list,
1369 return netlink_dump_start(ctnl, skb, nlh, &c);
1375 #ifdef CONFIG_NF_NAT_NEEDED
1377 ctnetlink_parse_nat_setup(struct nf_conn *ct,
1378 enum nf_nat_manip_type manip,
1379 const struct nlattr *attr)
1381 typeof(nfnetlink_parse_nat_setup_hook) parse_nat_setup;
1384 parse_nat_setup = rcu_dereference(nfnetlink_parse_nat_setup_hook);
1385 if (!parse_nat_setup) {
1386 #ifdef CONFIG_MODULES
1388 nfnl_unlock(NFNL_SUBSYS_CTNETLINK);
1389 if (request_module("nf-nat") < 0) {
1390 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
1394 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
1396 if (nfnetlink_parse_nat_setup_hook)
1402 err = parse_nat_setup(ct, manip, attr);
1403 if (err == -EAGAIN) {
1404 #ifdef CONFIG_MODULES
1406 nfnl_unlock(NFNL_SUBSYS_CTNETLINK);
1407 if (request_module("nf-nat-%u", nf_ct_l3num(ct)) < 0) {
1408 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
1412 nfnl_lock(NFNL_SUBSYS_CTNETLINK);
1423 ctnetlink_change_status(struct nf_conn *ct, const struct nlattr * const cda[])
1426 unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
1427 d = ct->status ^ status;
1429 if (d & (IPS_EXPECTED|IPS_CONFIRMED|IPS_DYING))
1433 if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
1434 /* SEEN_REPLY bit can only be set */
1437 if (d & IPS_ASSURED && !(status & IPS_ASSURED))
1438 /* ASSURED bit can only be set */
1441 /* Be careful here, modifying NAT bits can screw up things,
1442 * so don't let users modify them directly if they don't pass
1444 ct->status |= status & ~(IPS_NAT_DONE_MASK | IPS_NAT_MASK);
1449 ctnetlink_setup_nat(struct nf_conn *ct, const struct nlattr * const cda[])
1451 #ifdef CONFIG_NF_NAT_NEEDED
1454 if (!cda[CTA_NAT_DST] && !cda[CTA_NAT_SRC])
1457 ret = ctnetlink_parse_nat_setup(ct, NF_NAT_MANIP_DST,
1462 ret = ctnetlink_parse_nat_setup(ct, NF_NAT_MANIP_SRC,
1466 if (!cda[CTA_NAT_DST] && !cda[CTA_NAT_SRC])
1472 static int ctnetlink_change_helper(struct nf_conn *ct,
1473 const struct nlattr * const cda[])
1475 struct nf_conntrack_helper *helper;
1476 struct nf_conn_help *help = nfct_help(ct);
1477 char *helpname = NULL;
1478 struct nlattr *helpinfo = NULL;
1481 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
1485 /* don't change helper of sibling connections */
1487 /* If we try to change the helper to the same thing twice,
1488 * treat the second attempt as a no-op instead of returning
1491 if (help && help->helper &&
1492 !strcmp(help->helper->name, helpname))
1498 if (!strcmp(helpname, "")) {
1499 if (help && help->helper) {
1500 /* we had a helper before ... */
1501 nf_ct_remove_expectations(ct);
1502 RCU_INIT_POINTER(help->helper, NULL);
1508 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1509 nf_ct_protonum(ct));
1510 if (helper == NULL) {
1511 #ifdef CONFIG_MODULES
1512 spin_unlock_bh(&nf_conntrack_expect_lock);
1514 if (request_module("nfct-helper-%s", helpname) < 0) {
1515 spin_lock_bh(&nf_conntrack_expect_lock);
1519 spin_lock_bh(&nf_conntrack_expect_lock);
1520 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1521 nf_ct_protonum(ct));
1529 if (help->helper == helper) {
1530 /* update private helper data if allowed. */
1531 if (helper->from_nlattr)
1532 helper->from_nlattr(helpinfo, ct);
1538 /* we cannot set a helper for an existing conntrack */
1542 static int ctnetlink_change_timeout(struct nf_conn *ct,
1543 const struct nlattr * const cda[])
1545 u_int32_t timeout = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
1547 ct->timeout = nfct_time_stamp + timeout * HZ;
1549 if (test_bit(IPS_DYING_BIT, &ct->status))
1555 static const struct nla_policy protoinfo_policy[CTA_PROTOINFO_MAX+1] = {
1556 [CTA_PROTOINFO_TCP] = { .type = NLA_NESTED },
1557 [CTA_PROTOINFO_DCCP] = { .type = NLA_NESTED },
1558 [CTA_PROTOINFO_SCTP] = { .type = NLA_NESTED },
1561 static int ctnetlink_change_protoinfo(struct nf_conn *ct,
1562 const struct nlattr * const cda[])
1564 const struct nlattr *attr = cda[CTA_PROTOINFO];
1565 struct nlattr *tb[CTA_PROTOINFO_MAX+1];
1566 struct nf_conntrack_l4proto *l4proto;
1569 err = nla_parse_nested(tb, CTA_PROTOINFO_MAX, attr, protoinfo_policy);
1574 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
1575 if (l4proto->from_nlattr)
1576 err = l4proto->from_nlattr(tb, ct);
1582 static const struct nla_policy seqadj_policy[CTA_SEQADJ_MAX+1] = {
1583 [CTA_SEQADJ_CORRECTION_POS] = { .type = NLA_U32 },
1584 [CTA_SEQADJ_OFFSET_BEFORE] = { .type = NLA_U32 },
1585 [CTA_SEQADJ_OFFSET_AFTER] = { .type = NLA_U32 },
1588 static int change_seq_adj(struct nf_ct_seqadj *seq,
1589 const struct nlattr * const attr)
1592 struct nlattr *cda[CTA_SEQADJ_MAX+1];
1594 err = nla_parse_nested(cda, CTA_SEQADJ_MAX, attr, seqadj_policy);
1598 if (!cda[CTA_SEQADJ_CORRECTION_POS])
1601 seq->correction_pos =
1602 ntohl(nla_get_be32(cda[CTA_SEQADJ_CORRECTION_POS]));
1604 if (!cda[CTA_SEQADJ_OFFSET_BEFORE])
1607 seq->offset_before =
1608 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_BEFORE]));
1610 if (!cda[CTA_SEQADJ_OFFSET_AFTER])
1614 ntohl(nla_get_be32(cda[CTA_SEQADJ_OFFSET_AFTER]));
1620 ctnetlink_change_seq_adj(struct nf_conn *ct,
1621 const struct nlattr * const cda[])
1623 struct nf_conn_seqadj *seqadj = nfct_seqadj(ct);
1629 if (cda[CTA_SEQ_ADJ_ORIG]) {
1630 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_ORIGINAL],
1631 cda[CTA_SEQ_ADJ_ORIG]);
1635 ct->status |= IPS_SEQ_ADJUST;
1638 if (cda[CTA_SEQ_ADJ_REPLY]) {
1639 ret = change_seq_adj(&seqadj->seq[IP_CT_DIR_REPLY],
1640 cda[CTA_SEQ_ADJ_REPLY]);
1644 ct->status |= IPS_SEQ_ADJUST;
1651 ctnetlink_attach_labels(struct nf_conn *ct, const struct nlattr * const cda[])
1653 #ifdef CONFIG_NF_CONNTRACK_LABELS
1654 size_t len = nla_len(cda[CTA_LABELS]);
1655 const void *mask = cda[CTA_LABELS_MASK];
1657 if (len & (sizeof(u32)-1)) /* must be multiple of u32 */
1661 if (nla_len(cda[CTA_LABELS_MASK]) == 0 ||
1662 nla_len(cda[CTA_LABELS_MASK]) != len)
1664 mask = nla_data(cda[CTA_LABELS_MASK]);
1669 return nf_connlabels_replace(ct, nla_data(cda[CTA_LABELS]), mask, len);
1676 ctnetlink_change_conntrack(struct nf_conn *ct,
1677 const struct nlattr * const cda[])
1681 /* only allow NAT changes and master assignation for new conntracks */
1682 if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST] || cda[CTA_TUPLE_MASTER])
1685 if (cda[CTA_HELP]) {
1686 err = ctnetlink_change_helper(ct, cda);
1691 if (cda[CTA_TIMEOUT]) {
1692 err = ctnetlink_change_timeout(ct, cda);
1697 if (cda[CTA_STATUS]) {
1698 err = ctnetlink_change_status(ct, cda);
1703 if (cda[CTA_PROTOINFO]) {
1704 err = ctnetlink_change_protoinfo(ct, cda);
1709 #if defined(CONFIG_NF_CONNTRACK_MARK)
1711 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1714 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1715 err = ctnetlink_change_seq_adj(ct, cda);
1720 if (cda[CTA_LABELS]) {
1721 err = ctnetlink_attach_labels(ct, cda);
1729 static struct nf_conn *
1730 ctnetlink_create_conntrack(struct net *net,
1731 const struct nf_conntrack_zone *zone,
1732 const struct nlattr * const cda[],
1733 struct nf_conntrack_tuple *otuple,
1734 struct nf_conntrack_tuple *rtuple,
1739 struct nf_conntrack_helper *helper;
1740 struct nf_conn_tstamp *tstamp;
1742 ct = nf_conntrack_alloc(net, zone, otuple, rtuple, GFP_ATOMIC);
1744 return ERR_PTR(-ENOMEM);
1746 if (!cda[CTA_TIMEOUT])
1749 ct->timeout = nfct_time_stamp + ntohl(nla_get_be32(cda[CTA_TIMEOUT])) * HZ;
1752 if (cda[CTA_HELP]) {
1753 char *helpname = NULL;
1754 struct nlattr *helpinfo = NULL;
1756 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname, &helpinfo);
1760 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
1761 nf_ct_protonum(ct));
1762 if (helper == NULL) {
1764 #ifdef CONFIG_MODULES
1765 if (request_module("nfct-helper-%s", helpname) < 0) {
1771 helper = __nf_conntrack_helper_find(helpname,
1773 nf_ct_protonum(ct));
1783 struct nf_conn_help *help;
1785 help = nf_ct_helper_ext_add(ct, helper, GFP_ATOMIC);
1790 /* set private helper data if allowed. */
1791 if (helper->from_nlattr)
1792 helper->from_nlattr(helpinfo, ct);
1794 /* not in hash table yet so not strictly necessary */
1795 RCU_INIT_POINTER(help->helper, helper);
1798 /* try an implicit helper assignation */
1799 err = __nf_ct_try_assign_helper(ct, NULL, GFP_ATOMIC);
1804 err = ctnetlink_setup_nat(ct, cda);
1808 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
1809 nf_ct_tstamp_ext_add(ct, GFP_ATOMIC);
1810 nf_ct_ecache_ext_add(ct, 0, 0, GFP_ATOMIC);
1811 nf_ct_labels_ext_add(ct);
1813 /* we must add conntrack extensions before confirmation. */
1814 ct->status |= IPS_CONFIRMED;
1816 if (cda[CTA_STATUS]) {
1817 err = ctnetlink_change_status(ct, cda);
1822 if (cda[CTA_SEQ_ADJ_ORIG] || cda[CTA_SEQ_ADJ_REPLY]) {
1823 err = ctnetlink_change_seq_adj(ct, cda);
1828 memset(&ct->proto, 0, sizeof(ct->proto));
1829 if (cda[CTA_PROTOINFO]) {
1830 err = ctnetlink_change_protoinfo(ct, cda);
1835 #if defined(CONFIG_NF_CONNTRACK_MARK)
1837 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1840 /* setup master conntrack: this is a confirmed expectation */
1841 if (cda[CTA_TUPLE_MASTER]) {
1842 struct nf_conntrack_tuple master;
1843 struct nf_conntrack_tuple_hash *master_h;
1844 struct nf_conn *master_ct;
1846 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER,
1851 master_h = nf_conntrack_find_get(net, zone, &master);
1852 if (master_h == NULL) {
1856 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
1857 __set_bit(IPS_EXPECTED_BIT, &ct->status);
1858 ct->master = master_ct;
1860 tstamp = nf_conn_tstamp_find(ct);
1862 tstamp->start = ktime_get_real_ns();
1864 err = nf_conntrack_hash_check_insert(ct);
1875 nf_conntrack_free(ct);
1876 return ERR_PTR(err);
1879 static int ctnetlink_new_conntrack(struct net *net, struct sock *ctnl,
1880 struct sk_buff *skb,
1881 const struct nlmsghdr *nlh,
1882 const struct nlattr * const cda[])
1884 struct nf_conntrack_tuple otuple, rtuple;
1885 struct nf_conntrack_tuple_hash *h = NULL;
1886 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1888 u_int8_t u3 = nfmsg->nfgen_family;
1889 struct nf_conntrack_zone zone;
1892 err = ctnetlink_parse_zone(cda[CTA_ZONE], &zone);
1896 if (cda[CTA_TUPLE_ORIG]) {
1897 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG,
1903 if (cda[CTA_TUPLE_REPLY]) {
1904 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY,
1910 if (cda[CTA_TUPLE_ORIG])
1911 h = nf_conntrack_find_get(net, &zone, &otuple);
1912 else if (cda[CTA_TUPLE_REPLY])
1913 h = nf_conntrack_find_get(net, &zone, &rtuple);
1917 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1918 enum ip_conntrack_events events;
1920 if (!cda[CTA_TUPLE_ORIG] || !cda[CTA_TUPLE_REPLY])
1922 if (otuple.dst.protonum != rtuple.dst.protonum)
1925 ct = ctnetlink_create_conntrack(net, &zone, cda, &otuple,
1931 if (test_bit(IPS_EXPECTED_BIT, &ct->status))
1932 events = IPCT_RELATED;
1936 if (cda[CTA_LABELS] &&
1937 ctnetlink_attach_labels(ct, cda) == 0)
1938 events |= (1 << IPCT_LABEL);
1940 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1941 (1 << IPCT_ASSURED) |
1942 (1 << IPCT_HELPER) |
1943 (1 << IPCT_PROTOINFO) |
1944 (1 << IPCT_SEQADJ) |
1945 (1 << IPCT_MARK) | events,
1946 ct, NETLINK_CB(skb).portid,
1953 /* implicit 'else' */
1956 ct = nf_ct_tuplehash_to_ctrack(h);
1957 if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
1958 spin_lock_bh(&nf_conntrack_expect_lock);
1959 err = ctnetlink_change_conntrack(ct, cda);
1960 spin_unlock_bh(&nf_conntrack_expect_lock);
1962 nf_conntrack_eventmask_report((1 << IPCT_REPLY) |
1963 (1 << IPCT_ASSURED) |
1964 (1 << IPCT_HELPER) |
1966 (1 << IPCT_PROTOINFO) |
1967 (1 << IPCT_SEQADJ) |
1969 ct, NETLINK_CB(skb).portid,
1979 ctnetlink_ct_stat_cpu_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
1980 __u16 cpu, const struct ip_conntrack_stat *st)
1982 struct nlmsghdr *nlh;
1983 struct nfgenmsg *nfmsg;
1984 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
1986 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS_CPU);
1987 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
1991 nfmsg = nlmsg_data(nlh);
1992 nfmsg->nfgen_family = AF_UNSPEC;
1993 nfmsg->version = NFNETLINK_V0;
1994 nfmsg->res_id = htons(cpu);
1996 if (nla_put_be32(skb, CTA_STATS_FOUND, htonl(st->found)) ||
1997 nla_put_be32(skb, CTA_STATS_INVALID, htonl(st->invalid)) ||
1998 nla_put_be32(skb, CTA_STATS_IGNORE, htonl(st->ignore)) ||
1999 nla_put_be32(skb, CTA_STATS_INSERT, htonl(st->insert)) ||
2000 nla_put_be32(skb, CTA_STATS_INSERT_FAILED,
2001 htonl(st->insert_failed)) ||
2002 nla_put_be32(skb, CTA_STATS_DROP, htonl(st->drop)) ||
2003 nla_put_be32(skb, CTA_STATS_EARLY_DROP, htonl(st->early_drop)) ||
2004 nla_put_be32(skb, CTA_STATS_ERROR, htonl(st->error)) ||
2005 nla_put_be32(skb, CTA_STATS_SEARCH_RESTART,
2006 htonl(st->search_restart)))
2007 goto nla_put_failure;
2009 nlmsg_end(skb, nlh);
2014 nlmsg_cancel(skb, nlh);
2019 ctnetlink_ct_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
2022 struct net *net = sock_net(skb->sk);
2024 if (cb->args[0] == nr_cpu_ids)
2027 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
2028 const struct ip_conntrack_stat *st;
2030 if (!cpu_possible(cpu))
2033 st = per_cpu_ptr(net->ct.stat, cpu);
2034 if (ctnetlink_ct_stat_cpu_fill_info(skb,
2035 NETLINK_CB(cb->skb).portid,
2045 static int ctnetlink_stat_ct_cpu(struct net *net, struct sock *ctnl,
2046 struct sk_buff *skb,
2047 const struct nlmsghdr *nlh,
2048 const struct nlattr * const cda[])
2050 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2051 struct netlink_dump_control c = {
2052 .dump = ctnetlink_ct_stat_cpu_dump,
2054 return netlink_dump_start(ctnl, skb, nlh, &c);
2061 ctnetlink_stat_ct_fill_info(struct sk_buff *skb, u32 portid, u32 seq, u32 type,
2064 struct nlmsghdr *nlh;
2065 struct nfgenmsg *nfmsg;
2066 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
2067 unsigned int nr_conntracks = atomic_read(&net->ct.count);
2069 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_CT_GET_STATS);
2070 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
2074 nfmsg = nlmsg_data(nlh);
2075 nfmsg->nfgen_family = AF_UNSPEC;
2076 nfmsg->version = NFNETLINK_V0;
2079 if (nla_put_be32(skb, CTA_STATS_GLOBAL_ENTRIES, htonl(nr_conntracks)))
2080 goto nla_put_failure;
2082 nlmsg_end(skb, nlh);
2087 nlmsg_cancel(skb, nlh);
2091 static int ctnetlink_stat_ct(struct net *net, struct sock *ctnl,
2092 struct sk_buff *skb, const struct nlmsghdr *nlh,
2093 const struct nlattr * const cda[])
2095 struct sk_buff *skb2;
2098 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2102 err = ctnetlink_stat_ct_fill_info(skb2, NETLINK_CB(skb).portid,
2104 NFNL_MSG_TYPE(nlh->nlmsg_type),
2109 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
2118 /* this avoids a loop in nfnetlink. */
2119 return err == -EAGAIN ? -ENOBUFS : err;
2122 static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
2123 [CTA_EXPECT_MASTER] = { .type = NLA_NESTED },
2124 [CTA_EXPECT_TUPLE] = { .type = NLA_NESTED },
2125 [CTA_EXPECT_MASK] = { .type = NLA_NESTED },
2126 [CTA_EXPECT_TIMEOUT] = { .type = NLA_U32 },
2127 [CTA_EXPECT_ID] = { .type = NLA_U32 },
2128 [CTA_EXPECT_HELP_NAME] = { .type = NLA_NUL_STRING,
2129 .len = NF_CT_HELPER_NAME_LEN - 1 },
2130 [CTA_EXPECT_ZONE] = { .type = NLA_U16 },
2131 [CTA_EXPECT_FLAGS] = { .type = NLA_U32 },
2132 [CTA_EXPECT_CLASS] = { .type = NLA_U32 },
2133 [CTA_EXPECT_NAT] = { .type = NLA_NESTED },
2134 [CTA_EXPECT_FN] = { .type = NLA_NUL_STRING },
2137 static struct nf_conntrack_expect *
2138 ctnetlink_alloc_expect(const struct nlattr *const cda[], struct nf_conn *ct,
2139 struct nf_conntrack_helper *helper,
2140 struct nf_conntrack_tuple *tuple,
2141 struct nf_conntrack_tuple *mask);
2143 #ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
2145 ctnetlink_glue_build_size(const struct nf_conn *ct)
2147 return 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
2148 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
2149 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
2150 + 3 * nla_total_size(sizeof(u_int8_t)) /* CTA_PROTO_NUM */
2151 + nla_total_size(sizeof(u_int32_t)) /* CTA_ID */
2152 + nla_total_size(sizeof(u_int32_t)) /* CTA_STATUS */
2153 + nla_total_size(sizeof(u_int32_t)) /* CTA_TIMEOUT */
2154 + nla_total_size(0) /* CTA_PROTOINFO */
2155 + nla_total_size(0) /* CTA_HELP */
2156 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
2157 + ctnetlink_secctx_size(ct)
2158 #ifdef CONFIG_NF_NAT_NEEDED
2159 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
2160 + 6 * nla_total_size(sizeof(u_int32_t)) /* CTA_NAT_SEQ_OFFSET */
2162 #ifdef CONFIG_NF_CONNTRACK_MARK
2163 + nla_total_size(sizeof(u_int32_t)) /* CTA_MARK */
2165 #ifdef CONFIG_NF_CONNTRACK_ZONES
2166 + nla_total_size(sizeof(u_int16_t)) /* CTA_ZONE|CTA_TUPLE_ZONE */
2168 + ctnetlink_proto_size(ct)
2172 static struct nf_conn *ctnetlink_glue_get_ct(const struct sk_buff *skb,
2173 enum ip_conntrack_info *ctinfo)
2177 ct = nf_ct_get(skb, ctinfo);
2178 if (ct && nf_ct_is_untracked(ct))
2184 static int __ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct)
2186 const struct nf_conntrack_zone *zone;
2187 struct nlattr *nest_parms;
2190 zone = nf_ct_zone(ct);
2192 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
2194 goto nla_put_failure;
2195 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
2196 goto nla_put_failure;
2197 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2198 NF_CT_ZONE_DIR_ORIG) < 0)
2199 goto nla_put_failure;
2200 nla_nest_end(skb, nest_parms);
2202 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
2204 goto nla_put_failure;
2205 if (ctnetlink_dump_tuples(skb, nf_ct_tuple(ct, IP_CT_DIR_REPLY)) < 0)
2206 goto nla_put_failure;
2207 if (ctnetlink_dump_zone_id(skb, CTA_TUPLE_ZONE, zone,
2208 NF_CT_ZONE_DIR_REPL) < 0)
2209 goto nla_put_failure;
2210 nla_nest_end(skb, nest_parms);
2212 if (ctnetlink_dump_zone_id(skb, CTA_ZONE, zone,
2213 NF_CT_DEFAULT_ZONE_DIR) < 0)
2214 goto nla_put_failure;
2216 if (ctnetlink_dump_id(skb, ct) < 0)
2217 goto nla_put_failure;
2219 if (ctnetlink_dump_status(skb, ct) < 0)
2220 goto nla_put_failure;
2222 if (ctnetlink_dump_timeout(skb, ct) < 0)
2223 goto nla_put_failure;
2225 if (ctnetlink_dump_protoinfo(skb, ct) < 0)
2226 goto nla_put_failure;
2228 if (ctnetlink_dump_helpinfo(skb, ct) < 0)
2229 goto nla_put_failure;
2231 #ifdef CONFIG_NF_CONNTRACK_SECMARK
2232 if (ct->secmark && ctnetlink_dump_secctx(skb, ct) < 0)
2233 goto nla_put_failure;
2235 if (ct->master && ctnetlink_dump_master(skb, ct) < 0)
2236 goto nla_put_failure;
2238 if ((ct->status & IPS_SEQ_ADJUST) &&
2239 ctnetlink_dump_ct_seq_adj(skb, ct) < 0)
2240 goto nla_put_failure;
2242 #ifdef CONFIG_NF_CONNTRACK_MARK
2243 if (ct->mark && ctnetlink_dump_mark(skb, ct) < 0)
2244 goto nla_put_failure;
2246 if (ctnetlink_dump_labels(skb, ct) < 0)
2247 goto nla_put_failure;
2257 ctnetlink_glue_build(struct sk_buff *skb, struct nf_conn *ct,
2258 enum ip_conntrack_info ctinfo,
2259 u_int16_t ct_attr, u_int16_t ct_info_attr)
2261 struct nlattr *nest_parms;
2263 nest_parms = nla_nest_start(skb, ct_attr | NLA_F_NESTED);
2265 goto nla_put_failure;
2267 if (__ctnetlink_glue_build(skb, ct) < 0)
2268 goto nla_put_failure;
2270 nla_nest_end(skb, nest_parms);
2272 if (nla_put_be32(skb, ct_info_attr, htonl(ctinfo)))
2273 goto nla_put_failure;
2282 ctnetlink_update_status(struct nf_conn *ct, const struct nlattr * const cda[])
2284 unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
2285 unsigned long d = ct->status ^ status;
2287 if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
2288 /* SEEN_REPLY bit can only be set */
2291 if (d & IPS_ASSURED && !(status & IPS_ASSURED))
2292 /* ASSURED bit can only be set */
2295 /* This check is less strict than ctnetlink_change_status()
2296 * because callers often flip IPS_EXPECTED bits when sending
2297 * an NFQA_CT attribute to the kernel. So ignore the
2298 * unchangeable bits but do not error out.
2300 ct->status = (status & ~IPS_UNCHANGEABLE_MASK) |
2301 (ct->status & IPS_UNCHANGEABLE_MASK);
2306 ctnetlink_glue_parse_ct(const struct nlattr *cda[], struct nf_conn *ct)
2310 if (cda[CTA_TIMEOUT]) {
2311 err = ctnetlink_change_timeout(ct, cda);
2315 if (cda[CTA_STATUS]) {
2316 err = ctnetlink_update_status(ct, cda);
2320 if (cda[CTA_HELP]) {
2321 err = ctnetlink_change_helper(ct, cda);
2325 if (cda[CTA_LABELS]) {
2326 err = ctnetlink_attach_labels(ct, cda);
2330 #if defined(CONFIG_NF_CONNTRACK_MARK)
2331 if (cda[CTA_MARK]) {
2332 u32 mask = 0, mark, newmark;
2333 if (cda[CTA_MARK_MASK])
2334 mask = ~ntohl(nla_get_be32(cda[CTA_MARK_MASK]));
2336 mark = ntohl(nla_get_be32(cda[CTA_MARK]));
2337 newmark = (ct->mark & mask) ^ mark;
2338 if (newmark != ct->mark)
2346 ctnetlink_glue_parse(const struct nlattr *attr, struct nf_conn *ct)
2348 struct nlattr *cda[CTA_MAX+1];
2351 ret = nla_parse_nested(cda, CTA_MAX, attr, ct_nla_policy);
2355 spin_lock_bh(&nf_conntrack_expect_lock);
2356 ret = ctnetlink_glue_parse_ct((const struct nlattr **)cda, ct);
2357 spin_unlock_bh(&nf_conntrack_expect_lock);
2362 static int ctnetlink_glue_exp_parse(const struct nlattr * const *cda,
2363 const struct nf_conn *ct,
2364 struct nf_conntrack_tuple *tuple,
2365 struct nf_conntrack_tuple *mask)
2369 err = ctnetlink_parse_tuple(cda, tuple, CTA_EXPECT_TUPLE,
2370 nf_ct_l3num(ct), NULL);
2374 return ctnetlink_parse_tuple(cda, mask, CTA_EXPECT_MASK,
2375 nf_ct_l3num(ct), NULL);
2379 ctnetlink_glue_attach_expect(const struct nlattr *attr, struct nf_conn *ct,
2380 u32 portid, u32 report)
2382 struct nlattr *cda[CTA_EXPECT_MAX+1];
2383 struct nf_conntrack_tuple tuple, mask;
2384 struct nf_conntrack_helper *helper = NULL;
2385 struct nf_conntrack_expect *exp;
2388 err = nla_parse_nested(cda, CTA_EXPECT_MAX, attr, exp_nla_policy);
2392 err = ctnetlink_glue_exp_parse((const struct nlattr * const *)cda,
2397 if (cda[CTA_EXPECT_HELP_NAME]) {
2398 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
2400 helper = __nf_conntrack_helper_find(helpname, nf_ct_l3num(ct),
2401 nf_ct_protonum(ct));
2406 exp = ctnetlink_alloc_expect((const struct nlattr * const *)cda, ct,
2407 helper, &tuple, &mask);
2409 return PTR_ERR(exp);
2411 err = nf_ct_expect_related_report(exp, portid, report);
2412 nf_ct_expect_put(exp);
2416 static void ctnetlink_glue_seqadj(struct sk_buff *skb, struct nf_conn *ct,
2417 enum ip_conntrack_info ctinfo, int diff)
2419 if (!(ct->status & IPS_NAT_MASK))
2422 nf_ct_tcp_seqadj_set(skb, ct, ctinfo, diff);
2425 static struct nfnl_ct_hook ctnetlink_glue_hook = {
2426 .get_ct = ctnetlink_glue_get_ct,
2427 .build_size = ctnetlink_glue_build_size,
2428 .build = ctnetlink_glue_build,
2429 .parse = ctnetlink_glue_parse,
2430 .attach_expect = ctnetlink_glue_attach_expect,
2431 .seq_adjust = ctnetlink_glue_seqadj,
2433 #endif /* CONFIG_NETFILTER_NETLINK_GLUE_CT */
2435 /***********************************************************************
2437 ***********************************************************************/
2439 static int ctnetlink_exp_dump_tuple(struct sk_buff *skb,
2440 const struct nf_conntrack_tuple *tuple,
2441 enum ctattr_expect type)
2443 struct nlattr *nest_parms;
2445 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
2447 goto nla_put_failure;
2448 if (ctnetlink_dump_tuples(skb, tuple) < 0)
2449 goto nla_put_failure;
2450 nla_nest_end(skb, nest_parms);
2458 static int ctnetlink_exp_dump_mask(struct sk_buff *skb,
2459 const struct nf_conntrack_tuple *tuple,
2460 const struct nf_conntrack_tuple_mask *mask)
2463 struct nf_conntrack_l3proto *l3proto;
2464 struct nf_conntrack_l4proto *l4proto;
2465 struct nf_conntrack_tuple m;
2466 struct nlattr *nest_parms;
2468 memset(&m, 0xFF, sizeof(m));
2469 memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
2470 m.src.u.all = mask->src.u.all;
2471 m.dst.protonum = tuple->dst.protonum;
2473 nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
2475 goto nla_put_failure;
2478 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
2479 ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
2481 l4proto = __nf_ct_l4proto_find(tuple->src.l3num,
2482 tuple->dst.protonum);
2483 ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
2487 if (unlikely(ret < 0))
2488 goto nla_put_failure;
2490 nla_nest_end(skb, nest_parms);
2498 static const union nf_inet_addr any_addr;
2501 ctnetlink_exp_dump_expect(struct sk_buff *skb,
2502 const struct nf_conntrack_expect *exp)
2504 struct nf_conn *master = exp->master;
2505 long timeout = ((long)exp->timeout.expires - (long)jiffies) / HZ;
2506 struct nf_conn_help *help;
2507 #ifdef CONFIG_NF_NAT_NEEDED
2508 struct nlattr *nest_parms;
2509 struct nf_conntrack_tuple nat_tuple = {};
2511 struct nf_ct_helper_expectfn *expfn;
2516 if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
2517 goto nla_put_failure;
2518 if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
2519 goto nla_put_failure;
2520 if (ctnetlink_exp_dump_tuple(skb,
2521 &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
2522 CTA_EXPECT_MASTER) < 0)
2523 goto nla_put_failure;
2525 #ifdef CONFIG_NF_NAT_NEEDED
2526 if (!nf_inet_addr_cmp(&exp->saved_addr, &any_addr) ||
2527 exp->saved_proto.all) {
2528 nest_parms = nla_nest_start(skb, CTA_EXPECT_NAT | NLA_F_NESTED);
2530 goto nla_put_failure;
2532 if (nla_put_be32(skb, CTA_EXPECT_NAT_DIR, htonl(exp->dir)))
2533 goto nla_put_failure;
2535 nat_tuple.src.l3num = nf_ct_l3num(master);
2536 nat_tuple.src.u3 = exp->saved_addr;
2537 nat_tuple.dst.protonum = nf_ct_protonum(master);
2538 nat_tuple.src.u = exp->saved_proto;
2540 if (ctnetlink_exp_dump_tuple(skb, &nat_tuple,
2541 CTA_EXPECT_NAT_TUPLE) < 0)
2542 goto nla_put_failure;
2543 nla_nest_end(skb, nest_parms);
2546 if (nla_put_be32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout)) ||
2547 nla_put_be32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp)) ||
2548 nla_put_be32(skb, CTA_EXPECT_FLAGS, htonl(exp->flags)) ||
2549 nla_put_be32(skb, CTA_EXPECT_CLASS, htonl(exp->class)))
2550 goto nla_put_failure;
2551 help = nfct_help(master);
2553 struct nf_conntrack_helper *helper;
2555 helper = rcu_dereference(help->helper);
2557 nla_put_string(skb, CTA_EXPECT_HELP_NAME, helper->name))
2558 goto nla_put_failure;
2560 expfn = nf_ct_helper_expectfn_find_by_symbol(exp->expectfn);
2561 if (expfn != NULL &&
2562 nla_put_string(skb, CTA_EXPECT_FN, expfn->name))
2563 goto nla_put_failure;
2572 ctnetlink_exp_fill_info(struct sk_buff *skb, u32 portid, u32 seq,
2573 int event, const struct nf_conntrack_expect *exp)
2575 struct nlmsghdr *nlh;
2576 struct nfgenmsg *nfmsg;
2577 unsigned int flags = portid ? NLM_F_MULTI : 0;
2579 event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
2580 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
2584 nfmsg = nlmsg_data(nlh);
2585 nfmsg->nfgen_family = exp->tuple.src.l3num;
2586 nfmsg->version = NFNETLINK_V0;
2589 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
2590 goto nla_put_failure;
2592 nlmsg_end(skb, nlh);
2597 nlmsg_cancel(skb, nlh);
2601 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2603 ctnetlink_expect_event(unsigned int events, struct nf_exp_event *item)
2605 struct nf_conntrack_expect *exp = item->exp;
2606 struct net *net = nf_ct_exp_net(exp);
2607 struct nlmsghdr *nlh;
2608 struct nfgenmsg *nfmsg;
2609 struct sk_buff *skb;
2610 unsigned int type, group;
2613 if (events & (1 << IPEXP_DESTROY)) {
2614 type = IPCTNL_MSG_EXP_DELETE;
2615 group = NFNLGRP_CONNTRACK_EXP_DESTROY;
2616 } else if (events & (1 << IPEXP_NEW)) {
2617 type = IPCTNL_MSG_EXP_NEW;
2618 flags = NLM_F_CREATE|NLM_F_EXCL;
2619 group = NFNLGRP_CONNTRACK_EXP_NEW;
2623 if (!item->report && !nfnetlink_has_listeners(net, group))
2626 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
2630 type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
2631 nlh = nlmsg_put(skb, item->portid, 0, type, sizeof(*nfmsg), flags);
2635 nfmsg = nlmsg_data(nlh);
2636 nfmsg->nfgen_family = exp->tuple.src.l3num;
2637 nfmsg->version = NFNETLINK_V0;
2641 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
2642 goto nla_put_failure;
2645 nlmsg_end(skb, nlh);
2646 nfnetlink_send(skb, net, item->portid, group, item->report, GFP_ATOMIC);
2651 nlmsg_cancel(skb, nlh);
2655 nfnetlink_set_err(net, 0, 0, -ENOBUFS);
2659 static int ctnetlink_exp_done(struct netlink_callback *cb)
2662 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
2667 ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2669 struct net *net = sock_net(skb->sk);
2670 struct nf_conntrack_expect *exp, *last;
2671 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2672 u_int8_t l3proto = nfmsg->nfgen_family;
2675 last = (struct nf_conntrack_expect *)cb->args[1];
2676 for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
2678 hlist_for_each_entry(exp, &nf_ct_expect_hash[cb->args[0]],
2680 if (l3proto && exp->tuple.src.l3num != l3proto)
2683 if (!net_eq(nf_ct_net(exp->master), net))
2691 if (ctnetlink_exp_fill_info(skb,
2692 NETLINK_CB(cb->skb).portid,
2696 if (!atomic_inc_not_zero(&exp->use))
2698 cb->args[1] = (unsigned long)exp;
2710 nf_ct_expect_put(last);
2716 ctnetlink_exp_ct_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
2718 struct nf_conntrack_expect *exp, *last;
2719 struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2720 struct nf_conn *ct = cb->data;
2721 struct nf_conn_help *help = nfct_help(ct);
2722 u_int8_t l3proto = nfmsg->nfgen_family;
2728 last = (struct nf_conntrack_expect *)cb->args[1];
2730 hlist_for_each_entry(exp, &help->expectations, lnode) {
2731 if (l3proto && exp->tuple.src.l3num != l3proto)
2738 if (ctnetlink_exp_fill_info(skb, NETLINK_CB(cb->skb).portid,
2742 if (!atomic_inc_not_zero(&exp->use))
2744 cb->args[1] = (unsigned long)exp;
2756 nf_ct_expect_put(last);
2761 static int ctnetlink_dump_exp_ct(struct net *net, struct sock *ctnl,
2762 struct sk_buff *skb,
2763 const struct nlmsghdr *nlh,
2764 const struct nlattr * const cda[])
2767 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2768 u_int8_t u3 = nfmsg->nfgen_family;
2769 struct nf_conntrack_tuple tuple;
2770 struct nf_conntrack_tuple_hash *h;
2772 struct nf_conntrack_zone zone;
2773 struct netlink_dump_control c = {
2774 .dump = ctnetlink_exp_ct_dump_table,
2775 .done = ctnetlink_exp_done,
2778 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2783 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2787 h = nf_conntrack_find_get(net, &zone, &tuple);
2791 ct = nf_ct_tuplehash_to_ctrack(h);
2794 err = netlink_dump_start(ctnl, skb, nlh, &c);
2800 static int ctnetlink_get_expect(struct net *net, struct sock *ctnl,
2801 struct sk_buff *skb, const struct nlmsghdr *nlh,
2802 const struct nlattr * const cda[])
2804 struct nf_conntrack_tuple tuple;
2805 struct nf_conntrack_expect *exp;
2806 struct sk_buff *skb2;
2807 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2808 u_int8_t u3 = nfmsg->nfgen_family;
2809 struct nf_conntrack_zone zone;
2812 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2813 if (cda[CTA_EXPECT_MASTER])
2814 return ctnetlink_dump_exp_ct(net, ctnl, skb, nlh, cda);
2816 struct netlink_dump_control c = {
2817 .dump = ctnetlink_exp_dump_table,
2818 .done = ctnetlink_exp_done,
2820 return netlink_dump_start(ctnl, skb, nlh, &c);
2824 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2828 if (cda[CTA_EXPECT_TUPLE])
2829 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2831 else if (cda[CTA_EXPECT_MASTER])
2832 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER,
2840 exp = nf_ct_expect_find_get(net, &zone, &tuple);
2844 if (cda[CTA_EXPECT_ID]) {
2845 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
2846 if (ntohl(id) != (u32)(unsigned long)exp) {
2847 nf_ct_expect_put(exp);
2853 skb2 = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2855 nf_ct_expect_put(exp);
2860 err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).portid,
2861 nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW, exp);
2863 nf_ct_expect_put(exp);
2867 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).portid, MSG_DONTWAIT);
2876 /* this avoids a loop in nfnetlink. */
2877 return err == -EAGAIN ? -ENOBUFS : err;
2880 static int ctnetlink_del_expect(struct net *net, struct sock *ctnl,
2881 struct sk_buff *skb, const struct nlmsghdr *nlh,
2882 const struct nlattr * const cda[])
2884 struct nf_conntrack_expect *exp;
2885 struct nf_conntrack_tuple tuple;
2886 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2887 struct hlist_node *next;
2888 u_int8_t u3 = nfmsg->nfgen_family;
2889 struct nf_conntrack_zone zone;
2893 if (cda[CTA_EXPECT_TUPLE]) {
2894 /* delete a single expect by tuple */
2895 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
2899 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
2904 /* bump usage count to 2 */
2905 exp = nf_ct_expect_find_get(net, &zone, &tuple);
2909 if (cda[CTA_EXPECT_ID]) {
2910 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
2911 if (ntohl(id) != (u32)(unsigned long)exp) {
2912 nf_ct_expect_put(exp);
2917 /* after list removal, usage count == 1 */
2918 spin_lock_bh(&nf_conntrack_expect_lock);
2919 if (del_timer(&exp->timeout)) {
2920 nf_ct_unlink_expect_report(exp, NETLINK_CB(skb).portid,
2922 nf_ct_expect_put(exp);
2924 spin_unlock_bh(&nf_conntrack_expect_lock);
2925 /* have to put what we 'get' above.
2926 * after this line usage count == 0 */
2927 nf_ct_expect_put(exp);
2928 } else if (cda[CTA_EXPECT_HELP_NAME]) {
2929 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
2930 struct nf_conn_help *m_help;
2932 /* delete all expectations for this helper */
2933 spin_lock_bh(&nf_conntrack_expect_lock);
2934 for (i = 0; i < nf_ct_expect_hsize; i++) {
2935 hlist_for_each_entry_safe(exp, next,
2936 &nf_ct_expect_hash[i],
2939 if (!net_eq(nf_ct_exp_net(exp), net))
2942 m_help = nfct_help(exp->master);
2943 if (!strcmp(m_help->helper->name, name) &&
2944 del_timer(&exp->timeout)) {
2945 nf_ct_unlink_expect_report(exp,
2946 NETLINK_CB(skb).portid,
2948 nf_ct_expect_put(exp);
2952 spin_unlock_bh(&nf_conntrack_expect_lock);
2954 /* This basically means we have to flush everything*/
2955 spin_lock_bh(&nf_conntrack_expect_lock);
2956 for (i = 0; i < nf_ct_expect_hsize; i++) {
2957 hlist_for_each_entry_safe(exp, next,
2958 &nf_ct_expect_hash[i],
2961 if (!net_eq(nf_ct_exp_net(exp), net))
2964 if (del_timer(&exp->timeout)) {
2965 nf_ct_unlink_expect_report(exp,
2966 NETLINK_CB(skb).portid,
2968 nf_ct_expect_put(exp);
2972 spin_unlock_bh(&nf_conntrack_expect_lock);
2978 ctnetlink_change_expect(struct nf_conntrack_expect *x,
2979 const struct nlattr * const cda[])
2981 if (cda[CTA_EXPECT_TIMEOUT]) {
2982 if (!del_timer(&x->timeout))
2985 x->timeout.expires = jiffies +
2986 ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
2987 add_timer(&x->timeout);
2992 static const struct nla_policy exp_nat_nla_policy[CTA_EXPECT_NAT_MAX+1] = {
2993 [CTA_EXPECT_NAT_DIR] = { .type = NLA_U32 },
2994 [CTA_EXPECT_NAT_TUPLE] = { .type = NLA_NESTED },
2998 ctnetlink_parse_expect_nat(const struct nlattr *attr,
2999 struct nf_conntrack_expect *exp,
3002 #ifdef CONFIG_NF_NAT_NEEDED
3003 struct nlattr *tb[CTA_EXPECT_NAT_MAX+1];
3004 struct nf_conntrack_tuple nat_tuple = {};
3007 err = nla_parse_nested(tb, CTA_EXPECT_NAT_MAX, attr, exp_nat_nla_policy);
3011 if (!tb[CTA_EXPECT_NAT_DIR] || !tb[CTA_EXPECT_NAT_TUPLE])
3014 err = ctnetlink_parse_tuple((const struct nlattr * const *)tb,
3015 &nat_tuple, CTA_EXPECT_NAT_TUPLE,
3020 exp->saved_addr = nat_tuple.src.u3;
3021 exp->saved_proto = nat_tuple.src.u;
3022 exp->dir = ntohl(nla_get_be32(tb[CTA_EXPECT_NAT_DIR]));
3030 static struct nf_conntrack_expect *
3031 ctnetlink_alloc_expect(const struct nlattr * const cda[], struct nf_conn *ct,
3032 struct nf_conntrack_helper *helper,
3033 struct nf_conntrack_tuple *tuple,
3034 struct nf_conntrack_tuple *mask)
3036 u_int32_t class = 0;
3037 struct nf_conntrack_expect *exp;
3038 struct nf_conn_help *help;
3041 if (cda[CTA_EXPECT_CLASS] && helper) {
3042 class = ntohl(nla_get_be32(cda[CTA_EXPECT_CLASS]));
3043 if (class > helper->expect_class_max)
3044 return ERR_PTR(-EINVAL);
3046 exp = nf_ct_expect_alloc(ct);
3048 return ERR_PTR(-ENOMEM);
3050 help = nfct_help(ct);
3052 if (!cda[CTA_EXPECT_TIMEOUT]) {
3056 exp->timeout.expires =
3057 jiffies + ntohl(nla_get_be32(cda[CTA_EXPECT_TIMEOUT])) * HZ;
3059 exp->flags = NF_CT_EXPECT_USERSPACE;
3060 if (cda[CTA_EXPECT_FLAGS]) {
3062 ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3065 if (cda[CTA_EXPECT_FLAGS]) {
3066 exp->flags = ntohl(nla_get_be32(cda[CTA_EXPECT_FLAGS]));
3067 exp->flags &= ~NF_CT_EXPECT_USERSPACE;
3071 if (cda[CTA_EXPECT_FN]) {
3072 const char *name = nla_data(cda[CTA_EXPECT_FN]);
3073 struct nf_ct_helper_expectfn *expfn;
3075 expfn = nf_ct_helper_expectfn_find_by_name(name);
3076 if (expfn == NULL) {
3080 exp->expectfn = expfn->expectfn;
3082 exp->expectfn = NULL;
3086 exp->helper = helper;
3087 exp->tuple = *tuple;
3088 exp->mask.src.u3 = mask->src.u3;
3089 exp->mask.src.u.all = mask->src.u.all;
3091 if (cda[CTA_EXPECT_NAT]) {
3092 err = ctnetlink_parse_expect_nat(cda[CTA_EXPECT_NAT],
3093 exp, nf_ct_l3num(ct));
3099 nf_ct_expect_put(exp);
3100 return ERR_PTR(err);
3104 ctnetlink_create_expect(struct net *net,
3105 const struct nf_conntrack_zone *zone,
3106 const struct nlattr * const cda[],
3107 u_int8_t u3, u32 portid, int report)
3109 struct nf_conntrack_tuple tuple, mask, master_tuple;
3110 struct nf_conntrack_tuple_hash *h = NULL;
3111 struct nf_conntrack_helper *helper = NULL;
3112 struct nf_conntrack_expect *exp;
3116 /* caller guarantees that those three CTA_EXPECT_* exist */
3117 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3121 err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK,
3125 err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER,
3130 /* Look for master conntrack of this expectation */
3131 h = nf_conntrack_find_get(net, zone, &master_tuple);
3134 ct = nf_ct_tuplehash_to_ctrack(h);
3136 if (cda[CTA_EXPECT_HELP_NAME]) {
3137 const char *helpname = nla_data(cda[CTA_EXPECT_HELP_NAME]);
3139 helper = __nf_conntrack_helper_find(helpname, u3,
3140 nf_ct_protonum(ct));
3141 if (helper == NULL) {
3142 #ifdef CONFIG_MODULES
3143 if (request_module("nfct-helper-%s", helpname) < 0) {
3147 helper = __nf_conntrack_helper_find(helpname, u3,
3148 nf_ct_protonum(ct));
3159 exp = ctnetlink_alloc_expect(cda, ct, helper, &tuple, &mask);
3165 err = nf_ct_expect_related_report(exp, portid, report);
3166 nf_ct_expect_put(exp);
3172 static int ctnetlink_new_expect(struct net *net, struct sock *ctnl,
3173 struct sk_buff *skb, const struct nlmsghdr *nlh,
3174 const struct nlattr * const cda[])
3176 struct nf_conntrack_tuple tuple;
3177 struct nf_conntrack_expect *exp;
3178 struct nfgenmsg *nfmsg = nlmsg_data(nlh);
3179 u_int8_t u3 = nfmsg->nfgen_family;
3180 struct nf_conntrack_zone zone;
3183 if (!cda[CTA_EXPECT_TUPLE]
3184 || !cda[CTA_EXPECT_MASK]
3185 || !cda[CTA_EXPECT_MASTER])
3188 err = ctnetlink_parse_zone(cda[CTA_EXPECT_ZONE], &zone);
3192 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE,
3197 spin_lock_bh(&nf_conntrack_expect_lock);
3198 exp = __nf_ct_expect_find(net, &zone, &tuple);
3200 spin_unlock_bh(&nf_conntrack_expect_lock);
3202 if (nlh->nlmsg_flags & NLM_F_CREATE) {
3203 err = ctnetlink_create_expect(net, &zone, cda, u3,
3204 NETLINK_CB(skb).portid,
3211 if (!(nlh->nlmsg_flags & NLM_F_EXCL))
3212 err = ctnetlink_change_expect(exp, cda);
3213 spin_unlock_bh(&nf_conntrack_expect_lock);
3219 ctnetlink_exp_stat_fill_info(struct sk_buff *skb, u32 portid, u32 seq, int cpu,
3220 const struct ip_conntrack_stat *st)
3222 struct nlmsghdr *nlh;
3223 struct nfgenmsg *nfmsg;
3224 unsigned int flags = portid ? NLM_F_MULTI : 0, event;
3226 event = (NFNL_SUBSYS_CTNETLINK << 8 | IPCTNL_MSG_EXP_GET_STATS_CPU);
3227 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*nfmsg), flags);
3231 nfmsg = nlmsg_data(nlh);
3232 nfmsg->nfgen_family = AF_UNSPEC;
3233 nfmsg->version = NFNETLINK_V0;
3234 nfmsg->res_id = htons(cpu);
3236 if (nla_put_be32(skb, CTA_STATS_EXP_NEW, htonl(st->expect_new)) ||
3237 nla_put_be32(skb, CTA_STATS_EXP_CREATE, htonl(st->expect_create)) ||
3238 nla_put_be32(skb, CTA_STATS_EXP_DELETE, htonl(st->expect_delete)))
3239 goto nla_put_failure;
3241 nlmsg_end(skb, nlh);
3246 nlmsg_cancel(skb, nlh);
3251 ctnetlink_exp_stat_cpu_dump(struct sk_buff *skb, struct netlink_callback *cb)
3254 struct net *net = sock_net(skb->sk);
3256 if (cb->args[0] == nr_cpu_ids)
3259 for (cpu = cb->args[0]; cpu < nr_cpu_ids; cpu++) {
3260 const struct ip_conntrack_stat *st;
3262 if (!cpu_possible(cpu))
3265 st = per_cpu_ptr(net->ct.stat, cpu);
3266 if (ctnetlink_exp_stat_fill_info(skb, NETLINK_CB(cb->skb).portid,
3276 static int ctnetlink_stat_exp_cpu(struct net *net, struct sock *ctnl,
3277 struct sk_buff *skb,
3278 const struct nlmsghdr *nlh,
3279 const struct nlattr * const cda[])
3281 if (nlh->nlmsg_flags & NLM_F_DUMP) {
3282 struct netlink_dump_control c = {
3283 .dump = ctnetlink_exp_stat_cpu_dump,
3285 return netlink_dump_start(ctnl, skb, nlh, &c);
3291 #ifdef CONFIG_NF_CONNTRACK_EVENTS
3292 static struct nf_ct_event_notifier ctnl_notifier = {
3293 .fcn = ctnetlink_conntrack_event,
3296 static struct nf_exp_event_notifier ctnl_notifier_exp = {
3297 .fcn = ctnetlink_expect_event,
3301 static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
3302 [IPCTNL_MSG_CT_NEW] = { .call = ctnetlink_new_conntrack,
3303 .attr_count = CTA_MAX,
3304 .policy = ct_nla_policy },
3305 [IPCTNL_MSG_CT_GET] = { .call = ctnetlink_get_conntrack,
3306 .attr_count = CTA_MAX,
3307 .policy = ct_nla_policy },
3308 [IPCTNL_MSG_CT_DELETE] = { .call = ctnetlink_del_conntrack,
3309 .attr_count = CTA_MAX,
3310 .policy = ct_nla_policy },
3311 [IPCTNL_MSG_CT_GET_CTRZERO] = { .call = ctnetlink_get_conntrack,
3312 .attr_count = CTA_MAX,
3313 .policy = ct_nla_policy },
3314 [IPCTNL_MSG_CT_GET_STATS_CPU] = { .call = ctnetlink_stat_ct_cpu },
3315 [IPCTNL_MSG_CT_GET_STATS] = { .call = ctnetlink_stat_ct },
3316 [IPCTNL_MSG_CT_GET_DYING] = { .call = ctnetlink_get_ct_dying },
3317 [IPCTNL_MSG_CT_GET_UNCONFIRMED] = { .call = ctnetlink_get_ct_unconfirmed },
3320 static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
3321 [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect,
3322 .attr_count = CTA_EXPECT_MAX,
3323 .policy = exp_nla_policy },
3324 [IPCTNL_MSG_EXP_NEW] = { .call = ctnetlink_new_expect,
3325 .attr_count = CTA_EXPECT_MAX,
3326 .policy = exp_nla_policy },
3327 [IPCTNL_MSG_EXP_DELETE] = { .call = ctnetlink_del_expect,
3328 .attr_count = CTA_EXPECT_MAX,
3329 .policy = exp_nla_policy },
3330 [IPCTNL_MSG_EXP_GET_STATS_CPU] = { .call = ctnetlink_stat_exp_cpu },
3333 static const struct nfnetlink_subsystem ctnl_subsys = {
3334 .name = "conntrack",
3335 .subsys_id = NFNL_SUBSYS_CTNETLINK,
3336 .cb_count = IPCTNL_MSG_MAX,
3340 static const struct nfnetlink_subsystem ctnl_exp_subsys = {
3341 .name = "conntrack_expect",
3342 .subsys_id = NFNL_SUBSYS_CTNETLINK_EXP,
3343 .cb_count = IPCTNL_MSG_EXP_MAX,
3347 MODULE_ALIAS("ip_conntrack_netlink");
3348 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
3349 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
3351 static int __net_init ctnetlink_net_init(struct net *net)
3353 #ifdef CONFIG_NF_CONNTRACK_EVENTS
3356 ret = nf_conntrack_register_notifier(net, &ctnl_notifier);
3358 pr_err("ctnetlink_init: cannot register notifier.\n");
3362 ret = nf_ct_expect_register_notifier(net, &ctnl_notifier_exp);
3364 pr_err("ctnetlink_init: cannot expect register notifier.\n");
3365 goto err_unreg_notifier;
3370 #ifdef CONFIG_NF_CONNTRACK_EVENTS
3372 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3378 static void ctnetlink_net_exit(struct net *net)
3380 #ifdef CONFIG_NF_CONNTRACK_EVENTS
3381 nf_ct_expect_unregister_notifier(net, &ctnl_notifier_exp);
3382 nf_conntrack_unregister_notifier(net, &ctnl_notifier);
3386 static void __net_exit ctnetlink_net_exit_batch(struct list_head *net_exit_list)
3390 list_for_each_entry(net, net_exit_list, exit_list)
3391 ctnetlink_net_exit(net);
3394 static struct pernet_operations ctnetlink_net_ops = {
3395 .init = ctnetlink_net_init,
3396 .exit_batch = ctnetlink_net_exit_batch,
3399 static int __init ctnetlink_init(void)
3403 pr_info("ctnetlink v%s: registering with nfnetlink.\n", version);
3404 ret = nfnetlink_subsys_register(&ctnl_subsys);
3406 pr_err("ctnetlink_init: cannot register with nfnetlink.\n");
3410 ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
3412 pr_err("ctnetlink_init: cannot register exp with nfnetlink.\n");
3413 goto err_unreg_subsys;
3416 ret = register_pernet_subsys(&ctnetlink_net_ops);
3418 pr_err("ctnetlink_init: cannot register pernet operations\n");
3419 goto err_unreg_exp_subsys;
3421 #ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
3422 /* setup interaction between nf_queue and nf_conntrack_netlink. */
3423 RCU_INIT_POINTER(nfnl_ct_hook, &ctnetlink_glue_hook);
3427 err_unreg_exp_subsys:
3428 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
3430 nfnetlink_subsys_unregister(&ctnl_subsys);
3435 static void __exit ctnetlink_exit(void)
3437 pr_info("ctnetlink: unregistering from nfnetlink.\n");
3439 unregister_pernet_subsys(&ctnetlink_net_ops);
3440 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
3441 nfnetlink_subsys_unregister(&ctnl_subsys);
3442 #ifdef CONFIG_NETFILTER_NETLINK_GLUE_CT
3443 RCU_INIT_POINTER(nfnl_ct_hook, NULL);
3447 module_init(ctnetlink_init);
3448 module_exit(ctnetlink_exit);