1 // SPDX-License-Identifier: GPL-2.0-only
3 * sysctl.c: General linux system control interface
5 * Begun 24 March 1995, Stephen Tweedie
6 * Added /proc support, Dec 1995
7 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
8 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
9 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
10 * Dynamic registration fixes, Stephen Tweedie.
11 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
12 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
14 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
15 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
16 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
18 * The list_for_each() macro wasn't appropriate for the sysctl loop.
19 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
22 #include <linux/module.h>
23 #include <linux/aio.h>
25 #include <linux/swap.h>
26 #include <linux/slab.h>
27 #include <linux/sysctl.h>
28 #include <linux/bitmap.h>
29 #include <linux/signal.h>
30 #include <linux/printk.h>
31 #include <linux/proc_fs.h>
32 #include <linux/security.h>
33 #include <linux/ctype.h>
34 #include <linux/kmemleak.h>
36 #include <linux/init.h>
37 #include <linux/kernel.h>
38 #include <linux/kobject.h>
39 #include <linux/net.h>
40 #include <linux/sysrq.h>
41 #include <linux/highuid.h>
42 #include <linux/writeback.h>
43 #include <linux/ratelimit.h>
44 #include <linux/compaction.h>
45 #include <linux/hugetlb.h>
46 #include <linux/initrd.h>
47 #include <linux/key.h>
48 #include <linux/times.h>
49 #include <linux/limits.h>
50 #include <linux/dcache.h>
51 #include <linux/dnotify.h>
52 #include <linux/syscalls.h>
53 #include <linux/vmstat.h>
54 #include <linux/nfs_fs.h>
55 #include <linux/acpi.h>
56 #include <linux/reboot.h>
57 #include <linux/ftrace.h>
58 #include <linux/perf_event.h>
59 #include <linux/kprobes.h>
60 #include <linux/pipe_fs_i.h>
61 #include <linux/oom.h>
62 #include <linux/kmod.h>
63 #include <linux/capability.h>
64 #include <linux/binfmts.h>
65 #include <linux/sched/sysctl.h>
66 #include <linux/sched/coredump.h>
67 #include <linux/kexec.h>
68 #include <linux/bpf.h>
69 #include <linux/mount.h>
70 #include <linux/userfaultfd_k.h>
71 #include <linux/coredump.h>
72 #include <linux/latencytop.h>
73 #include <linux/pid.h>
75 #include "../lib/kstrtox.h"
77 #include <linux/uaccess.h>
78 #include <asm/processor.h>
82 #include <asm/stacktrace.h>
86 #include <asm/setup.h>
88 #ifdef CONFIG_BSD_PROCESS_ACCT
89 #include <linux/acct.h>
91 #ifdef CONFIG_RT_MUTEXES
92 #include <linux/rtmutex.h>
94 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
95 #include <linux/lockdep.h>
97 #ifdef CONFIG_CHR_DEV_SG
100 #ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
101 #include <linux/stackleak.h>
103 #ifdef CONFIG_LOCKUP_DETECTOR
104 #include <linux/nmi.h>
107 #if defined(CONFIG_SYSCTL)
109 /* Constants used for minimum and maximum */
110 #ifdef CONFIG_LOCKUP_DETECTOR
111 static int sixty = 60;
114 static int __maybe_unused neg_one = -1;
115 static int __maybe_unused two = 2;
116 static int __maybe_unused four = 4;
117 static unsigned long zero_ul;
118 static unsigned long one_ul = 1;
119 static unsigned long long_max = LONG_MAX;
120 static int one_hundred = 100;
121 static int two_hundred = 200;
122 static int one_thousand = 1000;
124 static int ten_thousand = 10000;
126 #ifdef CONFIG_PERF_EVENTS
127 static int six_hundred_forty_kb = 640 * 1024;
130 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
131 static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
133 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
134 static int maxolduid = 65535;
135 static int minolduid;
137 static int ngroups_max = NGROUPS_MAX;
138 static const int cap_last_cap = CAP_LAST_CAP;
141 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
142 * and hung_task_check_interval_secs
144 #ifdef CONFIG_DETECT_HUNG_TASK
145 static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
148 #ifdef CONFIG_INOTIFY_USER
149 #include <linux/inotify.h>
152 #ifdef CONFIG_PROC_SYSCTL
155 * enum sysctl_writes_mode - supported sysctl write modes
157 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
158 * to be written, and multiple writes on the same sysctl file descriptor
159 * will rewrite the sysctl value, regardless of file position. No warning
160 * is issued when the initial position is not 0.
161 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
163 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
164 * file position 0 and the value must be fully contained in the buffer
165 * sent to the write syscall. If dealing with strings respect the file
166 * position, but restrict this to the max length of the buffer, anything
167 * passed the max length will be ignored. Multiple writes will append
170 * These write modes control how current file position affects the behavior of
171 * updating sysctl values through the proc interface on each write.
173 enum sysctl_writes_mode {
174 SYSCTL_WRITES_LEGACY = -1,
175 SYSCTL_WRITES_WARN = 0,
176 SYSCTL_WRITES_STRICT = 1,
179 static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
180 #endif /* CONFIG_PROC_SYSCTL */
182 #if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
183 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
184 int sysctl_legacy_va_layout;
187 #ifdef CONFIG_SCHED_DEBUG
188 static int min_sched_granularity_ns = 100000; /* 100 usecs */
189 static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
190 static int min_wakeup_granularity_ns; /* 0 usecs */
191 static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
193 static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
194 static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
195 #endif /* CONFIG_SMP */
196 #endif /* CONFIG_SCHED_DEBUG */
198 #ifdef CONFIG_COMPACTION
199 static int min_extfrag_threshold;
200 static int max_extfrag_threshold = 1000;
203 #endif /* CONFIG_SYSCTL */
205 #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_SYSCTL)
206 static int bpf_stats_handler(struct ctl_table *table, int write,
207 void *buffer, size_t *lenp, loff_t *ppos)
209 struct static_key *key = (struct static_key *)table->data;
210 static int saved_val;
212 struct ctl_table tmp = {
214 .maxlen = sizeof(val),
216 .extra1 = SYSCTL_ZERO,
217 .extra2 = SYSCTL_ONE,
220 if (write && !capable(CAP_SYS_ADMIN))
223 mutex_lock(&bpf_stats_enabled_mutex);
225 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
226 if (write && !ret && val != saved_val) {
228 static_key_slow_inc(key);
230 static_key_slow_dec(key);
233 mutex_unlock(&bpf_stats_enabled_mutex);
242 #ifdef CONFIG_PROC_SYSCTL
244 static int _proc_do_string(char *data, int maxlen, int write,
245 char *buffer, size_t *lenp, loff_t *ppos)
250 if (!data || !maxlen || !*lenp) {
256 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
257 /* Only continue writes not past the end of buffer. */
259 if (len > maxlen - 1)
266 /* Start writing from beginning of buffer. */
272 while ((p - buffer) < *lenp && len < maxlen - 1) {
274 if (c == 0 || c == '\n')
295 memcpy(buffer, data, len);
306 static void warn_sysctl_write(struct ctl_table *table)
308 pr_warn_once("%s wrote to %s when file position was not 0!\n"
309 "This will not be supported in the future. To silence this\n"
310 "warning, set kernel.sysctl_writes_strict = -1\n",
311 current->comm, table->procname);
315 * proc_first_pos_non_zero_ignore - check if first position is allowed
316 * @ppos: file position
317 * @table: the sysctl table
319 * Returns true if the first position is non-zero and the sysctl_writes_strict
320 * mode indicates this is not allowed for numeric input types. String proc
321 * handlers can ignore the return value.
323 static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
324 struct ctl_table *table)
329 switch (sysctl_writes_strict) {
330 case SYSCTL_WRITES_STRICT:
332 case SYSCTL_WRITES_WARN:
333 warn_sysctl_write(table);
341 * proc_dostring - read a string sysctl
342 * @table: the sysctl table
343 * @write: %TRUE if this is a write to the sysctl file
344 * @buffer: the user buffer
345 * @lenp: the size of the user buffer
346 * @ppos: file position
348 * Reads/writes a string from/to the user buffer. If the kernel
349 * buffer provided is not large enough to hold the string, the
350 * string is truncated. The copied string is %NULL-terminated.
351 * If the string is being read by the user process, it is copied
352 * and a newline '\n' is added. It is truncated if the buffer is
355 * Returns 0 on success.
357 int proc_dostring(struct ctl_table *table, int write,
358 void *buffer, size_t *lenp, loff_t *ppos)
361 proc_first_pos_non_zero_ignore(ppos, table);
363 return _proc_do_string(table->data, table->maxlen, write, buffer, lenp,
367 static size_t proc_skip_spaces(char **buf)
370 char *tmp = skip_spaces(*buf);
376 static void proc_skip_char(char **buf, size_t *size, const char v)
387 * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
390 * @cp: kernel buffer containing the string to parse
391 * @endp: pointer to store the trailing characters
392 * @base: the base to use
393 * @res: where the parsed integer will be stored
395 * In case of success 0 is returned and @res will contain the parsed integer,
396 * @endp will hold any trailing characters.
397 * This function will fail the parse on overflow. If there wasn't an overflow
398 * the function will defer the decision what characters count as invalid to the
401 static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
404 unsigned long long result;
407 cp = _parse_integer_fixup_radix(cp, &base);
408 rv = _parse_integer(cp, base, &result);
409 if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
417 *res = (unsigned long)result;
423 * proc_get_long - reads an ASCII formatted integer from a user buffer
425 * @buf: a kernel buffer
426 * @size: size of the kernel buffer
427 * @val: this is where the number will be stored
428 * @neg: set to %TRUE if number is negative
429 * @perm_tr: a vector which contains the allowed trailers
430 * @perm_tr_len: size of the perm_tr vector
431 * @tr: pointer to store the trailer character
433 * In case of success %0 is returned and @buf and @size are updated with
434 * the amount of bytes read. If @tr is non-NULL and a trailing
435 * character exists (size is non-zero after returning from this
436 * function), @tr is updated with the trailing character.
438 static int proc_get_long(char **buf, size_t *size,
439 unsigned long *val, bool *neg,
440 const char *perm_tr, unsigned perm_tr_len, char *tr)
443 char *p, tmp[TMPBUFLEN];
449 if (len > TMPBUFLEN - 1)
452 memcpy(tmp, *buf, len);
456 if (*p == '-' && *size > 1) {
464 if (strtoul_lenient(p, &p, 0, val))
469 /* We don't know if the next char is whitespace thus we may accept
470 * invalid integers (e.g. 1234...a) or two integers instead of one
471 * (e.g. 123...1). So lets not allow such large numbers. */
472 if (len == TMPBUFLEN - 1)
475 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
478 if (tr && (len < *size))
488 * proc_put_long - converts an integer to a decimal ASCII formatted string
490 * @buf: the user buffer
491 * @size: the size of the user buffer
492 * @val: the integer to be converted
493 * @neg: sign of the number, %TRUE for negative
495 * In case of success @buf and @size are updated with the amount of bytes
498 static void proc_put_long(void **buf, size_t *size, unsigned long val, bool neg)
501 char tmp[TMPBUFLEN], *p = tmp;
503 sprintf(p, "%s%lu", neg ? "-" : "", val);
507 memcpy(*buf, tmp, len);
513 static void proc_put_char(void **buf, size_t *size, char c)
516 char **buffer = (char **)buf;
525 static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
527 int write, void *data)
531 if (*lvalp > (unsigned long) INT_MAX + 1)
535 if (*lvalp > (unsigned long) INT_MAX)
543 *lvalp = -(unsigned long)val;
546 *lvalp = (unsigned long)val;
552 static int do_proc_douintvec_conv(unsigned long *lvalp,
554 int write, void *data)
557 if (*lvalp > UINT_MAX)
561 unsigned int val = *valp;
562 *lvalp = (unsigned long)val;
567 static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
569 static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
570 int write, void *buffer,
571 size_t *lenp, loff_t *ppos,
572 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
573 int write, void *data),
576 int *i, vleft, first = 1, err = 0;
580 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
585 i = (int *) tbl_data;
586 vleft = table->maxlen / sizeof(*i);
590 conv = do_proc_dointvec_conv;
593 if (proc_first_pos_non_zero_ignore(ppos, table))
596 if (left > PAGE_SIZE - 1)
597 left = PAGE_SIZE - 1;
601 for (; left && vleft--; i++, first=0) {
606 left -= proc_skip_spaces(&p);
610 err = proc_get_long(&p, &left, &lval, &neg,
612 sizeof(proc_wspace_sep), NULL);
615 if (conv(&neg, &lval, i, 1, data)) {
620 if (conv(&neg, &lval, i, 0, data)) {
625 proc_put_char(&buffer, &left, '\t');
626 proc_put_long(&buffer, &left, lval, neg);
630 if (!write && !first && left && !err)
631 proc_put_char(&buffer, &left, '\n');
632 if (write && !err && left)
633 left -= proc_skip_spaces(&p);
635 return err ? : -EINVAL;
642 static int do_proc_dointvec(struct ctl_table *table, int write,
643 void *buffer, size_t *lenp, loff_t *ppos,
644 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
645 int write, void *data),
648 return __do_proc_dointvec(table->data, table, write,
649 buffer, lenp, ppos, conv, data);
652 static int do_proc_douintvec_w(unsigned int *tbl_data,
653 struct ctl_table *table,
655 size_t *lenp, loff_t *ppos,
656 int (*conv)(unsigned long *lvalp,
658 int write, void *data),
669 if (proc_first_pos_non_zero_ignore(ppos, table))
672 if (left > PAGE_SIZE - 1)
673 left = PAGE_SIZE - 1;
675 left -= proc_skip_spaces(&p);
681 err = proc_get_long(&p, &left, &lval, &neg,
683 sizeof(proc_wspace_sep), NULL);
689 if (conv(&lval, tbl_data, 1, data)) {
695 left -= proc_skip_spaces(&p);
703 /* This is in keeping with old __do_proc_dointvec() */
709 static int do_proc_douintvec_r(unsigned int *tbl_data, void *buffer,
710 size_t *lenp, loff_t *ppos,
711 int (*conv)(unsigned long *lvalp,
713 int write, void *data),
722 if (conv(&lval, tbl_data, 0, data)) {
727 proc_put_long(&buffer, &left, lval, false);
731 proc_put_char(&buffer, &left, '\n');
740 static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
741 int write, void *buffer,
742 size_t *lenp, loff_t *ppos,
743 int (*conv)(unsigned long *lvalp,
745 int write, void *data),
748 unsigned int *i, vleft;
750 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
755 i = (unsigned int *) tbl_data;
756 vleft = table->maxlen / sizeof(*i);
759 * Arrays are not supported, keep this simple. *Do not* add
768 conv = do_proc_douintvec_conv;
771 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
773 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
776 static int do_proc_douintvec(struct ctl_table *table, int write,
777 void *buffer, size_t *lenp, loff_t *ppos,
778 int (*conv)(unsigned long *lvalp,
780 int write, void *data),
783 return __do_proc_douintvec(table->data, table, write,
784 buffer, lenp, ppos, conv, data);
788 * proc_dointvec - read a vector of integers
789 * @table: the sysctl table
790 * @write: %TRUE if this is a write to the sysctl file
791 * @buffer: the user buffer
792 * @lenp: the size of the user buffer
793 * @ppos: file position
795 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
796 * values from/to the user buffer, treated as an ASCII string.
798 * Returns 0 on success.
800 int proc_dointvec(struct ctl_table *table, int write, void *buffer,
801 size_t *lenp, loff_t *ppos)
803 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
806 #ifdef CONFIG_COMPACTION
807 static int proc_dointvec_minmax_warn_RT_change(struct ctl_table *table,
808 int write, void *buffer, size_t *lenp, loff_t *ppos)
812 if (!IS_ENABLED(CONFIG_PREEMPT_RT) || !write)
813 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
815 old = *(int *)table->data;
816 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
819 if (old != *(int *)table->data)
820 pr_warn_once("sysctl attribute %s changed by %s[%d]\n",
821 table->procname, current->comm,
822 task_pid_nr(current));
828 * proc_douintvec - read a vector of unsigned integers
829 * @table: the sysctl table
830 * @write: %TRUE if this is a write to the sysctl file
831 * @buffer: the user buffer
832 * @lenp: the size of the user buffer
833 * @ppos: file position
835 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
836 * values from/to the user buffer, treated as an ASCII string.
838 * Returns 0 on success.
840 int proc_douintvec(struct ctl_table *table, int write, void *buffer,
841 size_t *lenp, loff_t *ppos)
843 return do_proc_douintvec(table, write, buffer, lenp, ppos,
844 do_proc_douintvec_conv, NULL);
848 * Taint values can only be increased
849 * This means we can safely use a temporary.
851 static int proc_taint(struct ctl_table *table, int write,
852 void *buffer, size_t *lenp, loff_t *ppos)
855 unsigned long tmptaint = get_taint();
858 if (write && !capable(CAP_SYS_ADMIN))
863 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
871 * If we are relying on panic_on_taint not producing
872 * false positives due to userspace input, bail out
873 * before setting the requested taint flags.
875 if (panic_on_taint_nousertaint && (tmptaint & panic_on_taint))
879 * Poor man's atomic or. Not worth adding a primitive
880 * to everyone's atomic.h for this
882 for (i = 0; i < TAINT_FLAGS_COUNT; i++)
883 if ((1UL << i) & tmptaint)
884 add_taint(i, LOCKDEP_STILL_OK);
891 static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
892 void *buffer, size_t *lenp, loff_t *ppos)
894 if (write && !capable(CAP_SYS_ADMIN))
897 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
902 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
903 * @min: pointer to minimum allowable value
904 * @max: pointer to maximum allowable value
906 * The do_proc_dointvec_minmax_conv_param structure provides the
907 * minimum and maximum values for doing range checking for those sysctl
908 * parameters that use the proc_dointvec_minmax() handler.
910 struct do_proc_dointvec_minmax_conv_param {
915 static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
917 int write, void *data)
920 struct do_proc_dointvec_minmax_conv_param *param = data;
922 * If writing, first do so via a temporary local int so we can
923 * bounds-check it before touching *valp.
925 int *ip = write ? &tmp : valp;
927 ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
932 if ((param->min && *param->min > tmp) ||
933 (param->max && *param->max < tmp))
942 * proc_dointvec_minmax - read a vector of integers with min/max values
943 * @table: the sysctl table
944 * @write: %TRUE if this is a write to the sysctl file
945 * @buffer: the user buffer
946 * @lenp: the size of the user buffer
947 * @ppos: file position
949 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
950 * values from/to the user buffer, treated as an ASCII string.
952 * This routine will ensure the values are within the range specified by
953 * table->extra1 (min) and table->extra2 (max).
955 * Returns 0 on success or -EINVAL on write when the range check fails.
957 int proc_dointvec_minmax(struct ctl_table *table, int write,
958 void *buffer, size_t *lenp, loff_t *ppos)
960 struct do_proc_dointvec_minmax_conv_param param = {
961 .min = (int *) table->extra1,
962 .max = (int *) table->extra2,
964 return do_proc_dointvec(table, write, buffer, lenp, ppos,
965 do_proc_dointvec_minmax_conv, ¶m);
969 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
970 * @min: pointer to minimum allowable value
971 * @max: pointer to maximum allowable value
973 * The do_proc_douintvec_minmax_conv_param structure provides the
974 * minimum and maximum values for doing range checking for those sysctl
975 * parameters that use the proc_douintvec_minmax() handler.
977 struct do_proc_douintvec_minmax_conv_param {
982 static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
984 int write, void *data)
988 struct do_proc_douintvec_minmax_conv_param *param = data;
989 /* write via temporary local uint for bounds-checking */
990 unsigned int *up = write ? &tmp : valp;
992 ret = do_proc_douintvec_conv(lvalp, up, write, data);
997 if ((param->min && *param->min > tmp) ||
998 (param->max && *param->max < tmp))
1008 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
1009 * @table: the sysctl table
1010 * @write: %TRUE if this is a write to the sysctl file
1011 * @buffer: the user buffer
1012 * @lenp: the size of the user buffer
1013 * @ppos: file position
1015 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
1016 * values from/to the user buffer, treated as an ASCII string. Negative
1017 * strings are not allowed.
1019 * This routine will ensure the values are within the range specified by
1020 * table->extra1 (min) and table->extra2 (max). There is a final sanity
1021 * check for UINT_MAX to avoid having to support wrap around uses from
1024 * Returns 0 on success or -ERANGE on write when the range check fails.
1026 int proc_douintvec_minmax(struct ctl_table *table, int write,
1027 void *buffer, size_t *lenp, loff_t *ppos)
1029 struct do_proc_douintvec_minmax_conv_param param = {
1030 .min = (unsigned int *) table->extra1,
1031 .max = (unsigned int *) table->extra2,
1033 return do_proc_douintvec(table, write, buffer, lenp, ppos,
1034 do_proc_douintvec_minmax_conv, ¶m);
1037 static int do_proc_dopipe_max_size_conv(unsigned long *lvalp,
1039 int write, void *data)
1044 val = round_pipe_size(*lvalp);
1050 unsigned int val = *valp;
1051 *lvalp = (unsigned long) val;
1057 static int proc_dopipe_max_size(struct ctl_table *table, int write,
1058 void *buffer, size_t *lenp, loff_t *ppos)
1060 return do_proc_douintvec(table, write, buffer, lenp, ppos,
1061 do_proc_dopipe_max_size_conv, NULL);
1064 static void validate_coredump_safety(void)
1066 #ifdef CONFIG_COREDUMP
1067 if (suid_dumpable == SUID_DUMP_ROOT &&
1068 core_pattern[0] != '/' && core_pattern[0] != '|') {
1070 "Unsafe core_pattern used with fs.suid_dumpable=2.\n"
1071 "Pipe handler or fully qualified core dump path required.\n"
1072 "Set kernel.core_pattern before fs.suid_dumpable.\n"
1078 static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
1079 void *buffer, size_t *lenp, loff_t *ppos)
1081 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
1083 validate_coredump_safety();
1087 #ifdef CONFIG_COREDUMP
1088 static int proc_dostring_coredump(struct ctl_table *table, int write,
1089 void *buffer, size_t *lenp, loff_t *ppos)
1091 int error = proc_dostring(table, write, buffer, lenp, ppos);
1093 validate_coredump_safety();
1098 #ifdef CONFIG_MAGIC_SYSRQ
1099 static int sysrq_sysctl_handler(struct ctl_table *table, int write,
1100 void *buffer, size_t *lenp, loff_t *ppos)
1106 ret = __do_proc_dointvec(&tmp, table, write, buffer,
1107 lenp, ppos, NULL, NULL);
1112 sysrq_toggle_support(tmp);
1118 static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table,
1119 int write, void *buffer, size_t *lenp, loff_t *ppos,
1120 unsigned long convmul, unsigned long convdiv)
1122 unsigned long *i, *min, *max;
1123 int vleft, first = 1, err = 0;
1127 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
1132 i = (unsigned long *) data;
1133 min = (unsigned long *) table->extra1;
1134 max = (unsigned long *) table->extra2;
1135 vleft = table->maxlen / sizeof(unsigned long);
1139 if (proc_first_pos_non_zero_ignore(ppos, table))
1142 if (left > PAGE_SIZE - 1)
1143 left = PAGE_SIZE - 1;
1147 for (; left && vleft--; i++, first = 0) {
1153 left -= proc_skip_spaces(&p);
1157 err = proc_get_long(&p, &left, &val, &neg,
1159 sizeof(proc_wspace_sep), NULL);
1164 val = convmul * val / convdiv;
1165 if ((min && val < *min) || (max && val > *max)) {
1171 val = convdiv * (*i) / convmul;
1173 proc_put_char(&buffer, &left, '\t');
1174 proc_put_long(&buffer, &left, val, false);
1178 if (!write && !first && left && !err)
1179 proc_put_char(&buffer, &left, '\n');
1181 left -= proc_skip_spaces(&p);
1183 return err ? : -EINVAL;
1190 static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
1191 void *buffer, size_t *lenp, loff_t *ppos, unsigned long convmul,
1192 unsigned long convdiv)
1194 return __do_proc_doulongvec_minmax(table->data, table, write,
1195 buffer, lenp, ppos, convmul, convdiv);
1199 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1200 * @table: the sysctl table
1201 * @write: %TRUE if this is a write to the sysctl file
1202 * @buffer: the user buffer
1203 * @lenp: the size of the user buffer
1204 * @ppos: file position
1206 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1207 * values from/to the user buffer, treated as an ASCII string.
1209 * This routine will ensure the values are within the range specified by
1210 * table->extra1 (min) and table->extra2 (max).
1212 * Returns 0 on success.
1214 int proc_doulongvec_minmax(struct ctl_table *table, int write,
1215 void *buffer, size_t *lenp, loff_t *ppos)
1217 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
1221 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1222 * @table: the sysctl table
1223 * @write: %TRUE if this is a write to the sysctl file
1224 * @buffer: the user buffer
1225 * @lenp: the size of the user buffer
1226 * @ppos: file position
1228 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1229 * values from/to the user buffer, treated as an ASCII string. The values
1230 * are treated as milliseconds, and converted to jiffies when they are stored.
1232 * This routine will ensure the values are within the range specified by
1233 * table->extra1 (min) and table->extra2 (max).
1235 * Returns 0 on success.
1237 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1238 void *buffer, size_t *lenp, loff_t *ppos)
1240 return do_proc_doulongvec_minmax(table, write, buffer,
1241 lenp, ppos, HZ, 1000l);
1245 static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
1247 int write, void *data)
1250 if (*lvalp > INT_MAX / HZ)
1252 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
1258 lval = -(unsigned long)val;
1261 lval = (unsigned long)val;
1268 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
1270 int write, void *data)
1273 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
1275 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
1281 lval = -(unsigned long)val;
1284 lval = (unsigned long)val;
1286 *lvalp = jiffies_to_clock_t(lval);
1291 static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
1293 int write, void *data)
1296 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
1306 lval = -(unsigned long)val;
1309 lval = (unsigned long)val;
1311 *lvalp = jiffies_to_msecs(lval);
1317 * proc_dointvec_jiffies - read a vector of integers as seconds
1318 * @table: the sysctl table
1319 * @write: %TRUE if this is a write to the sysctl file
1320 * @buffer: the user buffer
1321 * @lenp: the size of the user buffer
1322 * @ppos: file position
1324 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1325 * values from/to the user buffer, treated as an ASCII string.
1326 * The values read are assumed to be in seconds, and are converted into
1329 * Returns 0 on success.
1331 int proc_dointvec_jiffies(struct ctl_table *table, int write,
1332 void *buffer, size_t *lenp, loff_t *ppos)
1334 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1335 do_proc_dointvec_jiffies_conv,NULL);
1339 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
1340 * @table: the sysctl table
1341 * @write: %TRUE if this is a write to the sysctl file
1342 * @buffer: the user buffer
1343 * @lenp: the size of the user buffer
1344 * @ppos: pointer to the file position
1346 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1347 * values from/to the user buffer, treated as an ASCII string.
1348 * The values read are assumed to be in 1/USER_HZ seconds, and
1349 * are converted into jiffies.
1351 * Returns 0 on success.
1353 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1354 void *buffer, size_t *lenp, loff_t *ppos)
1356 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1357 do_proc_dointvec_userhz_jiffies_conv,NULL);
1361 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
1362 * @table: the sysctl table
1363 * @write: %TRUE if this is a write to the sysctl file
1364 * @buffer: the user buffer
1365 * @lenp: the size of the user buffer
1366 * @ppos: file position
1367 * @ppos: the current position in the file
1369 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1370 * values from/to the user buffer, treated as an ASCII string.
1371 * The values read are assumed to be in 1/1000 seconds, and
1372 * are converted into jiffies.
1374 * Returns 0 on success.
1376 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, void *buffer,
1377 size_t *lenp, loff_t *ppos)
1379 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1380 do_proc_dointvec_ms_jiffies_conv, NULL);
1383 static int proc_do_cad_pid(struct ctl_table *table, int write, void *buffer,
1384 size_t *lenp, loff_t *ppos)
1386 struct pid *new_pid;
1390 tmp = pid_vnr(cad_pid);
1392 r = __do_proc_dointvec(&tmp, table, write, buffer,
1393 lenp, ppos, NULL, NULL);
1397 new_pid = find_get_pid(tmp);
1401 put_pid(xchg(&cad_pid, new_pid));
1406 * proc_do_large_bitmap - read/write from/to a large bitmap
1407 * @table: the sysctl table
1408 * @write: %TRUE if this is a write to the sysctl file
1409 * @buffer: the user buffer
1410 * @lenp: the size of the user buffer
1411 * @ppos: file position
1413 * The bitmap is stored at table->data and the bitmap length (in bits)
1416 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
1417 * large bitmaps may be represented in a compact manner. Writing into
1418 * the file will clear the bitmap then update it with the given input.
1420 * Returns 0 on success.
1422 int proc_do_large_bitmap(struct ctl_table *table, int write,
1423 void *buffer, size_t *lenp, loff_t *ppos)
1427 size_t left = *lenp;
1428 unsigned long bitmap_len = table->maxlen;
1429 unsigned long *bitmap = *(unsigned long **) table->data;
1430 unsigned long *tmp_bitmap = NULL;
1431 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
1433 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
1442 if (left > PAGE_SIZE - 1) {
1443 left = PAGE_SIZE - 1;
1444 /* How much of the buffer we'll skip this pass */
1445 skipped = *lenp - left;
1448 tmp_bitmap = bitmap_zalloc(bitmap_len, GFP_KERNEL);
1451 proc_skip_char(&p, &left, '\n');
1452 while (!err && left) {
1453 unsigned long val_a, val_b;
1457 /* In case we stop parsing mid-number, we can reset */
1459 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
1462 * If we consumed the entirety of a truncated buffer or
1463 * only one char is left (may be a "-"), then stop here,
1464 * reset, & come back for more.
1466 if ((left <= 1) && skipped) {
1473 if (val_a >= bitmap_len || neg) {
1485 err = proc_get_long(&p, &left, &val_b,
1486 &neg, tr_b, sizeof(tr_b),
1489 * If we consumed all of a truncated buffer or
1490 * then stop here, reset, & come back for more.
1492 if (!left && skipped) {
1499 if (val_b >= bitmap_len || neg ||
1510 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
1512 proc_skip_char(&p, &left, '\n');
1516 unsigned long bit_a, bit_b = 0;
1519 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
1520 if (bit_a >= bitmap_len)
1522 bit_b = find_next_zero_bit(bitmap, bitmap_len,
1526 proc_put_char(&buffer, &left, ',');
1527 proc_put_long(&buffer, &left, bit_a, false);
1528 if (bit_a != bit_b) {
1529 proc_put_char(&buffer, &left, '-');
1530 proc_put_long(&buffer, &left, bit_b, false);
1535 proc_put_char(&buffer, &left, '\n');
1541 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
1543 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
1549 bitmap_free(tmp_bitmap);
1553 #else /* CONFIG_PROC_SYSCTL */
1555 int proc_dostring(struct ctl_table *table, int write,
1556 void *buffer, size_t *lenp, loff_t *ppos)
1561 int proc_dointvec(struct ctl_table *table, int write,
1562 void *buffer, size_t *lenp, loff_t *ppos)
1567 int proc_douintvec(struct ctl_table *table, int write,
1568 void *buffer, size_t *lenp, loff_t *ppos)
1573 int proc_dointvec_minmax(struct ctl_table *table, int write,
1574 void *buffer, size_t *lenp, loff_t *ppos)
1579 int proc_douintvec_minmax(struct ctl_table *table, int write,
1580 void *buffer, size_t *lenp, loff_t *ppos)
1585 int proc_dointvec_jiffies(struct ctl_table *table, int write,
1586 void *buffer, size_t *lenp, loff_t *ppos)
1591 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1592 void *buffer, size_t *lenp, loff_t *ppos)
1597 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
1598 void *buffer, size_t *lenp, loff_t *ppos)
1603 int proc_doulongvec_minmax(struct ctl_table *table, int write,
1604 void *buffer, size_t *lenp, loff_t *ppos)
1609 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1610 void *buffer, size_t *lenp, loff_t *ppos)
1615 int proc_do_large_bitmap(struct ctl_table *table, int write,
1616 void *buffer, size_t *lenp, loff_t *ppos)
1621 #endif /* CONFIG_PROC_SYSCTL */
1623 #if defined(CONFIG_SYSCTL)
1624 int proc_do_static_key(struct ctl_table *table, int write,
1625 void *buffer, size_t *lenp, loff_t *ppos)
1627 struct static_key *key = (struct static_key *)table->data;
1628 static DEFINE_MUTEX(static_key_mutex);
1630 struct ctl_table tmp = {
1632 .maxlen = sizeof(val),
1633 .mode = table->mode,
1634 .extra1 = SYSCTL_ZERO,
1635 .extra2 = SYSCTL_ONE,
1638 if (write && !capable(CAP_SYS_ADMIN))
1641 mutex_lock(&static_key_mutex);
1642 val = static_key_enabled(key);
1643 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
1644 if (write && !ret) {
1646 static_key_enable(key);
1648 static_key_disable(key);
1650 mutex_unlock(&static_key_mutex);
1654 static struct ctl_table kern_table[] = {
1656 .procname = "sched_child_runs_first",
1657 .data = &sysctl_sched_child_runs_first,
1658 .maxlen = sizeof(unsigned int),
1660 .proc_handler = proc_dointvec,
1662 #ifdef CONFIG_SCHED_DEBUG
1664 .procname = "sched_min_granularity_ns",
1665 .data = &sysctl_sched_min_granularity,
1666 .maxlen = sizeof(unsigned int),
1668 .proc_handler = sched_proc_update_handler,
1669 .extra1 = &min_sched_granularity_ns,
1670 .extra2 = &max_sched_granularity_ns,
1673 .procname = "sched_latency_ns",
1674 .data = &sysctl_sched_latency,
1675 .maxlen = sizeof(unsigned int),
1677 .proc_handler = sched_proc_update_handler,
1678 .extra1 = &min_sched_granularity_ns,
1679 .extra2 = &max_sched_granularity_ns,
1682 .procname = "sched_wakeup_granularity_ns",
1683 .data = &sysctl_sched_wakeup_granularity,
1684 .maxlen = sizeof(unsigned int),
1686 .proc_handler = sched_proc_update_handler,
1687 .extra1 = &min_wakeup_granularity_ns,
1688 .extra2 = &max_wakeup_granularity_ns,
1692 .procname = "sched_tunable_scaling",
1693 .data = &sysctl_sched_tunable_scaling,
1694 .maxlen = sizeof(enum sched_tunable_scaling),
1696 .proc_handler = sched_proc_update_handler,
1697 .extra1 = &min_sched_tunable_scaling,
1698 .extra2 = &max_sched_tunable_scaling,
1701 .procname = "sched_migration_cost_ns",
1702 .data = &sysctl_sched_migration_cost,
1703 .maxlen = sizeof(unsigned int),
1705 .proc_handler = proc_dointvec,
1708 .procname = "sched_nr_migrate",
1709 .data = &sysctl_sched_nr_migrate,
1710 .maxlen = sizeof(unsigned int),
1712 .proc_handler = proc_dointvec,
1714 #ifdef CONFIG_SCHEDSTATS
1716 .procname = "sched_schedstats",
1718 .maxlen = sizeof(unsigned int),
1720 .proc_handler = sysctl_schedstats,
1721 .extra1 = SYSCTL_ZERO,
1722 .extra2 = SYSCTL_ONE,
1724 #endif /* CONFIG_SCHEDSTATS */
1725 #endif /* CONFIG_SMP */
1726 #ifdef CONFIG_NUMA_BALANCING
1728 .procname = "numa_balancing_scan_delay_ms",
1729 .data = &sysctl_numa_balancing_scan_delay,
1730 .maxlen = sizeof(unsigned int),
1732 .proc_handler = proc_dointvec,
1735 .procname = "numa_balancing_scan_period_min_ms",
1736 .data = &sysctl_numa_balancing_scan_period_min,
1737 .maxlen = sizeof(unsigned int),
1739 .proc_handler = proc_dointvec,
1742 .procname = "numa_balancing_scan_period_max_ms",
1743 .data = &sysctl_numa_balancing_scan_period_max,
1744 .maxlen = sizeof(unsigned int),
1746 .proc_handler = proc_dointvec,
1749 .procname = "numa_balancing_scan_size_mb",
1750 .data = &sysctl_numa_balancing_scan_size,
1751 .maxlen = sizeof(unsigned int),
1753 .proc_handler = proc_dointvec_minmax,
1754 .extra1 = SYSCTL_ONE,
1757 .procname = "numa_balancing",
1758 .data = NULL, /* filled in by handler */
1759 .maxlen = sizeof(unsigned int),
1761 .proc_handler = sysctl_numa_balancing,
1762 .extra1 = SYSCTL_ZERO,
1763 .extra2 = SYSCTL_ONE,
1765 #endif /* CONFIG_NUMA_BALANCING */
1766 #endif /* CONFIG_SCHED_DEBUG */
1768 .procname = "sched_rt_period_us",
1769 .data = &sysctl_sched_rt_period,
1770 .maxlen = sizeof(unsigned int),
1772 .proc_handler = sched_rt_handler,
1775 .procname = "sched_rt_runtime_us",
1776 .data = &sysctl_sched_rt_runtime,
1777 .maxlen = sizeof(int),
1779 .proc_handler = sched_rt_handler,
1782 .procname = "sched_deadline_period_max_us",
1783 .data = &sysctl_sched_dl_period_max,
1784 .maxlen = sizeof(unsigned int),
1786 .proc_handler = proc_dointvec,
1789 .procname = "sched_deadline_period_min_us",
1790 .data = &sysctl_sched_dl_period_min,
1791 .maxlen = sizeof(unsigned int),
1793 .proc_handler = proc_dointvec,
1796 .procname = "sched_rr_timeslice_ms",
1797 .data = &sysctl_sched_rr_timeslice,
1798 .maxlen = sizeof(int),
1800 .proc_handler = sched_rr_handler,
1802 #ifdef CONFIG_UCLAMP_TASK
1804 .procname = "sched_util_clamp_min",
1805 .data = &sysctl_sched_uclamp_util_min,
1806 .maxlen = sizeof(unsigned int),
1808 .proc_handler = sysctl_sched_uclamp_handler,
1811 .procname = "sched_util_clamp_max",
1812 .data = &sysctl_sched_uclamp_util_max,
1813 .maxlen = sizeof(unsigned int),
1815 .proc_handler = sysctl_sched_uclamp_handler,
1818 .procname = "sched_util_clamp_min_rt_default",
1819 .data = &sysctl_sched_uclamp_util_min_rt_default,
1820 .maxlen = sizeof(unsigned int),
1822 .proc_handler = sysctl_sched_uclamp_handler,
1825 #ifdef CONFIG_SCHED_AUTOGROUP
1827 .procname = "sched_autogroup_enabled",
1828 .data = &sysctl_sched_autogroup_enabled,
1829 .maxlen = sizeof(unsigned int),
1831 .proc_handler = proc_dointvec_minmax,
1832 .extra1 = SYSCTL_ZERO,
1833 .extra2 = SYSCTL_ONE,
1836 #ifdef CONFIG_CFS_BANDWIDTH
1838 .procname = "sched_cfs_bandwidth_slice_us",
1839 .data = &sysctl_sched_cfs_bandwidth_slice,
1840 .maxlen = sizeof(unsigned int),
1842 .proc_handler = proc_dointvec_minmax,
1843 .extra1 = SYSCTL_ONE,
1846 #if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
1848 .procname = "sched_energy_aware",
1849 .data = &sysctl_sched_energy_aware,
1850 .maxlen = sizeof(unsigned int),
1852 .proc_handler = sched_energy_aware_handler,
1853 .extra1 = SYSCTL_ZERO,
1854 .extra2 = SYSCTL_ONE,
1857 #ifdef CONFIG_PROVE_LOCKING
1859 .procname = "prove_locking",
1860 .data = &prove_locking,
1861 .maxlen = sizeof(int),
1863 .proc_handler = proc_dointvec,
1866 #ifdef CONFIG_LOCK_STAT
1868 .procname = "lock_stat",
1870 .maxlen = sizeof(int),
1872 .proc_handler = proc_dointvec,
1876 .procname = "panic",
1877 .data = &panic_timeout,
1878 .maxlen = sizeof(int),
1880 .proc_handler = proc_dointvec,
1882 #ifdef CONFIG_COREDUMP
1884 .procname = "core_uses_pid",
1885 .data = &core_uses_pid,
1886 .maxlen = sizeof(int),
1888 .proc_handler = proc_dointvec,
1891 .procname = "core_pattern",
1892 .data = core_pattern,
1893 .maxlen = CORENAME_MAX_SIZE,
1895 .proc_handler = proc_dostring_coredump,
1898 .procname = "core_pipe_limit",
1899 .data = &core_pipe_limit,
1900 .maxlen = sizeof(unsigned int),
1902 .proc_handler = proc_dointvec,
1905 #ifdef CONFIG_PROC_SYSCTL
1907 .procname = "tainted",
1908 .maxlen = sizeof(long),
1910 .proc_handler = proc_taint,
1913 .procname = "sysctl_writes_strict",
1914 .data = &sysctl_writes_strict,
1915 .maxlen = sizeof(int),
1917 .proc_handler = proc_dointvec_minmax,
1919 .extra2 = SYSCTL_ONE,
1922 #ifdef CONFIG_LATENCYTOP
1924 .procname = "latencytop",
1925 .data = &latencytop_enabled,
1926 .maxlen = sizeof(int),
1928 .proc_handler = sysctl_latencytop,
1931 #ifdef CONFIG_BLK_DEV_INITRD
1933 .procname = "real-root-dev",
1934 .data = &real_root_dev,
1935 .maxlen = sizeof(int),
1937 .proc_handler = proc_dointvec,
1941 .procname = "print-fatal-signals",
1942 .data = &print_fatal_signals,
1943 .maxlen = sizeof(int),
1945 .proc_handler = proc_dointvec,
1949 .procname = "reboot-cmd",
1950 .data = reboot_command,
1953 .proc_handler = proc_dostring,
1956 .procname = "stop-a",
1957 .data = &stop_a_enabled,
1958 .maxlen = sizeof (int),
1960 .proc_handler = proc_dointvec,
1963 .procname = "scons-poweroff",
1964 .data = &scons_pwroff,
1965 .maxlen = sizeof (int),
1967 .proc_handler = proc_dointvec,
1970 #ifdef CONFIG_SPARC64
1972 .procname = "tsb-ratio",
1973 .data = &sysctl_tsb_ratio,
1974 .maxlen = sizeof (int),
1976 .proc_handler = proc_dointvec,
1979 #ifdef CONFIG_PARISC
1981 .procname = "soft-power",
1982 .data = &pwrsw_enabled,
1983 .maxlen = sizeof (int),
1985 .proc_handler = proc_dointvec,
1988 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
1990 .procname = "unaligned-trap",
1991 .data = &unaligned_enabled,
1992 .maxlen = sizeof (int),
1994 .proc_handler = proc_dointvec,
1998 .procname = "ctrl-alt-del",
2000 .maxlen = sizeof(int),
2002 .proc_handler = proc_dointvec,
2004 #ifdef CONFIG_FUNCTION_TRACER
2006 .procname = "ftrace_enabled",
2007 .data = &ftrace_enabled,
2008 .maxlen = sizeof(int),
2010 .proc_handler = ftrace_enable_sysctl,
2013 #ifdef CONFIG_STACK_TRACER
2015 .procname = "stack_tracer_enabled",
2016 .data = &stack_tracer_enabled,
2017 .maxlen = sizeof(int),
2019 .proc_handler = stack_trace_sysctl,
2022 #ifdef CONFIG_TRACING
2024 .procname = "ftrace_dump_on_oops",
2025 .data = &ftrace_dump_on_oops,
2026 .maxlen = sizeof(int),
2028 .proc_handler = proc_dointvec,
2031 .procname = "traceoff_on_warning",
2032 .data = &__disable_trace_on_warning,
2033 .maxlen = sizeof(__disable_trace_on_warning),
2035 .proc_handler = proc_dointvec,
2038 .procname = "tracepoint_printk",
2039 .data = &tracepoint_printk,
2040 .maxlen = sizeof(tracepoint_printk),
2042 .proc_handler = tracepoint_printk_sysctl,
2045 #ifdef CONFIG_KEXEC_CORE
2047 .procname = "kexec_load_disabled",
2048 .data = &kexec_load_disabled,
2049 .maxlen = sizeof(int),
2051 /* only handle a transition from default "0" to "1" */
2052 .proc_handler = proc_dointvec_minmax,
2053 .extra1 = SYSCTL_ONE,
2054 .extra2 = SYSCTL_ONE,
2057 #ifdef CONFIG_MODULES
2059 .procname = "modprobe",
2060 .data = &modprobe_path,
2061 .maxlen = KMOD_PATH_LEN,
2063 .proc_handler = proc_dostring,
2066 .procname = "modules_disabled",
2067 .data = &modules_disabled,
2068 .maxlen = sizeof(int),
2070 /* only handle a transition from default "0" to "1" */
2071 .proc_handler = proc_dointvec_minmax,
2072 .extra1 = SYSCTL_ONE,
2073 .extra2 = SYSCTL_ONE,
2076 #ifdef CONFIG_UEVENT_HELPER
2078 .procname = "hotplug",
2079 .data = &uevent_helper,
2080 .maxlen = UEVENT_HELPER_PATH_LEN,
2082 .proc_handler = proc_dostring,
2085 #ifdef CONFIG_CHR_DEV_SG
2087 .procname = "sg-big-buff",
2088 .data = &sg_big_buff,
2089 .maxlen = sizeof (int),
2091 .proc_handler = proc_dointvec,
2094 #ifdef CONFIG_BSD_PROCESS_ACCT
2098 .maxlen = 3*sizeof(int),
2100 .proc_handler = proc_dointvec,
2103 #ifdef CONFIG_MAGIC_SYSRQ
2105 .procname = "sysrq",
2107 .maxlen = sizeof (int),
2109 .proc_handler = sysrq_sysctl_handler,
2112 #ifdef CONFIG_PROC_SYSCTL
2114 .procname = "cad_pid",
2116 .maxlen = sizeof (int),
2118 .proc_handler = proc_do_cad_pid,
2122 .procname = "threads-max",
2124 .maxlen = sizeof(int),
2126 .proc_handler = sysctl_max_threads,
2129 .procname = "random",
2131 .child = random_table,
2134 .procname = "usermodehelper",
2136 .child = usermodehelper_table,
2138 #ifdef CONFIG_FW_LOADER_USER_HELPER
2140 .procname = "firmware_config",
2142 .child = firmware_config_table,
2146 .procname = "overflowuid",
2147 .data = &overflowuid,
2148 .maxlen = sizeof(int),
2150 .proc_handler = proc_dointvec_minmax,
2151 .extra1 = &minolduid,
2152 .extra2 = &maxolduid,
2155 .procname = "overflowgid",
2156 .data = &overflowgid,
2157 .maxlen = sizeof(int),
2159 .proc_handler = proc_dointvec_minmax,
2160 .extra1 = &minolduid,
2161 .extra2 = &maxolduid,
2165 .procname = "userprocess_debug",
2166 .data = &show_unhandled_signals,
2167 .maxlen = sizeof(int),
2169 .proc_handler = proc_dointvec,
2174 .procname = "oops_all_cpu_backtrace",
2175 .data = &sysctl_oops_all_cpu_backtrace,
2176 .maxlen = sizeof(int),
2178 .proc_handler = proc_dointvec_minmax,
2179 .extra1 = SYSCTL_ZERO,
2180 .extra2 = SYSCTL_ONE,
2182 #endif /* CONFIG_SMP */
2184 .procname = "pid_max",
2186 .maxlen = sizeof (int),
2188 .proc_handler = proc_dointvec_minmax,
2189 .extra1 = &pid_max_min,
2190 .extra2 = &pid_max_max,
2193 .procname = "panic_on_oops",
2194 .data = &panic_on_oops,
2195 .maxlen = sizeof(int),
2197 .proc_handler = proc_dointvec,
2200 .procname = "panic_print",
2201 .data = &panic_print,
2202 .maxlen = sizeof(unsigned long),
2204 .proc_handler = proc_doulongvec_minmax,
2206 #if defined CONFIG_PRINTK
2208 .procname = "printk",
2209 .data = &console_loglevel,
2210 .maxlen = 4*sizeof(int),
2212 .proc_handler = proc_dointvec,
2215 .procname = "printk_ratelimit",
2216 .data = &printk_ratelimit_state.interval,
2217 .maxlen = sizeof(int),
2219 .proc_handler = proc_dointvec_jiffies,
2222 .procname = "printk_ratelimit_burst",
2223 .data = &printk_ratelimit_state.burst,
2224 .maxlen = sizeof(int),
2226 .proc_handler = proc_dointvec,
2229 .procname = "printk_delay",
2230 .data = &printk_delay_msec,
2231 .maxlen = sizeof(int),
2233 .proc_handler = proc_dointvec_minmax,
2234 .extra1 = SYSCTL_ZERO,
2235 .extra2 = &ten_thousand,
2238 .procname = "printk_devkmsg",
2239 .data = devkmsg_log_str,
2240 .maxlen = DEVKMSG_STR_MAX_SIZE,
2242 .proc_handler = devkmsg_sysctl_set_loglvl,
2245 .procname = "dmesg_restrict",
2246 .data = &dmesg_restrict,
2247 .maxlen = sizeof(int),
2249 .proc_handler = proc_dointvec_minmax_sysadmin,
2250 .extra1 = SYSCTL_ZERO,
2251 .extra2 = SYSCTL_ONE,
2254 .procname = "kptr_restrict",
2255 .data = &kptr_restrict,
2256 .maxlen = sizeof(int),
2258 .proc_handler = proc_dointvec_minmax_sysadmin,
2259 .extra1 = SYSCTL_ZERO,
2264 .procname = "ngroups_max",
2265 .data = &ngroups_max,
2266 .maxlen = sizeof (int),
2268 .proc_handler = proc_dointvec,
2271 .procname = "cap_last_cap",
2272 .data = (void *)&cap_last_cap,
2273 .maxlen = sizeof(int),
2275 .proc_handler = proc_dointvec,
2277 #if defined(CONFIG_LOCKUP_DETECTOR)
2279 .procname = "watchdog",
2280 .data = &watchdog_user_enabled,
2281 .maxlen = sizeof(int),
2283 .proc_handler = proc_watchdog,
2284 .extra1 = SYSCTL_ZERO,
2285 .extra2 = SYSCTL_ONE,
2288 .procname = "watchdog_thresh",
2289 .data = &watchdog_thresh,
2290 .maxlen = sizeof(int),
2292 .proc_handler = proc_watchdog_thresh,
2293 .extra1 = SYSCTL_ZERO,
2297 .procname = "nmi_watchdog",
2298 .data = &nmi_watchdog_user_enabled,
2299 .maxlen = sizeof(int),
2300 .mode = NMI_WATCHDOG_SYSCTL_PERM,
2301 .proc_handler = proc_nmi_watchdog,
2302 .extra1 = SYSCTL_ZERO,
2303 .extra2 = SYSCTL_ONE,
2306 .procname = "watchdog_cpumask",
2307 .data = &watchdog_cpumask_bits,
2310 .proc_handler = proc_watchdog_cpumask,
2312 #ifdef CONFIG_SOFTLOCKUP_DETECTOR
2314 .procname = "soft_watchdog",
2315 .data = &soft_watchdog_user_enabled,
2316 .maxlen = sizeof(int),
2318 .proc_handler = proc_soft_watchdog,
2319 .extra1 = SYSCTL_ZERO,
2320 .extra2 = SYSCTL_ONE,
2323 .procname = "softlockup_panic",
2324 .data = &softlockup_panic,
2325 .maxlen = sizeof(int),
2327 .proc_handler = proc_dointvec_minmax,
2328 .extra1 = SYSCTL_ZERO,
2329 .extra2 = SYSCTL_ONE,
2333 .procname = "softlockup_all_cpu_backtrace",
2334 .data = &sysctl_softlockup_all_cpu_backtrace,
2335 .maxlen = sizeof(int),
2337 .proc_handler = proc_dointvec_minmax,
2338 .extra1 = SYSCTL_ZERO,
2339 .extra2 = SYSCTL_ONE,
2341 #endif /* CONFIG_SMP */
2343 #ifdef CONFIG_HARDLOCKUP_DETECTOR
2345 .procname = "hardlockup_panic",
2346 .data = &hardlockup_panic,
2347 .maxlen = sizeof(int),
2349 .proc_handler = proc_dointvec_minmax,
2350 .extra1 = SYSCTL_ZERO,
2351 .extra2 = SYSCTL_ONE,
2355 .procname = "hardlockup_all_cpu_backtrace",
2356 .data = &sysctl_hardlockup_all_cpu_backtrace,
2357 .maxlen = sizeof(int),
2359 .proc_handler = proc_dointvec_minmax,
2360 .extra1 = SYSCTL_ZERO,
2361 .extra2 = SYSCTL_ONE,
2363 #endif /* CONFIG_SMP */
2367 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
2369 .procname = "unknown_nmi_panic",
2370 .data = &unknown_nmi_panic,
2371 .maxlen = sizeof (int),
2373 .proc_handler = proc_dointvec,
2377 #if (defined(CONFIG_X86_32) || defined(CONFIG_PARISC)) && \
2378 defined(CONFIG_DEBUG_STACKOVERFLOW)
2380 .procname = "panic_on_stackoverflow",
2381 .data = &sysctl_panic_on_stackoverflow,
2382 .maxlen = sizeof(int),
2384 .proc_handler = proc_dointvec,
2387 #if defined(CONFIG_X86)
2389 .procname = "panic_on_unrecovered_nmi",
2390 .data = &panic_on_unrecovered_nmi,
2391 .maxlen = sizeof(int),
2393 .proc_handler = proc_dointvec,
2396 .procname = "panic_on_io_nmi",
2397 .data = &panic_on_io_nmi,
2398 .maxlen = sizeof(int),
2400 .proc_handler = proc_dointvec,
2403 .procname = "bootloader_type",
2404 .data = &bootloader_type,
2405 .maxlen = sizeof (int),
2407 .proc_handler = proc_dointvec,
2410 .procname = "bootloader_version",
2411 .data = &bootloader_version,
2412 .maxlen = sizeof (int),
2414 .proc_handler = proc_dointvec,
2417 .procname = "io_delay_type",
2418 .data = &io_delay_type,
2419 .maxlen = sizeof(int),
2421 .proc_handler = proc_dointvec,
2424 #if defined(CONFIG_MMU)
2426 .procname = "randomize_va_space",
2427 .data = &randomize_va_space,
2428 .maxlen = sizeof(int),
2430 .proc_handler = proc_dointvec,
2433 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
2435 .procname = "spin_retry",
2436 .data = &spin_retry,
2437 .maxlen = sizeof (int),
2439 .proc_handler = proc_dointvec,
2442 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
2444 .procname = "acpi_video_flags",
2445 .data = &acpi_realmode_flags,
2446 .maxlen = sizeof (unsigned long),
2448 .proc_handler = proc_doulongvec_minmax,
2451 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
2453 .procname = "ignore-unaligned-usertrap",
2454 .data = &no_unaligned_warning,
2455 .maxlen = sizeof (int),
2457 .proc_handler = proc_dointvec,
2462 .procname = "unaligned-dump-stack",
2463 .data = &unaligned_dump_stack,
2464 .maxlen = sizeof (int),
2466 .proc_handler = proc_dointvec,
2469 #ifdef CONFIG_DETECT_HUNG_TASK
2472 .procname = "hung_task_all_cpu_backtrace",
2473 .data = &sysctl_hung_task_all_cpu_backtrace,
2474 .maxlen = sizeof(int),
2476 .proc_handler = proc_dointvec_minmax,
2477 .extra1 = SYSCTL_ZERO,
2478 .extra2 = SYSCTL_ONE,
2480 #endif /* CONFIG_SMP */
2482 .procname = "hung_task_panic",
2483 .data = &sysctl_hung_task_panic,
2484 .maxlen = sizeof(int),
2486 .proc_handler = proc_dointvec_minmax,
2487 .extra1 = SYSCTL_ZERO,
2488 .extra2 = SYSCTL_ONE,
2491 .procname = "hung_task_check_count",
2492 .data = &sysctl_hung_task_check_count,
2493 .maxlen = sizeof(int),
2495 .proc_handler = proc_dointvec_minmax,
2496 .extra1 = SYSCTL_ZERO,
2499 .procname = "hung_task_timeout_secs",
2500 .data = &sysctl_hung_task_timeout_secs,
2501 .maxlen = sizeof(unsigned long),
2503 .proc_handler = proc_dohung_task_timeout_secs,
2504 .extra2 = &hung_task_timeout_max,
2507 .procname = "hung_task_check_interval_secs",
2508 .data = &sysctl_hung_task_check_interval_secs,
2509 .maxlen = sizeof(unsigned long),
2511 .proc_handler = proc_dohung_task_timeout_secs,
2512 .extra2 = &hung_task_timeout_max,
2515 .procname = "hung_task_warnings",
2516 .data = &sysctl_hung_task_warnings,
2517 .maxlen = sizeof(int),
2519 .proc_handler = proc_dointvec_minmax,
2523 #ifdef CONFIG_RT_MUTEXES
2525 .procname = "max_lock_depth",
2526 .data = &max_lock_depth,
2527 .maxlen = sizeof(int),
2529 .proc_handler = proc_dointvec,
2533 .procname = "poweroff_cmd",
2534 .data = &poweroff_cmd,
2535 .maxlen = POWEROFF_CMD_PATH_LEN,
2537 .proc_handler = proc_dostring,
2543 .child = key_sysctls,
2546 #ifdef CONFIG_PERF_EVENTS
2548 * User-space scripts rely on the existence of this file
2549 * as a feature check for perf_events being enabled.
2551 * So it's an ABI, do not remove!
2554 .procname = "perf_event_paranoid",
2555 .data = &sysctl_perf_event_paranoid,
2556 .maxlen = sizeof(sysctl_perf_event_paranoid),
2558 .proc_handler = proc_dointvec,
2561 .procname = "perf_event_mlock_kb",
2562 .data = &sysctl_perf_event_mlock,
2563 .maxlen = sizeof(sysctl_perf_event_mlock),
2565 .proc_handler = proc_dointvec,
2568 .procname = "perf_event_max_sample_rate",
2569 .data = &sysctl_perf_event_sample_rate,
2570 .maxlen = sizeof(sysctl_perf_event_sample_rate),
2572 .proc_handler = perf_proc_update_handler,
2573 .extra1 = SYSCTL_ONE,
2576 .procname = "perf_cpu_time_max_percent",
2577 .data = &sysctl_perf_cpu_time_max_percent,
2578 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
2580 .proc_handler = perf_cpu_time_max_percent_handler,
2581 .extra1 = SYSCTL_ZERO,
2582 .extra2 = &one_hundred,
2585 .procname = "perf_event_max_stack",
2586 .data = &sysctl_perf_event_max_stack,
2587 .maxlen = sizeof(sysctl_perf_event_max_stack),
2589 .proc_handler = perf_event_max_stack_handler,
2590 .extra1 = SYSCTL_ZERO,
2591 .extra2 = &six_hundred_forty_kb,
2594 .procname = "perf_event_max_contexts_per_stack",
2595 .data = &sysctl_perf_event_max_contexts_per_stack,
2596 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
2598 .proc_handler = perf_event_max_stack_handler,
2599 .extra1 = SYSCTL_ZERO,
2600 .extra2 = &one_thousand,
2604 .procname = "panic_on_warn",
2605 .data = &panic_on_warn,
2606 .maxlen = sizeof(int),
2608 .proc_handler = proc_dointvec_minmax,
2609 .extra1 = SYSCTL_ZERO,
2610 .extra2 = SYSCTL_ONE,
2612 #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
2614 .procname = "timer_migration",
2615 .data = &sysctl_timer_migration,
2616 .maxlen = sizeof(unsigned int),
2618 .proc_handler = timer_migration_handler,
2619 .extra1 = SYSCTL_ZERO,
2620 .extra2 = SYSCTL_ONE,
2623 #ifdef CONFIG_BPF_SYSCALL
2625 .procname = "unprivileged_bpf_disabled",
2626 .data = &sysctl_unprivileged_bpf_disabled,
2627 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
2629 /* only handle a transition from default "0" to "1" */
2630 .proc_handler = proc_dointvec_minmax,
2631 .extra1 = SYSCTL_ONE,
2632 .extra2 = SYSCTL_ONE,
2635 .procname = "bpf_stats_enabled",
2636 .data = &bpf_stats_enabled_key.key,
2637 .maxlen = sizeof(bpf_stats_enabled_key),
2639 .proc_handler = bpf_stats_handler,
2642 #if defined(CONFIG_TREE_RCU)
2644 .procname = "panic_on_rcu_stall",
2645 .data = &sysctl_panic_on_rcu_stall,
2646 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
2648 .proc_handler = proc_dointvec_minmax,
2649 .extra1 = SYSCTL_ZERO,
2650 .extra2 = SYSCTL_ONE,
2653 #ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
2655 .procname = "stack_erasing",
2657 .maxlen = sizeof(int),
2659 .proc_handler = stack_erasing_sysctl,
2660 .extra1 = SYSCTL_ZERO,
2661 .extra2 = SYSCTL_ONE,
2667 static struct ctl_table vm_table[] = {
2669 .procname = "overcommit_memory",
2670 .data = &sysctl_overcommit_memory,
2671 .maxlen = sizeof(sysctl_overcommit_memory),
2673 .proc_handler = overcommit_policy_handler,
2674 .extra1 = SYSCTL_ZERO,
2678 .procname = "panic_on_oom",
2679 .data = &sysctl_panic_on_oom,
2680 .maxlen = sizeof(sysctl_panic_on_oom),
2682 .proc_handler = proc_dointvec_minmax,
2683 .extra1 = SYSCTL_ZERO,
2687 .procname = "oom_kill_allocating_task",
2688 .data = &sysctl_oom_kill_allocating_task,
2689 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
2691 .proc_handler = proc_dointvec,
2694 .procname = "oom_dump_tasks",
2695 .data = &sysctl_oom_dump_tasks,
2696 .maxlen = sizeof(sysctl_oom_dump_tasks),
2698 .proc_handler = proc_dointvec,
2701 .procname = "overcommit_ratio",
2702 .data = &sysctl_overcommit_ratio,
2703 .maxlen = sizeof(sysctl_overcommit_ratio),
2705 .proc_handler = overcommit_ratio_handler,
2708 .procname = "overcommit_kbytes",
2709 .data = &sysctl_overcommit_kbytes,
2710 .maxlen = sizeof(sysctl_overcommit_kbytes),
2712 .proc_handler = overcommit_kbytes_handler,
2715 .procname = "page-cluster",
2716 .data = &page_cluster,
2717 .maxlen = sizeof(int),
2719 .proc_handler = proc_dointvec_minmax,
2720 .extra1 = SYSCTL_ZERO,
2723 .procname = "dirty_background_ratio",
2724 .data = &dirty_background_ratio,
2725 .maxlen = sizeof(dirty_background_ratio),
2727 .proc_handler = dirty_background_ratio_handler,
2728 .extra1 = SYSCTL_ZERO,
2729 .extra2 = &one_hundred,
2732 .procname = "dirty_background_bytes",
2733 .data = &dirty_background_bytes,
2734 .maxlen = sizeof(dirty_background_bytes),
2736 .proc_handler = dirty_background_bytes_handler,
2740 .procname = "dirty_ratio",
2741 .data = &vm_dirty_ratio,
2742 .maxlen = sizeof(vm_dirty_ratio),
2744 .proc_handler = dirty_ratio_handler,
2745 .extra1 = SYSCTL_ZERO,
2746 .extra2 = &one_hundred,
2749 .procname = "dirty_bytes",
2750 .data = &vm_dirty_bytes,
2751 .maxlen = sizeof(vm_dirty_bytes),
2753 .proc_handler = dirty_bytes_handler,
2754 .extra1 = &dirty_bytes_min,
2757 .procname = "dirty_writeback_centisecs",
2758 .data = &dirty_writeback_interval,
2759 .maxlen = sizeof(dirty_writeback_interval),
2761 .proc_handler = dirty_writeback_centisecs_handler,
2764 .procname = "dirty_expire_centisecs",
2765 .data = &dirty_expire_interval,
2766 .maxlen = sizeof(dirty_expire_interval),
2768 .proc_handler = proc_dointvec_minmax,
2769 .extra1 = SYSCTL_ZERO,
2772 .procname = "dirtytime_expire_seconds",
2773 .data = &dirtytime_expire_interval,
2774 .maxlen = sizeof(dirtytime_expire_interval),
2776 .proc_handler = dirtytime_interval_handler,
2777 .extra1 = SYSCTL_ZERO,
2780 .procname = "swappiness",
2781 .data = &vm_swappiness,
2782 .maxlen = sizeof(vm_swappiness),
2784 .proc_handler = proc_dointvec_minmax,
2785 .extra1 = SYSCTL_ZERO,
2786 .extra2 = &two_hundred,
2788 #ifdef CONFIG_HUGETLB_PAGE
2790 .procname = "nr_hugepages",
2792 .maxlen = sizeof(unsigned long),
2794 .proc_handler = hugetlb_sysctl_handler,
2798 .procname = "nr_hugepages_mempolicy",
2800 .maxlen = sizeof(unsigned long),
2802 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
2805 .procname = "numa_stat",
2806 .data = &sysctl_vm_numa_stat,
2807 .maxlen = sizeof(int),
2809 .proc_handler = sysctl_vm_numa_stat_handler,
2810 .extra1 = SYSCTL_ZERO,
2811 .extra2 = SYSCTL_ONE,
2815 .procname = "hugetlb_shm_group",
2816 .data = &sysctl_hugetlb_shm_group,
2817 .maxlen = sizeof(gid_t),
2819 .proc_handler = proc_dointvec,
2822 .procname = "nr_overcommit_hugepages",
2824 .maxlen = sizeof(unsigned long),
2826 .proc_handler = hugetlb_overcommit_handler,
2830 .procname = "lowmem_reserve_ratio",
2831 .data = &sysctl_lowmem_reserve_ratio,
2832 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
2834 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
2837 .procname = "drop_caches",
2838 .data = &sysctl_drop_caches,
2839 .maxlen = sizeof(int),
2841 .proc_handler = drop_caches_sysctl_handler,
2842 .extra1 = SYSCTL_ONE,
2845 #ifdef CONFIG_COMPACTION
2847 .procname = "compact_memory",
2848 .data = &sysctl_compact_memory,
2849 .maxlen = sizeof(int),
2851 .proc_handler = sysctl_compaction_handler,
2854 .procname = "compaction_proactiveness",
2855 .data = &sysctl_compaction_proactiveness,
2856 .maxlen = sizeof(sysctl_compaction_proactiveness),
2858 .proc_handler = proc_dointvec_minmax,
2859 .extra1 = SYSCTL_ZERO,
2860 .extra2 = &one_hundred,
2863 .procname = "extfrag_threshold",
2864 .data = &sysctl_extfrag_threshold,
2865 .maxlen = sizeof(int),
2867 .proc_handler = proc_dointvec_minmax,
2868 .extra1 = &min_extfrag_threshold,
2869 .extra2 = &max_extfrag_threshold,
2872 .procname = "compact_unevictable_allowed",
2873 .data = &sysctl_compact_unevictable_allowed,
2874 .maxlen = sizeof(int),
2876 .proc_handler = proc_dointvec_minmax_warn_RT_change,
2877 .extra1 = SYSCTL_ZERO,
2878 .extra2 = SYSCTL_ONE,
2881 #endif /* CONFIG_COMPACTION */
2883 .procname = "min_free_kbytes",
2884 .data = &min_free_kbytes,
2885 .maxlen = sizeof(min_free_kbytes),
2887 .proc_handler = min_free_kbytes_sysctl_handler,
2888 .extra1 = SYSCTL_ZERO,
2891 .procname = "watermark_boost_factor",
2892 .data = &watermark_boost_factor,
2893 .maxlen = sizeof(watermark_boost_factor),
2895 .proc_handler = proc_dointvec_minmax,
2896 .extra1 = SYSCTL_ZERO,
2899 .procname = "watermark_scale_factor",
2900 .data = &watermark_scale_factor,
2901 .maxlen = sizeof(watermark_scale_factor),
2903 .proc_handler = watermark_scale_factor_sysctl_handler,
2904 .extra1 = SYSCTL_ONE,
2905 .extra2 = &one_thousand,
2908 .procname = "percpu_pagelist_fraction",
2909 .data = &percpu_pagelist_fraction,
2910 .maxlen = sizeof(percpu_pagelist_fraction),
2912 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
2913 .extra1 = SYSCTL_ZERO,
2917 .procname = "max_map_count",
2918 .data = &sysctl_max_map_count,
2919 .maxlen = sizeof(sysctl_max_map_count),
2921 .proc_handler = proc_dointvec_minmax,
2922 .extra1 = SYSCTL_ZERO,
2926 .procname = "nr_trim_pages",
2927 .data = &sysctl_nr_trim_pages,
2928 .maxlen = sizeof(sysctl_nr_trim_pages),
2930 .proc_handler = proc_dointvec_minmax,
2931 .extra1 = SYSCTL_ZERO,
2935 .procname = "laptop_mode",
2936 .data = &laptop_mode,
2937 .maxlen = sizeof(laptop_mode),
2939 .proc_handler = proc_dointvec_jiffies,
2942 .procname = "block_dump",
2943 .data = &block_dump,
2944 .maxlen = sizeof(block_dump),
2946 .proc_handler = proc_dointvec,
2947 .extra1 = SYSCTL_ZERO,
2950 .procname = "vfs_cache_pressure",
2951 .data = &sysctl_vfs_cache_pressure,
2952 .maxlen = sizeof(sysctl_vfs_cache_pressure),
2954 .proc_handler = proc_dointvec,
2955 .extra1 = SYSCTL_ZERO,
2957 #if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
2958 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
2960 .procname = "legacy_va_layout",
2961 .data = &sysctl_legacy_va_layout,
2962 .maxlen = sizeof(sysctl_legacy_va_layout),
2964 .proc_handler = proc_dointvec,
2965 .extra1 = SYSCTL_ZERO,
2970 .procname = "zone_reclaim_mode",
2971 .data = &node_reclaim_mode,
2972 .maxlen = sizeof(node_reclaim_mode),
2974 .proc_handler = proc_dointvec,
2975 .extra1 = SYSCTL_ZERO,
2978 .procname = "min_unmapped_ratio",
2979 .data = &sysctl_min_unmapped_ratio,
2980 .maxlen = sizeof(sysctl_min_unmapped_ratio),
2982 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
2983 .extra1 = SYSCTL_ZERO,
2984 .extra2 = &one_hundred,
2987 .procname = "min_slab_ratio",
2988 .data = &sysctl_min_slab_ratio,
2989 .maxlen = sizeof(sysctl_min_slab_ratio),
2991 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
2992 .extra1 = SYSCTL_ZERO,
2993 .extra2 = &one_hundred,
2998 .procname = "stat_interval",
2999 .data = &sysctl_stat_interval,
3000 .maxlen = sizeof(sysctl_stat_interval),
3002 .proc_handler = proc_dointvec_jiffies,
3005 .procname = "stat_refresh",
3009 .proc_handler = vmstat_refresh,
3014 .procname = "mmap_min_addr",
3015 .data = &dac_mmap_min_addr,
3016 .maxlen = sizeof(unsigned long),
3018 .proc_handler = mmap_min_addr_handler,
3023 .procname = "numa_zonelist_order",
3024 .data = &numa_zonelist_order,
3025 .maxlen = NUMA_ZONELIST_ORDER_LEN,
3027 .proc_handler = numa_zonelist_order_handler,
3030 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
3031 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
3033 .procname = "vdso_enabled",
3034 #ifdef CONFIG_X86_32
3035 .data = &vdso32_enabled,
3036 .maxlen = sizeof(vdso32_enabled),
3038 .data = &vdso_enabled,
3039 .maxlen = sizeof(vdso_enabled),
3042 .proc_handler = proc_dointvec,
3043 .extra1 = SYSCTL_ZERO,
3046 #ifdef CONFIG_HIGHMEM
3048 .procname = "highmem_is_dirtyable",
3049 .data = &vm_highmem_is_dirtyable,
3050 .maxlen = sizeof(vm_highmem_is_dirtyable),
3052 .proc_handler = proc_dointvec_minmax,
3053 .extra1 = SYSCTL_ZERO,
3054 .extra2 = SYSCTL_ONE,
3057 #ifdef CONFIG_MEMORY_FAILURE
3059 .procname = "memory_failure_early_kill",
3060 .data = &sysctl_memory_failure_early_kill,
3061 .maxlen = sizeof(sysctl_memory_failure_early_kill),
3063 .proc_handler = proc_dointvec_minmax,
3064 .extra1 = SYSCTL_ZERO,
3065 .extra2 = SYSCTL_ONE,
3068 .procname = "memory_failure_recovery",
3069 .data = &sysctl_memory_failure_recovery,
3070 .maxlen = sizeof(sysctl_memory_failure_recovery),
3072 .proc_handler = proc_dointvec_minmax,
3073 .extra1 = SYSCTL_ZERO,
3074 .extra2 = SYSCTL_ONE,
3078 .procname = "user_reserve_kbytes",
3079 .data = &sysctl_user_reserve_kbytes,
3080 .maxlen = sizeof(sysctl_user_reserve_kbytes),
3082 .proc_handler = proc_doulongvec_minmax,
3085 .procname = "admin_reserve_kbytes",
3086 .data = &sysctl_admin_reserve_kbytes,
3087 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
3089 .proc_handler = proc_doulongvec_minmax,
3091 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
3093 .procname = "mmap_rnd_bits",
3094 .data = &mmap_rnd_bits,
3095 .maxlen = sizeof(mmap_rnd_bits),
3097 .proc_handler = proc_dointvec_minmax,
3098 .extra1 = (void *)&mmap_rnd_bits_min,
3099 .extra2 = (void *)&mmap_rnd_bits_max,
3102 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
3104 .procname = "mmap_rnd_compat_bits",
3105 .data = &mmap_rnd_compat_bits,
3106 .maxlen = sizeof(mmap_rnd_compat_bits),
3108 .proc_handler = proc_dointvec_minmax,
3109 .extra1 = (void *)&mmap_rnd_compat_bits_min,
3110 .extra2 = (void *)&mmap_rnd_compat_bits_max,
3113 #ifdef CONFIG_USERFAULTFD
3115 .procname = "unprivileged_userfaultfd",
3116 .data = &sysctl_unprivileged_userfaultfd,
3117 .maxlen = sizeof(sysctl_unprivileged_userfaultfd),
3119 .proc_handler = proc_dointvec_minmax,
3120 .extra1 = SYSCTL_ZERO,
3121 .extra2 = SYSCTL_ONE,
3127 static struct ctl_table fs_table[] = {
3129 .procname = "inode-nr",
3130 .data = &inodes_stat,
3131 .maxlen = 2*sizeof(long),
3133 .proc_handler = proc_nr_inodes,
3136 .procname = "inode-state",
3137 .data = &inodes_stat,
3138 .maxlen = 7*sizeof(long),
3140 .proc_handler = proc_nr_inodes,
3143 .procname = "file-nr",
3144 .data = &files_stat,
3145 .maxlen = sizeof(files_stat),
3147 .proc_handler = proc_nr_files,
3150 .procname = "file-max",
3151 .data = &files_stat.max_files,
3152 .maxlen = sizeof(files_stat.max_files),
3154 .proc_handler = proc_doulongvec_minmax,
3156 .extra2 = &long_max,
3159 .procname = "nr_open",
3160 .data = &sysctl_nr_open,
3161 .maxlen = sizeof(unsigned int),
3163 .proc_handler = proc_dointvec_minmax,
3164 .extra1 = &sysctl_nr_open_min,
3165 .extra2 = &sysctl_nr_open_max,
3168 .procname = "dentry-state",
3169 .data = &dentry_stat,
3170 .maxlen = 6*sizeof(long),
3172 .proc_handler = proc_nr_dentry,
3175 .procname = "overflowuid",
3176 .data = &fs_overflowuid,
3177 .maxlen = sizeof(int),
3179 .proc_handler = proc_dointvec_minmax,
3180 .extra1 = &minolduid,
3181 .extra2 = &maxolduid,
3184 .procname = "overflowgid",
3185 .data = &fs_overflowgid,
3186 .maxlen = sizeof(int),
3188 .proc_handler = proc_dointvec_minmax,
3189 .extra1 = &minolduid,
3190 .extra2 = &maxolduid,
3192 #ifdef CONFIG_FILE_LOCKING
3194 .procname = "leases-enable",
3195 .data = &leases_enable,
3196 .maxlen = sizeof(int),
3198 .proc_handler = proc_dointvec,
3201 #ifdef CONFIG_DNOTIFY
3203 .procname = "dir-notify-enable",
3204 .data = &dir_notify_enable,
3205 .maxlen = sizeof(int),
3207 .proc_handler = proc_dointvec,
3211 #ifdef CONFIG_FILE_LOCKING
3213 .procname = "lease-break-time",
3214 .data = &lease_break_time,
3215 .maxlen = sizeof(int),
3217 .proc_handler = proc_dointvec,
3222 .procname = "aio-nr",
3224 .maxlen = sizeof(aio_nr),
3226 .proc_handler = proc_doulongvec_minmax,
3229 .procname = "aio-max-nr",
3230 .data = &aio_max_nr,
3231 .maxlen = sizeof(aio_max_nr),
3233 .proc_handler = proc_doulongvec_minmax,
3235 #endif /* CONFIG_AIO */
3236 #ifdef CONFIG_INOTIFY_USER
3238 .procname = "inotify",
3240 .child = inotify_table,
3245 .procname = "epoll",
3247 .child = epoll_table,
3252 .procname = "protected_symlinks",
3253 .data = &sysctl_protected_symlinks,
3254 .maxlen = sizeof(int),
3256 .proc_handler = proc_dointvec_minmax,
3257 .extra1 = SYSCTL_ZERO,
3258 .extra2 = SYSCTL_ONE,
3261 .procname = "protected_hardlinks",
3262 .data = &sysctl_protected_hardlinks,
3263 .maxlen = sizeof(int),
3265 .proc_handler = proc_dointvec_minmax,
3266 .extra1 = SYSCTL_ZERO,
3267 .extra2 = SYSCTL_ONE,
3270 .procname = "protected_fifos",
3271 .data = &sysctl_protected_fifos,
3272 .maxlen = sizeof(int),
3274 .proc_handler = proc_dointvec_minmax,
3275 .extra1 = SYSCTL_ZERO,
3279 .procname = "protected_regular",
3280 .data = &sysctl_protected_regular,
3281 .maxlen = sizeof(int),
3283 .proc_handler = proc_dointvec_minmax,
3284 .extra1 = SYSCTL_ZERO,
3288 .procname = "suid_dumpable",
3289 .data = &suid_dumpable,
3290 .maxlen = sizeof(int),
3292 .proc_handler = proc_dointvec_minmax_coredump,
3293 .extra1 = SYSCTL_ZERO,
3296 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
3298 .procname = "binfmt_misc",
3300 .child = sysctl_mount_point,
3304 .procname = "pipe-max-size",
3305 .data = &pipe_max_size,
3306 .maxlen = sizeof(pipe_max_size),
3308 .proc_handler = proc_dopipe_max_size,
3311 .procname = "pipe-user-pages-hard",
3312 .data = &pipe_user_pages_hard,
3313 .maxlen = sizeof(pipe_user_pages_hard),
3315 .proc_handler = proc_doulongvec_minmax,
3318 .procname = "pipe-user-pages-soft",
3319 .data = &pipe_user_pages_soft,
3320 .maxlen = sizeof(pipe_user_pages_soft),
3322 .proc_handler = proc_doulongvec_minmax,
3325 .procname = "mount-max",
3326 .data = &sysctl_mount_max,
3327 .maxlen = sizeof(unsigned int),
3329 .proc_handler = proc_dointvec_minmax,
3330 .extra1 = SYSCTL_ONE,
3335 static struct ctl_table debug_table[] = {
3336 #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
3338 .procname = "exception-trace",
3339 .data = &show_unhandled_signals,
3340 .maxlen = sizeof(int),
3342 .proc_handler = proc_dointvec
3345 #if defined(CONFIG_OPTPROBES)
3347 .procname = "kprobes-optimization",
3348 .data = &sysctl_kprobes_optimization,
3349 .maxlen = sizeof(int),
3351 .proc_handler = proc_kprobes_optimization_handler,
3352 .extra1 = SYSCTL_ZERO,
3353 .extra2 = SYSCTL_ONE,
3359 static struct ctl_table dev_table[] = {
3363 static struct ctl_table sysctl_base_table[] = {
3365 .procname = "kernel",
3367 .child = kern_table,
3380 .procname = "debug",
3382 .child = debug_table,
3392 int __init sysctl_init(void)
3394 struct ctl_table_header *hdr;
3396 hdr = register_sysctl_table(sysctl_base_table);
3397 kmemleak_not_leak(hdr);
3400 #endif /* CONFIG_SYSCTL */
3402 * No sense putting this after each symbol definition, twice,
3403 * exception granted :-)
3405 EXPORT_SYMBOL(proc_dointvec);
3406 EXPORT_SYMBOL(proc_douintvec);
3407 EXPORT_SYMBOL(proc_dointvec_jiffies);
3408 EXPORT_SYMBOL(proc_dointvec_minmax);
3409 EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
3410 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3411 EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3412 EXPORT_SYMBOL(proc_dostring);
3413 EXPORT_SYMBOL(proc_doulongvec_minmax);
3414 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3415 EXPORT_SYMBOL(proc_do_large_bitmap);