1 /* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/types.h>
10 #include <linux/netfilter.h>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <linux/skbuff.h>
14 #include <linux/proc_fs.h>
15 #include <linux/seq_file.h>
16 #include <linux/percpu.h>
17 #include <linux/netdevice.h>
18 #include <linux/security.h>
19 #include <net/net_namespace.h>
21 #include <linux/sysctl.h>
24 #include <net/netfilter/nf_conntrack.h>
25 #include <net/netfilter/nf_conntrack_core.h>
26 #include <net/netfilter/nf_conntrack_l3proto.h>
27 #include <net/netfilter/nf_conntrack_l4proto.h>
28 #include <net/netfilter/nf_conntrack_expect.h>
29 #include <net/netfilter/nf_conntrack_helper.h>
30 #include <net/netfilter/nf_conntrack_acct.h>
31 #include <net/netfilter/nf_conntrack_zones.h>
32 #include <net/netfilter/nf_conntrack_timestamp.h>
33 #include <linux/rculist_nulls.h>
35 MODULE_LICENSE("GPL");
37 #ifdef CONFIG_NF_CONNTRACK_PROCFS
39 print_tuple(struct seq_file
*s
, const struct nf_conntrack_tuple
*tuple
,
40 const struct nf_conntrack_l3proto
*l3proto
,
41 const struct nf_conntrack_l4proto
*l4proto
)
43 return l3proto
->print_tuple(s
, tuple
) || l4proto
->print_tuple(s
, tuple
);
45 EXPORT_SYMBOL_GPL(print_tuple
);
47 struct ct_iter_state
{
48 struct seq_net_private p
;
53 static struct hlist_nulls_node
*ct_get_first(struct seq_file
*seq
)
55 struct net
*net
= seq_file_net(seq
);
56 struct ct_iter_state
*st
= seq
->private;
57 struct hlist_nulls_node
*n
;
60 st
->bucket
< net
->ct
.htable_size
;
62 n
= rcu_dereference(hlist_nulls_first_rcu(&net
->ct
.hash
[st
->bucket
]));
69 static struct hlist_nulls_node
*ct_get_next(struct seq_file
*seq
,
70 struct hlist_nulls_node
*head
)
72 struct net
*net
= seq_file_net(seq
);
73 struct ct_iter_state
*st
= seq
->private;
75 head
= rcu_dereference(hlist_nulls_next_rcu(head
));
76 while (is_a_nulls(head
)) {
77 if (likely(get_nulls_value(head
) == st
->bucket
)) {
78 if (++st
->bucket
>= net
->ct
.htable_size
)
81 head
= rcu_dereference(
82 hlist_nulls_first_rcu(
83 &net
->ct
.hash
[st
->bucket
]));
88 static struct hlist_nulls_node
*ct_get_idx(struct seq_file
*seq
, loff_t pos
)
90 struct hlist_nulls_node
*head
= ct_get_first(seq
);
93 while (pos
&& (head
= ct_get_next(seq
, head
)))
95 return pos
? NULL
: head
;
98 static void *ct_seq_start(struct seq_file
*seq
, loff_t
*pos
)
101 struct ct_iter_state
*st
= seq
->private;
103 st
->time_now
= ktime_to_ns(ktime_get_real());
105 return ct_get_idx(seq
, *pos
);
108 static void *ct_seq_next(struct seq_file
*s
, void *v
, loff_t
*pos
)
111 return ct_get_next(s
, v
);
114 static void ct_seq_stop(struct seq_file
*s
, void *v
)
120 #ifdef CONFIG_NF_CONNTRACK_SECMARK
121 static int ct_show_secctx(struct seq_file
*s
, const struct nf_conn
*ct
)
127 ret
= security_secid_to_secctx(ct
->secmark
, &secctx
, &len
);
131 ret
= seq_printf(s
, "secctx=%s ", secctx
);
133 security_release_secctx(secctx
, len
);
137 static inline int ct_show_secctx(struct seq_file
*s
, const struct nf_conn
*ct
)
143 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
144 static int ct_show_delta_time(struct seq_file
*s
, const struct nf_conn
*ct
)
146 struct ct_iter_state
*st
= s
->private;
147 struct nf_conn_tstamp
*tstamp
;
150 tstamp
= nf_conn_tstamp_find(ct
);
152 delta_time
= st
->time_now
- tstamp
->start
;
154 delta_time
= div_s64(delta_time
, NSEC_PER_SEC
);
158 return seq_printf(s
, "delta-time=%llu ",
159 (unsigned long long)delta_time
);
165 ct_show_delta_time(struct seq_file
*s
, const struct nf_conn
*ct
)
171 /* return 0 on success, 1 in case of error */
172 static int ct_seq_show(struct seq_file
*s
, void *v
)
174 struct nf_conntrack_tuple_hash
*hash
= v
;
175 struct nf_conn
*ct
= nf_ct_tuplehash_to_ctrack(hash
);
176 const struct nf_conntrack_l3proto
*l3proto
;
177 const struct nf_conntrack_l4proto
*l4proto
;
181 if (unlikely(!atomic_inc_not_zero(&ct
->ct_general
.use
)))
184 /* we only want to print DIR_ORIGINAL */
185 if (NF_CT_DIRECTION(hash
))
188 l3proto
= __nf_ct_l3proto_find(nf_ct_l3num(ct
));
189 NF_CT_ASSERT(l3proto
);
190 l4proto
= __nf_ct_l4proto_find(nf_ct_l3num(ct
), nf_ct_protonum(ct
));
191 NF_CT_ASSERT(l4proto
);
194 if (seq_printf(s
, "%-8s %u %-8s %u %ld ",
195 l3proto
->name
, nf_ct_l3num(ct
),
196 l4proto
->name
, nf_ct_protonum(ct
),
197 timer_pending(&ct
->timeout
)
198 ? (long)(ct
->timeout
.expires
- jiffies
)/HZ
: 0) != 0)
201 if (l4proto
->print_conntrack
&& l4proto
->print_conntrack(s
, ct
))
204 if (print_tuple(s
, &ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
,
208 if (seq_print_acct(s
, ct
, IP_CT_DIR_ORIGINAL
))
211 if (!(test_bit(IPS_SEEN_REPLY_BIT
, &ct
->status
)))
212 if (seq_printf(s
, "[UNREPLIED] "))
215 if (print_tuple(s
, &ct
->tuplehash
[IP_CT_DIR_REPLY
].tuple
,
219 if (seq_print_acct(s
, ct
, IP_CT_DIR_REPLY
))
222 if (test_bit(IPS_ASSURED_BIT
, &ct
->status
))
223 if (seq_printf(s
, "[ASSURED] "))
226 #if defined(CONFIG_NF_CONNTRACK_MARK)
227 if (seq_printf(s
, "mark=%u ", ct
->mark
))
231 if (ct_show_secctx(s
, ct
))
234 #ifdef CONFIG_NF_CONNTRACK_ZONES
235 if (seq_printf(s
, "zone=%u ", nf_ct_zone(ct
)))
239 if (ct_show_delta_time(s
, ct
))
242 if (seq_printf(s
, "use=%u\n", atomic_read(&ct
->ct_general
.use
)))
251 static const struct seq_operations ct_seq_ops
= {
252 .start
= ct_seq_start
,
258 static int ct_open(struct inode
*inode
, struct file
*file
)
260 return seq_open_net(inode
, file
, &ct_seq_ops
,
261 sizeof(struct ct_iter_state
));
264 static const struct file_operations ct_file_ops
= {
265 .owner
= THIS_MODULE
,
269 .release
= seq_release_net
,
272 static void *ct_cpu_seq_start(struct seq_file
*seq
, loff_t
*pos
)
274 struct net
*net
= seq_file_net(seq
);
278 return SEQ_START_TOKEN
;
280 for (cpu
= *pos
-1; cpu
< nr_cpu_ids
; ++cpu
) {
281 if (!cpu_possible(cpu
))
284 return per_cpu_ptr(net
->ct
.stat
, cpu
);
290 static void *ct_cpu_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
292 struct net
*net
= seq_file_net(seq
);
295 for (cpu
= *pos
; cpu
< nr_cpu_ids
; ++cpu
) {
296 if (!cpu_possible(cpu
))
299 return per_cpu_ptr(net
->ct
.stat
, cpu
);
305 static void ct_cpu_seq_stop(struct seq_file
*seq
, void *v
)
309 static int ct_cpu_seq_show(struct seq_file
*seq
, void *v
)
311 struct net
*net
= seq_file_net(seq
);
312 unsigned int nr_conntracks
= atomic_read(&net
->ct
.count
);
313 const struct ip_conntrack_stat
*st
= v
;
315 if (v
== SEQ_START_TOKEN
) {
316 seq_printf(seq
, "entries searched found new invalid ignore delete delete_list insert insert_failed drop early_drop icmp_error expect_new expect_create expect_delete search_restart\n");
320 seq_printf(seq
, "%08x %08x %08x %08x %08x %08x %08x %08x "
321 "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
344 static const struct seq_operations ct_cpu_seq_ops
= {
345 .start
= ct_cpu_seq_start
,
346 .next
= ct_cpu_seq_next
,
347 .stop
= ct_cpu_seq_stop
,
348 .show
= ct_cpu_seq_show
,
351 static int ct_cpu_seq_open(struct inode
*inode
, struct file
*file
)
353 return seq_open_net(inode
, file
, &ct_cpu_seq_ops
,
354 sizeof(struct seq_net_private
));
357 static const struct file_operations ct_cpu_seq_fops
= {
358 .owner
= THIS_MODULE
,
359 .open
= ct_cpu_seq_open
,
362 .release
= seq_release_net
,
365 static int nf_conntrack_standalone_init_proc(struct net
*net
)
367 struct proc_dir_entry
*pde
;
369 pde
= proc_net_fops_create(net
, "nf_conntrack", 0440, &ct_file_ops
);
371 goto out_nf_conntrack
;
373 pde
= proc_create("nf_conntrack", S_IRUGO
, net
->proc_net_stat
,
376 goto out_stat_nf_conntrack
;
379 out_stat_nf_conntrack
:
380 proc_net_remove(net
, "nf_conntrack");
385 static void nf_conntrack_standalone_fini_proc(struct net
*net
)
387 remove_proc_entry("nf_conntrack", net
->proc_net_stat
);
388 proc_net_remove(net
, "nf_conntrack");
391 static int nf_conntrack_standalone_init_proc(struct net
*net
)
396 static void nf_conntrack_standalone_fini_proc(struct net
*net
)
399 #endif /* CONFIG_NF_CONNTRACK_PROCFS */
404 /* Log invalid packets of a given protocol */
405 static int log_invalid_proto_min
= 0;
406 static int log_invalid_proto_max
= 255;
408 static struct ctl_table_header
*nf_ct_netfilter_header
;
410 static ctl_table nf_ct_sysctl_table
[] = {
412 .procname
= "nf_conntrack_max",
413 .data
= &nf_conntrack_max
,
414 .maxlen
= sizeof(int),
416 .proc_handler
= proc_dointvec
,
419 .procname
= "nf_conntrack_count",
420 .data
= &init_net
.ct
.count
,
421 .maxlen
= sizeof(int),
423 .proc_handler
= proc_dointvec
,
426 .procname
= "nf_conntrack_buckets",
427 .data
= &init_net
.ct
.htable_size
,
428 .maxlen
= sizeof(unsigned int),
430 .proc_handler
= proc_dointvec
,
433 .procname
= "nf_conntrack_checksum",
434 .data
= &init_net
.ct
.sysctl_checksum
,
435 .maxlen
= sizeof(unsigned int),
437 .proc_handler
= proc_dointvec
,
440 .procname
= "nf_conntrack_log_invalid",
441 .data
= &init_net
.ct
.sysctl_log_invalid
,
442 .maxlen
= sizeof(unsigned int),
444 .proc_handler
= proc_dointvec_minmax
,
445 .extra1
= &log_invalid_proto_min
,
446 .extra2
= &log_invalid_proto_max
,
449 .procname
= "nf_conntrack_expect_max",
450 .data
= &nf_ct_expect_max
,
451 .maxlen
= sizeof(int),
453 .proc_handler
= proc_dointvec
,
458 #define NET_NF_CONNTRACK_MAX 2089
460 static ctl_table nf_ct_netfilter_table
[] = {
462 .procname
= "nf_conntrack_max",
463 .data
= &nf_conntrack_max
,
464 .maxlen
= sizeof(int),
466 .proc_handler
= proc_dointvec
,
471 static int nf_conntrack_standalone_init_sysctl(struct net
*net
)
473 struct ctl_table
*table
;
475 if (net_eq(net
, &init_net
)) {
476 nf_ct_netfilter_header
=
477 register_net_sysctl(&init_net
, "net", nf_ct_netfilter_table
);
478 if (!nf_ct_netfilter_header
)
482 table
= kmemdup(nf_ct_sysctl_table
, sizeof(nf_ct_sysctl_table
),
487 table
[1].data
= &net
->ct
.count
;
488 table
[2].data
= &net
->ct
.htable_size
;
489 table
[3].data
= &net
->ct
.sysctl_checksum
;
490 table
[4].data
= &net
->ct
.sysctl_log_invalid
;
492 net
->ct
.sysctl_header
= register_net_sysctl(net
, "net/netfilter", table
);
493 if (!net
->ct
.sysctl_header
)
494 goto out_unregister_netfilter
;
498 out_unregister_netfilter
:
501 if (net_eq(net
, &init_net
))
502 unregister_net_sysctl_table(nf_ct_netfilter_header
);
504 printk(KERN_ERR
"nf_conntrack: can't register to sysctl.\n");
508 static void nf_conntrack_standalone_fini_sysctl(struct net
*net
)
510 struct ctl_table
*table
;
512 if (net_eq(net
, &init_net
))
513 unregister_net_sysctl_table(nf_ct_netfilter_header
);
514 table
= net
->ct
.sysctl_header
->ctl_table_arg
;
515 unregister_net_sysctl_table(net
->ct
.sysctl_header
);
519 static int nf_conntrack_standalone_init_sysctl(struct net
*net
)
524 static void nf_conntrack_standalone_fini_sysctl(struct net
*net
)
527 #endif /* CONFIG_SYSCTL */
529 static int nf_conntrack_net_init(struct net
*net
)
533 ret
= nf_conntrack_init(net
);
536 ret
= nf_conntrack_standalone_init_proc(net
);
539 net
->ct
.sysctl_checksum
= 1;
540 net
->ct
.sysctl_log_invalid
= 0;
541 ret
= nf_conntrack_standalone_init_sysctl(net
);
547 nf_conntrack_standalone_fini_proc(net
);
549 nf_conntrack_cleanup(net
);
554 static void nf_conntrack_net_exit(struct net
*net
)
556 nf_conntrack_standalone_fini_sysctl(net
);
557 nf_conntrack_standalone_fini_proc(net
);
558 nf_conntrack_cleanup(net
);
561 static struct pernet_operations nf_conntrack_net_ops
= {
562 .init
= nf_conntrack_net_init
,
563 .exit
= nf_conntrack_net_exit
,
566 static int __init
nf_conntrack_standalone_init(void)
568 return register_pernet_subsys(&nf_conntrack_net_ops
);
571 static void __exit
nf_conntrack_standalone_fini(void)
573 unregister_pernet_subsys(&nf_conntrack_net_ops
);
576 module_init(nf_conntrack_standalone_init
);
577 module_exit(nf_conntrack_standalone_fini
);
579 /* Some modules need us, but don't depend directly on any symbol.
580 They should call this. */
581 void need_conntrack(void)
584 EXPORT_SYMBOL_GPL(need_conntrack
);