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>
23 #include <linux/swap.h>
24 #include <linux/slab.h>
25 #include <linux/sysctl.h>
26 #include <linux/bitmap.h>
27 #include <linux/signal.h>
28 #include <linux/printk.h>
29 #include <linux/proc_fs.h>
30 #include <linux/security.h>
31 #include <linux/ctype.h>
32 #include <linux/kmemcheck.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>
66 #include <asm/uaccess.h>
67 #include <asm/processor.h>
71 #include <asm/stacktrace.h>
75 #include <asm/setup.h>
77 #ifdef CONFIG_BSD_PROCESS_ACCT
78 #include <linux/acct.h>
80 #ifdef CONFIG_RT_MUTEXES
81 #include <linux/rtmutex.h>
83 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
84 #include <linux/lockdep.h>
86 #ifdef CONFIG_CHR_DEV_SG
90 #ifdef CONFIG_LOCKUP_DETECTOR
91 #include <linux/nmi.h>
95 #if defined(CONFIG_SYSCTL)
97 /* External variables not in a header file. */
98 extern int sysctl_overcommit_memory
;
99 extern int sysctl_overcommit_ratio
;
100 extern int max_threads
;
101 extern int suid_dumpable
;
102 #ifdef CONFIG_COREDUMP
103 extern int core_uses_pid
;
104 extern char core_pattern
[];
105 extern unsigned int core_pipe_limit
;
108 extern int pid_max_min
, pid_max_max
;
109 extern int percpu_pagelist_fraction
;
110 extern int compat_log
;
111 extern int latencytop_enabled
;
112 extern int sysctl_nr_open_min
, sysctl_nr_open_max
;
114 extern int sysctl_nr_trim_pages
;
117 extern int blk_iopoll_enabled
;
120 /* Constants used for minimum and maximum */
121 #ifdef CONFIG_LOCKUP_DETECTOR
122 static int sixty
= 60;
126 static int __maybe_unused one
= 1;
127 static int __maybe_unused two
= 2;
128 static int __maybe_unused three
= 3;
129 static unsigned long one_ul
= 1;
130 static int one_hundred
= 100;
132 static int ten_thousand
= 10000;
135 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
136 static unsigned long dirty_bytes_min
= 2 * PAGE_SIZE
;
138 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
139 static int maxolduid
= 65535;
140 static int minolduid
;
142 static int ngroups_max
= NGROUPS_MAX
;
143 static const int cap_last_cap
= CAP_LAST_CAP
;
145 #ifdef CONFIG_INOTIFY_USER
146 #include <linux/inotify.h>
151 #ifdef CONFIG_SPARC64
152 extern int sysctl_tsb_ratio
;
156 extern int pwrsw_enabled
;
159 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
160 extern int unaligned_enabled
;
164 extern int unaligned_dump_stack
;
167 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
168 extern int no_unaligned_warning
;
171 #ifdef CONFIG_PROC_SYSCTL
172 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
173 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
174 static int proc_taint(struct ctl_table
*table
, int write
,
175 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
179 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
180 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
183 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
184 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
185 #ifdef CONFIG_COREDUMP
186 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
187 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
190 #ifdef CONFIG_MAGIC_SYSRQ
191 /* Note: sysrq code uses it's own private copy */
192 static int __sysrq_enabled
= SYSRQ_DEFAULT_ENABLE
;
194 static int sysrq_sysctl_handler(ctl_table
*table
, int write
,
195 void __user
*buffer
, size_t *lenp
,
200 error
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
205 sysrq_toggle_support(__sysrq_enabled
);
212 static struct ctl_table kern_table
[];
213 static struct ctl_table vm_table
[];
214 static struct ctl_table fs_table
[];
215 static struct ctl_table debug_table
[];
216 static struct ctl_table dev_table
[];
217 extern struct ctl_table random_table
[];
219 extern struct ctl_table epoll_table
[];
222 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
223 int sysctl_legacy_va_layout
;
226 /* The default sysctl tables: */
228 static struct ctl_table sysctl_base_table
[] = {
230 .procname
= "kernel",
247 .child
= debug_table
,
257 #ifdef CONFIG_SCHED_DEBUG
258 static int min_sched_granularity_ns
= 100000; /* 100 usecs */
259 static int max_sched_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
260 static int min_wakeup_granularity_ns
; /* 0 usecs */
261 static int max_wakeup_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
263 static int min_sched_tunable_scaling
= SCHED_TUNABLESCALING_NONE
;
264 static int max_sched_tunable_scaling
= SCHED_TUNABLESCALING_END
-1;
265 #endif /* CONFIG_SMP */
266 #endif /* CONFIG_SCHED_DEBUG */
268 #ifdef CONFIG_COMPACTION
269 static int min_extfrag_threshold
;
270 static int max_extfrag_threshold
= 1000;
273 static struct ctl_table kern_table
[] = {
275 .procname
= "sched_child_runs_first",
276 .data
= &sysctl_sched_child_runs_first
,
277 .maxlen
= sizeof(unsigned int),
279 .proc_handler
= proc_dointvec
,
281 #ifdef CONFIG_SCHED_DEBUG
283 .procname
= "sched_min_granularity_ns",
284 .data
= &sysctl_sched_min_granularity
,
285 .maxlen
= sizeof(unsigned int),
287 .proc_handler
= sched_proc_update_handler
,
288 .extra1
= &min_sched_granularity_ns
,
289 .extra2
= &max_sched_granularity_ns
,
292 .procname
= "sched_latency_ns",
293 .data
= &sysctl_sched_latency
,
294 .maxlen
= sizeof(unsigned int),
296 .proc_handler
= sched_proc_update_handler
,
297 .extra1
= &min_sched_granularity_ns
,
298 .extra2
= &max_sched_granularity_ns
,
301 .procname
= "sched_wakeup_granularity_ns",
302 .data
= &sysctl_sched_wakeup_granularity
,
303 .maxlen
= sizeof(unsigned int),
305 .proc_handler
= sched_proc_update_handler
,
306 .extra1
= &min_wakeup_granularity_ns
,
307 .extra2
= &max_wakeup_granularity_ns
,
311 .procname
= "sched_tunable_scaling",
312 .data
= &sysctl_sched_tunable_scaling
,
313 .maxlen
= sizeof(enum sched_tunable_scaling
),
315 .proc_handler
= sched_proc_update_handler
,
316 .extra1
= &min_sched_tunable_scaling
,
317 .extra2
= &max_sched_tunable_scaling
,
320 .procname
= "sched_migration_cost_ns",
321 .data
= &sysctl_sched_migration_cost
,
322 .maxlen
= sizeof(unsigned int),
324 .proc_handler
= proc_dointvec
,
327 .procname
= "sched_nr_migrate",
328 .data
= &sysctl_sched_nr_migrate
,
329 .maxlen
= sizeof(unsigned int),
331 .proc_handler
= proc_dointvec
,
334 .procname
= "sched_time_avg_ms",
335 .data
= &sysctl_sched_time_avg
,
336 .maxlen
= sizeof(unsigned int),
338 .proc_handler
= proc_dointvec
,
341 .procname
= "sched_shares_window_ns",
342 .data
= &sysctl_sched_shares_window
,
343 .maxlen
= sizeof(unsigned int),
345 .proc_handler
= proc_dointvec
,
348 .procname
= "timer_migration",
349 .data
= &sysctl_timer_migration
,
350 .maxlen
= sizeof(unsigned int),
352 .proc_handler
= proc_dointvec_minmax
,
356 #endif /* CONFIG_SMP */
357 #ifdef CONFIG_NUMA_BALANCING
359 .procname
= "numa_balancing_scan_delay_ms",
360 .data
= &sysctl_numa_balancing_scan_delay
,
361 .maxlen
= sizeof(unsigned int),
363 .proc_handler
= proc_dointvec
,
366 .procname
= "numa_balancing_scan_period_min_ms",
367 .data
= &sysctl_numa_balancing_scan_period_min
,
368 .maxlen
= sizeof(unsigned int),
370 .proc_handler
= proc_dointvec
,
373 .procname
= "numa_balancing_scan_period_reset",
374 .data
= &sysctl_numa_balancing_scan_period_reset
,
375 .maxlen
= sizeof(unsigned int),
377 .proc_handler
= proc_dointvec
,
380 .procname
= "numa_balancing_scan_period_max_ms",
381 .data
= &sysctl_numa_balancing_scan_period_max
,
382 .maxlen
= sizeof(unsigned int),
384 .proc_handler
= proc_dointvec
,
387 .procname
= "numa_balancing_scan_size_mb",
388 .data
= &sysctl_numa_balancing_scan_size
,
389 .maxlen
= sizeof(unsigned int),
391 .proc_handler
= proc_dointvec
,
393 #endif /* CONFIG_NUMA_BALANCING */
394 #endif /* CONFIG_SCHED_DEBUG */
396 .procname
= "sched_rt_period_us",
397 .data
= &sysctl_sched_rt_period
,
398 .maxlen
= sizeof(unsigned int),
400 .proc_handler
= sched_rt_handler
,
403 .procname
= "sched_rt_runtime_us",
404 .data
= &sysctl_sched_rt_runtime
,
405 .maxlen
= sizeof(int),
407 .proc_handler
= sched_rt_handler
,
410 .procname
= "sched_rr_timeslice_ms",
411 .data
= &sched_rr_timeslice
,
412 .maxlen
= sizeof(int),
414 .proc_handler
= sched_rr_handler
,
416 #ifdef CONFIG_SCHED_AUTOGROUP
418 .procname
= "sched_autogroup_enabled",
419 .data
= &sysctl_sched_autogroup_enabled
,
420 .maxlen
= sizeof(unsigned int),
422 .proc_handler
= proc_dointvec_minmax
,
427 #ifdef CONFIG_CFS_BANDWIDTH
429 .procname
= "sched_cfs_bandwidth_slice_us",
430 .data
= &sysctl_sched_cfs_bandwidth_slice
,
431 .maxlen
= sizeof(unsigned int),
433 .proc_handler
= proc_dointvec_minmax
,
437 #ifdef CONFIG_PROVE_LOCKING
439 .procname
= "prove_locking",
440 .data
= &prove_locking
,
441 .maxlen
= sizeof(int),
443 .proc_handler
= proc_dointvec
,
446 #ifdef CONFIG_LOCK_STAT
448 .procname
= "lock_stat",
450 .maxlen
= sizeof(int),
452 .proc_handler
= proc_dointvec
,
457 .data
= &panic_timeout
,
458 .maxlen
= sizeof(int),
460 .proc_handler
= proc_dointvec
,
462 #ifdef CONFIG_COREDUMP
464 .procname
= "core_uses_pid",
465 .data
= &core_uses_pid
,
466 .maxlen
= sizeof(int),
468 .proc_handler
= proc_dointvec
,
471 .procname
= "core_pattern",
472 .data
= core_pattern
,
473 .maxlen
= CORENAME_MAX_SIZE
,
475 .proc_handler
= proc_dostring_coredump
,
478 .procname
= "core_pipe_limit",
479 .data
= &core_pipe_limit
,
480 .maxlen
= sizeof(unsigned int),
482 .proc_handler
= proc_dointvec
,
485 #ifdef CONFIG_PROC_SYSCTL
487 .procname
= "tainted",
488 .maxlen
= sizeof(long),
490 .proc_handler
= proc_taint
,
493 #ifdef CONFIG_LATENCYTOP
495 .procname
= "latencytop",
496 .data
= &latencytop_enabled
,
497 .maxlen
= sizeof(int),
499 .proc_handler
= proc_dointvec
,
502 #ifdef CONFIG_BLK_DEV_INITRD
504 .procname
= "real-root-dev",
505 .data
= &real_root_dev
,
506 .maxlen
= sizeof(int),
508 .proc_handler
= proc_dointvec
,
512 .procname
= "print-fatal-signals",
513 .data
= &print_fatal_signals
,
514 .maxlen
= sizeof(int),
516 .proc_handler
= proc_dointvec
,
520 .procname
= "reboot-cmd",
521 .data
= reboot_command
,
524 .proc_handler
= proc_dostring
,
527 .procname
= "stop-a",
528 .data
= &stop_a_enabled
,
529 .maxlen
= sizeof (int),
531 .proc_handler
= proc_dointvec
,
534 .procname
= "scons-poweroff",
535 .data
= &scons_pwroff
,
536 .maxlen
= sizeof (int),
538 .proc_handler
= proc_dointvec
,
541 #ifdef CONFIG_SPARC64
543 .procname
= "tsb-ratio",
544 .data
= &sysctl_tsb_ratio
,
545 .maxlen
= sizeof (int),
547 .proc_handler
= proc_dointvec
,
552 .procname
= "soft-power",
553 .data
= &pwrsw_enabled
,
554 .maxlen
= sizeof (int),
556 .proc_handler
= proc_dointvec
,
559 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
561 .procname
= "unaligned-trap",
562 .data
= &unaligned_enabled
,
563 .maxlen
= sizeof (int),
565 .proc_handler
= proc_dointvec
,
569 .procname
= "ctrl-alt-del",
571 .maxlen
= sizeof(int),
573 .proc_handler
= proc_dointvec
,
575 #ifdef CONFIG_FUNCTION_TRACER
577 .procname
= "ftrace_enabled",
578 .data
= &ftrace_enabled
,
579 .maxlen
= sizeof(int),
581 .proc_handler
= ftrace_enable_sysctl
,
584 #ifdef CONFIG_STACK_TRACER
586 .procname
= "stack_tracer_enabled",
587 .data
= &stack_tracer_enabled
,
588 .maxlen
= sizeof(int),
590 .proc_handler
= stack_trace_sysctl
,
593 #ifdef CONFIG_TRACING
595 .procname
= "ftrace_dump_on_oops",
596 .data
= &ftrace_dump_on_oops
,
597 .maxlen
= sizeof(int),
599 .proc_handler
= proc_dointvec
,
602 .procname
= "traceoff_on_warning",
603 .data
= &__disable_trace_on_warning
,
604 .maxlen
= sizeof(__disable_trace_on_warning
),
606 .proc_handler
= proc_dointvec
,
609 #ifdef CONFIG_MODULES
611 .procname
= "modprobe",
612 .data
= &modprobe_path
,
613 .maxlen
= KMOD_PATH_LEN
,
615 .proc_handler
= proc_dostring
,
618 .procname
= "modules_disabled",
619 .data
= &modules_disabled
,
620 .maxlen
= sizeof(int),
622 /* only handle a transition from default "0" to "1" */
623 .proc_handler
= proc_dointvec_minmax
,
630 .procname
= "hotplug",
631 .data
= &uevent_helper
,
632 .maxlen
= UEVENT_HELPER_PATH_LEN
,
634 .proc_handler
= proc_dostring
,
637 #ifdef CONFIG_CHR_DEV_SG
639 .procname
= "sg-big-buff",
640 .data
= &sg_big_buff
,
641 .maxlen
= sizeof (int),
643 .proc_handler
= proc_dointvec
,
646 #ifdef CONFIG_BSD_PROCESS_ACCT
650 .maxlen
= 3*sizeof(int),
652 .proc_handler
= proc_dointvec
,
655 #ifdef CONFIG_MAGIC_SYSRQ
658 .data
= &__sysrq_enabled
,
659 .maxlen
= sizeof (int),
661 .proc_handler
= sysrq_sysctl_handler
,
664 #ifdef CONFIG_PROC_SYSCTL
666 .procname
= "cad_pid",
668 .maxlen
= sizeof (int),
670 .proc_handler
= proc_do_cad_pid
,
674 .procname
= "threads-max",
675 .data
= &max_threads
,
676 .maxlen
= sizeof(int),
678 .proc_handler
= proc_dointvec
,
681 .procname
= "random",
683 .child
= random_table
,
686 .procname
= "usermodehelper",
688 .child
= usermodehelper_table
,
691 .procname
= "overflowuid",
692 .data
= &overflowuid
,
693 .maxlen
= sizeof(int),
695 .proc_handler
= proc_dointvec_minmax
,
696 .extra1
= &minolduid
,
697 .extra2
= &maxolduid
,
700 .procname
= "overflowgid",
701 .data
= &overflowgid
,
702 .maxlen
= sizeof(int),
704 .proc_handler
= proc_dointvec_minmax
,
705 .extra1
= &minolduid
,
706 .extra2
= &maxolduid
,
709 #ifdef CONFIG_MATHEMU
711 .procname
= "ieee_emulation_warnings",
712 .data
= &sysctl_ieee_emulation_warnings
,
713 .maxlen
= sizeof(int),
715 .proc_handler
= proc_dointvec
,
719 .procname
= "userprocess_debug",
720 .data
= &show_unhandled_signals
,
721 .maxlen
= sizeof(int),
723 .proc_handler
= proc_dointvec
,
727 .procname
= "pid_max",
729 .maxlen
= sizeof (int),
731 .proc_handler
= proc_dointvec_minmax
,
732 .extra1
= &pid_max_min
,
733 .extra2
= &pid_max_max
,
736 .procname
= "panic_on_oops",
737 .data
= &panic_on_oops
,
738 .maxlen
= sizeof(int),
740 .proc_handler
= proc_dointvec
,
742 #if defined CONFIG_PRINTK
744 .procname
= "printk",
745 .data
= &console_loglevel
,
746 .maxlen
= 4*sizeof(int),
748 .proc_handler
= proc_dointvec
,
751 .procname
= "printk_ratelimit",
752 .data
= &printk_ratelimit_state
.interval
,
753 .maxlen
= sizeof(int),
755 .proc_handler
= proc_dointvec_jiffies
,
758 .procname
= "printk_ratelimit_burst",
759 .data
= &printk_ratelimit_state
.burst
,
760 .maxlen
= sizeof(int),
762 .proc_handler
= proc_dointvec
,
765 .procname
= "printk_delay",
766 .data
= &printk_delay_msec
,
767 .maxlen
= sizeof(int),
769 .proc_handler
= proc_dointvec_minmax
,
771 .extra2
= &ten_thousand
,
774 .procname
= "dmesg_restrict",
775 .data
= &dmesg_restrict
,
776 .maxlen
= sizeof(int),
778 .proc_handler
= proc_dointvec_minmax_sysadmin
,
783 .procname
= "kptr_restrict",
784 .data
= &kptr_restrict
,
785 .maxlen
= sizeof(int),
787 .proc_handler
= proc_dointvec_minmax_sysadmin
,
793 .procname
= "ngroups_max",
794 .data
= &ngroups_max
,
795 .maxlen
= sizeof (int),
797 .proc_handler
= proc_dointvec
,
800 .procname
= "cap_last_cap",
801 .data
= (void *)&cap_last_cap
,
802 .maxlen
= sizeof(int),
804 .proc_handler
= proc_dointvec
,
806 #if defined(CONFIG_LOCKUP_DETECTOR)
808 .procname
= "watchdog",
809 .data
= &watchdog_user_enabled
,
810 .maxlen
= sizeof (int),
812 .proc_handler
= proc_dowatchdog
,
817 .procname
= "watchdog_thresh",
818 .data
= &watchdog_thresh
,
819 .maxlen
= sizeof(int),
821 .proc_handler
= proc_dowatchdog
,
826 .procname
= "softlockup_panic",
827 .data
= &softlockup_panic
,
828 .maxlen
= sizeof(int),
830 .proc_handler
= proc_dointvec_minmax
,
835 .procname
= "nmi_watchdog",
836 .data
= &watchdog_user_enabled
,
837 .maxlen
= sizeof (int),
839 .proc_handler
= proc_dowatchdog
,
844 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
846 .procname
= "unknown_nmi_panic",
847 .data
= &unknown_nmi_panic
,
848 .maxlen
= sizeof (int),
850 .proc_handler
= proc_dointvec
,
853 #if defined(CONFIG_X86)
855 .procname
= "panic_on_unrecovered_nmi",
856 .data
= &panic_on_unrecovered_nmi
,
857 .maxlen
= sizeof(int),
859 .proc_handler
= proc_dointvec
,
862 .procname
= "panic_on_io_nmi",
863 .data
= &panic_on_io_nmi
,
864 .maxlen
= sizeof(int),
866 .proc_handler
= proc_dointvec
,
868 #ifdef CONFIG_DEBUG_STACKOVERFLOW
870 .procname
= "panic_on_stackoverflow",
871 .data
= &sysctl_panic_on_stackoverflow
,
872 .maxlen
= sizeof(int),
874 .proc_handler
= proc_dointvec
,
878 .procname
= "bootloader_type",
879 .data
= &bootloader_type
,
880 .maxlen
= sizeof (int),
882 .proc_handler
= proc_dointvec
,
885 .procname
= "bootloader_version",
886 .data
= &bootloader_version
,
887 .maxlen
= sizeof (int),
889 .proc_handler
= proc_dointvec
,
892 .procname
= "kstack_depth_to_print",
893 .data
= &kstack_depth_to_print
,
894 .maxlen
= sizeof(int),
896 .proc_handler
= proc_dointvec
,
899 .procname
= "io_delay_type",
900 .data
= &io_delay_type
,
901 .maxlen
= sizeof(int),
903 .proc_handler
= proc_dointvec
,
906 #if defined(CONFIG_MMU)
908 .procname
= "randomize_va_space",
909 .data
= &randomize_va_space
,
910 .maxlen
= sizeof(int),
912 .proc_handler
= proc_dointvec
,
915 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
917 .procname
= "spin_retry",
919 .maxlen
= sizeof (int),
921 .proc_handler
= proc_dointvec
,
924 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
926 .procname
= "acpi_video_flags",
927 .data
= &acpi_realmode_flags
,
928 .maxlen
= sizeof (unsigned long),
930 .proc_handler
= proc_doulongvec_minmax
,
933 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
935 .procname
= "ignore-unaligned-usertrap",
936 .data
= &no_unaligned_warning
,
937 .maxlen
= sizeof (int),
939 .proc_handler
= proc_dointvec
,
944 .procname
= "unaligned-dump-stack",
945 .data
= &unaligned_dump_stack
,
946 .maxlen
= sizeof (int),
948 .proc_handler
= proc_dointvec
,
951 #ifdef CONFIG_DETECT_HUNG_TASK
953 .procname
= "hung_task_panic",
954 .data
= &sysctl_hung_task_panic
,
955 .maxlen
= sizeof(int),
957 .proc_handler
= proc_dointvec_minmax
,
962 .procname
= "hung_task_check_count",
963 .data
= &sysctl_hung_task_check_count
,
964 .maxlen
= sizeof(unsigned long),
966 .proc_handler
= proc_doulongvec_minmax
,
969 .procname
= "hung_task_timeout_secs",
970 .data
= &sysctl_hung_task_timeout_secs
,
971 .maxlen
= sizeof(unsigned long),
973 .proc_handler
= proc_dohung_task_timeout_secs
,
976 .procname
= "hung_task_warnings",
977 .data
= &sysctl_hung_task_warnings
,
978 .maxlen
= sizeof(unsigned long),
980 .proc_handler
= proc_doulongvec_minmax
,
985 .procname
= "compat-log",
987 .maxlen
= sizeof (int),
989 .proc_handler
= proc_dointvec
,
992 #ifdef CONFIG_RT_MUTEXES
994 .procname
= "max_lock_depth",
995 .data
= &max_lock_depth
,
996 .maxlen
= sizeof(int),
998 .proc_handler
= proc_dointvec
,
1002 .procname
= "poweroff_cmd",
1003 .data
= &poweroff_cmd
,
1004 .maxlen
= POWEROFF_CMD_PATH_LEN
,
1006 .proc_handler
= proc_dostring
,
1012 .child
= key_sysctls
,
1015 #ifdef CONFIG_RCU_TORTURE_TEST
1017 .procname
= "rcutorture_runnable",
1018 .data
= &rcutorture_runnable
,
1019 .maxlen
= sizeof(int),
1021 .proc_handler
= proc_dointvec
,
1024 #ifdef CONFIG_PERF_EVENTS
1026 * User-space scripts rely on the existence of this file
1027 * as a feature check for perf_events being enabled.
1029 * So it's an ABI, do not remove!
1032 .procname
= "perf_event_paranoid",
1033 .data
= &sysctl_perf_event_paranoid
,
1034 .maxlen
= sizeof(sysctl_perf_event_paranoid
),
1036 .proc_handler
= proc_dointvec
,
1039 .procname
= "perf_event_mlock_kb",
1040 .data
= &sysctl_perf_event_mlock
,
1041 .maxlen
= sizeof(sysctl_perf_event_mlock
),
1043 .proc_handler
= proc_dointvec
,
1046 .procname
= "perf_event_max_sample_rate",
1047 .data
= &sysctl_perf_event_sample_rate
,
1048 .maxlen
= sizeof(sysctl_perf_event_sample_rate
),
1050 .proc_handler
= perf_proc_update_handler
,
1054 .procname
= "perf_cpu_time_max_percent",
1055 .data
= &sysctl_perf_cpu_time_max_percent
,
1056 .maxlen
= sizeof(sysctl_perf_cpu_time_max_percent
),
1058 .proc_handler
= perf_cpu_time_max_percent_handler
,
1060 .extra2
= &one_hundred
,
1063 #ifdef CONFIG_KMEMCHECK
1065 .procname
= "kmemcheck",
1066 .data
= &kmemcheck_enabled
,
1067 .maxlen
= sizeof(int),
1069 .proc_handler
= proc_dointvec
,
1074 .procname
= "blk_iopoll",
1075 .data
= &blk_iopoll_enabled
,
1076 .maxlen
= sizeof(int),
1078 .proc_handler
= proc_dointvec
,
1084 static struct ctl_table vm_table
[] = {
1086 .procname
= "overcommit_memory",
1087 .data
= &sysctl_overcommit_memory
,
1088 .maxlen
= sizeof(sysctl_overcommit_memory
),
1090 .proc_handler
= proc_dointvec_minmax
,
1095 .procname
= "panic_on_oom",
1096 .data
= &sysctl_panic_on_oom
,
1097 .maxlen
= sizeof(sysctl_panic_on_oom
),
1099 .proc_handler
= proc_dointvec_minmax
,
1104 .procname
= "oom_kill_allocating_task",
1105 .data
= &sysctl_oom_kill_allocating_task
,
1106 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
1108 .proc_handler
= proc_dointvec
,
1111 .procname
= "oom_dump_tasks",
1112 .data
= &sysctl_oom_dump_tasks
,
1113 .maxlen
= sizeof(sysctl_oom_dump_tasks
),
1115 .proc_handler
= proc_dointvec
,
1118 .procname
= "overcommit_ratio",
1119 .data
= &sysctl_overcommit_ratio
,
1120 .maxlen
= sizeof(sysctl_overcommit_ratio
),
1122 .proc_handler
= proc_dointvec
,
1125 .procname
= "page-cluster",
1126 .data
= &page_cluster
,
1127 .maxlen
= sizeof(int),
1129 .proc_handler
= proc_dointvec_minmax
,
1133 .procname
= "dirty_background_ratio",
1134 .data
= &dirty_background_ratio
,
1135 .maxlen
= sizeof(dirty_background_ratio
),
1137 .proc_handler
= dirty_background_ratio_handler
,
1139 .extra2
= &one_hundred
,
1142 .procname
= "dirty_background_bytes",
1143 .data
= &dirty_background_bytes
,
1144 .maxlen
= sizeof(dirty_background_bytes
),
1146 .proc_handler
= dirty_background_bytes_handler
,
1150 .procname
= "dirty_ratio",
1151 .data
= &vm_dirty_ratio
,
1152 .maxlen
= sizeof(vm_dirty_ratio
),
1154 .proc_handler
= dirty_ratio_handler
,
1156 .extra2
= &one_hundred
,
1159 .procname
= "dirty_bytes",
1160 .data
= &vm_dirty_bytes
,
1161 .maxlen
= sizeof(vm_dirty_bytes
),
1163 .proc_handler
= dirty_bytes_handler
,
1164 .extra1
= &dirty_bytes_min
,
1167 .procname
= "dirty_writeback_centisecs",
1168 .data
= &dirty_writeback_interval
,
1169 .maxlen
= sizeof(dirty_writeback_interval
),
1171 .proc_handler
= dirty_writeback_centisecs_handler
,
1174 .procname
= "dirty_expire_centisecs",
1175 .data
= &dirty_expire_interval
,
1176 .maxlen
= sizeof(dirty_expire_interval
),
1178 .proc_handler
= proc_dointvec_minmax
,
1182 .procname
= "nr_pdflush_threads",
1183 .mode
= 0444 /* read-only */,
1184 .proc_handler
= pdflush_proc_obsolete
,
1187 .procname
= "swappiness",
1188 .data
= &vm_swappiness
,
1189 .maxlen
= sizeof(vm_swappiness
),
1191 .proc_handler
= proc_dointvec_minmax
,
1193 .extra2
= &one_hundred
,
1195 #ifdef CONFIG_HUGETLB_PAGE
1197 .procname
= "nr_hugepages",
1199 .maxlen
= sizeof(unsigned long),
1201 .proc_handler
= hugetlb_sysctl_handler
,
1202 .extra1
= (void *)&hugetlb_zero
,
1203 .extra2
= (void *)&hugetlb_infinity
,
1207 .procname
= "nr_hugepages_mempolicy",
1209 .maxlen
= sizeof(unsigned long),
1211 .proc_handler
= &hugetlb_mempolicy_sysctl_handler
,
1212 .extra1
= (void *)&hugetlb_zero
,
1213 .extra2
= (void *)&hugetlb_infinity
,
1217 .procname
= "hugetlb_shm_group",
1218 .data
= &sysctl_hugetlb_shm_group
,
1219 .maxlen
= sizeof(gid_t
),
1221 .proc_handler
= proc_dointvec
,
1224 .procname
= "hugepages_treat_as_movable",
1225 .data
= &hugepages_treat_as_movable
,
1226 .maxlen
= sizeof(int),
1228 .proc_handler
= proc_dointvec
,
1231 .procname
= "nr_overcommit_hugepages",
1233 .maxlen
= sizeof(unsigned long),
1235 .proc_handler
= hugetlb_overcommit_handler
,
1236 .extra1
= (void *)&hugetlb_zero
,
1237 .extra2
= (void *)&hugetlb_infinity
,
1241 .procname
= "lowmem_reserve_ratio",
1242 .data
= &sysctl_lowmem_reserve_ratio
,
1243 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
1245 .proc_handler
= lowmem_reserve_ratio_sysctl_handler
,
1248 .procname
= "drop_caches",
1249 .data
= &sysctl_drop_caches
,
1250 .maxlen
= sizeof(int),
1252 .proc_handler
= drop_caches_sysctl_handler
,
1256 #ifdef CONFIG_COMPACTION
1258 .procname
= "compact_memory",
1259 .data
= &sysctl_compact_memory
,
1260 .maxlen
= sizeof(int),
1262 .proc_handler
= sysctl_compaction_handler
,
1265 .procname
= "extfrag_threshold",
1266 .data
= &sysctl_extfrag_threshold
,
1267 .maxlen
= sizeof(int),
1269 .proc_handler
= sysctl_extfrag_handler
,
1270 .extra1
= &min_extfrag_threshold
,
1271 .extra2
= &max_extfrag_threshold
,
1274 #endif /* CONFIG_COMPACTION */
1276 .procname
= "min_free_kbytes",
1277 .data
= &min_free_kbytes
,
1278 .maxlen
= sizeof(min_free_kbytes
),
1280 .proc_handler
= min_free_kbytes_sysctl_handler
,
1284 .procname
= "percpu_pagelist_fraction",
1285 .data
= &percpu_pagelist_fraction
,
1286 .maxlen
= sizeof(percpu_pagelist_fraction
),
1288 .proc_handler
= percpu_pagelist_fraction_sysctl_handler
,
1293 .procname
= "max_map_count",
1294 .data
= &sysctl_max_map_count
,
1295 .maxlen
= sizeof(sysctl_max_map_count
),
1297 .proc_handler
= proc_dointvec_minmax
,
1302 .procname
= "nr_trim_pages",
1303 .data
= &sysctl_nr_trim_pages
,
1304 .maxlen
= sizeof(sysctl_nr_trim_pages
),
1306 .proc_handler
= proc_dointvec_minmax
,
1311 .procname
= "laptop_mode",
1312 .data
= &laptop_mode
,
1313 .maxlen
= sizeof(laptop_mode
),
1315 .proc_handler
= proc_dointvec_jiffies
,
1318 .procname
= "block_dump",
1319 .data
= &block_dump
,
1320 .maxlen
= sizeof(block_dump
),
1322 .proc_handler
= proc_dointvec
,
1326 .procname
= "vfs_cache_pressure",
1327 .data
= &sysctl_vfs_cache_pressure
,
1328 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
1330 .proc_handler
= proc_dointvec
,
1333 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1335 .procname
= "legacy_va_layout",
1336 .data
= &sysctl_legacy_va_layout
,
1337 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1339 .proc_handler
= proc_dointvec
,
1345 .procname
= "zone_reclaim_mode",
1346 .data
= &zone_reclaim_mode
,
1347 .maxlen
= sizeof(zone_reclaim_mode
),
1349 .proc_handler
= proc_dointvec
,
1353 .procname
= "min_unmapped_ratio",
1354 .data
= &sysctl_min_unmapped_ratio
,
1355 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1357 .proc_handler
= sysctl_min_unmapped_ratio_sysctl_handler
,
1359 .extra2
= &one_hundred
,
1362 .procname
= "min_slab_ratio",
1363 .data
= &sysctl_min_slab_ratio
,
1364 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1366 .proc_handler
= sysctl_min_slab_ratio_sysctl_handler
,
1368 .extra2
= &one_hundred
,
1373 .procname
= "stat_interval",
1374 .data
= &sysctl_stat_interval
,
1375 .maxlen
= sizeof(sysctl_stat_interval
),
1377 .proc_handler
= proc_dointvec_jiffies
,
1382 .procname
= "mmap_min_addr",
1383 .data
= &dac_mmap_min_addr
,
1384 .maxlen
= sizeof(unsigned long),
1386 .proc_handler
= mmap_min_addr_handler
,
1391 .procname
= "numa_zonelist_order",
1392 .data
= &numa_zonelist_order
,
1393 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1395 .proc_handler
= numa_zonelist_order_handler
,
1398 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1399 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1401 .procname
= "vdso_enabled",
1402 .data
= &vdso_enabled
,
1403 .maxlen
= sizeof(vdso_enabled
),
1405 .proc_handler
= proc_dointvec
,
1409 #ifdef CONFIG_HIGHMEM
1411 .procname
= "highmem_is_dirtyable",
1412 .data
= &vm_highmem_is_dirtyable
,
1413 .maxlen
= sizeof(vm_highmem_is_dirtyable
),
1415 .proc_handler
= proc_dointvec_minmax
,
1421 .procname
= "scan_unevictable_pages",
1422 .data
= &scan_unevictable_pages
,
1423 .maxlen
= sizeof(scan_unevictable_pages
),
1425 .proc_handler
= scan_unevictable_handler
,
1427 #ifdef CONFIG_MEMORY_FAILURE
1429 .procname
= "memory_failure_early_kill",
1430 .data
= &sysctl_memory_failure_early_kill
,
1431 .maxlen
= sizeof(sysctl_memory_failure_early_kill
),
1433 .proc_handler
= proc_dointvec_minmax
,
1438 .procname
= "memory_failure_recovery",
1439 .data
= &sysctl_memory_failure_recovery
,
1440 .maxlen
= sizeof(sysctl_memory_failure_recovery
),
1442 .proc_handler
= proc_dointvec_minmax
,
1448 .procname
= "user_reserve_kbytes",
1449 .data
= &sysctl_user_reserve_kbytes
,
1450 .maxlen
= sizeof(sysctl_user_reserve_kbytes
),
1452 .proc_handler
= proc_doulongvec_minmax
,
1455 .procname
= "admin_reserve_kbytes",
1456 .data
= &sysctl_admin_reserve_kbytes
,
1457 .maxlen
= sizeof(sysctl_admin_reserve_kbytes
),
1459 .proc_handler
= proc_doulongvec_minmax
,
1464 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1465 static struct ctl_table binfmt_misc_table
[] = {
1470 static struct ctl_table fs_table
[] = {
1472 .procname
= "inode-nr",
1473 .data
= &inodes_stat
,
1474 .maxlen
= 2*sizeof(long),
1476 .proc_handler
= proc_nr_inodes
,
1479 .procname
= "inode-state",
1480 .data
= &inodes_stat
,
1481 .maxlen
= 7*sizeof(long),
1483 .proc_handler
= proc_nr_inodes
,
1486 .procname
= "file-nr",
1487 .data
= &files_stat
,
1488 .maxlen
= sizeof(files_stat
),
1490 .proc_handler
= proc_nr_files
,
1493 .procname
= "file-max",
1494 .data
= &files_stat
.max_files
,
1495 .maxlen
= sizeof(files_stat
.max_files
),
1497 .proc_handler
= proc_doulongvec_minmax
,
1500 .procname
= "nr_open",
1501 .data
= &sysctl_nr_open
,
1502 .maxlen
= sizeof(int),
1504 .proc_handler
= proc_dointvec_minmax
,
1505 .extra1
= &sysctl_nr_open_min
,
1506 .extra2
= &sysctl_nr_open_max
,
1509 .procname
= "dentry-state",
1510 .data
= &dentry_stat
,
1511 .maxlen
= 6*sizeof(long),
1513 .proc_handler
= proc_nr_dentry
,
1516 .procname
= "overflowuid",
1517 .data
= &fs_overflowuid
,
1518 .maxlen
= sizeof(int),
1520 .proc_handler
= proc_dointvec_minmax
,
1521 .extra1
= &minolduid
,
1522 .extra2
= &maxolduid
,
1525 .procname
= "overflowgid",
1526 .data
= &fs_overflowgid
,
1527 .maxlen
= sizeof(int),
1529 .proc_handler
= proc_dointvec_minmax
,
1530 .extra1
= &minolduid
,
1531 .extra2
= &maxolduid
,
1533 #ifdef CONFIG_FILE_LOCKING
1535 .procname
= "leases-enable",
1536 .data
= &leases_enable
,
1537 .maxlen
= sizeof(int),
1539 .proc_handler
= proc_dointvec
,
1542 #ifdef CONFIG_DNOTIFY
1544 .procname
= "dir-notify-enable",
1545 .data
= &dir_notify_enable
,
1546 .maxlen
= sizeof(int),
1548 .proc_handler
= proc_dointvec
,
1552 #ifdef CONFIG_FILE_LOCKING
1554 .procname
= "lease-break-time",
1555 .data
= &lease_break_time
,
1556 .maxlen
= sizeof(int),
1558 .proc_handler
= proc_dointvec
,
1563 .procname
= "aio-nr",
1565 .maxlen
= sizeof(aio_nr
),
1567 .proc_handler
= proc_doulongvec_minmax
,
1570 .procname
= "aio-max-nr",
1571 .data
= &aio_max_nr
,
1572 .maxlen
= sizeof(aio_max_nr
),
1574 .proc_handler
= proc_doulongvec_minmax
,
1576 #endif /* CONFIG_AIO */
1577 #ifdef CONFIG_INOTIFY_USER
1579 .procname
= "inotify",
1581 .child
= inotify_table
,
1586 .procname
= "epoll",
1588 .child
= epoll_table
,
1593 .procname
= "protected_symlinks",
1594 .data
= &sysctl_protected_symlinks
,
1595 .maxlen
= sizeof(int),
1597 .proc_handler
= proc_dointvec_minmax
,
1602 .procname
= "protected_hardlinks",
1603 .data
= &sysctl_protected_hardlinks
,
1604 .maxlen
= sizeof(int),
1606 .proc_handler
= proc_dointvec_minmax
,
1611 .procname
= "suid_dumpable",
1612 .data
= &suid_dumpable
,
1613 .maxlen
= sizeof(int),
1615 .proc_handler
= proc_dointvec_minmax_coredump
,
1619 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1621 .procname
= "binfmt_misc",
1623 .child
= binfmt_misc_table
,
1627 .procname
= "pipe-max-size",
1628 .data
= &pipe_max_size
,
1629 .maxlen
= sizeof(int),
1631 .proc_handler
= &pipe_proc_fn
,
1632 .extra1
= &pipe_min_size
,
1637 static struct ctl_table debug_table
[] = {
1638 #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
1640 .procname
= "exception-trace",
1641 .data
= &show_unhandled_signals
,
1642 .maxlen
= sizeof(int),
1644 .proc_handler
= proc_dointvec
1647 #if defined(CONFIG_OPTPROBES)
1649 .procname
= "kprobes-optimization",
1650 .data
= &sysctl_kprobes_optimization
,
1651 .maxlen
= sizeof(int),
1653 .proc_handler
= proc_kprobes_optimization_handler
,
1661 static struct ctl_table dev_table
[] = {
1665 int __init
sysctl_init(void)
1667 struct ctl_table_header
*hdr
;
1669 hdr
= register_sysctl_table(sysctl_base_table
);
1670 kmemleak_not_leak(hdr
);
1674 #endif /* CONFIG_SYSCTL */
1680 #ifdef CONFIG_PROC_SYSCTL
1682 static int _proc_do_string(void* data
, int maxlen
, int write
,
1683 void __user
*buffer
,
1684 size_t *lenp
, loff_t
*ppos
)
1690 if (!data
|| !maxlen
|| !*lenp
) {
1698 while (len
< *lenp
) {
1699 if (get_user(c
, p
++))
1701 if (c
== 0 || c
== '\n')
1707 if(copy_from_user(data
, buffer
, len
))
1709 ((char *) data
)[len
] = 0;
1727 if(copy_to_user(buffer
, data
, len
))
1730 if(put_user('\n', ((char __user
*) buffer
) + len
))
1741 * proc_dostring - read a string sysctl
1742 * @table: the sysctl table
1743 * @write: %TRUE if this is a write to the sysctl file
1744 * @buffer: the user buffer
1745 * @lenp: the size of the user buffer
1746 * @ppos: file position
1748 * Reads/writes a string from/to the user buffer. If the kernel
1749 * buffer provided is not large enough to hold the string, the
1750 * string is truncated. The copied string is %NULL-terminated.
1751 * If the string is being read by the user process, it is copied
1752 * and a newline '\n' is added. It is truncated if the buffer is
1755 * Returns 0 on success.
1757 int proc_dostring(struct ctl_table
*table
, int write
,
1758 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1760 return _proc_do_string(table
->data
, table
->maxlen
, write
,
1761 buffer
, lenp
, ppos
);
1764 static size_t proc_skip_spaces(char **buf
)
1767 char *tmp
= skip_spaces(*buf
);
1773 static void proc_skip_char(char **buf
, size_t *size
, const char v
)
1783 #define TMPBUFLEN 22
1785 * proc_get_long - reads an ASCII formatted integer from a user buffer
1787 * @buf: a kernel buffer
1788 * @size: size of the kernel buffer
1789 * @val: this is where the number will be stored
1790 * @neg: set to %TRUE if number is negative
1791 * @perm_tr: a vector which contains the allowed trailers
1792 * @perm_tr_len: size of the perm_tr vector
1793 * @tr: pointer to store the trailer character
1795 * In case of success %0 is returned and @buf and @size are updated with
1796 * the amount of bytes read. If @tr is non-NULL and a trailing
1797 * character exists (size is non-zero after returning from this
1798 * function), @tr is updated with the trailing character.
1800 static int proc_get_long(char **buf
, size_t *size
,
1801 unsigned long *val
, bool *neg
,
1802 const char *perm_tr
, unsigned perm_tr_len
, char *tr
)
1805 char *p
, tmp
[TMPBUFLEN
];
1811 if (len
> TMPBUFLEN
- 1)
1812 len
= TMPBUFLEN
- 1;
1814 memcpy(tmp
, *buf
, len
);
1818 if (*p
== '-' && *size
> 1) {
1826 *val
= simple_strtoul(p
, &p
, 0);
1830 /* We don't know if the next char is whitespace thus we may accept
1831 * invalid integers (e.g. 1234...a) or two integers instead of one
1832 * (e.g. 123...1). So lets not allow such large numbers. */
1833 if (len
== TMPBUFLEN
- 1)
1836 if (len
< *size
&& perm_tr_len
&& !memchr(perm_tr
, *p
, perm_tr_len
))
1839 if (tr
&& (len
< *size
))
1849 * proc_put_long - converts an integer to a decimal ASCII formatted string
1851 * @buf: the user buffer
1852 * @size: the size of the user buffer
1853 * @val: the integer to be converted
1854 * @neg: sign of the number, %TRUE for negative
1856 * In case of success %0 is returned and @buf and @size are updated with
1857 * the amount of bytes written.
1859 static int proc_put_long(void __user
**buf
, size_t *size
, unsigned long val
,
1863 char tmp
[TMPBUFLEN
], *p
= tmp
;
1865 sprintf(p
, "%s%lu", neg
? "-" : "", val
);
1869 if (copy_to_user(*buf
, tmp
, len
))
1877 static int proc_put_char(void __user
**buf
, size_t *size
, char c
)
1880 char __user
**buffer
= (char __user
**)buf
;
1881 if (put_user(c
, *buffer
))
1883 (*size
)--, (*buffer
)++;
1889 static int do_proc_dointvec_conv(bool *negp
, unsigned long *lvalp
,
1891 int write
, void *data
)
1894 *valp
= *negp
? -*lvalp
: *lvalp
;
1899 *lvalp
= (unsigned long)-val
;
1902 *lvalp
= (unsigned long)val
;
1908 static const char proc_wspace_sep
[] = { ' ', '\t', '\n' };
1910 static int __do_proc_dointvec(void *tbl_data
, struct ctl_table
*table
,
1911 int write
, void __user
*buffer
,
1912 size_t *lenp
, loff_t
*ppos
,
1913 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
1914 int write
, void *data
),
1917 int *i
, vleft
, first
= 1, err
= 0;
1918 unsigned long page
= 0;
1922 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
1927 i
= (int *) tbl_data
;
1928 vleft
= table
->maxlen
/ sizeof(*i
);
1932 conv
= do_proc_dointvec_conv
;
1935 if (left
> PAGE_SIZE
- 1)
1936 left
= PAGE_SIZE
- 1;
1937 page
= __get_free_page(GFP_TEMPORARY
);
1938 kbuf
= (char *) page
;
1941 if (copy_from_user(kbuf
, buffer
, left
)) {
1948 for (; left
&& vleft
--; i
++, first
=0) {
1953 left
-= proc_skip_spaces(&kbuf
);
1957 err
= proc_get_long(&kbuf
, &left
, &lval
, &neg
,
1959 sizeof(proc_wspace_sep
), NULL
);
1962 if (conv(&neg
, &lval
, i
, 1, data
)) {
1967 if (conv(&neg
, &lval
, i
, 0, data
)) {
1972 err
= proc_put_char(&buffer
, &left
, '\t');
1975 err
= proc_put_long(&buffer
, &left
, lval
, neg
);
1981 if (!write
&& !first
&& left
&& !err
)
1982 err
= proc_put_char(&buffer
, &left
, '\n');
1983 if (write
&& !err
&& left
)
1984 left
-= proc_skip_spaces(&kbuf
);
1989 return err
? : -EINVAL
;
1996 static int do_proc_dointvec(struct ctl_table
*table
, int write
,
1997 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1998 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
1999 int write
, void *data
),
2002 return __do_proc_dointvec(table
->data
, table
, write
,
2003 buffer
, lenp
, ppos
, conv
, data
);
2007 * proc_dointvec - read a vector of integers
2008 * @table: the sysctl table
2009 * @write: %TRUE if this is a write to the sysctl file
2010 * @buffer: the user buffer
2011 * @lenp: the size of the user buffer
2012 * @ppos: file position
2014 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2015 * values from/to the user buffer, treated as an ASCII string.
2017 * Returns 0 on success.
2019 int proc_dointvec(struct ctl_table
*table
, int write
,
2020 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2022 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2027 * Taint values can only be increased
2028 * This means we can safely use a temporary.
2030 static int proc_taint(struct ctl_table
*table
, int write
,
2031 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2034 unsigned long tmptaint
= get_taint();
2037 if (write
&& !capable(CAP_SYS_ADMIN
))
2042 err
= proc_doulongvec_minmax(&t
, write
, buffer
, lenp
, ppos
);
2048 * Poor man's atomic or. Not worth adding a primitive
2049 * to everyone's atomic.h for this
2052 for (i
= 0; i
< BITS_PER_LONG
&& tmptaint
>> i
; i
++) {
2053 if ((tmptaint
>> i
) & 1)
2054 add_taint(i
, LOCKDEP_STILL_OK
);
2061 #ifdef CONFIG_PRINTK
2062 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
2063 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2065 if (write
&& !capable(CAP_SYS_ADMIN
))
2068 return proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2072 struct do_proc_dointvec_minmax_conv_param
{
2077 static int do_proc_dointvec_minmax_conv(bool *negp
, unsigned long *lvalp
,
2079 int write
, void *data
)
2081 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
2083 int val
= *negp
? -*lvalp
: *lvalp
;
2084 if ((param
->min
&& *param
->min
> val
) ||
2085 (param
->max
&& *param
->max
< val
))
2092 *lvalp
= (unsigned long)-val
;
2095 *lvalp
= (unsigned long)val
;
2102 * proc_dointvec_minmax - read a vector of integers with min/max values
2103 * @table: the sysctl table
2104 * @write: %TRUE if this is a write to the sysctl file
2105 * @buffer: the user buffer
2106 * @lenp: the size of the user buffer
2107 * @ppos: file position
2109 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2110 * values from/to the user buffer, treated as an ASCII string.
2112 * This routine will ensure the values are within the range specified by
2113 * table->extra1 (min) and table->extra2 (max).
2115 * Returns 0 on success.
2117 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2118 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2120 struct do_proc_dointvec_minmax_conv_param param
= {
2121 .min
= (int *) table
->extra1
,
2122 .max
= (int *) table
->extra2
,
2124 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2125 do_proc_dointvec_minmax_conv
, ¶m
);
2128 static void validate_coredump_safety(void)
2130 #ifdef CONFIG_COREDUMP
2131 if (suid_dumpable
== SUID_DUMP_ROOT
&&
2132 core_pattern
[0] != '/' && core_pattern
[0] != '|') {
2133 printk(KERN_WARNING
"Unsafe core_pattern used with "\
2134 "suid_dumpable=2. Pipe handler or fully qualified "\
2135 "core dump path required.\n");
2140 static int proc_dointvec_minmax_coredump(struct ctl_table
*table
, int write
,
2141 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2143 int error
= proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
2145 validate_coredump_safety();
2149 #ifdef CONFIG_COREDUMP
2150 static int proc_dostring_coredump(struct ctl_table
*table
, int write
,
2151 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2153 int error
= proc_dostring(table
, write
, buffer
, lenp
, ppos
);
2155 validate_coredump_safety();
2160 static int __do_proc_doulongvec_minmax(void *data
, struct ctl_table
*table
, int write
,
2161 void __user
*buffer
,
2162 size_t *lenp
, loff_t
*ppos
,
2163 unsigned long convmul
,
2164 unsigned long convdiv
)
2166 unsigned long *i
, *min
, *max
;
2167 int vleft
, first
= 1, err
= 0;
2168 unsigned long page
= 0;
2172 if (!data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2177 i
= (unsigned long *) data
;
2178 min
= (unsigned long *) table
->extra1
;
2179 max
= (unsigned long *) table
->extra2
;
2180 vleft
= table
->maxlen
/ sizeof(unsigned long);
2184 if (left
> PAGE_SIZE
- 1)
2185 left
= PAGE_SIZE
- 1;
2186 page
= __get_free_page(GFP_TEMPORARY
);
2187 kbuf
= (char *) page
;
2190 if (copy_from_user(kbuf
, buffer
, left
)) {
2197 for (; left
&& vleft
--; i
++, first
= 0) {
2203 left
-= proc_skip_spaces(&kbuf
);
2205 err
= proc_get_long(&kbuf
, &left
, &val
, &neg
,
2207 sizeof(proc_wspace_sep
), NULL
);
2212 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2216 val
= convdiv
* (*i
) / convmul
;
2218 err
= proc_put_char(&buffer
, &left
, '\t');
2219 err
= proc_put_long(&buffer
, &left
, val
, false);
2225 if (!write
&& !first
&& left
&& !err
)
2226 err
= proc_put_char(&buffer
, &left
, '\n');
2228 left
-= proc_skip_spaces(&kbuf
);
2233 return err
? : -EINVAL
;
2240 static int do_proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2241 void __user
*buffer
,
2242 size_t *lenp
, loff_t
*ppos
,
2243 unsigned long convmul
,
2244 unsigned long convdiv
)
2246 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2247 buffer
, lenp
, ppos
, convmul
, convdiv
);
2251 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2252 * @table: the sysctl table
2253 * @write: %TRUE if this is a write to the sysctl file
2254 * @buffer: the user buffer
2255 * @lenp: the size of the user buffer
2256 * @ppos: file position
2258 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2259 * values from/to the user buffer, treated as an ASCII string.
2261 * This routine will ensure the values are within the range specified by
2262 * table->extra1 (min) and table->extra2 (max).
2264 * Returns 0 on success.
2266 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2267 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2269 return do_proc_doulongvec_minmax(table
, write
, buffer
, lenp
, ppos
, 1l, 1l);
2273 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2274 * @table: the sysctl table
2275 * @write: %TRUE if this is a write to the sysctl file
2276 * @buffer: the user buffer
2277 * @lenp: the size of the user buffer
2278 * @ppos: file position
2280 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2281 * values from/to the user buffer, treated as an ASCII string. The values
2282 * are treated as milliseconds, and converted to jiffies when they are stored.
2284 * This routine will ensure the values are within the range specified by
2285 * table->extra1 (min) and table->extra2 (max).
2287 * Returns 0 on success.
2289 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2290 void __user
*buffer
,
2291 size_t *lenp
, loff_t
*ppos
)
2293 return do_proc_doulongvec_minmax(table
, write
, buffer
,
2294 lenp
, ppos
, HZ
, 1000l);
2298 static int do_proc_dointvec_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2300 int write
, void *data
)
2303 if (*lvalp
> LONG_MAX
/ HZ
)
2305 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2311 lval
= (unsigned long)-val
;
2314 lval
= (unsigned long)val
;
2321 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2323 int write
, void *data
)
2326 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2328 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2334 lval
= (unsigned long)-val
;
2337 lval
= (unsigned long)val
;
2339 *lvalp
= jiffies_to_clock_t(lval
);
2344 static int do_proc_dointvec_ms_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2346 int write
, void *data
)
2349 unsigned long jif
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2359 lval
= (unsigned long)-val
;
2362 lval
= (unsigned long)val
;
2364 *lvalp
= jiffies_to_msecs(lval
);
2370 * proc_dointvec_jiffies - read a vector of integers as seconds
2371 * @table: the sysctl table
2372 * @write: %TRUE if this is a write to the sysctl file
2373 * @buffer: the user buffer
2374 * @lenp: the size of the user buffer
2375 * @ppos: file position
2377 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2378 * values from/to the user buffer, treated as an ASCII string.
2379 * The values read are assumed to be in seconds, and are converted into
2382 * Returns 0 on success.
2384 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2385 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2387 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2388 do_proc_dointvec_jiffies_conv
,NULL
);
2392 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2393 * @table: the sysctl table
2394 * @write: %TRUE if this is a write to the sysctl file
2395 * @buffer: the user buffer
2396 * @lenp: the size of the user buffer
2397 * @ppos: pointer to the file position
2399 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2400 * values from/to the user buffer, treated as an ASCII string.
2401 * The values read are assumed to be in 1/USER_HZ seconds, and
2402 * are converted into jiffies.
2404 * Returns 0 on success.
2406 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2407 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2409 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2410 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2414 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2415 * @table: the sysctl table
2416 * @write: %TRUE if this is a write to the sysctl file
2417 * @buffer: the user buffer
2418 * @lenp: the size of the user buffer
2419 * @ppos: file position
2420 * @ppos: the current position in the file
2422 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2423 * values from/to the user buffer, treated as an ASCII string.
2424 * The values read are assumed to be in 1/1000 seconds, and
2425 * are converted into jiffies.
2427 * Returns 0 on success.
2429 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
2430 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2432 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2433 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2436 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
2437 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2439 struct pid
*new_pid
;
2443 tmp
= pid_vnr(cad_pid
);
2445 r
= __do_proc_dointvec(&tmp
, table
, write
, buffer
,
2446 lenp
, ppos
, NULL
, NULL
);
2450 new_pid
= find_get_pid(tmp
);
2454 put_pid(xchg(&cad_pid
, new_pid
));
2459 * proc_do_large_bitmap - read/write from/to a large bitmap
2460 * @table: the sysctl table
2461 * @write: %TRUE if this is a write to the sysctl file
2462 * @buffer: the user buffer
2463 * @lenp: the size of the user buffer
2464 * @ppos: file position
2466 * The bitmap is stored at table->data and the bitmap length (in bits)
2469 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2470 * large bitmaps may be represented in a compact manner. Writing into
2471 * the file will clear the bitmap then update it with the given input.
2473 * Returns 0 on success.
2475 int proc_do_large_bitmap(struct ctl_table
*table
, int write
,
2476 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2480 size_t left
= *lenp
;
2481 unsigned long bitmap_len
= table
->maxlen
;
2482 unsigned long *bitmap
= (unsigned long *) table
->data
;
2483 unsigned long *tmp_bitmap
= NULL
;
2484 char tr_a
[] = { '-', ',', '\n' }, tr_b
[] = { ',', '\n', 0 }, c
;
2486 if (!bitmap_len
|| !left
|| (*ppos
&& !write
)) {
2492 unsigned long page
= 0;
2495 if (left
> PAGE_SIZE
- 1)
2496 left
= PAGE_SIZE
- 1;
2498 page
= __get_free_page(GFP_TEMPORARY
);
2499 kbuf
= (char *) page
;
2502 if (copy_from_user(kbuf
, buffer
, left
)) {
2508 tmp_bitmap
= kzalloc(BITS_TO_LONGS(bitmap_len
) * sizeof(unsigned long),
2514 proc_skip_char(&kbuf
, &left
, '\n');
2515 while (!err
&& left
) {
2516 unsigned long val_a
, val_b
;
2519 err
= proc_get_long(&kbuf
, &left
, &val_a
, &neg
, tr_a
,
2523 if (val_a
>= bitmap_len
|| neg
) {
2535 err
= proc_get_long(&kbuf
, &left
, &val_b
,
2536 &neg
, tr_b
, sizeof(tr_b
),
2540 if (val_b
>= bitmap_len
|| neg
||
2551 bitmap_set(tmp_bitmap
, val_a
, val_b
- val_a
+ 1);
2553 proc_skip_char(&kbuf
, &left
, '\n');
2557 unsigned long bit_a
, bit_b
= 0;
2560 bit_a
= find_next_bit(bitmap
, bitmap_len
, bit_b
);
2561 if (bit_a
>= bitmap_len
)
2563 bit_b
= find_next_zero_bit(bitmap
, bitmap_len
,
2567 err
= proc_put_char(&buffer
, &left
, ',');
2571 err
= proc_put_long(&buffer
, &left
, bit_a
, false);
2574 if (bit_a
!= bit_b
) {
2575 err
= proc_put_char(&buffer
, &left
, '-');
2578 err
= proc_put_long(&buffer
, &left
, bit_b
, false);
2586 err
= proc_put_char(&buffer
, &left
, '\n');
2592 bitmap_or(bitmap
, bitmap
, tmp_bitmap
, bitmap_len
);
2594 bitmap_copy(bitmap
, tmp_bitmap
, bitmap_len
);
2606 #else /* CONFIG_PROC_SYSCTL */
2608 int proc_dostring(struct ctl_table
*table
, int write
,
2609 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2614 int proc_dointvec(struct ctl_table
*table
, int write
,
2615 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2620 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2621 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2626 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2627 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2632 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2633 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2638 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
2639 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2644 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2645 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2650 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2651 void __user
*buffer
,
2652 size_t *lenp
, loff_t
*ppos
)
2658 #endif /* CONFIG_PROC_SYSCTL */
2661 * No sense putting this after each symbol definition, twice,
2662 * exception granted :-)
2664 EXPORT_SYMBOL(proc_dointvec
);
2665 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2666 EXPORT_SYMBOL(proc_dointvec_minmax
);
2667 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2668 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2669 EXPORT_SYMBOL(proc_dostring
);
2670 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2671 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);