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>
69 #include <linux/pipe_fs_i.h>
71 #include <linux/uaccess.h>
72 #include <asm/processor.h>
76 #include <asm/stacktrace.h>
80 #include <asm/setup.h>
82 #ifdef CONFIG_BSD_PROCESS_ACCT
83 #include <linux/acct.h>
85 #ifdef CONFIG_RT_MUTEXES
86 #include <linux/rtmutex.h>
88 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
89 #include <linux/lockdep.h>
91 #ifdef CONFIG_CHR_DEV_SG
95 #ifdef CONFIG_LOCKUP_DETECTOR
96 #include <linux/nmi.h>
99 #if defined(CONFIG_SYSCTL)
101 /* External variables not in a header file. */
102 extern int suid_dumpable
;
103 #ifdef CONFIG_COREDUMP
104 extern int core_uses_pid
;
105 extern char core_pattern
[];
106 extern unsigned int core_pipe_limit
;
109 extern int pid_max_min
, pid_max_max
;
110 extern int percpu_pagelist_fraction
;
111 extern int latencytop_enabled
;
112 extern unsigned int sysctl_nr_open_min
, sysctl_nr_open_max
;
114 extern int sysctl_nr_trim_pages
;
117 /* Constants used for minimum and maximum */
118 #ifdef CONFIG_LOCKUP_DETECTOR
119 static int sixty
= 60;
122 static int __maybe_unused neg_one
= -1;
125 static int __maybe_unused one
= 1;
126 static int __maybe_unused two
= 2;
127 static int __maybe_unused four
= 4;
128 static unsigned long one_ul
= 1;
129 static int one_hundred
= 100;
130 static int one_thousand
= 1000;
132 static int ten_thousand
= 10000;
134 #ifdef CONFIG_PERF_EVENTS
135 static int six_hundred_forty_kb
= 640 * 1024;
138 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
139 static unsigned long dirty_bytes_min
= 2 * PAGE_SIZE
;
141 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
142 static int maxolduid
= 65535;
143 static int minolduid
;
145 static int ngroups_max
= NGROUPS_MAX
;
146 static const int cap_last_cap
= CAP_LAST_CAP
;
148 /*this is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs */
149 #ifdef CONFIG_DETECT_HUNG_TASK
150 static unsigned long hung_task_timeout_max
= (LONG_MAX
/HZ
);
153 #ifdef CONFIG_INOTIFY_USER
154 #include <linux/inotify.h>
160 extern int pwrsw_enabled
;
163 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
164 extern int unaligned_enabled
;
168 extern int unaligned_dump_stack
;
171 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
172 extern int no_unaligned_warning
;
175 #ifdef CONFIG_PROC_SYSCTL
178 * enum sysctl_writes_mode - supported sysctl write modes
180 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
181 * to be written, and multiple writes on the same sysctl file descriptor
182 * will rewrite the sysctl value, regardless of file position. No warning
183 * is issued when the initial position is not 0.
184 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
186 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
187 * file position 0 and the value must be fully contained in the buffer
188 * sent to the write syscall. If dealing with strings respect the file
189 * position, but restrict this to the max length of the buffer, anything
190 * passed the max lenght will be ignored. Multiple writes will append
193 * These write modes control how current file position affects the behavior of
194 * updating sysctl values through the proc interface on each write.
196 enum sysctl_writes_mode
{
197 SYSCTL_WRITES_LEGACY
= -1,
198 SYSCTL_WRITES_WARN
= 0,
199 SYSCTL_WRITES_STRICT
= 1,
202 static enum sysctl_writes_mode sysctl_writes_strict
= SYSCTL_WRITES_STRICT
;
204 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
205 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
206 static int proc_taint(struct ctl_table
*table
, int write
,
207 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
211 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
212 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
215 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
216 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
217 #ifdef CONFIG_COREDUMP
218 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
219 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
221 static int proc_dopipe_max_size(struct ctl_table
*table
, int write
,
222 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
224 #ifdef CONFIG_MAGIC_SYSRQ
225 /* Note: sysrq code uses it's own private copy */
226 static int __sysrq_enabled
= CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE
;
228 static int sysrq_sysctl_handler(struct ctl_table
*table
, int write
,
229 void __user
*buffer
, size_t *lenp
,
234 error
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
239 sysrq_toggle_support(__sysrq_enabled
);
246 static struct ctl_table kern_table
[];
247 static struct ctl_table vm_table
[];
248 static struct ctl_table fs_table
[];
249 static struct ctl_table debug_table
[];
250 static struct ctl_table dev_table
[];
251 extern struct ctl_table random_table
[];
253 extern struct ctl_table epoll_table
[];
256 #ifdef CONFIG_FW_LOADER_USER_HELPER
257 extern struct ctl_table firmware_config_table
[];
260 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
261 int sysctl_legacy_va_layout
;
264 /* The default sysctl tables: */
266 static struct ctl_table sysctl_base_table
[] = {
268 .procname
= "kernel",
285 .child
= debug_table
,
295 #ifdef CONFIG_SCHED_DEBUG
296 static int min_sched_granularity_ns
= 100000; /* 100 usecs */
297 static int max_sched_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
298 static int min_wakeup_granularity_ns
; /* 0 usecs */
299 static int max_wakeup_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
301 static int min_sched_tunable_scaling
= SCHED_TUNABLESCALING_NONE
;
302 static int max_sched_tunable_scaling
= SCHED_TUNABLESCALING_END
-1;
303 #endif /* CONFIG_SMP */
304 #endif /* CONFIG_SCHED_DEBUG */
306 #ifdef CONFIG_COMPACTION
307 static int min_extfrag_threshold
;
308 static int max_extfrag_threshold
= 1000;
311 static struct ctl_table kern_table
[] = {
313 .procname
= "sched_child_runs_first",
314 .data
= &sysctl_sched_child_runs_first
,
315 .maxlen
= sizeof(unsigned int),
317 .proc_handler
= proc_dointvec
,
319 #ifdef CONFIG_SCHED_DEBUG
321 .procname
= "sched_min_granularity_ns",
322 .data
= &sysctl_sched_min_granularity
,
323 .maxlen
= sizeof(unsigned int),
325 .proc_handler
= sched_proc_update_handler
,
326 .extra1
= &min_sched_granularity_ns
,
327 .extra2
= &max_sched_granularity_ns
,
330 .procname
= "sched_latency_ns",
331 .data
= &sysctl_sched_latency
,
332 .maxlen
= sizeof(unsigned int),
334 .proc_handler
= sched_proc_update_handler
,
335 .extra1
= &min_sched_granularity_ns
,
336 .extra2
= &max_sched_granularity_ns
,
339 .procname
= "sched_wakeup_granularity_ns",
340 .data
= &sysctl_sched_wakeup_granularity
,
341 .maxlen
= sizeof(unsigned int),
343 .proc_handler
= sched_proc_update_handler
,
344 .extra1
= &min_wakeup_granularity_ns
,
345 .extra2
= &max_wakeup_granularity_ns
,
349 .procname
= "sched_tunable_scaling",
350 .data
= &sysctl_sched_tunable_scaling
,
351 .maxlen
= sizeof(enum sched_tunable_scaling
),
353 .proc_handler
= sched_proc_update_handler
,
354 .extra1
= &min_sched_tunable_scaling
,
355 .extra2
= &max_sched_tunable_scaling
,
358 .procname
= "sched_migration_cost_ns",
359 .data
= &sysctl_sched_migration_cost
,
360 .maxlen
= sizeof(unsigned int),
362 .proc_handler
= proc_dointvec
,
365 .procname
= "sched_nr_migrate",
366 .data
= &sysctl_sched_nr_migrate
,
367 .maxlen
= sizeof(unsigned int),
369 .proc_handler
= proc_dointvec
,
372 .procname
= "sched_time_avg_ms",
373 .data
= &sysctl_sched_time_avg
,
374 .maxlen
= sizeof(unsigned int),
376 .proc_handler
= proc_dointvec_minmax
,
379 #ifdef CONFIG_SCHEDSTATS
381 .procname
= "sched_schedstats",
383 .maxlen
= sizeof(unsigned int),
385 .proc_handler
= sysctl_schedstats
,
389 #endif /* CONFIG_SCHEDSTATS */
390 #endif /* CONFIG_SMP */
391 #ifdef CONFIG_NUMA_BALANCING
393 .procname
= "numa_balancing_scan_delay_ms",
394 .data
= &sysctl_numa_balancing_scan_delay
,
395 .maxlen
= sizeof(unsigned int),
397 .proc_handler
= proc_dointvec
,
400 .procname
= "numa_balancing_scan_period_min_ms",
401 .data
= &sysctl_numa_balancing_scan_period_min
,
402 .maxlen
= sizeof(unsigned int),
404 .proc_handler
= proc_dointvec
,
407 .procname
= "numa_balancing_scan_period_max_ms",
408 .data
= &sysctl_numa_balancing_scan_period_max
,
409 .maxlen
= sizeof(unsigned int),
411 .proc_handler
= proc_dointvec
,
414 .procname
= "numa_balancing_scan_size_mb",
415 .data
= &sysctl_numa_balancing_scan_size
,
416 .maxlen
= sizeof(unsigned int),
418 .proc_handler
= proc_dointvec_minmax
,
422 .procname
= "numa_balancing",
423 .data
= NULL
, /* filled in by handler */
424 .maxlen
= sizeof(unsigned int),
426 .proc_handler
= sysctl_numa_balancing
,
430 #endif /* CONFIG_NUMA_BALANCING */
431 #endif /* CONFIG_SCHED_DEBUG */
433 .procname
= "sched_rt_period_us",
434 .data
= &sysctl_sched_rt_period
,
435 .maxlen
= sizeof(unsigned int),
437 .proc_handler
= sched_rt_handler
,
440 .procname
= "sched_rt_runtime_us",
441 .data
= &sysctl_sched_rt_runtime
,
442 .maxlen
= sizeof(int),
444 .proc_handler
= sched_rt_handler
,
447 .procname
= "sched_rr_timeslice_ms",
448 .data
= &sysctl_sched_rr_timeslice
,
449 .maxlen
= sizeof(int),
451 .proc_handler
= sched_rr_handler
,
453 #ifdef CONFIG_SCHED_AUTOGROUP
455 .procname
= "sched_autogroup_enabled",
456 .data
= &sysctl_sched_autogroup_enabled
,
457 .maxlen
= sizeof(unsigned int),
459 .proc_handler
= proc_dointvec_minmax
,
464 #ifdef CONFIG_CFS_BANDWIDTH
466 .procname
= "sched_cfs_bandwidth_slice_us",
467 .data
= &sysctl_sched_cfs_bandwidth_slice
,
468 .maxlen
= sizeof(unsigned int),
470 .proc_handler
= proc_dointvec_minmax
,
474 #ifdef CONFIG_PROVE_LOCKING
476 .procname
= "prove_locking",
477 .data
= &prove_locking
,
478 .maxlen
= sizeof(int),
480 .proc_handler
= proc_dointvec
,
483 #ifdef CONFIG_LOCK_STAT
485 .procname
= "lock_stat",
487 .maxlen
= sizeof(int),
489 .proc_handler
= proc_dointvec
,
494 .data
= &panic_timeout
,
495 .maxlen
= sizeof(int),
497 .proc_handler
= proc_dointvec
,
499 #ifdef CONFIG_COREDUMP
501 .procname
= "core_uses_pid",
502 .data
= &core_uses_pid
,
503 .maxlen
= sizeof(int),
505 .proc_handler
= proc_dointvec
,
508 .procname
= "core_pattern",
509 .data
= core_pattern
,
510 .maxlen
= CORENAME_MAX_SIZE
,
512 .proc_handler
= proc_dostring_coredump
,
515 .procname
= "core_pipe_limit",
516 .data
= &core_pipe_limit
,
517 .maxlen
= sizeof(unsigned int),
519 .proc_handler
= proc_dointvec
,
522 #ifdef CONFIG_PROC_SYSCTL
524 .procname
= "tainted",
525 .maxlen
= sizeof(long),
527 .proc_handler
= proc_taint
,
530 .procname
= "sysctl_writes_strict",
531 .data
= &sysctl_writes_strict
,
532 .maxlen
= sizeof(int),
534 .proc_handler
= proc_dointvec_minmax
,
539 #ifdef CONFIG_LATENCYTOP
541 .procname
= "latencytop",
542 .data
= &latencytop_enabled
,
543 .maxlen
= sizeof(int),
545 .proc_handler
= sysctl_latencytop
,
548 #ifdef CONFIG_BLK_DEV_INITRD
550 .procname
= "real-root-dev",
551 .data
= &real_root_dev
,
552 .maxlen
= sizeof(int),
554 .proc_handler
= proc_dointvec
,
558 .procname
= "print-fatal-signals",
559 .data
= &print_fatal_signals
,
560 .maxlen
= sizeof(int),
562 .proc_handler
= proc_dointvec
,
566 .procname
= "reboot-cmd",
567 .data
= reboot_command
,
570 .proc_handler
= proc_dostring
,
573 .procname
= "stop-a",
574 .data
= &stop_a_enabled
,
575 .maxlen
= sizeof (int),
577 .proc_handler
= proc_dointvec
,
580 .procname
= "scons-poweroff",
581 .data
= &scons_pwroff
,
582 .maxlen
= sizeof (int),
584 .proc_handler
= proc_dointvec
,
587 #ifdef CONFIG_SPARC64
589 .procname
= "tsb-ratio",
590 .data
= &sysctl_tsb_ratio
,
591 .maxlen
= sizeof (int),
593 .proc_handler
= proc_dointvec
,
598 .procname
= "soft-power",
599 .data
= &pwrsw_enabled
,
600 .maxlen
= sizeof (int),
602 .proc_handler
= proc_dointvec
,
605 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
607 .procname
= "unaligned-trap",
608 .data
= &unaligned_enabled
,
609 .maxlen
= sizeof (int),
611 .proc_handler
= proc_dointvec
,
615 .procname
= "ctrl-alt-del",
617 .maxlen
= sizeof(int),
619 .proc_handler
= proc_dointvec
,
621 #ifdef CONFIG_FUNCTION_TRACER
623 .procname
= "ftrace_enabled",
624 .data
= &ftrace_enabled
,
625 .maxlen
= sizeof(int),
627 .proc_handler
= ftrace_enable_sysctl
,
630 #ifdef CONFIG_STACK_TRACER
632 .procname
= "stack_tracer_enabled",
633 .data
= &stack_tracer_enabled
,
634 .maxlen
= sizeof(int),
636 .proc_handler
= stack_trace_sysctl
,
639 #ifdef CONFIG_TRACING
641 .procname
= "ftrace_dump_on_oops",
642 .data
= &ftrace_dump_on_oops
,
643 .maxlen
= sizeof(int),
645 .proc_handler
= proc_dointvec
,
648 .procname
= "traceoff_on_warning",
649 .data
= &__disable_trace_on_warning
,
650 .maxlen
= sizeof(__disable_trace_on_warning
),
652 .proc_handler
= proc_dointvec
,
655 .procname
= "tracepoint_printk",
656 .data
= &tracepoint_printk
,
657 .maxlen
= sizeof(tracepoint_printk
),
659 .proc_handler
= tracepoint_printk_sysctl
,
662 #ifdef CONFIG_KEXEC_CORE
664 .procname
= "kexec_load_disabled",
665 .data
= &kexec_load_disabled
,
666 .maxlen
= sizeof(int),
668 /* only handle a transition from default "0" to "1" */
669 .proc_handler
= proc_dointvec_minmax
,
674 #ifdef CONFIG_MODULES
676 .procname
= "modprobe",
677 .data
= &modprobe_path
,
678 .maxlen
= KMOD_PATH_LEN
,
680 .proc_handler
= proc_dostring
,
683 .procname
= "modules_disabled",
684 .data
= &modules_disabled
,
685 .maxlen
= sizeof(int),
687 /* only handle a transition from default "0" to "1" */
688 .proc_handler
= proc_dointvec_minmax
,
693 #ifdef CONFIG_UEVENT_HELPER
695 .procname
= "hotplug",
696 .data
= &uevent_helper
,
697 .maxlen
= UEVENT_HELPER_PATH_LEN
,
699 .proc_handler
= proc_dostring
,
702 #ifdef CONFIG_CHR_DEV_SG
704 .procname
= "sg-big-buff",
705 .data
= &sg_big_buff
,
706 .maxlen
= sizeof (int),
708 .proc_handler
= proc_dointvec
,
711 #ifdef CONFIG_BSD_PROCESS_ACCT
715 .maxlen
= 3*sizeof(int),
717 .proc_handler
= proc_dointvec
,
720 #ifdef CONFIG_MAGIC_SYSRQ
723 .data
= &__sysrq_enabled
,
724 .maxlen
= sizeof (int),
726 .proc_handler
= sysrq_sysctl_handler
,
729 #ifdef CONFIG_PROC_SYSCTL
731 .procname
= "cad_pid",
733 .maxlen
= sizeof (int),
735 .proc_handler
= proc_do_cad_pid
,
739 .procname
= "threads-max",
741 .maxlen
= sizeof(int),
743 .proc_handler
= sysctl_max_threads
,
746 .procname
= "random",
748 .child
= random_table
,
751 .procname
= "usermodehelper",
753 .child
= usermodehelper_table
,
755 #ifdef CONFIG_FW_LOADER_USER_HELPER
757 .procname
= "firmware_config",
759 .child
= firmware_config_table
,
763 .procname
= "overflowuid",
764 .data
= &overflowuid
,
765 .maxlen
= sizeof(int),
767 .proc_handler
= proc_dointvec_minmax
,
768 .extra1
= &minolduid
,
769 .extra2
= &maxolduid
,
772 .procname
= "overflowgid",
773 .data
= &overflowgid
,
774 .maxlen
= sizeof(int),
776 .proc_handler
= proc_dointvec_minmax
,
777 .extra1
= &minolduid
,
778 .extra2
= &maxolduid
,
781 #ifdef CONFIG_MATHEMU
783 .procname
= "ieee_emulation_warnings",
784 .data
= &sysctl_ieee_emulation_warnings
,
785 .maxlen
= sizeof(int),
787 .proc_handler
= proc_dointvec
,
791 .procname
= "userprocess_debug",
792 .data
= &show_unhandled_signals
,
793 .maxlen
= sizeof(int),
795 .proc_handler
= proc_dointvec
,
799 .procname
= "pid_max",
801 .maxlen
= sizeof (int),
803 .proc_handler
= proc_dointvec_minmax
,
804 .extra1
= &pid_max_min
,
805 .extra2
= &pid_max_max
,
808 .procname
= "panic_on_oops",
809 .data
= &panic_on_oops
,
810 .maxlen
= sizeof(int),
812 .proc_handler
= proc_dointvec
,
814 #if defined CONFIG_PRINTK
816 .procname
= "printk",
817 .data
= &console_loglevel
,
818 .maxlen
= 4*sizeof(int),
820 .proc_handler
= proc_dointvec
,
823 .procname
= "printk_ratelimit",
824 .data
= &printk_ratelimit_state
.interval
,
825 .maxlen
= sizeof(int),
827 .proc_handler
= proc_dointvec_jiffies
,
830 .procname
= "printk_ratelimit_burst",
831 .data
= &printk_ratelimit_state
.burst
,
832 .maxlen
= sizeof(int),
834 .proc_handler
= proc_dointvec
,
837 .procname
= "printk_delay",
838 .data
= &printk_delay_msec
,
839 .maxlen
= sizeof(int),
841 .proc_handler
= proc_dointvec_minmax
,
843 .extra2
= &ten_thousand
,
846 .procname
= "printk_devkmsg",
847 .data
= devkmsg_log_str
,
848 .maxlen
= DEVKMSG_STR_MAX_SIZE
,
850 .proc_handler
= devkmsg_sysctl_set_loglvl
,
853 .procname
= "dmesg_restrict",
854 .data
= &dmesg_restrict
,
855 .maxlen
= sizeof(int),
857 .proc_handler
= proc_dointvec_minmax_sysadmin
,
862 .procname
= "kptr_restrict",
863 .data
= &kptr_restrict
,
864 .maxlen
= sizeof(int),
866 .proc_handler
= proc_dointvec_minmax_sysadmin
,
872 .procname
= "ngroups_max",
873 .data
= &ngroups_max
,
874 .maxlen
= sizeof (int),
876 .proc_handler
= proc_dointvec
,
879 .procname
= "cap_last_cap",
880 .data
= (void *)&cap_last_cap
,
881 .maxlen
= sizeof(int),
883 .proc_handler
= proc_dointvec
,
885 #if defined(CONFIG_LOCKUP_DETECTOR)
887 .procname
= "watchdog",
888 .data
= &watchdog_user_enabled
,
889 .maxlen
= sizeof(int),
891 .proc_handler
= proc_watchdog
,
896 .procname
= "watchdog_thresh",
897 .data
= &watchdog_thresh
,
898 .maxlen
= sizeof(int),
900 .proc_handler
= proc_watchdog_thresh
,
905 .procname
= "nmi_watchdog",
906 .data
= &nmi_watchdog_user_enabled
,
907 .maxlen
= sizeof(int),
908 .mode
= NMI_WATCHDOG_SYSCTL_PERM
,
909 .proc_handler
= proc_nmi_watchdog
,
914 .procname
= "watchdog_cpumask",
915 .data
= &watchdog_cpumask_bits
,
918 .proc_handler
= proc_watchdog_cpumask
,
920 #ifdef CONFIG_SOFTLOCKUP_DETECTOR
922 .procname
= "soft_watchdog",
923 .data
= &soft_watchdog_user_enabled
,
924 .maxlen
= sizeof(int),
926 .proc_handler
= proc_soft_watchdog
,
931 .procname
= "softlockup_panic",
932 .data
= &softlockup_panic
,
933 .maxlen
= sizeof(int),
935 .proc_handler
= proc_dointvec_minmax
,
941 .procname
= "softlockup_all_cpu_backtrace",
942 .data
= &sysctl_softlockup_all_cpu_backtrace
,
943 .maxlen
= sizeof(int),
945 .proc_handler
= proc_dointvec_minmax
,
949 #endif /* CONFIG_SMP */
951 #ifdef CONFIG_HARDLOCKUP_DETECTOR
953 .procname
= "hardlockup_panic",
954 .data
= &hardlockup_panic
,
955 .maxlen
= sizeof(int),
957 .proc_handler
= proc_dointvec_minmax
,
963 .procname
= "hardlockup_all_cpu_backtrace",
964 .data
= &sysctl_hardlockup_all_cpu_backtrace
,
965 .maxlen
= sizeof(int),
967 .proc_handler
= proc_dointvec_minmax
,
971 #endif /* CONFIG_SMP */
975 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
977 .procname
= "unknown_nmi_panic",
978 .data
= &unknown_nmi_panic
,
979 .maxlen
= sizeof (int),
981 .proc_handler
= proc_dointvec
,
984 #if defined(CONFIG_X86)
986 .procname
= "panic_on_unrecovered_nmi",
987 .data
= &panic_on_unrecovered_nmi
,
988 .maxlen
= sizeof(int),
990 .proc_handler
= proc_dointvec
,
993 .procname
= "panic_on_io_nmi",
994 .data
= &panic_on_io_nmi
,
995 .maxlen
= sizeof(int),
997 .proc_handler
= proc_dointvec
,
999 #ifdef CONFIG_DEBUG_STACKOVERFLOW
1001 .procname
= "panic_on_stackoverflow",
1002 .data
= &sysctl_panic_on_stackoverflow
,
1003 .maxlen
= sizeof(int),
1005 .proc_handler
= proc_dointvec
,
1009 .procname
= "bootloader_type",
1010 .data
= &bootloader_type
,
1011 .maxlen
= sizeof (int),
1013 .proc_handler
= proc_dointvec
,
1016 .procname
= "bootloader_version",
1017 .data
= &bootloader_version
,
1018 .maxlen
= sizeof (int),
1020 .proc_handler
= proc_dointvec
,
1023 .procname
= "io_delay_type",
1024 .data
= &io_delay_type
,
1025 .maxlen
= sizeof(int),
1027 .proc_handler
= proc_dointvec
,
1030 #if defined(CONFIG_MMU)
1032 .procname
= "randomize_va_space",
1033 .data
= &randomize_va_space
,
1034 .maxlen
= sizeof(int),
1036 .proc_handler
= proc_dointvec
,
1039 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
1041 .procname
= "spin_retry",
1042 .data
= &spin_retry
,
1043 .maxlen
= sizeof (int),
1045 .proc_handler
= proc_dointvec
,
1048 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
1050 .procname
= "acpi_video_flags",
1051 .data
= &acpi_realmode_flags
,
1052 .maxlen
= sizeof (unsigned long),
1054 .proc_handler
= proc_doulongvec_minmax
,
1057 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
1059 .procname
= "ignore-unaligned-usertrap",
1060 .data
= &no_unaligned_warning
,
1061 .maxlen
= sizeof (int),
1063 .proc_handler
= proc_dointvec
,
1068 .procname
= "unaligned-dump-stack",
1069 .data
= &unaligned_dump_stack
,
1070 .maxlen
= sizeof (int),
1072 .proc_handler
= proc_dointvec
,
1075 #ifdef CONFIG_DETECT_HUNG_TASK
1077 .procname
= "hung_task_panic",
1078 .data
= &sysctl_hung_task_panic
,
1079 .maxlen
= sizeof(int),
1081 .proc_handler
= proc_dointvec_minmax
,
1086 .procname
= "hung_task_check_count",
1087 .data
= &sysctl_hung_task_check_count
,
1088 .maxlen
= sizeof(int),
1090 .proc_handler
= proc_dointvec_minmax
,
1094 .procname
= "hung_task_timeout_secs",
1095 .data
= &sysctl_hung_task_timeout_secs
,
1096 .maxlen
= sizeof(unsigned long),
1098 .proc_handler
= proc_dohung_task_timeout_secs
,
1099 .extra2
= &hung_task_timeout_max
,
1102 .procname
= "hung_task_warnings",
1103 .data
= &sysctl_hung_task_warnings
,
1104 .maxlen
= sizeof(int),
1106 .proc_handler
= proc_dointvec_minmax
,
1110 #ifdef CONFIG_RT_MUTEXES
1112 .procname
= "max_lock_depth",
1113 .data
= &max_lock_depth
,
1114 .maxlen
= sizeof(int),
1116 .proc_handler
= proc_dointvec
,
1120 .procname
= "poweroff_cmd",
1121 .data
= &poweroff_cmd
,
1122 .maxlen
= POWEROFF_CMD_PATH_LEN
,
1124 .proc_handler
= proc_dostring
,
1130 .child
= key_sysctls
,
1133 #ifdef CONFIG_PERF_EVENTS
1135 * User-space scripts rely on the existence of this file
1136 * as a feature check for perf_events being enabled.
1138 * So it's an ABI, do not remove!
1141 .procname
= "perf_event_paranoid",
1142 .data
= &sysctl_perf_event_paranoid
,
1143 .maxlen
= sizeof(sysctl_perf_event_paranoid
),
1145 .proc_handler
= proc_dointvec
,
1148 .procname
= "perf_event_mlock_kb",
1149 .data
= &sysctl_perf_event_mlock
,
1150 .maxlen
= sizeof(sysctl_perf_event_mlock
),
1152 .proc_handler
= proc_dointvec
,
1155 .procname
= "perf_event_max_sample_rate",
1156 .data
= &sysctl_perf_event_sample_rate
,
1157 .maxlen
= sizeof(sysctl_perf_event_sample_rate
),
1159 .proc_handler
= perf_proc_update_handler
,
1163 .procname
= "perf_cpu_time_max_percent",
1164 .data
= &sysctl_perf_cpu_time_max_percent
,
1165 .maxlen
= sizeof(sysctl_perf_cpu_time_max_percent
),
1167 .proc_handler
= perf_cpu_time_max_percent_handler
,
1169 .extra2
= &one_hundred
,
1172 .procname
= "perf_event_max_stack",
1173 .data
= &sysctl_perf_event_max_stack
,
1174 .maxlen
= sizeof(sysctl_perf_event_max_stack
),
1176 .proc_handler
= perf_event_max_stack_handler
,
1178 .extra2
= &six_hundred_forty_kb
,
1181 .procname
= "perf_event_max_contexts_per_stack",
1182 .data
= &sysctl_perf_event_max_contexts_per_stack
,
1183 .maxlen
= sizeof(sysctl_perf_event_max_contexts_per_stack
),
1185 .proc_handler
= perf_event_max_stack_handler
,
1187 .extra2
= &one_thousand
,
1191 .procname
= "panic_on_warn",
1192 .data
= &panic_on_warn
,
1193 .maxlen
= sizeof(int),
1195 .proc_handler
= proc_dointvec_minmax
,
1199 #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1201 .procname
= "timer_migration",
1202 .data
= &sysctl_timer_migration
,
1203 .maxlen
= sizeof(unsigned int),
1205 .proc_handler
= timer_migration_handler
,
1210 #ifdef CONFIG_BPF_SYSCALL
1212 .procname
= "unprivileged_bpf_disabled",
1213 .data
= &sysctl_unprivileged_bpf_disabled
,
1214 .maxlen
= sizeof(sysctl_unprivileged_bpf_disabled
),
1216 /* only handle a transition from default "0" to "1" */
1217 .proc_handler
= proc_dointvec_minmax
,
1222 #if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1224 .procname
= "panic_on_rcu_stall",
1225 .data
= &sysctl_panic_on_rcu_stall
,
1226 .maxlen
= sizeof(sysctl_panic_on_rcu_stall
),
1228 .proc_handler
= proc_dointvec_minmax
,
1236 static struct ctl_table vm_table
[] = {
1238 .procname
= "overcommit_memory",
1239 .data
= &sysctl_overcommit_memory
,
1240 .maxlen
= sizeof(sysctl_overcommit_memory
),
1242 .proc_handler
= proc_dointvec_minmax
,
1247 .procname
= "panic_on_oom",
1248 .data
= &sysctl_panic_on_oom
,
1249 .maxlen
= sizeof(sysctl_panic_on_oom
),
1251 .proc_handler
= proc_dointvec_minmax
,
1256 .procname
= "oom_kill_allocating_task",
1257 .data
= &sysctl_oom_kill_allocating_task
,
1258 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
1260 .proc_handler
= proc_dointvec
,
1263 .procname
= "oom_dump_tasks",
1264 .data
= &sysctl_oom_dump_tasks
,
1265 .maxlen
= sizeof(sysctl_oom_dump_tasks
),
1267 .proc_handler
= proc_dointvec
,
1270 .procname
= "overcommit_ratio",
1271 .data
= &sysctl_overcommit_ratio
,
1272 .maxlen
= sizeof(sysctl_overcommit_ratio
),
1274 .proc_handler
= overcommit_ratio_handler
,
1277 .procname
= "overcommit_kbytes",
1278 .data
= &sysctl_overcommit_kbytes
,
1279 .maxlen
= sizeof(sysctl_overcommit_kbytes
),
1281 .proc_handler
= overcommit_kbytes_handler
,
1284 .procname
= "page-cluster",
1285 .data
= &page_cluster
,
1286 .maxlen
= sizeof(int),
1288 .proc_handler
= proc_dointvec_minmax
,
1292 .procname
= "dirty_background_ratio",
1293 .data
= &dirty_background_ratio
,
1294 .maxlen
= sizeof(dirty_background_ratio
),
1296 .proc_handler
= dirty_background_ratio_handler
,
1298 .extra2
= &one_hundred
,
1301 .procname
= "dirty_background_bytes",
1302 .data
= &dirty_background_bytes
,
1303 .maxlen
= sizeof(dirty_background_bytes
),
1305 .proc_handler
= dirty_background_bytes_handler
,
1309 .procname
= "dirty_ratio",
1310 .data
= &vm_dirty_ratio
,
1311 .maxlen
= sizeof(vm_dirty_ratio
),
1313 .proc_handler
= dirty_ratio_handler
,
1315 .extra2
= &one_hundred
,
1318 .procname
= "dirty_bytes",
1319 .data
= &vm_dirty_bytes
,
1320 .maxlen
= sizeof(vm_dirty_bytes
),
1322 .proc_handler
= dirty_bytes_handler
,
1323 .extra1
= &dirty_bytes_min
,
1326 .procname
= "dirty_writeback_centisecs",
1327 .data
= &dirty_writeback_interval
,
1328 .maxlen
= sizeof(dirty_writeback_interval
),
1330 .proc_handler
= dirty_writeback_centisecs_handler
,
1333 .procname
= "dirty_expire_centisecs",
1334 .data
= &dirty_expire_interval
,
1335 .maxlen
= sizeof(dirty_expire_interval
),
1337 .proc_handler
= proc_dointvec_minmax
,
1341 .procname
= "dirtytime_expire_seconds",
1342 .data
= &dirtytime_expire_interval
,
1343 .maxlen
= sizeof(dirtytime_expire_interval
),
1345 .proc_handler
= dirtytime_interval_handler
,
1349 .procname
= "swappiness",
1350 .data
= &vm_swappiness
,
1351 .maxlen
= sizeof(vm_swappiness
),
1353 .proc_handler
= proc_dointvec_minmax
,
1355 .extra2
= &one_hundred
,
1357 #ifdef CONFIG_HUGETLB_PAGE
1359 .procname
= "nr_hugepages",
1361 .maxlen
= sizeof(unsigned long),
1363 .proc_handler
= hugetlb_sysctl_handler
,
1367 .procname
= "nr_hugepages_mempolicy",
1369 .maxlen
= sizeof(unsigned long),
1371 .proc_handler
= &hugetlb_mempolicy_sysctl_handler
,
1374 .procname
= "numa_stat",
1375 .data
= &sysctl_vm_numa_stat
,
1376 .maxlen
= sizeof(int),
1378 .proc_handler
= sysctl_vm_numa_stat_handler
,
1384 .procname
= "hugetlb_shm_group",
1385 .data
= &sysctl_hugetlb_shm_group
,
1386 .maxlen
= sizeof(gid_t
),
1388 .proc_handler
= proc_dointvec
,
1391 .procname
= "nr_overcommit_hugepages",
1393 .maxlen
= sizeof(unsigned long),
1395 .proc_handler
= hugetlb_overcommit_handler
,
1399 .procname
= "lowmem_reserve_ratio",
1400 .data
= &sysctl_lowmem_reserve_ratio
,
1401 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
1403 .proc_handler
= lowmem_reserve_ratio_sysctl_handler
,
1406 .procname
= "drop_caches",
1407 .data
= &sysctl_drop_caches
,
1408 .maxlen
= sizeof(int),
1410 .proc_handler
= drop_caches_sysctl_handler
,
1414 #ifdef CONFIG_COMPACTION
1416 .procname
= "compact_memory",
1417 .data
= &sysctl_compact_memory
,
1418 .maxlen
= sizeof(int),
1420 .proc_handler
= sysctl_compaction_handler
,
1423 .procname
= "extfrag_threshold",
1424 .data
= &sysctl_extfrag_threshold
,
1425 .maxlen
= sizeof(int),
1427 .proc_handler
= sysctl_extfrag_handler
,
1428 .extra1
= &min_extfrag_threshold
,
1429 .extra2
= &max_extfrag_threshold
,
1432 .procname
= "compact_unevictable_allowed",
1433 .data
= &sysctl_compact_unevictable_allowed
,
1434 .maxlen
= sizeof(int),
1436 .proc_handler
= proc_dointvec
,
1441 #endif /* CONFIG_COMPACTION */
1443 .procname
= "min_free_kbytes",
1444 .data
= &min_free_kbytes
,
1445 .maxlen
= sizeof(min_free_kbytes
),
1447 .proc_handler
= min_free_kbytes_sysctl_handler
,
1451 .procname
= "watermark_scale_factor",
1452 .data
= &watermark_scale_factor
,
1453 .maxlen
= sizeof(watermark_scale_factor
),
1455 .proc_handler
= watermark_scale_factor_sysctl_handler
,
1457 .extra2
= &one_thousand
,
1460 .procname
= "percpu_pagelist_fraction",
1461 .data
= &percpu_pagelist_fraction
,
1462 .maxlen
= sizeof(percpu_pagelist_fraction
),
1464 .proc_handler
= percpu_pagelist_fraction_sysctl_handler
,
1469 .procname
= "max_map_count",
1470 .data
= &sysctl_max_map_count
,
1471 .maxlen
= sizeof(sysctl_max_map_count
),
1473 .proc_handler
= proc_dointvec_minmax
,
1478 .procname
= "nr_trim_pages",
1479 .data
= &sysctl_nr_trim_pages
,
1480 .maxlen
= sizeof(sysctl_nr_trim_pages
),
1482 .proc_handler
= proc_dointvec_minmax
,
1487 .procname
= "laptop_mode",
1488 .data
= &laptop_mode
,
1489 .maxlen
= sizeof(laptop_mode
),
1491 .proc_handler
= proc_dointvec_jiffies
,
1494 .procname
= "block_dump",
1495 .data
= &block_dump
,
1496 .maxlen
= sizeof(block_dump
),
1498 .proc_handler
= proc_dointvec
,
1502 .procname
= "vfs_cache_pressure",
1503 .data
= &sysctl_vfs_cache_pressure
,
1504 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
1506 .proc_handler
= proc_dointvec
,
1509 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1511 .procname
= "legacy_va_layout",
1512 .data
= &sysctl_legacy_va_layout
,
1513 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1515 .proc_handler
= proc_dointvec
,
1521 .procname
= "zone_reclaim_mode",
1522 .data
= &node_reclaim_mode
,
1523 .maxlen
= sizeof(node_reclaim_mode
),
1525 .proc_handler
= proc_dointvec
,
1529 .procname
= "min_unmapped_ratio",
1530 .data
= &sysctl_min_unmapped_ratio
,
1531 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1533 .proc_handler
= sysctl_min_unmapped_ratio_sysctl_handler
,
1535 .extra2
= &one_hundred
,
1538 .procname
= "min_slab_ratio",
1539 .data
= &sysctl_min_slab_ratio
,
1540 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1542 .proc_handler
= sysctl_min_slab_ratio_sysctl_handler
,
1544 .extra2
= &one_hundred
,
1549 .procname
= "stat_interval",
1550 .data
= &sysctl_stat_interval
,
1551 .maxlen
= sizeof(sysctl_stat_interval
),
1553 .proc_handler
= proc_dointvec_jiffies
,
1556 .procname
= "stat_refresh",
1560 .proc_handler
= vmstat_refresh
,
1565 .procname
= "mmap_min_addr",
1566 .data
= &dac_mmap_min_addr
,
1567 .maxlen
= sizeof(unsigned long),
1569 .proc_handler
= mmap_min_addr_handler
,
1574 .procname
= "numa_zonelist_order",
1575 .data
= &numa_zonelist_order
,
1576 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1578 .proc_handler
= numa_zonelist_order_handler
,
1581 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1582 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1584 .procname
= "vdso_enabled",
1585 #ifdef CONFIG_X86_32
1586 .data
= &vdso32_enabled
,
1587 .maxlen
= sizeof(vdso32_enabled
),
1589 .data
= &vdso_enabled
,
1590 .maxlen
= sizeof(vdso_enabled
),
1593 .proc_handler
= proc_dointvec
,
1597 #ifdef CONFIG_HIGHMEM
1599 .procname
= "highmem_is_dirtyable",
1600 .data
= &vm_highmem_is_dirtyable
,
1601 .maxlen
= sizeof(vm_highmem_is_dirtyable
),
1603 .proc_handler
= proc_dointvec_minmax
,
1608 #ifdef CONFIG_MEMORY_FAILURE
1610 .procname
= "memory_failure_early_kill",
1611 .data
= &sysctl_memory_failure_early_kill
,
1612 .maxlen
= sizeof(sysctl_memory_failure_early_kill
),
1614 .proc_handler
= proc_dointvec_minmax
,
1619 .procname
= "memory_failure_recovery",
1620 .data
= &sysctl_memory_failure_recovery
,
1621 .maxlen
= sizeof(sysctl_memory_failure_recovery
),
1623 .proc_handler
= proc_dointvec_minmax
,
1629 .procname
= "user_reserve_kbytes",
1630 .data
= &sysctl_user_reserve_kbytes
,
1631 .maxlen
= sizeof(sysctl_user_reserve_kbytes
),
1633 .proc_handler
= proc_doulongvec_minmax
,
1636 .procname
= "admin_reserve_kbytes",
1637 .data
= &sysctl_admin_reserve_kbytes
,
1638 .maxlen
= sizeof(sysctl_admin_reserve_kbytes
),
1640 .proc_handler
= proc_doulongvec_minmax
,
1642 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1644 .procname
= "mmap_rnd_bits",
1645 .data
= &mmap_rnd_bits
,
1646 .maxlen
= sizeof(mmap_rnd_bits
),
1648 .proc_handler
= proc_dointvec_minmax
,
1649 .extra1
= (void *)&mmap_rnd_bits_min
,
1650 .extra2
= (void *)&mmap_rnd_bits_max
,
1653 #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1655 .procname
= "mmap_rnd_compat_bits",
1656 .data
= &mmap_rnd_compat_bits
,
1657 .maxlen
= sizeof(mmap_rnd_compat_bits
),
1659 .proc_handler
= proc_dointvec_minmax
,
1660 .extra1
= (void *)&mmap_rnd_compat_bits_min
,
1661 .extra2
= (void *)&mmap_rnd_compat_bits_max
,
1667 static struct ctl_table fs_table
[] = {
1669 .procname
= "inode-nr",
1670 .data
= &inodes_stat
,
1671 .maxlen
= 2*sizeof(long),
1673 .proc_handler
= proc_nr_inodes
,
1676 .procname
= "inode-state",
1677 .data
= &inodes_stat
,
1678 .maxlen
= 7*sizeof(long),
1680 .proc_handler
= proc_nr_inodes
,
1683 .procname
= "file-nr",
1684 .data
= &files_stat
,
1685 .maxlen
= sizeof(files_stat
),
1687 .proc_handler
= proc_nr_files
,
1690 .procname
= "file-max",
1691 .data
= &files_stat
.max_files
,
1692 .maxlen
= sizeof(files_stat
.max_files
),
1694 .proc_handler
= proc_doulongvec_minmax
,
1697 .procname
= "nr_open",
1698 .data
= &sysctl_nr_open
,
1699 .maxlen
= sizeof(unsigned int),
1701 .proc_handler
= proc_dointvec_minmax
,
1702 .extra1
= &sysctl_nr_open_min
,
1703 .extra2
= &sysctl_nr_open_max
,
1706 .procname
= "dentry-state",
1707 .data
= &dentry_stat
,
1708 .maxlen
= 6*sizeof(long),
1710 .proc_handler
= proc_nr_dentry
,
1713 .procname
= "overflowuid",
1714 .data
= &fs_overflowuid
,
1715 .maxlen
= sizeof(int),
1717 .proc_handler
= proc_dointvec_minmax
,
1718 .extra1
= &minolduid
,
1719 .extra2
= &maxolduid
,
1722 .procname
= "overflowgid",
1723 .data
= &fs_overflowgid
,
1724 .maxlen
= sizeof(int),
1726 .proc_handler
= proc_dointvec_minmax
,
1727 .extra1
= &minolduid
,
1728 .extra2
= &maxolduid
,
1730 #ifdef CONFIG_FILE_LOCKING
1732 .procname
= "leases-enable",
1733 .data
= &leases_enable
,
1734 .maxlen
= sizeof(int),
1736 .proc_handler
= proc_dointvec
,
1739 #ifdef CONFIG_DNOTIFY
1741 .procname
= "dir-notify-enable",
1742 .data
= &dir_notify_enable
,
1743 .maxlen
= sizeof(int),
1745 .proc_handler
= proc_dointvec
,
1749 #ifdef CONFIG_FILE_LOCKING
1751 .procname
= "lease-break-time",
1752 .data
= &lease_break_time
,
1753 .maxlen
= sizeof(int),
1755 .proc_handler
= proc_dointvec
,
1760 .procname
= "aio-nr",
1762 .maxlen
= sizeof(aio_nr
),
1764 .proc_handler
= proc_doulongvec_minmax
,
1767 .procname
= "aio-max-nr",
1768 .data
= &aio_max_nr
,
1769 .maxlen
= sizeof(aio_max_nr
),
1771 .proc_handler
= proc_doulongvec_minmax
,
1773 #endif /* CONFIG_AIO */
1774 #ifdef CONFIG_INOTIFY_USER
1776 .procname
= "inotify",
1778 .child
= inotify_table
,
1783 .procname
= "epoll",
1785 .child
= epoll_table
,
1790 .procname
= "protected_symlinks",
1791 .data
= &sysctl_protected_symlinks
,
1792 .maxlen
= sizeof(int),
1794 .proc_handler
= proc_dointvec_minmax
,
1799 .procname
= "protected_hardlinks",
1800 .data
= &sysctl_protected_hardlinks
,
1801 .maxlen
= sizeof(int),
1803 .proc_handler
= proc_dointvec_minmax
,
1808 .procname
= "suid_dumpable",
1809 .data
= &suid_dumpable
,
1810 .maxlen
= sizeof(int),
1812 .proc_handler
= proc_dointvec_minmax_coredump
,
1816 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1818 .procname
= "binfmt_misc",
1820 .child
= sysctl_mount_point
,
1824 .procname
= "pipe-max-size",
1825 .data
= &pipe_max_size
,
1826 .maxlen
= sizeof(pipe_max_size
),
1828 .proc_handler
= proc_dopipe_max_size
,
1831 .procname
= "pipe-user-pages-hard",
1832 .data
= &pipe_user_pages_hard
,
1833 .maxlen
= sizeof(pipe_user_pages_hard
),
1835 .proc_handler
= proc_doulongvec_minmax
,
1838 .procname
= "pipe-user-pages-soft",
1839 .data
= &pipe_user_pages_soft
,
1840 .maxlen
= sizeof(pipe_user_pages_soft
),
1842 .proc_handler
= proc_doulongvec_minmax
,
1845 .procname
= "mount-max",
1846 .data
= &sysctl_mount_max
,
1847 .maxlen
= sizeof(unsigned int),
1849 .proc_handler
= proc_dointvec_minmax
,
1855 static struct ctl_table debug_table
[] = {
1856 #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
1858 .procname
= "exception-trace",
1859 .data
= &show_unhandled_signals
,
1860 .maxlen
= sizeof(int),
1862 .proc_handler
= proc_dointvec
1865 #if defined(CONFIG_OPTPROBES)
1867 .procname
= "kprobes-optimization",
1868 .data
= &sysctl_kprobes_optimization
,
1869 .maxlen
= sizeof(int),
1871 .proc_handler
= proc_kprobes_optimization_handler
,
1879 static struct ctl_table dev_table
[] = {
1883 int __init
sysctl_init(void)
1885 struct ctl_table_header
*hdr
;
1887 hdr
= register_sysctl_table(sysctl_base_table
);
1888 kmemleak_not_leak(hdr
);
1892 #endif /* CONFIG_SYSCTL */
1898 #ifdef CONFIG_PROC_SYSCTL
1900 static int _proc_do_string(char *data
, int maxlen
, int write
,
1901 char __user
*buffer
,
1902 size_t *lenp
, loff_t
*ppos
)
1908 if (!data
|| !maxlen
|| !*lenp
) {
1914 if (sysctl_writes_strict
== SYSCTL_WRITES_STRICT
) {
1915 /* Only continue writes not past the end of buffer. */
1917 if (len
> maxlen
- 1)
1924 /* Start writing from beginning of buffer. */
1930 while ((p
- buffer
) < *lenp
&& len
< maxlen
- 1) {
1931 if (get_user(c
, p
++))
1933 if (c
== 0 || c
== '\n')
1954 if (copy_to_user(buffer
, data
, len
))
1957 if (put_user('\n', buffer
+ len
))
1967 static void warn_sysctl_write(struct ctl_table
*table
)
1969 pr_warn_once("%s wrote to %s when file position was not 0!\n"
1970 "This will not be supported in the future. To silence this\n"
1971 "warning, set kernel.sysctl_writes_strict = -1\n",
1972 current
->comm
, table
->procname
);
1976 * proc_first_pos_non_zero_ignore - check if firs position is allowed
1977 * @ppos: file position
1978 * @table: the sysctl table
1980 * Returns true if the first position is non-zero and the sysctl_writes_strict
1981 * mode indicates this is not allowed for numeric input types. String proc
1982 * hadlers can ignore the return value.
1984 static bool proc_first_pos_non_zero_ignore(loff_t
*ppos
,
1985 struct ctl_table
*table
)
1990 switch (sysctl_writes_strict
) {
1991 case SYSCTL_WRITES_STRICT
:
1993 case SYSCTL_WRITES_WARN
:
1994 warn_sysctl_write(table
);
2002 * proc_dostring - read a string sysctl
2003 * @table: the sysctl table
2004 * @write: %TRUE if this is a write to the sysctl file
2005 * @buffer: the user buffer
2006 * @lenp: the size of the user buffer
2007 * @ppos: file position
2009 * Reads/writes a string from/to the user buffer. If the kernel
2010 * buffer provided is not large enough to hold the string, the
2011 * string is truncated. The copied string is %NULL-terminated.
2012 * If the string is being read by the user process, it is copied
2013 * and a newline '\n' is added. It is truncated if the buffer is
2016 * Returns 0 on success.
2018 int proc_dostring(struct ctl_table
*table
, int write
,
2019 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2022 proc_first_pos_non_zero_ignore(ppos
, table
);
2024 return _proc_do_string((char *)(table
->data
), table
->maxlen
, write
,
2025 (char __user
*)buffer
, lenp
, ppos
);
2028 static size_t proc_skip_spaces(char **buf
)
2031 char *tmp
= skip_spaces(*buf
);
2037 static void proc_skip_char(char **buf
, size_t *size
, const char v
)
2047 #define TMPBUFLEN 22
2049 * proc_get_long - reads an ASCII formatted integer from a user buffer
2051 * @buf: a kernel buffer
2052 * @size: size of the kernel buffer
2053 * @val: this is where the number will be stored
2054 * @neg: set to %TRUE if number is negative
2055 * @perm_tr: a vector which contains the allowed trailers
2056 * @perm_tr_len: size of the perm_tr vector
2057 * @tr: pointer to store the trailer character
2059 * In case of success %0 is returned and @buf and @size are updated with
2060 * the amount of bytes read. If @tr is non-NULL and a trailing
2061 * character exists (size is non-zero after returning from this
2062 * function), @tr is updated with the trailing character.
2064 static int proc_get_long(char **buf
, size_t *size
,
2065 unsigned long *val
, bool *neg
,
2066 const char *perm_tr
, unsigned perm_tr_len
, char *tr
)
2069 char *p
, tmp
[TMPBUFLEN
];
2075 if (len
> TMPBUFLEN
- 1)
2076 len
= TMPBUFLEN
- 1;
2078 memcpy(tmp
, *buf
, len
);
2082 if (*p
== '-' && *size
> 1) {
2090 *val
= simple_strtoul(p
, &p
, 0);
2094 /* We don't know if the next char is whitespace thus we may accept
2095 * invalid integers (e.g. 1234...a) or two integers instead of one
2096 * (e.g. 123...1). So lets not allow such large numbers. */
2097 if (len
== TMPBUFLEN
- 1)
2100 if (len
< *size
&& perm_tr_len
&& !memchr(perm_tr
, *p
, perm_tr_len
))
2103 if (tr
&& (len
< *size
))
2113 * proc_put_long - converts an integer to a decimal ASCII formatted string
2115 * @buf: the user buffer
2116 * @size: the size of the user buffer
2117 * @val: the integer to be converted
2118 * @neg: sign of the number, %TRUE for negative
2120 * In case of success %0 is returned and @buf and @size are updated with
2121 * the amount of bytes written.
2123 static int proc_put_long(void __user
**buf
, size_t *size
, unsigned long val
,
2127 char tmp
[TMPBUFLEN
], *p
= tmp
;
2129 sprintf(p
, "%s%lu", neg
? "-" : "", val
);
2133 if (copy_to_user(*buf
, tmp
, len
))
2141 static int proc_put_char(void __user
**buf
, size_t *size
, char c
)
2144 char __user
**buffer
= (char __user
**)buf
;
2145 if (put_user(c
, *buffer
))
2147 (*size
)--, (*buffer
)++;
2153 static int do_proc_dointvec_conv(bool *negp
, unsigned long *lvalp
,
2155 int write
, void *data
)
2159 if (*lvalp
> (unsigned long) INT_MAX
+ 1)
2163 if (*lvalp
> (unsigned long) INT_MAX
)
2171 *lvalp
= -(unsigned long)val
;
2174 *lvalp
= (unsigned long)val
;
2180 static int do_proc_douintvec_conv(unsigned long *lvalp
,
2182 int write
, void *data
)
2185 if (*lvalp
> UINT_MAX
)
2189 unsigned int val
= *valp
;
2190 *lvalp
= (unsigned long)val
;
2195 static const char proc_wspace_sep
[] = { ' ', '\t', '\n' };
2197 static int __do_proc_dointvec(void *tbl_data
, struct ctl_table
*table
,
2198 int write
, void __user
*buffer
,
2199 size_t *lenp
, loff_t
*ppos
,
2200 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
2201 int write
, void *data
),
2204 int *i
, vleft
, first
= 1, err
= 0;
2206 char *kbuf
= NULL
, *p
;
2208 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2213 i
= (int *) tbl_data
;
2214 vleft
= table
->maxlen
/ sizeof(*i
);
2218 conv
= do_proc_dointvec_conv
;
2221 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2224 if (left
> PAGE_SIZE
- 1)
2225 left
= PAGE_SIZE
- 1;
2226 p
= kbuf
= memdup_user_nul(buffer
, left
);
2228 return PTR_ERR(kbuf
);
2231 for (; left
&& vleft
--; i
++, first
=0) {
2236 left
-= proc_skip_spaces(&p
);
2240 err
= proc_get_long(&p
, &left
, &lval
, &neg
,
2242 sizeof(proc_wspace_sep
), NULL
);
2245 if (conv(&neg
, &lval
, i
, 1, data
)) {
2250 if (conv(&neg
, &lval
, i
, 0, data
)) {
2255 err
= proc_put_char(&buffer
, &left
, '\t');
2258 err
= proc_put_long(&buffer
, &left
, lval
, neg
);
2264 if (!write
&& !first
&& left
&& !err
)
2265 err
= proc_put_char(&buffer
, &left
, '\n');
2266 if (write
&& !err
&& left
)
2267 left
-= proc_skip_spaces(&p
);
2271 return err
? : -EINVAL
;
2279 static int do_proc_dointvec(struct ctl_table
*table
, int write
,
2280 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
2281 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
2282 int write
, void *data
),
2285 return __do_proc_dointvec(table
->data
, table
, write
,
2286 buffer
, lenp
, ppos
, conv
, data
);
2289 static int do_proc_douintvec_w(unsigned int *tbl_data
,
2290 struct ctl_table
*table
,
2291 void __user
*buffer
,
2292 size_t *lenp
, loff_t
*ppos
,
2293 int (*conv
)(unsigned long *lvalp
,
2295 int write
, void *data
),
2302 char *kbuf
= NULL
, *p
;
2306 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2309 if (left
> PAGE_SIZE
- 1)
2310 left
= PAGE_SIZE
- 1;
2312 p
= kbuf
= memdup_user_nul(buffer
, left
);
2316 left
-= proc_skip_spaces(&p
);
2322 err
= proc_get_long(&p
, &left
, &lval
, &neg
,
2324 sizeof(proc_wspace_sep
), NULL
);
2330 if (conv(&lval
, tbl_data
, 1, data
)) {
2336 left
-= proc_skip_spaces(&p
);
2345 /* This is in keeping with old __do_proc_dointvec() */
2351 static int do_proc_douintvec_r(unsigned int *tbl_data
, void __user
*buffer
,
2352 size_t *lenp
, loff_t
*ppos
,
2353 int (*conv
)(unsigned long *lvalp
,
2355 int write
, void *data
),
2364 if (conv(&lval
, tbl_data
, 0, data
)) {
2369 err
= proc_put_long(&buffer
, &left
, lval
, false);
2373 err
= proc_put_char(&buffer
, &left
, '\n');
2382 static int __do_proc_douintvec(void *tbl_data
, struct ctl_table
*table
,
2383 int write
, void __user
*buffer
,
2384 size_t *lenp
, loff_t
*ppos
,
2385 int (*conv
)(unsigned long *lvalp
,
2387 int write
, void *data
),
2390 unsigned int *i
, vleft
;
2392 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2397 i
= (unsigned int *) tbl_data
;
2398 vleft
= table
->maxlen
/ sizeof(*i
);
2401 * Arrays are not supported, keep this simple. *Do not* add
2410 conv
= do_proc_douintvec_conv
;
2413 return do_proc_douintvec_w(i
, table
, buffer
, lenp
, ppos
,
2415 return do_proc_douintvec_r(i
, buffer
, lenp
, ppos
, conv
, data
);
2418 static int do_proc_douintvec(struct ctl_table
*table
, int write
,
2419 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
2420 int (*conv
)(unsigned long *lvalp
,
2422 int write
, void *data
),
2425 return __do_proc_douintvec(table
->data
, table
, write
,
2426 buffer
, lenp
, ppos
, conv
, data
);
2430 * proc_dointvec - read a vector of integers
2431 * @table: the sysctl table
2432 * @write: %TRUE if this is a write to the sysctl file
2433 * @buffer: the user buffer
2434 * @lenp: the size of the user buffer
2435 * @ppos: file position
2437 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2438 * values from/to the user buffer, treated as an ASCII string.
2440 * Returns 0 on success.
2442 int proc_dointvec(struct ctl_table
*table
, int write
,
2443 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2445 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
, NULL
, NULL
);
2449 * proc_douintvec - read a vector of unsigned integers
2450 * @table: the sysctl table
2451 * @write: %TRUE if this is a write to the sysctl file
2452 * @buffer: the user buffer
2453 * @lenp: the size of the user buffer
2454 * @ppos: file position
2456 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2457 * values from/to the user buffer, treated as an ASCII string.
2459 * Returns 0 on success.
2461 int proc_douintvec(struct ctl_table
*table
, int write
,
2462 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2464 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2465 do_proc_douintvec_conv
, NULL
);
2469 * Taint values can only be increased
2470 * This means we can safely use a temporary.
2472 static int proc_taint(struct ctl_table
*table
, int write
,
2473 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2476 unsigned long tmptaint
= get_taint();
2479 if (write
&& !capable(CAP_SYS_ADMIN
))
2484 err
= proc_doulongvec_minmax(&t
, write
, buffer
, lenp
, ppos
);
2490 * Poor man's atomic or. Not worth adding a primitive
2491 * to everyone's atomic.h for this
2494 for (i
= 0; i
< BITS_PER_LONG
&& tmptaint
>> i
; i
++) {
2495 if ((tmptaint
>> i
) & 1)
2496 add_taint(i
, LOCKDEP_STILL_OK
);
2503 #ifdef CONFIG_PRINTK
2504 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
2505 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2507 if (write
&& !capable(CAP_SYS_ADMIN
))
2510 return proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2515 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
2516 * @min: pointer to minimum allowable value
2517 * @max: pointer to maximum allowable value
2519 * The do_proc_dointvec_minmax_conv_param structure provides the
2520 * minimum and maximum values for doing range checking for those sysctl
2521 * parameters that use the proc_dointvec_minmax() handler.
2523 struct do_proc_dointvec_minmax_conv_param
{
2528 static int do_proc_dointvec_minmax_conv(bool *negp
, unsigned long *lvalp
,
2530 int write
, void *data
)
2532 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
2534 int val
= *negp
? -*lvalp
: *lvalp
;
2535 if ((param
->min
&& *param
->min
> val
) ||
2536 (param
->max
&& *param
->max
< val
))
2543 *lvalp
= -(unsigned long)val
;
2546 *lvalp
= (unsigned long)val
;
2553 * proc_dointvec_minmax - read a vector of integers with min/max values
2554 * @table: the sysctl table
2555 * @write: %TRUE if this is a write to the sysctl file
2556 * @buffer: the user buffer
2557 * @lenp: the size of the user buffer
2558 * @ppos: file position
2560 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2561 * values from/to the user buffer, treated as an ASCII string.
2563 * This routine will ensure the values are within the range specified by
2564 * table->extra1 (min) and table->extra2 (max).
2566 * Returns 0 on success or -EINVAL on write when the range check fails.
2568 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2569 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2571 struct do_proc_dointvec_minmax_conv_param param
= {
2572 .min
= (int *) table
->extra1
,
2573 .max
= (int *) table
->extra2
,
2575 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2576 do_proc_dointvec_minmax_conv
, ¶m
);
2580 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
2581 * @min: pointer to minimum allowable value
2582 * @max: pointer to maximum allowable value
2584 * The do_proc_douintvec_minmax_conv_param structure provides the
2585 * minimum and maximum values for doing range checking for those sysctl
2586 * parameters that use the proc_douintvec_minmax() handler.
2588 struct do_proc_douintvec_minmax_conv_param
{
2593 static int do_proc_douintvec_minmax_conv(unsigned long *lvalp
,
2595 int write
, void *data
)
2597 struct do_proc_douintvec_minmax_conv_param
*param
= data
;
2600 unsigned int val
= *lvalp
;
2602 if (*lvalp
> UINT_MAX
)
2605 if ((param
->min
&& *param
->min
> val
) ||
2606 (param
->max
&& *param
->max
< val
))
2611 unsigned int val
= *valp
;
2612 *lvalp
= (unsigned long) val
;
2619 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2620 * @table: the sysctl table
2621 * @write: %TRUE if this is a write to the sysctl file
2622 * @buffer: the user buffer
2623 * @lenp: the size of the user buffer
2624 * @ppos: file position
2626 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2627 * values from/to the user buffer, treated as an ASCII string. Negative
2628 * strings are not allowed.
2630 * This routine will ensure the values are within the range specified by
2631 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2632 * check for UINT_MAX to avoid having to support wrap around uses from
2635 * Returns 0 on success or -ERANGE on write when the range check fails.
2637 int proc_douintvec_minmax(struct ctl_table
*table
, int write
,
2638 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2640 struct do_proc_douintvec_minmax_conv_param param
= {
2641 .min
= (unsigned int *) table
->extra1
,
2642 .max
= (unsigned int *) table
->extra2
,
2644 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2645 do_proc_douintvec_minmax_conv
, ¶m
);
2648 static int do_proc_dopipe_max_size_conv(unsigned long *lvalp
,
2650 int write
, void *data
)
2655 val
= round_pipe_size(*lvalp
);
2661 unsigned int val
= *valp
;
2662 *lvalp
= (unsigned long) val
;
2668 static int proc_dopipe_max_size(struct ctl_table
*table
, int write
,
2669 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2671 return do_proc_douintvec(table
, write
, buffer
, lenp
, ppos
,
2672 do_proc_dopipe_max_size_conv
, NULL
);
2675 static void validate_coredump_safety(void)
2677 #ifdef CONFIG_COREDUMP
2678 if (suid_dumpable
== SUID_DUMP_ROOT
&&
2679 core_pattern
[0] != '/' && core_pattern
[0] != '|') {
2681 "Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2682 "Pipe handler or fully qualified core dump path required.\n"
2683 "Set kernel.core_pattern before fs.suid_dumpable.\n"
2689 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
2690 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2692 int error
= proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2694 validate_coredump_safety();
2698 #ifdef CONFIG_COREDUMP
2699 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
2700 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2702 int error
= proc_dostring(table
, write
, buffer
, lenp
, ppos
);
2704 validate_coredump_safety();
2709 static int __do_proc_doulongvec_minmax(void *data
, struct ctl_table
*table
, int write
,
2710 void __user
*buffer
,
2711 size_t *lenp
, loff_t
*ppos
,
2712 unsigned long convmul
,
2713 unsigned long convdiv
)
2715 unsigned long *i
, *min
, *max
;
2716 int vleft
, first
= 1, err
= 0;
2718 char *kbuf
= NULL
, *p
;
2720 if (!data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2725 i
= (unsigned long *) data
;
2726 min
= (unsigned long *) table
->extra1
;
2727 max
= (unsigned long *) table
->extra2
;
2728 vleft
= table
->maxlen
/ sizeof(unsigned long);
2732 if (proc_first_pos_non_zero_ignore(ppos
, table
))
2735 if (left
> PAGE_SIZE
- 1)
2736 left
= PAGE_SIZE
- 1;
2737 p
= kbuf
= memdup_user_nul(buffer
, left
);
2739 return PTR_ERR(kbuf
);
2742 for (; left
&& vleft
--; i
++, first
= 0) {
2748 left
-= proc_skip_spaces(&p
);
2750 err
= proc_get_long(&p
, &left
, &val
, &neg
,
2752 sizeof(proc_wspace_sep
), NULL
);
2757 val
= convmul
* val
/ convdiv
;
2758 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2762 val
= convdiv
* (*i
) / convmul
;
2764 err
= proc_put_char(&buffer
, &left
, '\t');
2768 err
= proc_put_long(&buffer
, &left
, val
, false);
2774 if (!write
&& !first
&& left
&& !err
)
2775 err
= proc_put_char(&buffer
, &left
, '\n');
2777 left
-= proc_skip_spaces(&p
);
2781 return err
? : -EINVAL
;
2789 static int do_proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2790 void __user
*buffer
,
2791 size_t *lenp
, loff_t
*ppos
,
2792 unsigned long convmul
,
2793 unsigned long convdiv
)
2795 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2796 buffer
, lenp
, ppos
, convmul
, convdiv
);
2800 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2801 * @table: the sysctl table
2802 * @write: %TRUE if this is a write to the sysctl file
2803 * @buffer: the user buffer
2804 * @lenp: the size of the user buffer
2805 * @ppos: file position
2807 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2808 * values from/to the user buffer, treated as an ASCII string.
2810 * This routine will ensure the values are within the range specified by
2811 * table->extra1 (min) and table->extra2 (max).
2813 * Returns 0 on success.
2815 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2816 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2818 return do_proc_doulongvec_minmax(table
, write
, buffer
, lenp
, ppos
, 1l, 1l);
2822 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2823 * @table: the sysctl table
2824 * @write: %TRUE if this is a write to the sysctl file
2825 * @buffer: the user buffer
2826 * @lenp: the size of the user buffer
2827 * @ppos: file position
2829 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2830 * values from/to the user buffer, treated as an ASCII string. The values
2831 * are treated as milliseconds, and converted to jiffies when they are stored.
2833 * This routine will ensure the values are within the range specified by
2834 * table->extra1 (min) and table->extra2 (max).
2836 * Returns 0 on success.
2838 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2839 void __user
*buffer
,
2840 size_t *lenp
, loff_t
*ppos
)
2842 return do_proc_doulongvec_minmax(table
, write
, buffer
,
2843 lenp
, ppos
, HZ
, 1000l);
2847 static int do_proc_dointvec_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2849 int write
, void *data
)
2852 if (*lvalp
> INT_MAX
/ HZ
)
2854 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2860 lval
= -(unsigned long)val
;
2863 lval
= (unsigned long)val
;
2870 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2872 int write
, void *data
)
2875 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2877 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2883 lval
= -(unsigned long)val
;
2886 lval
= (unsigned long)val
;
2888 *lvalp
= jiffies_to_clock_t(lval
);
2893 static int do_proc_dointvec_ms_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2895 int write
, void *data
)
2898 unsigned long jif
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2908 lval
= -(unsigned long)val
;
2911 lval
= (unsigned long)val
;
2913 *lvalp
= jiffies_to_msecs(lval
);
2919 * proc_dointvec_jiffies - read a vector of integers as seconds
2920 * @table: the sysctl table
2921 * @write: %TRUE if this is a write to the sysctl file
2922 * @buffer: the user buffer
2923 * @lenp: the size of the user buffer
2924 * @ppos: file position
2926 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2927 * values from/to the user buffer, treated as an ASCII string.
2928 * The values read are assumed to be in seconds, and are converted into
2931 * Returns 0 on success.
2933 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2934 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2936 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2937 do_proc_dointvec_jiffies_conv
,NULL
);
2941 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2942 * @table: the sysctl table
2943 * @write: %TRUE if this is a write to the sysctl file
2944 * @buffer: the user buffer
2945 * @lenp: the size of the user buffer
2946 * @ppos: pointer to the file position
2948 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2949 * values from/to the user buffer, treated as an ASCII string.
2950 * The values read are assumed to be in 1/USER_HZ seconds, and
2951 * are converted into jiffies.
2953 * Returns 0 on success.
2955 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2956 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2958 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2959 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2963 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2964 * @table: the sysctl table
2965 * @write: %TRUE if this is a write to the sysctl file
2966 * @buffer: the user buffer
2967 * @lenp: the size of the user buffer
2968 * @ppos: file position
2969 * @ppos: the current position in the file
2971 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2972 * values from/to the user buffer, treated as an ASCII string.
2973 * The values read are assumed to be in 1/1000 seconds, and
2974 * are converted into jiffies.
2976 * Returns 0 on success.
2978 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
2979 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2981 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2982 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2985 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
2986 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2988 struct pid
*new_pid
;
2992 tmp
= pid_vnr(cad_pid
);
2994 r
= __do_proc_dointvec(&tmp
, table
, write
, buffer
,
2995 lenp
, ppos
, NULL
, NULL
);
2999 new_pid
= find_get_pid(tmp
);
3003 put_pid(xchg(&cad_pid
, new_pid
));
3008 * proc_do_large_bitmap - read/write from/to a large bitmap
3009 * @table: the sysctl table
3010 * @write: %TRUE if this is a write to the sysctl file
3011 * @buffer: the user buffer
3012 * @lenp: the size of the user buffer
3013 * @ppos: file position
3015 * The bitmap is stored at table->data and the bitmap length (in bits)
3018 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
3019 * large bitmaps may be represented in a compact manner. Writing into
3020 * the file will clear the bitmap then update it with the given input.
3022 * Returns 0 on success.
3024 int proc_do_large_bitmap(struct ctl_table
*table
, int write
,
3025 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3029 size_t left
= *lenp
;
3030 unsigned long bitmap_len
= table
->maxlen
;
3031 unsigned long *bitmap
= *(unsigned long **) table
->data
;
3032 unsigned long *tmp_bitmap
= NULL
;
3033 char tr_a
[] = { '-', ',', '\n' }, tr_b
[] = { ',', '\n', 0 }, c
;
3035 if (!bitmap
|| !bitmap_len
|| !left
|| (*ppos
&& !write
)) {
3043 if (left
> PAGE_SIZE
- 1)
3044 left
= PAGE_SIZE
- 1;
3046 p
= kbuf
= memdup_user_nul(buffer
, left
);
3048 return PTR_ERR(kbuf
);
3050 tmp_bitmap
= kzalloc(BITS_TO_LONGS(bitmap_len
) * sizeof(unsigned long),
3056 proc_skip_char(&p
, &left
, '\n');
3057 while (!err
&& left
) {
3058 unsigned long val_a
, val_b
;
3061 err
= proc_get_long(&p
, &left
, &val_a
, &neg
, tr_a
,
3065 if (val_a
>= bitmap_len
|| neg
) {
3077 err
= proc_get_long(&p
, &left
, &val_b
,
3078 &neg
, tr_b
, sizeof(tr_b
),
3082 if (val_b
>= bitmap_len
|| neg
||
3093 bitmap_set(tmp_bitmap
, val_a
, val_b
- val_a
+ 1);
3095 proc_skip_char(&p
, &left
, '\n');
3099 unsigned long bit_a
, bit_b
= 0;
3102 bit_a
= find_next_bit(bitmap
, bitmap_len
, bit_b
);
3103 if (bit_a
>= bitmap_len
)
3105 bit_b
= find_next_zero_bit(bitmap
, bitmap_len
,
3109 err
= proc_put_char(&buffer
, &left
, ',');
3113 err
= proc_put_long(&buffer
, &left
, bit_a
, false);
3116 if (bit_a
!= bit_b
) {
3117 err
= proc_put_char(&buffer
, &left
, '-');
3120 err
= proc_put_long(&buffer
, &left
, bit_b
, false);
3128 err
= proc_put_char(&buffer
, &left
, '\n');
3134 bitmap_or(bitmap
, bitmap
, tmp_bitmap
, bitmap_len
);
3136 bitmap_copy(bitmap
, tmp_bitmap
, bitmap_len
);
3146 #else /* CONFIG_PROC_SYSCTL */
3148 int proc_dostring(struct ctl_table
*table
, int write
,
3149 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3154 int proc_dointvec(struct ctl_table
*table
, int write
,
3155 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3160 int proc_douintvec(struct ctl_table
*table
, int write
,
3161 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3166 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
3167 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3172 int proc_douintvec_minmax(struct ctl_table
*table
, int write
,
3173 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3178 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
3179 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3184 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
3185 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3190 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
3191 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3196 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
3197 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
3202 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
3203 void __user
*buffer
,
3204 size_t *lenp
, loff_t
*ppos
)
3210 #endif /* CONFIG_PROC_SYSCTL */
3213 * No sense putting this after each symbol definition, twice,
3214 * exception granted :-)
3216 EXPORT_SYMBOL(proc_dointvec
);
3217 EXPORT_SYMBOL(proc_douintvec
);
3218 EXPORT_SYMBOL(proc_dointvec_jiffies
);
3219 EXPORT_SYMBOL(proc_dointvec_minmax
);
3220 EXPORT_SYMBOL_GPL(proc_douintvec_minmax
);
3221 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
3222 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
3223 EXPORT_SYMBOL(proc_dostring
);
3224 EXPORT_SYMBOL(proc_doulongvec_minmax
);
3225 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);