1 /* Connection tracking via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>
5 * (C) 2002-2006 by Harald Welte <laforge@gnumonks.org>
6 * (C) 2003 by Patrick Mchardy <kaber@trash.net>
7 * (C) 2005-2007 by Pablo Neira Ayuso <pablo@netfilter.org>
9 * Initial connection tracking via netlink development funded and
10 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
12 * Further development of this code funded by Astaro AG (http://www.astaro.com)
14 * This software may be used and distributed according to the terms
15 * of the GNU General Public License, incorporated herein by reference.
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/types.h>
22 #include <linux/timer.h>
23 #include <linux/skbuff.h>
24 #include <linux/errno.h>
25 #include <linux/netlink.h>
26 #include <linux/spinlock.h>
27 #include <linux/interrupt.h>
28 #include <linux/notifier.h>
30 #include <linux/netfilter.h>
31 #include <net/netlink.h>
32 #include <net/netfilter/nf_conntrack.h>
33 #include <net/netfilter/nf_conntrack_core.h>
34 #include <net/netfilter/nf_conntrack_expect.h>
35 #include <net/netfilter/nf_conntrack_helper.h>
36 #include <net/netfilter/nf_conntrack_l3proto.h>
37 #include <net/netfilter/nf_conntrack_l4proto.h>
38 #include <net/netfilter/nf_conntrack_tuple.h>
39 #ifdef CONFIG_NF_NAT_NEEDED
40 #include <net/netfilter/nf_nat_core.h>
41 #include <net/netfilter/nf_nat_protocol.h>
44 #include <linux/netfilter/nfnetlink.h>
45 #include <linux/netfilter/nfnetlink_conntrack.h>
47 MODULE_LICENSE("GPL");
49 static char __initdata version
[] = "0.93";
52 ctnetlink_dump_tuples_proto(struct sk_buff
*skb
,
53 const struct nf_conntrack_tuple
*tuple
,
54 struct nf_conntrack_l4proto
*l4proto
)
57 struct nlattr
*nest_parms
;
59 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_PROTO
| NLA_F_NESTED
);
62 NLA_PUT_U8(skb
, CTA_PROTO_NUM
, tuple
->dst
.protonum
);
64 if (likely(l4proto
->tuple_to_nlattr
))
65 ret
= l4proto
->tuple_to_nlattr(skb
, tuple
);
67 nla_nest_end(skb
, nest_parms
);
76 ctnetlink_dump_tuples_ip(struct sk_buff
*skb
,
77 const struct nf_conntrack_tuple
*tuple
,
78 struct nf_conntrack_l3proto
*l3proto
)
81 struct nlattr
*nest_parms
;
83 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_IP
| NLA_F_NESTED
);
87 if (likely(l3proto
->tuple_to_nlattr
))
88 ret
= l3proto
->tuple_to_nlattr(skb
, tuple
);
90 nla_nest_end(skb
, nest_parms
);
99 ctnetlink_dump_tuples(struct sk_buff
*skb
,
100 const struct nf_conntrack_tuple
*tuple
)
103 struct nf_conntrack_l3proto
*l3proto
;
104 struct nf_conntrack_l4proto
*l4proto
;
106 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
107 ret
= ctnetlink_dump_tuples_ip(skb
, tuple
, l3proto
);
108 nf_ct_l3proto_put(l3proto
);
110 if (unlikely(ret
< 0))
113 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
114 ret
= ctnetlink_dump_tuples_proto(skb
, tuple
, l4proto
);
115 nf_ct_l4proto_put(l4proto
);
121 ctnetlink_dump_status(struct sk_buff
*skb
, const struct nf_conn
*ct
)
123 NLA_PUT_BE32(skb
, CTA_STATUS
, htonl(ct
->status
));
131 ctnetlink_dump_timeout(struct sk_buff
*skb
, const struct nf_conn
*ct
)
133 long timeout
= (ct
->timeout
.expires
- jiffies
) / HZ
;
138 NLA_PUT_BE32(skb
, CTA_TIMEOUT
, htonl(timeout
));
146 ctnetlink_dump_protoinfo(struct sk_buff
*skb
, const struct nf_conn
*ct
)
148 struct nf_conntrack_l4proto
*l4proto
= nf_ct_l4proto_find_get(ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
, ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
);
149 struct nlattr
*nest_proto
;
152 if (!l4proto
->to_nlattr
) {
153 nf_ct_l4proto_put(l4proto
);
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 nf_ct_l4proto_put(l4proto
);
165 nla_nest_end(skb
, nest_proto
);
170 nf_ct_l4proto_put(l4proto
);
175 ctnetlink_dump_helpinfo(struct sk_buff
*skb
, const struct nf_conn
*ct
)
177 struct nlattr
*nest_helper
;
178 const struct nf_conn_help
*help
= nfct_help(ct
);
179 struct nf_conntrack_helper
*helper
;
185 helper
= rcu_dereference(help
->helper
);
189 nest_helper
= nla_nest_start(skb
, CTA_HELP
| NLA_F_NESTED
);
191 goto nla_put_failure
;
192 NLA_PUT_STRING(skb
, CTA_HELP_NAME
, helper
->name
);
194 if (helper
->to_nlattr
)
195 helper
->to_nlattr(skb
, ct
);
197 nla_nest_end(skb
, nest_helper
);
207 #ifdef CONFIG_NF_CT_ACCT
209 ctnetlink_dump_counters(struct sk_buff
*skb
, const struct nf_conn
*ct
,
210 enum ip_conntrack_dir dir
)
212 enum ctattr_type type
= dir
? CTA_COUNTERS_REPLY
: CTA_COUNTERS_ORIG
;
213 struct nlattr
*nest_count
;
215 nest_count
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
217 goto nla_put_failure
;
219 NLA_PUT_BE32(skb
, CTA_COUNTERS32_PACKETS
,
220 htonl(ct
->counters
[dir
].packets
));
221 NLA_PUT_BE32(skb
, CTA_COUNTERS32_BYTES
,
222 htonl(ct
->counters
[dir
].bytes
));
224 nla_nest_end(skb
, nest_count
);
232 #define ctnetlink_dump_counters(a, b, c) (0)
235 #ifdef CONFIG_NF_CONNTRACK_MARK
237 ctnetlink_dump_mark(struct sk_buff
*skb
, const struct nf_conn
*ct
)
239 NLA_PUT_BE32(skb
, CTA_MARK
, htonl(ct
->mark
));
246 #define ctnetlink_dump_mark(a, b) (0)
249 #ifdef CONFIG_NF_CONNTRACK_SECMARK
251 ctnetlink_dump_secmark(struct sk_buff
*skb
, const struct nf_conn
*ct
)
253 NLA_PUT_BE32(skb
, CTA_SECMARK
, htonl(ct
->secmark
));
260 #define ctnetlink_dump_secmark(a, b) (0)
263 #define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
266 ctnetlink_dump_master(struct sk_buff
*skb
, const struct nf_conn
*ct
)
268 struct nlattr
*nest_parms
;
270 if (!(ct
->status
& IPS_EXPECTED
))
273 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_MASTER
| NLA_F_NESTED
);
275 goto nla_put_failure
;
276 if (ctnetlink_dump_tuples(skb
, master_tuple(ct
)) < 0)
277 goto nla_put_failure
;
278 nla_nest_end(skb
, nest_parms
);
286 #ifdef CONFIG_NF_NAT_NEEDED
288 dump_nat_seq_adj(struct sk_buff
*skb
, const struct nf_nat_seq
*natseq
, int type
)
290 struct nlattr
*nest_parms
;
292 nest_parms
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
294 goto nla_put_failure
;
296 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_CORRECTION_POS
,
297 htonl(natseq
->correction_pos
));
298 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_OFFSET_BEFORE
,
299 htonl(natseq
->offset_before
));
300 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_OFFSET_AFTER
,
301 htonl(natseq
->offset_after
));
303 nla_nest_end(skb
, nest_parms
);
312 ctnetlink_dump_nat_seq_adj(struct sk_buff
*skb
, const struct nf_conn
*ct
)
314 struct nf_nat_seq
*natseq
;
315 struct nf_conn_nat
*nat
= nfct_nat(ct
);
317 if (!(ct
->status
& IPS_SEQ_ADJUST
) || !nat
)
320 natseq
= &nat
->seq
[IP_CT_DIR_ORIGINAL
];
321 if (dump_nat_seq_adj(skb
, natseq
, CTA_NAT_SEQ_ADJ_ORIG
) == -1)
324 natseq
= &nat
->seq
[IP_CT_DIR_REPLY
];
325 if (dump_nat_seq_adj(skb
, natseq
, CTA_NAT_SEQ_ADJ_REPLY
) == -1)
331 #define ctnetlink_dump_nat_seq_adj(a, b) (0)
335 ctnetlink_dump_id(struct sk_buff
*skb
, const struct nf_conn
*ct
)
337 NLA_PUT_BE32(skb
, CTA_ID
, htonl((unsigned long)ct
));
345 ctnetlink_dump_use(struct sk_buff
*skb
, const struct nf_conn
*ct
)
347 NLA_PUT_BE32(skb
, CTA_USE
, htonl(atomic_read(&ct
->ct_general
.use
)));
354 #define tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
357 ctnetlink_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
358 int event
, int nowait
,
359 const struct nf_conn
*ct
)
361 struct nlmsghdr
*nlh
;
362 struct nfgenmsg
*nfmsg
;
363 struct nlattr
*nest_parms
;
364 unsigned char *b
= skb_tail_pointer(skb
);
366 event
|= NFNL_SUBSYS_CTNETLINK
<< 8;
367 nlh
= NLMSG_PUT(skb
, pid
, seq
, event
, sizeof(struct nfgenmsg
));
368 nfmsg
= NLMSG_DATA(nlh
);
370 nlh
->nlmsg_flags
= (nowait
&& pid
) ? NLM_F_MULTI
: 0;
371 nfmsg
->nfgen_family
=
372 ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
373 nfmsg
->version
= NFNETLINK_V0
;
376 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
378 goto nla_put_failure
;
379 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
380 goto nla_put_failure
;
381 nla_nest_end(skb
, nest_parms
);
383 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
385 goto nla_put_failure
;
386 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
387 goto nla_put_failure
;
388 nla_nest_end(skb
, nest_parms
);
390 if (ctnetlink_dump_status(skb
, ct
) < 0 ||
391 ctnetlink_dump_timeout(skb
, ct
) < 0 ||
392 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
393 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0 ||
394 ctnetlink_dump_protoinfo(skb
, ct
) < 0 ||
395 ctnetlink_dump_helpinfo(skb
, ct
) < 0 ||
396 ctnetlink_dump_mark(skb
, ct
) < 0 ||
397 ctnetlink_dump_secmark(skb
, ct
) < 0 ||
398 ctnetlink_dump_id(skb
, ct
) < 0 ||
399 ctnetlink_dump_use(skb
, ct
) < 0 ||
400 ctnetlink_dump_master(skb
, ct
) < 0 ||
401 ctnetlink_dump_nat_seq_adj(skb
, ct
) < 0)
402 goto nla_put_failure
;
404 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
413 #ifdef CONFIG_NF_CONNTRACK_EVENTS
414 static int ctnetlink_conntrack_event(struct notifier_block
*this,
415 unsigned long events
, void *ptr
)
417 struct nlmsghdr
*nlh
;
418 struct nfgenmsg
*nfmsg
;
419 struct nlattr
*nest_parms
;
420 struct nf_conn
*ct
= (struct nf_conn
*)ptr
;
424 unsigned int flags
= 0, group
;
426 /* ignore our fake conntrack entry */
427 if (ct
== &nf_conntrack_untracked
)
430 if (events
& IPCT_DESTROY
) {
431 type
= IPCTNL_MSG_CT_DELETE
;
432 group
= NFNLGRP_CONNTRACK_DESTROY
;
433 } else if (events
& (IPCT_NEW
| IPCT_RELATED
)) {
434 type
= IPCTNL_MSG_CT_NEW
;
435 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
436 group
= NFNLGRP_CONNTRACK_NEW
;
437 } else if (events
& (IPCT_STATUS
| IPCT_PROTOINFO
)) {
438 type
= IPCTNL_MSG_CT_NEW
;
439 group
= NFNLGRP_CONNTRACK_UPDATE
;
443 if (!nfnetlink_has_listeners(group
))
446 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_ATOMIC
);
452 type
|= NFNL_SUBSYS_CTNETLINK
<< 8;
453 nlh
= NLMSG_PUT(skb
, 0, 0, type
, sizeof(struct nfgenmsg
));
454 nfmsg
= NLMSG_DATA(nlh
);
456 nlh
->nlmsg_flags
= flags
;
457 nfmsg
->nfgen_family
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
458 nfmsg
->version
= NFNETLINK_V0
;
461 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
463 goto nla_put_failure
;
464 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
465 goto nla_put_failure
;
466 nla_nest_end(skb
, nest_parms
);
468 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
470 goto nla_put_failure
;
471 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
472 goto nla_put_failure
;
473 nla_nest_end(skb
, nest_parms
);
475 if (events
& IPCT_DESTROY
) {
476 if (ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
477 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0)
478 goto nla_put_failure
;
480 if (ctnetlink_dump_status(skb
, ct
) < 0)
481 goto nla_put_failure
;
483 if (ctnetlink_dump_timeout(skb
, ct
) < 0)
484 goto nla_put_failure
;
486 if (events
& IPCT_PROTOINFO
487 && ctnetlink_dump_protoinfo(skb
, ct
) < 0)
488 goto nla_put_failure
;
490 if ((events
& IPCT_HELPER
|| nfct_help(ct
))
491 && ctnetlink_dump_helpinfo(skb
, ct
) < 0)
492 goto nla_put_failure
;
494 #ifdef CONFIG_NF_CONNTRACK_SECMARK
495 if ((events
& IPCT_SECMARK
|| ct
->secmark
)
496 && ctnetlink_dump_secmark(skb
, ct
) < 0)
497 goto nla_put_failure
;
500 if (events
& IPCT_COUNTER_FILLING
&&
501 (ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
502 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0))
503 goto nla_put_failure
;
505 if (events
& IPCT_RELATED
&&
506 ctnetlink_dump_master(skb
, ct
) < 0)
507 goto nla_put_failure
;
509 if (events
& IPCT_NATSEQADJ
&&
510 ctnetlink_dump_nat_seq_adj(skb
, ct
) < 0)
511 goto nla_put_failure
;
514 #ifdef CONFIG_NF_CONNTRACK_MARK
515 if ((events
& IPCT_MARK
|| ct
->mark
)
516 && ctnetlink_dump_mark(skb
, ct
) < 0)
517 goto nla_put_failure
;
520 nlh
->nlmsg_len
= skb
->tail
- b
;
521 nfnetlink_send(skb
, 0, group
, 0);
529 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
531 static int ctnetlink_done(struct netlink_callback
*cb
)
534 nf_ct_put((struct nf_conn
*)cb
->args
[1]);
538 #define L3PROTO(ct) (ct)->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num
541 ctnetlink_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
543 struct nf_conn
*ct
, *last
;
544 struct nf_conntrack_tuple_hash
*h
;
545 struct hlist_node
*n
;
546 struct nfgenmsg
*nfmsg
= NLMSG_DATA(cb
->nlh
);
547 u_int8_t l3proto
= nfmsg
->nfgen_family
;
550 last
= (struct nf_conn
*)cb
->args
[1];
551 for (; cb
->args
[0] < nf_conntrack_htable_size
; cb
->args
[0]++) {
553 hlist_for_each_entry_rcu(h
, n
, &nf_conntrack_hash
[cb
->args
[0]],
555 if (NF_CT_DIRECTION(h
) != IP_CT_DIR_ORIGINAL
)
557 ct
= nf_ct_tuplehash_to_ctrack(h
);
558 /* Dump entries of a given L3 protocol number.
559 * If it is not specified, ie. l3proto == 0,
560 * then dump everything. */
561 if (l3proto
&& L3PROTO(ct
) != l3proto
)
568 if (ctnetlink_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
572 if (!atomic_inc_not_zero(&ct
->ct_general
.use
))
574 cb
->args
[1] = (unsigned long)ct
;
577 #ifdef CONFIG_NF_CT_ACCT
578 if (NFNL_MSG_TYPE(cb
->nlh
->nlmsg_type
) ==
579 IPCTNL_MSG_CT_GET_CTRZERO
)
580 memset(&ct
->counters
, 0, sizeof(ct
->counters
));
597 ctnetlink_parse_tuple_ip(struct nlattr
*attr
, struct nf_conntrack_tuple
*tuple
)
599 struct nlattr
*tb
[CTA_IP_MAX
+1];
600 struct nf_conntrack_l3proto
*l3proto
;
603 nla_parse_nested(tb
, CTA_IP_MAX
, attr
, NULL
);
605 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
607 if (likely(l3proto
->nlattr_to_tuple
)) {
608 ret
= nla_validate_nested(attr
, CTA_IP_MAX
,
609 l3proto
->nla_policy
);
611 ret
= l3proto
->nlattr_to_tuple(tb
, tuple
);
614 nf_ct_l3proto_put(l3proto
);
619 static const struct nla_policy proto_nla_policy
[CTA_PROTO_MAX
+1] = {
620 [CTA_PROTO_NUM
] = { .type
= NLA_U8
},
624 ctnetlink_parse_tuple_proto(struct nlattr
*attr
,
625 struct nf_conntrack_tuple
*tuple
)
627 struct nlattr
*tb
[CTA_PROTO_MAX
+1];
628 struct nf_conntrack_l4proto
*l4proto
;
631 ret
= nla_parse_nested(tb
, CTA_PROTO_MAX
, attr
, proto_nla_policy
);
635 if (!tb
[CTA_PROTO_NUM
])
637 tuple
->dst
.protonum
= nla_get_u8(tb
[CTA_PROTO_NUM
]);
639 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
641 if (likely(l4proto
->nlattr_to_tuple
)) {
642 ret
= nla_validate_nested(attr
, CTA_PROTO_MAX
,
643 l4proto
->nla_policy
);
645 ret
= l4proto
->nlattr_to_tuple(tb
, tuple
);
648 nf_ct_l4proto_put(l4proto
);
654 ctnetlink_parse_tuple(struct nlattr
*cda
[], struct nf_conntrack_tuple
*tuple
,
655 enum ctattr_tuple type
, u_int8_t l3num
)
657 struct nlattr
*tb
[CTA_TUPLE_MAX
+1];
660 memset(tuple
, 0, sizeof(*tuple
));
662 nla_parse_nested(tb
, CTA_TUPLE_MAX
, cda
[type
], NULL
);
664 if (!tb
[CTA_TUPLE_IP
])
667 tuple
->src
.l3num
= l3num
;
669 err
= ctnetlink_parse_tuple_ip(tb
[CTA_TUPLE_IP
], tuple
);
673 if (!tb
[CTA_TUPLE_PROTO
])
676 err
= ctnetlink_parse_tuple_proto(tb
[CTA_TUPLE_PROTO
], tuple
);
680 /* orig and expect tuples get DIR_ORIGINAL */
681 if (type
== CTA_TUPLE_REPLY
)
682 tuple
->dst
.dir
= IP_CT_DIR_REPLY
;
684 tuple
->dst
.dir
= IP_CT_DIR_ORIGINAL
;
689 #ifdef CONFIG_NF_NAT_NEEDED
690 static const struct nla_policy protonat_nla_policy
[CTA_PROTONAT_MAX
+1] = {
691 [CTA_PROTONAT_PORT_MIN
] = { .type
= NLA_U16
},
692 [CTA_PROTONAT_PORT_MAX
] = { .type
= NLA_U16
},
695 static int nfnetlink_parse_nat_proto(struct nlattr
*attr
,
696 const struct nf_conn
*ct
,
697 struct nf_nat_range
*range
)
699 struct nlattr
*tb
[CTA_PROTONAT_MAX
+1];
700 const struct nf_nat_protocol
*npt
;
703 err
= nla_parse_nested(tb
, CTA_PROTONAT_MAX
, attr
, protonat_nla_policy
);
707 npt
= nf_nat_proto_find_get(ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
);
709 if (!npt
->nlattr_to_range
) {
710 nf_nat_proto_put(npt
);
714 /* nlattr_to_range returns 1 if it parsed, 0 if not, neg. on error */
715 if (npt
->nlattr_to_range(tb
, range
) > 0)
716 range
->flags
|= IP_NAT_RANGE_PROTO_SPECIFIED
;
718 nf_nat_proto_put(npt
);
723 static const struct nla_policy nat_nla_policy
[CTA_NAT_MAX
+1] = {
724 [CTA_NAT_MINIP
] = { .type
= NLA_U32
},
725 [CTA_NAT_MAXIP
] = { .type
= NLA_U32
},
729 nfnetlink_parse_nat(struct nlattr
*nat
,
730 const struct nf_conn
*ct
, struct nf_nat_range
*range
)
732 struct nlattr
*tb
[CTA_NAT_MAX
+1];
735 memset(range
, 0, sizeof(*range
));
737 err
= nla_parse_nested(tb
, CTA_NAT_MAX
, nat
, nat_nla_policy
);
741 if (tb
[CTA_NAT_MINIP
])
742 range
->min_ip
= nla_get_be32(tb
[CTA_NAT_MINIP
]);
744 if (!tb
[CTA_NAT_MAXIP
])
745 range
->max_ip
= range
->min_ip
;
747 range
->max_ip
= nla_get_be32(tb
[CTA_NAT_MAXIP
]);
750 range
->flags
|= IP_NAT_RANGE_MAP_IPS
;
752 if (!tb
[CTA_NAT_PROTO
])
755 err
= nfnetlink_parse_nat_proto(tb
[CTA_NAT_PROTO
], ct
, range
);
764 ctnetlink_parse_help(struct nlattr
*attr
, char **helper_name
)
766 struct nlattr
*tb
[CTA_HELP_MAX
+1];
768 nla_parse_nested(tb
, CTA_HELP_MAX
, attr
, NULL
);
770 if (!tb
[CTA_HELP_NAME
])
773 *helper_name
= nla_data(tb
[CTA_HELP_NAME
]);
778 static const struct nla_policy ct_nla_policy
[CTA_MAX
+1] = {
779 [CTA_STATUS
] = { .type
= NLA_U32
},
780 [CTA_TIMEOUT
] = { .type
= NLA_U32
},
781 [CTA_MARK
] = { .type
= NLA_U32
},
782 [CTA_USE
] = { .type
= NLA_U32
},
783 [CTA_ID
] = { .type
= NLA_U32
},
787 ctnetlink_del_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
788 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
790 struct nf_conntrack_tuple_hash
*h
;
791 struct nf_conntrack_tuple tuple
;
793 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
794 u_int8_t u3
= nfmsg
->nfgen_family
;
797 if (cda
[CTA_TUPLE_ORIG
])
798 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
799 else if (cda
[CTA_TUPLE_REPLY
])
800 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
802 /* Flush the whole table */
803 nf_conntrack_flush();
810 h
= nf_conntrack_find_get(&tuple
);
814 ct
= nf_ct_tuplehash_to_ctrack(h
);
817 u_int32_t id
= ntohl(nla_get_be32(cda
[CTA_ID
]));
818 if (id
!= (u32
)(unsigned long)ct
) {
823 if (del_timer(&ct
->timeout
))
824 ct
->timeout
.function((unsigned long)ct
);
832 ctnetlink_get_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
833 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
835 struct nf_conntrack_tuple_hash
*h
;
836 struct nf_conntrack_tuple tuple
;
838 struct sk_buff
*skb2
= NULL
;
839 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
840 u_int8_t u3
= nfmsg
->nfgen_family
;
843 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
844 #ifndef CONFIG_NF_CT_ACCT
845 if (NFNL_MSG_TYPE(nlh
->nlmsg_type
) == IPCTNL_MSG_CT_GET_CTRZERO
)
848 return netlink_dump_start(ctnl
, skb
, nlh
, ctnetlink_dump_table
,
852 if (cda
[CTA_TUPLE_ORIG
])
853 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
854 else if (cda
[CTA_TUPLE_REPLY
])
855 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
862 h
= nf_conntrack_find_get(&tuple
);
866 ct
= nf_ct_tuplehash_to_ctrack(h
);
869 skb2
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
875 err
= ctnetlink_fill_info(skb2
, NETLINK_CB(skb
).pid
, nlh
->nlmsg_seq
,
876 IPCTNL_MSG_CT_NEW
, 1, ct
);
881 err
= netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
894 ctnetlink_change_status(struct nf_conn
*ct
, struct nlattr
*cda
[])
897 unsigned int status
= ntohl(nla_get_be32(cda
[CTA_STATUS
]));
898 d
= ct
->status
^ status
;
900 if (d
& (IPS_EXPECTED
|IPS_CONFIRMED
|IPS_DYING
))
904 if (d
& IPS_SEEN_REPLY
&& !(status
& IPS_SEEN_REPLY
))
905 /* SEEN_REPLY bit can only be set */
909 if (d
& IPS_ASSURED
&& !(status
& IPS_ASSURED
))
910 /* ASSURED bit can only be set */
913 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
]) {
914 #ifndef CONFIG_NF_NAT_NEEDED
917 struct nf_nat_range range
;
919 if (cda
[CTA_NAT_DST
]) {
920 if (nfnetlink_parse_nat(cda
[CTA_NAT_DST
], ct
,
923 if (nf_nat_initialized(ct
, IP_NAT_MANIP_DST
))
925 nf_nat_setup_info(ct
, &range
, IP_NAT_MANIP_DST
);
927 if (cda
[CTA_NAT_SRC
]) {
928 if (nfnetlink_parse_nat(cda
[CTA_NAT_SRC
], ct
,
931 if (nf_nat_initialized(ct
, IP_NAT_MANIP_SRC
))
933 nf_nat_setup_info(ct
, &range
, IP_NAT_MANIP_SRC
);
938 /* Be careful here, modifying NAT bits can screw up things,
939 * so don't let users modify them directly if they don't pass
941 ct
->status
|= status
& ~(IPS_NAT_DONE_MASK
| IPS_NAT_MASK
);
947 ctnetlink_change_helper(struct nf_conn
*ct
, struct nlattr
*cda
[])
949 struct nf_conntrack_helper
*helper
;
950 struct nf_conn_help
*help
= nfct_help(ct
);
954 /* don't change helper of sibling connections */
958 err
= ctnetlink_parse_help(cda
[CTA_HELP
], &helpname
);
962 if (!strcmp(helpname
, "")) {
963 if (help
&& help
->helper
) {
964 /* we had a helper before ... */
965 nf_ct_remove_expectations(ct
);
966 rcu_assign_pointer(help
->helper
, NULL
);
972 helper
= __nf_conntrack_helper_find_byname(helpname
);
977 if (help
->helper
== helper
)
981 /* need to zero data of old helper */
982 memset(&help
->help
, 0, sizeof(help
->help
));
984 help
= nf_ct_helper_ext_add(ct
, GFP_KERNEL
);
989 rcu_assign_pointer(help
->helper
, helper
);
995 ctnetlink_change_timeout(struct nf_conn
*ct
, struct nlattr
*cda
[])
997 u_int32_t timeout
= ntohl(nla_get_be32(cda
[CTA_TIMEOUT
]));
999 if (!del_timer(&ct
->timeout
))
1002 ct
->timeout
.expires
= jiffies
+ timeout
* HZ
;
1003 add_timer(&ct
->timeout
);
1009 ctnetlink_change_protoinfo(struct nf_conn
*ct
, struct nlattr
*cda
[])
1011 struct nlattr
*tb
[CTA_PROTOINFO_MAX
+1], *attr
= cda
[CTA_PROTOINFO
];
1012 struct nf_conntrack_l4proto
*l4proto
;
1013 u_int16_t npt
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
;
1014 u_int16_t l3num
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
1017 nla_parse_nested(tb
, CTA_PROTOINFO_MAX
, attr
, NULL
);
1019 l4proto
= nf_ct_l4proto_find_get(l3num
, npt
);
1021 if (l4proto
->from_nlattr
)
1022 err
= l4proto
->from_nlattr(tb
, ct
);
1023 nf_ct_l4proto_put(l4proto
);
1028 #ifdef CONFIG_NF_NAT_NEEDED
1030 change_nat_seq_adj(struct nf_nat_seq
*natseq
, struct nlattr
*attr
)
1032 struct nlattr
*cda
[CTA_NAT_SEQ_MAX
+1];
1034 nla_parse_nested(cda
, CTA_NAT_SEQ_MAX
, attr
, NULL
);
1036 if (!cda
[CTA_NAT_SEQ_CORRECTION_POS
])
1039 natseq
->correction_pos
=
1040 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_CORRECTION_POS
]));
1042 if (!cda
[CTA_NAT_SEQ_OFFSET_BEFORE
])
1045 natseq
->offset_before
=
1046 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_OFFSET_BEFORE
]));
1048 if (!cda
[CTA_NAT_SEQ_OFFSET_AFTER
])
1051 natseq
->offset_after
=
1052 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_OFFSET_AFTER
]));
1058 ctnetlink_change_nat_seq_adj(struct nf_conn
*ct
, struct nlattr
*cda
[])
1061 struct nf_conn_nat
*nat
= nfct_nat(ct
);
1066 if (cda
[CTA_NAT_SEQ_ADJ_ORIG
]) {
1067 ret
= change_nat_seq_adj(&nat
->seq
[IP_CT_DIR_ORIGINAL
],
1068 cda
[CTA_NAT_SEQ_ADJ_ORIG
]);
1072 ct
->status
|= IPS_SEQ_ADJUST
;
1075 if (cda
[CTA_NAT_SEQ_ADJ_REPLY
]) {
1076 ret
= change_nat_seq_adj(&nat
->seq
[IP_CT_DIR_REPLY
],
1077 cda
[CTA_NAT_SEQ_ADJ_REPLY
]);
1081 ct
->status
|= IPS_SEQ_ADJUST
;
1089 ctnetlink_change_conntrack(struct nf_conn
*ct
, struct nlattr
*cda
[])
1093 if (cda
[CTA_HELP
]) {
1094 err
= ctnetlink_change_helper(ct
, cda
);
1099 if (cda
[CTA_TIMEOUT
]) {
1100 err
= ctnetlink_change_timeout(ct
, cda
);
1105 if (cda
[CTA_STATUS
]) {
1106 err
= ctnetlink_change_status(ct
, cda
);
1111 if (cda
[CTA_PROTOINFO
]) {
1112 err
= ctnetlink_change_protoinfo(ct
, cda
);
1117 #if defined(CONFIG_NF_CONNTRACK_MARK)
1119 ct
->mark
= ntohl(nla_get_be32(cda
[CTA_MARK
]));
1122 #ifdef CONFIG_NF_NAT_NEEDED
1123 if (cda
[CTA_NAT_SEQ_ADJ_ORIG
] || cda
[CTA_NAT_SEQ_ADJ_REPLY
]) {
1124 err
= ctnetlink_change_nat_seq_adj(ct
, cda
);
1134 ctnetlink_create_conntrack(struct nlattr
*cda
[],
1135 struct nf_conntrack_tuple
*otuple
,
1136 struct nf_conntrack_tuple
*rtuple
,
1137 struct nf_conn
*master_ct
)
1141 struct nf_conn_help
*help
;
1142 struct nf_conntrack_helper
*helper
;
1144 ct
= nf_conntrack_alloc(otuple
, rtuple
);
1145 if (ct
== NULL
|| IS_ERR(ct
))
1148 if (!cda
[CTA_TIMEOUT
])
1150 ct
->timeout
.expires
= ntohl(nla_get_be32(cda
[CTA_TIMEOUT
]));
1152 ct
->timeout
.expires
= jiffies
+ ct
->timeout
.expires
* HZ
;
1153 ct
->status
|= IPS_CONFIRMED
;
1155 if (cda
[CTA_STATUS
]) {
1156 err
= ctnetlink_change_status(ct
, cda
);
1161 if (cda
[CTA_PROTOINFO
]) {
1162 err
= ctnetlink_change_protoinfo(ct
, cda
);
1167 #if defined(CONFIG_NF_CONNTRACK_MARK)
1169 ct
->mark
= ntohl(nla_get_be32(cda
[CTA_MARK
]));
1173 helper
= __nf_ct_helper_find(rtuple
);
1175 help
= nf_ct_helper_ext_add(ct
, GFP_KERNEL
);
1181 /* not in hash table yet so not strictly necessary */
1182 rcu_assign_pointer(help
->helper
, helper
);
1185 /* setup master conntrack: this is a confirmed expectation */
1187 __set_bit(IPS_EXPECTED_BIT
, &ct
->status
);
1188 ct
->master
= master_ct
;
1191 add_timer(&ct
->timeout
);
1192 nf_conntrack_hash_insert(ct
);
1198 nf_conntrack_free(ct
);
1203 ctnetlink_new_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
1204 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1206 struct nf_conntrack_tuple otuple
, rtuple
;
1207 struct nf_conntrack_tuple_hash
*h
= NULL
;
1208 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1209 u_int8_t u3
= nfmsg
->nfgen_family
;
1212 if (cda
[CTA_TUPLE_ORIG
]) {
1213 err
= ctnetlink_parse_tuple(cda
, &otuple
, CTA_TUPLE_ORIG
, u3
);
1218 if (cda
[CTA_TUPLE_REPLY
]) {
1219 err
= ctnetlink_parse_tuple(cda
, &rtuple
, CTA_TUPLE_REPLY
, u3
);
1224 spin_lock_bh(&nf_conntrack_lock
);
1225 if (cda
[CTA_TUPLE_ORIG
])
1226 h
= __nf_conntrack_find(&otuple
);
1227 else if (cda
[CTA_TUPLE_REPLY
])
1228 h
= __nf_conntrack_find(&rtuple
);
1231 struct nf_conntrack_tuple master
;
1232 struct nf_conntrack_tuple_hash
*master_h
= NULL
;
1233 struct nf_conn
*master_ct
= NULL
;
1235 if (cda
[CTA_TUPLE_MASTER
]) {
1236 err
= ctnetlink_parse_tuple(cda
,
1243 master_h
= __nf_conntrack_find(&master
);
1244 if (master_h
== NULL
) {
1248 master_ct
= nf_ct_tuplehash_to_ctrack(master_h
);
1249 atomic_inc(&master_ct
->ct_general
.use
);
1252 spin_unlock_bh(&nf_conntrack_lock
);
1254 if (nlh
->nlmsg_flags
& NLM_F_CREATE
)
1255 err
= ctnetlink_create_conntrack(cda
,
1259 if (err
< 0 && master_ct
)
1260 nf_ct_put(master_ct
);
1264 /* implicit 'else' */
1266 /* We manipulate the conntrack inside the global conntrack table lock,
1267 * so there's no need to increase the refcount */
1269 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
)) {
1270 /* we only allow nat config for new conntracks */
1271 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
]) {
1275 /* can't link an existing conntrack to a master */
1276 if (cda
[CTA_TUPLE_MASTER
]) {
1280 err
= ctnetlink_change_conntrack(nf_ct_tuplehash_to_ctrack(h
),
1285 spin_unlock_bh(&nf_conntrack_lock
);
1289 /***********************************************************************
1291 ***********************************************************************/
1294 ctnetlink_exp_dump_tuple(struct sk_buff
*skb
,
1295 const struct nf_conntrack_tuple
*tuple
,
1296 enum ctattr_expect type
)
1298 struct nlattr
*nest_parms
;
1300 nest_parms
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
1302 goto nla_put_failure
;
1303 if (ctnetlink_dump_tuples(skb
, tuple
) < 0)
1304 goto nla_put_failure
;
1305 nla_nest_end(skb
, nest_parms
);
1314 ctnetlink_exp_dump_mask(struct sk_buff
*skb
,
1315 const struct nf_conntrack_tuple
*tuple
,
1316 const struct nf_conntrack_tuple_mask
*mask
)
1319 struct nf_conntrack_l3proto
*l3proto
;
1320 struct nf_conntrack_l4proto
*l4proto
;
1321 struct nf_conntrack_tuple m
;
1322 struct nlattr
*nest_parms
;
1324 memset(&m
, 0xFF, sizeof(m
));
1325 m
.src
.u
.all
= mask
->src
.u
.all
;
1326 memcpy(&m
.src
.u3
, &mask
->src
.u3
, sizeof(m
.src
.u3
));
1328 nest_parms
= nla_nest_start(skb
, CTA_EXPECT_MASK
| NLA_F_NESTED
);
1330 goto nla_put_failure
;
1332 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
1333 ret
= ctnetlink_dump_tuples_ip(skb
, &m
, l3proto
);
1334 nf_ct_l3proto_put(l3proto
);
1336 if (unlikely(ret
< 0))
1337 goto nla_put_failure
;
1339 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
1340 ret
= ctnetlink_dump_tuples_proto(skb
, &m
, l4proto
);
1341 nf_ct_l4proto_put(l4proto
);
1342 if (unlikely(ret
< 0))
1343 goto nla_put_failure
;
1345 nla_nest_end(skb
, nest_parms
);
1354 ctnetlink_exp_dump_expect(struct sk_buff
*skb
,
1355 const struct nf_conntrack_expect
*exp
)
1357 struct nf_conn
*master
= exp
->master
;
1358 long timeout
= (exp
->timeout
.expires
- jiffies
) / HZ
;
1363 if (ctnetlink_exp_dump_tuple(skb
, &exp
->tuple
, CTA_EXPECT_TUPLE
) < 0)
1364 goto nla_put_failure
;
1365 if (ctnetlink_exp_dump_mask(skb
, &exp
->tuple
, &exp
->mask
) < 0)
1366 goto nla_put_failure
;
1367 if (ctnetlink_exp_dump_tuple(skb
,
1368 &master
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
,
1369 CTA_EXPECT_MASTER
) < 0)
1370 goto nla_put_failure
;
1372 NLA_PUT_BE32(skb
, CTA_EXPECT_TIMEOUT
, htonl(timeout
));
1373 NLA_PUT_BE32(skb
, CTA_EXPECT_ID
, htonl((unsigned long)exp
));
1382 ctnetlink_exp_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1385 const struct nf_conntrack_expect
*exp
)
1387 struct nlmsghdr
*nlh
;
1388 struct nfgenmsg
*nfmsg
;
1389 unsigned char *b
= skb_tail_pointer(skb
);
1391 event
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1392 nlh
= NLMSG_PUT(skb
, pid
, seq
, event
, sizeof(struct nfgenmsg
));
1393 nfmsg
= NLMSG_DATA(nlh
);
1395 nlh
->nlmsg_flags
= (nowait
&& pid
) ? NLM_F_MULTI
: 0;
1396 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1397 nfmsg
->version
= NFNETLINK_V0
;
1400 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1401 goto nla_put_failure
;
1403 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1412 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1413 static int ctnetlink_expect_event(struct notifier_block
*this,
1414 unsigned long events
, void *ptr
)
1416 struct nlmsghdr
*nlh
;
1417 struct nfgenmsg
*nfmsg
;
1418 struct nf_conntrack_expect
*exp
= (struct nf_conntrack_expect
*)ptr
;
1419 struct sk_buff
*skb
;
1424 if (events
& IPEXP_NEW
) {
1425 type
= IPCTNL_MSG_EXP_NEW
;
1426 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
1430 if (!nfnetlink_has_listeners(NFNLGRP_CONNTRACK_EXP_NEW
))
1433 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_ATOMIC
);
1439 type
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1440 nlh
= NLMSG_PUT(skb
, 0, 0, type
, sizeof(struct nfgenmsg
));
1441 nfmsg
= NLMSG_DATA(nlh
);
1443 nlh
->nlmsg_flags
= flags
;
1444 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1445 nfmsg
->version
= NFNETLINK_V0
;
1448 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1449 goto nla_put_failure
;
1451 nlh
->nlmsg_len
= skb
->tail
- b
;
1452 nfnetlink_send(skb
, 0, NFNLGRP_CONNTRACK_EXP_NEW
, 0);
1461 static int ctnetlink_exp_done(struct netlink_callback
*cb
)
1464 nf_ct_expect_put((struct nf_conntrack_expect
*)cb
->args
[1]);
1469 ctnetlink_exp_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1471 struct nf_conntrack_expect
*exp
, *last
;
1472 struct nfgenmsg
*nfmsg
= NLMSG_DATA(cb
->nlh
);
1473 struct hlist_node
*n
;
1474 u_int8_t l3proto
= nfmsg
->nfgen_family
;
1477 last
= (struct nf_conntrack_expect
*)cb
->args
[1];
1478 for (; cb
->args
[0] < nf_ct_expect_hsize
; cb
->args
[0]++) {
1480 hlist_for_each_entry(exp
, n
, &nf_ct_expect_hash
[cb
->args
[0]],
1482 if (l3proto
&& exp
->tuple
.src
.l3num
!= l3proto
)
1489 if (ctnetlink_exp_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
1493 if (!atomic_inc_not_zero(&exp
->use
))
1495 cb
->args
[1] = (unsigned long)exp
;
1507 nf_ct_expect_put(last
);
1512 static const struct nla_policy exp_nla_policy
[CTA_EXPECT_MAX
+1] = {
1513 [CTA_EXPECT_TIMEOUT
] = { .type
= NLA_U32
},
1514 [CTA_EXPECT_ID
] = { .type
= NLA_U32
},
1518 ctnetlink_get_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1519 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1521 struct nf_conntrack_tuple tuple
;
1522 struct nf_conntrack_expect
*exp
;
1523 struct sk_buff
*skb2
;
1524 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1525 u_int8_t u3
= nfmsg
->nfgen_family
;
1528 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
1529 return netlink_dump_start(ctnl
, skb
, nlh
,
1530 ctnetlink_exp_dump_table
,
1531 ctnetlink_exp_done
);
1534 if (cda
[CTA_EXPECT_MASTER
])
1535 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_MASTER
, u3
);
1542 exp
= nf_ct_expect_find_get(&tuple
);
1546 if (cda
[CTA_EXPECT_ID
]) {
1547 __be32 id
= nla_get_be32(cda
[CTA_EXPECT_ID
]);
1548 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1549 nf_ct_expect_put(exp
);
1555 skb2
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
1559 err
= ctnetlink_exp_fill_info(skb2
, NETLINK_CB(skb
).pid
,
1560 nlh
->nlmsg_seq
, IPCTNL_MSG_EXP_NEW
,
1565 nf_ct_expect_put(exp
);
1567 return netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
1572 nf_ct_expect_put(exp
);
1577 ctnetlink_del_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1578 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1580 struct nf_conntrack_expect
*exp
;
1581 struct nf_conntrack_tuple tuple
;
1582 struct nf_conntrack_helper
*h
;
1583 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1584 struct hlist_node
*n
, *next
;
1585 u_int8_t u3
= nfmsg
->nfgen_family
;
1589 if (cda
[CTA_EXPECT_TUPLE
]) {
1590 /* delete a single expect by tuple */
1591 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1595 /* bump usage count to 2 */
1596 exp
= nf_ct_expect_find_get(&tuple
);
1600 if (cda
[CTA_EXPECT_ID
]) {
1601 __be32 id
= nla_get_be32(cda
[CTA_EXPECT_ID
]);
1602 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1603 nf_ct_expect_put(exp
);
1608 /* after list removal, usage count == 1 */
1609 nf_ct_unexpect_related(exp
);
1610 /* have to put what we 'get' above.
1611 * after this line usage count == 0 */
1612 nf_ct_expect_put(exp
);
1613 } else if (cda
[CTA_EXPECT_HELP_NAME
]) {
1614 char *name
= nla_data(cda
[CTA_EXPECT_HELP_NAME
]);
1615 struct nf_conn_help
*m_help
;
1617 /* delete all expectations for this helper */
1618 spin_lock_bh(&nf_conntrack_lock
);
1619 h
= __nf_conntrack_helper_find_byname(name
);
1621 spin_unlock_bh(&nf_conntrack_lock
);
1624 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1625 hlist_for_each_entry_safe(exp
, n
, next
,
1626 &nf_ct_expect_hash
[i
],
1628 m_help
= nfct_help(exp
->master
);
1629 if (m_help
->helper
== h
1630 && del_timer(&exp
->timeout
)) {
1631 nf_ct_unlink_expect(exp
);
1632 nf_ct_expect_put(exp
);
1636 spin_unlock_bh(&nf_conntrack_lock
);
1638 /* This basically means we have to flush everything*/
1639 spin_lock_bh(&nf_conntrack_lock
);
1640 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1641 hlist_for_each_entry_safe(exp
, n
, next
,
1642 &nf_ct_expect_hash
[i
],
1644 if (del_timer(&exp
->timeout
)) {
1645 nf_ct_unlink_expect(exp
);
1646 nf_ct_expect_put(exp
);
1650 spin_unlock_bh(&nf_conntrack_lock
);
1656 ctnetlink_change_expect(struct nf_conntrack_expect
*x
, struct nlattr
*cda
[])
1662 ctnetlink_create_expect(struct nlattr
*cda
[], u_int8_t u3
)
1664 struct nf_conntrack_tuple tuple
, mask
, master_tuple
;
1665 struct nf_conntrack_tuple_hash
*h
= NULL
;
1666 struct nf_conntrack_expect
*exp
;
1668 struct nf_conn_help
*help
;
1671 /* caller guarantees that those three CTA_EXPECT_* exist */
1672 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1675 err
= ctnetlink_parse_tuple(cda
, &mask
, CTA_EXPECT_MASK
, u3
);
1678 err
= ctnetlink_parse_tuple(cda
, &master_tuple
, CTA_EXPECT_MASTER
, u3
);
1682 /* Look for master conntrack of this expectation */
1683 h
= nf_conntrack_find_get(&master_tuple
);
1686 ct
= nf_ct_tuplehash_to_ctrack(h
);
1687 help
= nfct_help(ct
);
1689 if (!help
|| !help
->helper
) {
1690 /* such conntrack hasn't got any helper, abort */
1695 exp
= nf_ct_expect_alloc(ct
);
1701 exp
->expectfn
= NULL
;
1705 memcpy(&exp
->tuple
, &tuple
, sizeof(struct nf_conntrack_tuple
));
1706 memcpy(&exp
->mask
.src
.u3
, &mask
.src
.u3
, sizeof(exp
->mask
.src
.u3
));
1707 exp
->mask
.src
.u
.all
= mask
.src
.u
.all
;
1709 err
= nf_ct_expect_related(exp
);
1710 nf_ct_expect_put(exp
);
1713 nf_ct_put(nf_ct_tuplehash_to_ctrack(h
));
1718 ctnetlink_new_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1719 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1721 struct nf_conntrack_tuple tuple
;
1722 struct nf_conntrack_expect
*exp
;
1723 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1724 u_int8_t u3
= nfmsg
->nfgen_family
;
1727 if (!cda
[CTA_EXPECT_TUPLE
]
1728 || !cda
[CTA_EXPECT_MASK
]
1729 || !cda
[CTA_EXPECT_MASTER
])
1732 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1736 spin_lock_bh(&nf_conntrack_lock
);
1737 exp
= __nf_ct_expect_find(&tuple
);
1740 spin_unlock_bh(&nf_conntrack_lock
);
1742 if (nlh
->nlmsg_flags
& NLM_F_CREATE
)
1743 err
= ctnetlink_create_expect(cda
, u3
);
1748 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
))
1749 err
= ctnetlink_change_expect(exp
, cda
);
1750 spin_unlock_bh(&nf_conntrack_lock
);
1755 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1756 static struct notifier_block ctnl_notifier
= {
1757 .notifier_call
= ctnetlink_conntrack_event
,
1760 static struct notifier_block ctnl_notifier_exp
= {
1761 .notifier_call
= ctnetlink_expect_event
,
1765 static const struct nfnl_callback ctnl_cb
[IPCTNL_MSG_MAX
] = {
1766 [IPCTNL_MSG_CT_NEW
] = { .call
= ctnetlink_new_conntrack
,
1767 .attr_count
= CTA_MAX
,
1768 .policy
= ct_nla_policy
},
1769 [IPCTNL_MSG_CT_GET
] = { .call
= ctnetlink_get_conntrack
,
1770 .attr_count
= CTA_MAX
,
1771 .policy
= ct_nla_policy
},
1772 [IPCTNL_MSG_CT_DELETE
] = { .call
= ctnetlink_del_conntrack
,
1773 .attr_count
= CTA_MAX
,
1774 .policy
= ct_nla_policy
},
1775 [IPCTNL_MSG_CT_GET_CTRZERO
] = { .call
= ctnetlink_get_conntrack
,
1776 .attr_count
= CTA_MAX
,
1777 .policy
= ct_nla_policy
},
1780 static const struct nfnl_callback ctnl_exp_cb
[IPCTNL_MSG_EXP_MAX
] = {
1781 [IPCTNL_MSG_EXP_GET
] = { .call
= ctnetlink_get_expect
,
1782 .attr_count
= CTA_EXPECT_MAX
,
1783 .policy
= exp_nla_policy
},
1784 [IPCTNL_MSG_EXP_NEW
] = { .call
= ctnetlink_new_expect
,
1785 .attr_count
= CTA_EXPECT_MAX
,
1786 .policy
= exp_nla_policy
},
1787 [IPCTNL_MSG_EXP_DELETE
] = { .call
= ctnetlink_del_expect
,
1788 .attr_count
= CTA_EXPECT_MAX
,
1789 .policy
= exp_nla_policy
},
1792 static const struct nfnetlink_subsystem ctnl_subsys
= {
1793 .name
= "conntrack",
1794 .subsys_id
= NFNL_SUBSYS_CTNETLINK
,
1795 .cb_count
= IPCTNL_MSG_MAX
,
1799 static const struct nfnetlink_subsystem ctnl_exp_subsys
= {
1800 .name
= "conntrack_expect",
1801 .subsys_id
= NFNL_SUBSYS_CTNETLINK_EXP
,
1802 .cb_count
= IPCTNL_MSG_EXP_MAX
,
1806 MODULE_ALIAS("ip_conntrack_netlink");
1807 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK
);
1808 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP
);
1810 static int __init
ctnetlink_init(void)
1814 printk("ctnetlink v%s: registering with nfnetlink.\n", version
);
1815 ret
= nfnetlink_subsys_register(&ctnl_subsys
);
1817 printk("ctnetlink_init: cannot register with nfnetlink.\n");
1821 ret
= nfnetlink_subsys_register(&ctnl_exp_subsys
);
1823 printk("ctnetlink_init: cannot register exp with nfnetlink.\n");
1824 goto err_unreg_subsys
;
1827 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1828 ret
= nf_conntrack_register_notifier(&ctnl_notifier
);
1830 printk("ctnetlink_init: cannot register notifier.\n");
1831 goto err_unreg_exp_subsys
;
1834 ret
= nf_ct_expect_register_notifier(&ctnl_notifier_exp
);
1836 printk("ctnetlink_init: cannot expect register notifier.\n");
1837 goto err_unreg_notifier
;
1843 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1845 nf_conntrack_unregister_notifier(&ctnl_notifier
);
1846 err_unreg_exp_subsys
:
1847 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
1850 nfnetlink_subsys_unregister(&ctnl_subsys
);
1855 static void __exit
ctnetlink_exit(void)
1857 printk("ctnetlink: unregistering from nfnetlink.\n");
1859 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1860 nf_ct_expect_unregister_notifier(&ctnl_notifier_exp
);
1861 nf_conntrack_unregister_notifier(&ctnl_notifier
);
1864 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
1865 nfnetlink_subsys_unregister(&ctnl_subsys
);
1869 module_init(ctnetlink_init
);
1870 module_exit(ctnetlink_exit
);