Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* -*- linux-c -*-
3 * sysctl_net_core.c: sysctl interface to net core subsystem.
4 *
5 * Begun April 1, 1996, Mike Shaver.
6 * Added /proc/sys/net/core directory entry (empty =) ). [MS]
7 */
8
9#include <linux/filter.h>
10#include <linux/mm.h>
11#include <linux/sysctl.h>
12#include <linux/module.h>
13#include <linux/socket.h>
14#include <linux/netdevice.h>
15#include <linux/ratelimit.h>
16#include <linux/vmalloc.h>
17#include <linux/init.h>
18#include <linux/slab.h>
19#include <linux/sched/isolation.h>
20
21#include <net/ip.h>
22#include <net/sock.h>
23#include <net/net_ratelimit.h>
24#include <net/busy_poll.h>
25#include <net/pkt_sched.h>
26
27#include "dev.h"
28
29static int int_3600 = 3600;
30static int min_sndbuf = SOCK_MIN_SNDBUF;
31static int min_rcvbuf = SOCK_MIN_RCVBUF;
32static int max_skb_frags = MAX_SKB_FRAGS;
33
34static int net_msg_warn; /* Unused, but still a sysctl */
35
36int sysctl_fb_tunnels_only_for_init_net __read_mostly = 0;
37EXPORT_SYMBOL(sysctl_fb_tunnels_only_for_init_net);
38
39/* 0 - Keep current behavior:
40 * IPv4: inherit all current settings from init_net
41 * IPv6: reset all settings to default
42 * 1 - Both inherit all current settings from init_net
43 * 2 - Both reset all settings to default
44 * 3 - Both inherit all settings from current netns
45 */
46int sysctl_devconf_inherit_init_net __read_mostly;
47EXPORT_SYMBOL(sysctl_devconf_inherit_init_net);
48
49#if IS_ENABLED(CONFIG_NET_FLOW_LIMIT) || IS_ENABLED(CONFIG_RPS)
50static void dump_cpumask(void *buffer, size_t *lenp, loff_t *ppos,
51 struct cpumask *mask)
52{
53 char kbuf[128];
54 int len;
55
56 if (*ppos || !*lenp) {
57 *lenp = 0;
58 return;
59 }
60
61 len = min(sizeof(kbuf) - 1, *lenp);
62 len = scnprintf(kbuf, len, "%*pb", cpumask_pr_args(mask));
63 if (!len) {
64 *lenp = 0;
65 return;
66 }
67
68 if (len < *lenp)
69 kbuf[len++] = '\n';
70 memcpy(buffer, kbuf, len);
71 *lenp = len;
72 *ppos += len;
73}
74#endif
75
76#ifdef CONFIG_RPS
77
78static struct cpumask *rps_default_mask_cow_alloc(struct net *net)
79{
80 struct cpumask *rps_default_mask;
81
82 if (net->core.rps_default_mask)
83 return net->core.rps_default_mask;
84
85 rps_default_mask = kzalloc(cpumask_size(), GFP_KERNEL);
86 if (!rps_default_mask)
87 return NULL;
88
89 /* pairs with READ_ONCE in rx_queue_default_mask() */
90 WRITE_ONCE(net->core.rps_default_mask, rps_default_mask);
91 return rps_default_mask;
92}
93
94static int rps_default_mask_sysctl(struct ctl_table *table, int write,
95 void *buffer, size_t *lenp, loff_t *ppos)
96{
97 struct net *net = (struct net *)table->data;
98 int err = 0;
99
100 rtnl_lock();
101 if (write) {
102 struct cpumask *rps_default_mask = rps_default_mask_cow_alloc(net);
103
104 err = -ENOMEM;
105 if (!rps_default_mask)
106 goto done;
107
108 err = cpumask_parse(buffer, rps_default_mask);
109 if (err)
110 goto done;
111
112 err = rps_cpumask_housekeeping(rps_default_mask);
113 if (err)
114 goto done;
115 } else {
116 dump_cpumask(buffer, lenp, ppos,
117 net->core.rps_default_mask ? : cpu_none_mask);
118 }
119
120done:
121 rtnl_unlock();
122 return err;
123}
124
125static int rps_sock_flow_sysctl(struct ctl_table *table, int write,
126 void *buffer, size_t *lenp, loff_t *ppos)
127{
128 unsigned int orig_size, size;
129 int ret, i;
130 struct ctl_table tmp = {
131 .data = &size,
132 .maxlen = sizeof(size),
133 .mode = table->mode
134 };
135 struct rps_sock_flow_table *orig_sock_table, *sock_table;
136 static DEFINE_MUTEX(sock_flow_mutex);
137
138 mutex_lock(&sock_flow_mutex);
139
140 orig_sock_table = rcu_dereference_protected(rps_sock_flow_table,
141 lockdep_is_held(&sock_flow_mutex));
142 size = orig_size = orig_sock_table ? orig_sock_table->mask + 1 : 0;
143
144 ret = proc_dointvec(&tmp, write, buffer, lenp, ppos);
145
146 if (write) {
147 if (size) {
148 if (size > 1<<29) {
149 /* Enforce limit to prevent overflow */
150 mutex_unlock(&sock_flow_mutex);
151 return -EINVAL;
152 }
153 size = roundup_pow_of_two(size);
154 if (size != orig_size) {
155 sock_table =
156 vmalloc(RPS_SOCK_FLOW_TABLE_SIZE(size));
157 if (!sock_table) {
158 mutex_unlock(&sock_flow_mutex);
159 return -ENOMEM;
160 }
161 rps_cpu_mask = roundup_pow_of_two(nr_cpu_ids) - 1;
162 sock_table->mask = size - 1;
163 } else
164 sock_table = orig_sock_table;
165
166 for (i = 0; i < size; i++)
167 sock_table->ents[i] = RPS_NO_CPU;
168 } else
169 sock_table = NULL;
170
171 if (sock_table != orig_sock_table) {
172 rcu_assign_pointer(rps_sock_flow_table, sock_table);
173 if (sock_table) {
174 static_branch_inc(&rps_needed);
175 static_branch_inc(&rfs_needed);
176 }
177 if (orig_sock_table) {
178 static_branch_dec(&rps_needed);
179 static_branch_dec(&rfs_needed);
180 kvfree_rcu_mightsleep(orig_sock_table);
181 }
182 }
183 }
184
185 mutex_unlock(&sock_flow_mutex);
186
187 return ret;
188}
189#endif /* CONFIG_RPS */
190
191#ifdef CONFIG_NET_FLOW_LIMIT
192static DEFINE_MUTEX(flow_limit_update_mutex);
193
194static int flow_limit_cpu_sysctl(struct ctl_table *table, int write,
195 void *buffer, size_t *lenp, loff_t *ppos)
196{
197 struct sd_flow_limit *cur;
198 struct softnet_data *sd;
199 cpumask_var_t mask;
200 int i, len, ret = 0;
201
202 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
203 return -ENOMEM;
204
205 if (write) {
206 ret = cpumask_parse(buffer, mask);
207 if (ret)
208 goto done;
209
210 mutex_lock(&flow_limit_update_mutex);
211 len = sizeof(*cur) + netdev_flow_limit_table_len;
212 for_each_possible_cpu(i) {
213 sd = &per_cpu(softnet_data, i);
214 cur = rcu_dereference_protected(sd->flow_limit,
215 lockdep_is_held(&flow_limit_update_mutex));
216 if (cur && !cpumask_test_cpu(i, mask)) {
217 RCU_INIT_POINTER(sd->flow_limit, NULL);
218 kfree_rcu_mightsleep(cur);
219 } else if (!cur && cpumask_test_cpu(i, mask)) {
220 cur = kzalloc_node(len, GFP_KERNEL,
221 cpu_to_node(i));
222 if (!cur) {
223 /* not unwinding previous changes */
224 ret = -ENOMEM;
225 goto write_unlock;
226 }
227 cur->num_buckets = netdev_flow_limit_table_len;
228 rcu_assign_pointer(sd->flow_limit, cur);
229 }
230 }
231write_unlock:
232 mutex_unlock(&flow_limit_update_mutex);
233 } else {
234 cpumask_clear(mask);
235 rcu_read_lock();
236 for_each_possible_cpu(i) {
237 sd = &per_cpu(softnet_data, i);
238 if (rcu_dereference(sd->flow_limit))
239 cpumask_set_cpu(i, mask);
240 }
241 rcu_read_unlock();
242
243 dump_cpumask(buffer, lenp, ppos, mask);
244 }
245
246done:
247 free_cpumask_var(mask);
248 return ret;
249}
250
251static int flow_limit_table_len_sysctl(struct ctl_table *table, int write,
252 void *buffer, size_t *lenp, loff_t *ppos)
253{
254 unsigned int old, *ptr;
255 int ret;
256
257 mutex_lock(&flow_limit_update_mutex);
258
259 ptr = table->data;
260 old = *ptr;
261 ret = proc_dointvec(table, write, buffer, lenp, ppos);
262 if (!ret && write && !is_power_of_2(*ptr)) {
263 *ptr = old;
264 ret = -EINVAL;
265 }
266
267 mutex_unlock(&flow_limit_update_mutex);
268 return ret;
269}
270#endif /* CONFIG_NET_FLOW_LIMIT */
271
272#ifdef CONFIG_NET_SCHED
273static int set_default_qdisc(struct ctl_table *table, int write,
274 void *buffer, size_t *lenp, loff_t *ppos)
275{
276 char id[IFNAMSIZ];
277 struct ctl_table tbl = {
278 .data = id,
279 .maxlen = IFNAMSIZ,
280 };
281 int ret;
282
283 qdisc_get_default(id, IFNAMSIZ);
284
285 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
286 if (write && ret == 0)
287 ret = qdisc_set_default(id);
288 return ret;
289}
290#endif
291
292static int proc_do_dev_weight(struct ctl_table *table, int write,
293 void *buffer, size_t *lenp, loff_t *ppos)
294{
295 static DEFINE_MUTEX(dev_weight_mutex);
296 int ret, weight;
297
298 mutex_lock(&dev_weight_mutex);
299 ret = proc_dointvec(table, write, buffer, lenp, ppos);
300 if (!ret && write) {
301 weight = READ_ONCE(weight_p);
302 WRITE_ONCE(dev_rx_weight, weight * dev_weight_rx_bias);
303 WRITE_ONCE(dev_tx_weight, weight * dev_weight_tx_bias);
304 }
305 mutex_unlock(&dev_weight_mutex);
306
307 return ret;
308}
309
310static int proc_do_rss_key(struct ctl_table *table, int write,
311 void *buffer, size_t *lenp, loff_t *ppos)
312{
313 struct ctl_table fake_table;
314 char buf[NETDEV_RSS_KEY_LEN * 3];
315
316 snprintf(buf, sizeof(buf), "%*phC", NETDEV_RSS_KEY_LEN, netdev_rss_key);
317 fake_table.data = buf;
318 fake_table.maxlen = sizeof(buf);
319 return proc_dostring(&fake_table, write, buffer, lenp, ppos);
320}
321
322#ifdef CONFIG_BPF_JIT
323static int proc_dointvec_minmax_bpf_enable(struct ctl_table *table, int write,
324 void *buffer, size_t *lenp,
325 loff_t *ppos)
326{
327 int ret, jit_enable = *(int *)table->data;
328 int min = *(int *)table->extra1;
329 int max = *(int *)table->extra2;
330 struct ctl_table tmp = *table;
331
332 if (write && !capable(CAP_SYS_ADMIN))
333 return -EPERM;
334
335 tmp.data = &jit_enable;
336 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
337 if (write && !ret) {
338 if (jit_enable < 2 ||
339 (jit_enable == 2 && bpf_dump_raw_ok(current_cred()))) {
340 *(int *)table->data = jit_enable;
341 if (jit_enable == 2)
342 pr_warn("bpf_jit_enable = 2 was set! NEVER use this in production, only for JIT debugging!\n");
343 } else {
344 ret = -EPERM;
345 }
346 }
347
348 if (write && ret && min == max)
349 pr_info_once("CONFIG_BPF_JIT_ALWAYS_ON is enabled, bpf_jit_enable is permanently set to 1.\n");
350
351 return ret;
352}
353
354# ifdef CONFIG_HAVE_EBPF_JIT
355static int
356proc_dointvec_minmax_bpf_restricted(struct ctl_table *table, int write,
357 void *buffer, size_t *lenp, loff_t *ppos)
358{
359 if (!capable(CAP_SYS_ADMIN))
360 return -EPERM;
361
362 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
363}
364# endif /* CONFIG_HAVE_EBPF_JIT */
365
366static int
367proc_dolongvec_minmax_bpf_restricted(struct ctl_table *table, int write,
368 void *buffer, size_t *lenp, loff_t *ppos)
369{
370 if (!capable(CAP_SYS_ADMIN))
371 return -EPERM;
372
373 return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
374}
375#endif
376
377static struct ctl_table net_core_table[] = {
378 {
379 .procname = "wmem_max",
380 .data = &sysctl_wmem_max,
381 .maxlen = sizeof(int),
382 .mode = 0644,
383 .proc_handler = proc_dointvec_minmax,
384 .extra1 = &min_sndbuf,
385 },
386 {
387 .procname = "rmem_max",
388 .data = &sysctl_rmem_max,
389 .maxlen = sizeof(int),
390 .mode = 0644,
391 .proc_handler = proc_dointvec_minmax,
392 .extra1 = &min_rcvbuf,
393 },
394 {
395 .procname = "wmem_default",
396 .data = &sysctl_wmem_default,
397 .maxlen = sizeof(int),
398 .mode = 0644,
399 .proc_handler = proc_dointvec_minmax,
400 .extra1 = &min_sndbuf,
401 },
402 {
403 .procname = "rmem_default",
404 .data = &sysctl_rmem_default,
405 .maxlen = sizeof(int),
406 .mode = 0644,
407 .proc_handler = proc_dointvec_minmax,
408 .extra1 = &min_rcvbuf,
409 },
410 {
411 .procname = "dev_weight",
412 .data = &weight_p,
413 .maxlen = sizeof(int),
414 .mode = 0644,
415 .proc_handler = proc_do_dev_weight,
416 },
417 {
418 .procname = "dev_weight_rx_bias",
419 .data = &dev_weight_rx_bias,
420 .maxlen = sizeof(int),
421 .mode = 0644,
422 .proc_handler = proc_do_dev_weight,
423 },
424 {
425 .procname = "dev_weight_tx_bias",
426 .data = &dev_weight_tx_bias,
427 .maxlen = sizeof(int),
428 .mode = 0644,
429 .proc_handler = proc_do_dev_weight,
430 },
431 {
432 .procname = "netdev_max_backlog",
433 .data = &netdev_max_backlog,
434 .maxlen = sizeof(int),
435 .mode = 0644,
436 .proc_handler = proc_dointvec
437 },
438 {
439 .procname = "netdev_rss_key",
440 .data = &netdev_rss_key,
441 .maxlen = sizeof(int),
442 .mode = 0444,
443 .proc_handler = proc_do_rss_key,
444 },
445#ifdef CONFIG_BPF_JIT
446 {
447 .procname = "bpf_jit_enable",
448 .data = &bpf_jit_enable,
449 .maxlen = sizeof(int),
450 .mode = 0644,
451 .proc_handler = proc_dointvec_minmax_bpf_enable,
452# ifdef CONFIG_BPF_JIT_ALWAYS_ON
453 .extra1 = SYSCTL_ONE,
454 .extra2 = SYSCTL_ONE,
455# else
456 .extra1 = SYSCTL_ZERO,
457 .extra2 = SYSCTL_TWO,
458# endif
459 },
460# ifdef CONFIG_HAVE_EBPF_JIT
461 {
462 .procname = "bpf_jit_harden",
463 .data = &bpf_jit_harden,
464 .maxlen = sizeof(int),
465 .mode = 0600,
466 .proc_handler = proc_dointvec_minmax_bpf_restricted,
467 .extra1 = SYSCTL_ZERO,
468 .extra2 = SYSCTL_TWO,
469 },
470 {
471 .procname = "bpf_jit_kallsyms",
472 .data = &bpf_jit_kallsyms,
473 .maxlen = sizeof(int),
474 .mode = 0600,
475 .proc_handler = proc_dointvec_minmax_bpf_restricted,
476 .extra1 = SYSCTL_ZERO,
477 .extra2 = SYSCTL_ONE,
478 },
479# endif
480 {
481 .procname = "bpf_jit_limit",
482 .data = &bpf_jit_limit,
483 .maxlen = sizeof(long),
484 .mode = 0600,
485 .proc_handler = proc_dolongvec_minmax_bpf_restricted,
486 .extra1 = SYSCTL_LONG_ONE,
487 .extra2 = &bpf_jit_limit_max,
488 },
489#endif
490 {
491 .procname = "netdev_tstamp_prequeue",
492 .data = &netdev_tstamp_prequeue,
493 .maxlen = sizeof(int),
494 .mode = 0644,
495 .proc_handler = proc_dointvec
496 },
497 {
498 .procname = "message_cost",
499 .data = &net_ratelimit_state.interval,
500 .maxlen = sizeof(int),
501 .mode = 0644,
502 .proc_handler = proc_dointvec_jiffies,
503 },
504 {
505 .procname = "message_burst",
506 .data = &net_ratelimit_state.burst,
507 .maxlen = sizeof(int),
508 .mode = 0644,
509 .proc_handler = proc_dointvec,
510 },
511 {
512 .procname = "tstamp_allow_data",
513 .data = &sysctl_tstamp_allow_data,
514 .maxlen = sizeof(int),
515 .mode = 0644,
516 .proc_handler = proc_dointvec_minmax,
517 .extra1 = SYSCTL_ZERO,
518 .extra2 = SYSCTL_ONE
519 },
520#ifdef CONFIG_RPS
521 {
522 .procname = "rps_sock_flow_entries",
523 .maxlen = sizeof(int),
524 .mode = 0644,
525 .proc_handler = rps_sock_flow_sysctl
526 },
527#endif
528#ifdef CONFIG_NET_FLOW_LIMIT
529 {
530 .procname = "flow_limit_cpu_bitmap",
531 .mode = 0644,
532 .proc_handler = flow_limit_cpu_sysctl
533 },
534 {
535 .procname = "flow_limit_table_len",
536 .data = &netdev_flow_limit_table_len,
537 .maxlen = sizeof(int),
538 .mode = 0644,
539 .proc_handler = flow_limit_table_len_sysctl
540 },
541#endif /* CONFIG_NET_FLOW_LIMIT */
542#ifdef CONFIG_NET_RX_BUSY_POLL
543 {
544 .procname = "busy_poll",
545 .data = &sysctl_net_busy_poll,
546 .maxlen = sizeof(unsigned int),
547 .mode = 0644,
548 .proc_handler = proc_dointvec_minmax,
549 .extra1 = SYSCTL_ZERO,
550 },
551 {
552 .procname = "busy_read",
553 .data = &sysctl_net_busy_read,
554 .maxlen = sizeof(unsigned int),
555 .mode = 0644,
556 .proc_handler = proc_dointvec_minmax,
557 .extra1 = SYSCTL_ZERO,
558 },
559#endif
560#ifdef CONFIG_NET_SCHED
561 {
562 .procname = "default_qdisc",
563 .mode = 0644,
564 .maxlen = IFNAMSIZ,
565 .proc_handler = set_default_qdisc
566 },
567#endif
568 {
569 .procname = "netdev_budget",
570 .data = &netdev_budget,
571 .maxlen = sizeof(int),
572 .mode = 0644,
573 .proc_handler = proc_dointvec
574 },
575 {
576 .procname = "warnings",
577 .data = &net_msg_warn,
578 .maxlen = sizeof(int),
579 .mode = 0644,
580 .proc_handler = proc_dointvec
581 },
582 {
583 .procname = "max_skb_frags",
584 .data = &sysctl_max_skb_frags,
585 .maxlen = sizeof(int),
586 .mode = 0644,
587 .proc_handler = proc_dointvec_minmax,
588 .extra1 = SYSCTL_ONE,
589 .extra2 = &max_skb_frags,
590 },
591 {
592 .procname = "netdev_budget_usecs",
593 .data = &netdev_budget_usecs,
594 .maxlen = sizeof(unsigned int),
595 .mode = 0644,
596 .proc_handler = proc_dointvec_minmax,
597 .extra1 = SYSCTL_ZERO,
598 },
599 {
600 .procname = "fb_tunnels_only_for_init_net",
601 .data = &sysctl_fb_tunnels_only_for_init_net,
602 .maxlen = sizeof(int),
603 .mode = 0644,
604 .proc_handler = proc_dointvec_minmax,
605 .extra1 = SYSCTL_ZERO,
606 .extra2 = SYSCTL_TWO,
607 },
608 {
609 .procname = "devconf_inherit_init_net",
610 .data = &sysctl_devconf_inherit_init_net,
611 .maxlen = sizeof(int),
612 .mode = 0644,
613 .proc_handler = proc_dointvec_minmax,
614 .extra1 = SYSCTL_ZERO,
615 .extra2 = SYSCTL_THREE,
616 },
617 {
618 .procname = "high_order_alloc_disable",
619 .data = &net_high_order_alloc_disable_key.key,
620 .maxlen = sizeof(net_high_order_alloc_disable_key),
621 .mode = 0644,
622 .proc_handler = proc_do_static_key,
623 },
624 {
625 .procname = "gro_normal_batch",
626 .data = &gro_normal_batch,
627 .maxlen = sizeof(unsigned int),
628 .mode = 0644,
629 .proc_handler = proc_dointvec_minmax,
630 .extra1 = SYSCTL_ONE,
631 },
632 {
633 .procname = "netdev_unregister_timeout_secs",
634 .data = &netdev_unregister_timeout_secs,
635 .maxlen = sizeof(unsigned int),
636 .mode = 0644,
637 .proc_handler = proc_dointvec_minmax,
638 .extra1 = SYSCTL_ONE,
639 .extra2 = &int_3600,
640 },
641 {
642 .procname = "skb_defer_max",
643 .data = &sysctl_skb_defer_max,
644 .maxlen = sizeof(unsigned int),
645 .mode = 0644,
646 .proc_handler = proc_dointvec_minmax,
647 .extra1 = SYSCTL_ZERO,
648 },
649 { }
650};
651
652static struct ctl_table netns_core_table[] = {
653#if IS_ENABLED(CONFIG_RPS)
654 {
655 .procname = "rps_default_mask",
656 .data = &init_net,
657 .mode = 0644,
658 .proc_handler = rps_default_mask_sysctl
659 },
660#endif
661 {
662 .procname = "somaxconn",
663 .data = &init_net.core.sysctl_somaxconn,
664 .maxlen = sizeof(int),
665 .mode = 0644,
666 .extra1 = SYSCTL_ZERO,
667 .proc_handler = proc_dointvec_minmax
668 },
669 {
670 .procname = "optmem_max",
671 .data = &init_net.core.sysctl_optmem_max,
672 .maxlen = sizeof(int),
673 .mode = 0644,
674 .extra1 = SYSCTL_ZERO,
675 .proc_handler = proc_dointvec_minmax
676 },
677 {
678 .procname = "txrehash",
679 .data = &init_net.core.sysctl_txrehash,
680 .maxlen = sizeof(u8),
681 .mode = 0644,
682 .extra1 = SYSCTL_ZERO,
683 .extra2 = SYSCTL_ONE,
684 .proc_handler = proc_dou8vec_minmax,
685 },
686 { }
687};
688
689static int __init fb_tunnels_only_for_init_net_sysctl_setup(char *str)
690{
691 /* fallback tunnels for initns only */
692 if (!strncmp(str, "initns", 6))
693 sysctl_fb_tunnels_only_for_init_net = 1;
694 /* no fallback tunnels anywhere */
695 else if (!strncmp(str, "none", 4))
696 sysctl_fb_tunnels_only_for_init_net = 2;
697
698 return 1;
699}
700__setup("fb_tunnels=", fb_tunnels_only_for_init_net_sysctl_setup);
701
702static __net_init int sysctl_core_net_init(struct net *net)
703{
704 struct ctl_table *tbl, *tmp;
705
706 tbl = netns_core_table;
707 if (!net_eq(net, &init_net)) {
708 tbl = kmemdup(tbl, sizeof(netns_core_table), GFP_KERNEL);
709 if (tbl == NULL)
710 goto err_dup;
711
712 for (tmp = tbl; tmp->procname; tmp++)
713 tmp->data += (char *)net - (char *)&init_net;
714 }
715
716 net->core.sysctl_hdr = register_net_sysctl_sz(net, "net/core", tbl,
717 ARRAY_SIZE(netns_core_table));
718 if (net->core.sysctl_hdr == NULL)
719 goto err_reg;
720
721 return 0;
722
723err_reg:
724 if (tbl != netns_core_table)
725 kfree(tbl);
726err_dup:
727 return -ENOMEM;
728}
729
730static __net_exit void sysctl_core_net_exit(struct net *net)
731{
732 struct ctl_table *tbl;
733
734 tbl = net->core.sysctl_hdr->ctl_table_arg;
735 unregister_net_sysctl_table(net->core.sysctl_hdr);
736 BUG_ON(tbl == netns_core_table);
737#if IS_ENABLED(CONFIG_RPS)
738 kfree(net->core.rps_default_mask);
739#endif
740 kfree(tbl);
741}
742
743static __net_initdata struct pernet_operations sysctl_core_ops = {
744 .init = sysctl_core_net_init,
745 .exit = sysctl_core_net_exit,
746};
747
748static __init int sysctl_core_init(void)
749{
750 register_net_sysctl(&init_net, "net/core", net_core_table);
751 return register_pernet_subsys(&sysctl_core_ops);
752}
753
754fs_initcall(sysctl_core_init);
1/* -*- linux-c -*-
2 * sysctl_net_core.c: sysctl interface to net core subsystem.
3 *
4 * Begun April 1, 1996, Mike Shaver.
5 * Added /proc/sys/net/core directory entry (empty =) ). [MS]
6 */
7
8#include <linux/mm.h>
9#include <linux/sysctl.h>
10#include <linux/module.h>
11#include <linux/socket.h>
12#include <linux/netdevice.h>
13#include <linux/ratelimit.h>
14#include <linux/vmalloc.h>
15#include <linux/init.h>
16#include <linux/slab.h>
17#include <linux/kmemleak.h>
18
19#include <net/ip.h>
20#include <net/sock.h>
21#include <net/net_ratelimit.h>
22#include <net/busy_poll.h>
23#include <net/pkt_sched.h>
24
25static int zero = 0;
26static int one = 1;
27static int min_sndbuf = SOCK_MIN_SNDBUF;
28static int min_rcvbuf = SOCK_MIN_RCVBUF;
29static int max_skb_frags = MAX_SKB_FRAGS;
30
31static int net_msg_warn; /* Unused, but still a sysctl */
32
33#ifdef CONFIG_RPS
34static int rps_sock_flow_sysctl(struct ctl_table *table, int write,
35 void __user *buffer, size_t *lenp, loff_t *ppos)
36{
37 unsigned int orig_size, size;
38 int ret, i;
39 struct ctl_table tmp = {
40 .data = &size,
41 .maxlen = sizeof(size),
42 .mode = table->mode
43 };
44 struct rps_sock_flow_table *orig_sock_table, *sock_table;
45 static DEFINE_MUTEX(sock_flow_mutex);
46
47 mutex_lock(&sock_flow_mutex);
48
49 orig_sock_table = rcu_dereference_protected(rps_sock_flow_table,
50 lockdep_is_held(&sock_flow_mutex));
51 size = orig_size = orig_sock_table ? orig_sock_table->mask + 1 : 0;
52
53 ret = proc_dointvec(&tmp, write, buffer, lenp, ppos);
54
55 if (write) {
56 if (size) {
57 if (size > 1<<29) {
58 /* Enforce limit to prevent overflow */
59 mutex_unlock(&sock_flow_mutex);
60 return -EINVAL;
61 }
62 size = roundup_pow_of_two(size);
63 if (size != orig_size) {
64 sock_table =
65 vmalloc(RPS_SOCK_FLOW_TABLE_SIZE(size));
66 if (!sock_table) {
67 mutex_unlock(&sock_flow_mutex);
68 return -ENOMEM;
69 }
70 rps_cpu_mask = roundup_pow_of_two(nr_cpu_ids) - 1;
71 sock_table->mask = size - 1;
72 } else
73 sock_table = orig_sock_table;
74
75 for (i = 0; i < size; i++)
76 sock_table->ents[i] = RPS_NO_CPU;
77 } else
78 sock_table = NULL;
79
80 if (sock_table != orig_sock_table) {
81 rcu_assign_pointer(rps_sock_flow_table, sock_table);
82 if (sock_table) {
83 static_key_slow_inc(&rps_needed);
84 static_key_slow_inc(&rfs_needed);
85 }
86 if (orig_sock_table) {
87 static_key_slow_dec(&rps_needed);
88 static_key_slow_dec(&rfs_needed);
89 synchronize_rcu();
90 vfree(orig_sock_table);
91 }
92 }
93 }
94
95 mutex_unlock(&sock_flow_mutex);
96
97 return ret;
98}
99#endif /* CONFIG_RPS */
100
101#ifdef CONFIG_NET_FLOW_LIMIT
102static DEFINE_MUTEX(flow_limit_update_mutex);
103
104static int flow_limit_cpu_sysctl(struct ctl_table *table, int write,
105 void __user *buffer, size_t *lenp,
106 loff_t *ppos)
107{
108 struct sd_flow_limit *cur;
109 struct softnet_data *sd;
110 cpumask_var_t mask;
111 int i, len, ret = 0;
112
113 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
114 return -ENOMEM;
115
116 if (write) {
117 ret = cpumask_parse_user(buffer, *lenp, mask);
118 if (ret)
119 goto done;
120
121 mutex_lock(&flow_limit_update_mutex);
122 len = sizeof(*cur) + netdev_flow_limit_table_len;
123 for_each_possible_cpu(i) {
124 sd = &per_cpu(softnet_data, i);
125 cur = rcu_dereference_protected(sd->flow_limit,
126 lockdep_is_held(&flow_limit_update_mutex));
127 if (cur && !cpumask_test_cpu(i, mask)) {
128 RCU_INIT_POINTER(sd->flow_limit, NULL);
129 synchronize_rcu();
130 kfree(cur);
131 } else if (!cur && cpumask_test_cpu(i, mask)) {
132 cur = kzalloc_node(len, GFP_KERNEL,
133 cpu_to_node(i));
134 if (!cur) {
135 /* not unwinding previous changes */
136 ret = -ENOMEM;
137 goto write_unlock;
138 }
139 cur->num_buckets = netdev_flow_limit_table_len;
140 rcu_assign_pointer(sd->flow_limit, cur);
141 }
142 }
143write_unlock:
144 mutex_unlock(&flow_limit_update_mutex);
145 } else {
146 char kbuf[128];
147
148 if (*ppos || !*lenp) {
149 *lenp = 0;
150 goto done;
151 }
152
153 cpumask_clear(mask);
154 rcu_read_lock();
155 for_each_possible_cpu(i) {
156 sd = &per_cpu(softnet_data, i);
157 if (rcu_dereference(sd->flow_limit))
158 cpumask_set_cpu(i, mask);
159 }
160 rcu_read_unlock();
161
162 len = min(sizeof(kbuf) - 1, *lenp);
163 len = scnprintf(kbuf, len, "%*pb", cpumask_pr_args(mask));
164 if (!len) {
165 *lenp = 0;
166 goto done;
167 }
168 if (len < *lenp)
169 kbuf[len++] = '\n';
170 if (copy_to_user(buffer, kbuf, len)) {
171 ret = -EFAULT;
172 goto done;
173 }
174 *lenp = len;
175 *ppos += len;
176 }
177
178done:
179 free_cpumask_var(mask);
180 return ret;
181}
182
183static int flow_limit_table_len_sysctl(struct ctl_table *table, int write,
184 void __user *buffer, size_t *lenp,
185 loff_t *ppos)
186{
187 unsigned int old, *ptr;
188 int ret;
189
190 mutex_lock(&flow_limit_update_mutex);
191
192 ptr = table->data;
193 old = *ptr;
194 ret = proc_dointvec(table, write, buffer, lenp, ppos);
195 if (!ret && write && !is_power_of_2(*ptr)) {
196 *ptr = old;
197 ret = -EINVAL;
198 }
199
200 mutex_unlock(&flow_limit_update_mutex);
201 return ret;
202}
203#endif /* CONFIG_NET_FLOW_LIMIT */
204
205#ifdef CONFIG_NET_SCHED
206static int set_default_qdisc(struct ctl_table *table, int write,
207 void __user *buffer, size_t *lenp, loff_t *ppos)
208{
209 char id[IFNAMSIZ];
210 struct ctl_table tbl = {
211 .data = id,
212 .maxlen = IFNAMSIZ,
213 };
214 int ret;
215
216 qdisc_get_default(id, IFNAMSIZ);
217
218 ret = proc_dostring(&tbl, write, buffer, lenp, ppos);
219 if (write && ret == 0)
220 ret = qdisc_set_default(id);
221 return ret;
222}
223#endif
224
225static int proc_do_rss_key(struct ctl_table *table, int write,
226 void __user *buffer, size_t *lenp, loff_t *ppos)
227{
228 struct ctl_table fake_table;
229 char buf[NETDEV_RSS_KEY_LEN * 3];
230
231 snprintf(buf, sizeof(buf), "%*phC", NETDEV_RSS_KEY_LEN, netdev_rss_key);
232 fake_table.data = buf;
233 fake_table.maxlen = sizeof(buf);
234 return proc_dostring(&fake_table, write, buffer, lenp, ppos);
235}
236
237static struct ctl_table net_core_table[] = {
238#ifdef CONFIG_NET
239 {
240 .procname = "wmem_max",
241 .data = &sysctl_wmem_max,
242 .maxlen = sizeof(int),
243 .mode = 0644,
244 .proc_handler = proc_dointvec_minmax,
245 .extra1 = &min_sndbuf,
246 },
247 {
248 .procname = "rmem_max",
249 .data = &sysctl_rmem_max,
250 .maxlen = sizeof(int),
251 .mode = 0644,
252 .proc_handler = proc_dointvec_minmax,
253 .extra1 = &min_rcvbuf,
254 },
255 {
256 .procname = "wmem_default",
257 .data = &sysctl_wmem_default,
258 .maxlen = sizeof(int),
259 .mode = 0644,
260 .proc_handler = proc_dointvec_minmax,
261 .extra1 = &min_sndbuf,
262 },
263 {
264 .procname = "rmem_default",
265 .data = &sysctl_rmem_default,
266 .maxlen = sizeof(int),
267 .mode = 0644,
268 .proc_handler = proc_dointvec_minmax,
269 .extra1 = &min_rcvbuf,
270 },
271 {
272 .procname = "dev_weight",
273 .data = &weight_p,
274 .maxlen = sizeof(int),
275 .mode = 0644,
276 .proc_handler = proc_dointvec
277 },
278 {
279 .procname = "netdev_max_backlog",
280 .data = &netdev_max_backlog,
281 .maxlen = sizeof(int),
282 .mode = 0644,
283 .proc_handler = proc_dointvec
284 },
285 {
286 .procname = "netdev_rss_key",
287 .data = &netdev_rss_key,
288 .maxlen = sizeof(int),
289 .mode = 0444,
290 .proc_handler = proc_do_rss_key,
291 },
292#ifdef CONFIG_BPF_JIT
293 {
294 .procname = "bpf_jit_enable",
295 .data = &bpf_jit_enable,
296 .maxlen = sizeof(int),
297 .mode = 0644,
298 .proc_handler = proc_dointvec
299 },
300# ifdef CONFIG_HAVE_EBPF_JIT
301 {
302 .procname = "bpf_jit_harden",
303 .data = &bpf_jit_harden,
304 .maxlen = sizeof(int),
305 .mode = 0600,
306 .proc_handler = proc_dointvec,
307 },
308# endif
309#endif
310 {
311 .procname = "netdev_tstamp_prequeue",
312 .data = &netdev_tstamp_prequeue,
313 .maxlen = sizeof(int),
314 .mode = 0644,
315 .proc_handler = proc_dointvec
316 },
317 {
318 .procname = "message_cost",
319 .data = &net_ratelimit_state.interval,
320 .maxlen = sizeof(int),
321 .mode = 0644,
322 .proc_handler = proc_dointvec_jiffies,
323 },
324 {
325 .procname = "message_burst",
326 .data = &net_ratelimit_state.burst,
327 .maxlen = sizeof(int),
328 .mode = 0644,
329 .proc_handler = proc_dointvec,
330 },
331 {
332 .procname = "optmem_max",
333 .data = &sysctl_optmem_max,
334 .maxlen = sizeof(int),
335 .mode = 0644,
336 .proc_handler = proc_dointvec
337 },
338 {
339 .procname = "tstamp_allow_data",
340 .data = &sysctl_tstamp_allow_data,
341 .maxlen = sizeof(int),
342 .mode = 0644,
343 .proc_handler = proc_dointvec_minmax,
344 .extra1 = &zero,
345 .extra2 = &one
346 },
347#ifdef CONFIG_RPS
348 {
349 .procname = "rps_sock_flow_entries",
350 .maxlen = sizeof(int),
351 .mode = 0644,
352 .proc_handler = rps_sock_flow_sysctl
353 },
354#endif
355#ifdef CONFIG_NET_FLOW_LIMIT
356 {
357 .procname = "flow_limit_cpu_bitmap",
358 .mode = 0644,
359 .proc_handler = flow_limit_cpu_sysctl
360 },
361 {
362 .procname = "flow_limit_table_len",
363 .data = &netdev_flow_limit_table_len,
364 .maxlen = sizeof(int),
365 .mode = 0644,
366 .proc_handler = flow_limit_table_len_sysctl
367 },
368#endif /* CONFIG_NET_FLOW_LIMIT */
369#ifdef CONFIG_NET_RX_BUSY_POLL
370 {
371 .procname = "busy_poll",
372 .data = &sysctl_net_busy_poll,
373 .maxlen = sizeof(unsigned int),
374 .mode = 0644,
375 .proc_handler = proc_dointvec
376 },
377 {
378 .procname = "busy_read",
379 .data = &sysctl_net_busy_read,
380 .maxlen = sizeof(unsigned int),
381 .mode = 0644,
382 .proc_handler = proc_dointvec
383 },
384#endif
385#ifdef CONFIG_NET_SCHED
386 {
387 .procname = "default_qdisc",
388 .mode = 0644,
389 .maxlen = IFNAMSIZ,
390 .proc_handler = set_default_qdisc
391 },
392#endif
393#endif /* CONFIG_NET */
394 {
395 .procname = "netdev_budget",
396 .data = &netdev_budget,
397 .maxlen = sizeof(int),
398 .mode = 0644,
399 .proc_handler = proc_dointvec
400 },
401 {
402 .procname = "warnings",
403 .data = &net_msg_warn,
404 .maxlen = sizeof(int),
405 .mode = 0644,
406 .proc_handler = proc_dointvec
407 },
408 {
409 .procname = "max_skb_frags",
410 .data = &sysctl_max_skb_frags,
411 .maxlen = sizeof(int),
412 .mode = 0644,
413 .proc_handler = proc_dointvec_minmax,
414 .extra1 = &one,
415 .extra2 = &max_skb_frags,
416 },
417 { }
418};
419
420static struct ctl_table netns_core_table[] = {
421 {
422 .procname = "somaxconn",
423 .data = &init_net.core.sysctl_somaxconn,
424 .maxlen = sizeof(int),
425 .mode = 0644,
426 .extra1 = &zero,
427 .proc_handler = proc_dointvec_minmax
428 },
429 { }
430};
431
432static __net_init int sysctl_core_net_init(struct net *net)
433{
434 struct ctl_table *tbl;
435
436 net->core.sysctl_somaxconn = SOMAXCONN;
437
438 tbl = netns_core_table;
439 if (!net_eq(net, &init_net)) {
440 tbl = kmemdup(tbl, sizeof(netns_core_table), GFP_KERNEL);
441 if (tbl == NULL)
442 goto err_dup;
443
444 tbl[0].data = &net->core.sysctl_somaxconn;
445
446 /* Don't export any sysctls to unprivileged users */
447 if (net->user_ns != &init_user_ns) {
448 tbl[0].procname = NULL;
449 }
450 }
451
452 net->core.sysctl_hdr = register_net_sysctl(net, "net/core", tbl);
453 if (net->core.sysctl_hdr == NULL)
454 goto err_reg;
455
456 return 0;
457
458err_reg:
459 if (tbl != netns_core_table)
460 kfree(tbl);
461err_dup:
462 return -ENOMEM;
463}
464
465static __net_exit void sysctl_core_net_exit(struct net *net)
466{
467 struct ctl_table *tbl;
468
469 tbl = net->core.sysctl_hdr->ctl_table_arg;
470 unregister_net_sysctl_table(net->core.sysctl_hdr);
471 BUG_ON(tbl == netns_core_table);
472 kfree(tbl);
473}
474
475static __net_initdata struct pernet_operations sysctl_core_ops = {
476 .init = sysctl_core_net_init,
477 .exit = sysctl_core_net_exit,
478};
479
480static __init int sysctl_core_init(void)
481{
482 register_net_sysctl(&init_net, "net/core", net_core_table);
483 return register_pernet_subsys(&sysctl_core_ops);
484}
485
486fs_initcall(sysctl_core_init);