2 * sysctl.c: General linux system control interface
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
21 #include <linux/module.h>
22 #include <linux/aio.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/printk.h>
30 #include <linux/proc_fs.h>
31 #include <linux/security.h>
32 #include <linux/ctype.h>
33 #include <linux/kmemleak.h>
35 #include <linux/init.h>
36 #include <linux/kernel.h>
37 #include <linux/kobject.h>
38 #include <linux/net.h>
39 #include <linux/sysrq.h>
40 #include <linux/highuid.h>
41 #include <linux/writeback.h>
42 #include <linux/ratelimit.h>
43 #include <linux/compaction.h>
44 #include <linux/hugetlb.h>
45 #include <linux/initrd.h>
46 #include <linux/key.h>
47 #include <linux/times.h>
48 #include <linux/limits.h>
49 #include <linux/dcache.h>
50 #include <linux/dnotify.h>
51 #include <linux/syscalls.h>
52 #include <linux/vmstat.h>
53 #include <linux/nfs_fs.h>
54 #include <linux/acpi.h>
55 #include <linux/reboot.h>
56 #include <linux/ftrace.h>
57 #include <linux/perf_event.h>
58 #include <linux/kprobes.h>
59 #include <linux/pipe_fs_i.h>
60 #include <linux/oom.h>
61 #include <linux/kmod.h>
62 #include <linux/capability.h>
63 #include <linux/binfmts.h>
64 #include <linux/sched/sysctl.h>
65 #include <linux/sched/coredump.h>
66 #include <linux/kexec.h>
67 #include <linux/bpf.h>
68 #include <linux/mount.h>
70 #include <linux/uaccess.h>
71 #include <asm/processor.h>
75 #include <asm/stacktrace.h>
79 #include <asm/setup.h>
81 #ifdef CONFIG_BSD_PROCESS_ACCT
82 #include <linux/acct.h>
84 #ifdef CONFIG_RT_MUTEXES
85 #include <linux/rtmutex.h>
87 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
88 #include <linux/lockdep.h>
90 #ifdef CONFIG_CHR_DEV_SG
93 #ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
94 #include <linux/stackleak.h>
96 #ifdef CONFIG_LOCKUP_DETECTOR
97 #include <linux/nmi.h>
100 #if defined(CONFIG_SYSCTL)
102 /* External variables not in a header file. */
103 extern int suid_dumpable
;
104 #ifdef CONFIG_COREDUMP
105 extern int core_uses_pid
;
106 extern char core_pattern
[];
107 extern unsigned int core_pipe_limit
;
110 extern int pid_max_min
, pid_max_max
;
111 extern int percpu_pagelist_fraction
;
112 extern int latencytop_enabled
;
113 extern unsigned int sysctl_nr_open_min
, sysctl_nr_open_max
;
115 extern int sysctl_nr_trim_pages
;
118 /* Constants used for minimum and maximum */
119 #ifdef CONFIG_LOCKUP_DETECTOR
120 static int sixty
= 60;
123 static int __maybe_unused neg_one
= -1;
126 static int __maybe_unused one
= 1;
127 static int __maybe_unused two
= 2;
128 static int __maybe_unused four
= 4;
129 static unsigned long one_ul
= 1;
130 static int one_hundred
= 100;
131 static int one_thousand
= 1000;
133 static int ten_thousand
= 10000;
135 #ifdef CONFIG_PERF_EVENTS
136 static int six_hundred_forty_kb
= 640 * 1024;
139 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
140 static unsigned long dirty_bytes_min
= 2 * PAGE_SIZE
;
142 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
143 static int maxolduid
= 65535;
144 static int minolduid
;
146 static int ngroups_max
= NGROUPS_MAX
;
147 static const int cap_last_cap
= CAP_LAST_CAP
;
150 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
151 * and hung_task_check_interval_secs
153 #ifdef CONFIG_DETECT_HUNG_TASK
154 static unsigned long hung_task_timeout_max
= (LONG_MAX
/HZ
);
157 #ifdef CONFIG_INOTIFY_USER
158 #include <linux/inotify.h>
164 extern int pwrsw_enabled
;
167 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
168 extern int unaligned_enabled
;
172 extern int unaligned_dump_stack
;
175 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
176 extern int no_unaligned_warning
;
179 #ifdef CONFIG_PROC_SYSCTL
182 * enum sysctl_writes_mode - supported sysctl write modes
184 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
185 * to be written, and multiple writes on the same sysctl file descriptor
186 * will rewrite the sysctl value, regardless of file position. No warning
187 * is issued when the initial position is not 0.
188 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
190 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
191 * file position 0 and the value must be fully contained in the buffer
192 * sent to the write syscall. If dealing with strings respect the file
193 * position, but restrict this to the max length of the buffer, anything
194 * passed the max lenght will be ignored. Multiple writes will append
197 * These write modes control how current file position affects the behavior of
198 * updating sysctl values through the proc interface on each write.
200 enum sysctl_writes_mode
{
201 SYSCTL_WRITES_LEGACY
= -1,
202 SYSCTL_WRITES_WARN
= 0,
203 SYSCTL_WRITES_STRICT
= 1,
206 static enum sysctl_writes_mode sysctl_writes_strict
= SYSCTL_WRITES_STRICT
;
208 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
209 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
210 static int proc_taint(struct ctl_table
*table
, int write
,
211 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
215 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
216 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
219 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
220 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
221 #ifdef CONFIG_COREDUMP
222 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
223 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
225 static int proc_dopipe_max_size(struct ctl_table
*table
, int write
,
226 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
228 #ifdef CONFIG_MAGIC_SYSRQ
229 /* Note: sysrq code uses its own private copy */
230 static int __sysrq_enabled
= CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE
;
232 static int sysrq_sysctl_handler(struct ctl_table
*table
, int write
,
233 void __user
*buffer
, size_t *lenp
,
238 error
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
243 sysrq_toggle_support(__sysrq_enabled
);
250 static struct ctl_table kern_table
[];
251 static struct ctl_table vm_table
[];
252 static struct ctl_table fs_table
[];
253 static struct ctl_table debug_table
[];
254 static struct ctl_table dev_table
[];
255 extern struct ctl_table random_table
[];
257 extern struct ctl_table epoll_table
[];
260 #ifdef CONFIG_FW_LOADER_USER_HELPER
261 extern struct ctl_table firmware_config_table
[];
264 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
265 int sysctl_legacy_va_layout
;
268 /* The default sysctl tables: */
270 static struct ctl_table sysctl_base_table
[] = {
272 .procname
= "kernel",
289 .child
= debug_table
,
299 #ifdef CONFIG_SCHED_DEBUG
300 static int min_sched_granularity_ns
= 100000; /* 100 usecs */
301 static int max_sched_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
302 static int min_wakeup_granularity_ns
; /* 0 usecs */
303 static int max_wakeup_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
305 static int min_sched_tunable_scaling
= SCHED_TUNABLESCALING_NONE
;
306 static int max_sched_tunable_scaling
= SCHED_TUNABLESCALING_END
-1;
307 #endif /* CONFIG_SMP */
308 #endif /* CONFIG_SCHED_DEBUG */
310 #ifdef CONFIG_COMPACTION
311 static int min_extfrag_threshold
;
312 static int max_extfrag_threshold
= 1000;
315 static struct ctl_table kern_table
[] = {
317 .procname
= "sched_child_runs_first",
318 .data
= &sysctl_sched_child_runs_first
,
319 .maxlen
= sizeof(unsigned int),
321 .proc_handler
= proc_dointvec
,
323 #ifdef CONFIG_SCHED_DEBUG
325 .procname
= "sched_min_granularity_ns",
326 .data
= &sysctl_sched_min_granularity
,
327 .maxlen
= sizeof(unsigned int),
329 .proc_handler
= sched_proc_update_handler
,
330 .extra1
= &min_sched_granularity_ns
,
331 .extra2
= &max_sched_granularity_ns
,
334 .procname
= "sched_latency_ns",
335 .data
= &sysctl_sched_latency
,
336 .maxlen
= sizeof(unsigned int),
338 .proc_handler
= sched_proc_update_handler
,
339 .extra1
= &min_sched_granularity_ns
,
340 .extra2
= &max_sched_granularity_ns
,
343 .procname
= "sched_wakeup_granularity_ns",
344 .data
= &sysctl_sched_wakeup_granularity
,
345 .maxlen
= sizeof(unsigned int),
347 .proc_handler
= sched_proc_update_handler
,
348 .extra1
= &min_wakeup_granularity_ns
,
349 .extra2
= &max_wakeup_granularity_ns
,
353 .procname
= "sched_tunable_scaling",
354 .data
= &sysctl_sched_tunable_scaling
,
355 .maxlen
= sizeof(enum sched_tunable_scaling
),
357 .proc_handler
= sched_proc_update_handler
,
358 .extra1
= &min_sched_tunable_scaling
,
359 .extra2
= &max_sched_tunable_scaling
,
362 .procname
= "sched_migration_cost_ns",
363 .data
= &sysctl_sched_migration_cost
,
364 .maxlen
= sizeof(unsigned int),
366 .proc_handler
= proc_dointvec
,
369 .procname
= "sched_nr_migrate",
370 .data
= &sysctl_sched_nr_migrate
,
371 .maxlen
= sizeof(unsigned int),
373 .proc_handler
= proc_dointvec
,
375 #ifdef CONFIG_SCHEDSTATS
377 .procname
= "sched_schedstats",
379 .maxlen
= sizeof(unsigned int),
381 .proc_handler
= sysctl_schedstats
,
385 #endif /* CONFIG_SCHEDSTATS */
386 #endif /* CONFIG_SMP */
387 #ifdef CONFIG_NUMA_BALANCING
389 .procname
= "numa_balancing_scan_delay_ms",
390 .data
= &sysctl_numa_balancing_scan_delay
,
391 .maxlen
= sizeof(unsigned int),
393 .proc_handler
= proc_dointvec
,
396 .procname
= "numa_balancing_scan_period_min_ms",
397 .data
= &sysctl_numa_balancing_scan_period_min
,
398 .maxlen
= sizeof(unsigned int),
400 .proc_handler
= proc_dointvec
,
403 .procname
= "numa_balancing_scan_period_max_ms",
404 .data
= &sysctl_numa_balancing_scan_period_max
,
405 .maxlen
= sizeof(unsigned int),
407 .proc_handler
= proc_dointvec
,
410 .procname
= "numa_balancing_scan_size_mb",
411 .data
= &sysctl_numa_balancing_scan_size
,
412 .maxlen
= sizeof(unsigned int),
414 .proc_handler
= proc_dointvec_minmax
,
418 .procname
= "numa_balancing",
419 .data
= NULL
, /* filled in by handler */
420 .maxlen
= sizeof(unsigned int),
422 .proc_handler
= sysctl_numa_balancing
,
426 #endif /* CONFIG_NUMA_BALANCING */
427 #endif /* CONFIG_SCHED_DEBUG */
429 .procname
= "sched_rt_period_us",
430 .data
= &sysctl_sched_rt_period
,
431 .maxlen
= sizeof(unsigned int),
433 .proc_handler
= sched_rt_handler
,
436 .procname
= "sched_rt_runtime_us",
437 .data
= &sysctl_sched_rt_runtime
,
438 .maxlen
= sizeof(int),
440 .proc_handler
= sched_rt_handler
,
443 .procname
= "sched_rr_timeslice_ms",
444 .data
= &sysctl_sched_rr_timeslice
,
445 .maxlen
= sizeof(int),
447 .proc_handler
= sched_rr_handler
,
449 #ifdef CONFIG_SCHED_AUTOGROUP
451 .procname
= "sched_autogroup_enabled",
452 .data
= &sysctl_sched_autogroup_enabled
,
453 .maxlen
= sizeof(unsigned int),
455 .proc_handler
= proc_dointvec_minmax
,
460 #ifdef CONFIG_CFS_BANDWIDTH
462 .procname
= "sched_cfs_bandwidth_slice_us",
463 .data
= &sysctl_sched_cfs_bandwidth_slice
,
464 .maxlen
= sizeof(unsigned int),
466 .proc_handler
= proc_dointvec_minmax
,
470 #ifdef CONFIG_PROVE_LOCKING
472 .procname
= "prove_locking",
473 .data
= &prove_locking
,
474 .maxlen
= sizeof(int),
476 .proc_handler
= proc_dointvec
,
479 #ifdef CONFIG_LOCK_STAT
481 .procname
= "lock_stat",
483 .maxlen
= sizeof(int),
485 .proc_handler
= proc_dointvec
,
490 .data
= &panic_timeout
,
491 .maxlen
= sizeof(int),
493 .proc_handler
= proc_dointvec
,
495 #ifdef CONFIG_COREDUMP
497 .procname
= "core_uses_pid",
498 .data
= &core_uses_pid
,
499 .maxlen
= sizeof(int),
501 .proc_handler
= proc_dointvec
,
504 .procname
= "core_pattern",
505 .data
= core_pattern
,
506 .maxlen
= CORENAME_MAX_SIZE
,
508 .proc_handler
= proc_dostring_coredump
,
511 .procname
= "core_pipe_limit",
512 .data
= &core_pipe_limit
,
513 .maxlen
= sizeof(unsigned int),
515 .proc_handler
= proc_dointvec
,
518 #ifdef CONFIG_PROC_SYSCTL
520 .procname
= "tainted",
521 .maxlen
= sizeof(long),
523 .proc_handler
= proc_taint
,
526 .procname
= "sysctl_writes_strict",
527 .data
= &sysctl_writes_strict
,
528 .maxlen
= sizeof(int),
530 .proc_handler
= proc_dointvec_minmax
,
535 #ifdef CONFIG_LATENCYTOP
537 .procname
= "latencytop",
538 .data
= &latencytop_enabled
,
539 .maxlen
= sizeof(int),
541 .proc_handler
= sysctl_latencytop
,
544 #ifdef CONFIG_BLK_DEV_INITRD
546 .procname
= "real-root-dev",
547 .data
= &real_root_dev
,
548 .maxlen
= sizeof(int),
550 .proc_handler
= proc_dointvec
,
554 .procname
= "print-fatal-signals",
555 .data
= &print_fatal_signals
,
556 .maxlen
= sizeof(int),
558 .proc_handler
= proc_dointvec
,
562 .procname
= "reboot-cmd",
563 .data
= reboot_command
,
566 .proc_handler
= proc_dostring
,
569 .procname
= "stop-a",
570 .data
= &stop_a_enabled
,
571 .maxlen
= sizeof (int),
573 .proc_handler
= proc_dointvec
,
576 .procname
= "scons-poweroff",
577 .data
= &scons_pwroff
,
578 .maxlen
= sizeof (int),
580 .proc_handler
= proc_dointvec
,
583 #ifdef CONFIG_SPARC64
585 .procname
= "tsb-ratio",
586 .data
= &sysctl_tsb_ratio
,
587 .maxlen
= sizeof (int),
589 .proc_handler
= proc_dointvec
,
594 .procname
= "soft-power",
595 .data
= &pwrsw_enabled
,
596 .maxlen
= sizeof (int),
598 .proc_handler
= proc_dointvec
,
601 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
603 .procname
= "unaligned-trap",
604 .data
= &unaligned_enabled
,
605 .maxlen
= sizeof (int),
607 .proc_handler
= proc_dointvec
,
611 .procname
= "ctrl-alt-del",
613 .maxlen
= sizeof(int),
615 .proc_handler
= proc_dointvec
,
617 #ifdef CONFIG_FUNCTION_TRACER
619 .procname
= "ftrace_enabled",
620 .data
= &ftrace_enabled
,
621 .maxlen
= sizeof(int),
623 .proc_handler
= ftrace_enable_sysctl
,
626 #ifdef CONFIG_STACK_TRACER
628 .procname
= "stack_tracer_enabled",
629 .data
= &stack_tracer_enabled
,
630 .maxlen
= sizeof(int),
632 .proc_handler
= stack_trace_sysctl
,
635 #ifdef CONFIG_TRACING
637 .procname
= "ftrace_dump_on_oops",
638 .data
= &ftrace_dump_on_oops
,
639 .maxlen
= sizeof(int),
641 .proc_handler
= proc_dointvec
,
644 .procname
= "traceoff_on_warning",
645 .data
= &__disable_trace_on_warning
,
646 .maxlen
= sizeof(__disable_trace_on_warning
),
648 .proc_handler
= proc_dointvec
,
651 .procname
= "tracepoint_printk",
652 .data
= &tracepoint_printk
,
653 .maxlen
= sizeof(tracepoint_printk
),
655 .proc_handler
= tracepoint_printk_sysctl
,
658 #ifdef CONFIG_KEXEC_CORE
660 .procname
= "kexec_load_disabled",
661 .data
= &kexec_load_disabled
,
662 .maxlen
= sizeof(int),
664 /* only handle a transition from default "0" to "1" */
665 .proc_handler
= proc_dointvec_minmax
,
670 #ifdef CONFIG_MODULES
672 .procname
= "modprobe",
673 .data
= &modprobe_path
,
674 .maxlen
= KMOD_PATH_LEN
,
676 .proc_handler
= proc_dostring
,
679 .procname
= "modules_disabled",
680 .data
= &modules_disabled
,
681 .maxlen
= sizeof(int),
683 /* only handle a transition from default "0" to "1" */
684 .proc_handler
= proc_dointvec_minmax
,
689 #ifdef CONFIG_UEVENT_HELPER
691 .procname
= "hotplug",
692 .data
= &uevent_helper
,
693 .maxlen
= UEVENT_HELPER_PATH_LEN
,
695 .proc_handler
= proc_dostring
,
698 #ifdef CONFIG_CHR_DEV_SG
700 .procname
= "sg-big-buff",
701 .data
= &sg_big_buff
,
702 .maxlen
= sizeof (int),
704 .proc_handler
= proc_dointvec
,
707 #ifdef CONFIG_BSD_PROCESS_ACCT
711 .maxlen
= 3*sizeof(int),
713 .proc_handler
= proc_dointvec
,
716 #ifdef CONFIG_MAGIC_SYSRQ
719 .data
= &__sysrq_enabled
,
720 .maxlen
= sizeof (int),
722 .proc_handler
= sysrq_sysctl_handler
,
725 #ifdef CONFIG_PROC_SYSCTL
727 .procname
= "cad_pid",
729 .maxlen
= sizeof (int),
731 .proc_handler
= proc_do_cad_pid
,
735 .procname
= "threads-max",
737 .maxlen
= sizeof(int),
739 .proc_handler
= sysctl_max_threads
,
742 .procname
= "random",
744 .child
= random_table
,
747 .procname
= "usermodehelper",
749 .child
= usermodehelper_table
,
751 #ifdef CONFIG_FW_LOADER_USER_HELPER
753 .procname
= "firmware_config",
755 .child
= firmware_config_table
,
759 .procname
= "overflowuid",
760 .data
= &overflowuid
,
761 .maxlen
= sizeof(int),
763 .proc_handler
= proc_dointvec_minmax
,
764 .extra1
= &minolduid
,
765 .extra2
= &maxolduid
,
768 .procname
= "overflowgid",
769 .data
= &overflowgid
,
770 .maxlen
= sizeof(int),
772 .proc_handler
= proc_dointvec_minmax
,
773 .extra1
= &minolduid
,
774 .extra2
= &maxolduid
,
777 #ifdef CONFIG_MATHEMU
779 .procname
= "ieee_emulation_warnings",
780 .data
= &sysctl_ieee_emulation_warnings
,
781 .maxlen
= sizeof(int),
783 .proc_handler
= proc_dointvec
,
787 .procname
= "userprocess_debug",
788 .data
= &show_unhandled_signals
,
789 .maxlen
= sizeof(int),
791 .proc_handler
= proc_dointvec
,
795 .procname
= "pid_max",
797 .maxlen
= sizeof (int),
799 .proc_handler
= proc_dointvec_minmax
,
800 .extra1
= &pid_max_min
,
801 .extra2
= &pid_max_max
,
804 .procname
= "panic_on_oops",
805 .data
= &panic_on_oops
,
806 .maxlen
= sizeof(int),
808 .proc_handler
= proc_dointvec
,
810 #if defined CONFIG_PRINTK
812 .procname
= "printk",
813 .data
= &console_loglevel
,
814 .maxlen
= 4*sizeof(int),
816 .proc_handler
= proc_dointvec
,
819 .procname
= "printk_ratelimit",
820 .data
= &printk_ratelimit_state
.interval
,
821 .maxlen
= sizeof(int),
823 .proc_handler
= proc_dointvec_jiffies
,
826 .procname
= "printk_ratelimit_burst",
827 .data
= &printk_ratelimit_state
.burst
,
828 .maxlen
= sizeof(int),
830 .proc_handler
= proc_dointvec
,
833 .procname
= "printk_delay",
834 .data
= &printk_delay_msec
,
835 .maxlen
= sizeof(int),
837 .proc_handler
= proc_dointvec_minmax
,
839 .extra2
= &ten_thousand
,
842 .procname
= "printk_devkmsg",
843 .data
= devkmsg_log_str
,
844 .maxlen
= DEVKMSG_STR_MAX_SIZE
,
846 .proc_handler
= devkmsg_sysctl_set_loglvl
,
849 .procname
= "dmesg_restrict",
850 .data
= &dmesg_restrict
,
851 .maxlen
= sizeof(int),
853 .proc_handler
= proc_dointvec_minmax_sysadmin
,
858 .procname
= "kptr_restrict",
859 .data
= &kptr_restrict
,
860 .maxlen
= sizeof(int),
862 .proc_handler
= proc_dointvec_minmax_sysadmin
,
868 .procname
= "ngroups_max",
869 .data
= &ngroups_max
,
870 .maxlen
= sizeof (int),
872 .proc_handler
= proc_dointvec
,
875 .procname
= "cap_last_cap",
876 .data
= (void *)&cap_last_cap
,
877 .maxlen
= sizeof(int),
879 .proc_handler
= proc_dointvec
,
881 #if defined(CONFIG_LOCKUP_DETECTOR)
883 .procname
= "watchdog",
884 .data
= &watchdog_user_enabled
,
885 .maxlen
= sizeof(int),
887 .proc_handler
= proc_watchdog
,
892 .procname
= "watchdog_thresh",
893 .data
= &watchdog_thresh
,
894 .maxlen
= sizeof(int),
896 .proc_handler
= proc_watchdog_thresh
,
901 .procname
= "nmi_watchdog",
902 .data
= &nmi_watchdog_user_enabled
,
903 .maxlen
= sizeof(int),
904 .mode
= NMI_WATCHDOG_SYSCTL_PERM
,
905 .proc_handler
= proc_nmi_watchdog
,
910 .procname
= "watchdog_cpumask",
911 .data
= &watchdog_cpumask_bits
,
914 .proc_handler
= proc_watchdog_cpumask
,
916 #ifdef CONFIG_SOFTLOCKUP_DETECTOR
918 .procname
= "soft_watchdog",
919 .data
= &soft_watchdog_user_enabled
,
920 .maxlen
= sizeof(int),
922 .proc_handler
= proc_soft_watchdog
,
927 .procname
= "softlockup_panic",
928 .data
= &softlockup_panic
,
929 .maxlen
= sizeof(int),
931 .proc_handler
= proc_dointvec_minmax
,
937 .procname
= "softlockup_all_cpu_backtrace",
938 .data
= &sysctl_softlockup_all_cpu_backtrace
,
939 .maxlen
= sizeof(int),
941 .proc_handler
= proc_dointvec_minmax
,
945 #endif /* CONFIG_SMP */
947 #ifdef CONFIG_HARDLOCKUP_DETECTOR
949 .procname
= "hardlockup_panic",
950 .data
= &hardlockup_panic
,
951 .maxlen
= sizeof(int),
953 .proc_handler
= proc_dointvec_minmax
,
959 .procname
= "hardlockup_all_cpu_backtrace",
960 .data
= &sysctl_hardlockup_all_cpu_backtrace
,
961 .maxlen
= sizeof(int),
963 .proc_handler
= proc_dointvec_minmax
,
967 #endif /* CONFIG_SMP */
971 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
973 .procname
= "unknown_nmi_panic",
974 .data
= &unknown_nmi_panic
,
975 .maxlen
= sizeof (int),
977 .proc_handler
= proc_dointvec
,
980 #if defined(CONFIG_X86)
982 .procname
= "panic_on_unrecovered_nmi",
983 .data
= &panic_on_unrecovered_nmi
,
984 .maxlen
= sizeof(int),
986 .proc_handler
= proc_dointvec
,
989 .procname
= "panic_on_io_nmi",
990 .data
= &panic_on_io_nmi
,
991 .maxlen
= sizeof(int),
993 .proc_handler
= proc_dointvec
,
995 #ifdef CONFIG_DEBUG_STACKOVERFLOW
997 .procname
= "panic_on_stackoverflow",
998 .data
= &sysctl_panic_on_stackoverflow
,
999 .maxlen
= sizeof(int),
1001 .proc_handler
= proc_dointvec
,
1005 .procname
= "bootloader_type",
1006 .data
= &bootloader_type
,
1007 .maxlen
= sizeof (int),
1009 .proc_handler
= proc_dointvec
,
1012 .procname
= "bootloader_version",
1013 .data
= &bootloader_version
,
1014 .maxlen
= sizeof (int),
1016 .proc_handler
= proc_dointvec
,
1019 .procname
= "io_delay_type",
1020 .data
= &io_delay_type
,
1021 .maxlen
= sizeof(int),
1023 .proc_handler
= proc_dointvec
,
1026 #if defined(CONFIG_MMU)
1028 .procname
= "randomize_va_space",
1029 .data
= &randomize_va_space
,
1030 .maxlen
= sizeof(int),
1032 .proc_handler
= proc_dointvec
,
1035 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
1037 .procname
= "spin_retry",
1038 .data
= &spin_retry
,
1039 .maxlen
= sizeof (int),
1041 .proc_handler
= proc_dointvec
,
1044 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
1046 .procname
= "acpi_video_flags",
1047 .data
= &acpi_realmode_flags
,
1048 .maxlen
= sizeof (unsigned long),
1050 .proc_handler
= proc_doulongvec_minmax
,
1053 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
1055 .procname
= "ignore-unaligned-usertrap",
1056 .data
= &no_unaligned_warning
,
1057 .maxlen
= sizeof (int),
1059 .proc_handler
= proc_dointvec
,
1064 .procname
= "unaligned-dump-stack",
1065 .data
= &unaligned_dump_stack
,
1066 .maxlen
= sizeof (int),
1068 .proc_handler
= proc_dointvec
,
1071 #ifdef CONFIG_DETECT_HUNG_TASK
1073 .procname
= "hung_task_panic",
1074 .data
= &sysctl_hung_task_panic
,
1075 .maxlen
= sizeof(int),
1077 .proc_handler
= proc_dointvec_minmax
,
1082 .procname
= "hung_task_check_count",
1083 .data
= &sysctl_hung_task_check_count
,
1084 .maxlen
= sizeof(int),
1086 .proc_handler
= proc_dointvec_minmax
,
1090 .procname
= "hung_task_timeout_secs",
1091 .data
= &sysctl_hung_task_timeout_secs
,
1092 .maxlen
= sizeof(unsigned long),
1094 .proc_handler
= proc_dohung_task_timeout_secs
,
1095 .extra2
= &hung_task_timeout_max
,
1098 .procname
= "hung_task_check_interval_secs",
1099 .data
= &sysctl_hung_task_check_interval_secs
,
1100 .maxlen
= sizeof(unsigned long),
1102 .proc_handler
= proc_dohung_task_timeout_secs
,
1103 .extra2
= &hung_task_timeout_max
,
1106 .procname
= "hung_task_warnings",
1107 .data
= &sysctl_hung_task_warnings
,
1108 .maxlen
= sizeof(int),
1110 .proc_handler
= proc_dointvec_minmax
,
1114 #ifdef CONFIG_RT_MUTEXES
1116 .procname
= "max_lock_depth",
1117 .data
= &max_lock_depth
,
1118 .maxlen
= sizeof(int),
1120 .proc_handler
= proc_dointvec
,
1124 .procname
= "poweroff_cmd",
1125 .data
= &poweroff_cmd
,
1126 .maxlen
= POWEROFF_CMD_PATH_LEN
,
1128 .proc_handler
= proc_dostring
,
1134 .child
= key_sysctls
,
1137 #ifdef CONFIG_PERF_EVENTS
1139 * User-space scripts rely on the existence of this file
1140 * as a feature check for perf_events being enabled.
1142 * So it's an ABI, do not remove!
1145 .procname
= "perf_event_paranoid",
1146 .data
= &sysctl_perf_event_paranoid
,
1147 .maxlen
= sizeof(sysctl_perf_event_paranoid
),
1149 .proc_handler
= proc_dointvec
,
1152 .procname
= "perf_event_mlock_kb",
1153 .data
= &sysctl_perf_event_mlock
,
1154 .maxlen
= sizeof(sysctl_perf_event_mlock
),
1156 .proc_handler
= proc_dointvec
,
1159 .procname
= "perf_event_max_sample_rate",
1160 .data
= &sysctl_perf_event_sample_rate
,
1161 .maxlen
= sizeof(sysctl_perf_event_sample_rate
),
1163 .proc_handler
= perf_proc_update_handler
,
1167 .procname
= "perf_cpu_time_max_percent",
1168 .data
= &sysctl_perf_cpu_time_max_percent
,
1169 .maxlen
= sizeof(sysctl_perf_cpu_time_max_percent
),
1171 .proc_handler
= perf_cpu_time_max_percent_handler
,
1173 .extra2
= &one_hundred
,
1176 .procname
= "perf_event_max_stack",
1177 .data
= &sysctl_perf_event_max_stack
,
1178 .maxlen
= sizeof(sysctl_perf_event_max_stack
),
1180 .proc_handler
= perf_event_max_stack_handler
,
1182 .extra2
= &six_hundred_forty_kb
,
1185 .procname
= "perf_event_max_contexts_per_stack",
1186 .data
= &sysctl_perf_event_max_contexts_per_stack
,
1187 .maxlen
= sizeof(sysctl_perf_event_max_contexts_per_stack
),
1189 .proc_handler
= perf_event_max_stack_handler
,
1191 .extra2
= &one_thousand
,
1195 .procname
= "panic_on_warn",
1196 .data
= &panic_on_warn
,
1197 .maxlen
= sizeof(int),
1199 .proc_handler
= proc_dointvec_minmax
,
1203 #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1205 .procname
= "timer_migration",
1206 .data
= &sysctl_timer_migration
,
1207 .maxlen
= sizeof(unsigned int),
1209 .proc_handler
= timer_migration_handler
,
1214 #ifdef CONFIG_BPF_SYSCALL
1216 .procname
= "unprivileged_bpf_disabled",
1217 .data
= &sysctl_unprivileged_bpf_disabled
,
1218 .maxlen
= sizeof(sysctl_unprivileged_bpf_disabled
),
1220 /* only handle a transition from default "0" to "1" */
1221 .proc_handler
= proc_dointvec_minmax
,
1226 #if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1228 .procname
= "panic_on_rcu_stall",
1229 .data
= &sysctl_panic_on_rcu_stall
,
1230 .maxlen
= sizeof(sysctl_panic_on_rcu_stall
),
1232 .proc_handler
= proc_dointvec_minmax
,
1237 #ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
1239 .procname
= "stack_erasing",
1241 .maxlen
= sizeof(int),
1243 .proc_handler
= stack_erasing_sysctl
,
1251 static struct ctl_table vm_table
[] = {
1253 .procname
= "overcommit_memory",
1254 .data
= &sysctl_overcommit_memory
,
1255 .maxlen
= sizeof(sysctl_overcommit_memory
),
1257 .proc_handler
= proc_dointvec_minmax
,
1262 .procname
= "panic_on_oom",
1263 .data
= &sysctl_panic_on_oom
,
1264 .maxlen
= sizeof(sysctl_panic_on_oom
),
1266 .proc_handler
= proc_dointvec_minmax
,
1271 .procname
= "oom_kill_allocating_task",
1272 .data
= &sysctl_oom_kill_allocating_task
,
1273 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
1275 .proc_handler
= proc_dointvec
,
1278 .procname
= "oom_dump_tasks",
1279 .data
= &sysctl_oom_dump_tasks
,
1280 .maxlen
= sizeof(sysctl_oom_dump_tasks
),
1282 .proc_handler
= proc_dointvec
,
1285 .procname
= "overcommit_ratio",
1286 .data
= &sysctl_overcommit_ratio
,
1287 .maxlen
= sizeof(sysctl_overcommit_ratio
),
1289 .proc_handler
= overcommit_ratio_handler
,
1292 .procname
= "overcommit_kbytes",
1293 .data
= &sysctl_overcommit_kbytes
,
1294 .maxlen
= sizeof(sysctl_overcommit_kbytes
),
1296 .proc_handler
= overcommit_kbytes_handler
,
1299 .procname
= "page-cluster",
1300 .data
= &page_cluster
,
1301 .maxlen
= sizeof(int),
1303 .proc_handler
= proc_dointvec_minmax
,
1307 .procname
= "dirty_background_ratio",
1308 .data
= &dirty_background_ratio
,
1309 .maxlen
= sizeof(dirty_background_ratio
),
1311 .proc_handler
= dirty_background_ratio_handler
,
1313 .extra2
= &one_hundred
,
1316 .procname
= "dirty_background_bytes",
1317 .data
= &dirty_background_bytes
,
1318 .maxlen
= sizeof(dirty_background_bytes
),
1320 .proc_handler
= dirty_background_bytes_handler
,
1324 .procname
= "dirty_ratio",
1325 .data
= &vm_dirty_ratio
,
1326 .maxlen
= sizeof(vm_dirty_ratio
),
1328 .proc_handler
= dirty_ratio_handler
,
1330 .extra2
= &one_hundred
,
1333 .procname
= "dirty_bytes",
1334 .data
= &vm_dirty_bytes
,
1335 .maxlen
= sizeof(vm_dirty_bytes
),
1337 .proc_handler
= dirty_bytes_handler
,
1338 .extra1
= &dirty_bytes_min
,
1341 .procname
= "dirty_writeback_centisecs",
1342 .data
= &dirty_writeback_interval
,
1343 .maxlen
= sizeof(dirty_writeback_interval
),
1345 .proc_handler
= dirty_writeback_centisecs_handler
,
1348 .procname
= "dirty_expire_centisecs",
1349 .data
= &dirty_expire_interval
,
1350 .maxlen
= sizeof(dirty_expire_interval
),
1352 .proc_handler
= proc_dointvec_minmax
,
1356 .procname
= "dirtytime_expire_seconds",
1357 .data
= &dirtytime_expire_interval
,
1358 .maxlen
= sizeof(dirtytime_expire_interval
),
1360 .proc_handler
= dirtytime_interval_handler
,
1364 .procname
= "swappiness",
1365 .data
= &vm_swappiness
,
1366 .maxlen
= sizeof(vm_swappiness
),
1368 .proc_handler
= proc_dointvec_minmax
,
1370 .extra2
= &one_hundred
,
1372 #ifdef CONFIG_HUGETLB_PAGE
1374 .procname
= "nr_hugepages",
1376 .maxlen
= sizeof(unsigned long),
1378 .proc_handler
= hugetlb_sysctl_handler
,
1382 .procname
= "nr_hugepages_mempolicy",
1384 .maxlen
= sizeof(unsigned long),
1386 .proc_handler
= &hugetlb_mempolicy_sysctl_handler
,
1389 .procname
= "numa_stat",
1390 .data
= &sysctl_vm_numa_stat
,
1391 .maxlen
= sizeof(int),
1393 .proc_handler
= sysctl_vm_numa_stat_handler
,
1399 .procname
= "hugetlb_shm_group",
1400 .data
= &sysctl_hugetlb_shm_group
,
1401 .maxlen
= sizeof(gid_t
),
1403 .proc_handler
= proc_dointvec
,
1406 .procname
= "nr_overcommit_hugepages",
1408 .maxlen
= sizeof(unsigned long),
1410 .proc_handler
= hugetlb_overcommit_handler
,
1414 .procname
= "lowmem_reserve_ratio",
1415 .data
= &sysctl_lowmem_reserve_ratio
,
1416 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
1418 .proc_handler
= lowmem_reserve_ratio_sysctl_handler
,
1421 .procname
= "drop_caches",
1422 .data
= &sysctl_drop_caches
,
1423 .maxlen
= sizeof(int),
1425 .proc_handler
= drop_caches_sysctl_handler
,
1429 #ifdef CONFIG_COMPACTION
1431 .procname
= "compact_memory",
1432 .data
= &sysctl_compact_memory
,
1433 .maxlen
= sizeof(int),
1435 .proc_handler
= sysctl_compaction_handler
,
1438 .procname
= "extfrag_threshold",
1439 .data
= &sysctl_extfrag_threshold
,
1440 .maxlen
= sizeof(int),
1442 .proc_handler
= sysctl_extfrag_handler
,
1443 .extra1
= &min_extfrag_threshold
,
1444 .extra2
= &max_extfrag_threshold
,
1447 .procname
= "compact_unevictable_allowed",
1448 .data
= &sysctl_compact_unevictable_allowed
,
1449 .maxlen
= sizeof(int),
1451 .proc_handler
= proc_dointvec
,
1456 #endif /* CONFIG_COMPACTION */
1458 .procname
= "min_free_kbytes",
1459 .data
= &min_free_kbytes
,
1460 .maxlen
= sizeof(min_free_kbytes
),
1462 .proc_handler
= min_free_kbytes_sysctl_handler
,
1466 .procname
= "watermark_scale_factor",
1467 .data
= &watermark_scale_factor
,
1468 .maxlen
= sizeof(watermark_scale_factor
),
1470 .proc_handler
= watermark_scale_factor_sysctl_handler
,
1472 .extra2
= &one_thousand
,
1475 .procname
= "percpu_pagelist_fraction",
1476 .data
= &percpu_pagelist_fraction
,
1477 .maxlen
= sizeof(percpu_pagelist_fraction
),
1479 .proc_handler
= percpu_pagelist_fraction_sysctl_handler
,
1484 .procname
= "max_map_count",
1485 .data
= &sysctl_max_map_count
,
1486 .maxlen
= sizeof(sysctl_max_map_count
),
1488 .proc_handler
= proc_dointvec_minmax
,
1493 .procname
= "nr_trim_pages",
1494 .data
= &sysctl_nr_trim_pages
,
1495 .maxlen
= sizeof(sysctl_nr_trim_pages
),
1497 .proc_handler
= proc_dointvec_minmax
,
1502 .procname
= "laptop_mode",
1503 .data
= &laptop_mode
,
1504 .maxlen
= sizeof(laptop_mode
),
1506 .proc_handler
= proc_dointvec_jiffies
,
1509 .procname
= "block_dump",
1510 .data
= &block_dump
,
1511 .maxlen
= sizeof(block_dump
),
1513 .proc_handler
= proc_dointvec
,
1517 .procname
= "vfs_cache_pressure",
1518 .data
= &sysctl_vfs_cache_pressure
,
1519 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
1521 .proc_handler
= proc_dointvec
,
1524 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1526 .procname
= "legacy_va_layout",
1527 .data
= &sysctl_legacy_va_layout
,
1528 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1530 .proc_handler
= proc_dointvec
,
1536 .procname
= "zone_reclaim_mode",
1537 .data
= &node_reclaim_mode
,
1538 .maxlen
= sizeof(node_reclaim_mode
),
1540 .proc_handler
= proc_dointvec
,
1544 .procname
= "min_unmapped_ratio",
1545 .data
= &sysctl_min_unmapped_ratio
,
1546 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1548 .proc_handler
= sysctl_min_unmapped_ratio_sysctl_handler
,
1550 .extra2
= &one_hundred
,
1553 .procname
= "min_slab_ratio",
1554 .data
= &sysctl_min_slab_ratio
,
1555 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1557 .proc_handler
= sysctl_min_slab_ratio_sysctl_handler
,
1559 .extra2
= &one_hundred
,
1564 .procname
= "stat_interval",
1565 .data
= &sysctl_stat_interval
,
1566 .maxlen
= sizeof(sysctl_stat_interval
),
1568 .proc_handler
= proc_dointvec_jiffies
,
1571 .procname
= "stat_refresh",
1575 .proc_handler
= vmstat_refresh
,
1580 .procname
= "mmap_min_addr",
1581 .data
= &dac_mmap_min_addr
,
1582 .maxlen
= sizeof(unsigned long),
1584 .proc_handler
= mmap_min_addr_handler
,
1589 .procname
= "numa_zonelist_order",
1590 .data
= &numa_zonelist_order
,
1591 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1593 .proc_handler
= numa_zonelist_order_handler
,
1596 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1597 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1599 .procname
= "vdso_enabled",
1600 #ifdef CONFIG_X86_32
1601 .data
= &vdso32_enabled
,
1602 .maxlen
= sizeof(vdso32_enabled
),
1604 .data
= &vdso_enabled
,
1605 .maxlen
= sizeof(vdso_enabled
),
1608 .proc_handler
= proc_dointvec
,
1612 #ifdef CONFIG_HIGHMEM
1614 .procname
= "highmem_is_dirtyable",
1615 .data
= &vm_highmem_is_dirtyable
,
1616 .maxlen
= sizeof(vm_highmem_is_dirtyable
),
1618 .proc_handler
= proc_dointvec_minmax
,
1623 #ifdef CONFIG_MEMORY_FAILURE
1625 .procname
= "memory_failure_early_kill",
1626 .data
= &sysctl_memory_failure_early_kill
,
1627 .maxlen
= sizeof(sysctl_memory_failure_early_kill
),
1629 .proc_handler
= proc_dointvec_minmax
,
1634 .procname
= "memory_failure_recovery",
1635 .data
= &sysctl_memory_failure_recovery
,
1636 .maxlen
= sizeof(sysctl_memory_failure_recovery
),
1638 .proc_handler
= proc_dointvec_minmax
,
1644 .procname
= "user_reserve_kbytes",
1645 .data
= &sysctl_user_reserve_kbytes
,
1646 .maxlen
= sizeof(sysctl_user_reserve_kbytes
),
1648 .proc_handler
= proc_doulongvec_minmax
,
1651 .procname
= "admin_reserve_kbytes",
1652 .data
= &sysctl_admin_reserve_kbytes
,
1653 .maxlen
= sizeof(sysctl_admin_reserve_kbytes
),
1655 .proc_handler
= proc_doulongvec_minmax
,
1657 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1659 .procname
= "mmap_rnd_bits",
1660 .data
= &mmap_rnd_bits
,
1661 .maxlen
= sizeof(mmap_rnd_bits
),
1663 .proc_handler
= proc_dointvec_minmax
,
1664 .extra1
= (void *)&mmap_rnd_bits_min
,
1665 .extra2
= (void *)&mmap_rnd_bits_max
,
1668 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1670 .procname
= "mmap_rnd_compat_bits",
1671 .data
= &mmap_rnd_compat_bits
,
1672 .maxlen
= sizeof(mmap_rnd_compat_bits
),
1674 .proc_handler
= proc_dointvec_minmax
,
1675 .extra1
= (void *)&mmap_rnd_compat_bits_min
,
1676 .extra2
= (void *)&mmap_rnd_compat_bits_max
,
1682 static struct ctl_table fs_table
[] = {
1684 .procname
= "inode-nr",
1685 .data
= &inodes_stat
,
1686 .maxlen
= 2*sizeof(long),
1688 .proc_handler
= proc_nr_inodes
,
1691 .procname
= "inode-state",
1692 .data
= &inodes_stat
,
1693 .maxlen
= 7*sizeof(long),
1695 .proc_handler
= proc_nr_inodes
,
1698 .procname
= "file-nr",
1699 .data
= &files_stat
,
1700 .maxlen
= sizeof(files_stat
),
1702 .proc_handler
= proc_nr_files
,
1705 .procname
= "file-max",
1706 .data
= &files_stat
.max_files
,
1707 .maxlen
= sizeof(files_stat
.max_files
),
1709 .proc_handler
= proc_doulongvec_minmax
,
1712 .procname
= "nr_open",
1713 .data
= &sysctl_nr_open
,
1714 .maxlen
= sizeof(unsigned int),
1716 .proc_handler
= proc_dointvec_minmax
,
1717 .extra1
= &sysctl_nr_open_min
,
1718 .extra2
= &sysctl_nr_open_max
,
1721 .procname
= "dentry-state",
1722 .data
= &dentry_stat
,
1723 .maxlen
= 6*sizeof(long),
1725 .proc_handler
= proc_nr_dentry
,
1728 .procname
= "overflowuid",
1729 .data
= &fs_overflowuid
,
1730 .maxlen
= sizeof(int),
1732 .proc_handler
= proc_dointvec_minmax
,
1733 .extra1
= &minolduid
,
1734 .extra2
= &maxolduid
,
1737 .procname
= "overflowgid",
1738 .data
= &fs_overflowgid
,
1739 .maxlen
= sizeof(int),
1741 .proc_handler
= proc_dointvec_minmax
,
1742 .extra1
= &minolduid
,
1743 .extra2
= &maxolduid
,
1745 #ifdef CONFIG_FILE_LOCKING
1747 .procname
= "leases-enable",
1748 .data
= &leases_enable
,
1749 .maxlen
= sizeof(int),
1751 .proc_handler
= proc_dointvec
,
1754 #ifdef CONFIG_DNOTIFY
1756 .procname
= "dir-notify-enable",
1757 .data
= &dir_notify_enable
,
1758 .maxlen
= sizeof(int),
1760 .proc_handler
= proc_dointvec
,
1764 #ifdef CONFIG_FILE_LOCKING
1766 .procname
= "lease-break-time",
1767 .data
= &lease_break_time
,
1768 .maxlen
= sizeof(int),
1770 .proc_handler
= proc_dointvec
,
1775 .procname
= "aio-nr",
1777 .maxlen
= sizeof(aio_nr
),
1779 .proc_handler
= proc_doulongvec_minmax
,
1782 .procname
= "aio-max-nr",
1783 .data
= &aio_max_nr
,
1784 .maxlen
= sizeof(aio_max_nr
),
1786 .proc_handler
= proc_doulongvec_minmax
,
1788 #endif /* CONFIG_AIO */
1789 #ifdef CONFIG_INOTIFY_USER
1791 .procname
= "inotify",
1793 .child
= inotify_table
,
1798 .procname
= "epoll",
1800 .child
= epoll_table
,
1805 .procname
= "protected_symlinks",
1806 .data
= &sysctl_protected_symlinks
,
1807 .maxlen
= sizeof(int),
1809 .proc_handler
= proc_dointvec_minmax
,
1814 .procname
= "protected_hardlinks",
1815 .data
= &sysctl_protected_hardlinks
,
1816 .maxlen
= sizeof(int),
1818 .proc_handler
= proc_dointvec_minmax
,
1823 .procname
= "protected_fifos",
1824 .data
= &sysctl_protected_fifos
,
1825 .maxlen
= sizeof(int),
1827 .proc_handler
= proc_dointvec_minmax
,
1832 .procname
= "protected_regular",
1833 .data
= &sysctl_protected_regular
,
1834 .maxlen
= sizeof(int),
1836 .proc_handler
= proc_dointvec_minmax
,
1841 .procname
= "suid_dumpable",
1842 .data
= &suid_dumpable
,
1843 .maxlen
= sizeof(int),
1845 .proc_handler
= proc_dointvec_minmax_coredump
,
1849 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1851 .procname
= "binfmt_misc",
1853 .child
= sysctl_mount_point
,
1857 .procname
= "pipe-max-size",
1858 .data
= &pipe_max_size
,
1859 .maxlen
= sizeof(pipe_max_size
),
1861 .proc_handler
= proc_dopipe_max_size
,
1864 .procname
= "pipe-user-pages-hard",
1865 .data
= &pipe_user_pages_hard
,
1866 .maxlen
= sizeof(pipe_user_pages_hard
),
1868 .proc_handler
= proc_doulongvec_minmax
,
1871 .procname
= "pipe-user-pages-soft",
1872 .data
= &pipe_user_pages_soft
,
1873 .maxlen
= sizeof(pipe_user_pages_soft
),
1875 .proc_handler
= proc_doulongvec_minmax
,
1878 .procname
= "mount-max",
1879 .data
= &sysctl_mount_max
,
1880 .maxlen
= sizeof(unsigned int),
1882 .proc_handler
= proc_dointvec_minmax
,
1888 static struct ctl_table debug_table
[] = {
1889 #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
1891 .procname
= "exception-trace",
1892 .data
= &show_unhandled_signals
,
1893 .maxlen
= sizeof(int),
1895 .proc_handler
= proc_dointvec
1898 #if defined(CONFIG_OPTPROBES)
1900 .procname
= "kprobes-optimization",
1901 .data
= &sysctl_kprobes_optimization
,
1902 .maxlen
= sizeof(int),
1904 .proc_handler
= proc_kprobes_optimization_handler
,
1912 static struct ctl_table dev_table
[] = {
1916 int __init
sysctl_init(void)
1918 struct ctl_table_header
*hdr
;
1920 hdr
= register_sysctl_table(sysctl_base_table
);
1921 kmemleak_not_leak(hdr
);
1925 #endif /* CONFIG_SYSCTL */
1931 #ifdef CONFIG_PROC_SYSCTL
1933 static int _proc_do_string(char *data
, int maxlen
, int write
,
1934 char __user
*buffer
,
1935 size_t *lenp
, loff_t
*ppos
)
1941 if (!data
|| !maxlen
|| !*lenp
) {
1947 if (sysctl_writes_strict
== SYSCTL_WRITES_STRICT
) {
1948 /* Only continue writes not past the end of buffer. */
1950 if (len
> maxlen
- 1)
1957 /* Start writing from beginning of buffer. */
1963 while ((p
- buffer
) < *lenp
&& len
< maxlen
- 1) {
1964 if (get_user(c
, p
++))
1966 if (c
== 0 || c
== '\n')
1987 if (copy_to_user(buffer
, data
, len
))
1990 if (put_user('\n', buffer
+ len
))
2000 static void warn_sysctl_write(struct ctl_table
*table
)
2002 pr_warn_once("%s wrote to %s when file position was not 0!\n"
2003 "This will not be supported in the future. To silence this\n"
2004 "warning, set kernel.sysctl_writes_strict = -1\n",
2005 current
->comm
, table
->procname
);
2009 * proc_first_pos_non_zero_ignore - check if first position is allowed
2010 * @ppos: file position
2011 * @table: the sysctl table
2013 * Returns true if the first position is non-zero and the sysctl_writes_strict
2014 * mode indicates this is not allowed for numeric input types. String proc
2015 * handlers can ignore the return value.
2017 static bool proc_first_pos_non_zero_ignore(loff_t
*ppos
,
2018 struct ctl_table
*table
)
2023 switch (sysctl_writes_strict
) {
2024 case SYSCTL_WRITES_STRICT
:
2026 case SYSCTL_WRITES_WARN
:
2027 warn_sysctl_write(table
);
2035 * proc_dostring - read a string sysctl
2036 * @table: the sysctl table
2037 * @write: %TRUE if this is a write to the sysctl file
2038 * @buffer: the user buffer
2039 * @lenp: the size of the user buffer
2040 * @ppos: file position
2042 * Reads/writes a string from/to the user buffer. If the kernel
2043 * buffer provided is not large enough to hold the string, the
2044 * string is truncated. The copied string is %NULL-terminated.
2045 * If the string is being read by the user process, it is copied
2046 * and a newline '\n' is added. It is truncated if the buffer is
2049 * Returns 0 on success.
2051 int proc_dostring(struct ctl_table
*table
, int write
,
2052 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2055 proc_first_pos_non_zero_ignore(ppos
, table
);
2057 return _proc_do_string((char *)(table
->data
), table
->maxlen
, write
,
2058 (char __user
*)buffer
, lenp
, ppos
);
2061 static size_t proc_skip_spaces(char **buf
)
2064 char *tmp
= skip_spaces(*buf
);
2070 static void proc_skip_char(char **buf
, size_t *size
, const char v
)
2080 #define TMPBUFLEN 22
2082 * proc_get_long - reads an ASCII formatted integer from a user buffer
2084 * @buf: a kernel buffer
2085 * @size: size of the kernel buffer
2086 * @val: this is where the number will be stored
2087 * @neg: set to %TRUE if number is negative
2088 * @perm_tr: a vector which contains the allowed trailers
2089 * @perm_tr_len: size of the perm_tr vector
2090 * @tr: pointer to store the trailer character
2092 * In case of success %0 is returned and @buf and @size are updated with
2093 * the amount of bytes read. If @tr is non-NULL and a trailing
2094 * character exists (size is non-zero after returning from this
2095 * function), @tr is updated with the trailing character.
2097 static int proc_get_long(char **buf
, size_t *size
,
2098 unsigned long *val
, bool *neg
,
2099 const char *perm_tr
, unsigned perm_tr_len
, char *tr
)
2102 char *p
, tmp
[TMPBUFLEN
];
2108 if (len
> TMPBUFLEN
- 1)
2109 len
= TMPBUFLEN
- 1;
2111 memcpy(tmp
, *buf
, len
);
2115 if (*p
== '-' && *size
> 1) {
2123 *val
= simple_strtoul(p
, &p
, 0);
2127 /* We don't know if the next char is whitespace thus we may accept
2128 * invalid integers (e.g. 1234...a) or two integers instead of one
2129 * (e.g. 123...1). So lets not allow such large numbers. */
2130 if (len
== TMPBUFLEN
- 1)
2133 if (len
< *size
&& perm_tr_len
&& !memchr(perm_tr
, *p
, perm_tr_len
))
2136 if (tr
&& (len
< *size
))
2146 * proc_put_long - converts an integer to a decimal ASCII formatted string
2148 * @buf: the user buffer
2149 * @size: the size of the user buffer
2150 * @val: the integer to be converted
2151 * @neg: sign of the number, %TRUE for negative
2153 * In case of success %0 is returned and @buf and @size are updated with
2154 * the amount of bytes written.
2156 static int proc_put_long(void __user
**buf
, size_t *size
, unsigned long val
,
2160 char tmp
[TMPBUFLEN
], *p
= tmp
;
2162 sprintf(p
, "%s%lu", neg
? "-" : "", val
);
2166 if (copy_to_user(*buf
, tmp
, len
))
2174 static int proc_put_char(void __user
**buf
, size_t *size
, char c
)
2177 char __user
**buffer
= (char __user
**)buf
;
2178 if (put_user(c
, *buffer
))
2180 (*size
)--, (*buffer
)++;
2186 static int do_proc_dointvec_conv(bool *negp
, unsigned long *lvalp
,
2188 int write
, void *data
)
2192 if (*lvalp
> (unsigned long) INT_MAX
+ 1)
2196 if (*lvalp
> (unsigned long) INT_MAX
)
2204 *lvalp
= -(unsigned long)val
;
2207 *lvalp
= (unsigned long)val
;
2213 static int do_proc_douintvec_conv(unsigned long *lvalp
,
2215 int write
, void *data
)
2218 if (*lvalp
> UINT_MAX
)
2222 unsigned int val
= *valp
;
2223 *lvalp
= (unsigned long)val
;
2228 static const char proc_wspace_sep
[] = { ' ', '\t', '\n' };
2230 static int __do_proc_dointvec(void *tbl_data
, struct ctl_table
*table
,
2231 int write
, void __user
*buffer
,
2232 size_t *lenp
, loff_t
*ppos
,
2233 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
2234 int write
, void *data
),
2237 int *i
, vleft
, first
= 1, err
= 0;
2239 char *kbuf
= NULL
, *p
;
2241 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2246 i
= (int *) tbl_data
;
2247 vleft
= table
->maxlen
/ sizeof(*i
);
2251 conv
= do_proc_dointvec_conv
;
2254 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2257 if (left
> PAGE_SIZE
- 1)
2258 left
= PAGE_SIZE
- 1;
2259 p
= kbuf
= memdup_user_nul(buffer
, left
);
2261 return PTR_ERR(kbuf
);
2264 for (; left
&& vleft
--; i
++, first
=0) {
2269 left
-= proc_skip_spaces(&p
);
2273 err
= proc_get_long(&p
, &left
, &lval
, &neg
,
2275 sizeof(proc_wspace_sep
), NULL
);
2278 if (conv(&neg
, &lval
, i
, 1, data
)) {
2283 if (conv(&neg
, &lval
, i
, 0, data
)) {
2288 err
= proc_put_char(&buffer
, &left
, '\t');
2291 err
= proc_put_long(&buffer
, &left
, lval
, neg
);
2297 if (!write
&& !first
&& left
&& !err
)
2298 err
= proc_put_char(&buffer
, &left
, '\n');
2299 if (write
&& !err
&& left
)
2300 left
-= proc_skip_spaces(&p
);
2304 return err
? : -EINVAL
;
2312 static int do_proc_dointvec(struct ctl_table
*table
, int write
,
2313 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
2314 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
2315 int write
, void *data
),
2318 return __do_proc_dointvec(table
->data
, table
, write
,
2319 buffer
, lenp
, ppos
, conv
, data
);
2322 static int do_proc_douintvec_w(unsigned int *tbl_data
,
2323 struct ctl_table
*table
,
2324 void __user
*buffer
,
2325 size_t *lenp
, loff_t
*ppos
,
2326 int (*conv
)(unsigned long *lvalp
,
2328 int write
, void *data
),
2335 char *kbuf
= NULL
, *p
;
2339 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2342 if (left
> PAGE_SIZE
- 1)
2343 left
= PAGE_SIZE
- 1;
2345 p
= kbuf
= memdup_user_nul(buffer
, left
);
2349 left
-= proc_skip_spaces(&p
);
2355 err
= proc_get_long(&p
, &left
, &lval
, &neg
,
2357 sizeof(proc_wspace_sep
), NULL
);
2363 if (conv(&lval
, tbl_data
, 1, data
)) {
2369 left
-= proc_skip_spaces(&p
);
2378 /* This is in keeping with old __do_proc_dointvec() */
2384 static int do_proc_douintvec_r(unsigned int *tbl_data
, void __user
*buffer
,
2385 size_t *lenp
, loff_t
*ppos
,
2386 int (*conv
)(unsigned long *lvalp
,
2388 int write
, void *data
),
2397 if (conv(&lval
, tbl_data
, 0, data
)) {
2402 err
= proc_put_long(&buffer
, &left
, lval
, false);
2406 err
= proc_put_char(&buffer
, &left
, '\n');
2415 static int __do_proc_douintvec(void *tbl_data
, struct ctl_table
*table
,
2416 int write
, void __user
*buffer
,
2417 size_t *lenp
, loff_t
*ppos
,
2418 int (*conv
)(unsigned long *lvalp
,
2420 int write
, void *data
),
2423 unsigned int *i
, vleft
;
2425 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2430 i
= (unsigned int *) tbl_data
;
2431 vleft
= table
->maxlen
/ sizeof(*i
);
2434 * Arrays are not supported, keep this simple. *Do not* add
2443 conv
= do_proc_douintvec_conv
;
2446 return do_proc_douintvec_w(i
, table
, buffer
, lenp
, ppos
,
2448 return do_proc_douintvec_r(i
, buffer
, lenp
, ppos
, conv
, data
);
2451 static int do_proc_douintvec(struct ctl_table
*table
, int write
,
2452 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
2453 int (*conv
)(unsigned long *lvalp
,
2455 int write
, void *data
),
2458 return __do_proc_douintvec(table
->data
, table
, write
,
2459 buffer
, lenp
, ppos
, conv
, data
);
2463 * proc_dointvec - read a vector of integers
2464 * @table: the sysctl table
2465 * @write: %TRUE if this is a write to the sysctl file
2466 * @buffer: the user buffer
2467 * @lenp: the size of the user buffer
2468 * @ppos: file position
2470 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2471 * values from/to the user buffer, treated as an ASCII string.
2473 * Returns 0 on success.
2475 int proc_dointvec(struct ctl_table
*table
, int write
,
2476 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2478 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
, NULL
, NULL
);
2482 * proc_douintvec - read a vector of unsigned integers
2483 * @table: the sysctl table
2484 * @write: %TRUE if this is a write to the sysctl file
2485 * @buffer: the user buffer
2486 * @lenp: the size of the user buffer
2487 * @ppos: file position
2489 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2490 * values from/to the user buffer, treated as an ASCII string.
2492 * Returns 0 on success.
2494 int proc_douintvec(struct ctl_table
*table
, int write
,
2495 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2497 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2498 do_proc_douintvec_conv
, NULL
);
2502 * Taint values can only be increased
2503 * This means we can safely use a temporary.
2505 static int proc_taint(struct ctl_table
*table
, int write
,
2506 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2509 unsigned long tmptaint
= get_taint();
2512 if (write
&& !capable(CAP_SYS_ADMIN
))
2517 err
= proc_doulongvec_minmax(&t
, write
, buffer
, lenp
, ppos
);
2523 * Poor man's atomic or. Not worth adding a primitive
2524 * to everyone's atomic.h for this
2527 for (i
= 0; i
< BITS_PER_LONG
&& tmptaint
>> i
; i
++) {
2528 if ((tmptaint
>> i
) & 1)
2529 add_taint(i
, LOCKDEP_STILL_OK
);
2536 #ifdef CONFIG_PRINTK
2537 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
2538 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2540 if (write
&& !capable(CAP_SYS_ADMIN
))
2543 return proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2548 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
2549 * @min: pointer to minimum allowable value
2550 * @max: pointer to maximum allowable value
2552 * The do_proc_dointvec_minmax_conv_param structure provides the
2553 * minimum and maximum values for doing range checking for those sysctl
2554 * parameters that use the proc_dointvec_minmax() handler.
2556 struct do_proc_dointvec_minmax_conv_param
{
2561 static int do_proc_dointvec_minmax_conv(bool *negp
, unsigned long *lvalp
,
2563 int write
, void *data
)
2565 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
2567 int val
= *negp
? -*lvalp
: *lvalp
;
2568 if ((param
->min
&& *param
->min
> val
) ||
2569 (param
->max
&& *param
->max
< val
))
2576 *lvalp
= -(unsigned long)val
;
2579 *lvalp
= (unsigned long)val
;
2586 * proc_dointvec_minmax - read a vector of integers with min/max values
2587 * @table: the sysctl table
2588 * @write: %TRUE if this is a write to the sysctl file
2589 * @buffer: the user buffer
2590 * @lenp: the size of the user buffer
2591 * @ppos: file position
2593 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2594 * values from/to the user buffer, treated as an ASCII string.
2596 * This routine will ensure the values are within the range specified by
2597 * table->extra1 (min) and table->extra2 (max).
2599 * Returns 0 on success or -EINVAL on write when the range check fails.
2601 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2602 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2604 struct do_proc_dointvec_minmax_conv_param param
= {
2605 .min
= (int *) table
->extra1
,
2606 .max
= (int *) table
->extra2
,
2608 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2609 do_proc_dointvec_minmax_conv
, ¶m
);
2613 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
2614 * @min: pointer to minimum allowable value
2615 * @max: pointer to maximum allowable value
2617 * The do_proc_douintvec_minmax_conv_param structure provides the
2618 * minimum and maximum values for doing range checking for those sysctl
2619 * parameters that use the proc_douintvec_minmax() handler.
2621 struct do_proc_douintvec_minmax_conv_param
{
2626 static int do_proc_douintvec_minmax_conv(unsigned long *lvalp
,
2628 int write
, void *data
)
2630 struct do_proc_douintvec_minmax_conv_param
*param
= data
;
2633 unsigned int val
= *lvalp
;
2635 if (*lvalp
> UINT_MAX
)
2638 if ((param
->min
&& *param
->min
> val
) ||
2639 (param
->max
&& *param
->max
< val
))
2644 unsigned int val
= *valp
;
2645 *lvalp
= (unsigned long) val
;
2652 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2653 * @table: the sysctl table
2654 * @write: %TRUE if this is a write to the sysctl file
2655 * @buffer: the user buffer
2656 * @lenp: the size of the user buffer
2657 * @ppos: file position
2659 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2660 * values from/to the user buffer, treated as an ASCII string. Negative
2661 * strings are not allowed.
2663 * This routine will ensure the values are within the range specified by
2664 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2665 * check for UINT_MAX to avoid having to support wrap around uses from
2668 * Returns 0 on success or -ERANGE on write when the range check fails.
2670 int proc_douintvec_minmax(struct ctl_table
*table
, int write
,
2671 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2673 struct do_proc_douintvec_minmax_conv_param param
= {
2674 .min
= (unsigned int *) table
->extra1
,
2675 .max
= (unsigned int *) table
->extra2
,
2677 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2678 do_proc_douintvec_minmax_conv
, ¶m
);
2681 static int do_proc_dopipe_max_size_conv(unsigned long *lvalp
,
2683 int write
, void *data
)
2688 val
= round_pipe_size(*lvalp
);
2694 unsigned int val
= *valp
;
2695 *lvalp
= (unsigned long) val
;
2701 static int proc_dopipe_max_size(struct ctl_table
*table
, int write
,
2702 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2704 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2705 do_proc_dopipe_max_size_conv
, NULL
);
2708 static void validate_coredump_safety(void)
2710 #ifdef CONFIG_COREDUMP
2711 if (suid_dumpable
== SUID_DUMP_ROOT
&&
2712 core_pattern
[0] != '/' && core_pattern
[0] != '|') {
2714 "Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2715 "Pipe handler or fully qualified core dump path required.\n"
2716 "Set kernel.core_pattern before fs.suid_dumpable.\n"
2722 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
2723 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2725 int error
= proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2727 validate_coredump_safety();
2731 #ifdef CONFIG_COREDUMP
2732 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
2733 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2735 int error
= proc_dostring(table
, write
, buffer
, lenp
, ppos
);
2737 validate_coredump_safety();
2742 static int __do_proc_doulongvec_minmax(void *data
, struct ctl_table
*table
, int write
,
2743 void __user
*buffer
,
2744 size_t *lenp
, loff_t
*ppos
,
2745 unsigned long convmul
,
2746 unsigned long convdiv
)
2748 unsigned long *i
, *min
, *max
;
2749 int vleft
, first
= 1, err
= 0;
2751 char *kbuf
= NULL
, *p
;
2753 if (!data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2758 i
= (unsigned long *) data
;
2759 min
= (unsigned long *) table
->extra1
;
2760 max
= (unsigned long *) table
->extra2
;
2761 vleft
= table
->maxlen
/ sizeof(unsigned long);
2765 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2768 if (left
> PAGE_SIZE
- 1)
2769 left
= PAGE_SIZE
- 1;
2770 p
= kbuf
= memdup_user_nul(buffer
, left
);
2772 return PTR_ERR(kbuf
);
2775 for (; left
&& vleft
--; i
++, first
= 0) {
2781 left
-= proc_skip_spaces(&p
);
2783 err
= proc_get_long(&p
, &left
, &val
, &neg
,
2785 sizeof(proc_wspace_sep
), NULL
);
2790 val
= convmul
* val
/ convdiv
;
2791 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2795 val
= convdiv
* (*i
) / convmul
;
2797 err
= proc_put_char(&buffer
, &left
, '\t');
2801 err
= proc_put_long(&buffer
, &left
, val
, false);
2807 if (!write
&& !first
&& left
&& !err
)
2808 err
= proc_put_char(&buffer
, &left
, '\n');
2810 left
-= proc_skip_spaces(&p
);
2814 return err
? : -EINVAL
;
2822 static int do_proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2823 void __user
*buffer
,
2824 size_t *lenp
, loff_t
*ppos
,
2825 unsigned long convmul
,
2826 unsigned long convdiv
)
2828 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2829 buffer
, lenp
, ppos
, convmul
, convdiv
);
2833 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2834 * @table: the sysctl table
2835 * @write: %TRUE if this is a write to the sysctl file
2836 * @buffer: the user buffer
2837 * @lenp: the size of the user buffer
2838 * @ppos: file position
2840 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2841 * values from/to the user buffer, treated as an ASCII string.
2843 * This routine will ensure the values are within the range specified by
2844 * table->extra1 (min) and table->extra2 (max).
2846 * Returns 0 on success.
2848 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2849 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2851 return do_proc_doulongvec_minmax(table
, write
, buffer
, lenp
, ppos
, 1l, 1l);
2855 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2856 * @table: the sysctl table
2857 * @write: %TRUE if this is a write to the sysctl file
2858 * @buffer: the user buffer
2859 * @lenp: the size of the user buffer
2860 * @ppos: file position
2862 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2863 * values from/to the user buffer, treated as an ASCII string. The values
2864 * are treated as milliseconds, and converted to jiffies when they are stored.
2866 * This routine will ensure the values are within the range specified by
2867 * table->extra1 (min) and table->extra2 (max).
2869 * Returns 0 on success.
2871 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2872 void __user
*buffer
,
2873 size_t *lenp
, loff_t
*ppos
)
2875 return do_proc_doulongvec_minmax(table
, write
, buffer
,
2876 lenp
, ppos
, HZ
, 1000l);
2880 static int do_proc_dointvec_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2882 int write
, void *data
)
2885 if (*lvalp
> INT_MAX
/ HZ
)
2887 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2893 lval
= -(unsigned long)val
;
2896 lval
= (unsigned long)val
;
2903 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2905 int write
, void *data
)
2908 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2910 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2916 lval
= -(unsigned long)val
;
2919 lval
= (unsigned long)val
;
2921 *lvalp
= jiffies_to_clock_t(lval
);
2926 static int do_proc_dointvec_ms_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2928 int write
, void *data
)
2931 unsigned long jif
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2941 lval
= -(unsigned long)val
;
2944 lval
= (unsigned long)val
;
2946 *lvalp
= jiffies_to_msecs(lval
);
2952 * proc_dointvec_jiffies - read a vector of integers as seconds
2953 * @table: the sysctl table
2954 * @write: %TRUE if this is a write to the sysctl file
2955 * @buffer: the user buffer
2956 * @lenp: the size of the user buffer
2957 * @ppos: file position
2959 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2960 * values from/to the user buffer, treated as an ASCII string.
2961 * The values read are assumed to be in seconds, and are converted into
2964 * Returns 0 on success.
2966 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2967 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2969 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2970 do_proc_dointvec_jiffies_conv
,NULL
);
2974 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2975 * @table: the sysctl table
2976 * @write: %TRUE if this is a write to the sysctl file
2977 * @buffer: the user buffer
2978 * @lenp: the size of the user buffer
2979 * @ppos: pointer to the file position
2981 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2982 * values from/to the user buffer, treated as an ASCII string.
2983 * The values read are assumed to be in 1/USER_HZ seconds, and
2984 * are converted into jiffies.
2986 * Returns 0 on success.
2988 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2989 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2991 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2992 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2996 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2997 * @table: the sysctl table
2998 * @write: %TRUE if this is a write to the sysctl file
2999 * @buffer: the user buffer
3000 * @lenp: the size of the user buffer
3001 * @ppos: file position
3002 * @ppos: the current position in the file
3004 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3005 * values from/to the user buffer, treated as an ASCII string.
3006 * The values read are assumed to be in 1/1000 seconds, and
3007 * are converted into jiffies.
3009 * Returns 0 on success.
3011 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
3012 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3014 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
3015 do_proc_dointvec_ms_jiffies_conv
, NULL
);
3018 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
3019 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3021 struct pid
*new_pid
;
3025 tmp
= pid_vnr(cad_pid
);
3027 r
= __do_proc_dointvec(&tmp
, table
, write
, buffer
,
3028 lenp
, ppos
, NULL
, NULL
);
3032 new_pid
= find_get_pid(tmp
);
3036 put_pid(xchg(&cad_pid
, new_pid
));
3041 * proc_do_large_bitmap - read/write from/to a large bitmap
3042 * @table: the sysctl table
3043 * @write: %TRUE if this is a write to the sysctl file
3044 * @buffer: the user buffer
3045 * @lenp: the size of the user buffer
3046 * @ppos: file position
3048 * The bitmap is stored at table->data and the bitmap length (in bits)
3051 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
3052 * large bitmaps may be represented in a compact manner. Writing into
3053 * the file will clear the bitmap then update it with the given input.
3055 * Returns 0 on success.
3057 int proc_do_large_bitmap(struct ctl_table
*table
, int write
,
3058 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3062 size_t left
= *lenp
;
3063 unsigned long bitmap_len
= table
->maxlen
;
3064 unsigned long *bitmap
= *(unsigned long **) table
->data
;
3065 unsigned long *tmp_bitmap
= NULL
;
3066 char tr_a
[] = { '-', ',', '\n' }, tr_b
[] = { ',', '\n', 0 }, c
;
3068 if (!bitmap
|| !bitmap_len
|| !left
|| (*ppos
&& !write
)) {
3076 if (left
> PAGE_SIZE
- 1)
3077 left
= PAGE_SIZE
- 1;
3079 p
= kbuf
= memdup_user_nul(buffer
, left
);
3081 return PTR_ERR(kbuf
);
3083 tmp_bitmap
= kcalloc(BITS_TO_LONGS(bitmap_len
),
3084 sizeof(unsigned long),
3090 proc_skip_char(&p
, &left
, '\n');
3091 while (!err
&& left
) {
3092 unsigned long val_a
, val_b
;
3095 err
= proc_get_long(&p
, &left
, &val_a
, &neg
, tr_a
,
3099 if (val_a
>= bitmap_len
|| neg
) {
3111 err
= proc_get_long(&p
, &left
, &val_b
,
3112 &neg
, tr_b
, sizeof(tr_b
),
3116 if (val_b
>= bitmap_len
|| neg
||
3127 bitmap_set(tmp_bitmap
, val_a
, val_b
- val_a
+ 1);
3129 proc_skip_char(&p
, &left
, '\n');
3133 unsigned long bit_a
, bit_b
= 0;
3136 bit_a
= find_next_bit(bitmap
, bitmap_len
, bit_b
);
3137 if (bit_a
>= bitmap_len
)
3139 bit_b
= find_next_zero_bit(bitmap
, bitmap_len
,
3143 err
= proc_put_char(&buffer
, &left
, ',');
3147 err
= proc_put_long(&buffer
, &left
, bit_a
, false);
3150 if (bit_a
!= bit_b
) {
3151 err
= proc_put_char(&buffer
, &left
, '-');
3154 err
= proc_put_long(&buffer
, &left
, bit_b
, false);
3162 err
= proc_put_char(&buffer
, &left
, '\n');
3168 bitmap_or(bitmap
, bitmap
, tmp_bitmap
, bitmap_len
);
3170 bitmap_copy(bitmap
, tmp_bitmap
, bitmap_len
);
3180 #else /* CONFIG_PROC_SYSCTL */
3182 int proc_dostring(struct ctl_table
*table
, int write
,
3183 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3188 int proc_dointvec(struct ctl_table
*table
, int write
,
3189 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3194 int proc_douintvec(struct ctl_table
*table
, int write
,
3195 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3200 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
3201 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3206 int proc_douintvec_minmax(struct ctl_table
*table
, int write
,
3207 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3212 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
3213 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3218 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
3219 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3224 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
3225 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3230 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
3231 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3236 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
3237 void __user
*buffer
,
3238 size_t *lenp
, loff_t
*ppos
)
3244 #endif /* CONFIG_PROC_SYSCTL */
3247 * No sense putting this after each symbol definition, twice,
3248 * exception granted :-)
3250 EXPORT_SYMBOL(proc_dointvec
);
3251 EXPORT_SYMBOL(proc_douintvec
);
3252 EXPORT_SYMBOL(proc_dointvec_jiffies
);
3253 EXPORT_SYMBOL(proc_dointvec_minmax
);
3254 EXPORT_SYMBOL_GPL(proc_douintvec_minmax
);
3255 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
3256 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
3257 EXPORT_SYMBOL(proc_dostring
);
3258 EXPORT_SYMBOL(proc_doulongvec_minmax
);
3259 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);