1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3 #include <linux/netfilter.h>
4 #include <linux/slab.h>
5 #include <linux/module.h>
6 #include <linux/skbuff.h>
7 #include <linux/proc_fs.h>
8 #include <linux/seq_file.h>
9 #include <linux/percpu.h>
10 #include <linux/netdevice.h>
11 #include <linux/security.h>
12 #include <net/net_namespace.h>
13 #ifdef CONFIG_SYSCTL
14 #include <linux/sysctl.h>
15 #endif
16 
17 #include <net/netfilter/nf_conntrack.h>
18 #include <net/netfilter/nf_conntrack_core.h>
19 #include <net/netfilter/nf_conntrack_l4proto.h>
20 #include <net/netfilter/nf_conntrack_expect.h>
21 #include <net/netfilter/nf_conntrack_helper.h>
22 #include <net/netfilter/nf_conntrack_acct.h>
23 #include <net/netfilter/nf_conntrack_zones.h>
24 #include <net/netfilter/nf_conntrack_timestamp.h>
25 #ifdef CONFIG_LWTUNNEL
26 #include <net/netfilter/nf_hooks_lwtunnel.h>
27 #endif
28 #include <linux/rculist_nulls.h>
29 
30 static bool enable_hooks __read_mostly;
31 MODULE_PARM_DESC(enable_hooks, "Always enable conntrack hooks");
32 module_param(enable_hooks, bool, 0000);
33 
34 unsigned int nf_conntrack_net_id __read_mostly;
35 
36 #ifdef CONFIG_NF_CONNTRACK_PROCFS
37 void
38 print_tuple(struct seq_file *s, const struct nf_conntrack_tuple *tuple,
39             const struct nf_conntrack_l4proto *l4proto)
40 {
41 	switch (tuple->src.l3num) {
42 	case NFPROTO_IPV4:
43 		seq_printf(s, "src=%pI4 dst=%pI4 ",
44 			   &tuple->src.u3.ip, &tuple->dst.u3.ip);
45 		break;
46 	case NFPROTO_IPV6:
47 		seq_printf(s, "src=%pI6 dst=%pI6 ",
48 			   tuple->src.u3.ip6, tuple->dst.u3.ip6);
49 		break;
50 	default:
51 		break;
52 	}
53 
54 	switch (l4proto->l4proto) {
55 	case IPPROTO_ICMP:
56 		seq_printf(s, "type=%u code=%u id=%u ",
57 			   tuple->dst.u.icmp.type,
58 			   tuple->dst.u.icmp.code,
59 			   ntohs(tuple->src.u.icmp.id));
60 		break;
61 	case IPPROTO_TCP:
62 		seq_printf(s, "sport=%hu dport=%hu ",
63 			   ntohs(tuple->src.u.tcp.port),
64 			   ntohs(tuple->dst.u.tcp.port));
65 		break;
66 	case IPPROTO_UDPLITE:
67 	case IPPROTO_UDP:
68 		seq_printf(s, "sport=%hu dport=%hu ",
69 			   ntohs(tuple->src.u.udp.port),
70 			   ntohs(tuple->dst.u.udp.port));
71 
72 		break;
73 	case IPPROTO_DCCP:
74 		seq_printf(s, "sport=%hu dport=%hu ",
75 			   ntohs(tuple->src.u.dccp.port),
76 			   ntohs(tuple->dst.u.dccp.port));
77 		break;
78 	case IPPROTO_SCTP:
79 		seq_printf(s, "sport=%hu dport=%hu ",
80 			   ntohs(tuple->src.u.sctp.port),
81 			   ntohs(tuple->dst.u.sctp.port));
82 		break;
83 	case IPPROTO_ICMPV6:
84 		seq_printf(s, "type=%u code=%u id=%u ",
85 			   tuple->dst.u.icmp.type,
86 			   tuple->dst.u.icmp.code,
87 			   ntohs(tuple->src.u.icmp.id));
88 		break;
89 	case IPPROTO_GRE:
90 		seq_printf(s, "srckey=0x%x dstkey=0x%x ",
91 			   ntohs(tuple->src.u.gre.key),
92 			   ntohs(tuple->dst.u.gre.key));
93 		break;
94 	default:
95 		break;
96 	}
97 }
98 EXPORT_SYMBOL_GPL(print_tuple);
99 
100 struct ct_iter_state {
101 	struct seq_net_private p;
102 	struct hlist_nulls_head *hash;
103 	unsigned int htable_size;
104 	unsigned int bucket;
105 	u_int64_t time_now;
106 };
107 
108 static struct hlist_nulls_node *ct_get_first(struct seq_file *seq)
109 {
110 	struct ct_iter_state *st = seq->private;
111 	struct hlist_nulls_node *n;
112 
113 	for (st->bucket = 0;
114 	     st->bucket < st->htable_size;
115 	     st->bucket++) {
116 		n = rcu_dereference(
117 			hlist_nulls_first_rcu(&st->hash[st->bucket]));
118 		if (!is_a_nulls(n))
119 			return n;
120 	}
121 	return NULL;
122 }
123 
124 static struct hlist_nulls_node *ct_get_next(struct seq_file *seq,
125 				      struct hlist_nulls_node *head)
126 {
127 	struct ct_iter_state *st = seq->private;
128 
129 	head = rcu_dereference(hlist_nulls_next_rcu(head));
130 	while (is_a_nulls(head)) {
131 		if (likely(get_nulls_value(head) == st->bucket)) {
132 			if (++st->bucket >= st->htable_size)
133 				return NULL;
134 		}
135 		head = rcu_dereference(
136 			hlist_nulls_first_rcu(&st->hash[st->bucket]));
137 	}
138 	return head;
139 }
140 
141 static struct hlist_nulls_node *ct_get_idx(struct seq_file *seq, loff_t pos)
142 {
143 	struct hlist_nulls_node *head = ct_get_first(seq);
144 
145 	if (head)
146 		while (pos && (head = ct_get_next(seq, head)))
147 			pos--;
148 	return pos ? NULL : head;
149 }
150 
151 static void *ct_seq_start(struct seq_file *seq, loff_t *pos)
152 	__acquires(RCU)
153 {
154 	struct ct_iter_state *st = seq->private;
155 
156 	st->time_now = ktime_get_real_ns();
157 	rcu_read_lock();
158 
159 	nf_conntrack_get_ht(&st->hash, &st->htable_size);
160 	return ct_get_idx(seq, *pos);
161 }
162 
163 static void *ct_seq_next(struct seq_file *s, void *v, loff_t *pos)
164 {
165 	(*pos)++;
166 	return ct_get_next(s, v);
167 }
168 
169 static void ct_seq_stop(struct seq_file *s, void *v)
170 	__releases(RCU)
171 {
172 	rcu_read_unlock();
173 }
174 
175 #ifdef CONFIG_NF_CONNTRACK_SECMARK
176 static void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
177 {
178 	int ret;
179 	u32 len;
180 	char *secctx;
181 
182 	ret = security_secid_to_secctx(ct->secmark, &secctx, &len);
183 	if (ret)
184 		return;
185 
186 	seq_printf(s, "secctx=%s ", secctx);
187 
188 	security_release_secctx(secctx, len);
189 }
190 #else
191 static inline void ct_show_secctx(struct seq_file *s, const struct nf_conn *ct)
192 {
193 }
194 #endif
195 
196 #ifdef CONFIG_NF_CONNTRACK_ZONES
197 static void ct_show_zone(struct seq_file *s, const struct nf_conn *ct,
198 			 int dir)
199 {
200 	const struct nf_conntrack_zone *zone = nf_ct_zone(ct);
201 
202 	if (zone->dir != dir)
203 		return;
204 	switch (zone->dir) {
205 	case NF_CT_DEFAULT_ZONE_DIR:
206 		seq_printf(s, "zone=%u ", zone->id);
207 		break;
208 	case NF_CT_ZONE_DIR_ORIG:
209 		seq_printf(s, "zone-orig=%u ", zone->id);
210 		break;
211 	case NF_CT_ZONE_DIR_REPL:
212 		seq_printf(s, "zone-reply=%u ", zone->id);
213 		break;
214 	default:
215 		break;
216 	}
217 }
218 #else
219 static inline void ct_show_zone(struct seq_file *s, const struct nf_conn *ct,
220 				int dir)
221 {
222 }
223 #endif
224 
225 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
226 static void ct_show_delta_time(struct seq_file *s, const struct nf_conn *ct)
227 {
228 	struct ct_iter_state *st = s->private;
229 	struct nf_conn_tstamp *tstamp;
230 	s64 delta_time;
231 
232 	tstamp = nf_conn_tstamp_find(ct);
233 	if (tstamp) {
234 		delta_time = st->time_now - tstamp->start;
235 		if (delta_time > 0)
236 			delta_time = div_s64(delta_time, NSEC_PER_SEC);
237 		else
238 			delta_time = 0;
239 
240 		seq_printf(s, "delta-time=%llu ",
241 			   (unsigned long long)delta_time);
242 	}
243 	return;
244 }
245 #else
246 static inline void
247 ct_show_delta_time(struct seq_file *s, const struct nf_conn *ct)
248 {
249 }
250 #endif
251 
252 static const char* l3proto_name(u16 proto)
253 {
254 	switch (proto) {
255 	case AF_INET: return "ipv4";
256 	case AF_INET6: return "ipv6";
257 	}
258 
259 	return "unknown";
260 }
261 
262 static const char* l4proto_name(u16 proto)
263 {
264 	switch (proto) {
265 	case IPPROTO_ICMP: return "icmp";
266 	case IPPROTO_TCP: return "tcp";
267 	case IPPROTO_UDP: return "udp";
268 	case IPPROTO_DCCP: return "dccp";
269 	case IPPROTO_GRE: return "gre";
270 	case IPPROTO_SCTP: return "sctp";
271 	case IPPROTO_UDPLITE: return "udplite";
272 	case IPPROTO_ICMPV6: return "icmpv6";
273 	}
274 
275 	return "unknown";
276 }
277 
278 static unsigned int
279 seq_print_acct(struct seq_file *s, const struct nf_conn *ct, int dir)
280 {
281 	struct nf_conn_acct *acct;
282 	struct nf_conn_counter *counter;
283 
284 	acct = nf_conn_acct_find(ct);
285 	if (!acct)
286 		return 0;
287 
288 	counter = acct->counter;
289 	seq_printf(s, "packets=%llu bytes=%llu ",
290 		   (unsigned long long)atomic64_read(&counter[dir].packets),
291 		   (unsigned long long)atomic64_read(&counter[dir].bytes));
292 
293 	return 0;
294 }
295 
296 /* return 0 on success, 1 in case of error */
297 static int ct_seq_show(struct seq_file *s, void *v)
298 {
299 	struct nf_conntrack_tuple_hash *hash = v;
300 	struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
301 	const struct nf_conntrack_l4proto *l4proto;
302 	struct net *net = seq_file_net(s);
303 	int ret = 0;
304 
305 	WARN_ON(!ct);
306 	if (unlikely(!refcount_inc_not_zero(&ct->ct_general.use)))
307 		return 0;
308 
309 	/* load ->status after refcount increase */
310 	smp_acquire__after_ctrl_dep();
311 
312 	if (nf_ct_should_gc(ct)) {
313 		nf_ct_kill(ct);
314 		goto release;
315 	}
316 
317 	/* we only want to print DIR_ORIGINAL */
318 	if (NF_CT_DIRECTION(hash))
319 		goto release;
320 
321 	if (!net_eq(nf_ct_net(ct), net))
322 		goto release;
323 
324 	l4proto = nf_ct_l4proto_find(nf_ct_protonum(ct));
325 
326 	ret = -ENOSPC;
327 	seq_printf(s, "%-8s %u %-8s %u ",
328 		   l3proto_name(nf_ct_l3num(ct)), nf_ct_l3num(ct),
329 		   l4proto_name(l4proto->l4proto), nf_ct_protonum(ct));
330 
331 	if (!test_bit(IPS_OFFLOAD_BIT, &ct->status))
332 		seq_printf(s, "%ld ", nf_ct_expires(ct)  / HZ);
333 
334 	if (l4proto->print_conntrack)
335 		l4proto->print_conntrack(s, ct);
336 
337 	print_tuple(s, &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
338 		    l4proto);
339 
340 	ct_show_zone(s, ct, NF_CT_ZONE_DIR_ORIG);
341 
342 	if (seq_has_overflowed(s))
343 		goto release;
344 
345 	if (seq_print_acct(s, ct, IP_CT_DIR_ORIGINAL))
346 		goto release;
347 
348 	if (!(test_bit(IPS_SEEN_REPLY_BIT, &ct->status)))
349 		seq_puts(s, "[UNREPLIED] ");
350 
351 	print_tuple(s, &ct->tuplehash[IP_CT_DIR_REPLY].tuple, l4proto);
352 
353 	ct_show_zone(s, ct, NF_CT_ZONE_DIR_REPL);
354 
355 	if (seq_print_acct(s, ct, IP_CT_DIR_REPLY))
356 		goto release;
357 
358 	if (test_bit(IPS_HW_OFFLOAD_BIT, &ct->status))
359 		seq_puts(s, "[HW_OFFLOAD] ");
360 	else if (test_bit(IPS_OFFLOAD_BIT, &ct->status))
361 		seq_puts(s, "[OFFLOAD] ");
362 	else if (test_bit(IPS_ASSURED_BIT, &ct->status))
363 		seq_puts(s, "[ASSURED] ");
364 
365 	if (seq_has_overflowed(s))
366 		goto release;
367 
368 #if defined(CONFIG_NF_CONNTRACK_MARK)
369 	seq_printf(s, "mark=%u ", READ_ONCE(ct->mark));
370 #endif
371 
372 	ct_show_secctx(s, ct);
373 	ct_show_zone(s, ct, NF_CT_DEFAULT_ZONE_DIR);
374 	ct_show_delta_time(s, ct);
375 
376 	seq_printf(s, "use=%u\n", refcount_read(&ct->ct_general.use));
377 
378 	if (seq_has_overflowed(s))
379 		goto release;
380 
381 	ret = 0;
382 release:
383 	nf_ct_put(ct);
384 	return ret;
385 }
386 
387 static const struct seq_operations ct_seq_ops = {
388 	.start = ct_seq_start,
389 	.next  = ct_seq_next,
390 	.stop  = ct_seq_stop,
391 	.show  = ct_seq_show
392 };
393 
394 static void *ct_cpu_seq_start(struct seq_file *seq, loff_t *pos)
395 {
396 	struct net *net = seq_file_net(seq);
397 	int cpu;
398 
399 	if (*pos == 0)
400 		return SEQ_START_TOKEN;
401 
402 	for (cpu = *pos-1; cpu < nr_cpu_ids; ++cpu) {
403 		if (!cpu_possible(cpu))
404 			continue;
405 		*pos = cpu + 1;
406 		return per_cpu_ptr(net->ct.stat, cpu);
407 	}
408 
409 	return NULL;
410 }
411 
412 static void *ct_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
413 {
414 	struct net *net = seq_file_net(seq);
415 	int cpu;
416 
417 	for (cpu = *pos; cpu < nr_cpu_ids; ++cpu) {
418 		if (!cpu_possible(cpu))
419 			continue;
420 		*pos = cpu + 1;
421 		return per_cpu_ptr(net->ct.stat, cpu);
422 	}
423 	(*pos)++;
424 	return NULL;
425 }
426 
427 static void ct_cpu_seq_stop(struct seq_file *seq, void *v)
428 {
429 }
430 
431 static int ct_cpu_seq_show(struct seq_file *seq, void *v)
432 {
433 	struct net *net = seq_file_net(seq);
434 	const struct ip_conntrack_stat *st = v;
435 	unsigned int nr_conntracks;
436 
437 	if (v == SEQ_START_TOKEN) {
438 		seq_puts(seq, "entries  clashres found new invalid ignore delete chainlength insert insert_failed drop early_drop icmp_error  expect_new expect_create expect_delete search_restart\n");
439 		return 0;
440 	}
441 
442 	nr_conntracks = nf_conntrack_count(net);
443 
444 	seq_printf(seq, "%08x  %08x %08x %08x %08x %08x %08x %08x "
445 			"%08x %08x %08x %08x %08x  %08x %08x %08x %08x\n",
446 		   nr_conntracks,
447 		   st->clash_resolve,
448 		   st->found,
449 		   0,
450 		   st->invalid,
451 		   0,
452 		   0,
453 		   st->chaintoolong,
454 		   st->insert,
455 		   st->insert_failed,
456 		   st->drop,
457 		   st->early_drop,
458 		   st->error,
459 
460 		   st->expect_new,
461 		   st->expect_create,
462 		   st->expect_delete,
463 		   st->search_restart
464 		);
465 	return 0;
466 }
467 
468 static const struct seq_operations ct_cpu_seq_ops = {
469 	.start	= ct_cpu_seq_start,
470 	.next	= ct_cpu_seq_next,
471 	.stop	= ct_cpu_seq_stop,
472 	.show	= ct_cpu_seq_show,
473 };
474 
475 static int nf_conntrack_standalone_init_proc(struct net *net)
476 {
477 	struct proc_dir_entry *pde;
478 	kuid_t root_uid;
479 	kgid_t root_gid;
480 
481 	pde = proc_create_net("nf_conntrack", 0440, net->proc_net, &ct_seq_ops,
482 			sizeof(struct ct_iter_state));
483 	if (!pde)
484 		goto out_nf_conntrack;
485 
486 	root_uid = make_kuid(net->user_ns, 0);
487 	root_gid = make_kgid(net->user_ns, 0);
488 	if (uid_valid(root_uid) && gid_valid(root_gid))
489 		proc_set_user(pde, root_uid, root_gid);
490 
491 	pde = proc_create_net("nf_conntrack", 0444, net->proc_net_stat,
492 			&ct_cpu_seq_ops, sizeof(struct seq_net_private));
493 	if (!pde)
494 		goto out_stat_nf_conntrack;
495 	return 0;
496 
497 out_stat_nf_conntrack:
498 	remove_proc_entry("nf_conntrack", net->proc_net);
499 out_nf_conntrack:
500 	return -ENOMEM;
501 }
502 
503 static void nf_conntrack_standalone_fini_proc(struct net *net)
504 {
505 	remove_proc_entry("nf_conntrack", net->proc_net_stat);
506 	remove_proc_entry("nf_conntrack", net->proc_net);
507 }
508 #else
509 static int nf_conntrack_standalone_init_proc(struct net *net)
510 {
511 	return 0;
512 }
513 
514 static void nf_conntrack_standalone_fini_proc(struct net *net)
515 {
516 }
517 #endif /* CONFIG_NF_CONNTRACK_PROCFS */
518 
519 u32 nf_conntrack_count(const struct net *net)
520 {
521 	const struct nf_conntrack_net *cnet = nf_ct_pernet(net);
522 
523 	return atomic_read(&cnet->count);
524 }
525 EXPORT_SYMBOL_GPL(nf_conntrack_count);
526 
527 /* Sysctl support */
528 
529 #ifdef CONFIG_SYSCTL
530 /* size the user *wants to set */
531 static unsigned int nf_conntrack_htable_size_user __read_mostly;
532 
533 static int
534 nf_conntrack_hash_sysctl(struct ctl_table *table, int write,
535 			 void *buffer, size_t *lenp, loff_t *ppos)
536 {
537 	int ret;
538 
539 	/* module_param hashsize could have changed value */
540 	nf_conntrack_htable_size_user = nf_conntrack_htable_size;
541 
542 	ret = proc_dointvec(table, write, buffer, lenp, ppos);
543 	if (ret < 0 || !write)
544 		return ret;
545 
546 	/* update ret, we might not be able to satisfy request */
547 	ret = nf_conntrack_hash_resize(nf_conntrack_htable_size_user);
548 
549 	/* update it to the actual value used by conntrack */
550 	nf_conntrack_htable_size_user = nf_conntrack_htable_size;
551 	return ret;
552 }
553 
554 static struct ctl_table_header *nf_ct_netfilter_header;
555 
556 enum nf_ct_sysctl_index {
557 	NF_SYSCTL_CT_MAX,
558 	NF_SYSCTL_CT_COUNT,
559 	NF_SYSCTL_CT_BUCKETS,
560 	NF_SYSCTL_CT_CHECKSUM,
561 	NF_SYSCTL_CT_LOG_INVALID,
562 	NF_SYSCTL_CT_EXPECT_MAX,
563 	NF_SYSCTL_CT_ACCT,
564 #ifdef CONFIG_NF_CONNTRACK_EVENTS
565 	NF_SYSCTL_CT_EVENTS,
566 #endif
567 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
568 	NF_SYSCTL_CT_TIMESTAMP,
569 #endif
570 	NF_SYSCTL_CT_PROTO_TIMEOUT_GENERIC,
571 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_SENT,
572 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_RECV,
573 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_ESTABLISHED,
574 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_FIN_WAIT,
575 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE_WAIT,
576 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_LAST_ACK,
577 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_TIME_WAIT,
578 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE,
579 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_RETRANS,
580 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_UNACK,
581 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
582 	NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_OFFLOAD,
583 #endif
584 	NF_SYSCTL_CT_PROTO_TCP_LOOSE,
585 	NF_SYSCTL_CT_PROTO_TCP_LIBERAL,
586 	NF_SYSCTL_CT_PROTO_TCP_IGNORE_INVALID_RST,
587 	NF_SYSCTL_CT_PROTO_TCP_MAX_RETRANS,
588 	NF_SYSCTL_CT_PROTO_TIMEOUT_UDP,
589 	NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_STREAM,
590 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
591 	NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_OFFLOAD,
592 #endif
593 	NF_SYSCTL_CT_PROTO_TIMEOUT_ICMP,
594 	NF_SYSCTL_CT_PROTO_TIMEOUT_ICMPV6,
595 #ifdef CONFIG_NF_CT_PROTO_SCTP
596 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_CLOSED,
597 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_WAIT,
598 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_ECHOED,
599 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_ESTABLISHED,
600 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_SENT,
601 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_RECD,
602 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT,
603 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_SENT,
604 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_ACKED,
605 	NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_DATA_SENT,
606 #endif
607 #ifdef CONFIG_NF_CT_PROTO_DCCP
608 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_REQUEST,
609 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_RESPOND,
610 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_PARTOPEN,
611 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_OPEN,
612 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSEREQ,
613 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSING,
614 	NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_TIMEWAIT,
615 	NF_SYSCTL_CT_PROTO_DCCP_LOOSE,
616 #endif
617 #ifdef CONFIG_NF_CT_PROTO_GRE
618 	NF_SYSCTL_CT_PROTO_TIMEOUT_GRE,
619 	NF_SYSCTL_CT_PROTO_TIMEOUT_GRE_STREAM,
620 #endif
621 #ifdef CONFIG_LWTUNNEL
622 	NF_SYSCTL_CT_LWTUNNEL,
623 #endif
624 
625 	__NF_SYSCTL_CT_LAST_SYSCTL,
626 };
627 
628 #define NF_SYSCTL_CT_LAST_SYSCTL (__NF_SYSCTL_CT_LAST_SYSCTL + 1)
629 
630 static struct ctl_table nf_ct_sysctl_table[] = {
631 	[NF_SYSCTL_CT_MAX] = {
632 		.procname	= "nf_conntrack_max",
633 		.data		= &nf_conntrack_max,
634 		.maxlen		= sizeof(int),
635 		.mode		= 0644,
636 		.proc_handler	= proc_dointvec,
637 	},
638 	[NF_SYSCTL_CT_COUNT] = {
639 		.procname	= "nf_conntrack_count",
640 		.maxlen		= sizeof(int),
641 		.mode		= 0444,
642 		.proc_handler	= proc_dointvec,
643 	},
644 	[NF_SYSCTL_CT_BUCKETS] = {
645 		.procname       = "nf_conntrack_buckets",
646 		.data           = &nf_conntrack_htable_size_user,
647 		.maxlen         = sizeof(unsigned int),
648 		.mode           = 0644,
649 		.proc_handler   = nf_conntrack_hash_sysctl,
650 	},
651 	[NF_SYSCTL_CT_CHECKSUM] = {
652 		.procname	= "nf_conntrack_checksum",
653 		.data		= &init_net.ct.sysctl_checksum,
654 		.maxlen		= sizeof(u8),
655 		.mode		= 0644,
656 		.proc_handler	= proc_dou8vec_minmax,
657 		.extra1 	= SYSCTL_ZERO,
658 		.extra2 	= SYSCTL_ONE,
659 	},
660 	[NF_SYSCTL_CT_LOG_INVALID] = {
661 		.procname	= "nf_conntrack_log_invalid",
662 		.data		= &init_net.ct.sysctl_log_invalid,
663 		.maxlen		= sizeof(u8),
664 		.mode		= 0644,
665 		.proc_handler	= proc_dou8vec_minmax,
666 	},
667 	[NF_SYSCTL_CT_EXPECT_MAX] = {
668 		.procname	= "nf_conntrack_expect_max",
669 		.data		= &nf_ct_expect_max,
670 		.maxlen		= sizeof(int),
671 		.mode		= 0644,
672 		.proc_handler	= proc_dointvec,
673 	},
674 	[NF_SYSCTL_CT_ACCT] = {
675 		.procname	= "nf_conntrack_acct",
676 		.data		= &init_net.ct.sysctl_acct,
677 		.maxlen		= sizeof(u8),
678 		.mode		= 0644,
679 		.proc_handler	= proc_dou8vec_minmax,
680 		.extra1 	= SYSCTL_ZERO,
681 		.extra2 	= SYSCTL_ONE,
682 	},
683 #ifdef CONFIG_NF_CONNTRACK_EVENTS
684 	[NF_SYSCTL_CT_EVENTS] = {
685 		.procname	= "nf_conntrack_events",
686 		.data		= &init_net.ct.sysctl_events,
687 		.maxlen		= sizeof(u8),
688 		.mode		= 0644,
689 		.proc_handler	= proc_dou8vec_minmax,
690 		.extra1 	= SYSCTL_ZERO,
691 		.extra2		= SYSCTL_TWO,
692 	},
693 #endif
694 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
695 	[NF_SYSCTL_CT_TIMESTAMP] = {
696 		.procname	= "nf_conntrack_timestamp",
697 		.data		= &init_net.ct.sysctl_tstamp,
698 		.maxlen		= sizeof(u8),
699 		.mode		= 0644,
700 		.proc_handler	= proc_dou8vec_minmax,
701 		.extra1 	= SYSCTL_ZERO,
702 		.extra2 	= SYSCTL_ONE,
703 	},
704 #endif
705 	[NF_SYSCTL_CT_PROTO_TIMEOUT_GENERIC] = {
706 		.procname	= "nf_conntrack_generic_timeout",
707 		.maxlen		= sizeof(unsigned int),
708 		.mode		= 0644,
709 		.proc_handler	= proc_dointvec_jiffies,
710 	},
711 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_SENT] = {
712 		.procname	= "nf_conntrack_tcp_timeout_syn_sent",
713 		.maxlen		= sizeof(unsigned int),
714 		.mode		= 0644,
715 		.proc_handler	= proc_dointvec_jiffies,
716 	},
717 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_RECV] = {
718 		.procname	= "nf_conntrack_tcp_timeout_syn_recv",
719 		.maxlen		= sizeof(unsigned int),
720 		.mode		= 0644,
721 		.proc_handler	= proc_dointvec_jiffies,
722 	},
723 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_ESTABLISHED] = {
724 		.procname	= "nf_conntrack_tcp_timeout_established",
725 		.maxlen		= sizeof(unsigned int),
726 		.mode		= 0644,
727 		.proc_handler	= proc_dointvec_jiffies,
728 	},
729 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_FIN_WAIT] = {
730 		.procname	= "nf_conntrack_tcp_timeout_fin_wait",
731 		.maxlen		= sizeof(unsigned int),
732 		.mode		= 0644,
733 		.proc_handler	= proc_dointvec_jiffies,
734 	},
735 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE_WAIT] = {
736 		.procname	= "nf_conntrack_tcp_timeout_close_wait",
737 		.maxlen		= sizeof(unsigned int),
738 		.mode		= 0644,
739 		.proc_handler	= proc_dointvec_jiffies,
740 	},
741 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_LAST_ACK] = {
742 		.procname	= "nf_conntrack_tcp_timeout_last_ack",
743 		.maxlen		= sizeof(unsigned int),
744 		.mode		= 0644,
745 		.proc_handler	= proc_dointvec_jiffies,
746 	},
747 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_TIME_WAIT] = {
748 		.procname	= "nf_conntrack_tcp_timeout_time_wait",
749 		.maxlen		= sizeof(unsigned int),
750 		.mode		= 0644,
751 		.proc_handler	= proc_dointvec_jiffies,
752 	},
753 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE] = {
754 		.procname	= "nf_conntrack_tcp_timeout_close",
755 		.maxlen		= sizeof(unsigned int),
756 		.mode		= 0644,
757 		.proc_handler	= proc_dointvec_jiffies,
758 	},
759 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_RETRANS] = {
760 		.procname	= "nf_conntrack_tcp_timeout_max_retrans",
761 		.maxlen		= sizeof(unsigned int),
762 		.mode		= 0644,
763 		.proc_handler	= proc_dointvec_jiffies,
764 	},
765 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_UNACK] = {
766 		.procname	= "nf_conntrack_tcp_timeout_unacknowledged",
767 		.maxlen		= sizeof(unsigned int),
768 		.mode		= 0644,
769 		.proc_handler	= proc_dointvec_jiffies,
770 	},
771 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
772 	[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_OFFLOAD] = {
773 		.procname	= "nf_flowtable_tcp_timeout",
774 		.maxlen		= sizeof(unsigned int),
775 		.mode		= 0644,
776 		.proc_handler	= proc_dointvec_jiffies,
777 	},
778 #endif
779 	[NF_SYSCTL_CT_PROTO_TCP_LOOSE] = {
780 		.procname	= "nf_conntrack_tcp_loose",
781 		.maxlen		= sizeof(u8),
782 		.mode		= 0644,
783 		.proc_handler	= proc_dou8vec_minmax,
784 		.extra1 	= SYSCTL_ZERO,
785 		.extra2 	= SYSCTL_ONE,
786 	},
787 	[NF_SYSCTL_CT_PROTO_TCP_LIBERAL] = {
788 		.procname       = "nf_conntrack_tcp_be_liberal",
789 		.maxlen		= sizeof(u8),
790 		.mode           = 0644,
791 		.proc_handler	= proc_dou8vec_minmax,
792 		.extra1 	= SYSCTL_ZERO,
793 		.extra2 	= SYSCTL_ONE,
794 	},
795 	[NF_SYSCTL_CT_PROTO_TCP_IGNORE_INVALID_RST] = {
796 		.procname	= "nf_conntrack_tcp_ignore_invalid_rst",
797 		.maxlen		= sizeof(u8),
798 		.mode		= 0644,
799 		.proc_handler	= proc_dou8vec_minmax,
800 		.extra1		= SYSCTL_ZERO,
801 		.extra2		= SYSCTL_ONE,
802 	},
803 	[NF_SYSCTL_CT_PROTO_TCP_MAX_RETRANS] = {
804 		.procname	= "nf_conntrack_tcp_max_retrans",
805 		.maxlen		= sizeof(u8),
806 		.mode		= 0644,
807 		.proc_handler	= proc_dou8vec_minmax,
808 	},
809 	[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP] = {
810 		.procname	= "nf_conntrack_udp_timeout",
811 		.maxlen		= sizeof(unsigned int),
812 		.mode		= 0644,
813 		.proc_handler	= proc_dointvec_jiffies,
814 	},
815 	[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_STREAM] = {
816 		.procname	= "nf_conntrack_udp_timeout_stream",
817 		.maxlen		= sizeof(unsigned int),
818 		.mode		= 0644,
819 		.proc_handler	= proc_dointvec_jiffies,
820 	},
821 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
822 	[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_OFFLOAD] = {
823 		.procname	= "nf_flowtable_udp_timeout",
824 		.maxlen		= sizeof(unsigned int),
825 		.mode		= 0644,
826 		.proc_handler	= proc_dointvec_jiffies,
827 	},
828 #endif
829 	[NF_SYSCTL_CT_PROTO_TIMEOUT_ICMP] = {
830 		.procname	= "nf_conntrack_icmp_timeout",
831 		.maxlen		= sizeof(unsigned int),
832 		.mode		= 0644,
833 		.proc_handler	= proc_dointvec_jiffies,
834 	},
835 	[NF_SYSCTL_CT_PROTO_TIMEOUT_ICMPV6] = {
836 		.procname	= "nf_conntrack_icmpv6_timeout",
837 		.maxlen		= sizeof(unsigned int),
838 		.mode		= 0644,
839 		.proc_handler	= proc_dointvec_jiffies,
840 	},
841 #ifdef CONFIG_NF_CT_PROTO_SCTP
842 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_CLOSED] = {
843 		.procname	= "nf_conntrack_sctp_timeout_closed",
844 		.maxlen		= sizeof(unsigned int),
845 		.mode		= 0644,
846 		.proc_handler	= proc_dointvec_jiffies,
847 	},
848 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_WAIT] = {
849 		.procname	= "nf_conntrack_sctp_timeout_cookie_wait",
850 		.maxlen		= sizeof(unsigned int),
851 		.mode		= 0644,
852 		.proc_handler	= proc_dointvec_jiffies,
853 	},
854 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_ECHOED] = {
855 		.procname	= "nf_conntrack_sctp_timeout_cookie_echoed",
856 		.maxlen		= sizeof(unsigned int),
857 		.mode		= 0644,
858 		.proc_handler	= proc_dointvec_jiffies,
859 	},
860 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_ESTABLISHED] = {
861 		.procname	= "nf_conntrack_sctp_timeout_established",
862 		.maxlen		= sizeof(unsigned int),
863 		.mode		= 0644,
864 		.proc_handler	= proc_dointvec_jiffies,
865 	},
866 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_SENT] = {
867 		.procname	= "nf_conntrack_sctp_timeout_shutdown_sent",
868 		.maxlen		= sizeof(unsigned int),
869 		.mode		= 0644,
870 		.proc_handler	= proc_dointvec_jiffies,
871 	},
872 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_RECD] = {
873 		.procname	= "nf_conntrack_sctp_timeout_shutdown_recd",
874 		.maxlen		= sizeof(unsigned int),
875 		.mode		= 0644,
876 		.proc_handler	= proc_dointvec_jiffies,
877 	},
878 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT] = {
879 		.procname	= "nf_conntrack_sctp_timeout_shutdown_ack_sent",
880 		.maxlen		= sizeof(unsigned int),
881 		.mode		= 0644,
882 		.proc_handler	= proc_dointvec_jiffies,
883 	},
884 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_SENT] = {
885 		.procname	= "nf_conntrack_sctp_timeout_heartbeat_sent",
886 		.maxlen		= sizeof(unsigned int),
887 		.mode		= 0644,
888 		.proc_handler	= proc_dointvec_jiffies,
889 	},
890 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_ACKED] = {
891 		.procname       = "nf_conntrack_sctp_timeout_heartbeat_acked",
892 		.maxlen         = sizeof(unsigned int),
893 		.mode           = 0644,
894 		.proc_handler   = proc_dointvec_jiffies,
895 	},
896 	[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_DATA_SENT] = {
897 		.procname       = "nf_conntrack_sctp_timeout_data_sent",
898 		.maxlen         = sizeof(unsigned int),
899 		.mode           = 0644,
900 		.proc_handler   = proc_dointvec_jiffies,
901 	},
902 #endif
903 #ifdef CONFIG_NF_CT_PROTO_DCCP
904 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_REQUEST] = {
905 		.procname	= "nf_conntrack_dccp_timeout_request",
906 		.maxlen		= sizeof(unsigned int),
907 		.mode		= 0644,
908 		.proc_handler	= proc_dointvec_jiffies,
909 	},
910 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_RESPOND] = {
911 		.procname	= "nf_conntrack_dccp_timeout_respond",
912 		.maxlen		= sizeof(unsigned int),
913 		.mode		= 0644,
914 		.proc_handler	= proc_dointvec_jiffies,
915 	},
916 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_PARTOPEN] = {
917 		.procname	= "nf_conntrack_dccp_timeout_partopen",
918 		.maxlen		= sizeof(unsigned int),
919 		.mode		= 0644,
920 		.proc_handler	= proc_dointvec_jiffies,
921 	},
922 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_OPEN] = {
923 		.procname	= "nf_conntrack_dccp_timeout_open",
924 		.maxlen		= sizeof(unsigned int),
925 		.mode		= 0644,
926 		.proc_handler	= proc_dointvec_jiffies,
927 	},
928 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSEREQ] = {
929 		.procname	= "nf_conntrack_dccp_timeout_closereq",
930 		.maxlen		= sizeof(unsigned int),
931 		.mode		= 0644,
932 		.proc_handler	= proc_dointvec_jiffies,
933 	},
934 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSING] = {
935 		.procname	= "nf_conntrack_dccp_timeout_closing",
936 		.maxlen		= sizeof(unsigned int),
937 		.mode		= 0644,
938 		.proc_handler	= proc_dointvec_jiffies,
939 	},
940 	[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_TIMEWAIT] = {
941 		.procname	= "nf_conntrack_dccp_timeout_timewait",
942 		.maxlen		= sizeof(unsigned int),
943 		.mode		= 0644,
944 		.proc_handler	= proc_dointvec_jiffies,
945 	},
946 	[NF_SYSCTL_CT_PROTO_DCCP_LOOSE] = {
947 		.procname	= "nf_conntrack_dccp_loose",
948 		.maxlen		= sizeof(u8),
949 		.mode		= 0644,
950 		.proc_handler	= proc_dou8vec_minmax,
951 		.extra1 	= SYSCTL_ZERO,
952 		.extra2 	= SYSCTL_ONE,
953 	},
954 #endif
955 #ifdef CONFIG_NF_CT_PROTO_GRE
956 	[NF_SYSCTL_CT_PROTO_TIMEOUT_GRE] = {
957 		.procname       = "nf_conntrack_gre_timeout",
958 		.maxlen         = sizeof(unsigned int),
959 		.mode           = 0644,
960 		.proc_handler   = proc_dointvec_jiffies,
961 	},
962 	[NF_SYSCTL_CT_PROTO_TIMEOUT_GRE_STREAM] = {
963 		.procname       = "nf_conntrack_gre_timeout_stream",
964 		.maxlen         = sizeof(unsigned int),
965 		.mode           = 0644,
966 		.proc_handler   = proc_dointvec_jiffies,
967 	},
968 #endif
969 #ifdef CONFIG_LWTUNNEL
970 	[NF_SYSCTL_CT_LWTUNNEL] = {
971 		.procname	= "nf_hooks_lwtunnel",
972 		.data		= NULL,
973 		.maxlen		= sizeof(int),
974 		.mode		= 0644,
975 		.proc_handler	= nf_hooks_lwtunnel_sysctl_handler,
976 	},
977 #endif
978 	{}
979 };
980 
981 static struct ctl_table nf_ct_netfilter_table[] = {
982 	{
983 		.procname	= "nf_conntrack_max",
984 		.data		= &nf_conntrack_max,
985 		.maxlen		= sizeof(int),
986 		.mode		= 0644,
987 		.proc_handler	= proc_dointvec,
988 	},
989 	{ }
990 };
991 
992 static void nf_conntrack_standalone_init_tcp_sysctl(struct net *net,
993 						    struct ctl_table *table)
994 {
995 	struct nf_tcp_net *tn = nf_tcp_pernet(net);
996 
997 #define XASSIGN(XNAME, tn) \
998 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_ ## XNAME].data = \
999 			&(tn)->timeouts[TCP_CONNTRACK_ ## XNAME]
1000 
1001 	XASSIGN(SYN_SENT, tn);
1002 	XASSIGN(SYN_RECV, tn);
1003 	XASSIGN(ESTABLISHED, tn);
1004 	XASSIGN(FIN_WAIT, tn);
1005 	XASSIGN(CLOSE_WAIT, tn);
1006 	XASSIGN(LAST_ACK, tn);
1007 	XASSIGN(TIME_WAIT, tn);
1008 	XASSIGN(CLOSE, tn);
1009 	XASSIGN(RETRANS, tn);
1010 	XASSIGN(UNACK, tn);
1011 #undef XASSIGN
1012 #define XASSIGN(XNAME, rval) \
1013 	table[NF_SYSCTL_CT_PROTO_TCP_ ## XNAME].data = (rval)
1014 
1015 	XASSIGN(LOOSE, &tn->tcp_loose);
1016 	XASSIGN(LIBERAL, &tn->tcp_be_liberal);
1017 	XASSIGN(MAX_RETRANS, &tn->tcp_max_retrans);
1018 	XASSIGN(IGNORE_INVALID_RST, &tn->tcp_ignore_invalid_rst);
1019 #undef XASSIGN
1020 
1021 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
1022 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_OFFLOAD].data = &tn->offload_timeout;
1023 #endif
1024 
1025 }
1026 
1027 static void nf_conntrack_standalone_init_sctp_sysctl(struct net *net,
1028 						     struct ctl_table *table)
1029 {
1030 #ifdef CONFIG_NF_CT_PROTO_SCTP
1031 	struct nf_sctp_net *sn = nf_sctp_pernet(net);
1032 
1033 #define XASSIGN(XNAME, sn) \
1034 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_ ## XNAME].data = \
1035 			&(sn)->timeouts[SCTP_CONNTRACK_ ## XNAME]
1036 
1037 	XASSIGN(CLOSED, sn);
1038 	XASSIGN(COOKIE_WAIT, sn);
1039 	XASSIGN(COOKIE_ECHOED, sn);
1040 	XASSIGN(ESTABLISHED, sn);
1041 	XASSIGN(SHUTDOWN_SENT, sn);
1042 	XASSIGN(SHUTDOWN_RECD, sn);
1043 	XASSIGN(SHUTDOWN_ACK_SENT, sn);
1044 	XASSIGN(HEARTBEAT_SENT, sn);
1045 	XASSIGN(HEARTBEAT_ACKED, sn);
1046 	XASSIGN(DATA_SENT, sn);
1047 #undef XASSIGN
1048 #endif
1049 }
1050 
1051 static void nf_conntrack_standalone_init_dccp_sysctl(struct net *net,
1052 						     struct ctl_table *table)
1053 {
1054 #ifdef CONFIG_NF_CT_PROTO_DCCP
1055 	struct nf_dccp_net *dn = nf_dccp_pernet(net);
1056 
1057 #define XASSIGN(XNAME, dn) \
1058 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_ ## XNAME].data = \
1059 			&(dn)->dccp_timeout[CT_DCCP_ ## XNAME]
1060 
1061 	XASSIGN(REQUEST, dn);
1062 	XASSIGN(RESPOND, dn);
1063 	XASSIGN(PARTOPEN, dn);
1064 	XASSIGN(OPEN, dn);
1065 	XASSIGN(CLOSEREQ, dn);
1066 	XASSIGN(CLOSING, dn);
1067 	XASSIGN(TIMEWAIT, dn);
1068 #undef XASSIGN
1069 
1070 	table[NF_SYSCTL_CT_PROTO_DCCP_LOOSE].data = &dn->dccp_loose;
1071 #endif
1072 }
1073 
1074 static void nf_conntrack_standalone_init_gre_sysctl(struct net *net,
1075 						    struct ctl_table *table)
1076 {
1077 #ifdef CONFIG_NF_CT_PROTO_GRE
1078 	struct nf_gre_net *gn = nf_gre_pernet(net);
1079 
1080 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_GRE].data = &gn->timeouts[GRE_CT_UNREPLIED];
1081 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_GRE_STREAM].data = &gn->timeouts[GRE_CT_REPLIED];
1082 #endif
1083 }
1084 
1085 static int nf_conntrack_standalone_init_sysctl(struct net *net)
1086 {
1087 	struct nf_conntrack_net *cnet = nf_ct_pernet(net);
1088 	struct nf_udp_net *un = nf_udp_pernet(net);
1089 	struct ctl_table *table;
1090 
1091 	BUILD_BUG_ON(ARRAY_SIZE(nf_ct_sysctl_table) != NF_SYSCTL_CT_LAST_SYSCTL);
1092 
1093 	table = kmemdup(nf_ct_sysctl_table, sizeof(nf_ct_sysctl_table),
1094 			GFP_KERNEL);
1095 	if (!table)
1096 		return -ENOMEM;
1097 
1098 	table[NF_SYSCTL_CT_COUNT].data = &cnet->count;
1099 	table[NF_SYSCTL_CT_CHECKSUM].data = &net->ct.sysctl_checksum;
1100 	table[NF_SYSCTL_CT_LOG_INVALID].data = &net->ct.sysctl_log_invalid;
1101 	table[NF_SYSCTL_CT_ACCT].data = &net->ct.sysctl_acct;
1102 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1103 	table[NF_SYSCTL_CT_EVENTS].data = &net->ct.sysctl_events;
1104 #endif
1105 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
1106 	table[NF_SYSCTL_CT_TIMESTAMP].data = &net->ct.sysctl_tstamp;
1107 #endif
1108 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_GENERIC].data = &nf_generic_pernet(net)->timeout;
1109 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_ICMP].data = &nf_icmp_pernet(net)->timeout;
1110 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_ICMPV6].data = &nf_icmpv6_pernet(net)->timeout;
1111 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP].data = &un->timeouts[UDP_CT_UNREPLIED];
1112 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_STREAM].data = &un->timeouts[UDP_CT_REPLIED];
1113 #if IS_ENABLED(CONFIG_NF_FLOW_TABLE)
1114 	table[NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_OFFLOAD].data = &un->offload_timeout;
1115 #endif
1116 
1117 	nf_conntrack_standalone_init_tcp_sysctl(net, table);
1118 	nf_conntrack_standalone_init_sctp_sysctl(net, table);
1119 	nf_conntrack_standalone_init_dccp_sysctl(net, table);
1120 	nf_conntrack_standalone_init_gre_sysctl(net, table);
1121 
1122 	/* Don't allow non-init_net ns to alter global sysctls */
1123 	if (!net_eq(&init_net, net)) {
1124 		table[NF_SYSCTL_CT_MAX].mode = 0444;
1125 		table[NF_SYSCTL_CT_EXPECT_MAX].mode = 0444;
1126 		table[NF_SYSCTL_CT_BUCKETS].mode = 0444;
1127 	}
1128 
1129 	cnet->sysctl_header = register_net_sysctl(net, "net/netfilter", table);
1130 	if (!cnet->sysctl_header)
1131 		goto out_unregister_netfilter;
1132 
1133 	return 0;
1134 
1135 out_unregister_netfilter:
1136 	kfree(table);
1137 	return -ENOMEM;
1138 }
1139 
1140 static void nf_conntrack_standalone_fini_sysctl(struct net *net)
1141 {
1142 	struct nf_conntrack_net *cnet = nf_ct_pernet(net);
1143 	struct ctl_table *table;
1144 
1145 	table = cnet->sysctl_header->ctl_table_arg;
1146 	unregister_net_sysctl_table(cnet->sysctl_header);
1147 	kfree(table);
1148 }
1149 #else
1150 static int nf_conntrack_standalone_init_sysctl(struct net *net)
1151 {
1152 	return 0;
1153 }
1154 
1155 static void nf_conntrack_standalone_fini_sysctl(struct net *net)
1156 {
1157 }
1158 #endif /* CONFIG_SYSCTL */
1159 
1160 static void nf_conntrack_fini_net(struct net *net)
1161 {
1162 	if (enable_hooks)
1163 		nf_ct_netns_put(net, NFPROTO_INET);
1164 
1165 	nf_conntrack_standalone_fini_proc(net);
1166 	nf_conntrack_standalone_fini_sysctl(net);
1167 }
1168 
1169 static int nf_conntrack_pernet_init(struct net *net)
1170 {
1171 	int ret;
1172 
1173 	net->ct.sysctl_checksum = 1;
1174 
1175 	ret = nf_conntrack_standalone_init_sysctl(net);
1176 	if (ret < 0)
1177 		return ret;
1178 
1179 	ret = nf_conntrack_standalone_init_proc(net);
1180 	if (ret < 0)
1181 		goto out_proc;
1182 
1183 	ret = nf_conntrack_init_net(net);
1184 	if (ret < 0)
1185 		goto out_init_net;
1186 
1187 	if (enable_hooks) {
1188 		ret = nf_ct_netns_get(net, NFPROTO_INET);
1189 		if (ret < 0)
1190 			goto out_hooks;
1191 	}
1192 
1193 	return 0;
1194 
1195 out_hooks:
1196 	nf_conntrack_cleanup_net(net);
1197 out_init_net:
1198 	nf_conntrack_standalone_fini_proc(net);
1199 out_proc:
1200 	nf_conntrack_standalone_fini_sysctl(net);
1201 	return ret;
1202 }
1203 
1204 static void nf_conntrack_pernet_exit(struct list_head *net_exit_list)
1205 {
1206 	struct net *net;
1207 
1208 	list_for_each_entry(net, net_exit_list, exit_list)
1209 		nf_conntrack_fini_net(net);
1210 
1211 	nf_conntrack_cleanup_net_list(net_exit_list);
1212 }
1213 
1214 static struct pernet_operations nf_conntrack_net_ops = {
1215 	.init		= nf_conntrack_pernet_init,
1216 	.exit_batch	= nf_conntrack_pernet_exit,
1217 	.id		= &nf_conntrack_net_id,
1218 	.size = sizeof(struct nf_conntrack_net),
1219 };
1220 
1221 static int __init nf_conntrack_standalone_init(void)
1222 {
1223 	int ret = nf_conntrack_init_start();
1224 	if (ret < 0)
1225 		goto out_start;
1226 
1227 	BUILD_BUG_ON(NFCT_INFOMASK <= IP_CT_NUMBER);
1228 
1229 #ifdef CONFIG_SYSCTL
1230 	nf_ct_netfilter_header =
1231 		register_net_sysctl(&init_net, "net", nf_ct_netfilter_table);
1232 	if (!nf_ct_netfilter_header) {
1233 		pr_err("nf_conntrack: can't register to sysctl.\n");
1234 		ret = -ENOMEM;
1235 		goto out_sysctl;
1236 	}
1237 
1238 	nf_conntrack_htable_size_user = nf_conntrack_htable_size;
1239 #endif
1240 
1241 	ret = register_pernet_subsys(&nf_conntrack_net_ops);
1242 	if (ret < 0)
1243 		goto out_pernet;
1244 
1245 	nf_conntrack_init_end();
1246 	return 0;
1247 
1248 out_pernet:
1249 #ifdef CONFIG_SYSCTL
1250 	unregister_net_sysctl_table(nf_ct_netfilter_header);
1251 out_sysctl:
1252 #endif
1253 	nf_conntrack_cleanup_end();
1254 out_start:
1255 	return ret;
1256 }
1257 
1258 static void __exit nf_conntrack_standalone_fini(void)
1259 {
1260 	nf_conntrack_cleanup_start();
1261 	unregister_pernet_subsys(&nf_conntrack_net_ops);
1262 #ifdef CONFIG_SYSCTL
1263 	unregister_net_sysctl_table(nf_ct_netfilter_header);
1264 #endif
1265 	nf_conntrack_cleanup_end();
1266 }
1267 
1268 module_init(nf_conntrack_standalone_init);
1269 module_exit(nf_conntrack_standalone_fini);
1270