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>
34 #include <linux/init.h>
35 #include <linux/kernel.h>
36 #include <linux/kobject.h>
37 #include <linux/net.h>
38 #include <linux/sysrq.h>
39 #include <linux/highuid.h>
40 #include <linux/writeback.h>
41 #include <linux/ratelimit.h>
42 #include <linux/compaction.h>
43 #include <linux/hugetlb.h>
44 #include <linux/initrd.h>
45 #include <linux/key.h>
46 #include <linux/times.h>
47 #include <linux/limits.h>
48 #include <linux/dcache.h>
49 #include <linux/dnotify.h>
50 #include <linux/syscalls.h>
51 #include <linux/vmstat.h>
52 #include <linux/nfs_fs.h>
53 #include <linux/acpi.h>
54 #include <linux/reboot.h>
55 #include <linux/ftrace.h>
56 #include <linux/perf_event.h>
57 #include <linux/kprobes.h>
58 #include <linux/pipe_fs_i.h>
59 #include <linux/oom.h>
60 #include <linux/kmod.h>
61 #include <linux/capability.h>
62 #include <linux/binfmts.h>
64 #include <asm/uaccess.h>
65 #include <asm/processor.h>
69 #include <asm/stacktrace.h>
73 #include <asm/setup.h>
75 #ifdef CONFIG_BSD_PROCESS_ACCT
76 #include <linux/acct.h>
78 #ifdef CONFIG_RT_MUTEXES
79 #include <linux/rtmutex.h>
81 #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
82 #include <linux/lockdep.h>
84 #ifdef CONFIG_CHR_DEV_SG
88 #ifdef CONFIG_LOCKUP_DETECTOR
89 #include <linux/nmi.h>
93 #if defined(CONFIG_SYSCTL)
95 /* External variables not in a header file. */
96 extern int sysctl_overcommit_memory
;
97 extern int sysctl_overcommit_ratio
;
98 extern int max_threads
;
99 extern int core_uses_pid
;
100 extern int suid_dumpable
;
101 extern char core_pattern
[];
102 extern unsigned int core_pipe_limit
;
104 extern int min_free_kbytes
;
105 extern int pid_max_min
, pid_max_max
;
106 extern int sysctl_drop_caches
;
107 extern int percpu_pagelist_fraction
;
108 extern int compat_log
;
109 extern int latencytop_enabled
;
110 extern int sysctl_nr_open_min
, sysctl_nr_open_max
;
112 extern int sysctl_nr_trim_pages
;
115 extern int blk_iopoll_enabled
;
118 /* Constants used for minimum and maximum */
119 #ifdef CONFIG_LOCKUP_DETECTOR
120 static int sixty
= 60;
121 static int neg_one
= -1;
125 static int __maybe_unused one
= 1;
126 static int __maybe_unused two
= 2;
127 static int __maybe_unused three
= 3;
128 static unsigned long one_ul
= 1;
129 static int one_hundred
= 100;
131 static int ten_thousand
= 10000;
134 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
135 static unsigned long dirty_bytes_min
= 2 * PAGE_SIZE
;
137 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
138 static int maxolduid
= 65535;
139 static int minolduid
;
140 static int min_percpu_pagelist_fract
= 8;
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
;
157 extern int unaligned_enabled
;
161 extern int no_unaligned_warning
;
162 extern int unaligned_dump_stack
;
165 #ifdef CONFIG_PROC_SYSCTL
166 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
167 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
168 static int proc_taint(struct ctl_table
*table
, int write
,
169 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
173 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
174 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
177 #ifdef CONFIG_MAGIC_SYSRQ
178 /* Note: sysrq code uses it's own private copy */
179 static int __sysrq_enabled
= SYSRQ_DEFAULT_ENABLE
;
181 static int sysrq_sysctl_handler(ctl_table
*table
, int write
,
182 void __user
*buffer
, size_t *lenp
,
187 error
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
192 sysrq_toggle_support(__sysrq_enabled
);
199 static struct ctl_table kern_table
[];
200 static struct ctl_table vm_table
[];
201 static struct ctl_table fs_table
[];
202 static struct ctl_table debug_table
[];
203 static struct ctl_table dev_table
[];
204 extern struct ctl_table random_table
[];
206 extern struct ctl_table epoll_table
[];
209 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
210 int sysctl_legacy_va_layout
;
213 /* The default sysctl tables: */
215 static struct ctl_table sysctl_base_table
[] = {
217 .procname
= "kernel",
234 .child
= debug_table
,
244 #ifdef CONFIG_SCHED_DEBUG
245 static int min_sched_granularity_ns
= 100000; /* 100 usecs */
246 static int max_sched_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
247 static int min_wakeup_granularity_ns
; /* 0 usecs */
248 static int max_wakeup_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
249 static int min_sched_tunable_scaling
= SCHED_TUNABLESCALING_NONE
;
250 static int max_sched_tunable_scaling
= SCHED_TUNABLESCALING_END
-1;
253 #ifdef CONFIG_COMPACTION
254 static int min_extfrag_threshold
;
255 static int max_extfrag_threshold
= 1000;
258 static struct ctl_table kern_table
[] = {
260 .procname
= "sched_child_runs_first",
261 .data
= &sysctl_sched_child_runs_first
,
262 .maxlen
= sizeof(unsigned int),
264 .proc_handler
= proc_dointvec
,
266 #ifdef CONFIG_SCHED_DEBUG
268 .procname
= "sched_min_granularity_ns",
269 .data
= &sysctl_sched_min_granularity
,
270 .maxlen
= sizeof(unsigned int),
272 .proc_handler
= sched_proc_update_handler
,
273 .extra1
= &min_sched_granularity_ns
,
274 .extra2
= &max_sched_granularity_ns
,
277 .procname
= "sched_latency_ns",
278 .data
= &sysctl_sched_latency
,
279 .maxlen
= sizeof(unsigned int),
281 .proc_handler
= sched_proc_update_handler
,
282 .extra1
= &min_sched_granularity_ns
,
283 .extra2
= &max_sched_granularity_ns
,
286 .procname
= "sched_wakeup_granularity_ns",
287 .data
= &sysctl_sched_wakeup_granularity
,
288 .maxlen
= sizeof(unsigned int),
290 .proc_handler
= sched_proc_update_handler
,
291 .extra1
= &min_wakeup_granularity_ns
,
292 .extra2
= &max_wakeup_granularity_ns
,
295 .procname
= "sched_tunable_scaling",
296 .data
= &sysctl_sched_tunable_scaling
,
297 .maxlen
= sizeof(enum sched_tunable_scaling
),
299 .proc_handler
= sched_proc_update_handler
,
300 .extra1
= &min_sched_tunable_scaling
,
301 .extra2
= &max_sched_tunable_scaling
,
304 .procname
= "sched_migration_cost",
305 .data
= &sysctl_sched_migration_cost
,
306 .maxlen
= sizeof(unsigned int),
308 .proc_handler
= proc_dointvec
,
311 .procname
= "sched_nr_migrate",
312 .data
= &sysctl_sched_nr_migrate
,
313 .maxlen
= sizeof(unsigned int),
315 .proc_handler
= proc_dointvec
,
318 .procname
= "sched_time_avg",
319 .data
= &sysctl_sched_time_avg
,
320 .maxlen
= sizeof(unsigned int),
322 .proc_handler
= proc_dointvec
,
325 .procname
= "sched_shares_window",
326 .data
= &sysctl_sched_shares_window
,
327 .maxlen
= sizeof(unsigned int),
329 .proc_handler
= proc_dointvec
,
332 .procname
= "timer_migration",
333 .data
= &sysctl_timer_migration
,
334 .maxlen
= sizeof(unsigned int),
336 .proc_handler
= proc_dointvec_minmax
,
342 .procname
= "sched_rt_period_us",
343 .data
= &sysctl_sched_rt_period
,
344 .maxlen
= sizeof(unsigned int),
346 .proc_handler
= sched_rt_handler
,
349 .procname
= "sched_rt_runtime_us",
350 .data
= &sysctl_sched_rt_runtime
,
351 .maxlen
= sizeof(int),
353 .proc_handler
= sched_rt_handler
,
355 #ifdef CONFIG_SCHED_AUTOGROUP
357 .procname
= "sched_autogroup_enabled",
358 .data
= &sysctl_sched_autogroup_enabled
,
359 .maxlen
= sizeof(unsigned int),
361 .proc_handler
= proc_dointvec_minmax
,
366 #ifdef CONFIG_CFS_BANDWIDTH
368 .procname
= "sched_cfs_bandwidth_slice_us",
369 .data
= &sysctl_sched_cfs_bandwidth_slice
,
370 .maxlen
= sizeof(unsigned int),
372 .proc_handler
= proc_dointvec_minmax
,
376 #ifdef CONFIG_PROVE_LOCKING
378 .procname
= "prove_locking",
379 .data
= &prove_locking
,
380 .maxlen
= sizeof(int),
382 .proc_handler
= proc_dointvec
,
385 #ifdef CONFIG_LOCK_STAT
387 .procname
= "lock_stat",
389 .maxlen
= sizeof(int),
391 .proc_handler
= proc_dointvec
,
396 .data
= &panic_timeout
,
397 .maxlen
= sizeof(int),
399 .proc_handler
= proc_dointvec
,
402 .procname
= "core_uses_pid",
403 .data
= &core_uses_pid
,
404 .maxlen
= sizeof(int),
406 .proc_handler
= proc_dointvec
,
409 .procname
= "core_pattern",
410 .data
= core_pattern
,
411 .maxlen
= CORENAME_MAX_SIZE
,
413 .proc_handler
= proc_dostring
,
416 .procname
= "core_pipe_limit",
417 .data
= &core_pipe_limit
,
418 .maxlen
= sizeof(unsigned int),
420 .proc_handler
= proc_dointvec
,
422 #ifdef CONFIG_PROC_SYSCTL
424 .procname
= "tainted",
425 .maxlen
= sizeof(long),
427 .proc_handler
= proc_taint
,
430 #ifdef CONFIG_LATENCYTOP
432 .procname
= "latencytop",
433 .data
= &latencytop_enabled
,
434 .maxlen
= sizeof(int),
436 .proc_handler
= proc_dointvec
,
439 #ifdef CONFIG_BLK_DEV_INITRD
441 .procname
= "real-root-dev",
442 .data
= &real_root_dev
,
443 .maxlen
= sizeof(int),
445 .proc_handler
= proc_dointvec
,
449 .procname
= "print-fatal-signals",
450 .data
= &print_fatal_signals
,
451 .maxlen
= sizeof(int),
453 .proc_handler
= proc_dointvec
,
457 .procname
= "reboot-cmd",
458 .data
= reboot_command
,
461 .proc_handler
= proc_dostring
,
464 .procname
= "stop-a",
465 .data
= &stop_a_enabled
,
466 .maxlen
= sizeof (int),
468 .proc_handler
= proc_dointvec
,
471 .procname
= "scons-poweroff",
472 .data
= &scons_pwroff
,
473 .maxlen
= sizeof (int),
475 .proc_handler
= proc_dointvec
,
478 #ifdef CONFIG_SPARC64
480 .procname
= "tsb-ratio",
481 .data
= &sysctl_tsb_ratio
,
482 .maxlen
= sizeof (int),
484 .proc_handler
= proc_dointvec
,
489 .procname
= "soft-power",
490 .data
= &pwrsw_enabled
,
491 .maxlen
= sizeof (int),
493 .proc_handler
= proc_dointvec
,
496 .procname
= "unaligned-trap",
497 .data
= &unaligned_enabled
,
498 .maxlen
= sizeof (int),
500 .proc_handler
= proc_dointvec
,
504 .procname
= "ctrl-alt-del",
506 .maxlen
= sizeof(int),
508 .proc_handler
= proc_dointvec
,
510 #ifdef CONFIG_FUNCTION_TRACER
512 .procname
= "ftrace_enabled",
513 .data
= &ftrace_enabled
,
514 .maxlen
= sizeof(int),
516 .proc_handler
= ftrace_enable_sysctl
,
519 #ifdef CONFIG_STACK_TRACER
521 .procname
= "stack_tracer_enabled",
522 .data
= &stack_tracer_enabled
,
523 .maxlen
= sizeof(int),
525 .proc_handler
= stack_trace_sysctl
,
528 #ifdef CONFIG_TRACING
530 .procname
= "ftrace_dump_on_oops",
531 .data
= &ftrace_dump_on_oops
,
532 .maxlen
= sizeof(int),
534 .proc_handler
= proc_dointvec
,
537 #ifdef CONFIG_MODULES
539 .procname
= "modprobe",
540 .data
= &modprobe_path
,
541 .maxlen
= KMOD_PATH_LEN
,
543 .proc_handler
= proc_dostring
,
546 .procname
= "modules_disabled",
547 .data
= &modules_disabled
,
548 .maxlen
= sizeof(int),
550 /* only handle a transition from default "0" to "1" */
551 .proc_handler
= proc_dointvec_minmax
,
556 #ifdef CONFIG_HOTPLUG
558 .procname
= "hotplug",
559 .data
= &uevent_helper
,
560 .maxlen
= UEVENT_HELPER_PATH_LEN
,
562 .proc_handler
= proc_dostring
,
565 #ifdef CONFIG_CHR_DEV_SG
567 .procname
= "sg-big-buff",
568 .data
= &sg_big_buff
,
569 .maxlen
= sizeof (int),
571 .proc_handler
= proc_dointvec
,
574 #ifdef CONFIG_BSD_PROCESS_ACCT
578 .maxlen
= 3*sizeof(int),
580 .proc_handler
= proc_dointvec
,
583 #ifdef CONFIG_MAGIC_SYSRQ
586 .data
= &__sysrq_enabled
,
587 .maxlen
= sizeof (int),
589 .proc_handler
= sysrq_sysctl_handler
,
592 #ifdef CONFIG_PROC_SYSCTL
594 .procname
= "cad_pid",
596 .maxlen
= sizeof (int),
598 .proc_handler
= proc_do_cad_pid
,
602 .procname
= "threads-max",
603 .data
= &max_threads
,
604 .maxlen
= sizeof(int),
606 .proc_handler
= proc_dointvec
,
609 .procname
= "random",
611 .child
= random_table
,
614 .procname
= "usermodehelper",
616 .child
= usermodehelper_table
,
619 .procname
= "overflowuid",
620 .data
= &overflowuid
,
621 .maxlen
= sizeof(int),
623 .proc_handler
= proc_dointvec_minmax
,
624 .extra1
= &minolduid
,
625 .extra2
= &maxolduid
,
628 .procname
= "overflowgid",
629 .data
= &overflowgid
,
630 .maxlen
= sizeof(int),
632 .proc_handler
= proc_dointvec_minmax
,
633 .extra1
= &minolduid
,
634 .extra2
= &maxolduid
,
637 #ifdef CONFIG_MATHEMU
639 .procname
= "ieee_emulation_warnings",
640 .data
= &sysctl_ieee_emulation_warnings
,
641 .maxlen
= sizeof(int),
643 .proc_handler
= proc_dointvec
,
647 .procname
= "userprocess_debug",
648 .data
= &show_unhandled_signals
,
649 .maxlen
= sizeof(int),
651 .proc_handler
= proc_dointvec
,
655 .procname
= "pid_max",
657 .maxlen
= sizeof (int),
659 .proc_handler
= proc_dointvec_minmax
,
660 .extra1
= &pid_max_min
,
661 .extra2
= &pid_max_max
,
664 .procname
= "panic_on_oops",
665 .data
= &panic_on_oops
,
666 .maxlen
= sizeof(int),
668 .proc_handler
= proc_dointvec
,
670 #if defined CONFIG_PRINTK
672 .procname
= "printk",
673 .data
= &console_loglevel
,
674 .maxlen
= 4*sizeof(int),
676 .proc_handler
= proc_dointvec
,
679 .procname
= "printk_ratelimit",
680 .data
= &printk_ratelimit_state
.interval
,
681 .maxlen
= sizeof(int),
683 .proc_handler
= proc_dointvec_jiffies
,
686 .procname
= "printk_ratelimit_burst",
687 .data
= &printk_ratelimit_state
.burst
,
688 .maxlen
= sizeof(int),
690 .proc_handler
= proc_dointvec
,
693 .procname
= "printk_delay",
694 .data
= &printk_delay_msec
,
695 .maxlen
= sizeof(int),
697 .proc_handler
= proc_dointvec_minmax
,
699 .extra2
= &ten_thousand
,
702 .procname
= "dmesg_restrict",
703 .data
= &dmesg_restrict
,
704 .maxlen
= sizeof(int),
706 .proc_handler
= proc_dointvec_minmax_sysadmin
,
711 .procname
= "kptr_restrict",
712 .data
= &kptr_restrict
,
713 .maxlen
= sizeof(int),
715 .proc_handler
= proc_dointvec_minmax_sysadmin
,
721 .procname
= "ngroups_max",
722 .data
= &ngroups_max
,
723 .maxlen
= sizeof (int),
725 .proc_handler
= proc_dointvec
,
728 .procname
= "cap_last_cap",
729 .data
= (void *)&cap_last_cap
,
730 .maxlen
= sizeof(int),
732 .proc_handler
= proc_dointvec
,
734 #if defined(CONFIG_LOCKUP_DETECTOR)
736 .procname
= "watchdog",
737 .data
= &watchdog_enabled
,
738 .maxlen
= sizeof (int),
740 .proc_handler
= proc_dowatchdog
,
745 .procname
= "watchdog_thresh",
746 .data
= &watchdog_thresh
,
747 .maxlen
= sizeof(int),
749 .proc_handler
= proc_dowatchdog
,
754 .procname
= "softlockup_panic",
755 .data
= &softlockup_panic
,
756 .maxlen
= sizeof(int),
758 .proc_handler
= proc_dointvec_minmax
,
763 .procname
= "nmi_watchdog",
764 .data
= &watchdog_enabled
,
765 .maxlen
= sizeof (int),
767 .proc_handler
= proc_dowatchdog
,
772 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
774 .procname
= "unknown_nmi_panic",
775 .data
= &unknown_nmi_panic
,
776 .maxlen
= sizeof (int),
778 .proc_handler
= proc_dointvec
,
781 #if defined(CONFIG_X86)
783 .procname
= "panic_on_unrecovered_nmi",
784 .data
= &panic_on_unrecovered_nmi
,
785 .maxlen
= sizeof(int),
787 .proc_handler
= proc_dointvec
,
790 .procname
= "panic_on_io_nmi",
791 .data
= &panic_on_io_nmi
,
792 .maxlen
= sizeof(int),
794 .proc_handler
= proc_dointvec
,
796 #ifdef CONFIG_DEBUG_STACKOVERFLOW
798 .procname
= "panic_on_stackoverflow",
799 .data
= &sysctl_panic_on_stackoverflow
,
800 .maxlen
= sizeof(int),
802 .proc_handler
= proc_dointvec
,
806 .procname
= "bootloader_type",
807 .data
= &bootloader_type
,
808 .maxlen
= sizeof (int),
810 .proc_handler
= proc_dointvec
,
813 .procname
= "bootloader_version",
814 .data
= &bootloader_version
,
815 .maxlen
= sizeof (int),
817 .proc_handler
= proc_dointvec
,
820 .procname
= "kstack_depth_to_print",
821 .data
= &kstack_depth_to_print
,
822 .maxlen
= sizeof(int),
824 .proc_handler
= proc_dointvec
,
827 .procname
= "io_delay_type",
828 .data
= &io_delay_type
,
829 .maxlen
= sizeof(int),
831 .proc_handler
= proc_dointvec
,
834 #if defined(CONFIG_MMU)
836 .procname
= "randomize_va_space",
837 .data
= &randomize_va_space
,
838 .maxlen
= sizeof(int),
840 .proc_handler
= proc_dointvec
,
843 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
845 .procname
= "spin_retry",
847 .maxlen
= sizeof (int),
849 .proc_handler
= proc_dointvec
,
852 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
854 .procname
= "acpi_video_flags",
855 .data
= &acpi_realmode_flags
,
856 .maxlen
= sizeof (unsigned long),
858 .proc_handler
= proc_doulongvec_minmax
,
863 .procname
= "ignore-unaligned-usertrap",
864 .data
= &no_unaligned_warning
,
865 .maxlen
= sizeof (int),
867 .proc_handler
= proc_dointvec
,
870 .procname
= "unaligned-dump-stack",
871 .data
= &unaligned_dump_stack
,
872 .maxlen
= sizeof (int),
874 .proc_handler
= proc_dointvec
,
877 #ifdef CONFIG_DETECT_HUNG_TASK
879 .procname
= "hung_task_panic",
880 .data
= &sysctl_hung_task_panic
,
881 .maxlen
= sizeof(int),
883 .proc_handler
= proc_dointvec_minmax
,
888 .procname
= "hung_task_check_count",
889 .data
= &sysctl_hung_task_check_count
,
890 .maxlen
= sizeof(unsigned long),
892 .proc_handler
= proc_doulongvec_minmax
,
895 .procname
= "hung_task_timeout_secs",
896 .data
= &sysctl_hung_task_timeout_secs
,
897 .maxlen
= sizeof(unsigned long),
899 .proc_handler
= proc_dohung_task_timeout_secs
,
902 .procname
= "hung_task_warnings",
903 .data
= &sysctl_hung_task_warnings
,
904 .maxlen
= sizeof(unsigned long),
906 .proc_handler
= proc_doulongvec_minmax
,
911 .procname
= "compat-log",
913 .maxlen
= sizeof (int),
915 .proc_handler
= proc_dointvec
,
918 #ifdef CONFIG_RT_MUTEXES
920 .procname
= "max_lock_depth",
921 .data
= &max_lock_depth
,
922 .maxlen
= sizeof(int),
924 .proc_handler
= proc_dointvec
,
928 .procname
= "poweroff_cmd",
929 .data
= &poweroff_cmd
,
930 .maxlen
= POWEROFF_CMD_PATH_LEN
,
932 .proc_handler
= proc_dostring
,
938 .child
= key_sysctls
,
941 #ifdef CONFIG_RCU_TORTURE_TEST
943 .procname
= "rcutorture_runnable",
944 .data
= &rcutorture_runnable
,
945 .maxlen
= sizeof(int),
947 .proc_handler
= proc_dointvec
,
950 #ifdef CONFIG_PERF_EVENTS
952 * User-space scripts rely on the existence of this file
953 * as a feature check for perf_events being enabled.
955 * So it's an ABI, do not remove!
958 .procname
= "perf_event_paranoid",
959 .data
= &sysctl_perf_event_paranoid
,
960 .maxlen
= sizeof(sysctl_perf_event_paranoid
),
962 .proc_handler
= proc_dointvec
,
965 .procname
= "perf_event_mlock_kb",
966 .data
= &sysctl_perf_event_mlock
,
967 .maxlen
= sizeof(sysctl_perf_event_mlock
),
969 .proc_handler
= proc_dointvec
,
972 .procname
= "perf_event_max_sample_rate",
973 .data
= &sysctl_perf_event_sample_rate
,
974 .maxlen
= sizeof(sysctl_perf_event_sample_rate
),
976 .proc_handler
= perf_proc_update_handler
,
979 #ifdef CONFIG_KMEMCHECK
981 .procname
= "kmemcheck",
982 .data
= &kmemcheck_enabled
,
983 .maxlen
= sizeof(int),
985 .proc_handler
= proc_dointvec
,
990 .procname
= "blk_iopoll",
991 .data
= &blk_iopoll_enabled
,
992 .maxlen
= sizeof(int),
994 .proc_handler
= proc_dointvec
,
1000 static struct ctl_table vm_table
[] = {
1002 .procname
= "overcommit_memory",
1003 .data
= &sysctl_overcommit_memory
,
1004 .maxlen
= sizeof(sysctl_overcommit_memory
),
1006 .proc_handler
= proc_dointvec_minmax
,
1011 .procname
= "panic_on_oom",
1012 .data
= &sysctl_panic_on_oom
,
1013 .maxlen
= sizeof(sysctl_panic_on_oom
),
1015 .proc_handler
= proc_dointvec_minmax
,
1020 .procname
= "oom_kill_allocating_task",
1021 .data
= &sysctl_oom_kill_allocating_task
,
1022 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
1024 .proc_handler
= proc_dointvec
,
1027 .procname
= "oom_dump_tasks",
1028 .data
= &sysctl_oom_dump_tasks
,
1029 .maxlen
= sizeof(sysctl_oom_dump_tasks
),
1031 .proc_handler
= proc_dointvec
,
1034 .procname
= "overcommit_ratio",
1035 .data
= &sysctl_overcommit_ratio
,
1036 .maxlen
= sizeof(sysctl_overcommit_ratio
),
1038 .proc_handler
= proc_dointvec
,
1041 .procname
= "page-cluster",
1042 .data
= &page_cluster
,
1043 .maxlen
= sizeof(int),
1045 .proc_handler
= proc_dointvec_minmax
,
1049 .procname
= "dirty_background_ratio",
1050 .data
= &dirty_background_ratio
,
1051 .maxlen
= sizeof(dirty_background_ratio
),
1053 .proc_handler
= dirty_background_ratio_handler
,
1055 .extra2
= &one_hundred
,
1058 .procname
= "dirty_background_bytes",
1059 .data
= &dirty_background_bytes
,
1060 .maxlen
= sizeof(dirty_background_bytes
),
1062 .proc_handler
= dirty_background_bytes_handler
,
1066 .procname
= "dirty_ratio",
1067 .data
= &vm_dirty_ratio
,
1068 .maxlen
= sizeof(vm_dirty_ratio
),
1070 .proc_handler
= dirty_ratio_handler
,
1072 .extra2
= &one_hundred
,
1075 .procname
= "dirty_bytes",
1076 .data
= &vm_dirty_bytes
,
1077 .maxlen
= sizeof(vm_dirty_bytes
),
1079 .proc_handler
= dirty_bytes_handler
,
1080 .extra1
= &dirty_bytes_min
,
1083 .procname
= "dirty_writeback_centisecs",
1084 .data
= &dirty_writeback_interval
,
1085 .maxlen
= sizeof(dirty_writeback_interval
),
1087 .proc_handler
= dirty_writeback_centisecs_handler
,
1090 .procname
= "dirty_expire_centisecs",
1091 .data
= &dirty_expire_interval
,
1092 .maxlen
= sizeof(dirty_expire_interval
),
1094 .proc_handler
= proc_dointvec_minmax
,
1098 .procname
= "nr_pdflush_threads",
1099 .data
= &nr_pdflush_threads
,
1100 .maxlen
= sizeof nr_pdflush_threads
,
1101 .mode
= 0444 /* read-only*/,
1102 .proc_handler
= proc_dointvec
,
1105 .procname
= "swappiness",
1106 .data
= &vm_swappiness
,
1107 .maxlen
= sizeof(vm_swappiness
),
1109 .proc_handler
= proc_dointvec_minmax
,
1111 .extra2
= &one_hundred
,
1113 #ifdef CONFIG_HUGETLB_PAGE
1115 .procname
= "nr_hugepages",
1117 .maxlen
= sizeof(unsigned long),
1119 .proc_handler
= hugetlb_sysctl_handler
,
1120 .extra1
= (void *)&hugetlb_zero
,
1121 .extra2
= (void *)&hugetlb_infinity
,
1125 .procname
= "nr_hugepages_mempolicy",
1127 .maxlen
= sizeof(unsigned long),
1129 .proc_handler
= &hugetlb_mempolicy_sysctl_handler
,
1130 .extra1
= (void *)&hugetlb_zero
,
1131 .extra2
= (void *)&hugetlb_infinity
,
1135 .procname
= "hugetlb_shm_group",
1136 .data
= &sysctl_hugetlb_shm_group
,
1137 .maxlen
= sizeof(gid_t
),
1139 .proc_handler
= proc_dointvec
,
1142 .procname
= "hugepages_treat_as_movable",
1143 .data
= &hugepages_treat_as_movable
,
1144 .maxlen
= sizeof(int),
1146 .proc_handler
= hugetlb_treat_movable_handler
,
1149 .procname
= "nr_overcommit_hugepages",
1151 .maxlen
= sizeof(unsigned long),
1153 .proc_handler
= hugetlb_overcommit_handler
,
1154 .extra1
= (void *)&hugetlb_zero
,
1155 .extra2
= (void *)&hugetlb_infinity
,
1159 .procname
= "lowmem_reserve_ratio",
1160 .data
= &sysctl_lowmem_reserve_ratio
,
1161 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
1163 .proc_handler
= lowmem_reserve_ratio_sysctl_handler
,
1166 .procname
= "drop_caches",
1167 .data
= &sysctl_drop_caches
,
1168 .maxlen
= sizeof(int),
1170 .proc_handler
= drop_caches_sysctl_handler
,
1174 #ifdef CONFIG_COMPACTION
1176 .procname
= "compact_memory",
1177 .data
= &sysctl_compact_memory
,
1178 .maxlen
= sizeof(int),
1180 .proc_handler
= sysctl_compaction_handler
,
1183 .procname
= "extfrag_threshold",
1184 .data
= &sysctl_extfrag_threshold
,
1185 .maxlen
= sizeof(int),
1187 .proc_handler
= sysctl_extfrag_handler
,
1188 .extra1
= &min_extfrag_threshold
,
1189 .extra2
= &max_extfrag_threshold
,
1192 #endif /* CONFIG_COMPACTION */
1194 .procname
= "min_free_kbytes",
1195 .data
= &min_free_kbytes
,
1196 .maxlen
= sizeof(min_free_kbytes
),
1198 .proc_handler
= min_free_kbytes_sysctl_handler
,
1202 .procname
= "percpu_pagelist_fraction",
1203 .data
= &percpu_pagelist_fraction
,
1204 .maxlen
= sizeof(percpu_pagelist_fraction
),
1206 .proc_handler
= percpu_pagelist_fraction_sysctl_handler
,
1207 .extra1
= &min_percpu_pagelist_fract
,
1211 .procname
= "max_map_count",
1212 .data
= &sysctl_max_map_count
,
1213 .maxlen
= sizeof(sysctl_max_map_count
),
1215 .proc_handler
= proc_dointvec_minmax
,
1220 .procname
= "nr_trim_pages",
1221 .data
= &sysctl_nr_trim_pages
,
1222 .maxlen
= sizeof(sysctl_nr_trim_pages
),
1224 .proc_handler
= proc_dointvec_minmax
,
1229 .procname
= "laptop_mode",
1230 .data
= &laptop_mode
,
1231 .maxlen
= sizeof(laptop_mode
),
1233 .proc_handler
= proc_dointvec_jiffies
,
1236 .procname
= "block_dump",
1237 .data
= &block_dump
,
1238 .maxlen
= sizeof(block_dump
),
1240 .proc_handler
= proc_dointvec
,
1244 .procname
= "vfs_cache_pressure",
1245 .data
= &sysctl_vfs_cache_pressure
,
1246 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
1248 .proc_handler
= proc_dointvec
,
1251 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1253 .procname
= "legacy_va_layout",
1254 .data
= &sysctl_legacy_va_layout
,
1255 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1257 .proc_handler
= proc_dointvec
,
1263 .procname
= "zone_reclaim_mode",
1264 .data
= &zone_reclaim_mode
,
1265 .maxlen
= sizeof(zone_reclaim_mode
),
1267 .proc_handler
= proc_dointvec
,
1271 .procname
= "min_unmapped_ratio",
1272 .data
= &sysctl_min_unmapped_ratio
,
1273 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1275 .proc_handler
= sysctl_min_unmapped_ratio_sysctl_handler
,
1277 .extra2
= &one_hundred
,
1280 .procname
= "min_slab_ratio",
1281 .data
= &sysctl_min_slab_ratio
,
1282 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1284 .proc_handler
= sysctl_min_slab_ratio_sysctl_handler
,
1286 .extra2
= &one_hundred
,
1291 .procname
= "stat_interval",
1292 .data
= &sysctl_stat_interval
,
1293 .maxlen
= sizeof(sysctl_stat_interval
),
1295 .proc_handler
= proc_dointvec_jiffies
,
1300 .procname
= "mmap_min_addr",
1301 .data
= &dac_mmap_min_addr
,
1302 .maxlen
= sizeof(unsigned long),
1304 .proc_handler
= mmap_min_addr_handler
,
1309 .procname
= "numa_zonelist_order",
1310 .data
= &numa_zonelist_order
,
1311 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1313 .proc_handler
= numa_zonelist_order_handler
,
1316 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1317 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1319 .procname
= "vdso_enabled",
1320 .data
= &vdso_enabled
,
1321 .maxlen
= sizeof(vdso_enabled
),
1323 .proc_handler
= proc_dointvec
,
1327 #ifdef CONFIG_HIGHMEM
1329 .procname
= "highmem_is_dirtyable",
1330 .data
= &vm_highmem_is_dirtyable
,
1331 .maxlen
= sizeof(vm_highmem_is_dirtyable
),
1333 .proc_handler
= proc_dointvec_minmax
,
1339 .procname
= "scan_unevictable_pages",
1340 .data
= &scan_unevictable_pages
,
1341 .maxlen
= sizeof(scan_unevictable_pages
),
1343 .proc_handler
= scan_unevictable_handler
,
1345 #ifdef CONFIG_MEMORY_FAILURE
1347 .procname
= "memory_failure_early_kill",
1348 .data
= &sysctl_memory_failure_early_kill
,
1349 .maxlen
= sizeof(sysctl_memory_failure_early_kill
),
1351 .proc_handler
= proc_dointvec_minmax
,
1356 .procname
= "memory_failure_recovery",
1357 .data
= &sysctl_memory_failure_recovery
,
1358 .maxlen
= sizeof(sysctl_memory_failure_recovery
),
1360 .proc_handler
= proc_dointvec_minmax
,
1368 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1369 static struct ctl_table binfmt_misc_table
[] = {
1374 static struct ctl_table fs_table
[] = {
1376 .procname
= "inode-nr",
1377 .data
= &inodes_stat
,
1378 .maxlen
= 2*sizeof(int),
1380 .proc_handler
= proc_nr_inodes
,
1383 .procname
= "inode-state",
1384 .data
= &inodes_stat
,
1385 .maxlen
= 7*sizeof(int),
1387 .proc_handler
= proc_nr_inodes
,
1390 .procname
= "file-nr",
1391 .data
= &files_stat
,
1392 .maxlen
= sizeof(files_stat
),
1394 .proc_handler
= proc_nr_files
,
1397 .procname
= "file-max",
1398 .data
= &files_stat
.max_files
,
1399 .maxlen
= sizeof(files_stat
.max_files
),
1401 .proc_handler
= proc_doulongvec_minmax
,
1404 .procname
= "nr_open",
1405 .data
= &sysctl_nr_open
,
1406 .maxlen
= sizeof(int),
1408 .proc_handler
= proc_dointvec_minmax
,
1409 .extra1
= &sysctl_nr_open_min
,
1410 .extra2
= &sysctl_nr_open_max
,
1413 .procname
= "dentry-state",
1414 .data
= &dentry_stat
,
1415 .maxlen
= 6*sizeof(int),
1417 .proc_handler
= proc_nr_dentry
,
1420 .procname
= "overflowuid",
1421 .data
= &fs_overflowuid
,
1422 .maxlen
= sizeof(int),
1424 .proc_handler
= proc_dointvec_minmax
,
1425 .extra1
= &minolduid
,
1426 .extra2
= &maxolduid
,
1429 .procname
= "overflowgid",
1430 .data
= &fs_overflowgid
,
1431 .maxlen
= sizeof(int),
1433 .proc_handler
= proc_dointvec_minmax
,
1434 .extra1
= &minolduid
,
1435 .extra2
= &maxolduid
,
1437 #ifdef CONFIG_FILE_LOCKING
1439 .procname
= "leases-enable",
1440 .data
= &leases_enable
,
1441 .maxlen
= sizeof(int),
1443 .proc_handler
= proc_dointvec
,
1446 #ifdef CONFIG_DNOTIFY
1448 .procname
= "dir-notify-enable",
1449 .data
= &dir_notify_enable
,
1450 .maxlen
= sizeof(int),
1452 .proc_handler
= proc_dointvec
,
1456 #ifdef CONFIG_FILE_LOCKING
1458 .procname
= "lease-break-time",
1459 .data
= &lease_break_time
,
1460 .maxlen
= sizeof(int),
1462 .proc_handler
= proc_dointvec
,
1467 .procname
= "aio-nr",
1469 .maxlen
= sizeof(aio_nr
),
1471 .proc_handler
= proc_doulongvec_minmax
,
1474 .procname
= "aio-max-nr",
1475 .data
= &aio_max_nr
,
1476 .maxlen
= sizeof(aio_max_nr
),
1478 .proc_handler
= proc_doulongvec_minmax
,
1480 #endif /* CONFIG_AIO */
1481 #ifdef CONFIG_INOTIFY_USER
1483 .procname
= "inotify",
1485 .child
= inotify_table
,
1490 .procname
= "epoll",
1492 .child
= epoll_table
,
1497 .procname
= "suid_dumpable",
1498 .data
= &suid_dumpable
,
1499 .maxlen
= sizeof(int),
1501 .proc_handler
= proc_dointvec_minmax
,
1505 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1507 .procname
= "binfmt_misc",
1509 .child
= binfmt_misc_table
,
1513 .procname
= "pipe-max-size",
1514 .data
= &pipe_max_size
,
1515 .maxlen
= sizeof(int),
1517 .proc_handler
= &pipe_proc_fn
,
1518 .extra1
= &pipe_min_size
,
1523 static struct ctl_table debug_table
[] = {
1524 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \
1525 defined(CONFIG_S390) || defined(CONFIG_TILE)
1527 .procname
= "exception-trace",
1528 .data
= &show_unhandled_signals
,
1529 .maxlen
= sizeof(int),
1531 .proc_handler
= proc_dointvec
1534 #if defined(CONFIG_OPTPROBES)
1536 .procname
= "kprobes-optimization",
1537 .data
= &sysctl_kprobes_optimization
,
1538 .maxlen
= sizeof(int),
1540 .proc_handler
= proc_kprobes_optimization_handler
,
1548 static struct ctl_table dev_table
[] = {
1552 int __init
sysctl_init(void)
1554 register_sysctl_table(sysctl_base_table
);
1558 #endif /* CONFIG_SYSCTL */
1564 #ifdef CONFIG_PROC_SYSCTL
1566 static int _proc_do_string(void* data
, int maxlen
, int write
,
1567 void __user
*buffer
,
1568 size_t *lenp
, loff_t
*ppos
)
1574 if (!data
|| !maxlen
|| !*lenp
) {
1582 while (len
< *lenp
) {
1583 if (get_user(c
, p
++))
1585 if (c
== 0 || c
== '\n')
1591 if(copy_from_user(data
, buffer
, len
))
1593 ((char *) data
)[len
] = 0;
1611 if(copy_to_user(buffer
, data
, len
))
1614 if(put_user('\n', ((char __user
*) buffer
) + len
))
1625 * proc_dostring - read a string sysctl
1626 * @table: the sysctl table
1627 * @write: %TRUE if this is a write to the sysctl file
1628 * @buffer: the user buffer
1629 * @lenp: the size of the user buffer
1630 * @ppos: file position
1632 * Reads/writes a string from/to the user buffer. If the kernel
1633 * buffer provided is not large enough to hold the string, the
1634 * string is truncated. The copied string is %NULL-terminated.
1635 * If the string is being read by the user process, it is copied
1636 * and a newline '\n' is added. It is truncated if the buffer is
1639 * Returns 0 on success.
1641 int proc_dostring(struct ctl_table
*table
, int write
,
1642 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1644 return _proc_do_string(table
->data
, table
->maxlen
, write
,
1645 buffer
, lenp
, ppos
);
1648 static size_t proc_skip_spaces(char **buf
)
1651 char *tmp
= skip_spaces(*buf
);
1657 static void proc_skip_char(char **buf
, size_t *size
, const char v
)
1667 #define TMPBUFLEN 22
1669 * proc_get_long - reads an ASCII formatted integer from a user buffer
1671 * @buf: a kernel buffer
1672 * @size: size of the kernel buffer
1673 * @val: this is where the number will be stored
1674 * @neg: set to %TRUE if number is negative
1675 * @perm_tr: a vector which contains the allowed trailers
1676 * @perm_tr_len: size of the perm_tr vector
1677 * @tr: pointer to store the trailer character
1679 * In case of success %0 is returned and @buf and @size are updated with
1680 * the amount of bytes read. If @tr is non-NULL and a trailing
1681 * character exists (size is non-zero after returning from this
1682 * function), @tr is updated with the trailing character.
1684 static int proc_get_long(char **buf
, size_t *size
,
1685 unsigned long *val
, bool *neg
,
1686 const char *perm_tr
, unsigned perm_tr_len
, char *tr
)
1689 char *p
, tmp
[TMPBUFLEN
];
1695 if (len
> TMPBUFLEN
- 1)
1696 len
= TMPBUFLEN
- 1;
1698 memcpy(tmp
, *buf
, len
);
1702 if (*p
== '-' && *size
> 1) {
1710 *val
= simple_strtoul(p
, &p
, 0);
1714 /* We don't know if the next char is whitespace thus we may accept
1715 * invalid integers (e.g. 1234...a) or two integers instead of one
1716 * (e.g. 123...1). So lets not allow such large numbers. */
1717 if (len
== TMPBUFLEN
- 1)
1720 if (len
< *size
&& perm_tr_len
&& !memchr(perm_tr
, *p
, perm_tr_len
))
1723 if (tr
&& (len
< *size
))
1733 * proc_put_long - converts an integer to a decimal ASCII formatted string
1735 * @buf: the user buffer
1736 * @size: the size of the user buffer
1737 * @val: the integer to be converted
1738 * @neg: sign of the number, %TRUE for negative
1740 * In case of success %0 is returned and @buf and @size are updated with
1741 * the amount of bytes written.
1743 static int proc_put_long(void __user
**buf
, size_t *size
, unsigned long val
,
1747 char tmp
[TMPBUFLEN
], *p
= tmp
;
1749 sprintf(p
, "%s%lu", neg
? "-" : "", val
);
1753 if (copy_to_user(*buf
, tmp
, len
))
1761 static int proc_put_char(void __user
**buf
, size_t *size
, char c
)
1764 char __user
**buffer
= (char __user
**)buf
;
1765 if (put_user(c
, *buffer
))
1767 (*size
)--, (*buffer
)++;
1773 static int do_proc_dointvec_conv(bool *negp
, unsigned long *lvalp
,
1775 int write
, void *data
)
1778 *valp
= *negp
? -*lvalp
: *lvalp
;
1783 *lvalp
= (unsigned long)-val
;
1786 *lvalp
= (unsigned long)val
;
1792 static const char proc_wspace_sep
[] = { ' ', '\t', '\n' };
1794 static int __do_proc_dointvec(void *tbl_data
, struct ctl_table
*table
,
1795 int write
, void __user
*buffer
,
1796 size_t *lenp
, loff_t
*ppos
,
1797 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
1798 int write
, void *data
),
1801 int *i
, vleft
, first
= 1, err
= 0;
1802 unsigned long page
= 0;
1806 if (!tbl_data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
1811 i
= (int *) tbl_data
;
1812 vleft
= table
->maxlen
/ sizeof(*i
);
1816 conv
= do_proc_dointvec_conv
;
1819 if (left
> PAGE_SIZE
- 1)
1820 left
= PAGE_SIZE
- 1;
1821 page
= __get_free_page(GFP_TEMPORARY
);
1822 kbuf
= (char *) page
;
1825 if (copy_from_user(kbuf
, buffer
, left
)) {
1832 for (; left
&& vleft
--; i
++, first
=0) {
1837 left
-= proc_skip_spaces(&kbuf
);
1841 err
= proc_get_long(&kbuf
, &left
, &lval
, &neg
,
1843 sizeof(proc_wspace_sep
), NULL
);
1846 if (conv(&neg
, &lval
, i
, 1, data
)) {
1851 if (conv(&neg
, &lval
, i
, 0, data
)) {
1856 err
= proc_put_char(&buffer
, &left
, '\t');
1859 err
= proc_put_long(&buffer
, &left
, lval
, neg
);
1865 if (!write
&& !first
&& left
&& !err
)
1866 err
= proc_put_char(&buffer
, &left
, '\n');
1867 if (write
&& !err
&& left
)
1868 left
-= proc_skip_spaces(&kbuf
);
1873 return err
? : -EINVAL
;
1880 static int do_proc_dointvec(struct ctl_table
*table
, int write
,
1881 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1882 int (*conv
)(bool *negp
, unsigned long *lvalp
, int *valp
,
1883 int write
, void *data
),
1886 return __do_proc_dointvec(table
->data
, table
, write
,
1887 buffer
, lenp
, ppos
, conv
, data
);
1891 * proc_dointvec - read a vector of integers
1892 * @table: the sysctl table
1893 * @write: %TRUE if this is a write to the sysctl file
1894 * @buffer: the user buffer
1895 * @lenp: the size of the user buffer
1896 * @ppos: file position
1898 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1899 * values from/to the user buffer, treated as an ASCII string.
1901 * Returns 0 on success.
1903 int proc_dointvec(struct ctl_table
*table
, int write
,
1904 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1906 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
1911 * Taint values can only be increased
1912 * This means we can safely use a temporary.
1914 static int proc_taint(struct ctl_table
*table
, int write
,
1915 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1918 unsigned long tmptaint
= get_taint();
1921 if (write
&& !capable(CAP_SYS_ADMIN
))
1926 err
= proc_doulongvec_minmax(&t
, write
, buffer
, lenp
, ppos
);
1932 * Poor man's atomic or. Not worth adding a primitive
1933 * to everyone's atomic.h for this
1936 for (i
= 0; i
< BITS_PER_LONG
&& tmptaint
>> i
; i
++) {
1937 if ((tmptaint
>> i
) & 1)
1945 #ifdef CONFIG_PRINTK
1946 static int proc_dointvec_minmax_sysadmin(struct ctl_table
*table
, int write
,
1947 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1949 if (write
&& !capable(CAP_SYS_ADMIN
))
1952 return proc_dointvec_minmax(table
, write
, buffer
, lenp
, ppos
);
1956 struct do_proc_dointvec_minmax_conv_param
{
1961 static int do_proc_dointvec_minmax_conv(bool *negp
, unsigned long *lvalp
,
1963 int write
, void *data
)
1965 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1967 int val
= *negp
? -*lvalp
: *lvalp
;
1968 if ((param
->min
&& *param
->min
> val
) ||
1969 (param
->max
&& *param
->max
< val
))
1976 *lvalp
= (unsigned long)-val
;
1979 *lvalp
= (unsigned long)val
;
1986 * proc_dointvec_minmax - read a vector of integers with min/max values
1987 * @table: the sysctl table
1988 * @write: %TRUE if this is a write to the sysctl file
1989 * @buffer: the user buffer
1990 * @lenp: the size of the user buffer
1991 * @ppos: file position
1993 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1994 * values from/to the user buffer, treated as an ASCII string.
1996 * This routine will ensure the values are within the range specified by
1997 * table->extra1 (min) and table->extra2 (max).
1999 * Returns 0 on success.
2001 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2002 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2004 struct do_proc_dointvec_minmax_conv_param param
= {
2005 .min
= (int *) table
->extra1
,
2006 .max
= (int *) table
->extra2
,
2008 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2009 do_proc_dointvec_minmax_conv
, ¶m
);
2012 static int __do_proc_doulongvec_minmax(void *data
, struct ctl_table
*table
, int write
,
2013 void __user
*buffer
,
2014 size_t *lenp
, loff_t
*ppos
,
2015 unsigned long convmul
,
2016 unsigned long convdiv
)
2018 unsigned long *i
, *min
, *max
;
2019 int vleft
, first
= 1, err
= 0;
2020 unsigned long page
= 0;
2024 if (!data
|| !table
->maxlen
|| !*lenp
|| (*ppos
&& !write
)) {
2029 i
= (unsigned long *) data
;
2030 min
= (unsigned long *) table
->extra1
;
2031 max
= (unsigned long *) table
->extra2
;
2032 vleft
= table
->maxlen
/ sizeof(unsigned long);
2036 if (left
> PAGE_SIZE
- 1)
2037 left
= PAGE_SIZE
- 1;
2038 page
= __get_free_page(GFP_TEMPORARY
);
2039 kbuf
= (char *) page
;
2042 if (copy_from_user(kbuf
, buffer
, left
)) {
2049 for (; left
&& vleft
--; i
++, first
= 0) {
2055 left
-= proc_skip_spaces(&kbuf
);
2057 err
= proc_get_long(&kbuf
, &left
, &val
, &neg
,
2059 sizeof(proc_wspace_sep
), NULL
);
2064 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2068 val
= convdiv
* (*i
) / convmul
;
2070 err
= proc_put_char(&buffer
, &left
, '\t');
2071 err
= proc_put_long(&buffer
, &left
, val
, false);
2077 if (!write
&& !first
&& left
&& !err
)
2078 err
= proc_put_char(&buffer
, &left
, '\n');
2080 left
-= proc_skip_spaces(&kbuf
);
2085 return err
? : -EINVAL
;
2092 static int do_proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2093 void __user
*buffer
,
2094 size_t *lenp
, loff_t
*ppos
,
2095 unsigned long convmul
,
2096 unsigned long convdiv
)
2098 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2099 buffer
, lenp
, ppos
, convmul
, convdiv
);
2103 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2104 * @table: the sysctl table
2105 * @write: %TRUE if this is a write to the sysctl file
2106 * @buffer: the user buffer
2107 * @lenp: the size of the user buffer
2108 * @ppos: file position
2110 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2111 * values from/to the user buffer, treated as an ASCII string.
2113 * This routine will ensure the values are within the range specified by
2114 * table->extra1 (min) and table->extra2 (max).
2116 * Returns 0 on success.
2118 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2119 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2121 return do_proc_doulongvec_minmax(table
, write
, buffer
, lenp
, ppos
, 1l, 1l);
2125 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2126 * @table: the sysctl table
2127 * @write: %TRUE if this is a write to the sysctl file
2128 * @buffer: the user buffer
2129 * @lenp: the size of the user buffer
2130 * @ppos: file position
2132 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2133 * values from/to the user buffer, treated as an ASCII string. The values
2134 * are treated as milliseconds, and converted to jiffies when they are stored.
2136 * This routine will ensure the values are within the range specified by
2137 * table->extra1 (min) and table->extra2 (max).
2139 * Returns 0 on success.
2141 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2142 void __user
*buffer
,
2143 size_t *lenp
, loff_t
*ppos
)
2145 return do_proc_doulongvec_minmax(table
, write
, buffer
,
2146 lenp
, ppos
, HZ
, 1000l);
2150 static int do_proc_dointvec_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2152 int write
, void *data
)
2155 if (*lvalp
> LONG_MAX
/ HZ
)
2157 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2163 lval
= (unsigned long)-val
;
2166 lval
= (unsigned long)val
;
2173 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2175 int write
, void *data
)
2178 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2180 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2186 lval
= (unsigned long)-val
;
2189 lval
= (unsigned long)val
;
2191 *lvalp
= jiffies_to_clock_t(lval
);
2196 static int do_proc_dointvec_ms_jiffies_conv(bool *negp
, unsigned long *lvalp
,
2198 int write
, void *data
)
2201 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2207 lval
= (unsigned long)-val
;
2210 lval
= (unsigned long)val
;
2212 *lvalp
= jiffies_to_msecs(lval
);
2218 * proc_dointvec_jiffies - read a vector of integers as seconds
2219 * @table: the sysctl table
2220 * @write: %TRUE if this is a write to the sysctl file
2221 * @buffer: the user buffer
2222 * @lenp: the size of the user buffer
2223 * @ppos: file position
2225 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2226 * values from/to the user buffer, treated as an ASCII string.
2227 * The values read are assumed to be in seconds, and are converted into
2230 * Returns 0 on success.
2232 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2233 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2235 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2236 do_proc_dointvec_jiffies_conv
,NULL
);
2240 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2241 * @table: the sysctl table
2242 * @write: %TRUE if this is a write to the sysctl file
2243 * @buffer: the user buffer
2244 * @lenp: the size of the user buffer
2245 * @ppos: pointer to the file position
2247 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2248 * values from/to the user buffer, treated as an ASCII string.
2249 * The values read are assumed to be in 1/USER_HZ seconds, and
2250 * are converted into jiffies.
2252 * Returns 0 on success.
2254 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2255 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2257 return do_proc_dointvec(table
,write
,buffer
,lenp
,ppos
,
2258 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2262 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2263 * @table: the sysctl table
2264 * @write: %TRUE if this is a write to the sysctl file
2265 * @buffer: the user buffer
2266 * @lenp: the size of the user buffer
2267 * @ppos: file position
2268 * @ppos: the current position in the file
2270 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2271 * values from/to the user buffer, treated as an ASCII string.
2272 * The values read are assumed to be in 1/1000 seconds, and
2273 * are converted into jiffies.
2275 * Returns 0 on success.
2277 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
2278 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2280 return do_proc_dointvec(table
, write
, buffer
, lenp
, ppos
,
2281 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2284 static int proc_do_cad_pid(struct ctl_table
*table
, int write
,
2285 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2287 struct pid
*new_pid
;
2291 tmp
= pid_vnr(cad_pid
);
2293 r
= __do_proc_dointvec(&tmp
, table
, write
, buffer
,
2294 lenp
, ppos
, NULL
, NULL
);
2298 new_pid
= find_get_pid(tmp
);
2302 put_pid(xchg(&cad_pid
, new_pid
));
2307 * proc_do_large_bitmap - read/write from/to a large bitmap
2308 * @table: the sysctl table
2309 * @write: %TRUE if this is a write to the sysctl file
2310 * @buffer: the user buffer
2311 * @lenp: the size of the user buffer
2312 * @ppos: file position
2314 * The bitmap is stored at table->data and the bitmap length (in bits)
2317 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2318 * large bitmaps may be represented in a compact manner. Writing into
2319 * the file will clear the bitmap then update it with the given input.
2321 * Returns 0 on success.
2323 int proc_do_large_bitmap(struct ctl_table
*table
, int write
,
2324 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2328 size_t left
= *lenp
;
2329 unsigned long bitmap_len
= table
->maxlen
;
2330 unsigned long *bitmap
= (unsigned long *) table
->data
;
2331 unsigned long *tmp_bitmap
= NULL
;
2332 char tr_a
[] = { '-', ',', '\n' }, tr_b
[] = { ',', '\n', 0 }, c
;
2334 if (!bitmap_len
|| !left
|| (*ppos
&& !write
)) {
2340 unsigned long page
= 0;
2343 if (left
> PAGE_SIZE
- 1)
2344 left
= PAGE_SIZE
- 1;
2346 page
= __get_free_page(GFP_TEMPORARY
);
2347 kbuf
= (char *) page
;
2350 if (copy_from_user(kbuf
, buffer
, left
)) {
2356 tmp_bitmap
= kzalloc(BITS_TO_LONGS(bitmap_len
) * sizeof(unsigned long),
2362 proc_skip_char(&kbuf
, &left
, '\n');
2363 while (!err
&& left
) {
2364 unsigned long val_a
, val_b
;
2367 err
= proc_get_long(&kbuf
, &left
, &val_a
, &neg
, tr_a
,
2371 if (val_a
>= bitmap_len
|| neg
) {
2383 err
= proc_get_long(&kbuf
, &left
, &val_b
,
2384 &neg
, tr_b
, sizeof(tr_b
),
2388 if (val_b
>= bitmap_len
|| neg
||
2399 bitmap_set(tmp_bitmap
, val_a
, val_b
- val_a
+ 1);
2401 proc_skip_char(&kbuf
, &left
, '\n');
2405 unsigned long bit_a
, bit_b
= 0;
2408 bit_a
= find_next_bit(bitmap
, bitmap_len
, bit_b
);
2409 if (bit_a
>= bitmap_len
)
2411 bit_b
= find_next_zero_bit(bitmap
, bitmap_len
,
2415 err
= proc_put_char(&buffer
, &left
, ',');
2419 err
= proc_put_long(&buffer
, &left
, bit_a
, false);
2422 if (bit_a
!= bit_b
) {
2423 err
= proc_put_char(&buffer
, &left
, '-');
2426 err
= proc_put_long(&buffer
, &left
, bit_b
, false);
2434 err
= proc_put_char(&buffer
, &left
, '\n');
2440 bitmap_or(bitmap
, bitmap
, tmp_bitmap
, bitmap_len
);
2442 bitmap_copy(bitmap
, tmp_bitmap
, bitmap_len
);
2454 #else /* CONFIG_PROC_SYSCTL */
2456 int proc_dostring(struct ctl_table
*table
, int write
,
2457 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2462 int proc_dointvec(struct ctl_table
*table
, int write
,
2463 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2468 int proc_dointvec_minmax(struct ctl_table
*table
, int write
,
2469 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2474 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
,
2475 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2480 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
,
2481 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2486 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
,
2487 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2492 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2493 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2498 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2499 void __user
*buffer
,
2500 size_t *lenp
, loff_t
*ppos
)
2506 #endif /* CONFIG_PROC_SYSCTL */
2509 * No sense putting this after each symbol definition, twice,
2510 * exception granted :-)
2512 EXPORT_SYMBOL(proc_dointvec
);
2513 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2514 EXPORT_SYMBOL(proc_dointvec_minmax
);
2515 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2516 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2517 EXPORT_SYMBOL(proc_dostring
);
2518 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2519 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);