]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/netfilter/nf_conntrack_standalone.c
Merge tag 'asoc-fix-v4.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/broon...
[mirror_ubuntu-artful-kernel.git] / net / netfilter / nf_conntrack_standalone.c
CommitLineData
9fb9cbb1
YK
1/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
f229f6ce 3 * (C) 2005-2012 Patrick McHardy <kaber@trash.net>
9fb9cbb1
YK
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9fb9cbb1
YK
8 */
9
9fb9cbb1
YK
10#include <linux/types.h>
11#include <linux/netfilter.h>
5a0e3ad6 12#include <linux/slab.h>
9fb9cbb1
YK
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
17#include <linux/percpu.h>
18#include <linux/netdevice.h>
1ae4de0c 19#include <linux/security.h>
457c4cbc 20#include <net/net_namespace.h>
9fb9cbb1
YK
21#ifdef CONFIG_SYSCTL
22#include <linux/sysctl.h>
23#endif
24
9fb9cbb1 25#include <net/netfilter/nf_conntrack.h>
f6180121 26#include <net/netfilter/nf_conntrack_core.h>
9fb9cbb1 27#include <net/netfilter/nf_conntrack_l3proto.h>
605dcad6 28#include <net/netfilter/nf_conntrack_l4proto.h>
77ab9cff 29#include <net/netfilter/nf_conntrack_expect.h>
9fb9cbb1 30#include <net/netfilter/nf_conntrack_helper.h>
58401572 31#include <net/netfilter/nf_conntrack_acct.h>
5d0aa2cc 32#include <net/netfilter/nf_conntrack_zones.h>
a992ca2a 33#include <net/netfilter/nf_conntrack_timestamp.h>
0e60ebe0 34#include <linux/rculist_nulls.h>
9fb9cbb1 35
9fb9cbb1
YK
36MODULE_LICENSE("GPL");
37
54b07dca 38#ifdef CONFIG_NF_CONNTRACK_PROCFS
824f1fbe 39void
9fb9cbb1 40print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
32948588
JE
41 const struct nf_conntrack_l3proto *l3proto,
42 const struct nf_conntrack_l4proto *l4proto)
9fb9cbb1 43{
824f1fbe
JP
44 l3proto->print_tuple(s, tuple);
45 l4proto->print_tuple(s, tuple);
9fb9cbb1 46}
e4bd8bce 47EXPORT_SYMBOL_GPL(print_tuple);
9fb9cbb1 48
9fb9cbb1 49struct ct_iter_state {
b2ce2c74 50 struct seq_net_private p;
64b87639
LZ
51 struct hlist_nulls_head *hash;
52 unsigned int htable_size;
9fb9cbb1 53 unsigned int bucket;
a992ca2a 54 u_int64_t time_now;
9fb9cbb1
YK
55};
56
ea781f19 57static struct hlist_nulls_node *ct_get_first(struct seq_file *seq)
9fb9cbb1
YK
58{
59 struct ct_iter_state *st = seq->private;
ea781f19 60 struct hlist_nulls_node *n;
9fb9cbb1
YK
61
62 for (st->bucket = 0;
64b87639 63 st->bucket < st->htable_size;
9fb9cbb1 64 st->bucket++) {
64b87639
LZ
65 n = rcu_dereference(
66 hlist_nulls_first_rcu(&st->hash[st->bucket]));
ea781f19 67 if (!is_a_nulls(n))
76507f69 68 return n;
9fb9cbb1
YK
69 }
70 return NULL;
71}
72
ea781f19
ED
73static struct hlist_nulls_node *ct_get_next(struct seq_file *seq,
74 struct hlist_nulls_node *head)
9fb9cbb1
YK
75{
76 struct ct_iter_state *st = seq->private;
77
0e60ebe0 78 head = rcu_dereference(hlist_nulls_next_rcu(head));
ea781f19
ED
79 while (is_a_nulls(head)) {
80 if (likely(get_nulls_value(head) == st->bucket)) {
64b87639 81 if (++st->bucket >= st->htable_size)
ea781f19
ED
82 return NULL;
83 }
0e60ebe0 84 head = rcu_dereference(
64b87639 85 hlist_nulls_first_rcu(&st->hash[st->bucket]));
9fb9cbb1
YK
86 }
87 return head;
88}
89
ea781f19 90static struct hlist_nulls_node *ct_get_idx(struct seq_file *seq, loff_t pos)
9fb9cbb1 91{
ea781f19 92 struct hlist_nulls_node *head = ct_get_first(seq);
9fb9cbb1
YK
93
94 if (head)
95 while (pos && (head = ct_get_next(seq, head)))
96 pos--;
97 return pos ? NULL : head;
98}
99
100static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
76507f69 101 __acquires(RCU)
9fb9cbb1 102{
a992ca2a
PNA
103 struct ct_iter_state *st = seq->private;
104
d2de875c 105 st->time_now = ktime_get_real_ns();
76507f69 106 rcu_read_lock();
64b87639
LZ
107
108 nf_conntrack_get_ht(&st->hash, &st->htable_size);
9fb9cbb1
YK
109 return ct_get_idx(seq, *pos);
110}
111
112static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
113{
114 (*pos)++;
115 return ct_get_next(s, v);
116}
117
118static void ct_seq_stop(struct seq_file *s, void *v)
76507f69 119 __releases(RCU)
9fb9cbb1 120{
76507f69 121 rcu_read_unlock();
9fb9cbb1
YK
122}
123
1ae4de0c 124#ifdef CONFIG_NF_CONNTRACK_SECMARK
e71456ae 125static void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
1ae4de0c
EP
126{
127 int ret;
128 u32 len;
129 char *secctx;
130
131 ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
132 if (ret)
e71456ae 133 return;
1ae4de0c 134
e71456ae 135 seq_printf(s, "secctx=%s ", secctx);
1ae4de0c
EP
136
137 security_release_secctx(secctx, len);
1ae4de0c
EP
138}
139#else
e71456ae 140static inline void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
1ae4de0c 141{
1ae4de0c
EP
142}
143#endif
144
308ac914 145#ifdef CONFIG_NF_CONNTRACK_ZONES
deedb590
DB
146static void ct_show_zone(struct seq_file *s, const struct nf_conn *ct,
147 int dir)
308ac914 148{
deedb590
DB
149 const struct nf_conntrack_zone *zone = nf_ct_zone(ct);
150
151 if (zone->dir != dir)
152 return;
153 switch (zone->dir) {
154 case NF_CT_DEFAULT_ZONE_DIR:
155 seq_printf(s, "zone=%u ", zone->id);
156 break;
157 case NF_CT_ZONE_DIR_ORIG:
158 seq_printf(s, "zone-orig=%u ", zone->id);
159 break;
160 case NF_CT_ZONE_DIR_REPL:
161 seq_printf(s, "zone-reply=%u ", zone->id);
162 break;
163 default:
164 break;
165 }
308ac914
DB
166}
167#else
deedb590
DB
168static inline void ct_show_zone(struct seq_file *s, const struct nf_conn *ct,
169 int dir)
308ac914
DB
170{
171}
172#endif
173
a992ca2a 174#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
e71456ae 175static void ct_show_delta_time(struct seq_file *s, const struct nf_conn *ct)
a992ca2a 176{
f5c88f56 177 struct ct_iter_state *st = s->private;
a992ca2a 178 struct nf_conn_tstamp *tstamp;
f5c88f56 179 s64 delta_time;
a992ca2a
PNA
180
181 tstamp = nf_conn_tstamp_find(ct);
182 if (tstamp) {
f5c88f56
PM
183 delta_time = st->time_now - tstamp->start;
184 if (delta_time > 0)
185 delta_time = div_s64(delta_time, NSEC_PER_SEC);
186 else
187 delta_time = 0;
188
e71456ae
SRRH
189 seq_printf(s, "delta-time=%llu ",
190 (unsigned long long)delta_time);
a992ca2a 191 }
e71456ae 192 return;
a992ca2a
PNA
193}
194#else
e71456ae 195static inline void
a992ca2a
PNA
196ct_show_delta_time(struct seq_file *s, const struct nf_conn *ct)
197{
a992ca2a
PNA
198}
199#endif
200
9fb9cbb1
YK
201/* return 0 on success, 1 in case of error */
202static int ct_seq_show(struct seq_file *s, void *v)
203{
ea781f19
ED
204 struct nf_conntrack_tuple_hash *hash = v;
205 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
32948588
JE
206 const struct nf_conntrack_l3proto *l3proto;
207 const struct nf_conntrack_l4proto *l4proto;
e77e6ff5 208 struct net *net = seq_file_net(s);
ea781f19 209 int ret = 0;
9fb9cbb1 210
c88130bc 211 NF_CT_ASSERT(ct);
ea781f19
ED
212 if (unlikely(!atomic_inc_not_zero(&ct->ct_general.use)))
213 return 0;
9fb9cbb1 214
58e207e4
FW
215 if (nf_ct_should_gc(ct)) {
216 nf_ct_kill(ct);
217 goto release;
218 }
219
9fb9cbb1
YK
220 /* we only want to print DIR_ORIGINAL */
221 if (NF_CT_DIRECTION(hash))
ea781f19 222 goto release;
9fb9cbb1 223
e77e6ff5
LZ
224 if (!net_eq(nf_ct_net(ct), net))
225 goto release;
226
5e8fbe2a 227 l3proto = __nf_ct_l3proto_find(nf_ct_l3num(ct));
9fb9cbb1 228 NF_CT_ASSERT(l3proto);
5e8fbe2a 229 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
605dcad6 230 NF_CT_ASSERT(l4proto);
9fb9cbb1 231
ea781f19 232 ret = -ENOSPC;
e71456ae
SRRH
233 seq_printf(s, "%-8s %u %-8s %u %ld ",
234 l3proto->name, nf_ct_l3num(ct),
235 l4proto->name, nf_ct_protonum(ct),
d0b35b93 236 nf_ct_expires(ct) / HZ);
9fb9cbb1 237
37246a58
SRRH
238 if (l4proto->print_conntrack)
239 l4proto->print_conntrack(s, ct);
9fb9cbb1 240
824f1fbe
JP
241 print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
242 l3proto, l4proto);
9fb9cbb1 243
deedb590
DB
244 ct_show_zone(s, ct, NF_CT_ZONE_DIR_ORIG);
245
e71456ae
SRRH
246 if (seq_has_overflowed(s))
247 goto release;
248
58401572 249 if (seq_print_acct(s, ct, IP_CT_DIR_ORIGINAL))
ea781f19 250 goto release;
9fb9cbb1 251
c88130bc 252 if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
cdec2685 253 seq_puts(s, "[UNREPLIED] ");
9fb9cbb1 254
824f1fbe
JP
255 print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple,
256 l3proto, l4proto);
9fb9cbb1 257
deedb590
DB
258 ct_show_zone(s, ct, NF_CT_ZONE_DIR_REPL);
259
58401572 260 if (seq_print_acct(s, ct, IP_CT_DIR_REPLY))
ea781f19 261 goto release;
9fb9cbb1 262
c88130bc 263 if (test_bit(IPS_ASSURED_BIT, &ct->status))
cdec2685 264 seq_puts(s, "[ASSURED] ");
9fb9cbb1 265
e71456ae 266 if (seq_has_overflowed(s))
ea781f19 267 goto release;
e71456ae
SRRH
268
269#if defined(CONFIG_NF_CONNTRACK_MARK)
270 seq_printf(s, "mark=%u ", ct->mark);
9fb9cbb1
YK
271#endif
272
e71456ae 273 ct_show_secctx(s, ct);
deedb590 274 ct_show_zone(s, ct, NF_CT_DEFAULT_ZONE_DIR);
e71456ae
SRRH
275 ct_show_delta_time(s, ct);
276
277 seq_printf(s, "use=%u\n", atomic_read(&ct->ct_general.use));
a992ca2a 278
e71456ae 279 if (seq_has_overflowed(s))
ea781f19 280 goto release;
a5d29264 281
ea781f19
ED
282 ret = 0;
283release:
284 nf_ct_put(ct);
d88d7de0 285 return ret;
9fb9cbb1
YK
286}
287
56b3d975 288static const struct seq_operations ct_seq_ops = {
9fb9cbb1
YK
289 .start = ct_seq_start,
290 .next = ct_seq_next,
291 .stop = ct_seq_stop,
292 .show = ct_seq_show
293};
294
295static int ct_open(struct inode *inode, struct file *file)
296{
b2ce2c74 297 return seq_open_net(inode, file, &ct_seq_ops,
e2da5913 298 sizeof(struct ct_iter_state));
9fb9cbb1
YK
299}
300
da7071d7 301static const struct file_operations ct_file_ops = {
9fb9cbb1
YK
302 .owner = THIS_MODULE,
303 .open = ct_open,
304 .read = seq_read,
305 .llseek = seq_lseek,
b2ce2c74 306 .release = seq_release_net,
9fb9cbb1
YK
307};
308
9fb9cbb1
YK
309static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
310{
8e9df801 311 struct net *net = seq_file_net(seq);
9fb9cbb1
YK
312 int cpu;
313
314 if (*pos == 0)
315 return SEQ_START_TOKEN;
316
0f23174a 317 for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
9fb9cbb1
YK
318 if (!cpu_possible(cpu))
319 continue;
320 *pos = cpu + 1;
8e9df801 321 return per_cpu_ptr(net->ct.stat, cpu);
9fb9cbb1
YK
322 }
323
324 return NULL;
325}
326
327static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
328{
8e9df801 329 struct net *net = seq_file_net(seq);
9fb9cbb1
YK
330 int cpu;
331
0f23174a 332 for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
9fb9cbb1
YK
333 if (!cpu_possible(cpu))
334 continue;
335 *pos = cpu + 1;
8e9df801 336 return per_cpu_ptr(net->ct.stat, cpu);
9fb9cbb1
YK
337 }
338
339 return NULL;
340}
341
342static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
343{
344}
345
346static int ct_cpu_seq_show(struct seq_file *seq, void *v)
347{
8e9df801
AD
348 struct net *net = seq_file_net(seq);
349 unsigned int nr_conntracks = atomic_read(&net->ct.count);
32948588 350 const struct ip_conntrack_stat *st = v;
9fb9cbb1
YK
351
352 if (v == SEQ_START_TOKEN) {
cdec2685 353 seq_puts(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");
9fb9cbb1
YK
354 return 0;
355 }
356
357 seq_printf(seq, "%08x %08x %08x %08x %08x %08x %08x %08x "
af740b2c 358 "%08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
9fb9cbb1 359 nr_conntracks,
8e8118f8 360 0,
9fb9cbb1 361 st->found,
8e8118f8 362 0,
9fb9cbb1
YK
363 st->invalid,
364 st->ignore,
8e8118f8
FW
365 0,
366 0,
9fb9cbb1
YK
367 st->insert,
368 st->insert_failed,
369 st->drop,
370 st->early_drop,
371 st->error,
372
373 st->expect_new,
374 st->expect_create,
af740b2c
JDB
375 st->expect_delete,
376 st->search_restart
9fb9cbb1
YK
377 );
378 return 0;
379}
380
56b3d975 381static const struct seq_operations ct_cpu_seq_ops = {
9fb9cbb1
YK
382 .start = ct_cpu_seq_start,
383 .next = ct_cpu_seq_next,
384 .stop = ct_cpu_seq_stop,
385 .show = ct_cpu_seq_show,
386};
387
388static int ct_cpu_seq_open(struct inode *inode, struct file *file)
389{
8e9df801
AD
390 return seq_open_net(inode, file, &ct_cpu_seq_ops,
391 sizeof(struct seq_net_private));
9fb9cbb1
YK
392}
393
da7071d7 394static const struct file_operations ct_cpu_seq_fops = {
9fb9cbb1
YK
395 .owner = THIS_MODULE,
396 .open = ct_cpu_seq_open,
397 .read = seq_read,
398 .llseek = seq_lseek,
8e9df801 399 .release = seq_release_net,
9fb9cbb1 400};
b916f7d4 401
b2ce2c74 402static int nf_conntrack_standalone_init_proc(struct net *net)
b916f7d4
AD
403{
404 struct proc_dir_entry *pde;
f13f2aee
PW
405 kuid_t root_uid;
406 kgid_t root_gid;
b916f7d4 407
d4beaa66 408 pde = proc_create("nf_conntrack", 0440, net->proc_net, &ct_file_ops);
b916f7d4
AD
409 if (!pde)
410 goto out_nf_conntrack;
52c0e111 411
f13f2aee
PW
412 root_uid = make_kuid(net->user_ns, 0);
413 root_gid = make_kgid(net->user_ns, 0);
414 if (uid_valid(root_uid) && gid_valid(root_gid))
415 proc_set_user(pde, root_uid, root_gid);
416
b2ce2c74 417 pde = proc_create("nf_conntrack", S_IRUGO, net->proc_net_stat,
52c0e111 418 &ct_cpu_seq_fops);
b916f7d4
AD
419 if (!pde)
420 goto out_stat_nf_conntrack;
b916f7d4
AD
421 return 0;
422
423out_stat_nf_conntrack:
ece31ffd 424 remove_proc_entry("nf_conntrack", net->proc_net);
b916f7d4
AD
425out_nf_conntrack:
426 return -ENOMEM;
427}
428
b2ce2c74 429static void nf_conntrack_standalone_fini_proc(struct net *net)
b916f7d4 430{
b2ce2c74 431 remove_proc_entry("nf_conntrack", net->proc_net_stat);
ece31ffd 432 remove_proc_entry("nf_conntrack", net->proc_net);
b916f7d4
AD
433}
434#else
b2ce2c74 435static int nf_conntrack_standalone_init_proc(struct net *net)
b916f7d4
AD
436{
437 return 0;
438}
439
b2ce2c74 440static void nf_conntrack_standalone_fini_proc(struct net *net)
b916f7d4
AD
441{
442}
54b07dca 443#endif /* CONFIG_NF_CONNTRACK_PROCFS */
9fb9cbb1
YK
444
445/* Sysctl support */
446
447#ifdef CONFIG_SYSCTL
9fb9cbb1 448/* Log invalid packets of a given protocol */
3183ab89
FW
449static int log_invalid_proto_min __read_mostly;
450static int log_invalid_proto_max __read_mostly = 255;
451
452/* size the user *wants to set */
453static unsigned int nf_conntrack_htable_size_user __read_mostly;
454
481fa373
FW
455extern unsigned int nf_conntrack_default_on;
456unsigned int nf_conntrack_default_on __read_mostly = 1;
457
3183ab89
FW
458static int
459nf_conntrack_hash_sysctl(struct ctl_table *table, int write,
460 void __user *buffer, size_t *lenp, loff_t *ppos)
461{
462 int ret;
463
464 ret = proc_dointvec(table, write, buffer, lenp, ppos);
465 if (ret < 0 || !write)
466 return ret;
467
468 /* update ret, we might not be able to satisfy request */
469 ret = nf_conntrack_hash_resize(nf_conntrack_htable_size_user);
470
471 /* update it to the actual value used by conntrack */
472 nf_conntrack_htable_size_user = nf_conntrack_htable_size;
473 return ret;
474}
9fb9cbb1 475
9714be7d 476static struct ctl_table_header *nf_ct_netfilter_header;
9fb9cbb1 477
fe2c6338 478static struct ctl_table nf_ct_sysctl_table[] = {
9fb9cbb1 479 {
9fb9cbb1
YK
480 .procname = "nf_conntrack_max",
481 .data = &nf_conntrack_max,
482 .maxlen = sizeof(int),
483 .mode = 0644,
6d9f239a 484 .proc_handler = proc_dointvec,
9fb9cbb1
YK
485 },
486 {
9fb9cbb1 487 .procname = "nf_conntrack_count",
49ac8713 488 .data = &init_net.ct.count,
9fb9cbb1
YK
489 .maxlen = sizeof(int),
490 .mode = 0444,
6d9f239a 491 .proc_handler = proc_dointvec,
9fb9cbb1
YK
492 },
493 {
9fb9cbb1 494 .procname = "nf_conntrack_buckets",
3183ab89 495 .data = &nf_conntrack_htable_size_user,
9fb9cbb1 496 .maxlen = sizeof(unsigned int),
3183ab89
FW
497 .mode = 0644,
498 .proc_handler = nf_conntrack_hash_sysctl,
9fb9cbb1 499 },
39a27a35 500 {
39a27a35 501 .procname = "nf_conntrack_checksum",
c04d0552 502 .data = &init_net.ct.sysctl_checksum,
39a27a35
PM
503 .maxlen = sizeof(unsigned int),
504 .mode = 0644,
6d9f239a 505 .proc_handler = proc_dointvec,
39a27a35 506 },
9fb9cbb1 507 {
9fb9cbb1 508 .procname = "nf_conntrack_log_invalid",
c2a2c7e0 509 .data = &init_net.ct.sysctl_log_invalid,
9fb9cbb1
YK
510 .maxlen = sizeof(unsigned int),
511 .mode = 0644,
6d9f239a 512 .proc_handler = proc_dointvec_minmax,
9fb9cbb1
YK
513 .extra1 = &log_invalid_proto_min,
514 .extra2 = &log_invalid_proto_max,
515 },
f264a7df 516 {
f264a7df
PM
517 .procname = "nf_conntrack_expect_max",
518 .data = &nf_ct_expect_max,
519 .maxlen = sizeof(int),
520 .mode = 0644,
6d9f239a 521 .proc_handler = proc_dointvec,
f264a7df 522 },
481fa373
FW
523 {
524 .procname = "nf_conntrack_default_on",
525 .data = &nf_conntrack_default_on,
526 .maxlen = sizeof(unsigned int),
527 .mode = 0644,
528 .proc_handler = proc_dointvec,
529 },
f8572d8f 530 { }
9fb9cbb1
YK
531};
532
fe2c6338 533static struct ctl_table nf_ct_netfilter_table[] = {
9fb9cbb1 534 {
9fb9cbb1
YK
535 .procname = "nf_conntrack_max",
536 .data = &nf_conntrack_max,
537 .maxlen = sizeof(int),
538 .mode = 0644,
6d9f239a 539 .proc_handler = proc_dointvec,
9fb9cbb1 540 },
f8572d8f 541 { }
9fb9cbb1
YK
542};
543
80250707 544static int nf_conntrack_standalone_init_sysctl(struct net *net)
b916f7d4 545{
80250707
AD
546 struct ctl_table *table;
547
80250707
AD
548 table = kmemdup(nf_ct_sysctl_table, sizeof(nf_ct_sysctl_table),
549 GFP_KERNEL);
550 if (!table)
551 goto out_kmemdup;
552
553 table[1].data = &net->ct.count;
c04d0552 554 table[3].data = &net->ct.sysctl_checksum;
c2a2c7e0 555 table[4].data = &net->ct.sysctl_log_invalid;
80250707 556
464dc801
EB
557 /* Don't export sysctls to unprivileged users */
558 if (net->user_ns != &init_user_ns)
559 table[0].procname = NULL;
560
3183ab89
FW
561 if (!net_eq(&init_net, net))
562 table[2].mode = 0444;
563
ec8f23ce 564 net->ct.sysctl_header = register_net_sysctl(net, "net/netfilter", table);
80250707 565 if (!net->ct.sysctl_header)
9714be7d
KPO
566 goto out_unregister_netfilter;
567
b916f7d4
AD
568 return 0;
569
9714be7d 570out_unregister_netfilter:
80250707
AD
571 kfree(table);
572out_kmemdup:
9714be7d 573 return -ENOMEM;
b916f7d4
AD
574}
575
80250707 576static void nf_conntrack_standalone_fini_sysctl(struct net *net)
b916f7d4 577{
80250707
AD
578 struct ctl_table *table;
579
80250707
AD
580 table = net->ct.sysctl_header->ctl_table_arg;
581 unregister_net_sysctl_table(net->ct.sysctl_header);
582 kfree(table);
b916f7d4
AD
583}
584#else
80250707 585static int nf_conntrack_standalone_init_sysctl(struct net *net)
b916f7d4
AD
586{
587 return 0;
588}
589
80250707 590static void nf_conntrack_standalone_fini_sysctl(struct net *net)
b916f7d4
AD
591{
592}
9fb9cbb1
YK
593#endif /* CONFIG_SYSCTL */
594
f94161c1 595static int nf_conntrack_pernet_init(struct net *net)
dfdb8d79 596{
b2ce2c74
AD
597 int ret;
598
f94161c1 599 ret = nf_conntrack_init_net(net);
b2ce2c74
AD
600 if (ret < 0)
601 goto out_init;
f94161c1 602
b2ce2c74
AD
603 ret = nf_conntrack_standalone_init_proc(net);
604 if (ret < 0)
605 goto out_proc;
f94161c1 606
c04d0552 607 net->ct.sysctl_checksum = 1;
c2a2c7e0 608 net->ct.sysctl_log_invalid = 0;
80250707
AD
609 ret = nf_conntrack_standalone_init_sysctl(net);
610 if (ret < 0)
611 goto out_sysctl;
f94161c1 612
b2ce2c74
AD
613 return 0;
614
80250707
AD
615out_sysctl:
616 nf_conntrack_standalone_fini_proc(net);
b2ce2c74 617out_proc:
f94161c1 618 nf_conntrack_cleanup_net(net);
b2ce2c74
AD
619out_init:
620 return ret;
dfdb8d79
AD
621}
622
dece40e8 623static void nf_conntrack_pernet_exit(struct list_head *net_exit_list)
dfdb8d79 624{
dece40e8
VD
625 struct net *net;
626
627 list_for_each_entry(net, net_exit_list, exit_list) {
628 nf_conntrack_standalone_fini_sysctl(net);
629 nf_conntrack_standalone_fini_proc(net);
630 }
631 nf_conntrack_cleanup_net_list(net_exit_list);
dfdb8d79
AD
632}
633
634static struct pernet_operations nf_conntrack_net_ops = {
dece40e8
VD
635 .init = nf_conntrack_pernet_init,
636 .exit_batch = nf_conntrack_pernet_exit,
dfdb8d79
AD
637};
638
65b4b4e8 639static int __init nf_conntrack_standalone_init(void)
9fb9cbb1 640{
f94161c1
G
641 int ret = nf_conntrack_init_start();
642 if (ret < 0)
643 goto out_start;
644
a9e419dc
FW
645 BUILD_BUG_ON(SKB_NFCT_PTRMASK != NFCT_PTRMASK);
646 BUILD_BUG_ON(NFCT_INFOMASK <= IP_CT_NUMBER);
647
5f9f946b 648#ifdef CONFIG_SYSCTL
f94161c1
G
649 nf_ct_netfilter_header =
650 register_net_sysctl(&init_net, "net", nf_ct_netfilter_table);
5f9f946b
PNA
651 if (!nf_ct_netfilter_header) {
652 pr_err("nf_conntrack: can't register to sysctl.\n");
5389090b 653 ret = -ENOMEM;
f94161c1 654 goto out_sysctl;
5f9f946b 655 }
3183ab89
FW
656
657 nf_conntrack_htable_size_user = nf_conntrack_htable_size;
5f9f946b 658#endif
f94161c1
G
659
660 ret = register_pernet_subsys(&nf_conntrack_net_ops);
661 if (ret < 0)
662 goto out_pernet;
663
664 nf_conntrack_init_end();
665 return 0;
666
667out_pernet:
5f9f946b 668#ifdef CONFIG_SYSCTL
f94161c1
G
669 unregister_net_sysctl_table(nf_ct_netfilter_header);
670out_sysctl:
5f9f946b 671#endif
f94161c1
G
672 nf_conntrack_cleanup_end();
673out_start:
674 return ret;
9fb9cbb1
YK
675}
676
65b4b4e8 677static void __exit nf_conntrack_standalone_fini(void)
9fb9cbb1 678{
f94161c1 679 nf_conntrack_cleanup_start();
dfdb8d79 680 unregister_pernet_subsys(&nf_conntrack_net_ops);
5f9f946b 681#ifdef CONFIG_SYSCTL
f94161c1 682 unregister_net_sysctl_table(nf_ct_netfilter_header);
5f9f946b 683#endif
1e47ee83 684 nf_conntrack_cleanup_end();
9fb9cbb1
YK
685}
686
65b4b4e8
AM
687module_init(nf_conntrack_standalone_init);
688module_exit(nf_conntrack_standalone_fini);
9fb9cbb1
YK
689
690/* Some modules need us, but don't depend directly on any symbol.
691 They should call this. */
2e4e6a17 692void need_conntrack(void)
9fb9cbb1
YK
693{
694}
13b18339 695EXPORT_SYMBOL_GPL(need_conntrack);