ARM: 6979/1: mach-vt8500: add forgotten irq_data conversion
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / nf_conntrack_standalone.c
blob05e9feb101c36845942ecc0b33291c55abf52dab
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.
7 */
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>
20 #ifdef CONFIG_SYSCTL
21 #include <linux/sysctl.h>
22 #endif
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_PROC_FS
38 int
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;
49 unsigned int bucket;
50 u_int64_t time_now;
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;
59 for (st->bucket = 0;
60 st->bucket < net->ct.htable_size;
61 st->bucket++) {
62 n = rcu_dereference(hlist_nulls_first_rcu(&net->ct.hash[st->bucket]));
63 if (!is_a_nulls(n))
64 return n;
66 return NULL;
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)
79 return NULL;
81 head = rcu_dereference(
82 hlist_nulls_first_rcu(
83 &net->ct.hash[st->bucket]));
85 return head;
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);
92 if (head)
93 while (pos && (head = ct_get_next(seq, head)))
94 pos--;
95 return pos ? NULL : head;
98 static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
99 __acquires(RCU)
101 struct ct_iter_state *st = seq->private;
103 st->time_now = ktime_to_ns(ktime_get_real());
104 rcu_read_lock();
105 return ct_get_idx(seq, *pos);
108 static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
110 (*pos)++;
111 return ct_get_next(s, v);
114 static void ct_seq_stop(struct seq_file *s, void *v)
115 __releases(RCU)
117 rcu_read_unlock();
120 #ifdef CONFIG_NF_CONNTRACK_SECMARK
121 static int ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
123 int ret;
124 u32 len;
125 char *secctx;
127 ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
128 if (ret)
129 return 0;
131 ret = seq_printf(s, "secctx=%s ", secctx);
133 security_release_secctx(secctx, len);
134 return ret;
136 #else
137 static inline int ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
139 return 0;
141 #endif
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;
148 s64 delta_time;
150 tstamp = nf_conn_tstamp_find(ct);
151 if (tstamp) {
152 delta_time = st->time_now - tstamp->start;
153 if (delta_time > 0)
154 delta_time = div_s64(delta_time, NSEC_PER_SEC);
155 else
156 delta_time = 0;
158 return seq_printf(s, "delta-time=%llu ",
159 (unsigned long long)delta_time);
161 return 0;
163 #else
164 static inline int
165 ct_show_delta_time(struct seq_file *s, const struct nf_conn *ct)
167 return 0;
169 #endif
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;
178 int ret = 0;
180 NF_CT_ASSERT(ct);
181 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
182 return 0;
184 /* we only want to print DIR_ORIGINAL */
185 if (NF_CT_DIRECTION(hash))
186 goto release;
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);
193 ret = -ENOSPC;
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)
199 goto release;
201 if (l4proto->print_conntrack && l4proto->print_conntrack(s, ct))
202 goto release;
204 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
205 l3proto, l4proto))
206 goto release;
208 if (seq_print_acct(s, ct, IP_CT_DIR_ORIGINAL))
209 goto release;
211 if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
212 if (seq_printf(s, "[UNREPLIED] "))
213 goto release;
215 if (print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
216 l3proto, l4proto))
217 goto release;
219 if (seq_print_acct(s, ct, IP_CT_DIR_REPLY))
220 goto release;
222 if (test_bit(IPS_ASSURED_BIT, &ct->status))
223 if (seq_printf(s, "[ASSURED] "))
224 goto release;
226 #if defined(CONFIG_NF_CONNTRACK_MARK)
227 if (seq_printf(s, "mark=%u ", ct->mark))
228 goto release;
229 #endif
231 if (ct_show_secctx(s, ct))
232 goto release;
234 #ifdef CONFIG_NF_CONNTRACK_ZONES
235 if (seq_printf(s, "zone=%u ", nf_ct_zone(ct)))
236 goto release;
237 #endif
239 if (ct_show_delta_time(s, ct))
240 goto release;
242 if (seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use)))
243 goto release;
245 ret = 0;
246 release:
247 nf_ct_put(ct);
248 return ret;
251 static const struct seq_operations ct_seq_ops = {
252 .start = ct_seq_start,
253 .next = ct_seq_next,
254 .stop = ct_seq_stop,
255 .show = ct_seq_show
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,
266 .open = ct_open,
267 .read = seq_read,
268 .llseek = seq_lseek,
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);
275 int cpu;
277 if (*pos == 0)
278 return SEQ_START_TOKEN;
280 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
281 if (!cpu_possible(cpu))
282 continue;
283 *pos = cpu + 1;
284 return per_cpu_ptr(net->ct.stat, cpu);
287 return NULL;
290 static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
292 struct net *net = seq_file_net(seq);
293 int cpu;
295 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
296 if (!cpu_possible(cpu))
297 continue;
298 *pos = cpu + 1;
299 return per_cpu_ptr(net->ct.stat, cpu);
302 return NULL;
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");
317 return 0;
320 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
321 "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
322 nr_conntracks,
323 st->searched,
324 st->found,
325 st->new,
326 st->invalid,
327 st->ignore,
328 st->delete,
329 st->delete_list,
330 st->insert,
331 st->insert_failed,
332 st->drop,
333 st->early_drop,
334 st->error,
336 st->expect_new,
337 st->expect_create,
338 st->expect_delete,
339 st->search_restart
341 return 0;
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,
360 .read = seq_read,
361 .llseek = seq_lseek,
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);
370 if (!pde)
371 goto out_nf_conntrack;
373 pde = proc_create("nf_conntrack", S_IRUGO, net->proc_net_stat,
374 &ct_cpu_seq_fops);
375 if (!pde)
376 goto out_stat_nf_conntrack;
377 return 0;
379 out_stat_nf_conntrack:
380 proc_net_remove(net, "nf_conntrack");
381 out_nf_conntrack:
382 return -ENOMEM;
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");
390 #else
391 static int nf_conntrack_standalone_init_proc(struct net *net)
393 return 0;
396 static void nf_conntrack_standalone_fini_proc(struct net *net)
399 #endif /* CONFIG_PROC_FS */
401 /* Sysctl support */
403 #ifdef CONFIG_SYSCTL
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),
415 .mode = 0644,
416 .proc_handler = proc_dointvec,
419 .procname = "nf_conntrack_count",
420 .data = &init_net.ct.count,
421 .maxlen = sizeof(int),
422 .mode = 0444,
423 .proc_handler = proc_dointvec,
426 .procname = "nf_conntrack_buckets",
427 .data = &init_net.ct.htable_size,
428 .maxlen = sizeof(unsigned int),
429 .mode = 0444,
430 .proc_handler = proc_dointvec,
433 .procname = "nf_conntrack_checksum",
434 .data = &init_net.ct.sysctl_checksum,
435 .maxlen = sizeof(unsigned int),
436 .mode = 0644,
437 .proc_handler = proc_dointvec,
440 .procname = "nf_conntrack_log_invalid",
441 .data = &init_net.ct.sysctl_log_invalid,
442 .maxlen = sizeof(unsigned int),
443 .mode = 0644,
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),
452 .mode = 0644,
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),
465 .mode = 0644,
466 .proc_handler = proc_dointvec,
471 static struct ctl_path nf_ct_path[] = {
472 { .procname = "net", },
476 static int nf_conntrack_standalone_init_sysctl(struct net *net)
478 struct ctl_table *table;
480 if (net_eq(net, &init_net)) {
481 nf_ct_netfilter_header =
482 register_sysctl_paths(nf_ct_path, nf_ct_netfilter_table);
483 if (!nf_ct_netfilter_header)
484 goto out;
487 table = kmemdup(nf_ct_sysctl_table, sizeof(nf_ct_sysctl_table),
488 GFP_KERNEL);
489 if (!table)
490 goto out_kmemdup;
492 table[1].data = &net->ct.count;
493 table[2].data = &net->ct.htable_size;
494 table[3].data = &net->ct.sysctl_checksum;
495 table[4].data = &net->ct.sysctl_log_invalid;
497 net->ct.sysctl_header = register_net_sysctl_table(net,
498 nf_net_netfilter_sysctl_path, table);
499 if (!net->ct.sysctl_header)
500 goto out_unregister_netfilter;
502 return 0;
504 out_unregister_netfilter:
505 kfree(table);
506 out_kmemdup:
507 if (net_eq(net, &init_net))
508 unregister_sysctl_table(nf_ct_netfilter_header);
509 out:
510 printk(KERN_ERR "nf_conntrack: can't register to sysctl.\n");
511 return -ENOMEM;
514 static void nf_conntrack_standalone_fini_sysctl(struct net *net)
516 struct ctl_table *table;
518 if (net_eq(net, &init_net))
519 unregister_sysctl_table(nf_ct_netfilter_header);
520 table = net->ct.sysctl_header->ctl_table_arg;
521 unregister_net_sysctl_table(net->ct.sysctl_header);
522 kfree(table);
524 #else
525 static int nf_conntrack_standalone_init_sysctl(struct net *net)
527 return 0;
530 static void nf_conntrack_standalone_fini_sysctl(struct net *net)
533 #endif /* CONFIG_SYSCTL */
535 static int nf_conntrack_net_init(struct net *net)
537 int ret;
539 ret = nf_conntrack_init(net);
540 if (ret < 0)
541 goto out_init;
542 ret = nf_conntrack_standalone_init_proc(net);
543 if (ret < 0)
544 goto out_proc;
545 net->ct.sysctl_checksum = 1;
546 net->ct.sysctl_log_invalid = 0;
547 ret = nf_conntrack_standalone_init_sysctl(net);
548 if (ret < 0)
549 goto out_sysctl;
550 return 0;
552 out_sysctl:
553 nf_conntrack_standalone_fini_proc(net);
554 out_proc:
555 nf_conntrack_cleanup(net);
556 out_init:
557 return ret;
560 static void nf_conntrack_net_exit(struct net *net)
562 nf_conntrack_standalone_fini_sysctl(net);
563 nf_conntrack_standalone_fini_proc(net);
564 nf_conntrack_cleanup(net);
567 static struct pernet_operations nf_conntrack_net_ops = {
568 .init = nf_conntrack_net_init,
569 .exit = nf_conntrack_net_exit,
572 static int __init nf_conntrack_standalone_init(void)
574 return register_pernet_subsys(&nf_conntrack_net_ops);
577 static void __exit nf_conntrack_standalone_fini(void)
579 unregister_pernet_subsys(&nf_conntrack_net_ops);
582 module_init(nf_conntrack_standalone_init);
583 module_exit(nf_conntrack_standalone_fini);
585 /* Some modules need us, but don't depend directly on any symbol.
586 They should call this. */
587 void need_conntrack(void)
590 EXPORT_SYMBOL_GPL(need_conntrack);