Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * sysctl.c: General linux system control interface
4 *
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
13 * Horn.
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
17 * Wendling.
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
20 */
21
22#include <linux/module.h>
23#include <linux/mm.h>
24#include <linux/swap.h>
25#include <linux/slab.h>
26#include <linux/sysctl.h>
27#include <linux/bitmap.h>
28#include <linux/signal.h>
29#include <linux/panic.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>
35#include <linux/filter.h>
36#include <linux/fs.h>
37#include <linux/init.h>
38#include <linux/kernel.h>
39#include <linux/kobject.h>
40#include <linux/net.h>
41#include <linux/sysrq.h>
42#include <linux/highuid.h>
43#include <linux/writeback.h>
44#include <linux/ratelimit.h>
45#include <linux/compaction.h>
46#include <linux/hugetlb.h>
47#include <linux/initrd.h>
48#include <linux/key.h>
49#include <linux/times.h>
50#include <linux/limits.h>
51#include <linux/dcache.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/oom.h>
60#include <linux/kmod.h>
61#include <linux/capability.h>
62#include <linux/binfmts.h>
63#include <linux/sched/sysctl.h>
64#include <linux/mount.h>
65#include <linux/userfaultfd_k.h>
66#include <linux/pid.h>
67
68#include "../lib/kstrtox.h"
69
70#include <linux/uaccess.h>
71#include <asm/processor.h>
72
73#ifdef CONFIG_X86
74#include <asm/nmi.h>
75#include <asm/stacktrace.h>
76#include <asm/io.h>
77#endif
78#ifdef CONFIG_SPARC
79#include <asm/setup.h>
80#endif
81#ifdef CONFIG_RT_MUTEXES
82#include <linux/rtmutex.h>
83#endif
84
85/* shared constants to be used in various sysctls */
86const int sysctl_vals[] = { 0, 1, 2, 3, 4, 100, 200, 1000, 3000, INT_MAX, 65535, -1 };
87EXPORT_SYMBOL(sysctl_vals);
88
89const unsigned long sysctl_long_vals[] = { 0, 1, LONG_MAX };
90EXPORT_SYMBOL_GPL(sysctl_long_vals);
91
92#if defined(CONFIG_SYSCTL)
93
94/* Constants used for minimum and maximum */
95
96#ifdef CONFIG_PERF_EVENTS
97static const int six_hundred_forty_kb = 640 * 1024;
98#endif
99
100
101static const int ngroups_max = NGROUPS_MAX;
102static const int cap_last_cap = CAP_LAST_CAP;
103
104#ifdef CONFIG_PROC_SYSCTL
105
106/**
107 * enum sysctl_writes_mode - supported sysctl write modes
108 *
109 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
110 * to be written, and multiple writes on the same sysctl file descriptor
111 * will rewrite the sysctl value, regardless of file position. No warning
112 * is issued when the initial position is not 0.
113 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
114 * not 0.
115 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
116 * file position 0 and the value must be fully contained in the buffer
117 * sent to the write syscall. If dealing with strings respect the file
118 * position, but restrict this to the max length of the buffer, anything
119 * passed the max length will be ignored. Multiple writes will append
120 * to the buffer.
121 *
122 * These write modes control how current file position affects the behavior of
123 * updating sysctl values through the proc interface on each write.
124 */
125enum sysctl_writes_mode {
126 SYSCTL_WRITES_LEGACY = -1,
127 SYSCTL_WRITES_WARN = 0,
128 SYSCTL_WRITES_STRICT = 1,
129};
130
131static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
132#endif /* CONFIG_PROC_SYSCTL */
133
134#if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
135 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
136int sysctl_legacy_va_layout;
137#endif
138
139#endif /* CONFIG_SYSCTL */
140
141/*
142 * /proc/sys support
143 */
144
145#ifdef CONFIG_PROC_SYSCTL
146
147static int _proc_do_string(char *data, int maxlen, int write,
148 char *buffer, size_t *lenp, loff_t *ppos)
149{
150 size_t len;
151 char c, *p;
152
153 if (!data || !maxlen || !*lenp) {
154 *lenp = 0;
155 return 0;
156 }
157
158 if (write) {
159 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
160 /* Only continue writes not past the end of buffer. */
161 len = strlen(data);
162 if (len > maxlen - 1)
163 len = maxlen - 1;
164
165 if (*ppos > len)
166 return 0;
167 len = *ppos;
168 } else {
169 /* Start writing from beginning of buffer. */
170 len = 0;
171 }
172
173 *ppos += *lenp;
174 p = buffer;
175 while ((p - buffer) < *lenp && len < maxlen - 1) {
176 c = *(p++);
177 if (c == 0 || c == '\n')
178 break;
179 data[len++] = c;
180 }
181 data[len] = 0;
182 } else {
183 len = strlen(data);
184 if (len > maxlen)
185 len = maxlen;
186
187 if (*ppos > len) {
188 *lenp = 0;
189 return 0;
190 }
191
192 data += *ppos;
193 len -= *ppos;
194
195 if (len > *lenp)
196 len = *lenp;
197 if (len)
198 memcpy(buffer, data, len);
199 if (len < *lenp) {
200 buffer[len] = '\n';
201 len++;
202 }
203 *lenp = len;
204 *ppos += len;
205 }
206 return 0;
207}
208
209static void warn_sysctl_write(struct ctl_table *table)
210{
211 pr_warn_once("%s wrote to %s when file position was not 0!\n"
212 "This will not be supported in the future. To silence this\n"
213 "warning, set kernel.sysctl_writes_strict = -1\n",
214 current->comm, table->procname);
215}
216
217/**
218 * proc_first_pos_non_zero_ignore - check if first position is allowed
219 * @ppos: file position
220 * @table: the sysctl table
221 *
222 * Returns true if the first position is non-zero and the sysctl_writes_strict
223 * mode indicates this is not allowed for numeric input types. String proc
224 * handlers can ignore the return value.
225 */
226static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
227 struct ctl_table *table)
228{
229 if (!*ppos)
230 return false;
231
232 switch (sysctl_writes_strict) {
233 case SYSCTL_WRITES_STRICT:
234 return true;
235 case SYSCTL_WRITES_WARN:
236 warn_sysctl_write(table);
237 return false;
238 default:
239 return false;
240 }
241}
242
243/**
244 * proc_dostring - read a string sysctl
245 * @table: the sysctl table
246 * @write: %TRUE if this is a write to the sysctl file
247 * @buffer: the user buffer
248 * @lenp: the size of the user buffer
249 * @ppos: file position
250 *
251 * Reads/writes a string from/to the user buffer. If the kernel
252 * buffer provided is not large enough to hold the string, the
253 * string is truncated. The copied string is %NULL-terminated.
254 * If the string is being read by the user process, it is copied
255 * and a newline '\n' is added. It is truncated if the buffer is
256 * not large enough.
257 *
258 * Returns 0 on success.
259 */
260int proc_dostring(struct ctl_table *table, int write,
261 void *buffer, size_t *lenp, loff_t *ppos)
262{
263 if (write)
264 proc_first_pos_non_zero_ignore(ppos, table);
265
266 return _proc_do_string(table->data, table->maxlen, write, buffer, lenp,
267 ppos);
268}
269
270static void proc_skip_spaces(char **buf, size_t *size)
271{
272 while (*size) {
273 if (!isspace(**buf))
274 break;
275 (*size)--;
276 (*buf)++;
277 }
278}
279
280static void proc_skip_char(char **buf, size_t *size, const char v)
281{
282 while (*size) {
283 if (**buf != v)
284 break;
285 (*size)--;
286 (*buf)++;
287 }
288}
289
290/**
291 * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
292 * fail on overflow
293 *
294 * @cp: kernel buffer containing the string to parse
295 * @endp: pointer to store the trailing characters
296 * @base: the base to use
297 * @res: where the parsed integer will be stored
298 *
299 * In case of success 0 is returned and @res will contain the parsed integer,
300 * @endp will hold any trailing characters.
301 * This function will fail the parse on overflow. If there wasn't an overflow
302 * the function will defer the decision what characters count as invalid to the
303 * caller.
304 */
305static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
306 unsigned long *res)
307{
308 unsigned long long result;
309 unsigned int rv;
310
311 cp = _parse_integer_fixup_radix(cp, &base);
312 rv = _parse_integer(cp, base, &result);
313 if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
314 return -ERANGE;
315
316 cp += rv;
317
318 if (endp)
319 *endp = (char *)cp;
320
321 *res = (unsigned long)result;
322 return 0;
323}
324
325#define TMPBUFLEN 22
326/**
327 * proc_get_long - reads an ASCII formatted integer from a user buffer
328 *
329 * @buf: a kernel buffer
330 * @size: size of the kernel buffer
331 * @val: this is where the number will be stored
332 * @neg: set to %TRUE if number is negative
333 * @perm_tr: a vector which contains the allowed trailers
334 * @perm_tr_len: size of the perm_tr vector
335 * @tr: pointer to store the trailer character
336 *
337 * In case of success %0 is returned and @buf and @size are updated with
338 * the amount of bytes read. If @tr is non-NULL and a trailing
339 * character exists (size is non-zero after returning from this
340 * function), @tr is updated with the trailing character.
341 */
342static int proc_get_long(char **buf, size_t *size,
343 unsigned long *val, bool *neg,
344 const char *perm_tr, unsigned perm_tr_len, char *tr)
345{
346 char *p, tmp[TMPBUFLEN];
347 ssize_t len = *size;
348
349 if (len <= 0)
350 return -EINVAL;
351
352 if (len > TMPBUFLEN - 1)
353 len = TMPBUFLEN - 1;
354
355 memcpy(tmp, *buf, len);
356
357 tmp[len] = 0;
358 p = tmp;
359 if (*p == '-' && *size > 1) {
360 *neg = true;
361 p++;
362 } else
363 *neg = false;
364 if (!isdigit(*p))
365 return -EINVAL;
366
367 if (strtoul_lenient(p, &p, 0, val))
368 return -EINVAL;
369
370 len = p - tmp;
371
372 /* We don't know if the next char is whitespace thus we may accept
373 * invalid integers (e.g. 1234...a) or two integers instead of one
374 * (e.g. 123...1). So lets not allow such large numbers. */
375 if (len == TMPBUFLEN - 1)
376 return -EINVAL;
377
378 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
379 return -EINVAL;
380
381 if (tr && (len < *size))
382 *tr = *p;
383
384 *buf += len;
385 *size -= len;
386
387 return 0;
388}
389
390/**
391 * proc_put_long - converts an integer to a decimal ASCII formatted string
392 *
393 * @buf: the user buffer
394 * @size: the size of the user buffer
395 * @val: the integer to be converted
396 * @neg: sign of the number, %TRUE for negative
397 *
398 * In case of success @buf and @size are updated with the amount of bytes
399 * written.
400 */
401static void proc_put_long(void **buf, size_t *size, unsigned long val, bool neg)
402{
403 int len;
404 char tmp[TMPBUFLEN], *p = tmp;
405
406 sprintf(p, "%s%lu", neg ? "-" : "", val);
407 len = strlen(tmp);
408 if (len > *size)
409 len = *size;
410 memcpy(*buf, tmp, len);
411 *size -= len;
412 *buf += len;
413}
414#undef TMPBUFLEN
415
416static void proc_put_char(void **buf, size_t *size, char c)
417{
418 if (*size) {
419 char **buffer = (char **)buf;
420 **buffer = c;
421
422 (*size)--;
423 (*buffer)++;
424 *buf = *buffer;
425 }
426}
427
428static int do_proc_dobool_conv(bool *negp, unsigned long *lvalp,
429 int *valp,
430 int write, void *data)
431{
432 if (write) {
433 *(bool *)valp = *lvalp;
434 } else {
435 int val = *(bool *)valp;
436
437 *lvalp = (unsigned long)val;
438 *negp = false;
439 }
440 return 0;
441}
442
443static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
444 int *valp,
445 int write, void *data)
446{
447 if (write) {
448 if (*negp) {
449 if (*lvalp > (unsigned long) INT_MAX + 1)
450 return -EINVAL;
451 WRITE_ONCE(*valp, -*lvalp);
452 } else {
453 if (*lvalp > (unsigned long) INT_MAX)
454 return -EINVAL;
455 WRITE_ONCE(*valp, *lvalp);
456 }
457 } else {
458 int val = READ_ONCE(*valp);
459 if (val < 0) {
460 *negp = true;
461 *lvalp = -(unsigned long)val;
462 } else {
463 *negp = false;
464 *lvalp = (unsigned long)val;
465 }
466 }
467 return 0;
468}
469
470static int do_proc_douintvec_conv(unsigned long *lvalp,
471 unsigned int *valp,
472 int write, void *data)
473{
474 if (write) {
475 if (*lvalp > UINT_MAX)
476 return -EINVAL;
477 WRITE_ONCE(*valp, *lvalp);
478 } else {
479 unsigned int val = READ_ONCE(*valp);
480 *lvalp = (unsigned long)val;
481 }
482 return 0;
483}
484
485static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
486
487static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
488 int write, void *buffer,
489 size_t *lenp, loff_t *ppos,
490 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
491 int write, void *data),
492 void *data)
493{
494 int *i, vleft, first = 1, err = 0;
495 size_t left;
496 char *p;
497
498 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
499 *lenp = 0;
500 return 0;
501 }
502
503 i = (int *) tbl_data;
504 vleft = table->maxlen / sizeof(*i);
505 left = *lenp;
506
507 if (!conv)
508 conv = do_proc_dointvec_conv;
509
510 if (write) {
511 if (proc_first_pos_non_zero_ignore(ppos, table))
512 goto out;
513
514 if (left > PAGE_SIZE - 1)
515 left = PAGE_SIZE - 1;
516 p = buffer;
517 }
518
519 for (; left && vleft--; i++, first=0) {
520 unsigned long lval;
521 bool neg;
522
523 if (write) {
524 proc_skip_spaces(&p, &left);
525
526 if (!left)
527 break;
528 err = proc_get_long(&p, &left, &lval, &neg,
529 proc_wspace_sep,
530 sizeof(proc_wspace_sep), NULL);
531 if (err)
532 break;
533 if (conv(&neg, &lval, i, 1, data)) {
534 err = -EINVAL;
535 break;
536 }
537 } else {
538 if (conv(&neg, &lval, i, 0, data)) {
539 err = -EINVAL;
540 break;
541 }
542 if (!first)
543 proc_put_char(&buffer, &left, '\t');
544 proc_put_long(&buffer, &left, lval, neg);
545 }
546 }
547
548 if (!write && !first && left && !err)
549 proc_put_char(&buffer, &left, '\n');
550 if (write && !err && left)
551 proc_skip_spaces(&p, &left);
552 if (write && first)
553 return err ? : -EINVAL;
554 *lenp -= left;
555out:
556 *ppos += *lenp;
557 return err;
558}
559
560static int do_proc_dointvec(struct ctl_table *table, int write,
561 void *buffer, size_t *lenp, loff_t *ppos,
562 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
563 int write, void *data),
564 void *data)
565{
566 return __do_proc_dointvec(table->data, table, write,
567 buffer, lenp, ppos, conv, data);
568}
569
570static int do_proc_douintvec_w(unsigned int *tbl_data,
571 struct ctl_table *table,
572 void *buffer,
573 size_t *lenp, loff_t *ppos,
574 int (*conv)(unsigned long *lvalp,
575 unsigned int *valp,
576 int write, void *data),
577 void *data)
578{
579 unsigned long lval;
580 int err = 0;
581 size_t left;
582 bool neg;
583 char *p = buffer;
584
585 left = *lenp;
586
587 if (proc_first_pos_non_zero_ignore(ppos, table))
588 goto bail_early;
589
590 if (left > PAGE_SIZE - 1)
591 left = PAGE_SIZE - 1;
592
593 proc_skip_spaces(&p, &left);
594 if (!left) {
595 err = -EINVAL;
596 goto out_free;
597 }
598
599 err = proc_get_long(&p, &left, &lval, &neg,
600 proc_wspace_sep,
601 sizeof(proc_wspace_sep), NULL);
602 if (err || neg) {
603 err = -EINVAL;
604 goto out_free;
605 }
606
607 if (conv(&lval, tbl_data, 1, data)) {
608 err = -EINVAL;
609 goto out_free;
610 }
611
612 if (!err && left)
613 proc_skip_spaces(&p, &left);
614
615out_free:
616 if (err)
617 return -EINVAL;
618
619 return 0;
620
621 /* This is in keeping with old __do_proc_dointvec() */
622bail_early:
623 *ppos += *lenp;
624 return err;
625}
626
627static int do_proc_douintvec_r(unsigned int *tbl_data, void *buffer,
628 size_t *lenp, loff_t *ppos,
629 int (*conv)(unsigned long *lvalp,
630 unsigned int *valp,
631 int write, void *data),
632 void *data)
633{
634 unsigned long lval;
635 int err = 0;
636 size_t left;
637
638 left = *lenp;
639
640 if (conv(&lval, tbl_data, 0, data)) {
641 err = -EINVAL;
642 goto out;
643 }
644
645 proc_put_long(&buffer, &left, lval, false);
646 if (!left)
647 goto out;
648
649 proc_put_char(&buffer, &left, '\n');
650
651out:
652 *lenp -= left;
653 *ppos += *lenp;
654
655 return err;
656}
657
658static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
659 int write, void *buffer,
660 size_t *lenp, loff_t *ppos,
661 int (*conv)(unsigned long *lvalp,
662 unsigned int *valp,
663 int write, void *data),
664 void *data)
665{
666 unsigned int *i, vleft;
667
668 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
669 *lenp = 0;
670 return 0;
671 }
672
673 i = (unsigned int *) tbl_data;
674 vleft = table->maxlen / sizeof(*i);
675
676 /*
677 * Arrays are not supported, keep this simple. *Do not* add
678 * support for them.
679 */
680 if (vleft != 1) {
681 *lenp = 0;
682 return -EINVAL;
683 }
684
685 if (!conv)
686 conv = do_proc_douintvec_conv;
687
688 if (write)
689 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
690 conv, data);
691 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
692}
693
694int do_proc_douintvec(struct ctl_table *table, int write,
695 void *buffer, size_t *lenp, loff_t *ppos,
696 int (*conv)(unsigned long *lvalp,
697 unsigned int *valp,
698 int write, void *data),
699 void *data)
700{
701 return __do_proc_douintvec(table->data, table, write,
702 buffer, lenp, ppos, conv, data);
703}
704
705/**
706 * proc_dobool - read/write a bool
707 * @table: the sysctl table
708 * @write: %TRUE if this is a write to the sysctl file
709 * @buffer: the user buffer
710 * @lenp: the size of the user buffer
711 * @ppos: file position
712 *
713 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
714 * values from/to the user buffer, treated as an ASCII string.
715 *
716 * Returns 0 on success.
717 */
718int proc_dobool(struct ctl_table *table, int write, void *buffer,
719 size_t *lenp, loff_t *ppos)
720{
721 return do_proc_dointvec(table, write, buffer, lenp, ppos,
722 do_proc_dobool_conv, NULL);
723}
724
725/**
726 * proc_dointvec - read a vector of integers
727 * @table: the sysctl table
728 * @write: %TRUE if this is a write to the sysctl file
729 * @buffer: the user buffer
730 * @lenp: the size of the user buffer
731 * @ppos: file position
732 *
733 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
734 * values from/to the user buffer, treated as an ASCII string.
735 *
736 * Returns 0 on success.
737 */
738int proc_dointvec(struct ctl_table *table, int write, void *buffer,
739 size_t *lenp, loff_t *ppos)
740{
741 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
742}
743
744#ifdef CONFIG_COMPACTION
745static int proc_dointvec_minmax_warn_RT_change(struct ctl_table *table,
746 int write, void *buffer, size_t *lenp, loff_t *ppos)
747{
748 int ret, old;
749
750 if (!IS_ENABLED(CONFIG_PREEMPT_RT) || !write)
751 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
752
753 old = *(int *)table->data;
754 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
755 if (ret)
756 return ret;
757 if (old != *(int *)table->data)
758 pr_warn_once("sysctl attribute %s changed by %s[%d]\n",
759 table->procname, current->comm,
760 task_pid_nr(current));
761 return ret;
762}
763#endif
764
765/**
766 * proc_douintvec - read a vector of unsigned integers
767 * @table: the sysctl table
768 * @write: %TRUE if this is a write to the sysctl file
769 * @buffer: the user buffer
770 * @lenp: the size of the user buffer
771 * @ppos: file position
772 *
773 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
774 * values from/to the user buffer, treated as an ASCII string.
775 *
776 * Returns 0 on success.
777 */
778int proc_douintvec(struct ctl_table *table, int write, void *buffer,
779 size_t *lenp, loff_t *ppos)
780{
781 return do_proc_douintvec(table, write, buffer, lenp, ppos,
782 do_proc_douintvec_conv, NULL);
783}
784
785/*
786 * Taint values can only be increased
787 * This means we can safely use a temporary.
788 */
789static int proc_taint(struct ctl_table *table, int write,
790 void *buffer, size_t *lenp, loff_t *ppos)
791{
792 struct ctl_table t;
793 unsigned long tmptaint = get_taint();
794 int err;
795
796 if (write && !capable(CAP_SYS_ADMIN))
797 return -EPERM;
798
799 t = *table;
800 t.data = &tmptaint;
801 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
802 if (err < 0)
803 return err;
804
805 if (write) {
806 int i;
807
808 /*
809 * If we are relying on panic_on_taint not producing
810 * false positives due to userspace input, bail out
811 * before setting the requested taint flags.
812 */
813 if (panic_on_taint_nousertaint && (tmptaint & panic_on_taint))
814 return -EINVAL;
815
816 /*
817 * Poor man's atomic or. Not worth adding a primitive
818 * to everyone's atomic.h for this
819 */
820 for (i = 0; i < TAINT_FLAGS_COUNT; i++)
821 if ((1UL << i) & tmptaint)
822 add_taint(i, LOCKDEP_STILL_OK);
823 }
824
825 return err;
826}
827
828/**
829 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
830 * @min: pointer to minimum allowable value
831 * @max: pointer to maximum allowable value
832 *
833 * The do_proc_dointvec_minmax_conv_param structure provides the
834 * minimum and maximum values for doing range checking for those sysctl
835 * parameters that use the proc_dointvec_minmax() handler.
836 */
837struct do_proc_dointvec_minmax_conv_param {
838 int *min;
839 int *max;
840};
841
842static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
843 int *valp,
844 int write, void *data)
845{
846 int tmp, ret;
847 struct do_proc_dointvec_minmax_conv_param *param = data;
848 /*
849 * If writing, first do so via a temporary local int so we can
850 * bounds-check it before touching *valp.
851 */
852 int *ip = write ? &tmp : valp;
853
854 ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
855 if (ret)
856 return ret;
857
858 if (write) {
859 if ((param->min && *param->min > tmp) ||
860 (param->max && *param->max < tmp))
861 return -EINVAL;
862 WRITE_ONCE(*valp, tmp);
863 }
864
865 return 0;
866}
867
868/**
869 * proc_dointvec_minmax - read a vector of integers with min/max values
870 * @table: the sysctl table
871 * @write: %TRUE if this is a write to the sysctl file
872 * @buffer: the user buffer
873 * @lenp: the size of the user buffer
874 * @ppos: file position
875 *
876 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
877 * values from/to the user buffer, treated as an ASCII string.
878 *
879 * This routine will ensure the values are within the range specified by
880 * table->extra1 (min) and table->extra2 (max).
881 *
882 * Returns 0 on success or -EINVAL on write when the range check fails.
883 */
884int proc_dointvec_minmax(struct ctl_table *table, int write,
885 void *buffer, size_t *lenp, loff_t *ppos)
886{
887 struct do_proc_dointvec_minmax_conv_param param = {
888 .min = (int *) table->extra1,
889 .max = (int *) table->extra2,
890 };
891 return do_proc_dointvec(table, write, buffer, lenp, ppos,
892 do_proc_dointvec_minmax_conv, ¶m);
893}
894
895/**
896 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
897 * @min: pointer to minimum allowable value
898 * @max: pointer to maximum allowable value
899 *
900 * The do_proc_douintvec_minmax_conv_param structure provides the
901 * minimum and maximum values for doing range checking for those sysctl
902 * parameters that use the proc_douintvec_minmax() handler.
903 */
904struct do_proc_douintvec_minmax_conv_param {
905 unsigned int *min;
906 unsigned int *max;
907};
908
909static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
910 unsigned int *valp,
911 int write, void *data)
912{
913 int ret;
914 unsigned int tmp;
915 struct do_proc_douintvec_minmax_conv_param *param = data;
916 /* write via temporary local uint for bounds-checking */
917 unsigned int *up = write ? &tmp : valp;
918
919 ret = do_proc_douintvec_conv(lvalp, up, write, data);
920 if (ret)
921 return ret;
922
923 if (write) {
924 if ((param->min && *param->min > tmp) ||
925 (param->max && *param->max < tmp))
926 return -ERANGE;
927
928 WRITE_ONCE(*valp, tmp);
929 }
930
931 return 0;
932}
933
934/**
935 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
936 * @table: the sysctl table
937 * @write: %TRUE if this is a write to the sysctl file
938 * @buffer: the user buffer
939 * @lenp: the size of the user buffer
940 * @ppos: file position
941 *
942 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
943 * values from/to the user buffer, treated as an ASCII string. Negative
944 * strings are not allowed.
945 *
946 * This routine will ensure the values are within the range specified by
947 * table->extra1 (min) and table->extra2 (max). There is a final sanity
948 * check for UINT_MAX to avoid having to support wrap around uses from
949 * userspace.
950 *
951 * Returns 0 on success or -ERANGE on write when the range check fails.
952 */
953int proc_douintvec_minmax(struct ctl_table *table, int write,
954 void *buffer, size_t *lenp, loff_t *ppos)
955{
956 struct do_proc_douintvec_minmax_conv_param param = {
957 .min = (unsigned int *) table->extra1,
958 .max = (unsigned int *) table->extra2,
959 };
960 return do_proc_douintvec(table, write, buffer, lenp, ppos,
961 do_proc_douintvec_minmax_conv, ¶m);
962}
963
964/**
965 * proc_dou8vec_minmax - read a vector of unsigned chars with min/max values
966 * @table: the sysctl table
967 * @write: %TRUE if this is a write to the sysctl file
968 * @buffer: the user buffer
969 * @lenp: the size of the user buffer
970 * @ppos: file position
971 *
972 * Reads/writes up to table->maxlen/sizeof(u8) unsigned chars
973 * values from/to the user buffer, treated as an ASCII string. Negative
974 * strings are not allowed.
975 *
976 * This routine will ensure the values are within the range specified by
977 * table->extra1 (min) and table->extra2 (max).
978 *
979 * Returns 0 on success or an error on write when the range check fails.
980 */
981int proc_dou8vec_minmax(struct ctl_table *table, int write,
982 void *buffer, size_t *lenp, loff_t *ppos)
983{
984 struct ctl_table tmp;
985 unsigned int min = 0, max = 255U, val;
986 u8 *data = table->data;
987 struct do_proc_douintvec_minmax_conv_param param = {
988 .min = &min,
989 .max = &max,
990 };
991 int res;
992
993 /* Do not support arrays yet. */
994 if (table->maxlen != sizeof(u8))
995 return -EINVAL;
996
997 if (table->extra1) {
998 min = *(unsigned int *) table->extra1;
999 if (min > 255U)
1000 return -EINVAL;
1001 }
1002 if (table->extra2) {
1003 max = *(unsigned int *) table->extra2;
1004 if (max > 255U)
1005 return -EINVAL;
1006 }
1007
1008 tmp = *table;
1009
1010 tmp.maxlen = sizeof(val);
1011 tmp.data = &val;
1012 val = READ_ONCE(*data);
1013 res = do_proc_douintvec(&tmp, write, buffer, lenp, ppos,
1014 do_proc_douintvec_minmax_conv, ¶m);
1015 if (res)
1016 return res;
1017 if (write)
1018 WRITE_ONCE(*data, val);
1019 return 0;
1020}
1021EXPORT_SYMBOL_GPL(proc_dou8vec_minmax);
1022
1023#ifdef CONFIG_MAGIC_SYSRQ
1024static int sysrq_sysctl_handler(struct ctl_table *table, int write,
1025 void *buffer, size_t *lenp, loff_t *ppos)
1026{
1027 int tmp, ret;
1028
1029 tmp = sysrq_mask();
1030
1031 ret = __do_proc_dointvec(&tmp, table, write, buffer,
1032 lenp, ppos, NULL, NULL);
1033 if (ret || !write)
1034 return ret;
1035
1036 if (write)
1037 sysrq_toggle_support(tmp);
1038
1039 return 0;
1040}
1041#endif
1042
1043static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table,
1044 int write, void *buffer, size_t *lenp, loff_t *ppos,
1045 unsigned long convmul, unsigned long convdiv)
1046{
1047 unsigned long *i, *min, *max;
1048 int vleft, first = 1, err = 0;
1049 size_t left;
1050 char *p;
1051
1052 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
1053 *lenp = 0;
1054 return 0;
1055 }
1056
1057 i = data;
1058 min = table->extra1;
1059 max = table->extra2;
1060 vleft = table->maxlen / sizeof(unsigned long);
1061 left = *lenp;
1062
1063 if (write) {
1064 if (proc_first_pos_non_zero_ignore(ppos, table))
1065 goto out;
1066
1067 if (left > PAGE_SIZE - 1)
1068 left = PAGE_SIZE - 1;
1069 p = buffer;
1070 }
1071
1072 for (; left && vleft--; i++, first = 0) {
1073 unsigned long val;
1074
1075 if (write) {
1076 bool neg;
1077
1078 proc_skip_spaces(&p, &left);
1079 if (!left)
1080 break;
1081
1082 err = proc_get_long(&p, &left, &val, &neg,
1083 proc_wspace_sep,
1084 sizeof(proc_wspace_sep), NULL);
1085 if (err || neg) {
1086 err = -EINVAL;
1087 break;
1088 }
1089
1090 val = convmul * val / convdiv;
1091 if ((min && val < *min) || (max && val > *max)) {
1092 err = -EINVAL;
1093 break;
1094 }
1095 WRITE_ONCE(*i, val);
1096 } else {
1097 val = convdiv * READ_ONCE(*i) / convmul;
1098 if (!first)
1099 proc_put_char(&buffer, &left, '\t');
1100 proc_put_long(&buffer, &left, val, false);
1101 }
1102 }
1103
1104 if (!write && !first && left && !err)
1105 proc_put_char(&buffer, &left, '\n');
1106 if (write && !err)
1107 proc_skip_spaces(&p, &left);
1108 if (write && first)
1109 return err ? : -EINVAL;
1110 *lenp -= left;
1111out:
1112 *ppos += *lenp;
1113 return err;
1114}
1115
1116static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
1117 void *buffer, size_t *lenp, loff_t *ppos, unsigned long convmul,
1118 unsigned long convdiv)
1119{
1120 return __do_proc_doulongvec_minmax(table->data, table, write,
1121 buffer, lenp, ppos, convmul, convdiv);
1122}
1123
1124/**
1125 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1126 * @table: the sysctl table
1127 * @write: %TRUE if this is a write to the sysctl file
1128 * @buffer: the user buffer
1129 * @lenp: the size of the user buffer
1130 * @ppos: file position
1131 *
1132 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1133 * values from/to the user buffer, treated as an ASCII string.
1134 *
1135 * This routine will ensure the values are within the range specified by
1136 * table->extra1 (min) and table->extra2 (max).
1137 *
1138 * Returns 0 on success.
1139 */
1140int proc_doulongvec_minmax(struct ctl_table *table, int write,
1141 void *buffer, size_t *lenp, loff_t *ppos)
1142{
1143 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
1144}
1145
1146/**
1147 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1148 * @table: the sysctl table
1149 * @write: %TRUE if this is a write to the sysctl file
1150 * @buffer: the user buffer
1151 * @lenp: the size of the user buffer
1152 * @ppos: file position
1153 *
1154 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1155 * values from/to the user buffer, treated as an ASCII string. The values
1156 * are treated as milliseconds, and converted to jiffies when they are stored.
1157 *
1158 * This routine will ensure the values are within the range specified by
1159 * table->extra1 (min) and table->extra2 (max).
1160 *
1161 * Returns 0 on success.
1162 */
1163int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1164 void *buffer, size_t *lenp, loff_t *ppos)
1165{
1166 return do_proc_doulongvec_minmax(table, write, buffer,
1167 lenp, ppos, HZ, 1000l);
1168}
1169
1170
1171static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
1172 int *valp,
1173 int write, void *data)
1174{
1175 if (write) {
1176 if (*lvalp > INT_MAX / HZ)
1177 return 1;
1178 if (*negp)
1179 WRITE_ONCE(*valp, -*lvalp * HZ);
1180 else
1181 WRITE_ONCE(*valp, *lvalp * HZ);
1182 } else {
1183 int val = READ_ONCE(*valp);
1184 unsigned long lval;
1185 if (val < 0) {
1186 *negp = true;
1187 lval = -(unsigned long)val;
1188 } else {
1189 *negp = false;
1190 lval = (unsigned long)val;
1191 }
1192 *lvalp = lval / HZ;
1193 }
1194 return 0;
1195}
1196
1197static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
1198 int *valp,
1199 int write, void *data)
1200{
1201 if (write) {
1202 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
1203 return 1;
1204 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
1205 } else {
1206 int val = *valp;
1207 unsigned long lval;
1208 if (val < 0) {
1209 *negp = true;
1210 lval = -(unsigned long)val;
1211 } else {
1212 *negp = false;
1213 lval = (unsigned long)val;
1214 }
1215 *lvalp = jiffies_to_clock_t(lval);
1216 }
1217 return 0;
1218}
1219
1220static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
1221 int *valp,
1222 int write, void *data)
1223{
1224 if (write) {
1225 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
1226
1227 if (jif > INT_MAX)
1228 return 1;
1229 WRITE_ONCE(*valp, (int)jif);
1230 } else {
1231 int val = READ_ONCE(*valp);
1232 unsigned long lval;
1233 if (val < 0) {
1234 *negp = true;
1235 lval = -(unsigned long)val;
1236 } else {
1237 *negp = false;
1238 lval = (unsigned long)val;
1239 }
1240 *lvalp = jiffies_to_msecs(lval);
1241 }
1242 return 0;
1243}
1244
1245static int do_proc_dointvec_ms_jiffies_minmax_conv(bool *negp, unsigned long *lvalp,
1246 int *valp, int write, void *data)
1247{
1248 int tmp, ret;
1249 struct do_proc_dointvec_minmax_conv_param *param = data;
1250 /*
1251 * If writing, first do so via a temporary local int so we can
1252 * bounds-check it before touching *valp.
1253 */
1254 int *ip = write ? &tmp : valp;
1255
1256 ret = do_proc_dointvec_ms_jiffies_conv(negp, lvalp, ip, write, data);
1257 if (ret)
1258 return ret;
1259
1260 if (write) {
1261 if ((param->min && *param->min > tmp) ||
1262 (param->max && *param->max < tmp))
1263 return -EINVAL;
1264 *valp = tmp;
1265 }
1266 return 0;
1267}
1268
1269/**
1270 * proc_dointvec_jiffies - read a vector of integers as seconds
1271 * @table: the sysctl table
1272 * @write: %TRUE if this is a write to the sysctl file
1273 * @buffer: the user buffer
1274 * @lenp: the size of the user buffer
1275 * @ppos: file position
1276 *
1277 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1278 * values from/to the user buffer, treated as an ASCII string.
1279 * The values read are assumed to be in seconds, and are converted into
1280 * jiffies.
1281 *
1282 * Returns 0 on success.
1283 */
1284int proc_dointvec_jiffies(struct ctl_table *table, int write,
1285 void *buffer, size_t *lenp, loff_t *ppos)
1286{
1287 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1288 do_proc_dointvec_jiffies_conv,NULL);
1289}
1290
1291int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1292 void *buffer, size_t *lenp, loff_t *ppos)
1293{
1294 struct do_proc_dointvec_minmax_conv_param param = {
1295 .min = (int *) table->extra1,
1296 .max = (int *) table->extra2,
1297 };
1298 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1299 do_proc_dointvec_ms_jiffies_minmax_conv, ¶m);
1300}
1301
1302/**
1303 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
1304 * @table: the sysctl table
1305 * @write: %TRUE if this is a write to the sysctl file
1306 * @buffer: the user buffer
1307 * @lenp: the size of the user buffer
1308 * @ppos: pointer to the file position
1309 *
1310 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1311 * values from/to the user buffer, treated as an ASCII string.
1312 * The values read are assumed to be in 1/USER_HZ seconds, and
1313 * are converted into jiffies.
1314 *
1315 * Returns 0 on success.
1316 */
1317int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1318 void *buffer, size_t *lenp, loff_t *ppos)
1319{
1320 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1321 do_proc_dointvec_userhz_jiffies_conv, NULL);
1322}
1323
1324/**
1325 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
1326 * @table: the sysctl table
1327 * @write: %TRUE if this is a write to the sysctl file
1328 * @buffer: the user buffer
1329 * @lenp: the size of the user buffer
1330 * @ppos: file position
1331 * @ppos: the current position in the file
1332 *
1333 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1334 * values from/to the user buffer, treated as an ASCII string.
1335 * The values read are assumed to be in 1/1000 seconds, and
1336 * are converted into jiffies.
1337 *
1338 * Returns 0 on success.
1339 */
1340int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, void *buffer,
1341 size_t *lenp, loff_t *ppos)
1342{
1343 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1344 do_proc_dointvec_ms_jiffies_conv, NULL);
1345}
1346
1347static int proc_do_cad_pid(struct ctl_table *table, int write, void *buffer,
1348 size_t *lenp, loff_t *ppos)
1349{
1350 struct pid *new_pid;
1351 pid_t tmp;
1352 int r;
1353
1354 tmp = pid_vnr(cad_pid);
1355
1356 r = __do_proc_dointvec(&tmp, table, write, buffer,
1357 lenp, ppos, NULL, NULL);
1358 if (r || !write)
1359 return r;
1360
1361 new_pid = find_get_pid(tmp);
1362 if (!new_pid)
1363 return -ESRCH;
1364
1365 put_pid(xchg(&cad_pid, new_pid));
1366 return 0;
1367}
1368
1369/**
1370 * proc_do_large_bitmap - read/write from/to a large bitmap
1371 * @table: the sysctl table
1372 * @write: %TRUE if this is a write to the sysctl file
1373 * @buffer: the user buffer
1374 * @lenp: the size of the user buffer
1375 * @ppos: file position
1376 *
1377 * The bitmap is stored at table->data and the bitmap length (in bits)
1378 * in table->maxlen.
1379 *
1380 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
1381 * large bitmaps may be represented in a compact manner. Writing into
1382 * the file will clear the bitmap then update it with the given input.
1383 *
1384 * Returns 0 on success.
1385 */
1386int proc_do_large_bitmap(struct ctl_table *table, int write,
1387 void *buffer, size_t *lenp, loff_t *ppos)
1388{
1389 int err = 0;
1390 size_t left = *lenp;
1391 unsigned long bitmap_len = table->maxlen;
1392 unsigned long *bitmap = *(unsigned long **) table->data;
1393 unsigned long *tmp_bitmap = NULL;
1394 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
1395
1396 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
1397 *lenp = 0;
1398 return 0;
1399 }
1400
1401 if (write) {
1402 char *p = buffer;
1403 size_t skipped = 0;
1404
1405 if (left > PAGE_SIZE - 1) {
1406 left = PAGE_SIZE - 1;
1407 /* How much of the buffer we'll skip this pass */
1408 skipped = *lenp - left;
1409 }
1410
1411 tmp_bitmap = bitmap_zalloc(bitmap_len, GFP_KERNEL);
1412 if (!tmp_bitmap)
1413 return -ENOMEM;
1414 proc_skip_char(&p, &left, '\n');
1415 while (!err && left) {
1416 unsigned long val_a, val_b;
1417 bool neg;
1418 size_t saved_left;
1419
1420 /* In case we stop parsing mid-number, we can reset */
1421 saved_left = left;
1422 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
1423 sizeof(tr_a), &c);
1424 /*
1425 * If we consumed the entirety of a truncated buffer or
1426 * only one char is left (may be a "-"), then stop here,
1427 * reset, & come back for more.
1428 */
1429 if ((left <= 1) && skipped) {
1430 left = saved_left;
1431 break;
1432 }
1433
1434 if (err)
1435 break;
1436 if (val_a >= bitmap_len || neg) {
1437 err = -EINVAL;
1438 break;
1439 }
1440
1441 val_b = val_a;
1442 if (left) {
1443 p++;
1444 left--;
1445 }
1446
1447 if (c == '-') {
1448 err = proc_get_long(&p, &left, &val_b,
1449 &neg, tr_b, sizeof(tr_b),
1450 &c);
1451 /*
1452 * If we consumed all of a truncated buffer or
1453 * then stop here, reset, & come back for more.
1454 */
1455 if (!left && skipped) {
1456 left = saved_left;
1457 break;
1458 }
1459
1460 if (err)
1461 break;
1462 if (val_b >= bitmap_len || neg ||
1463 val_a > val_b) {
1464 err = -EINVAL;
1465 break;
1466 }
1467 if (left) {
1468 p++;
1469 left--;
1470 }
1471 }
1472
1473 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
1474 proc_skip_char(&p, &left, '\n');
1475 }
1476 left += skipped;
1477 } else {
1478 unsigned long bit_a, bit_b = 0;
1479 bool first = 1;
1480
1481 while (left) {
1482 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
1483 if (bit_a >= bitmap_len)
1484 break;
1485 bit_b = find_next_zero_bit(bitmap, bitmap_len,
1486 bit_a + 1) - 1;
1487
1488 if (!first)
1489 proc_put_char(&buffer, &left, ',');
1490 proc_put_long(&buffer, &left, bit_a, false);
1491 if (bit_a != bit_b) {
1492 proc_put_char(&buffer, &left, '-');
1493 proc_put_long(&buffer, &left, bit_b, false);
1494 }
1495
1496 first = 0; bit_b++;
1497 }
1498 proc_put_char(&buffer, &left, '\n');
1499 }
1500
1501 if (!err) {
1502 if (write) {
1503 if (*ppos)
1504 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
1505 else
1506 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
1507 }
1508 *lenp -= left;
1509 *ppos += *lenp;
1510 }
1511
1512 bitmap_free(tmp_bitmap);
1513 return err;
1514}
1515
1516#else /* CONFIG_PROC_SYSCTL */
1517
1518int proc_dostring(struct ctl_table *table, int write,
1519 void *buffer, size_t *lenp, loff_t *ppos)
1520{
1521 return -ENOSYS;
1522}
1523
1524int proc_dobool(struct ctl_table *table, int write,
1525 void *buffer, size_t *lenp, loff_t *ppos)
1526{
1527 return -ENOSYS;
1528}
1529
1530int proc_dointvec(struct ctl_table *table, int write,
1531 void *buffer, size_t *lenp, loff_t *ppos)
1532{
1533 return -ENOSYS;
1534}
1535
1536int proc_douintvec(struct ctl_table *table, int write,
1537 void *buffer, size_t *lenp, loff_t *ppos)
1538{
1539 return -ENOSYS;
1540}
1541
1542int proc_dointvec_minmax(struct ctl_table *table, int write,
1543 void *buffer, size_t *lenp, loff_t *ppos)
1544{
1545 return -ENOSYS;
1546}
1547
1548int proc_douintvec_minmax(struct ctl_table *table, int write,
1549 void *buffer, size_t *lenp, loff_t *ppos)
1550{
1551 return -ENOSYS;
1552}
1553
1554int proc_dou8vec_minmax(struct ctl_table *table, int write,
1555 void *buffer, size_t *lenp, loff_t *ppos)
1556{
1557 return -ENOSYS;
1558}
1559
1560int proc_dointvec_jiffies(struct ctl_table *table, int write,
1561 void *buffer, size_t *lenp, loff_t *ppos)
1562{
1563 return -ENOSYS;
1564}
1565
1566int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1567 void *buffer, size_t *lenp, loff_t *ppos)
1568{
1569 return -ENOSYS;
1570}
1571
1572int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1573 void *buffer, size_t *lenp, loff_t *ppos)
1574{
1575 return -ENOSYS;
1576}
1577
1578int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
1579 void *buffer, size_t *lenp, loff_t *ppos)
1580{
1581 return -ENOSYS;
1582}
1583
1584int proc_doulongvec_minmax(struct ctl_table *table, int write,
1585 void *buffer, size_t *lenp, loff_t *ppos)
1586{
1587 return -ENOSYS;
1588}
1589
1590int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1591 void *buffer, size_t *lenp, loff_t *ppos)
1592{
1593 return -ENOSYS;
1594}
1595
1596int proc_do_large_bitmap(struct ctl_table *table, int write,
1597 void *buffer, size_t *lenp, loff_t *ppos)
1598{
1599 return -ENOSYS;
1600}
1601
1602#endif /* CONFIG_PROC_SYSCTL */
1603
1604#if defined(CONFIG_SYSCTL)
1605int proc_do_static_key(struct ctl_table *table, int write,
1606 void *buffer, size_t *lenp, loff_t *ppos)
1607{
1608 struct static_key *key = (struct static_key *)table->data;
1609 static DEFINE_MUTEX(static_key_mutex);
1610 int val, ret;
1611 struct ctl_table tmp = {
1612 .data = &val,
1613 .maxlen = sizeof(val),
1614 .mode = table->mode,
1615 .extra1 = SYSCTL_ZERO,
1616 .extra2 = SYSCTL_ONE,
1617 };
1618
1619 if (write && !capable(CAP_SYS_ADMIN))
1620 return -EPERM;
1621
1622 mutex_lock(&static_key_mutex);
1623 val = static_key_enabled(key);
1624 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
1625 if (write && !ret) {
1626 if (val)
1627 static_key_enable(key);
1628 else
1629 static_key_disable(key);
1630 }
1631 mutex_unlock(&static_key_mutex);
1632 return ret;
1633}
1634
1635static struct ctl_table kern_table[] = {
1636 {
1637 .procname = "panic",
1638 .data = &panic_timeout,
1639 .maxlen = sizeof(int),
1640 .mode = 0644,
1641 .proc_handler = proc_dointvec,
1642 },
1643#ifdef CONFIG_PROC_SYSCTL
1644 {
1645 .procname = "tainted",
1646 .maxlen = sizeof(long),
1647 .mode = 0644,
1648 .proc_handler = proc_taint,
1649 },
1650 {
1651 .procname = "sysctl_writes_strict",
1652 .data = &sysctl_writes_strict,
1653 .maxlen = sizeof(int),
1654 .mode = 0644,
1655 .proc_handler = proc_dointvec_minmax,
1656 .extra1 = SYSCTL_NEG_ONE,
1657 .extra2 = SYSCTL_ONE,
1658 },
1659#endif
1660 {
1661 .procname = "print-fatal-signals",
1662 .data = &print_fatal_signals,
1663 .maxlen = sizeof(int),
1664 .mode = 0644,
1665 .proc_handler = proc_dointvec,
1666 },
1667#ifdef CONFIG_SPARC
1668 {
1669 .procname = "reboot-cmd",
1670 .data = reboot_command,
1671 .maxlen = 256,
1672 .mode = 0644,
1673 .proc_handler = proc_dostring,
1674 },
1675 {
1676 .procname = "stop-a",
1677 .data = &stop_a_enabled,
1678 .maxlen = sizeof (int),
1679 .mode = 0644,
1680 .proc_handler = proc_dointvec,
1681 },
1682 {
1683 .procname = "scons-poweroff",
1684 .data = &scons_pwroff,
1685 .maxlen = sizeof (int),
1686 .mode = 0644,
1687 .proc_handler = proc_dointvec,
1688 },
1689#endif
1690#ifdef CONFIG_SPARC64
1691 {
1692 .procname = "tsb-ratio",
1693 .data = &sysctl_tsb_ratio,
1694 .maxlen = sizeof (int),
1695 .mode = 0644,
1696 .proc_handler = proc_dointvec,
1697 },
1698#endif
1699#ifdef CONFIG_PARISC
1700 {
1701 .procname = "soft-power",
1702 .data = &pwrsw_enabled,
1703 .maxlen = sizeof (int),
1704 .mode = 0644,
1705 .proc_handler = proc_dointvec,
1706 },
1707#endif
1708#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
1709 {
1710 .procname = "unaligned-trap",
1711 .data = &unaligned_enabled,
1712 .maxlen = sizeof (int),
1713 .mode = 0644,
1714 .proc_handler = proc_dointvec,
1715 },
1716#endif
1717#ifdef CONFIG_STACK_TRACER
1718 {
1719 .procname = "stack_tracer_enabled",
1720 .data = &stack_tracer_enabled,
1721 .maxlen = sizeof(int),
1722 .mode = 0644,
1723 .proc_handler = stack_trace_sysctl,
1724 },
1725#endif
1726#ifdef CONFIG_TRACING
1727 {
1728 .procname = "ftrace_dump_on_oops",
1729 .data = &ftrace_dump_on_oops,
1730 .maxlen = sizeof(int),
1731 .mode = 0644,
1732 .proc_handler = proc_dointvec,
1733 },
1734 {
1735 .procname = "traceoff_on_warning",
1736 .data = &__disable_trace_on_warning,
1737 .maxlen = sizeof(__disable_trace_on_warning),
1738 .mode = 0644,
1739 .proc_handler = proc_dointvec,
1740 },
1741 {
1742 .procname = "tracepoint_printk",
1743 .data = &tracepoint_printk,
1744 .maxlen = sizeof(tracepoint_printk),
1745 .mode = 0644,
1746 .proc_handler = tracepoint_printk_sysctl,
1747 },
1748#endif
1749#ifdef CONFIG_MODULES
1750 {
1751 .procname = "modprobe",
1752 .data = &modprobe_path,
1753 .maxlen = KMOD_PATH_LEN,
1754 .mode = 0644,
1755 .proc_handler = proc_dostring,
1756 },
1757 {
1758 .procname = "modules_disabled",
1759 .data = &modules_disabled,
1760 .maxlen = sizeof(int),
1761 .mode = 0644,
1762 /* only handle a transition from default "0" to "1" */
1763 .proc_handler = proc_dointvec_minmax,
1764 .extra1 = SYSCTL_ONE,
1765 .extra2 = SYSCTL_ONE,
1766 },
1767#endif
1768#ifdef CONFIG_UEVENT_HELPER
1769 {
1770 .procname = "hotplug",
1771 .data = &uevent_helper,
1772 .maxlen = UEVENT_HELPER_PATH_LEN,
1773 .mode = 0644,
1774 .proc_handler = proc_dostring,
1775 },
1776#endif
1777#ifdef CONFIG_MAGIC_SYSRQ
1778 {
1779 .procname = "sysrq",
1780 .data = NULL,
1781 .maxlen = sizeof (int),
1782 .mode = 0644,
1783 .proc_handler = sysrq_sysctl_handler,
1784 },
1785#endif
1786#ifdef CONFIG_PROC_SYSCTL
1787 {
1788 .procname = "cad_pid",
1789 .data = NULL,
1790 .maxlen = sizeof (int),
1791 .mode = 0600,
1792 .proc_handler = proc_do_cad_pid,
1793 },
1794#endif
1795 {
1796 .procname = "threads-max",
1797 .data = NULL,
1798 .maxlen = sizeof(int),
1799 .mode = 0644,
1800 .proc_handler = sysctl_max_threads,
1801 },
1802 {
1803 .procname = "usermodehelper",
1804 .mode = 0555,
1805 .child = usermodehelper_table,
1806 },
1807 {
1808 .procname = "overflowuid",
1809 .data = &overflowuid,
1810 .maxlen = sizeof(int),
1811 .mode = 0644,
1812 .proc_handler = proc_dointvec_minmax,
1813 .extra1 = SYSCTL_ZERO,
1814 .extra2 = SYSCTL_MAXOLDUID,
1815 },
1816 {
1817 .procname = "overflowgid",
1818 .data = &overflowgid,
1819 .maxlen = sizeof(int),
1820 .mode = 0644,
1821 .proc_handler = proc_dointvec_minmax,
1822 .extra1 = SYSCTL_ZERO,
1823 .extra2 = SYSCTL_MAXOLDUID,
1824 },
1825#ifdef CONFIG_S390
1826 {
1827 .procname = "userprocess_debug",
1828 .data = &show_unhandled_signals,
1829 .maxlen = sizeof(int),
1830 .mode = 0644,
1831 .proc_handler = proc_dointvec,
1832 },
1833#endif
1834 {
1835 .procname = "pid_max",
1836 .data = &pid_max,
1837 .maxlen = sizeof (int),
1838 .mode = 0644,
1839 .proc_handler = proc_dointvec_minmax,
1840 .extra1 = &pid_max_min,
1841 .extra2 = &pid_max_max,
1842 },
1843 {
1844 .procname = "panic_on_oops",
1845 .data = &panic_on_oops,
1846 .maxlen = sizeof(int),
1847 .mode = 0644,
1848 .proc_handler = proc_dointvec,
1849 },
1850 {
1851 .procname = "panic_print",
1852 .data = &panic_print,
1853 .maxlen = sizeof(unsigned long),
1854 .mode = 0644,
1855 .proc_handler = proc_doulongvec_minmax,
1856 },
1857 {
1858 .procname = "ngroups_max",
1859 .data = (void *)&ngroups_max,
1860 .maxlen = sizeof (int),
1861 .mode = 0444,
1862 .proc_handler = proc_dointvec,
1863 },
1864 {
1865 .procname = "cap_last_cap",
1866 .data = (void *)&cap_last_cap,
1867 .maxlen = sizeof(int),
1868 .mode = 0444,
1869 .proc_handler = proc_dointvec,
1870 },
1871#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
1872 {
1873 .procname = "unknown_nmi_panic",
1874 .data = &unknown_nmi_panic,
1875 .maxlen = sizeof (int),
1876 .mode = 0644,
1877 .proc_handler = proc_dointvec,
1878 },
1879#endif
1880
1881#if (defined(CONFIG_X86_32) || defined(CONFIG_PARISC)) && \
1882 defined(CONFIG_DEBUG_STACKOVERFLOW)
1883 {
1884 .procname = "panic_on_stackoverflow",
1885 .data = &sysctl_panic_on_stackoverflow,
1886 .maxlen = sizeof(int),
1887 .mode = 0644,
1888 .proc_handler = proc_dointvec,
1889 },
1890#endif
1891#if defined(CONFIG_X86)
1892 {
1893 .procname = "panic_on_unrecovered_nmi",
1894 .data = &panic_on_unrecovered_nmi,
1895 .maxlen = sizeof(int),
1896 .mode = 0644,
1897 .proc_handler = proc_dointvec,
1898 },
1899 {
1900 .procname = "panic_on_io_nmi",
1901 .data = &panic_on_io_nmi,
1902 .maxlen = sizeof(int),
1903 .mode = 0644,
1904 .proc_handler = proc_dointvec,
1905 },
1906 {
1907 .procname = "bootloader_type",
1908 .data = &bootloader_type,
1909 .maxlen = sizeof (int),
1910 .mode = 0444,
1911 .proc_handler = proc_dointvec,
1912 },
1913 {
1914 .procname = "bootloader_version",
1915 .data = &bootloader_version,
1916 .maxlen = sizeof (int),
1917 .mode = 0444,
1918 .proc_handler = proc_dointvec,
1919 },
1920 {
1921 .procname = "io_delay_type",
1922 .data = &io_delay_type,
1923 .maxlen = sizeof(int),
1924 .mode = 0644,
1925 .proc_handler = proc_dointvec,
1926 },
1927#endif
1928#if defined(CONFIG_MMU)
1929 {
1930 .procname = "randomize_va_space",
1931 .data = &randomize_va_space,
1932 .maxlen = sizeof(int),
1933 .mode = 0644,
1934 .proc_handler = proc_dointvec,
1935 },
1936#endif
1937#if defined(CONFIG_S390) && defined(CONFIG_SMP)
1938 {
1939 .procname = "spin_retry",
1940 .data = &spin_retry,
1941 .maxlen = sizeof (int),
1942 .mode = 0644,
1943 .proc_handler = proc_dointvec,
1944 },
1945#endif
1946#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
1947 {
1948 .procname = "acpi_video_flags",
1949 .data = &acpi_realmode_flags,
1950 .maxlen = sizeof (unsigned long),
1951 .mode = 0644,
1952 .proc_handler = proc_doulongvec_minmax,
1953 },
1954#endif
1955#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
1956 {
1957 .procname = "ignore-unaligned-usertrap",
1958 .data = &no_unaligned_warning,
1959 .maxlen = sizeof (int),
1960 .mode = 0644,
1961 .proc_handler = proc_dointvec,
1962 },
1963#endif
1964#ifdef CONFIG_IA64
1965 {
1966 .procname = "unaligned-dump-stack",
1967 .data = &unaligned_dump_stack,
1968 .maxlen = sizeof (int),
1969 .mode = 0644,
1970 .proc_handler = proc_dointvec,
1971 },
1972#endif
1973#ifdef CONFIG_RT_MUTEXES
1974 {
1975 .procname = "max_lock_depth",
1976 .data = &max_lock_depth,
1977 .maxlen = sizeof(int),
1978 .mode = 0644,
1979 .proc_handler = proc_dointvec,
1980 },
1981#endif
1982#ifdef CONFIG_KEYS
1983 {
1984 .procname = "keys",
1985 .mode = 0555,
1986 .child = key_sysctls,
1987 },
1988#endif
1989#ifdef CONFIG_PERF_EVENTS
1990 /*
1991 * User-space scripts rely on the existence of this file
1992 * as a feature check for perf_events being enabled.
1993 *
1994 * So it's an ABI, do not remove!
1995 */
1996 {
1997 .procname = "perf_event_paranoid",
1998 .data = &sysctl_perf_event_paranoid,
1999 .maxlen = sizeof(sysctl_perf_event_paranoid),
2000 .mode = 0644,
2001 .proc_handler = proc_dointvec,
2002 },
2003 {
2004 .procname = "perf_event_mlock_kb",
2005 .data = &sysctl_perf_event_mlock,
2006 .maxlen = sizeof(sysctl_perf_event_mlock),
2007 .mode = 0644,
2008 .proc_handler = proc_dointvec,
2009 },
2010 {
2011 .procname = "perf_event_max_sample_rate",
2012 .data = &sysctl_perf_event_sample_rate,
2013 .maxlen = sizeof(sysctl_perf_event_sample_rate),
2014 .mode = 0644,
2015 .proc_handler = perf_proc_update_handler,
2016 .extra1 = SYSCTL_ONE,
2017 },
2018 {
2019 .procname = "perf_cpu_time_max_percent",
2020 .data = &sysctl_perf_cpu_time_max_percent,
2021 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
2022 .mode = 0644,
2023 .proc_handler = perf_cpu_time_max_percent_handler,
2024 .extra1 = SYSCTL_ZERO,
2025 .extra2 = SYSCTL_ONE_HUNDRED,
2026 },
2027 {
2028 .procname = "perf_event_max_stack",
2029 .data = &sysctl_perf_event_max_stack,
2030 .maxlen = sizeof(sysctl_perf_event_max_stack),
2031 .mode = 0644,
2032 .proc_handler = perf_event_max_stack_handler,
2033 .extra1 = SYSCTL_ZERO,
2034 .extra2 = (void *)&six_hundred_forty_kb,
2035 },
2036 {
2037 .procname = "perf_event_max_contexts_per_stack",
2038 .data = &sysctl_perf_event_max_contexts_per_stack,
2039 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
2040 .mode = 0644,
2041 .proc_handler = perf_event_max_stack_handler,
2042 .extra1 = SYSCTL_ZERO,
2043 .extra2 = SYSCTL_ONE_THOUSAND,
2044 },
2045#endif
2046 {
2047 .procname = "panic_on_warn",
2048 .data = &panic_on_warn,
2049 .maxlen = sizeof(int),
2050 .mode = 0644,
2051 .proc_handler = proc_dointvec_minmax,
2052 .extra1 = SYSCTL_ZERO,
2053 .extra2 = SYSCTL_ONE,
2054 },
2055#ifdef CONFIG_TREE_RCU
2056 {
2057 .procname = "panic_on_rcu_stall",
2058 .data = &sysctl_panic_on_rcu_stall,
2059 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
2060 .mode = 0644,
2061 .proc_handler = proc_dointvec_minmax,
2062 .extra1 = SYSCTL_ZERO,
2063 .extra2 = SYSCTL_ONE,
2064 },
2065 {
2066 .procname = "max_rcu_stall_to_panic",
2067 .data = &sysctl_max_rcu_stall_to_panic,
2068 .maxlen = sizeof(sysctl_max_rcu_stall_to_panic),
2069 .mode = 0644,
2070 .proc_handler = proc_dointvec_minmax,
2071 .extra1 = SYSCTL_ONE,
2072 .extra2 = SYSCTL_INT_MAX,
2073 },
2074#endif
2075 { }
2076};
2077
2078static struct ctl_table vm_table[] = {
2079 {
2080 .procname = "overcommit_memory",
2081 .data = &sysctl_overcommit_memory,
2082 .maxlen = sizeof(sysctl_overcommit_memory),
2083 .mode = 0644,
2084 .proc_handler = overcommit_policy_handler,
2085 .extra1 = SYSCTL_ZERO,
2086 .extra2 = SYSCTL_TWO,
2087 },
2088 {
2089 .procname = "overcommit_ratio",
2090 .data = &sysctl_overcommit_ratio,
2091 .maxlen = sizeof(sysctl_overcommit_ratio),
2092 .mode = 0644,
2093 .proc_handler = overcommit_ratio_handler,
2094 },
2095 {
2096 .procname = "overcommit_kbytes",
2097 .data = &sysctl_overcommit_kbytes,
2098 .maxlen = sizeof(sysctl_overcommit_kbytes),
2099 .mode = 0644,
2100 .proc_handler = overcommit_kbytes_handler,
2101 },
2102 {
2103 .procname = "page-cluster",
2104 .data = &page_cluster,
2105 .maxlen = sizeof(int),
2106 .mode = 0644,
2107 .proc_handler = proc_dointvec_minmax,
2108 .extra1 = SYSCTL_ZERO,
2109 .extra2 = (void *)&page_cluster_max,
2110 },
2111 {
2112 .procname = "dirtytime_expire_seconds",
2113 .data = &dirtytime_expire_interval,
2114 .maxlen = sizeof(dirtytime_expire_interval),
2115 .mode = 0644,
2116 .proc_handler = dirtytime_interval_handler,
2117 .extra1 = SYSCTL_ZERO,
2118 },
2119 {
2120 .procname = "swappiness",
2121 .data = &vm_swappiness,
2122 .maxlen = sizeof(vm_swappiness),
2123 .mode = 0644,
2124 .proc_handler = proc_dointvec_minmax,
2125 .extra1 = SYSCTL_ZERO,
2126 .extra2 = SYSCTL_TWO_HUNDRED,
2127 },
2128#ifdef CONFIG_NUMA
2129 {
2130 .procname = "numa_stat",
2131 .data = &sysctl_vm_numa_stat,
2132 .maxlen = sizeof(int),
2133 .mode = 0644,
2134 .proc_handler = sysctl_vm_numa_stat_handler,
2135 .extra1 = SYSCTL_ZERO,
2136 .extra2 = SYSCTL_ONE,
2137 },
2138#endif
2139#ifdef CONFIG_HUGETLB_PAGE
2140 {
2141 .procname = "nr_hugepages",
2142 .data = NULL,
2143 .maxlen = sizeof(unsigned long),
2144 .mode = 0644,
2145 .proc_handler = hugetlb_sysctl_handler,
2146 },
2147#ifdef CONFIG_NUMA
2148 {
2149 .procname = "nr_hugepages_mempolicy",
2150 .data = NULL,
2151 .maxlen = sizeof(unsigned long),
2152 .mode = 0644,
2153 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
2154 },
2155#endif
2156 {
2157 .procname = "hugetlb_shm_group",
2158 .data = &sysctl_hugetlb_shm_group,
2159 .maxlen = sizeof(gid_t),
2160 .mode = 0644,
2161 .proc_handler = proc_dointvec,
2162 },
2163 {
2164 .procname = "nr_overcommit_hugepages",
2165 .data = NULL,
2166 .maxlen = sizeof(unsigned long),
2167 .mode = 0644,
2168 .proc_handler = hugetlb_overcommit_handler,
2169 },
2170#endif
2171 {
2172 .procname = "lowmem_reserve_ratio",
2173 .data = &sysctl_lowmem_reserve_ratio,
2174 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
2175 .mode = 0644,
2176 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
2177 },
2178 {
2179 .procname = "drop_caches",
2180 .data = &sysctl_drop_caches,
2181 .maxlen = sizeof(int),
2182 .mode = 0200,
2183 .proc_handler = drop_caches_sysctl_handler,
2184 .extra1 = SYSCTL_ONE,
2185 .extra2 = SYSCTL_FOUR,
2186 },
2187#ifdef CONFIG_COMPACTION
2188 {
2189 .procname = "compact_memory",
2190 .data = NULL,
2191 .maxlen = sizeof(int),
2192 .mode = 0200,
2193 .proc_handler = sysctl_compaction_handler,
2194 },
2195 {
2196 .procname = "compaction_proactiveness",
2197 .data = &sysctl_compaction_proactiveness,
2198 .maxlen = sizeof(sysctl_compaction_proactiveness),
2199 .mode = 0644,
2200 .proc_handler = compaction_proactiveness_sysctl_handler,
2201 .extra1 = SYSCTL_ZERO,
2202 .extra2 = SYSCTL_ONE_HUNDRED,
2203 },
2204 {
2205 .procname = "extfrag_threshold",
2206 .data = &sysctl_extfrag_threshold,
2207 .maxlen = sizeof(int),
2208 .mode = 0644,
2209 .proc_handler = proc_dointvec_minmax,
2210 .extra1 = SYSCTL_ZERO,
2211 .extra2 = SYSCTL_ONE_THOUSAND,
2212 },
2213 {
2214 .procname = "compact_unevictable_allowed",
2215 .data = &sysctl_compact_unevictable_allowed,
2216 .maxlen = sizeof(int),
2217 .mode = 0644,
2218 .proc_handler = proc_dointvec_minmax_warn_RT_change,
2219 .extra1 = SYSCTL_ZERO,
2220 .extra2 = SYSCTL_ONE,
2221 },
2222
2223#endif /* CONFIG_COMPACTION */
2224 {
2225 .procname = "min_free_kbytes",
2226 .data = &min_free_kbytes,
2227 .maxlen = sizeof(min_free_kbytes),
2228 .mode = 0644,
2229 .proc_handler = min_free_kbytes_sysctl_handler,
2230 .extra1 = SYSCTL_ZERO,
2231 },
2232 {
2233 .procname = "watermark_boost_factor",
2234 .data = &watermark_boost_factor,
2235 .maxlen = sizeof(watermark_boost_factor),
2236 .mode = 0644,
2237 .proc_handler = proc_dointvec_minmax,
2238 .extra1 = SYSCTL_ZERO,
2239 },
2240 {
2241 .procname = "watermark_scale_factor",
2242 .data = &watermark_scale_factor,
2243 .maxlen = sizeof(watermark_scale_factor),
2244 .mode = 0644,
2245 .proc_handler = watermark_scale_factor_sysctl_handler,
2246 .extra1 = SYSCTL_ONE,
2247 .extra2 = SYSCTL_THREE_THOUSAND,
2248 },
2249 {
2250 .procname = "percpu_pagelist_high_fraction",
2251 .data = &percpu_pagelist_high_fraction,
2252 .maxlen = sizeof(percpu_pagelist_high_fraction),
2253 .mode = 0644,
2254 .proc_handler = percpu_pagelist_high_fraction_sysctl_handler,
2255 .extra1 = SYSCTL_ZERO,
2256 },
2257 {
2258 .procname = "page_lock_unfairness",
2259 .data = &sysctl_page_lock_unfairness,
2260 .maxlen = sizeof(sysctl_page_lock_unfairness),
2261 .mode = 0644,
2262 .proc_handler = proc_dointvec_minmax,
2263 .extra1 = SYSCTL_ZERO,
2264 },
2265#ifdef CONFIG_MMU
2266 {
2267 .procname = "max_map_count",
2268 .data = &sysctl_max_map_count,
2269 .maxlen = sizeof(sysctl_max_map_count),
2270 .mode = 0644,
2271 .proc_handler = proc_dointvec_minmax,
2272 .extra1 = SYSCTL_ZERO,
2273 },
2274#else
2275 {
2276 .procname = "nr_trim_pages",
2277 .data = &sysctl_nr_trim_pages,
2278 .maxlen = sizeof(sysctl_nr_trim_pages),
2279 .mode = 0644,
2280 .proc_handler = proc_dointvec_minmax,
2281 .extra1 = SYSCTL_ZERO,
2282 },
2283#endif
2284 {
2285 .procname = "vfs_cache_pressure",
2286 .data = &sysctl_vfs_cache_pressure,
2287 .maxlen = sizeof(sysctl_vfs_cache_pressure),
2288 .mode = 0644,
2289 .proc_handler = proc_dointvec_minmax,
2290 .extra1 = SYSCTL_ZERO,
2291 },
2292#if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
2293 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
2294 {
2295 .procname = "legacy_va_layout",
2296 .data = &sysctl_legacy_va_layout,
2297 .maxlen = sizeof(sysctl_legacy_va_layout),
2298 .mode = 0644,
2299 .proc_handler = proc_dointvec_minmax,
2300 .extra1 = SYSCTL_ZERO,
2301 },
2302#endif
2303#ifdef CONFIG_NUMA
2304 {
2305 .procname = "zone_reclaim_mode",
2306 .data = &node_reclaim_mode,
2307 .maxlen = sizeof(node_reclaim_mode),
2308 .mode = 0644,
2309 .proc_handler = proc_dointvec_minmax,
2310 .extra1 = SYSCTL_ZERO,
2311 },
2312 {
2313 .procname = "min_unmapped_ratio",
2314 .data = &sysctl_min_unmapped_ratio,
2315 .maxlen = sizeof(sysctl_min_unmapped_ratio),
2316 .mode = 0644,
2317 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
2318 .extra1 = SYSCTL_ZERO,
2319 .extra2 = SYSCTL_ONE_HUNDRED,
2320 },
2321 {
2322 .procname = "min_slab_ratio",
2323 .data = &sysctl_min_slab_ratio,
2324 .maxlen = sizeof(sysctl_min_slab_ratio),
2325 .mode = 0644,
2326 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
2327 .extra1 = SYSCTL_ZERO,
2328 .extra2 = SYSCTL_ONE_HUNDRED,
2329 },
2330#endif
2331#ifdef CONFIG_SMP
2332 {
2333 .procname = "stat_interval",
2334 .data = &sysctl_stat_interval,
2335 .maxlen = sizeof(sysctl_stat_interval),
2336 .mode = 0644,
2337 .proc_handler = proc_dointvec_jiffies,
2338 },
2339 {
2340 .procname = "stat_refresh",
2341 .data = NULL,
2342 .maxlen = 0,
2343 .mode = 0600,
2344 .proc_handler = vmstat_refresh,
2345 },
2346#endif
2347#ifdef CONFIG_MMU
2348 {
2349 .procname = "mmap_min_addr",
2350 .data = &dac_mmap_min_addr,
2351 .maxlen = sizeof(unsigned long),
2352 .mode = 0644,
2353 .proc_handler = mmap_min_addr_handler,
2354 },
2355#endif
2356#ifdef CONFIG_NUMA
2357 {
2358 .procname = "numa_zonelist_order",
2359 .data = &numa_zonelist_order,
2360 .maxlen = NUMA_ZONELIST_ORDER_LEN,
2361 .mode = 0644,
2362 .proc_handler = numa_zonelist_order_handler,
2363 },
2364#endif
2365#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
2366 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
2367 {
2368 .procname = "vdso_enabled",
2369#ifdef CONFIG_X86_32
2370 .data = &vdso32_enabled,
2371 .maxlen = sizeof(vdso32_enabled),
2372#else
2373 .data = &vdso_enabled,
2374 .maxlen = sizeof(vdso_enabled),
2375#endif
2376 .mode = 0644,
2377 .proc_handler = proc_dointvec,
2378 .extra1 = SYSCTL_ZERO,
2379 },
2380#endif
2381#ifdef CONFIG_MEMORY_FAILURE
2382 {
2383 .procname = "memory_failure_early_kill",
2384 .data = &sysctl_memory_failure_early_kill,
2385 .maxlen = sizeof(sysctl_memory_failure_early_kill),
2386 .mode = 0644,
2387 .proc_handler = proc_dointvec_minmax,
2388 .extra1 = SYSCTL_ZERO,
2389 .extra2 = SYSCTL_ONE,
2390 },
2391 {
2392 .procname = "memory_failure_recovery",
2393 .data = &sysctl_memory_failure_recovery,
2394 .maxlen = sizeof(sysctl_memory_failure_recovery),
2395 .mode = 0644,
2396 .proc_handler = proc_dointvec_minmax,
2397 .extra1 = SYSCTL_ZERO,
2398 .extra2 = SYSCTL_ONE,
2399 },
2400#endif
2401 {
2402 .procname = "user_reserve_kbytes",
2403 .data = &sysctl_user_reserve_kbytes,
2404 .maxlen = sizeof(sysctl_user_reserve_kbytes),
2405 .mode = 0644,
2406 .proc_handler = proc_doulongvec_minmax,
2407 },
2408 {
2409 .procname = "admin_reserve_kbytes",
2410 .data = &sysctl_admin_reserve_kbytes,
2411 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
2412 .mode = 0644,
2413 .proc_handler = proc_doulongvec_minmax,
2414 },
2415#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
2416 {
2417 .procname = "mmap_rnd_bits",
2418 .data = &mmap_rnd_bits,
2419 .maxlen = sizeof(mmap_rnd_bits),
2420 .mode = 0600,
2421 .proc_handler = proc_dointvec_minmax,
2422 .extra1 = (void *)&mmap_rnd_bits_min,
2423 .extra2 = (void *)&mmap_rnd_bits_max,
2424 },
2425#endif
2426#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
2427 {
2428 .procname = "mmap_rnd_compat_bits",
2429 .data = &mmap_rnd_compat_bits,
2430 .maxlen = sizeof(mmap_rnd_compat_bits),
2431 .mode = 0600,
2432 .proc_handler = proc_dointvec_minmax,
2433 .extra1 = (void *)&mmap_rnd_compat_bits_min,
2434 .extra2 = (void *)&mmap_rnd_compat_bits_max,
2435 },
2436#endif
2437#ifdef CONFIG_USERFAULTFD
2438 {
2439 .procname = "unprivileged_userfaultfd",
2440 .data = &sysctl_unprivileged_userfaultfd,
2441 .maxlen = sizeof(sysctl_unprivileged_userfaultfd),
2442 .mode = 0644,
2443 .proc_handler = proc_dointvec_minmax,
2444 .extra1 = SYSCTL_ZERO,
2445 .extra2 = SYSCTL_ONE,
2446 },
2447#endif
2448 { }
2449};
2450
2451static struct ctl_table debug_table[] = {
2452#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
2453 {
2454 .procname = "exception-trace",
2455 .data = &show_unhandled_signals,
2456 .maxlen = sizeof(int),
2457 .mode = 0644,
2458 .proc_handler = proc_dointvec
2459 },
2460#endif
2461 { }
2462};
2463
2464static struct ctl_table dev_table[] = {
2465 { }
2466};
2467
2468DECLARE_SYSCTL_BASE(kernel, kern_table);
2469DECLARE_SYSCTL_BASE(vm, vm_table);
2470DECLARE_SYSCTL_BASE(debug, debug_table);
2471DECLARE_SYSCTL_BASE(dev, dev_table);
2472
2473int __init sysctl_init_bases(void)
2474{
2475 register_sysctl_base(kernel);
2476 register_sysctl_base(vm);
2477 register_sysctl_base(debug);
2478 register_sysctl_base(dev);
2479
2480 return 0;
2481}
2482#endif /* CONFIG_SYSCTL */
2483/*
2484 * No sense putting this after each symbol definition, twice,
2485 * exception granted :-)
2486 */
2487EXPORT_SYMBOL(proc_dobool);
2488EXPORT_SYMBOL(proc_dointvec);
2489EXPORT_SYMBOL(proc_douintvec);
2490EXPORT_SYMBOL(proc_dointvec_jiffies);
2491EXPORT_SYMBOL(proc_dointvec_minmax);
2492EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
2493EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2494EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2495EXPORT_SYMBOL(proc_dostring);
2496EXPORT_SYMBOL(proc_doulongvec_minmax);
2497EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
2498EXPORT_SYMBOL(proc_do_large_bitmap);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * sysctl.c: General linux system control interface
4 *
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
13 * Horn.
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
17 * Wendling.
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
20 */
21
22#include <linux/module.h>
23#include <linux/aio.h>
24#include <linux/mm.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>
35#include <linux/fs.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>
74
75#include "../lib/kstrtox.h"
76
77#include <linux/uaccess.h>
78#include <asm/processor.h>
79
80#ifdef CONFIG_X86
81#include <asm/nmi.h>
82#include <asm/stacktrace.h>
83#include <asm/io.h>
84#endif
85#ifdef CONFIG_SPARC
86#include <asm/setup.h>
87#endif
88#ifdef CONFIG_BSD_PROCESS_ACCT
89#include <linux/acct.h>
90#endif
91#ifdef CONFIG_RT_MUTEXES
92#include <linux/rtmutex.h>
93#endif
94#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
95#include <linux/lockdep.h>
96#endif
97#ifdef CONFIG_CHR_DEV_SG
98#include <scsi/sg.h>
99#endif
100#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
101#include <linux/stackleak.h>
102#endif
103#ifdef CONFIG_LOCKUP_DETECTOR
104#include <linux/nmi.h>
105#endif
106
107#if defined(CONFIG_SYSCTL)
108
109/* Constants used for minimum and maximum */
110#ifdef CONFIG_LOCKUP_DETECTOR
111static int sixty = 60;
112#endif
113
114static int __maybe_unused neg_one = -1;
115static int __maybe_unused two = 2;
116static int __maybe_unused four = 4;
117static unsigned long zero_ul;
118static unsigned long one_ul = 1;
119static unsigned long long_max = LONG_MAX;
120static int one_hundred = 100;
121static int two_hundred = 200;
122static int one_thousand = 1000;
123#ifdef CONFIG_PRINTK
124static int ten_thousand = 10000;
125#endif
126#ifdef CONFIG_PERF_EVENTS
127static int six_hundred_forty_kb = 640 * 1024;
128#endif
129
130/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
131static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
132
133/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
134static int maxolduid = 65535;
135static int minolduid;
136
137static int ngroups_max = NGROUPS_MAX;
138static const int cap_last_cap = CAP_LAST_CAP;
139
140/*
141 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
142 * and hung_task_check_interval_secs
143 */
144#ifdef CONFIG_DETECT_HUNG_TASK
145static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
146#endif
147
148#ifdef CONFIG_INOTIFY_USER
149#include <linux/inotify.h>
150#endif
151
152#ifdef CONFIG_PROC_SYSCTL
153
154/**
155 * enum sysctl_writes_mode - supported sysctl write modes
156 *
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
162 * not 0.
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
168 * to the buffer.
169 *
170 * These write modes control how current file position affects the behavior of
171 * updating sysctl values through the proc interface on each write.
172 */
173enum sysctl_writes_mode {
174 SYSCTL_WRITES_LEGACY = -1,
175 SYSCTL_WRITES_WARN = 0,
176 SYSCTL_WRITES_STRICT = 1,
177};
178
179static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
180#endif /* CONFIG_PROC_SYSCTL */
181
182#if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
183 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
184int sysctl_legacy_va_layout;
185#endif
186
187#ifdef CONFIG_SCHED_DEBUG
188static int min_sched_granularity_ns = 100000; /* 100 usecs */
189static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
190static int min_wakeup_granularity_ns; /* 0 usecs */
191static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
192#ifdef CONFIG_SMP
193static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
194static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
195#endif /* CONFIG_SMP */
196#endif /* CONFIG_SCHED_DEBUG */
197
198#ifdef CONFIG_COMPACTION
199static int min_extfrag_threshold;
200static int max_extfrag_threshold = 1000;
201#endif
202
203#endif /* CONFIG_SYSCTL */
204
205#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_SYSCTL)
206static int bpf_stats_handler(struct ctl_table *table, int write,
207 void *buffer, size_t *lenp, loff_t *ppos)
208{
209 struct static_key *key = (struct static_key *)table->data;
210 static int saved_val;
211 int val, ret;
212 struct ctl_table tmp = {
213 .data = &val,
214 .maxlen = sizeof(val),
215 .mode = table->mode,
216 .extra1 = SYSCTL_ZERO,
217 .extra2 = SYSCTL_ONE,
218 };
219
220 if (write && !capable(CAP_SYS_ADMIN))
221 return -EPERM;
222
223 mutex_lock(&bpf_stats_enabled_mutex);
224 val = saved_val;
225 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
226 if (write && !ret && val != saved_val) {
227 if (val)
228 static_key_slow_inc(key);
229 else
230 static_key_slow_dec(key);
231 saved_val = val;
232 }
233 mutex_unlock(&bpf_stats_enabled_mutex);
234 return ret;
235}
236#endif
237
238/*
239 * /proc/sys support
240 */
241
242#ifdef CONFIG_PROC_SYSCTL
243
244static int _proc_do_string(char *data, int maxlen, int write,
245 char *buffer, size_t *lenp, loff_t *ppos)
246{
247 size_t len;
248 char c, *p;
249
250 if (!data || !maxlen || !*lenp) {
251 *lenp = 0;
252 return 0;
253 }
254
255 if (write) {
256 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
257 /* Only continue writes not past the end of buffer. */
258 len = strlen(data);
259 if (len > maxlen - 1)
260 len = maxlen - 1;
261
262 if (*ppos > len)
263 return 0;
264 len = *ppos;
265 } else {
266 /* Start writing from beginning of buffer. */
267 len = 0;
268 }
269
270 *ppos += *lenp;
271 p = buffer;
272 while ((p - buffer) < *lenp && len < maxlen - 1) {
273 c = *(p++);
274 if (c == 0 || c == '\n')
275 break;
276 data[len++] = c;
277 }
278 data[len] = 0;
279 } else {
280 len = strlen(data);
281 if (len > maxlen)
282 len = maxlen;
283
284 if (*ppos > len) {
285 *lenp = 0;
286 return 0;
287 }
288
289 data += *ppos;
290 len -= *ppos;
291
292 if (len > *lenp)
293 len = *lenp;
294 if (len)
295 memcpy(buffer, data, len);
296 if (len < *lenp) {
297 buffer[len] = '\n';
298 len++;
299 }
300 *lenp = len;
301 *ppos += len;
302 }
303 return 0;
304}
305
306static void warn_sysctl_write(struct ctl_table *table)
307{
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);
312}
313
314/**
315 * proc_first_pos_non_zero_ignore - check if first position is allowed
316 * @ppos: file position
317 * @table: the sysctl table
318 *
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.
322 */
323static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
324 struct ctl_table *table)
325{
326 if (!*ppos)
327 return false;
328
329 switch (sysctl_writes_strict) {
330 case SYSCTL_WRITES_STRICT:
331 return true;
332 case SYSCTL_WRITES_WARN:
333 warn_sysctl_write(table);
334 return false;
335 default:
336 return false;
337 }
338}
339
340/**
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
347 *
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
353 * not large enough.
354 *
355 * Returns 0 on success.
356 */
357int proc_dostring(struct ctl_table *table, int write,
358 void *buffer, size_t *lenp, loff_t *ppos)
359{
360 if (write)
361 proc_first_pos_non_zero_ignore(ppos, table);
362
363 return _proc_do_string(table->data, table->maxlen, write, buffer, lenp,
364 ppos);
365}
366
367static size_t proc_skip_spaces(char **buf)
368{
369 size_t ret;
370 char *tmp = skip_spaces(*buf);
371 ret = tmp - *buf;
372 *buf = tmp;
373 return ret;
374}
375
376static void proc_skip_char(char **buf, size_t *size, const char v)
377{
378 while (*size) {
379 if (**buf != v)
380 break;
381 (*size)--;
382 (*buf)++;
383 }
384}
385
386/**
387 * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
388 * fail on overflow
389 *
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
394 *
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
399 * caller.
400 */
401static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
402 unsigned long *res)
403{
404 unsigned long long result;
405 unsigned int rv;
406
407 cp = _parse_integer_fixup_radix(cp, &base);
408 rv = _parse_integer(cp, base, &result);
409 if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
410 return -ERANGE;
411
412 cp += rv;
413
414 if (endp)
415 *endp = (char *)cp;
416
417 *res = (unsigned long)result;
418 return 0;
419}
420
421#define TMPBUFLEN 22
422/**
423 * proc_get_long - reads an ASCII formatted integer from a user buffer
424 *
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
432 *
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.
437 */
438static 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)
441{
442 int len;
443 char *p, tmp[TMPBUFLEN];
444
445 if (!*size)
446 return -EINVAL;
447
448 len = *size;
449 if (len > TMPBUFLEN - 1)
450 len = TMPBUFLEN - 1;
451
452 memcpy(tmp, *buf, len);
453
454 tmp[len] = 0;
455 p = tmp;
456 if (*p == '-' && *size > 1) {
457 *neg = true;
458 p++;
459 } else
460 *neg = false;
461 if (!isdigit(*p))
462 return -EINVAL;
463
464 if (strtoul_lenient(p, &p, 0, val))
465 return -EINVAL;
466
467 len = p - tmp;
468
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)
473 return -EINVAL;
474
475 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
476 return -EINVAL;
477
478 if (tr && (len < *size))
479 *tr = *p;
480
481 *buf += len;
482 *size -= len;
483
484 return 0;
485}
486
487/**
488 * proc_put_long - converts an integer to a decimal ASCII formatted string
489 *
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
494 *
495 * In case of success @buf and @size are updated with the amount of bytes
496 * written.
497 */
498static void proc_put_long(void **buf, size_t *size, unsigned long val, bool neg)
499{
500 int len;
501 char tmp[TMPBUFLEN], *p = tmp;
502
503 sprintf(p, "%s%lu", neg ? "-" : "", val);
504 len = strlen(tmp);
505 if (len > *size)
506 len = *size;
507 memcpy(*buf, tmp, len);
508 *size -= len;
509 *buf += len;
510}
511#undef TMPBUFLEN
512
513static void proc_put_char(void **buf, size_t *size, char c)
514{
515 if (*size) {
516 char **buffer = (char **)buf;
517 **buffer = c;
518
519 (*size)--;
520 (*buffer)++;
521 *buf = *buffer;
522 }
523}
524
525static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
526 int *valp,
527 int write, void *data)
528{
529 if (write) {
530 if (*negp) {
531 if (*lvalp > (unsigned long) INT_MAX + 1)
532 return -EINVAL;
533 *valp = -*lvalp;
534 } else {
535 if (*lvalp > (unsigned long) INT_MAX)
536 return -EINVAL;
537 *valp = *lvalp;
538 }
539 } else {
540 int val = *valp;
541 if (val < 0) {
542 *negp = true;
543 *lvalp = -(unsigned long)val;
544 } else {
545 *negp = false;
546 *lvalp = (unsigned long)val;
547 }
548 }
549 return 0;
550}
551
552static int do_proc_douintvec_conv(unsigned long *lvalp,
553 unsigned int *valp,
554 int write, void *data)
555{
556 if (write) {
557 if (*lvalp > UINT_MAX)
558 return -EINVAL;
559 *valp = *lvalp;
560 } else {
561 unsigned int val = *valp;
562 *lvalp = (unsigned long)val;
563 }
564 return 0;
565}
566
567static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
568
569static 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),
574 void *data)
575{
576 int *i, vleft, first = 1, err = 0;
577 size_t left;
578 char *p;
579
580 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
581 *lenp = 0;
582 return 0;
583 }
584
585 i = (int *) tbl_data;
586 vleft = table->maxlen / sizeof(*i);
587 left = *lenp;
588
589 if (!conv)
590 conv = do_proc_dointvec_conv;
591
592 if (write) {
593 if (proc_first_pos_non_zero_ignore(ppos, table))
594 goto out;
595
596 if (left > PAGE_SIZE - 1)
597 left = PAGE_SIZE - 1;
598 p = buffer;
599 }
600
601 for (; left && vleft--; i++, first=0) {
602 unsigned long lval;
603 bool neg;
604
605 if (write) {
606 left -= proc_skip_spaces(&p);
607
608 if (!left)
609 break;
610 err = proc_get_long(&p, &left, &lval, &neg,
611 proc_wspace_sep,
612 sizeof(proc_wspace_sep), NULL);
613 if (err)
614 break;
615 if (conv(&neg, &lval, i, 1, data)) {
616 err = -EINVAL;
617 break;
618 }
619 } else {
620 if (conv(&neg, &lval, i, 0, data)) {
621 err = -EINVAL;
622 break;
623 }
624 if (!first)
625 proc_put_char(&buffer, &left, '\t');
626 proc_put_long(&buffer, &left, lval, neg);
627 }
628 }
629
630 if (!write && !first && left && !err)
631 proc_put_char(&buffer, &left, '\n');
632 if (write && !err && left)
633 left -= proc_skip_spaces(&p);
634 if (write && first)
635 return err ? : -EINVAL;
636 *lenp -= left;
637out:
638 *ppos += *lenp;
639 return err;
640}
641
642static 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),
646 void *data)
647{
648 return __do_proc_dointvec(table->data, table, write,
649 buffer, lenp, ppos, conv, data);
650}
651
652static int do_proc_douintvec_w(unsigned int *tbl_data,
653 struct ctl_table *table,
654 void *buffer,
655 size_t *lenp, loff_t *ppos,
656 int (*conv)(unsigned long *lvalp,
657 unsigned int *valp,
658 int write, void *data),
659 void *data)
660{
661 unsigned long lval;
662 int err = 0;
663 size_t left;
664 bool neg;
665 char *p = buffer;
666
667 left = *lenp;
668
669 if (proc_first_pos_non_zero_ignore(ppos, table))
670 goto bail_early;
671
672 if (left > PAGE_SIZE - 1)
673 left = PAGE_SIZE - 1;
674
675 left -= proc_skip_spaces(&p);
676 if (!left) {
677 err = -EINVAL;
678 goto out_free;
679 }
680
681 err = proc_get_long(&p, &left, &lval, &neg,
682 proc_wspace_sep,
683 sizeof(proc_wspace_sep), NULL);
684 if (err || neg) {
685 err = -EINVAL;
686 goto out_free;
687 }
688
689 if (conv(&lval, tbl_data, 1, data)) {
690 err = -EINVAL;
691 goto out_free;
692 }
693
694 if (!err && left)
695 left -= proc_skip_spaces(&p);
696
697out_free:
698 if (err)
699 return -EINVAL;
700
701 return 0;
702
703 /* This is in keeping with old __do_proc_dointvec() */
704bail_early:
705 *ppos += *lenp;
706 return err;
707}
708
709static int do_proc_douintvec_r(unsigned int *tbl_data, void *buffer,
710 size_t *lenp, loff_t *ppos,
711 int (*conv)(unsigned long *lvalp,
712 unsigned int *valp,
713 int write, void *data),
714 void *data)
715{
716 unsigned long lval;
717 int err = 0;
718 size_t left;
719
720 left = *lenp;
721
722 if (conv(&lval, tbl_data, 0, data)) {
723 err = -EINVAL;
724 goto out;
725 }
726
727 proc_put_long(&buffer, &left, lval, false);
728 if (!left)
729 goto out;
730
731 proc_put_char(&buffer, &left, '\n');
732
733out:
734 *lenp -= left;
735 *ppos += *lenp;
736
737 return err;
738}
739
740static 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,
744 unsigned int *valp,
745 int write, void *data),
746 void *data)
747{
748 unsigned int *i, vleft;
749
750 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
751 *lenp = 0;
752 return 0;
753 }
754
755 i = (unsigned int *) tbl_data;
756 vleft = table->maxlen / sizeof(*i);
757
758 /*
759 * Arrays are not supported, keep this simple. *Do not* add
760 * support for them.
761 */
762 if (vleft != 1) {
763 *lenp = 0;
764 return -EINVAL;
765 }
766
767 if (!conv)
768 conv = do_proc_douintvec_conv;
769
770 if (write)
771 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
772 conv, data);
773 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
774}
775
776static 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,
779 unsigned int *valp,
780 int write, void *data),
781 void *data)
782{
783 return __do_proc_douintvec(table->data, table, write,
784 buffer, lenp, ppos, conv, data);
785}
786
787/**
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
794 *
795 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
796 * values from/to the user buffer, treated as an ASCII string.
797 *
798 * Returns 0 on success.
799 */
800int proc_dointvec(struct ctl_table *table, int write, void *buffer,
801 size_t *lenp, loff_t *ppos)
802{
803 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
804}
805
806#ifdef CONFIG_COMPACTION
807static int proc_dointvec_minmax_warn_RT_change(struct ctl_table *table,
808 int write, void *buffer, size_t *lenp, loff_t *ppos)
809{
810 int ret, old;
811
812 if (!IS_ENABLED(CONFIG_PREEMPT_RT) || !write)
813 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
814
815 old = *(int *)table->data;
816 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
817 if (ret)
818 return ret;
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));
823 return ret;
824}
825#endif
826
827/**
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
834 *
835 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
836 * values from/to the user buffer, treated as an ASCII string.
837 *
838 * Returns 0 on success.
839 */
840int proc_douintvec(struct ctl_table *table, int write, void *buffer,
841 size_t *lenp, loff_t *ppos)
842{
843 return do_proc_douintvec(table, write, buffer, lenp, ppos,
844 do_proc_douintvec_conv, NULL);
845}
846
847/*
848 * Taint values can only be increased
849 * This means we can safely use a temporary.
850 */
851static int proc_taint(struct ctl_table *table, int write,
852 void *buffer, size_t *lenp, loff_t *ppos)
853{
854 struct ctl_table t;
855 unsigned long tmptaint = get_taint();
856 int err;
857
858 if (write && !capable(CAP_SYS_ADMIN))
859 return -EPERM;
860
861 t = *table;
862 t.data = &tmptaint;
863 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
864 if (err < 0)
865 return err;
866
867 if (write) {
868 int i;
869
870 /*
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.
874 */
875 if (panic_on_taint_nousertaint && (tmptaint & panic_on_taint))
876 return -EINVAL;
877
878 /*
879 * Poor man's atomic or. Not worth adding a primitive
880 * to everyone's atomic.h for this
881 */
882 for (i = 0; i < TAINT_FLAGS_COUNT; i++)
883 if ((1UL << i) & tmptaint)
884 add_taint(i, LOCKDEP_STILL_OK);
885 }
886
887 return err;
888}
889
890#ifdef CONFIG_PRINTK
891static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
892 void *buffer, size_t *lenp, loff_t *ppos)
893{
894 if (write && !capable(CAP_SYS_ADMIN))
895 return -EPERM;
896
897 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
898}
899#endif
900
901/**
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
905 *
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.
909 */
910struct do_proc_dointvec_minmax_conv_param {
911 int *min;
912 int *max;
913};
914
915static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
916 int *valp,
917 int write, void *data)
918{
919 int tmp, ret;
920 struct do_proc_dointvec_minmax_conv_param *param = data;
921 /*
922 * If writing, first do so via a temporary local int so we can
923 * bounds-check it before touching *valp.
924 */
925 int *ip = write ? &tmp : valp;
926
927 ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
928 if (ret)
929 return ret;
930
931 if (write) {
932 if ((param->min && *param->min > tmp) ||
933 (param->max && *param->max < tmp))
934 return -EINVAL;
935 *valp = tmp;
936 }
937
938 return 0;
939}
940
941/**
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
948 *
949 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
950 * values from/to the user buffer, treated as an ASCII string.
951 *
952 * This routine will ensure the values are within the range specified by
953 * table->extra1 (min) and table->extra2 (max).
954 *
955 * Returns 0 on success or -EINVAL on write when the range check fails.
956 */
957int proc_dointvec_minmax(struct ctl_table *table, int write,
958 void *buffer, size_t *lenp, loff_t *ppos)
959{
960 struct do_proc_dointvec_minmax_conv_param param = {
961 .min = (int *) table->extra1,
962 .max = (int *) table->extra2,
963 };
964 return do_proc_dointvec(table, write, buffer, lenp, ppos,
965 do_proc_dointvec_minmax_conv, ¶m);
966}
967
968/**
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
972 *
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.
976 */
977struct do_proc_douintvec_minmax_conv_param {
978 unsigned int *min;
979 unsigned int *max;
980};
981
982static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
983 unsigned int *valp,
984 int write, void *data)
985{
986 int ret;
987 unsigned int tmp;
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;
991
992 ret = do_proc_douintvec_conv(lvalp, up, write, data);
993 if (ret)
994 return ret;
995
996 if (write) {
997 if ((param->min && *param->min > tmp) ||
998 (param->max && *param->max < tmp))
999 return -ERANGE;
1000
1001 *valp = tmp;
1002 }
1003
1004 return 0;
1005}
1006
1007/**
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
1014 *
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.
1018 *
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
1022 * userspace.
1023 *
1024 * Returns 0 on success or -ERANGE on write when the range check fails.
1025 */
1026int proc_douintvec_minmax(struct ctl_table *table, int write,
1027 void *buffer, size_t *lenp, loff_t *ppos)
1028{
1029 struct do_proc_douintvec_minmax_conv_param param = {
1030 .min = (unsigned int *) table->extra1,
1031 .max = (unsigned int *) table->extra2,
1032 };
1033 return do_proc_douintvec(table, write, buffer, lenp, ppos,
1034 do_proc_douintvec_minmax_conv, ¶m);
1035}
1036
1037static int do_proc_dopipe_max_size_conv(unsigned long *lvalp,
1038 unsigned int *valp,
1039 int write, void *data)
1040{
1041 if (write) {
1042 unsigned int val;
1043
1044 val = round_pipe_size(*lvalp);
1045 if (val == 0)
1046 return -EINVAL;
1047
1048 *valp = val;
1049 } else {
1050 unsigned int val = *valp;
1051 *lvalp = (unsigned long) val;
1052 }
1053
1054 return 0;
1055}
1056
1057static int proc_dopipe_max_size(struct ctl_table *table, int write,
1058 void *buffer, size_t *lenp, loff_t *ppos)
1059{
1060 return do_proc_douintvec(table, write, buffer, lenp, ppos,
1061 do_proc_dopipe_max_size_conv, NULL);
1062}
1063
1064static void validate_coredump_safety(void)
1065{
1066#ifdef CONFIG_COREDUMP
1067 if (suid_dumpable == SUID_DUMP_ROOT &&
1068 core_pattern[0] != '/' && core_pattern[0] != '|') {
1069 printk(KERN_WARNING
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"
1073 );
1074 }
1075#endif
1076}
1077
1078static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
1079 void *buffer, size_t *lenp, loff_t *ppos)
1080{
1081 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
1082 if (!error)
1083 validate_coredump_safety();
1084 return error;
1085}
1086
1087#ifdef CONFIG_COREDUMP
1088static int proc_dostring_coredump(struct ctl_table *table, int write,
1089 void *buffer, size_t *lenp, loff_t *ppos)
1090{
1091 int error = proc_dostring(table, write, buffer, lenp, ppos);
1092 if (!error)
1093 validate_coredump_safety();
1094 return error;
1095}
1096#endif
1097
1098#ifdef CONFIG_MAGIC_SYSRQ
1099static int sysrq_sysctl_handler(struct ctl_table *table, int write,
1100 void *buffer, size_t *lenp, loff_t *ppos)
1101{
1102 int tmp, ret;
1103
1104 tmp = sysrq_mask();
1105
1106 ret = __do_proc_dointvec(&tmp, table, write, buffer,
1107 lenp, ppos, NULL, NULL);
1108 if (ret || !write)
1109 return ret;
1110
1111 if (write)
1112 sysrq_toggle_support(tmp);
1113
1114 return 0;
1115}
1116#endif
1117
1118static 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)
1121{
1122 unsigned long *i, *min, *max;
1123 int vleft, first = 1, err = 0;
1124 size_t left;
1125 char *p;
1126
1127 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
1128 *lenp = 0;
1129 return 0;
1130 }
1131
1132 i = (unsigned long *) data;
1133 min = (unsigned long *) table->extra1;
1134 max = (unsigned long *) table->extra2;
1135 vleft = table->maxlen / sizeof(unsigned long);
1136 left = *lenp;
1137
1138 if (write) {
1139 if (proc_first_pos_non_zero_ignore(ppos, table))
1140 goto out;
1141
1142 if (left > PAGE_SIZE - 1)
1143 left = PAGE_SIZE - 1;
1144 p = buffer;
1145 }
1146
1147 for (; left && vleft--; i++, first = 0) {
1148 unsigned long val;
1149
1150 if (write) {
1151 bool neg;
1152
1153 left -= proc_skip_spaces(&p);
1154 if (!left)
1155 break;
1156
1157 err = proc_get_long(&p, &left, &val, &neg,
1158 proc_wspace_sep,
1159 sizeof(proc_wspace_sep), NULL);
1160 if (err)
1161 break;
1162 if (neg)
1163 continue;
1164 val = convmul * val / convdiv;
1165 if ((min && val < *min) || (max && val > *max)) {
1166 err = -EINVAL;
1167 break;
1168 }
1169 *i = val;
1170 } else {
1171 val = convdiv * (*i) / convmul;
1172 if (!first)
1173 proc_put_char(&buffer, &left, '\t');
1174 proc_put_long(&buffer, &left, val, false);
1175 }
1176 }
1177
1178 if (!write && !first && left && !err)
1179 proc_put_char(&buffer, &left, '\n');
1180 if (write && !err)
1181 left -= proc_skip_spaces(&p);
1182 if (write && first)
1183 return err ? : -EINVAL;
1184 *lenp -= left;
1185out:
1186 *ppos += *lenp;
1187 return err;
1188}
1189
1190static 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)
1193{
1194 return __do_proc_doulongvec_minmax(table->data, table, write,
1195 buffer, lenp, ppos, convmul, convdiv);
1196}
1197
1198/**
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
1205 *
1206 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1207 * values from/to the user buffer, treated as an ASCII string.
1208 *
1209 * This routine will ensure the values are within the range specified by
1210 * table->extra1 (min) and table->extra2 (max).
1211 *
1212 * Returns 0 on success.
1213 */
1214int proc_doulongvec_minmax(struct ctl_table *table, int write,
1215 void *buffer, size_t *lenp, loff_t *ppos)
1216{
1217 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
1218}
1219
1220/**
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
1227 *
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.
1231 *
1232 * This routine will ensure the values are within the range specified by
1233 * table->extra1 (min) and table->extra2 (max).
1234 *
1235 * Returns 0 on success.
1236 */
1237int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1238 void *buffer, size_t *lenp, loff_t *ppos)
1239{
1240 return do_proc_doulongvec_minmax(table, write, buffer,
1241 lenp, ppos, HZ, 1000l);
1242}
1243
1244
1245static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
1246 int *valp,
1247 int write, void *data)
1248{
1249 if (write) {
1250 if (*lvalp > INT_MAX / HZ)
1251 return 1;
1252 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
1253 } else {
1254 int val = *valp;
1255 unsigned long lval;
1256 if (val < 0) {
1257 *negp = true;
1258 lval = -(unsigned long)val;
1259 } else {
1260 *negp = false;
1261 lval = (unsigned long)val;
1262 }
1263 *lvalp = lval / HZ;
1264 }
1265 return 0;
1266}
1267
1268static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
1269 int *valp,
1270 int write, void *data)
1271{
1272 if (write) {
1273 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
1274 return 1;
1275 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
1276 } else {
1277 int val = *valp;
1278 unsigned long lval;
1279 if (val < 0) {
1280 *negp = true;
1281 lval = -(unsigned long)val;
1282 } else {
1283 *negp = false;
1284 lval = (unsigned long)val;
1285 }
1286 *lvalp = jiffies_to_clock_t(lval);
1287 }
1288 return 0;
1289}
1290
1291static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
1292 int *valp,
1293 int write, void *data)
1294{
1295 if (write) {
1296 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
1297
1298 if (jif > INT_MAX)
1299 return 1;
1300 *valp = (int)jif;
1301 } else {
1302 int val = *valp;
1303 unsigned long lval;
1304 if (val < 0) {
1305 *negp = true;
1306 lval = -(unsigned long)val;
1307 } else {
1308 *negp = false;
1309 lval = (unsigned long)val;
1310 }
1311 *lvalp = jiffies_to_msecs(lval);
1312 }
1313 return 0;
1314}
1315
1316/**
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
1323 *
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
1327 * jiffies.
1328 *
1329 * Returns 0 on success.
1330 */
1331int proc_dointvec_jiffies(struct ctl_table *table, int write,
1332 void *buffer, size_t *lenp, loff_t *ppos)
1333{
1334 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1335 do_proc_dointvec_jiffies_conv,NULL);
1336}
1337
1338/**
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
1345 *
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.
1350 *
1351 * Returns 0 on success.
1352 */
1353int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1354 void *buffer, size_t *lenp, loff_t *ppos)
1355{
1356 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1357 do_proc_dointvec_userhz_jiffies_conv,NULL);
1358}
1359
1360/**
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
1368 *
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.
1373 *
1374 * Returns 0 on success.
1375 */
1376int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, void *buffer,
1377 size_t *lenp, loff_t *ppos)
1378{
1379 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1380 do_proc_dointvec_ms_jiffies_conv, NULL);
1381}
1382
1383static int proc_do_cad_pid(struct ctl_table *table, int write, void *buffer,
1384 size_t *lenp, loff_t *ppos)
1385{
1386 struct pid *new_pid;
1387 pid_t tmp;
1388 int r;
1389
1390 tmp = pid_vnr(cad_pid);
1391
1392 r = __do_proc_dointvec(&tmp, table, write, buffer,
1393 lenp, ppos, NULL, NULL);
1394 if (r || !write)
1395 return r;
1396
1397 new_pid = find_get_pid(tmp);
1398 if (!new_pid)
1399 return -ESRCH;
1400
1401 put_pid(xchg(&cad_pid, new_pid));
1402 return 0;
1403}
1404
1405/**
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
1412 *
1413 * The bitmap is stored at table->data and the bitmap length (in bits)
1414 * in table->maxlen.
1415 *
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.
1419 *
1420 * Returns 0 on success.
1421 */
1422int proc_do_large_bitmap(struct ctl_table *table, int write,
1423 void *buffer, size_t *lenp, loff_t *ppos)
1424{
1425 int err = 0;
1426 bool first = 1;
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;
1432
1433 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
1434 *lenp = 0;
1435 return 0;
1436 }
1437
1438 if (write) {
1439 char *p = buffer;
1440 size_t skipped = 0;
1441
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;
1446 }
1447
1448 tmp_bitmap = bitmap_zalloc(bitmap_len, GFP_KERNEL);
1449 if (!tmp_bitmap)
1450 return -ENOMEM;
1451 proc_skip_char(&p, &left, '\n');
1452 while (!err && left) {
1453 unsigned long val_a, val_b;
1454 bool neg;
1455 size_t saved_left;
1456
1457 /* In case we stop parsing mid-number, we can reset */
1458 saved_left = left;
1459 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
1460 sizeof(tr_a), &c);
1461 /*
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.
1465 */
1466 if ((left <= 1) && skipped) {
1467 left = saved_left;
1468 break;
1469 }
1470
1471 if (err)
1472 break;
1473 if (val_a >= bitmap_len || neg) {
1474 err = -EINVAL;
1475 break;
1476 }
1477
1478 val_b = val_a;
1479 if (left) {
1480 p++;
1481 left--;
1482 }
1483
1484 if (c == '-') {
1485 err = proc_get_long(&p, &left, &val_b,
1486 &neg, tr_b, sizeof(tr_b),
1487 &c);
1488 /*
1489 * If we consumed all of a truncated buffer or
1490 * then stop here, reset, & come back for more.
1491 */
1492 if (!left && skipped) {
1493 left = saved_left;
1494 break;
1495 }
1496
1497 if (err)
1498 break;
1499 if (val_b >= bitmap_len || neg ||
1500 val_a > val_b) {
1501 err = -EINVAL;
1502 break;
1503 }
1504 if (left) {
1505 p++;
1506 left--;
1507 }
1508 }
1509
1510 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
1511 first = 0;
1512 proc_skip_char(&p, &left, '\n');
1513 }
1514 left += skipped;
1515 } else {
1516 unsigned long bit_a, bit_b = 0;
1517
1518 while (left) {
1519 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
1520 if (bit_a >= bitmap_len)
1521 break;
1522 bit_b = find_next_zero_bit(bitmap, bitmap_len,
1523 bit_a + 1) - 1;
1524
1525 if (!first)
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);
1531 }
1532
1533 first = 0; bit_b++;
1534 }
1535 proc_put_char(&buffer, &left, '\n');
1536 }
1537
1538 if (!err) {
1539 if (write) {
1540 if (*ppos)
1541 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
1542 else
1543 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
1544 }
1545 *lenp -= left;
1546 *ppos += *lenp;
1547 }
1548
1549 bitmap_free(tmp_bitmap);
1550 return err;
1551}
1552
1553#else /* CONFIG_PROC_SYSCTL */
1554
1555int proc_dostring(struct ctl_table *table, int write,
1556 void *buffer, size_t *lenp, loff_t *ppos)
1557{
1558 return -ENOSYS;
1559}
1560
1561int proc_dointvec(struct ctl_table *table, int write,
1562 void *buffer, size_t *lenp, loff_t *ppos)
1563{
1564 return -ENOSYS;
1565}
1566
1567int proc_douintvec(struct ctl_table *table, int write,
1568 void *buffer, size_t *lenp, loff_t *ppos)
1569{
1570 return -ENOSYS;
1571}
1572
1573int proc_dointvec_minmax(struct ctl_table *table, int write,
1574 void *buffer, size_t *lenp, loff_t *ppos)
1575{
1576 return -ENOSYS;
1577}
1578
1579int proc_douintvec_minmax(struct ctl_table *table, int write,
1580 void *buffer, size_t *lenp, loff_t *ppos)
1581{
1582 return -ENOSYS;
1583}
1584
1585int proc_dointvec_jiffies(struct ctl_table *table, int write,
1586 void *buffer, size_t *lenp, loff_t *ppos)
1587{
1588 return -ENOSYS;
1589}
1590
1591int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1592 void *buffer, size_t *lenp, loff_t *ppos)
1593{
1594 return -ENOSYS;
1595}
1596
1597int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
1598 void *buffer, size_t *lenp, loff_t *ppos)
1599{
1600 return -ENOSYS;
1601}
1602
1603int proc_doulongvec_minmax(struct ctl_table *table, int write,
1604 void *buffer, size_t *lenp, loff_t *ppos)
1605{
1606 return -ENOSYS;
1607}
1608
1609int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1610 void *buffer, size_t *lenp, loff_t *ppos)
1611{
1612 return -ENOSYS;
1613}
1614
1615int proc_do_large_bitmap(struct ctl_table *table, int write,
1616 void *buffer, size_t *lenp, loff_t *ppos)
1617{
1618 return -ENOSYS;
1619}
1620
1621#endif /* CONFIG_PROC_SYSCTL */
1622
1623#if defined(CONFIG_SYSCTL)
1624int proc_do_static_key(struct ctl_table *table, int write,
1625 void *buffer, size_t *lenp, loff_t *ppos)
1626{
1627 struct static_key *key = (struct static_key *)table->data;
1628 static DEFINE_MUTEX(static_key_mutex);
1629 int val, ret;
1630 struct ctl_table tmp = {
1631 .data = &val,
1632 .maxlen = sizeof(val),
1633 .mode = table->mode,
1634 .extra1 = SYSCTL_ZERO,
1635 .extra2 = SYSCTL_ONE,
1636 };
1637
1638 if (write && !capable(CAP_SYS_ADMIN))
1639 return -EPERM;
1640
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) {
1645 if (val)
1646 static_key_enable(key);
1647 else
1648 static_key_disable(key);
1649 }
1650 mutex_unlock(&static_key_mutex);
1651 return ret;
1652}
1653
1654static struct ctl_table kern_table[] = {
1655 {
1656 .procname = "sched_child_runs_first",
1657 .data = &sysctl_sched_child_runs_first,
1658 .maxlen = sizeof(unsigned int),
1659 .mode = 0644,
1660 .proc_handler = proc_dointvec,
1661 },
1662#ifdef CONFIG_SCHED_DEBUG
1663 {
1664 .procname = "sched_min_granularity_ns",
1665 .data = &sysctl_sched_min_granularity,
1666 .maxlen = sizeof(unsigned int),
1667 .mode = 0644,
1668 .proc_handler = sched_proc_update_handler,
1669 .extra1 = &min_sched_granularity_ns,
1670 .extra2 = &max_sched_granularity_ns,
1671 },
1672 {
1673 .procname = "sched_latency_ns",
1674 .data = &sysctl_sched_latency,
1675 .maxlen = sizeof(unsigned int),
1676 .mode = 0644,
1677 .proc_handler = sched_proc_update_handler,
1678 .extra1 = &min_sched_granularity_ns,
1679 .extra2 = &max_sched_granularity_ns,
1680 },
1681 {
1682 .procname = "sched_wakeup_granularity_ns",
1683 .data = &sysctl_sched_wakeup_granularity,
1684 .maxlen = sizeof(unsigned int),
1685 .mode = 0644,
1686 .proc_handler = sched_proc_update_handler,
1687 .extra1 = &min_wakeup_granularity_ns,
1688 .extra2 = &max_wakeup_granularity_ns,
1689 },
1690#ifdef CONFIG_SMP
1691 {
1692 .procname = "sched_tunable_scaling",
1693 .data = &sysctl_sched_tunable_scaling,
1694 .maxlen = sizeof(enum sched_tunable_scaling),
1695 .mode = 0644,
1696 .proc_handler = sched_proc_update_handler,
1697 .extra1 = &min_sched_tunable_scaling,
1698 .extra2 = &max_sched_tunable_scaling,
1699 },
1700 {
1701 .procname = "sched_migration_cost_ns",
1702 .data = &sysctl_sched_migration_cost,
1703 .maxlen = sizeof(unsigned int),
1704 .mode = 0644,
1705 .proc_handler = proc_dointvec,
1706 },
1707 {
1708 .procname = "sched_nr_migrate",
1709 .data = &sysctl_sched_nr_migrate,
1710 .maxlen = sizeof(unsigned int),
1711 .mode = 0644,
1712 .proc_handler = proc_dointvec,
1713 },
1714#ifdef CONFIG_SCHEDSTATS
1715 {
1716 .procname = "sched_schedstats",
1717 .data = NULL,
1718 .maxlen = sizeof(unsigned int),
1719 .mode = 0644,
1720 .proc_handler = sysctl_schedstats,
1721 .extra1 = SYSCTL_ZERO,
1722 .extra2 = SYSCTL_ONE,
1723 },
1724#endif /* CONFIG_SCHEDSTATS */
1725#endif /* CONFIG_SMP */
1726#ifdef CONFIG_NUMA_BALANCING
1727 {
1728 .procname = "numa_balancing_scan_delay_ms",
1729 .data = &sysctl_numa_balancing_scan_delay,
1730 .maxlen = sizeof(unsigned int),
1731 .mode = 0644,
1732 .proc_handler = proc_dointvec,
1733 },
1734 {
1735 .procname = "numa_balancing_scan_period_min_ms",
1736 .data = &sysctl_numa_balancing_scan_period_min,
1737 .maxlen = sizeof(unsigned int),
1738 .mode = 0644,
1739 .proc_handler = proc_dointvec,
1740 },
1741 {
1742 .procname = "numa_balancing_scan_period_max_ms",
1743 .data = &sysctl_numa_balancing_scan_period_max,
1744 .maxlen = sizeof(unsigned int),
1745 .mode = 0644,
1746 .proc_handler = proc_dointvec,
1747 },
1748 {
1749 .procname = "numa_balancing_scan_size_mb",
1750 .data = &sysctl_numa_balancing_scan_size,
1751 .maxlen = sizeof(unsigned int),
1752 .mode = 0644,
1753 .proc_handler = proc_dointvec_minmax,
1754 .extra1 = SYSCTL_ONE,
1755 },
1756 {
1757 .procname = "numa_balancing",
1758 .data = NULL, /* filled in by handler */
1759 .maxlen = sizeof(unsigned int),
1760 .mode = 0644,
1761 .proc_handler = sysctl_numa_balancing,
1762 .extra1 = SYSCTL_ZERO,
1763 .extra2 = SYSCTL_ONE,
1764 },
1765#endif /* CONFIG_NUMA_BALANCING */
1766#endif /* CONFIG_SCHED_DEBUG */
1767 {
1768 .procname = "sched_rt_period_us",
1769 .data = &sysctl_sched_rt_period,
1770 .maxlen = sizeof(unsigned int),
1771 .mode = 0644,
1772 .proc_handler = sched_rt_handler,
1773 },
1774 {
1775 .procname = "sched_rt_runtime_us",
1776 .data = &sysctl_sched_rt_runtime,
1777 .maxlen = sizeof(int),
1778 .mode = 0644,
1779 .proc_handler = sched_rt_handler,
1780 },
1781 {
1782 .procname = "sched_deadline_period_max_us",
1783 .data = &sysctl_sched_dl_period_max,
1784 .maxlen = sizeof(unsigned int),
1785 .mode = 0644,
1786 .proc_handler = proc_dointvec,
1787 },
1788 {
1789 .procname = "sched_deadline_period_min_us",
1790 .data = &sysctl_sched_dl_period_min,
1791 .maxlen = sizeof(unsigned int),
1792 .mode = 0644,
1793 .proc_handler = proc_dointvec,
1794 },
1795 {
1796 .procname = "sched_rr_timeslice_ms",
1797 .data = &sysctl_sched_rr_timeslice,
1798 .maxlen = sizeof(int),
1799 .mode = 0644,
1800 .proc_handler = sched_rr_handler,
1801 },
1802#ifdef CONFIG_UCLAMP_TASK
1803 {
1804 .procname = "sched_util_clamp_min",
1805 .data = &sysctl_sched_uclamp_util_min,
1806 .maxlen = sizeof(unsigned int),
1807 .mode = 0644,
1808 .proc_handler = sysctl_sched_uclamp_handler,
1809 },
1810 {
1811 .procname = "sched_util_clamp_max",
1812 .data = &sysctl_sched_uclamp_util_max,
1813 .maxlen = sizeof(unsigned int),
1814 .mode = 0644,
1815 .proc_handler = sysctl_sched_uclamp_handler,
1816 },
1817 {
1818 .procname = "sched_util_clamp_min_rt_default",
1819 .data = &sysctl_sched_uclamp_util_min_rt_default,
1820 .maxlen = sizeof(unsigned int),
1821 .mode = 0644,
1822 .proc_handler = sysctl_sched_uclamp_handler,
1823 },
1824#endif
1825#ifdef CONFIG_SCHED_AUTOGROUP
1826 {
1827 .procname = "sched_autogroup_enabled",
1828 .data = &sysctl_sched_autogroup_enabled,
1829 .maxlen = sizeof(unsigned int),
1830 .mode = 0644,
1831 .proc_handler = proc_dointvec_minmax,
1832 .extra1 = SYSCTL_ZERO,
1833 .extra2 = SYSCTL_ONE,
1834 },
1835#endif
1836#ifdef CONFIG_CFS_BANDWIDTH
1837 {
1838 .procname = "sched_cfs_bandwidth_slice_us",
1839 .data = &sysctl_sched_cfs_bandwidth_slice,
1840 .maxlen = sizeof(unsigned int),
1841 .mode = 0644,
1842 .proc_handler = proc_dointvec_minmax,
1843 .extra1 = SYSCTL_ONE,
1844 },
1845#endif
1846#if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
1847 {
1848 .procname = "sched_energy_aware",
1849 .data = &sysctl_sched_energy_aware,
1850 .maxlen = sizeof(unsigned int),
1851 .mode = 0644,
1852 .proc_handler = sched_energy_aware_handler,
1853 .extra1 = SYSCTL_ZERO,
1854 .extra2 = SYSCTL_ONE,
1855 },
1856#endif
1857#ifdef CONFIG_PROVE_LOCKING
1858 {
1859 .procname = "prove_locking",
1860 .data = &prove_locking,
1861 .maxlen = sizeof(int),
1862 .mode = 0644,
1863 .proc_handler = proc_dointvec,
1864 },
1865#endif
1866#ifdef CONFIG_LOCK_STAT
1867 {
1868 .procname = "lock_stat",
1869 .data = &lock_stat,
1870 .maxlen = sizeof(int),
1871 .mode = 0644,
1872 .proc_handler = proc_dointvec,
1873 },
1874#endif
1875 {
1876 .procname = "panic",
1877 .data = &panic_timeout,
1878 .maxlen = sizeof(int),
1879 .mode = 0644,
1880 .proc_handler = proc_dointvec,
1881 },
1882#ifdef CONFIG_COREDUMP
1883 {
1884 .procname = "core_uses_pid",
1885 .data = &core_uses_pid,
1886 .maxlen = sizeof(int),
1887 .mode = 0644,
1888 .proc_handler = proc_dointvec,
1889 },
1890 {
1891 .procname = "core_pattern",
1892 .data = core_pattern,
1893 .maxlen = CORENAME_MAX_SIZE,
1894 .mode = 0644,
1895 .proc_handler = proc_dostring_coredump,
1896 },
1897 {
1898 .procname = "core_pipe_limit",
1899 .data = &core_pipe_limit,
1900 .maxlen = sizeof(unsigned int),
1901 .mode = 0644,
1902 .proc_handler = proc_dointvec,
1903 },
1904#endif
1905#ifdef CONFIG_PROC_SYSCTL
1906 {
1907 .procname = "tainted",
1908 .maxlen = sizeof(long),
1909 .mode = 0644,
1910 .proc_handler = proc_taint,
1911 },
1912 {
1913 .procname = "sysctl_writes_strict",
1914 .data = &sysctl_writes_strict,
1915 .maxlen = sizeof(int),
1916 .mode = 0644,
1917 .proc_handler = proc_dointvec_minmax,
1918 .extra1 = &neg_one,
1919 .extra2 = SYSCTL_ONE,
1920 },
1921#endif
1922#ifdef CONFIG_LATENCYTOP
1923 {
1924 .procname = "latencytop",
1925 .data = &latencytop_enabled,
1926 .maxlen = sizeof(int),
1927 .mode = 0644,
1928 .proc_handler = sysctl_latencytop,
1929 },
1930#endif
1931#ifdef CONFIG_BLK_DEV_INITRD
1932 {
1933 .procname = "real-root-dev",
1934 .data = &real_root_dev,
1935 .maxlen = sizeof(int),
1936 .mode = 0644,
1937 .proc_handler = proc_dointvec,
1938 },
1939#endif
1940 {
1941 .procname = "print-fatal-signals",
1942 .data = &print_fatal_signals,
1943 .maxlen = sizeof(int),
1944 .mode = 0644,
1945 .proc_handler = proc_dointvec,
1946 },
1947#ifdef CONFIG_SPARC
1948 {
1949 .procname = "reboot-cmd",
1950 .data = reboot_command,
1951 .maxlen = 256,
1952 .mode = 0644,
1953 .proc_handler = proc_dostring,
1954 },
1955 {
1956 .procname = "stop-a",
1957 .data = &stop_a_enabled,
1958 .maxlen = sizeof (int),
1959 .mode = 0644,
1960 .proc_handler = proc_dointvec,
1961 },
1962 {
1963 .procname = "scons-poweroff",
1964 .data = &scons_pwroff,
1965 .maxlen = sizeof (int),
1966 .mode = 0644,
1967 .proc_handler = proc_dointvec,
1968 },
1969#endif
1970#ifdef CONFIG_SPARC64
1971 {
1972 .procname = "tsb-ratio",
1973 .data = &sysctl_tsb_ratio,
1974 .maxlen = sizeof (int),
1975 .mode = 0644,
1976 .proc_handler = proc_dointvec,
1977 },
1978#endif
1979#ifdef CONFIG_PARISC
1980 {
1981 .procname = "soft-power",
1982 .data = &pwrsw_enabled,
1983 .maxlen = sizeof (int),
1984 .mode = 0644,
1985 .proc_handler = proc_dointvec,
1986 },
1987#endif
1988#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
1989 {
1990 .procname = "unaligned-trap",
1991 .data = &unaligned_enabled,
1992 .maxlen = sizeof (int),
1993 .mode = 0644,
1994 .proc_handler = proc_dointvec,
1995 },
1996#endif
1997 {
1998 .procname = "ctrl-alt-del",
1999 .data = &C_A_D,
2000 .maxlen = sizeof(int),
2001 .mode = 0644,
2002 .proc_handler = proc_dointvec,
2003 },
2004#ifdef CONFIG_FUNCTION_TRACER
2005 {
2006 .procname = "ftrace_enabled",
2007 .data = &ftrace_enabled,
2008 .maxlen = sizeof(int),
2009 .mode = 0644,
2010 .proc_handler = ftrace_enable_sysctl,
2011 },
2012#endif
2013#ifdef CONFIG_STACK_TRACER
2014 {
2015 .procname = "stack_tracer_enabled",
2016 .data = &stack_tracer_enabled,
2017 .maxlen = sizeof(int),
2018 .mode = 0644,
2019 .proc_handler = stack_trace_sysctl,
2020 },
2021#endif
2022#ifdef CONFIG_TRACING
2023 {
2024 .procname = "ftrace_dump_on_oops",
2025 .data = &ftrace_dump_on_oops,
2026 .maxlen = sizeof(int),
2027 .mode = 0644,
2028 .proc_handler = proc_dointvec,
2029 },
2030 {
2031 .procname = "traceoff_on_warning",
2032 .data = &__disable_trace_on_warning,
2033 .maxlen = sizeof(__disable_trace_on_warning),
2034 .mode = 0644,
2035 .proc_handler = proc_dointvec,
2036 },
2037 {
2038 .procname = "tracepoint_printk",
2039 .data = &tracepoint_printk,
2040 .maxlen = sizeof(tracepoint_printk),
2041 .mode = 0644,
2042 .proc_handler = tracepoint_printk_sysctl,
2043 },
2044#endif
2045#ifdef CONFIG_KEXEC_CORE
2046 {
2047 .procname = "kexec_load_disabled",
2048 .data = &kexec_load_disabled,
2049 .maxlen = sizeof(int),
2050 .mode = 0644,
2051 /* only handle a transition from default "0" to "1" */
2052 .proc_handler = proc_dointvec_minmax,
2053 .extra1 = SYSCTL_ONE,
2054 .extra2 = SYSCTL_ONE,
2055 },
2056#endif
2057#ifdef CONFIG_MODULES
2058 {
2059 .procname = "modprobe",
2060 .data = &modprobe_path,
2061 .maxlen = KMOD_PATH_LEN,
2062 .mode = 0644,
2063 .proc_handler = proc_dostring,
2064 },
2065 {
2066 .procname = "modules_disabled",
2067 .data = &modules_disabled,
2068 .maxlen = sizeof(int),
2069 .mode = 0644,
2070 /* only handle a transition from default "0" to "1" */
2071 .proc_handler = proc_dointvec_minmax,
2072 .extra1 = SYSCTL_ONE,
2073 .extra2 = SYSCTL_ONE,
2074 },
2075#endif
2076#ifdef CONFIG_UEVENT_HELPER
2077 {
2078 .procname = "hotplug",
2079 .data = &uevent_helper,
2080 .maxlen = UEVENT_HELPER_PATH_LEN,
2081 .mode = 0644,
2082 .proc_handler = proc_dostring,
2083 },
2084#endif
2085#ifdef CONFIG_CHR_DEV_SG
2086 {
2087 .procname = "sg-big-buff",
2088 .data = &sg_big_buff,
2089 .maxlen = sizeof (int),
2090 .mode = 0444,
2091 .proc_handler = proc_dointvec,
2092 },
2093#endif
2094#ifdef CONFIG_BSD_PROCESS_ACCT
2095 {
2096 .procname = "acct",
2097 .data = &acct_parm,
2098 .maxlen = 3*sizeof(int),
2099 .mode = 0644,
2100 .proc_handler = proc_dointvec,
2101 },
2102#endif
2103#ifdef CONFIG_MAGIC_SYSRQ
2104 {
2105 .procname = "sysrq",
2106 .data = NULL,
2107 .maxlen = sizeof (int),
2108 .mode = 0644,
2109 .proc_handler = sysrq_sysctl_handler,
2110 },
2111#endif
2112#ifdef CONFIG_PROC_SYSCTL
2113 {
2114 .procname = "cad_pid",
2115 .data = NULL,
2116 .maxlen = sizeof (int),
2117 .mode = 0600,
2118 .proc_handler = proc_do_cad_pid,
2119 },
2120#endif
2121 {
2122 .procname = "threads-max",
2123 .data = NULL,
2124 .maxlen = sizeof(int),
2125 .mode = 0644,
2126 .proc_handler = sysctl_max_threads,
2127 },
2128 {
2129 .procname = "random",
2130 .mode = 0555,
2131 .child = random_table,
2132 },
2133 {
2134 .procname = "usermodehelper",
2135 .mode = 0555,
2136 .child = usermodehelper_table,
2137 },
2138#ifdef CONFIG_FW_LOADER_USER_HELPER
2139 {
2140 .procname = "firmware_config",
2141 .mode = 0555,
2142 .child = firmware_config_table,
2143 },
2144#endif
2145 {
2146 .procname = "overflowuid",
2147 .data = &overflowuid,
2148 .maxlen = sizeof(int),
2149 .mode = 0644,
2150 .proc_handler = proc_dointvec_minmax,
2151 .extra1 = &minolduid,
2152 .extra2 = &maxolduid,
2153 },
2154 {
2155 .procname = "overflowgid",
2156 .data = &overflowgid,
2157 .maxlen = sizeof(int),
2158 .mode = 0644,
2159 .proc_handler = proc_dointvec_minmax,
2160 .extra1 = &minolduid,
2161 .extra2 = &maxolduid,
2162 },
2163#ifdef CONFIG_S390
2164 {
2165 .procname = "userprocess_debug",
2166 .data = &show_unhandled_signals,
2167 .maxlen = sizeof(int),
2168 .mode = 0644,
2169 .proc_handler = proc_dointvec,
2170 },
2171#endif
2172#ifdef CONFIG_SMP
2173 {
2174 .procname = "oops_all_cpu_backtrace",
2175 .data = &sysctl_oops_all_cpu_backtrace,
2176 .maxlen = sizeof(int),
2177 .mode = 0644,
2178 .proc_handler = proc_dointvec_minmax,
2179 .extra1 = SYSCTL_ZERO,
2180 .extra2 = SYSCTL_ONE,
2181 },
2182#endif /* CONFIG_SMP */
2183 {
2184 .procname = "pid_max",
2185 .data = &pid_max,
2186 .maxlen = sizeof (int),
2187 .mode = 0644,
2188 .proc_handler = proc_dointvec_minmax,
2189 .extra1 = &pid_max_min,
2190 .extra2 = &pid_max_max,
2191 },
2192 {
2193 .procname = "panic_on_oops",
2194 .data = &panic_on_oops,
2195 .maxlen = sizeof(int),
2196 .mode = 0644,
2197 .proc_handler = proc_dointvec,
2198 },
2199 {
2200 .procname = "panic_print",
2201 .data = &panic_print,
2202 .maxlen = sizeof(unsigned long),
2203 .mode = 0644,
2204 .proc_handler = proc_doulongvec_minmax,
2205 },
2206#if defined CONFIG_PRINTK
2207 {
2208 .procname = "printk",
2209 .data = &console_loglevel,
2210 .maxlen = 4*sizeof(int),
2211 .mode = 0644,
2212 .proc_handler = proc_dointvec,
2213 },
2214 {
2215 .procname = "printk_ratelimit",
2216 .data = &printk_ratelimit_state.interval,
2217 .maxlen = sizeof(int),
2218 .mode = 0644,
2219 .proc_handler = proc_dointvec_jiffies,
2220 },
2221 {
2222 .procname = "printk_ratelimit_burst",
2223 .data = &printk_ratelimit_state.burst,
2224 .maxlen = sizeof(int),
2225 .mode = 0644,
2226 .proc_handler = proc_dointvec,
2227 },
2228 {
2229 .procname = "printk_delay",
2230 .data = &printk_delay_msec,
2231 .maxlen = sizeof(int),
2232 .mode = 0644,
2233 .proc_handler = proc_dointvec_minmax,
2234 .extra1 = SYSCTL_ZERO,
2235 .extra2 = &ten_thousand,
2236 },
2237 {
2238 .procname = "printk_devkmsg",
2239 .data = devkmsg_log_str,
2240 .maxlen = DEVKMSG_STR_MAX_SIZE,
2241 .mode = 0644,
2242 .proc_handler = devkmsg_sysctl_set_loglvl,
2243 },
2244 {
2245 .procname = "dmesg_restrict",
2246 .data = &dmesg_restrict,
2247 .maxlen = sizeof(int),
2248 .mode = 0644,
2249 .proc_handler = proc_dointvec_minmax_sysadmin,
2250 .extra1 = SYSCTL_ZERO,
2251 .extra2 = SYSCTL_ONE,
2252 },
2253 {
2254 .procname = "kptr_restrict",
2255 .data = &kptr_restrict,
2256 .maxlen = sizeof(int),
2257 .mode = 0644,
2258 .proc_handler = proc_dointvec_minmax_sysadmin,
2259 .extra1 = SYSCTL_ZERO,
2260 .extra2 = &two,
2261 },
2262#endif
2263 {
2264 .procname = "ngroups_max",
2265 .data = &ngroups_max,
2266 .maxlen = sizeof (int),
2267 .mode = 0444,
2268 .proc_handler = proc_dointvec,
2269 },
2270 {
2271 .procname = "cap_last_cap",
2272 .data = (void *)&cap_last_cap,
2273 .maxlen = sizeof(int),
2274 .mode = 0444,
2275 .proc_handler = proc_dointvec,
2276 },
2277#if defined(CONFIG_LOCKUP_DETECTOR)
2278 {
2279 .procname = "watchdog",
2280 .data = &watchdog_user_enabled,
2281 .maxlen = sizeof(int),
2282 .mode = 0644,
2283 .proc_handler = proc_watchdog,
2284 .extra1 = SYSCTL_ZERO,
2285 .extra2 = SYSCTL_ONE,
2286 },
2287 {
2288 .procname = "watchdog_thresh",
2289 .data = &watchdog_thresh,
2290 .maxlen = sizeof(int),
2291 .mode = 0644,
2292 .proc_handler = proc_watchdog_thresh,
2293 .extra1 = SYSCTL_ZERO,
2294 .extra2 = &sixty,
2295 },
2296 {
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,
2304 },
2305 {
2306 .procname = "watchdog_cpumask",
2307 .data = &watchdog_cpumask_bits,
2308 .maxlen = NR_CPUS,
2309 .mode = 0644,
2310 .proc_handler = proc_watchdog_cpumask,
2311 },
2312#ifdef CONFIG_SOFTLOCKUP_DETECTOR
2313 {
2314 .procname = "soft_watchdog",
2315 .data = &soft_watchdog_user_enabled,
2316 .maxlen = sizeof(int),
2317 .mode = 0644,
2318 .proc_handler = proc_soft_watchdog,
2319 .extra1 = SYSCTL_ZERO,
2320 .extra2 = SYSCTL_ONE,
2321 },
2322 {
2323 .procname = "softlockup_panic",
2324 .data = &softlockup_panic,
2325 .maxlen = sizeof(int),
2326 .mode = 0644,
2327 .proc_handler = proc_dointvec_minmax,
2328 .extra1 = SYSCTL_ZERO,
2329 .extra2 = SYSCTL_ONE,
2330 },
2331#ifdef CONFIG_SMP
2332 {
2333 .procname = "softlockup_all_cpu_backtrace",
2334 .data = &sysctl_softlockup_all_cpu_backtrace,
2335 .maxlen = sizeof(int),
2336 .mode = 0644,
2337 .proc_handler = proc_dointvec_minmax,
2338 .extra1 = SYSCTL_ZERO,
2339 .extra2 = SYSCTL_ONE,
2340 },
2341#endif /* CONFIG_SMP */
2342#endif
2343#ifdef CONFIG_HARDLOCKUP_DETECTOR
2344 {
2345 .procname = "hardlockup_panic",
2346 .data = &hardlockup_panic,
2347 .maxlen = sizeof(int),
2348 .mode = 0644,
2349 .proc_handler = proc_dointvec_minmax,
2350 .extra1 = SYSCTL_ZERO,
2351 .extra2 = SYSCTL_ONE,
2352 },
2353#ifdef CONFIG_SMP
2354 {
2355 .procname = "hardlockup_all_cpu_backtrace",
2356 .data = &sysctl_hardlockup_all_cpu_backtrace,
2357 .maxlen = sizeof(int),
2358 .mode = 0644,
2359 .proc_handler = proc_dointvec_minmax,
2360 .extra1 = SYSCTL_ZERO,
2361 .extra2 = SYSCTL_ONE,
2362 },
2363#endif /* CONFIG_SMP */
2364#endif
2365#endif
2366
2367#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
2368 {
2369 .procname = "unknown_nmi_panic",
2370 .data = &unknown_nmi_panic,
2371 .maxlen = sizeof (int),
2372 .mode = 0644,
2373 .proc_handler = proc_dointvec,
2374 },
2375#endif
2376
2377#if (defined(CONFIG_X86_32) || defined(CONFIG_PARISC)) && \
2378 defined(CONFIG_DEBUG_STACKOVERFLOW)
2379 {
2380 .procname = "panic_on_stackoverflow",
2381 .data = &sysctl_panic_on_stackoverflow,
2382 .maxlen = sizeof(int),
2383 .mode = 0644,
2384 .proc_handler = proc_dointvec,
2385 },
2386#endif
2387#if defined(CONFIG_X86)
2388 {
2389 .procname = "panic_on_unrecovered_nmi",
2390 .data = &panic_on_unrecovered_nmi,
2391 .maxlen = sizeof(int),
2392 .mode = 0644,
2393 .proc_handler = proc_dointvec,
2394 },
2395 {
2396 .procname = "panic_on_io_nmi",
2397 .data = &panic_on_io_nmi,
2398 .maxlen = sizeof(int),
2399 .mode = 0644,
2400 .proc_handler = proc_dointvec,
2401 },
2402 {
2403 .procname = "bootloader_type",
2404 .data = &bootloader_type,
2405 .maxlen = sizeof (int),
2406 .mode = 0444,
2407 .proc_handler = proc_dointvec,
2408 },
2409 {
2410 .procname = "bootloader_version",
2411 .data = &bootloader_version,
2412 .maxlen = sizeof (int),
2413 .mode = 0444,
2414 .proc_handler = proc_dointvec,
2415 },
2416 {
2417 .procname = "io_delay_type",
2418 .data = &io_delay_type,
2419 .maxlen = sizeof(int),
2420 .mode = 0644,
2421 .proc_handler = proc_dointvec,
2422 },
2423#endif
2424#if defined(CONFIG_MMU)
2425 {
2426 .procname = "randomize_va_space",
2427 .data = &randomize_va_space,
2428 .maxlen = sizeof(int),
2429 .mode = 0644,
2430 .proc_handler = proc_dointvec,
2431 },
2432#endif
2433#if defined(CONFIG_S390) && defined(CONFIG_SMP)
2434 {
2435 .procname = "spin_retry",
2436 .data = &spin_retry,
2437 .maxlen = sizeof (int),
2438 .mode = 0644,
2439 .proc_handler = proc_dointvec,
2440 },
2441#endif
2442#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
2443 {
2444 .procname = "acpi_video_flags",
2445 .data = &acpi_realmode_flags,
2446 .maxlen = sizeof (unsigned long),
2447 .mode = 0644,
2448 .proc_handler = proc_doulongvec_minmax,
2449 },
2450#endif
2451#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
2452 {
2453 .procname = "ignore-unaligned-usertrap",
2454 .data = &no_unaligned_warning,
2455 .maxlen = sizeof (int),
2456 .mode = 0644,
2457 .proc_handler = proc_dointvec,
2458 },
2459#endif
2460#ifdef CONFIG_IA64
2461 {
2462 .procname = "unaligned-dump-stack",
2463 .data = &unaligned_dump_stack,
2464 .maxlen = sizeof (int),
2465 .mode = 0644,
2466 .proc_handler = proc_dointvec,
2467 },
2468#endif
2469#ifdef CONFIG_DETECT_HUNG_TASK
2470#ifdef CONFIG_SMP
2471 {
2472 .procname = "hung_task_all_cpu_backtrace",
2473 .data = &sysctl_hung_task_all_cpu_backtrace,
2474 .maxlen = sizeof(int),
2475 .mode = 0644,
2476 .proc_handler = proc_dointvec_minmax,
2477 .extra1 = SYSCTL_ZERO,
2478 .extra2 = SYSCTL_ONE,
2479 },
2480#endif /* CONFIG_SMP */
2481 {
2482 .procname = "hung_task_panic",
2483 .data = &sysctl_hung_task_panic,
2484 .maxlen = sizeof(int),
2485 .mode = 0644,
2486 .proc_handler = proc_dointvec_minmax,
2487 .extra1 = SYSCTL_ZERO,
2488 .extra2 = SYSCTL_ONE,
2489 },
2490 {
2491 .procname = "hung_task_check_count",
2492 .data = &sysctl_hung_task_check_count,
2493 .maxlen = sizeof(int),
2494 .mode = 0644,
2495 .proc_handler = proc_dointvec_minmax,
2496 .extra1 = SYSCTL_ZERO,
2497 },
2498 {
2499 .procname = "hung_task_timeout_secs",
2500 .data = &sysctl_hung_task_timeout_secs,
2501 .maxlen = sizeof(unsigned long),
2502 .mode = 0644,
2503 .proc_handler = proc_dohung_task_timeout_secs,
2504 .extra2 = &hung_task_timeout_max,
2505 },
2506 {
2507 .procname = "hung_task_check_interval_secs",
2508 .data = &sysctl_hung_task_check_interval_secs,
2509 .maxlen = sizeof(unsigned long),
2510 .mode = 0644,
2511 .proc_handler = proc_dohung_task_timeout_secs,
2512 .extra2 = &hung_task_timeout_max,
2513 },
2514 {
2515 .procname = "hung_task_warnings",
2516 .data = &sysctl_hung_task_warnings,
2517 .maxlen = sizeof(int),
2518 .mode = 0644,
2519 .proc_handler = proc_dointvec_minmax,
2520 .extra1 = &neg_one,
2521 },
2522#endif
2523#ifdef CONFIG_RT_MUTEXES
2524 {
2525 .procname = "max_lock_depth",
2526 .data = &max_lock_depth,
2527 .maxlen = sizeof(int),
2528 .mode = 0644,
2529 .proc_handler = proc_dointvec,
2530 },
2531#endif
2532 {
2533 .procname = "poweroff_cmd",
2534 .data = &poweroff_cmd,
2535 .maxlen = POWEROFF_CMD_PATH_LEN,
2536 .mode = 0644,
2537 .proc_handler = proc_dostring,
2538 },
2539#ifdef CONFIG_KEYS
2540 {
2541 .procname = "keys",
2542 .mode = 0555,
2543 .child = key_sysctls,
2544 },
2545#endif
2546#ifdef CONFIG_PERF_EVENTS
2547 /*
2548 * User-space scripts rely on the existence of this file
2549 * as a feature check for perf_events being enabled.
2550 *
2551 * So it's an ABI, do not remove!
2552 */
2553 {
2554 .procname = "perf_event_paranoid",
2555 .data = &sysctl_perf_event_paranoid,
2556 .maxlen = sizeof(sysctl_perf_event_paranoid),
2557 .mode = 0644,
2558 .proc_handler = proc_dointvec,
2559 },
2560 {
2561 .procname = "perf_event_mlock_kb",
2562 .data = &sysctl_perf_event_mlock,
2563 .maxlen = sizeof(sysctl_perf_event_mlock),
2564 .mode = 0644,
2565 .proc_handler = proc_dointvec,
2566 },
2567 {
2568 .procname = "perf_event_max_sample_rate",
2569 .data = &sysctl_perf_event_sample_rate,
2570 .maxlen = sizeof(sysctl_perf_event_sample_rate),
2571 .mode = 0644,
2572 .proc_handler = perf_proc_update_handler,
2573 .extra1 = SYSCTL_ONE,
2574 },
2575 {
2576 .procname = "perf_cpu_time_max_percent",
2577 .data = &sysctl_perf_cpu_time_max_percent,
2578 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
2579 .mode = 0644,
2580 .proc_handler = perf_cpu_time_max_percent_handler,
2581 .extra1 = SYSCTL_ZERO,
2582 .extra2 = &one_hundred,
2583 },
2584 {
2585 .procname = "perf_event_max_stack",
2586 .data = &sysctl_perf_event_max_stack,
2587 .maxlen = sizeof(sysctl_perf_event_max_stack),
2588 .mode = 0644,
2589 .proc_handler = perf_event_max_stack_handler,
2590 .extra1 = SYSCTL_ZERO,
2591 .extra2 = &six_hundred_forty_kb,
2592 },
2593 {
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),
2597 .mode = 0644,
2598 .proc_handler = perf_event_max_stack_handler,
2599 .extra1 = SYSCTL_ZERO,
2600 .extra2 = &one_thousand,
2601 },
2602#endif
2603 {
2604 .procname = "panic_on_warn",
2605 .data = &panic_on_warn,
2606 .maxlen = sizeof(int),
2607 .mode = 0644,
2608 .proc_handler = proc_dointvec_minmax,
2609 .extra1 = SYSCTL_ZERO,
2610 .extra2 = SYSCTL_ONE,
2611 },
2612#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
2613 {
2614 .procname = "timer_migration",
2615 .data = &sysctl_timer_migration,
2616 .maxlen = sizeof(unsigned int),
2617 .mode = 0644,
2618 .proc_handler = timer_migration_handler,
2619 .extra1 = SYSCTL_ZERO,
2620 .extra2 = SYSCTL_ONE,
2621 },
2622#endif
2623#ifdef CONFIG_BPF_SYSCALL
2624 {
2625 .procname = "unprivileged_bpf_disabled",
2626 .data = &sysctl_unprivileged_bpf_disabled,
2627 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
2628 .mode = 0644,
2629 /* only handle a transition from default "0" to "1" */
2630 .proc_handler = proc_dointvec_minmax,
2631 .extra1 = SYSCTL_ONE,
2632 .extra2 = SYSCTL_ONE,
2633 },
2634 {
2635 .procname = "bpf_stats_enabled",
2636 .data = &bpf_stats_enabled_key.key,
2637 .maxlen = sizeof(bpf_stats_enabled_key),
2638 .mode = 0644,
2639 .proc_handler = bpf_stats_handler,
2640 },
2641#endif
2642#if defined(CONFIG_TREE_RCU)
2643 {
2644 .procname = "panic_on_rcu_stall",
2645 .data = &sysctl_panic_on_rcu_stall,
2646 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
2647 .mode = 0644,
2648 .proc_handler = proc_dointvec_minmax,
2649 .extra1 = SYSCTL_ZERO,
2650 .extra2 = SYSCTL_ONE,
2651 },
2652#endif
2653#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
2654 {
2655 .procname = "stack_erasing",
2656 .data = NULL,
2657 .maxlen = sizeof(int),
2658 .mode = 0600,
2659 .proc_handler = stack_erasing_sysctl,
2660 .extra1 = SYSCTL_ZERO,
2661 .extra2 = SYSCTL_ONE,
2662 },
2663#endif
2664 { }
2665};
2666
2667static struct ctl_table vm_table[] = {
2668 {
2669 .procname = "overcommit_memory",
2670 .data = &sysctl_overcommit_memory,
2671 .maxlen = sizeof(sysctl_overcommit_memory),
2672 .mode = 0644,
2673 .proc_handler = overcommit_policy_handler,
2674 .extra1 = SYSCTL_ZERO,
2675 .extra2 = &two,
2676 },
2677 {
2678 .procname = "panic_on_oom",
2679 .data = &sysctl_panic_on_oom,
2680 .maxlen = sizeof(sysctl_panic_on_oom),
2681 .mode = 0644,
2682 .proc_handler = proc_dointvec_minmax,
2683 .extra1 = SYSCTL_ZERO,
2684 .extra2 = &two,
2685 },
2686 {
2687 .procname = "oom_kill_allocating_task",
2688 .data = &sysctl_oom_kill_allocating_task,
2689 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
2690 .mode = 0644,
2691 .proc_handler = proc_dointvec,
2692 },
2693 {
2694 .procname = "oom_dump_tasks",
2695 .data = &sysctl_oom_dump_tasks,
2696 .maxlen = sizeof(sysctl_oom_dump_tasks),
2697 .mode = 0644,
2698 .proc_handler = proc_dointvec,
2699 },
2700 {
2701 .procname = "overcommit_ratio",
2702 .data = &sysctl_overcommit_ratio,
2703 .maxlen = sizeof(sysctl_overcommit_ratio),
2704 .mode = 0644,
2705 .proc_handler = overcommit_ratio_handler,
2706 },
2707 {
2708 .procname = "overcommit_kbytes",
2709 .data = &sysctl_overcommit_kbytes,
2710 .maxlen = sizeof(sysctl_overcommit_kbytes),
2711 .mode = 0644,
2712 .proc_handler = overcommit_kbytes_handler,
2713 },
2714 {
2715 .procname = "page-cluster",
2716 .data = &page_cluster,
2717 .maxlen = sizeof(int),
2718 .mode = 0644,
2719 .proc_handler = proc_dointvec_minmax,
2720 .extra1 = SYSCTL_ZERO,
2721 },
2722 {
2723 .procname = "dirty_background_ratio",
2724 .data = &dirty_background_ratio,
2725 .maxlen = sizeof(dirty_background_ratio),
2726 .mode = 0644,
2727 .proc_handler = dirty_background_ratio_handler,
2728 .extra1 = SYSCTL_ZERO,
2729 .extra2 = &one_hundred,
2730 },
2731 {
2732 .procname = "dirty_background_bytes",
2733 .data = &dirty_background_bytes,
2734 .maxlen = sizeof(dirty_background_bytes),
2735 .mode = 0644,
2736 .proc_handler = dirty_background_bytes_handler,
2737 .extra1 = &one_ul,
2738 },
2739 {
2740 .procname = "dirty_ratio",
2741 .data = &vm_dirty_ratio,
2742 .maxlen = sizeof(vm_dirty_ratio),
2743 .mode = 0644,
2744 .proc_handler = dirty_ratio_handler,
2745 .extra1 = SYSCTL_ZERO,
2746 .extra2 = &one_hundred,
2747 },
2748 {
2749 .procname = "dirty_bytes",
2750 .data = &vm_dirty_bytes,
2751 .maxlen = sizeof(vm_dirty_bytes),
2752 .mode = 0644,
2753 .proc_handler = dirty_bytes_handler,
2754 .extra1 = &dirty_bytes_min,
2755 },
2756 {
2757 .procname = "dirty_writeback_centisecs",
2758 .data = &dirty_writeback_interval,
2759 .maxlen = sizeof(dirty_writeback_interval),
2760 .mode = 0644,
2761 .proc_handler = dirty_writeback_centisecs_handler,
2762 },
2763 {
2764 .procname = "dirty_expire_centisecs",
2765 .data = &dirty_expire_interval,
2766 .maxlen = sizeof(dirty_expire_interval),
2767 .mode = 0644,
2768 .proc_handler = proc_dointvec_minmax,
2769 .extra1 = SYSCTL_ZERO,
2770 },
2771 {
2772 .procname = "dirtytime_expire_seconds",
2773 .data = &dirtytime_expire_interval,
2774 .maxlen = sizeof(dirtytime_expire_interval),
2775 .mode = 0644,
2776 .proc_handler = dirtytime_interval_handler,
2777 .extra1 = SYSCTL_ZERO,
2778 },
2779 {
2780 .procname = "swappiness",
2781 .data = &vm_swappiness,
2782 .maxlen = sizeof(vm_swappiness),
2783 .mode = 0644,
2784 .proc_handler = proc_dointvec_minmax,
2785 .extra1 = SYSCTL_ZERO,
2786 .extra2 = &two_hundred,
2787 },
2788#ifdef CONFIG_HUGETLB_PAGE
2789 {
2790 .procname = "nr_hugepages",
2791 .data = NULL,
2792 .maxlen = sizeof(unsigned long),
2793 .mode = 0644,
2794 .proc_handler = hugetlb_sysctl_handler,
2795 },
2796#ifdef CONFIG_NUMA
2797 {
2798 .procname = "nr_hugepages_mempolicy",
2799 .data = NULL,
2800 .maxlen = sizeof(unsigned long),
2801 .mode = 0644,
2802 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
2803 },
2804 {
2805 .procname = "numa_stat",
2806 .data = &sysctl_vm_numa_stat,
2807 .maxlen = sizeof(int),
2808 .mode = 0644,
2809 .proc_handler = sysctl_vm_numa_stat_handler,
2810 .extra1 = SYSCTL_ZERO,
2811 .extra2 = SYSCTL_ONE,
2812 },
2813#endif
2814 {
2815 .procname = "hugetlb_shm_group",
2816 .data = &sysctl_hugetlb_shm_group,
2817 .maxlen = sizeof(gid_t),
2818 .mode = 0644,
2819 .proc_handler = proc_dointvec,
2820 },
2821 {
2822 .procname = "nr_overcommit_hugepages",
2823 .data = NULL,
2824 .maxlen = sizeof(unsigned long),
2825 .mode = 0644,
2826 .proc_handler = hugetlb_overcommit_handler,
2827 },
2828#endif
2829 {
2830 .procname = "lowmem_reserve_ratio",
2831 .data = &sysctl_lowmem_reserve_ratio,
2832 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
2833 .mode = 0644,
2834 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
2835 },
2836 {
2837 .procname = "drop_caches",
2838 .data = &sysctl_drop_caches,
2839 .maxlen = sizeof(int),
2840 .mode = 0200,
2841 .proc_handler = drop_caches_sysctl_handler,
2842 .extra1 = SYSCTL_ONE,
2843 .extra2 = &four,
2844 },
2845#ifdef CONFIG_COMPACTION
2846 {
2847 .procname = "compact_memory",
2848 .data = &sysctl_compact_memory,
2849 .maxlen = sizeof(int),
2850 .mode = 0200,
2851 .proc_handler = sysctl_compaction_handler,
2852 },
2853 {
2854 .procname = "compaction_proactiveness",
2855 .data = &sysctl_compaction_proactiveness,
2856 .maxlen = sizeof(sysctl_compaction_proactiveness),
2857 .mode = 0644,
2858 .proc_handler = proc_dointvec_minmax,
2859 .extra1 = SYSCTL_ZERO,
2860 .extra2 = &one_hundred,
2861 },
2862 {
2863 .procname = "extfrag_threshold",
2864 .data = &sysctl_extfrag_threshold,
2865 .maxlen = sizeof(int),
2866 .mode = 0644,
2867 .proc_handler = proc_dointvec_minmax,
2868 .extra1 = &min_extfrag_threshold,
2869 .extra2 = &max_extfrag_threshold,
2870 },
2871 {
2872 .procname = "compact_unevictable_allowed",
2873 .data = &sysctl_compact_unevictable_allowed,
2874 .maxlen = sizeof(int),
2875 .mode = 0644,
2876 .proc_handler = proc_dointvec_minmax_warn_RT_change,
2877 .extra1 = SYSCTL_ZERO,
2878 .extra2 = SYSCTL_ONE,
2879 },
2880
2881#endif /* CONFIG_COMPACTION */
2882 {
2883 .procname = "min_free_kbytes",
2884 .data = &min_free_kbytes,
2885 .maxlen = sizeof(min_free_kbytes),
2886 .mode = 0644,
2887 .proc_handler = min_free_kbytes_sysctl_handler,
2888 .extra1 = SYSCTL_ZERO,
2889 },
2890 {
2891 .procname = "watermark_boost_factor",
2892 .data = &watermark_boost_factor,
2893 .maxlen = sizeof(watermark_boost_factor),
2894 .mode = 0644,
2895 .proc_handler = proc_dointvec_minmax,
2896 .extra1 = SYSCTL_ZERO,
2897 },
2898 {
2899 .procname = "watermark_scale_factor",
2900 .data = &watermark_scale_factor,
2901 .maxlen = sizeof(watermark_scale_factor),
2902 .mode = 0644,
2903 .proc_handler = watermark_scale_factor_sysctl_handler,
2904 .extra1 = SYSCTL_ONE,
2905 .extra2 = &one_thousand,
2906 },
2907 {
2908 .procname = "percpu_pagelist_fraction",
2909 .data = &percpu_pagelist_fraction,
2910 .maxlen = sizeof(percpu_pagelist_fraction),
2911 .mode = 0644,
2912 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
2913 .extra1 = SYSCTL_ZERO,
2914 },
2915 {
2916 .procname = "page_lock_unfairness",
2917 .data = &sysctl_page_lock_unfairness,
2918 .maxlen = sizeof(sysctl_page_lock_unfairness),
2919 .mode = 0644,
2920 .proc_handler = proc_dointvec_minmax,
2921 .extra1 = SYSCTL_ZERO,
2922 },
2923#ifdef CONFIG_MMU
2924 {
2925 .procname = "max_map_count",
2926 .data = &sysctl_max_map_count,
2927 .maxlen = sizeof(sysctl_max_map_count),
2928 .mode = 0644,
2929 .proc_handler = proc_dointvec_minmax,
2930 .extra1 = SYSCTL_ZERO,
2931 },
2932#else
2933 {
2934 .procname = "nr_trim_pages",
2935 .data = &sysctl_nr_trim_pages,
2936 .maxlen = sizeof(sysctl_nr_trim_pages),
2937 .mode = 0644,
2938 .proc_handler = proc_dointvec_minmax,
2939 .extra1 = SYSCTL_ZERO,
2940 },
2941#endif
2942 {
2943 .procname = "laptop_mode",
2944 .data = &laptop_mode,
2945 .maxlen = sizeof(laptop_mode),
2946 .mode = 0644,
2947 .proc_handler = proc_dointvec_jiffies,
2948 },
2949 {
2950 .procname = "block_dump",
2951 .data = &block_dump,
2952 .maxlen = sizeof(block_dump),
2953 .mode = 0644,
2954 .proc_handler = proc_dointvec,
2955 .extra1 = SYSCTL_ZERO,
2956 },
2957 {
2958 .procname = "vfs_cache_pressure",
2959 .data = &sysctl_vfs_cache_pressure,
2960 .maxlen = sizeof(sysctl_vfs_cache_pressure),
2961 .mode = 0644,
2962 .proc_handler = proc_dointvec,
2963 .extra1 = SYSCTL_ZERO,
2964 },
2965#if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
2966 defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
2967 {
2968 .procname = "legacy_va_layout",
2969 .data = &sysctl_legacy_va_layout,
2970 .maxlen = sizeof(sysctl_legacy_va_layout),
2971 .mode = 0644,
2972 .proc_handler = proc_dointvec,
2973 .extra1 = SYSCTL_ZERO,
2974 },
2975#endif
2976#ifdef CONFIG_NUMA
2977 {
2978 .procname = "zone_reclaim_mode",
2979 .data = &node_reclaim_mode,
2980 .maxlen = sizeof(node_reclaim_mode),
2981 .mode = 0644,
2982 .proc_handler = proc_dointvec,
2983 .extra1 = SYSCTL_ZERO,
2984 },
2985 {
2986 .procname = "min_unmapped_ratio",
2987 .data = &sysctl_min_unmapped_ratio,
2988 .maxlen = sizeof(sysctl_min_unmapped_ratio),
2989 .mode = 0644,
2990 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
2991 .extra1 = SYSCTL_ZERO,
2992 .extra2 = &one_hundred,
2993 },
2994 {
2995 .procname = "min_slab_ratio",
2996 .data = &sysctl_min_slab_ratio,
2997 .maxlen = sizeof(sysctl_min_slab_ratio),
2998 .mode = 0644,
2999 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
3000 .extra1 = SYSCTL_ZERO,
3001 .extra2 = &one_hundred,
3002 },
3003#endif
3004#ifdef CONFIG_SMP
3005 {
3006 .procname = "stat_interval",
3007 .data = &sysctl_stat_interval,
3008 .maxlen = sizeof(sysctl_stat_interval),
3009 .mode = 0644,
3010 .proc_handler = proc_dointvec_jiffies,
3011 },
3012 {
3013 .procname = "stat_refresh",
3014 .data = NULL,
3015 .maxlen = 0,
3016 .mode = 0600,
3017 .proc_handler = vmstat_refresh,
3018 },
3019#endif
3020#ifdef CONFIG_MMU
3021 {
3022 .procname = "mmap_min_addr",
3023 .data = &dac_mmap_min_addr,
3024 .maxlen = sizeof(unsigned long),
3025 .mode = 0644,
3026 .proc_handler = mmap_min_addr_handler,
3027 },
3028#endif
3029#ifdef CONFIG_NUMA
3030 {
3031 .procname = "numa_zonelist_order",
3032 .data = &numa_zonelist_order,
3033 .maxlen = NUMA_ZONELIST_ORDER_LEN,
3034 .mode = 0644,
3035 .proc_handler = numa_zonelist_order_handler,
3036 },
3037#endif
3038#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
3039 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
3040 {
3041 .procname = "vdso_enabled",
3042#ifdef CONFIG_X86_32
3043 .data = &vdso32_enabled,
3044 .maxlen = sizeof(vdso32_enabled),
3045#else
3046 .data = &vdso_enabled,
3047 .maxlen = sizeof(vdso_enabled),
3048#endif
3049 .mode = 0644,
3050 .proc_handler = proc_dointvec,
3051 .extra1 = SYSCTL_ZERO,
3052 },
3053#endif
3054#ifdef CONFIG_HIGHMEM
3055 {
3056 .procname = "highmem_is_dirtyable",
3057 .data = &vm_highmem_is_dirtyable,
3058 .maxlen = sizeof(vm_highmem_is_dirtyable),
3059 .mode = 0644,
3060 .proc_handler = proc_dointvec_minmax,
3061 .extra1 = SYSCTL_ZERO,
3062 .extra2 = SYSCTL_ONE,
3063 },
3064#endif
3065#ifdef CONFIG_MEMORY_FAILURE
3066 {
3067 .procname = "memory_failure_early_kill",
3068 .data = &sysctl_memory_failure_early_kill,
3069 .maxlen = sizeof(sysctl_memory_failure_early_kill),
3070 .mode = 0644,
3071 .proc_handler = proc_dointvec_minmax,
3072 .extra1 = SYSCTL_ZERO,
3073 .extra2 = SYSCTL_ONE,
3074 },
3075 {
3076 .procname = "memory_failure_recovery",
3077 .data = &sysctl_memory_failure_recovery,
3078 .maxlen = sizeof(sysctl_memory_failure_recovery),
3079 .mode = 0644,
3080 .proc_handler = proc_dointvec_minmax,
3081 .extra1 = SYSCTL_ZERO,
3082 .extra2 = SYSCTL_ONE,
3083 },
3084#endif
3085 {
3086 .procname = "user_reserve_kbytes",
3087 .data = &sysctl_user_reserve_kbytes,
3088 .maxlen = sizeof(sysctl_user_reserve_kbytes),
3089 .mode = 0644,
3090 .proc_handler = proc_doulongvec_minmax,
3091 },
3092 {
3093 .procname = "admin_reserve_kbytes",
3094 .data = &sysctl_admin_reserve_kbytes,
3095 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
3096 .mode = 0644,
3097 .proc_handler = proc_doulongvec_minmax,
3098 },
3099#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
3100 {
3101 .procname = "mmap_rnd_bits",
3102 .data = &mmap_rnd_bits,
3103 .maxlen = sizeof(mmap_rnd_bits),
3104 .mode = 0600,
3105 .proc_handler = proc_dointvec_minmax,
3106 .extra1 = (void *)&mmap_rnd_bits_min,
3107 .extra2 = (void *)&mmap_rnd_bits_max,
3108 },
3109#endif
3110#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
3111 {
3112 .procname = "mmap_rnd_compat_bits",
3113 .data = &mmap_rnd_compat_bits,
3114 .maxlen = sizeof(mmap_rnd_compat_bits),
3115 .mode = 0600,
3116 .proc_handler = proc_dointvec_minmax,
3117 .extra1 = (void *)&mmap_rnd_compat_bits_min,
3118 .extra2 = (void *)&mmap_rnd_compat_bits_max,
3119 },
3120#endif
3121#ifdef CONFIG_USERFAULTFD
3122 {
3123 .procname = "unprivileged_userfaultfd",
3124 .data = &sysctl_unprivileged_userfaultfd,
3125 .maxlen = sizeof(sysctl_unprivileged_userfaultfd),
3126 .mode = 0644,
3127 .proc_handler = proc_dointvec_minmax,
3128 .extra1 = SYSCTL_ZERO,
3129 .extra2 = SYSCTL_ONE,
3130 },
3131#endif
3132 { }
3133};
3134
3135static struct ctl_table fs_table[] = {
3136 {
3137 .procname = "inode-nr",
3138 .data = &inodes_stat,
3139 .maxlen = 2*sizeof(long),
3140 .mode = 0444,
3141 .proc_handler = proc_nr_inodes,
3142 },
3143 {
3144 .procname = "inode-state",
3145 .data = &inodes_stat,
3146 .maxlen = 7*sizeof(long),
3147 .mode = 0444,
3148 .proc_handler = proc_nr_inodes,
3149 },
3150 {
3151 .procname = "file-nr",
3152 .data = &files_stat,
3153 .maxlen = sizeof(files_stat),
3154 .mode = 0444,
3155 .proc_handler = proc_nr_files,
3156 },
3157 {
3158 .procname = "file-max",
3159 .data = &files_stat.max_files,
3160 .maxlen = sizeof(files_stat.max_files),
3161 .mode = 0644,
3162 .proc_handler = proc_doulongvec_minmax,
3163 .extra1 = &zero_ul,
3164 .extra2 = &long_max,
3165 },
3166 {
3167 .procname = "nr_open",
3168 .data = &sysctl_nr_open,
3169 .maxlen = sizeof(unsigned int),
3170 .mode = 0644,
3171 .proc_handler = proc_dointvec_minmax,
3172 .extra1 = &sysctl_nr_open_min,
3173 .extra2 = &sysctl_nr_open_max,
3174 },
3175 {
3176 .procname = "dentry-state",
3177 .data = &dentry_stat,
3178 .maxlen = 6*sizeof(long),
3179 .mode = 0444,
3180 .proc_handler = proc_nr_dentry,
3181 },
3182 {
3183 .procname = "overflowuid",
3184 .data = &fs_overflowuid,
3185 .maxlen = sizeof(int),
3186 .mode = 0644,
3187 .proc_handler = proc_dointvec_minmax,
3188 .extra1 = &minolduid,
3189 .extra2 = &maxolduid,
3190 },
3191 {
3192 .procname = "overflowgid",
3193 .data = &fs_overflowgid,
3194 .maxlen = sizeof(int),
3195 .mode = 0644,
3196 .proc_handler = proc_dointvec_minmax,
3197 .extra1 = &minolduid,
3198 .extra2 = &maxolduid,
3199 },
3200#ifdef CONFIG_FILE_LOCKING
3201 {
3202 .procname = "leases-enable",
3203 .data = &leases_enable,
3204 .maxlen = sizeof(int),
3205 .mode = 0644,
3206 .proc_handler = proc_dointvec,
3207 },
3208#endif
3209#ifdef CONFIG_DNOTIFY
3210 {
3211 .procname = "dir-notify-enable",
3212 .data = &dir_notify_enable,
3213 .maxlen = sizeof(int),
3214 .mode = 0644,
3215 .proc_handler = proc_dointvec,
3216 },
3217#endif
3218#ifdef CONFIG_MMU
3219#ifdef CONFIG_FILE_LOCKING
3220 {
3221 .procname = "lease-break-time",
3222 .data = &lease_break_time,
3223 .maxlen = sizeof(int),
3224 .mode = 0644,
3225 .proc_handler = proc_dointvec,
3226 },
3227#endif
3228#ifdef CONFIG_AIO
3229 {
3230 .procname = "aio-nr",
3231 .data = &aio_nr,
3232 .maxlen = sizeof(aio_nr),
3233 .mode = 0444,
3234 .proc_handler = proc_doulongvec_minmax,
3235 },
3236 {
3237 .procname = "aio-max-nr",
3238 .data = &aio_max_nr,
3239 .maxlen = sizeof(aio_max_nr),
3240 .mode = 0644,
3241 .proc_handler = proc_doulongvec_minmax,
3242 },
3243#endif /* CONFIG_AIO */
3244#ifdef CONFIG_INOTIFY_USER
3245 {
3246 .procname = "inotify",
3247 .mode = 0555,
3248 .child = inotify_table,
3249 },
3250#endif
3251#ifdef CONFIG_EPOLL
3252 {
3253 .procname = "epoll",
3254 .mode = 0555,
3255 .child = epoll_table,
3256 },
3257#endif
3258#endif
3259 {
3260 .procname = "protected_symlinks",
3261 .data = &sysctl_protected_symlinks,
3262 .maxlen = sizeof(int),
3263 .mode = 0600,
3264 .proc_handler = proc_dointvec_minmax,
3265 .extra1 = SYSCTL_ZERO,
3266 .extra2 = SYSCTL_ONE,
3267 },
3268 {
3269 .procname = "protected_hardlinks",
3270 .data = &sysctl_protected_hardlinks,
3271 .maxlen = sizeof(int),
3272 .mode = 0600,
3273 .proc_handler = proc_dointvec_minmax,
3274 .extra1 = SYSCTL_ZERO,
3275 .extra2 = SYSCTL_ONE,
3276 },
3277 {
3278 .procname = "protected_fifos",
3279 .data = &sysctl_protected_fifos,
3280 .maxlen = sizeof(int),
3281 .mode = 0600,
3282 .proc_handler = proc_dointvec_minmax,
3283 .extra1 = SYSCTL_ZERO,
3284 .extra2 = &two,
3285 },
3286 {
3287 .procname = "protected_regular",
3288 .data = &sysctl_protected_regular,
3289 .maxlen = sizeof(int),
3290 .mode = 0600,
3291 .proc_handler = proc_dointvec_minmax,
3292 .extra1 = SYSCTL_ZERO,
3293 .extra2 = &two,
3294 },
3295 {
3296 .procname = "suid_dumpable",
3297 .data = &suid_dumpable,
3298 .maxlen = sizeof(int),
3299 .mode = 0644,
3300 .proc_handler = proc_dointvec_minmax_coredump,
3301 .extra1 = SYSCTL_ZERO,
3302 .extra2 = &two,
3303 },
3304#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
3305 {
3306 .procname = "binfmt_misc",
3307 .mode = 0555,
3308 .child = sysctl_mount_point,
3309 },
3310#endif
3311 {
3312 .procname = "pipe-max-size",
3313 .data = &pipe_max_size,
3314 .maxlen = sizeof(pipe_max_size),
3315 .mode = 0644,
3316 .proc_handler = proc_dopipe_max_size,
3317 },
3318 {
3319 .procname = "pipe-user-pages-hard",
3320 .data = &pipe_user_pages_hard,
3321 .maxlen = sizeof(pipe_user_pages_hard),
3322 .mode = 0644,
3323 .proc_handler = proc_doulongvec_minmax,
3324 },
3325 {
3326 .procname = "pipe-user-pages-soft",
3327 .data = &pipe_user_pages_soft,
3328 .maxlen = sizeof(pipe_user_pages_soft),
3329 .mode = 0644,
3330 .proc_handler = proc_doulongvec_minmax,
3331 },
3332 {
3333 .procname = "mount-max",
3334 .data = &sysctl_mount_max,
3335 .maxlen = sizeof(unsigned int),
3336 .mode = 0644,
3337 .proc_handler = proc_dointvec_minmax,
3338 .extra1 = SYSCTL_ONE,
3339 },
3340 { }
3341};
3342
3343static struct ctl_table debug_table[] = {
3344#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
3345 {
3346 .procname = "exception-trace",
3347 .data = &show_unhandled_signals,
3348 .maxlen = sizeof(int),
3349 .mode = 0644,
3350 .proc_handler = proc_dointvec
3351 },
3352#endif
3353#if defined(CONFIG_OPTPROBES)
3354 {
3355 .procname = "kprobes-optimization",
3356 .data = &sysctl_kprobes_optimization,
3357 .maxlen = sizeof(int),
3358 .mode = 0644,
3359 .proc_handler = proc_kprobes_optimization_handler,
3360 .extra1 = SYSCTL_ZERO,
3361 .extra2 = SYSCTL_ONE,
3362 },
3363#endif
3364 { }
3365};
3366
3367static struct ctl_table dev_table[] = {
3368 { }
3369};
3370
3371static struct ctl_table sysctl_base_table[] = {
3372 {
3373 .procname = "kernel",
3374 .mode = 0555,
3375 .child = kern_table,
3376 },
3377 {
3378 .procname = "vm",
3379 .mode = 0555,
3380 .child = vm_table,
3381 },
3382 {
3383 .procname = "fs",
3384 .mode = 0555,
3385 .child = fs_table,
3386 },
3387 {
3388 .procname = "debug",
3389 .mode = 0555,
3390 .child = debug_table,
3391 },
3392 {
3393 .procname = "dev",
3394 .mode = 0555,
3395 .child = dev_table,
3396 },
3397 { }
3398};
3399
3400int __init sysctl_init(void)
3401{
3402 struct ctl_table_header *hdr;
3403
3404 hdr = register_sysctl_table(sysctl_base_table);
3405 kmemleak_not_leak(hdr);
3406 return 0;
3407}
3408#endif /* CONFIG_SYSCTL */
3409/*
3410 * No sense putting this after each symbol definition, twice,
3411 * exception granted :-)
3412 */
3413EXPORT_SYMBOL(proc_dointvec);
3414EXPORT_SYMBOL(proc_douintvec);
3415EXPORT_SYMBOL(proc_dointvec_jiffies);
3416EXPORT_SYMBOL(proc_dointvec_minmax);
3417EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
3418EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3419EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3420EXPORT_SYMBOL(proc_dostring);
3421EXPORT_SYMBOL(proc_doulongvec_minmax);
3422EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3423EXPORT_SYMBOL(proc_do_large_bitmap);