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;
123 static int neg_one = -1;
127 static int __maybe_unused one = 1;
128 static int __maybe_unused two = 2;
129 static int __maybe_unused three = 3;
130 static unsigned long one_ul = 1;
131 static int one_hundred = 100;
133 static int ten_thousand = 10000;
136 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
137 static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
139 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
140 static int maxolduid = 65535;
141 static int minolduid;
142 static int min_percpu_pagelist_fract = 8;
144 static int ngroups_max = NGROUPS_MAX;
145 static const int cap_last_cap = CAP_LAST_CAP;
147 #ifdef CONFIG_INOTIFY_USER
148 #include <linux/inotify.h>
153 #ifdef CONFIG_SPARC64
154 extern int sysctl_tsb_ratio;
158 extern int pwrsw_enabled;
161 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
162 extern int unaligned_enabled;
166 extern int unaligned_dump_stack;
169 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
170 extern int no_unaligned_warning;
173 #ifdef CONFIG_PROC_SYSCTL
174 static int proc_do_cad_pid(struct ctl_table *table, int write,
175 void __user *buffer, size_t *lenp, loff_t *ppos);
176 static int proc_taint(struct ctl_table *table, int write,
177 void __user *buffer, size_t *lenp, loff_t *ppos);
181 static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
182 void __user *buffer, size_t *lenp, loff_t *ppos);
185 static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
186 void __user *buffer, size_t *lenp, loff_t *ppos);
187 #ifdef CONFIG_COREDUMP
188 static int proc_dostring_coredump(struct ctl_table *table, int write,
189 void __user *buffer, size_t *lenp, loff_t *ppos);
192 #ifdef CONFIG_MAGIC_SYSRQ
193 /* Note: sysrq code uses it's own private copy */
194 static int __sysrq_enabled = SYSRQ_DEFAULT_ENABLE;
196 static int sysrq_sysctl_handler(ctl_table *table, int write,
197 void __user *buffer, size_t *lenp,
202 error = proc_dointvec(table, write, buffer, lenp, ppos);
207 sysrq_toggle_support(__sysrq_enabled);
214 static struct ctl_table kern_table[];
215 static struct ctl_table vm_table[];
216 static struct ctl_table fs_table[];
217 static struct ctl_table debug_table[];
218 static struct ctl_table dev_table[];
219 extern struct ctl_table random_table[];
221 extern struct ctl_table epoll_table[];
224 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
225 int sysctl_legacy_va_layout;
228 /* The default sysctl tables: */
230 static struct ctl_table sysctl_base_table[] = {
232 .procname = "kernel",
249 .child = debug_table,
259 #ifdef CONFIG_SCHED_DEBUG
260 static int min_sched_granularity_ns = 100000; /* 100 usecs */
261 static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
262 static int min_wakeup_granularity_ns; /* 0 usecs */
263 static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
265 static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
266 static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
267 #endif /* CONFIG_SMP */
268 #endif /* CONFIG_SCHED_DEBUG */
270 #ifdef CONFIG_COMPACTION
271 static int min_extfrag_threshold;
272 static int max_extfrag_threshold = 1000;
275 static struct ctl_table kern_table[] = {
277 .procname = "sched_child_runs_first",
278 .data = &sysctl_sched_child_runs_first,
279 .maxlen = sizeof(unsigned int),
281 .proc_handler = proc_dointvec,
283 #ifdef CONFIG_SCHED_DEBUG
285 .procname = "sched_min_granularity_ns",
286 .data = &sysctl_sched_min_granularity,
287 .maxlen = sizeof(unsigned int),
289 .proc_handler = sched_proc_update_handler,
290 .extra1 = &min_sched_granularity_ns,
291 .extra2 = &max_sched_granularity_ns,
294 .procname = "sched_latency_ns",
295 .data = &sysctl_sched_latency,
296 .maxlen = sizeof(unsigned int),
298 .proc_handler = sched_proc_update_handler,
299 .extra1 = &min_sched_granularity_ns,
300 .extra2 = &max_sched_granularity_ns,
303 .procname = "sched_wakeup_granularity_ns",
304 .data = &sysctl_sched_wakeup_granularity,
305 .maxlen = sizeof(unsigned int),
307 .proc_handler = sched_proc_update_handler,
308 .extra1 = &min_wakeup_granularity_ns,
309 .extra2 = &max_wakeup_granularity_ns,
313 .procname = "sched_tunable_scaling",
314 .data = &sysctl_sched_tunable_scaling,
315 .maxlen = sizeof(enum sched_tunable_scaling),
317 .proc_handler = sched_proc_update_handler,
318 .extra1 = &min_sched_tunable_scaling,
319 .extra2 = &max_sched_tunable_scaling,
322 .procname = "sched_migration_cost_ns",
323 .data = &sysctl_sched_migration_cost,
324 .maxlen = sizeof(unsigned int),
326 .proc_handler = proc_dointvec,
329 .procname = "sched_nr_migrate",
330 .data = &sysctl_sched_nr_migrate,
331 .maxlen = sizeof(unsigned int),
333 .proc_handler = proc_dointvec,
336 .procname = "sched_time_avg_ms",
337 .data = &sysctl_sched_time_avg,
338 .maxlen = sizeof(unsigned int),
340 .proc_handler = proc_dointvec,
343 .procname = "sched_shares_window_ns",
344 .data = &sysctl_sched_shares_window,
345 .maxlen = sizeof(unsigned int),
347 .proc_handler = proc_dointvec,
350 .procname = "timer_migration",
351 .data = &sysctl_timer_migration,
352 .maxlen = sizeof(unsigned int),
354 .proc_handler = proc_dointvec_minmax,
358 #endif /* CONFIG_SMP */
359 #ifdef CONFIG_NUMA_BALANCING
361 .procname = "numa_balancing_scan_delay_ms",
362 .data = &sysctl_numa_balancing_scan_delay,
363 .maxlen = sizeof(unsigned int),
365 .proc_handler = proc_dointvec,
368 .procname = "numa_balancing_scan_period_min_ms",
369 .data = &sysctl_numa_balancing_scan_period_min,
370 .maxlen = sizeof(unsigned int),
372 .proc_handler = proc_dointvec,
375 .procname = "numa_balancing_scan_period_reset",
376 .data = &sysctl_numa_balancing_scan_period_reset,
377 .maxlen = sizeof(unsigned int),
379 .proc_handler = proc_dointvec,
382 .procname = "numa_balancing_scan_period_max_ms",
383 .data = &sysctl_numa_balancing_scan_period_max,
384 .maxlen = sizeof(unsigned int),
386 .proc_handler = proc_dointvec,
389 .procname = "numa_balancing_scan_size_mb",
390 .data = &sysctl_numa_balancing_scan_size,
391 .maxlen = sizeof(unsigned int),
393 .proc_handler = proc_dointvec,
395 #endif /* CONFIG_NUMA_BALANCING */
396 #endif /* CONFIG_SCHED_DEBUG */
398 .procname = "sched_rt_period_us",
399 .data = &sysctl_sched_rt_period,
400 .maxlen = sizeof(unsigned int),
402 .proc_handler = sched_rt_handler,
405 .procname = "sched_rt_runtime_us",
406 .data = &sysctl_sched_rt_runtime,
407 .maxlen = sizeof(int),
409 .proc_handler = sched_rt_handler,
412 .procname = "sched_rr_timeslice_ms",
413 .data = &sched_rr_timeslice,
414 .maxlen = sizeof(int),
416 .proc_handler = sched_rr_handler,
418 #ifdef CONFIG_SCHED_AUTOGROUP
420 .procname = "sched_autogroup_enabled",
421 .data = &sysctl_sched_autogroup_enabled,
422 .maxlen = sizeof(unsigned int),
424 .proc_handler = proc_dointvec_minmax,
429 #ifdef CONFIG_CFS_BANDWIDTH
431 .procname = "sched_cfs_bandwidth_slice_us",
432 .data = &sysctl_sched_cfs_bandwidth_slice,
433 .maxlen = sizeof(unsigned int),
435 .proc_handler = proc_dointvec_minmax,
439 #ifdef CONFIG_PROVE_LOCKING
441 .procname = "prove_locking",
442 .data = &prove_locking,
443 .maxlen = sizeof(int),
445 .proc_handler = proc_dointvec,
448 #ifdef CONFIG_LOCK_STAT
450 .procname = "lock_stat",
452 .maxlen = sizeof(int),
454 .proc_handler = proc_dointvec,
459 .data = &panic_timeout,
460 .maxlen = sizeof(int),
462 .proc_handler = proc_dointvec,
464 #ifdef CONFIG_COREDUMP
466 .procname = "core_uses_pid",
467 .data = &core_uses_pid,
468 .maxlen = sizeof(int),
470 .proc_handler = proc_dointvec,
473 .procname = "core_pattern",
474 .data = core_pattern,
475 .maxlen = CORENAME_MAX_SIZE,
477 .proc_handler = proc_dostring_coredump,
480 .procname = "core_pipe_limit",
481 .data = &core_pipe_limit,
482 .maxlen = sizeof(unsigned int),
484 .proc_handler = proc_dointvec,
487 #ifdef CONFIG_PROC_SYSCTL
489 .procname = "tainted",
490 .maxlen = sizeof(long),
492 .proc_handler = proc_taint,
495 #ifdef CONFIG_LATENCYTOP
497 .procname = "latencytop",
498 .data = &latencytop_enabled,
499 .maxlen = sizeof(int),
501 .proc_handler = proc_dointvec,
504 #ifdef CONFIG_BLK_DEV_INITRD
506 .procname = "real-root-dev",
507 .data = &real_root_dev,
508 .maxlen = sizeof(int),
510 .proc_handler = proc_dointvec,
514 .procname = "print-fatal-signals",
515 .data = &print_fatal_signals,
516 .maxlen = sizeof(int),
518 .proc_handler = proc_dointvec,
522 .procname = "reboot-cmd",
523 .data = reboot_command,
526 .proc_handler = proc_dostring,
529 .procname = "stop-a",
530 .data = &stop_a_enabled,
531 .maxlen = sizeof (int),
533 .proc_handler = proc_dointvec,
536 .procname = "scons-poweroff",
537 .data = &scons_pwroff,
538 .maxlen = sizeof (int),
540 .proc_handler = proc_dointvec,
543 #ifdef CONFIG_SPARC64
545 .procname = "tsb-ratio",
546 .data = &sysctl_tsb_ratio,
547 .maxlen = sizeof (int),
549 .proc_handler = proc_dointvec,
554 .procname = "soft-power",
555 .data = &pwrsw_enabled,
556 .maxlen = sizeof (int),
558 .proc_handler = proc_dointvec,
561 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
563 .procname = "unaligned-trap",
564 .data = &unaligned_enabled,
565 .maxlen = sizeof (int),
567 .proc_handler = proc_dointvec,
571 .procname = "ctrl-alt-del",
573 .maxlen = sizeof(int),
575 .proc_handler = proc_dointvec,
577 #ifdef CONFIG_FUNCTION_TRACER
579 .procname = "ftrace_enabled",
580 .data = &ftrace_enabled,
581 .maxlen = sizeof(int),
583 .proc_handler = ftrace_enable_sysctl,
586 #ifdef CONFIG_STACK_TRACER
588 .procname = "stack_tracer_enabled",
589 .data = &stack_tracer_enabled,
590 .maxlen = sizeof(int),
592 .proc_handler = stack_trace_sysctl,
595 #ifdef CONFIG_TRACING
597 .procname = "ftrace_dump_on_oops",
598 .data = &ftrace_dump_on_oops,
599 .maxlen = sizeof(int),
601 .proc_handler = proc_dointvec,
604 #ifdef CONFIG_MODULES
606 .procname = "modprobe",
607 .data = &modprobe_path,
608 .maxlen = KMOD_PATH_LEN,
610 .proc_handler = proc_dostring,
613 .procname = "modules_disabled",
614 .data = &modules_disabled,
615 .maxlen = sizeof(int),
617 /* only handle a transition from default "0" to "1" */
618 .proc_handler = proc_dointvec_minmax,
625 .procname = "hotplug",
626 .data = &uevent_helper,
627 .maxlen = UEVENT_HELPER_PATH_LEN,
629 .proc_handler = proc_dostring,
632 #ifdef CONFIG_CHR_DEV_SG
634 .procname = "sg-big-buff",
635 .data = &sg_big_buff,
636 .maxlen = sizeof (int),
638 .proc_handler = proc_dointvec,
641 #ifdef CONFIG_BSD_PROCESS_ACCT
645 .maxlen = 3*sizeof(int),
647 .proc_handler = proc_dointvec,
650 #ifdef CONFIG_MAGIC_SYSRQ
653 .data = &__sysrq_enabled,
654 .maxlen = sizeof (int),
656 .proc_handler = sysrq_sysctl_handler,
659 #ifdef CONFIG_PROC_SYSCTL
661 .procname = "cad_pid",
663 .maxlen = sizeof (int),
665 .proc_handler = proc_do_cad_pid,
669 .procname = "threads-max",
670 .data = &max_threads,
671 .maxlen = sizeof(int),
673 .proc_handler = proc_dointvec,
676 .procname = "random",
678 .child = random_table,
681 .procname = "usermodehelper",
683 .child = usermodehelper_table,
686 .procname = "overflowuid",
687 .data = &overflowuid,
688 .maxlen = sizeof(int),
690 .proc_handler = proc_dointvec_minmax,
691 .extra1 = &minolduid,
692 .extra2 = &maxolduid,
695 .procname = "overflowgid",
696 .data = &overflowgid,
697 .maxlen = sizeof(int),
699 .proc_handler = proc_dointvec_minmax,
700 .extra1 = &minolduid,
701 .extra2 = &maxolduid,
704 #ifdef CONFIG_MATHEMU
706 .procname = "ieee_emulation_warnings",
707 .data = &sysctl_ieee_emulation_warnings,
708 .maxlen = sizeof(int),
710 .proc_handler = proc_dointvec,
714 .procname = "userprocess_debug",
715 .data = &show_unhandled_signals,
716 .maxlen = sizeof(int),
718 .proc_handler = proc_dointvec,
722 .procname = "pid_max",
724 .maxlen = sizeof (int),
726 .proc_handler = proc_dointvec_minmax,
727 .extra1 = &pid_max_min,
728 .extra2 = &pid_max_max,
731 .procname = "panic_on_oops",
732 .data = &panic_on_oops,
733 .maxlen = sizeof(int),
735 .proc_handler = proc_dointvec,
737 #if defined CONFIG_PRINTK
739 .procname = "printk",
740 .data = &console_loglevel,
741 .maxlen = 4*sizeof(int),
743 .proc_handler = proc_dointvec,
746 .procname = "printk_ratelimit",
747 .data = &printk_ratelimit_state.interval,
748 .maxlen = sizeof(int),
750 .proc_handler = proc_dointvec_jiffies,
753 .procname = "printk_ratelimit_burst",
754 .data = &printk_ratelimit_state.burst,
755 .maxlen = sizeof(int),
757 .proc_handler = proc_dointvec,
760 .procname = "printk_delay",
761 .data = &printk_delay_msec,
762 .maxlen = sizeof(int),
764 .proc_handler = proc_dointvec_minmax,
766 .extra2 = &ten_thousand,
769 .procname = "dmesg_restrict",
770 .data = &dmesg_restrict,
771 .maxlen = sizeof(int),
773 .proc_handler = proc_dointvec_minmax_sysadmin,
778 .procname = "kptr_restrict",
779 .data = &kptr_restrict,
780 .maxlen = sizeof(int),
782 .proc_handler = proc_dointvec_minmax_sysadmin,
788 .procname = "ngroups_max",
789 .data = &ngroups_max,
790 .maxlen = sizeof (int),
792 .proc_handler = proc_dointvec,
795 .procname = "cap_last_cap",
796 .data = (void *)&cap_last_cap,
797 .maxlen = sizeof(int),
799 .proc_handler = proc_dointvec,
801 #if defined(CONFIG_LOCKUP_DETECTOR)
803 .procname = "watchdog",
804 .data = &watchdog_enabled,
805 .maxlen = sizeof (int),
807 .proc_handler = proc_dowatchdog,
812 .procname = "watchdog_thresh",
813 .data = &watchdog_thresh,
814 .maxlen = sizeof(int),
816 .proc_handler = proc_dowatchdog,
821 .procname = "softlockup_panic",
822 .data = &softlockup_panic,
823 .maxlen = sizeof(int),
825 .proc_handler = proc_dointvec_minmax,
830 .procname = "nmi_watchdog",
831 .data = &watchdog_enabled,
832 .maxlen = sizeof (int),
834 .proc_handler = proc_dowatchdog,
839 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
841 .procname = "unknown_nmi_panic",
842 .data = &unknown_nmi_panic,
843 .maxlen = sizeof (int),
845 .proc_handler = proc_dointvec,
848 #if defined(CONFIG_X86)
850 .procname = "panic_on_unrecovered_nmi",
851 .data = &panic_on_unrecovered_nmi,
852 .maxlen = sizeof(int),
854 .proc_handler = proc_dointvec,
857 .procname = "panic_on_io_nmi",
858 .data = &panic_on_io_nmi,
859 .maxlen = sizeof(int),
861 .proc_handler = proc_dointvec,
863 #ifdef CONFIG_DEBUG_STACKOVERFLOW
865 .procname = "panic_on_stackoverflow",
866 .data = &sysctl_panic_on_stackoverflow,
867 .maxlen = sizeof(int),
869 .proc_handler = proc_dointvec,
873 .procname = "bootloader_type",
874 .data = &bootloader_type,
875 .maxlen = sizeof (int),
877 .proc_handler = proc_dointvec,
880 .procname = "bootloader_version",
881 .data = &bootloader_version,
882 .maxlen = sizeof (int),
884 .proc_handler = proc_dointvec,
887 .procname = "kstack_depth_to_print",
888 .data = &kstack_depth_to_print,
889 .maxlen = sizeof(int),
891 .proc_handler = proc_dointvec,
894 .procname = "io_delay_type",
895 .data = &io_delay_type,
896 .maxlen = sizeof(int),
898 .proc_handler = proc_dointvec,
901 #if defined(CONFIG_MMU)
903 .procname = "randomize_va_space",
904 .data = &randomize_va_space,
905 .maxlen = sizeof(int),
907 .proc_handler = proc_dointvec,
910 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
912 .procname = "spin_retry",
914 .maxlen = sizeof (int),
916 .proc_handler = proc_dointvec,
919 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
921 .procname = "acpi_video_flags",
922 .data = &acpi_realmode_flags,
923 .maxlen = sizeof (unsigned long),
925 .proc_handler = proc_doulongvec_minmax,
928 #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
930 .procname = "ignore-unaligned-usertrap",
931 .data = &no_unaligned_warning,
932 .maxlen = sizeof (int),
934 .proc_handler = proc_dointvec,
939 .procname = "unaligned-dump-stack",
940 .data = &unaligned_dump_stack,
941 .maxlen = sizeof (int),
943 .proc_handler = proc_dointvec,
946 #ifdef CONFIG_DETECT_HUNG_TASK
948 .procname = "hung_task_panic",
949 .data = &sysctl_hung_task_panic,
950 .maxlen = sizeof(int),
952 .proc_handler = proc_dointvec_minmax,
957 .procname = "hung_task_check_count",
958 .data = &sysctl_hung_task_check_count,
959 .maxlen = sizeof(unsigned long),
961 .proc_handler = proc_doulongvec_minmax,
964 .procname = "hung_task_timeout_secs",
965 .data = &sysctl_hung_task_timeout_secs,
966 .maxlen = sizeof(unsigned long),
968 .proc_handler = proc_dohung_task_timeout_secs,
971 .procname = "hung_task_warnings",
972 .data = &sysctl_hung_task_warnings,
973 .maxlen = sizeof(unsigned long),
975 .proc_handler = proc_doulongvec_minmax,
980 .procname = "compat-log",
982 .maxlen = sizeof (int),
984 .proc_handler = proc_dointvec,
987 #ifdef CONFIG_RT_MUTEXES
989 .procname = "max_lock_depth",
990 .data = &max_lock_depth,
991 .maxlen = sizeof(int),
993 .proc_handler = proc_dointvec,
997 .procname = "poweroff_cmd",
998 .data = &poweroff_cmd,
999 .maxlen = POWEROFF_CMD_PATH_LEN,
1001 .proc_handler = proc_dostring,
1007 .child = key_sysctls,
1010 #ifdef CONFIG_RCU_TORTURE_TEST
1012 .procname = "rcutorture_runnable",
1013 .data = &rcutorture_runnable,
1014 .maxlen = sizeof(int),
1016 .proc_handler = proc_dointvec,
1019 #ifdef CONFIG_PERF_EVENTS
1021 * User-space scripts rely on the existence of this file
1022 * as a feature check for perf_events being enabled.
1024 * So it's an ABI, do not remove!
1027 .procname = "perf_event_paranoid",
1028 .data = &sysctl_perf_event_paranoid,
1029 .maxlen = sizeof(sysctl_perf_event_paranoid),
1031 .proc_handler = proc_dointvec,
1034 .procname = "perf_event_mlock_kb",
1035 .data = &sysctl_perf_event_mlock,
1036 .maxlen = sizeof(sysctl_perf_event_mlock),
1038 .proc_handler = proc_dointvec,
1041 .procname = "perf_event_max_sample_rate",
1042 .data = &sysctl_perf_event_sample_rate,
1043 .maxlen = sizeof(sysctl_perf_event_sample_rate),
1045 .proc_handler = perf_proc_update_handler,
1048 #ifdef CONFIG_KMEMCHECK
1050 .procname = "kmemcheck",
1051 .data = &kmemcheck_enabled,
1052 .maxlen = sizeof(int),
1054 .proc_handler = proc_dointvec,
1059 .procname = "blk_iopoll",
1060 .data = &blk_iopoll_enabled,
1061 .maxlen = sizeof(int),
1063 .proc_handler = proc_dointvec,
1069 static struct ctl_table vm_table[] = {
1071 .procname = "overcommit_memory",
1072 .data = &sysctl_overcommit_memory,
1073 .maxlen = sizeof(sysctl_overcommit_memory),
1075 .proc_handler = proc_dointvec_minmax,
1080 .procname = "panic_on_oom",
1081 .data = &sysctl_panic_on_oom,
1082 .maxlen = sizeof(sysctl_panic_on_oom),
1084 .proc_handler = proc_dointvec_minmax,
1089 .procname = "oom_kill_allocating_task",
1090 .data = &sysctl_oom_kill_allocating_task,
1091 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1093 .proc_handler = proc_dointvec,
1096 .procname = "oom_dump_tasks",
1097 .data = &sysctl_oom_dump_tasks,
1098 .maxlen = sizeof(sysctl_oom_dump_tasks),
1100 .proc_handler = proc_dointvec,
1103 .procname = "overcommit_ratio",
1104 .data = &sysctl_overcommit_ratio,
1105 .maxlen = sizeof(sysctl_overcommit_ratio),
1107 .proc_handler = proc_dointvec,
1110 .procname = "page-cluster",
1111 .data = &page_cluster,
1112 .maxlen = sizeof(int),
1114 .proc_handler = proc_dointvec_minmax,
1118 .procname = "dirty_background_ratio",
1119 .data = &dirty_background_ratio,
1120 .maxlen = sizeof(dirty_background_ratio),
1122 .proc_handler = dirty_background_ratio_handler,
1124 .extra2 = &one_hundred,
1127 .procname = "dirty_background_bytes",
1128 .data = &dirty_background_bytes,
1129 .maxlen = sizeof(dirty_background_bytes),
1131 .proc_handler = dirty_background_bytes_handler,
1135 .procname = "dirty_ratio",
1136 .data = &vm_dirty_ratio,
1137 .maxlen = sizeof(vm_dirty_ratio),
1139 .proc_handler = dirty_ratio_handler,
1141 .extra2 = &one_hundred,
1144 .procname = "dirty_bytes",
1145 .data = &vm_dirty_bytes,
1146 .maxlen = sizeof(vm_dirty_bytes),
1148 .proc_handler = dirty_bytes_handler,
1149 .extra1 = &dirty_bytes_min,
1152 .procname = "dirty_writeback_centisecs",
1153 .data = &dirty_writeback_interval,
1154 .maxlen = sizeof(dirty_writeback_interval),
1156 .proc_handler = dirty_writeback_centisecs_handler,
1159 .procname = "dirty_expire_centisecs",
1160 .data = &dirty_expire_interval,
1161 .maxlen = sizeof(dirty_expire_interval),
1163 .proc_handler = proc_dointvec_minmax,
1167 .procname = "nr_pdflush_threads",
1168 .mode = 0444 /* read-only */,
1169 .proc_handler = pdflush_proc_obsolete,
1172 .procname = "swappiness",
1173 .data = &vm_swappiness,
1174 .maxlen = sizeof(vm_swappiness),
1176 .proc_handler = proc_dointvec_minmax,
1178 .extra2 = &one_hundred,
1180 #ifdef CONFIG_HUGETLB_PAGE
1182 .procname = "nr_hugepages",
1184 .maxlen = sizeof(unsigned long),
1186 .proc_handler = hugetlb_sysctl_handler,
1187 .extra1 = (void *)&hugetlb_zero,
1188 .extra2 = (void *)&hugetlb_infinity,
1192 .procname = "nr_hugepages_mempolicy",
1194 .maxlen = sizeof(unsigned long),
1196 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
1197 .extra1 = (void *)&hugetlb_zero,
1198 .extra2 = (void *)&hugetlb_infinity,
1202 .procname = "hugetlb_shm_group",
1203 .data = &sysctl_hugetlb_shm_group,
1204 .maxlen = sizeof(gid_t),
1206 .proc_handler = proc_dointvec,
1209 .procname = "hugepages_treat_as_movable",
1210 .data = &hugepages_treat_as_movable,
1211 .maxlen = sizeof(int),
1213 .proc_handler = hugetlb_treat_movable_handler,
1216 .procname = "nr_overcommit_hugepages",
1218 .maxlen = sizeof(unsigned long),
1220 .proc_handler = hugetlb_overcommit_handler,
1221 .extra1 = (void *)&hugetlb_zero,
1222 .extra2 = (void *)&hugetlb_infinity,
1226 .procname = "lowmem_reserve_ratio",
1227 .data = &sysctl_lowmem_reserve_ratio,
1228 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1230 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
1233 .procname = "drop_caches",
1234 .data = &sysctl_drop_caches,
1235 .maxlen = sizeof(int),
1237 .proc_handler = drop_caches_sysctl_handler,
1241 #ifdef CONFIG_COMPACTION
1243 .procname = "compact_memory",
1244 .data = &sysctl_compact_memory,
1245 .maxlen = sizeof(int),
1247 .proc_handler = sysctl_compaction_handler,
1250 .procname = "extfrag_threshold",
1251 .data = &sysctl_extfrag_threshold,
1252 .maxlen = sizeof(int),
1254 .proc_handler = sysctl_extfrag_handler,
1255 .extra1 = &min_extfrag_threshold,
1256 .extra2 = &max_extfrag_threshold,
1259 #endif /* CONFIG_COMPACTION */
1261 .procname = "min_free_kbytes",
1262 .data = &min_free_kbytes,
1263 .maxlen = sizeof(min_free_kbytes),
1265 .proc_handler = min_free_kbytes_sysctl_handler,
1269 .procname = "percpu_pagelist_fraction",
1270 .data = &percpu_pagelist_fraction,
1271 .maxlen = sizeof(percpu_pagelist_fraction),
1273 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
1274 .extra1 = &min_percpu_pagelist_fract,
1278 .procname = "max_map_count",
1279 .data = &sysctl_max_map_count,
1280 .maxlen = sizeof(sysctl_max_map_count),
1282 .proc_handler = proc_dointvec_minmax,
1287 .procname = "nr_trim_pages",
1288 .data = &sysctl_nr_trim_pages,
1289 .maxlen = sizeof(sysctl_nr_trim_pages),
1291 .proc_handler = proc_dointvec_minmax,
1296 .procname = "laptop_mode",
1297 .data = &laptop_mode,
1298 .maxlen = sizeof(laptop_mode),
1300 .proc_handler = proc_dointvec_jiffies,
1303 .procname = "block_dump",
1304 .data = &block_dump,
1305 .maxlen = sizeof(block_dump),
1307 .proc_handler = proc_dointvec,
1311 .procname = "vfs_cache_pressure",
1312 .data = &sysctl_vfs_cache_pressure,
1313 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1315 .proc_handler = proc_dointvec,
1318 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1320 .procname = "legacy_va_layout",
1321 .data = &sysctl_legacy_va_layout,
1322 .maxlen = sizeof(sysctl_legacy_va_layout),
1324 .proc_handler = proc_dointvec,
1330 .procname = "zone_reclaim_mode",
1331 .data = &zone_reclaim_mode,
1332 .maxlen = sizeof(zone_reclaim_mode),
1334 .proc_handler = proc_dointvec,
1338 .procname = "min_unmapped_ratio",
1339 .data = &sysctl_min_unmapped_ratio,
1340 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1342 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
1344 .extra2 = &one_hundred,
1347 .procname = "min_slab_ratio",
1348 .data = &sysctl_min_slab_ratio,
1349 .maxlen = sizeof(sysctl_min_slab_ratio),
1351 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
1353 .extra2 = &one_hundred,
1358 .procname = "stat_interval",
1359 .data = &sysctl_stat_interval,
1360 .maxlen = sizeof(sysctl_stat_interval),
1362 .proc_handler = proc_dointvec_jiffies,
1367 .procname = "mmap_min_addr",
1368 .data = &dac_mmap_min_addr,
1369 .maxlen = sizeof(unsigned long),
1371 .proc_handler = mmap_min_addr_handler,
1376 .procname = "numa_zonelist_order",
1377 .data = &numa_zonelist_order,
1378 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1380 .proc_handler = numa_zonelist_order_handler,
1383 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1384 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1386 .procname = "vdso_enabled",
1387 .data = &vdso_enabled,
1388 .maxlen = sizeof(vdso_enabled),
1390 .proc_handler = proc_dointvec,
1394 #ifdef CONFIG_HIGHMEM
1396 .procname = "highmem_is_dirtyable",
1397 .data = &vm_highmem_is_dirtyable,
1398 .maxlen = sizeof(vm_highmem_is_dirtyable),
1400 .proc_handler = proc_dointvec_minmax,
1406 .procname = "scan_unevictable_pages",
1407 .data = &scan_unevictable_pages,
1408 .maxlen = sizeof(scan_unevictable_pages),
1410 .proc_handler = scan_unevictable_handler,
1412 #ifdef CONFIG_MEMORY_FAILURE
1414 .procname = "memory_failure_early_kill",
1415 .data = &sysctl_memory_failure_early_kill,
1416 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1418 .proc_handler = proc_dointvec_minmax,
1423 .procname = "memory_failure_recovery",
1424 .data = &sysctl_memory_failure_recovery,
1425 .maxlen = sizeof(sysctl_memory_failure_recovery),
1427 .proc_handler = proc_dointvec_minmax,
1435 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1436 static struct ctl_table binfmt_misc_table[] = {
1441 static struct ctl_table fs_table[] = {
1443 .procname = "inode-nr",
1444 .data = &inodes_stat,
1445 .maxlen = 2*sizeof(int),
1447 .proc_handler = proc_nr_inodes,
1450 .procname = "inode-state",
1451 .data = &inodes_stat,
1452 .maxlen = 7*sizeof(int),
1454 .proc_handler = proc_nr_inodes,
1457 .procname = "file-nr",
1458 .data = &files_stat,
1459 .maxlen = sizeof(files_stat),
1461 .proc_handler = proc_nr_files,
1464 .procname = "file-max",
1465 .data = &files_stat.max_files,
1466 .maxlen = sizeof(files_stat.max_files),
1468 .proc_handler = proc_doulongvec_minmax,
1471 .procname = "nr_open",
1472 .data = &sysctl_nr_open,
1473 .maxlen = sizeof(int),
1475 .proc_handler = proc_dointvec_minmax,
1476 .extra1 = &sysctl_nr_open_min,
1477 .extra2 = &sysctl_nr_open_max,
1480 .procname = "dentry-state",
1481 .data = &dentry_stat,
1482 .maxlen = 6*sizeof(int),
1484 .proc_handler = proc_nr_dentry,
1487 .procname = "overflowuid",
1488 .data = &fs_overflowuid,
1489 .maxlen = sizeof(int),
1491 .proc_handler = proc_dointvec_minmax,
1492 .extra1 = &minolduid,
1493 .extra2 = &maxolduid,
1496 .procname = "overflowgid",
1497 .data = &fs_overflowgid,
1498 .maxlen = sizeof(int),
1500 .proc_handler = proc_dointvec_minmax,
1501 .extra1 = &minolduid,
1502 .extra2 = &maxolduid,
1504 #ifdef CONFIG_FILE_LOCKING
1506 .procname = "leases-enable",
1507 .data = &leases_enable,
1508 .maxlen = sizeof(int),
1510 .proc_handler = proc_dointvec,
1513 #ifdef CONFIG_DNOTIFY
1515 .procname = "dir-notify-enable",
1516 .data = &dir_notify_enable,
1517 .maxlen = sizeof(int),
1519 .proc_handler = proc_dointvec,
1523 #ifdef CONFIG_FILE_LOCKING
1525 .procname = "lease-break-time",
1526 .data = &lease_break_time,
1527 .maxlen = sizeof(int),
1529 .proc_handler = proc_dointvec,
1534 .procname = "aio-nr",
1536 .maxlen = sizeof(aio_nr),
1538 .proc_handler = proc_doulongvec_minmax,
1541 .procname = "aio-max-nr",
1542 .data = &aio_max_nr,
1543 .maxlen = sizeof(aio_max_nr),
1545 .proc_handler = proc_doulongvec_minmax,
1547 #endif /* CONFIG_AIO */
1548 #ifdef CONFIG_INOTIFY_USER
1550 .procname = "inotify",
1552 .child = inotify_table,
1557 .procname = "epoll",
1559 .child = epoll_table,
1564 .procname = "protected_symlinks",
1565 .data = &sysctl_protected_symlinks,
1566 .maxlen = sizeof(int),
1568 .proc_handler = proc_dointvec_minmax,
1573 .procname = "protected_hardlinks",
1574 .data = &sysctl_protected_hardlinks,
1575 .maxlen = sizeof(int),
1577 .proc_handler = proc_dointvec_minmax,
1582 .procname = "suid_dumpable",
1583 .data = &suid_dumpable,
1584 .maxlen = sizeof(int),
1586 .proc_handler = proc_dointvec_minmax_coredump,
1590 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1592 .procname = "binfmt_misc",
1594 .child = binfmt_misc_table,
1598 .procname = "pipe-max-size",
1599 .data = &pipe_max_size,
1600 .maxlen = sizeof(int),
1602 .proc_handler = &pipe_proc_fn,
1603 .extra1 = &pipe_min_size,
1608 static struct ctl_table debug_table[] = {
1609 #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
1611 .procname = "exception-trace",
1612 .data = &show_unhandled_signals,
1613 .maxlen = sizeof(int),
1615 .proc_handler = proc_dointvec
1618 #if defined(CONFIG_OPTPROBES)
1620 .procname = "kprobes-optimization",
1621 .data = &sysctl_kprobes_optimization,
1622 .maxlen = sizeof(int),
1624 .proc_handler = proc_kprobes_optimization_handler,
1632 static struct ctl_table dev_table[] = {
1636 int __init sysctl_init(void)
1638 struct ctl_table_header *hdr;
1640 hdr = register_sysctl_table(sysctl_base_table);
1641 kmemleak_not_leak(hdr);
1645 #endif /* CONFIG_SYSCTL */
1651 #ifdef CONFIG_PROC_SYSCTL
1653 static int _proc_do_string(void* data, int maxlen, int write,
1654 void __user *buffer,
1655 size_t *lenp, loff_t *ppos)
1661 if (!data || !maxlen || !*lenp) {
1669 while (len < *lenp) {
1670 if (get_user(c, p++))
1672 if (c == 0 || c == '\n')
1678 if(copy_from_user(data, buffer, len))
1680 ((char *) data)[len] = 0;
1698 if(copy_to_user(buffer, data, len))
1701 if(put_user('\n', ((char __user *) buffer) + len))
1712 * proc_dostring - read a string sysctl
1713 * @table: the sysctl table
1714 * @write: %TRUE if this is a write to the sysctl file
1715 * @buffer: the user buffer
1716 * @lenp: the size of the user buffer
1717 * @ppos: file position
1719 * Reads/writes a string from/to the user buffer. If the kernel
1720 * buffer provided is not large enough to hold the string, the
1721 * string is truncated. The copied string is %NULL-terminated.
1722 * If the string is being read by the user process, it is copied
1723 * and a newline '\n' is added. It is truncated if the buffer is
1726 * Returns 0 on success.
1728 int proc_dostring(struct ctl_table *table, int write,
1729 void __user *buffer, size_t *lenp, loff_t *ppos)
1731 return _proc_do_string(table->data, table->maxlen, write,
1732 buffer, lenp, ppos);
1735 static size_t proc_skip_spaces(char **buf)
1738 char *tmp = skip_spaces(*buf);
1744 static void proc_skip_char(char **buf, size_t *size, const char v)
1754 #define TMPBUFLEN 22
1756 * proc_get_long - reads an ASCII formatted integer from a user buffer
1758 * @buf: a kernel buffer
1759 * @size: size of the kernel buffer
1760 * @val: this is where the number will be stored
1761 * @neg: set to %TRUE if number is negative
1762 * @perm_tr: a vector which contains the allowed trailers
1763 * @perm_tr_len: size of the perm_tr vector
1764 * @tr: pointer to store the trailer character
1766 * In case of success %0 is returned and @buf and @size are updated with
1767 * the amount of bytes read. If @tr is non-NULL and a trailing
1768 * character exists (size is non-zero after returning from this
1769 * function), @tr is updated with the trailing character.
1771 static int proc_get_long(char **buf, size_t *size,
1772 unsigned long *val, bool *neg,
1773 const char *perm_tr, unsigned perm_tr_len, char *tr)
1776 char *p, tmp[TMPBUFLEN];
1782 if (len > TMPBUFLEN - 1)
1783 len = TMPBUFLEN - 1;
1785 memcpy(tmp, *buf, len);
1789 if (*p == '-' && *size > 1) {
1797 *val = simple_strtoul(p, &p, 0);
1801 /* We don't know if the next char is whitespace thus we may accept
1802 * invalid integers (e.g. 1234...a) or two integers instead of one
1803 * (e.g. 123...1). So lets not allow such large numbers. */
1804 if (len == TMPBUFLEN - 1)
1807 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
1810 if (tr && (len < *size))
1820 * proc_put_long - converts an integer to a decimal ASCII formatted string
1822 * @buf: the user buffer
1823 * @size: the size of the user buffer
1824 * @val: the integer to be converted
1825 * @neg: sign of the number, %TRUE for negative
1827 * In case of success %0 is returned and @buf and @size are updated with
1828 * the amount of bytes written.
1830 static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
1834 char tmp[TMPBUFLEN], *p = tmp;
1836 sprintf(p, "%s%lu", neg ? "-" : "", val);
1840 if (copy_to_user(*buf, tmp, len))
1848 static int proc_put_char(void __user **buf, size_t *size, char c)
1851 char __user **buffer = (char __user **)buf;
1852 if (put_user(c, *buffer))
1854 (*size)--, (*buffer)++;
1860 static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
1862 int write, void *data)
1865 *valp = *negp ? -*lvalp : *lvalp;
1870 *lvalp = (unsigned long)-val;
1873 *lvalp = (unsigned long)val;
1879 static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
1881 static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
1882 int write, void __user *buffer,
1883 size_t *lenp, loff_t *ppos,
1884 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
1885 int write, void *data),
1888 int *i, vleft, first = 1, err = 0;
1889 unsigned long page = 0;
1893 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
1898 i = (int *) tbl_data;
1899 vleft = table->maxlen / sizeof(*i);
1903 conv = do_proc_dointvec_conv;
1906 if (left > PAGE_SIZE - 1)
1907 left = PAGE_SIZE - 1;
1908 page = __get_free_page(GFP_TEMPORARY);
1909 kbuf = (char *) page;
1912 if (copy_from_user(kbuf, buffer, left)) {
1919 for (; left && vleft--; i++, first=0) {
1924 left -= proc_skip_spaces(&kbuf);
1928 err = proc_get_long(&kbuf, &left, &lval, &neg,
1930 sizeof(proc_wspace_sep), NULL);
1933 if (conv(&neg, &lval, i, 1, data)) {
1938 if (conv(&neg, &lval, i, 0, data)) {
1943 err = proc_put_char(&buffer, &left, '\t');
1946 err = proc_put_long(&buffer, &left, lval, neg);
1952 if (!write && !first && left && !err)
1953 err = proc_put_char(&buffer, &left, '\n');
1954 if (write && !err && left)
1955 left -= proc_skip_spaces(&kbuf);
1960 return err ? : -EINVAL;
1967 static int do_proc_dointvec(struct ctl_table *table, int write,
1968 void __user *buffer, size_t *lenp, loff_t *ppos,
1969 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
1970 int write, void *data),
1973 return __do_proc_dointvec(table->data, table, write,
1974 buffer, lenp, ppos, conv, data);
1978 * proc_dointvec - read a vector of integers
1979 * @table: the sysctl table
1980 * @write: %TRUE if this is a write to the sysctl file
1981 * @buffer: the user buffer
1982 * @lenp: the size of the user buffer
1983 * @ppos: file position
1985 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1986 * values from/to the user buffer, treated as an ASCII string.
1988 * Returns 0 on success.
1990 int proc_dointvec(struct ctl_table *table, int write,
1991 void __user *buffer, size_t *lenp, loff_t *ppos)
1993 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1998 * Taint values can only be increased
1999 * This means we can safely use a temporary.
2001 static int proc_taint(struct ctl_table *table, int write,
2002 void __user *buffer, size_t *lenp, loff_t *ppos)
2005 unsigned long tmptaint = get_taint();
2008 if (write && !capable(CAP_SYS_ADMIN))
2013 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
2019 * Poor man's atomic or. Not worth adding a primitive
2020 * to everyone's atomic.h for this
2023 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2024 if ((tmptaint >> i) & 1)
2025 add_taint(i, LOCKDEP_STILL_OK);
2032 #ifdef CONFIG_PRINTK
2033 static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
2034 void __user *buffer, size_t *lenp, loff_t *ppos)
2036 if (write && !capable(CAP_SYS_ADMIN))
2039 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2043 struct do_proc_dointvec_minmax_conv_param {
2048 static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2050 int write, void *data)
2052 struct do_proc_dointvec_minmax_conv_param *param = data;
2054 int val = *negp ? -*lvalp : *lvalp;
2055 if ((param->min && *param->min > val) ||
2056 (param->max && *param->max < val))
2063 *lvalp = (unsigned long)-val;
2066 *lvalp = (unsigned long)val;
2073 * proc_dointvec_minmax - read a vector of integers with min/max values
2074 * @table: the sysctl table
2075 * @write: %TRUE if this is a write to the sysctl file
2076 * @buffer: the user buffer
2077 * @lenp: the size of the user buffer
2078 * @ppos: file position
2080 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2081 * values from/to the user buffer, treated as an ASCII string.
2083 * This routine will ensure the values are within the range specified by
2084 * table->extra1 (min) and table->extra2 (max).
2086 * Returns 0 on success.
2088 int proc_dointvec_minmax(struct ctl_table *table, int write,
2089 void __user *buffer, size_t *lenp, loff_t *ppos)
2091 struct do_proc_dointvec_minmax_conv_param param = {
2092 .min = (int *) table->extra1,
2093 .max = (int *) table->extra2,
2095 return do_proc_dointvec(table, write, buffer, lenp, ppos,
2096 do_proc_dointvec_minmax_conv, ¶m);
2099 static void validate_coredump_safety(void)
2101 #ifdef CONFIG_COREDUMP
2102 if (suid_dumpable == SUID_DUMP_ROOT &&
2103 core_pattern[0] != '/' && core_pattern[0] != '|') {
2104 printk(KERN_WARNING "Unsafe core_pattern used with "\
2105 "suid_dumpable=2. Pipe handler or fully qualified "\
2106 "core dump path required.\n");
2111 static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2112 void __user *buffer, size_t *lenp, loff_t *ppos)
2114 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2116 validate_coredump_safety();
2120 #ifdef CONFIG_COREDUMP
2121 static int proc_dostring_coredump(struct ctl_table *table, int write,
2122 void __user *buffer, size_t *lenp, loff_t *ppos)
2124 int error = proc_dostring(table, write, buffer, lenp, ppos);
2126 validate_coredump_safety();
2131 static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
2132 void __user *buffer,
2133 size_t *lenp, loff_t *ppos,
2134 unsigned long convmul,
2135 unsigned long convdiv)
2137 unsigned long *i, *min, *max;
2138 int vleft, first = 1, err = 0;
2139 unsigned long page = 0;
2143 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
2148 i = (unsigned long *) data;
2149 min = (unsigned long *) table->extra1;
2150 max = (unsigned long *) table->extra2;
2151 vleft = table->maxlen / sizeof(unsigned long);
2155 if (left > PAGE_SIZE - 1)
2156 left = PAGE_SIZE - 1;
2157 page = __get_free_page(GFP_TEMPORARY);
2158 kbuf = (char *) page;
2161 if (copy_from_user(kbuf, buffer, left)) {
2168 for (; left && vleft--; i++, first = 0) {
2174 left -= proc_skip_spaces(&kbuf);
2176 err = proc_get_long(&kbuf, &left, &val, &neg,
2178 sizeof(proc_wspace_sep), NULL);
2183 if ((min && val < *min) || (max && val > *max))
2187 val = convdiv * (*i) / convmul;
2189 err = proc_put_char(&buffer, &left, '\t');
2190 err = proc_put_long(&buffer, &left, val, false);
2196 if (!write && !first && left && !err)
2197 err = proc_put_char(&buffer, &left, '\n');
2199 left -= proc_skip_spaces(&kbuf);
2204 return err ? : -EINVAL;
2211 static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
2212 void __user *buffer,
2213 size_t *lenp, loff_t *ppos,
2214 unsigned long convmul,
2215 unsigned long convdiv)
2217 return __do_proc_doulongvec_minmax(table->data, table, write,
2218 buffer, lenp, ppos, convmul, convdiv);
2222 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2223 * @table: the sysctl table
2224 * @write: %TRUE if this is a write to the sysctl file
2225 * @buffer: the user buffer
2226 * @lenp: the size of the user buffer
2227 * @ppos: file position
2229 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2230 * values from/to the user buffer, treated as an ASCII string.
2232 * This routine will ensure the values are within the range specified by
2233 * table->extra1 (min) and table->extra2 (max).
2235 * Returns 0 on success.
2237 int proc_doulongvec_minmax(struct ctl_table *table, int write,
2238 void __user *buffer, size_t *lenp, loff_t *ppos)
2240 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
2244 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2245 * @table: the sysctl table
2246 * @write: %TRUE if this is a write to the sysctl file
2247 * @buffer: the user buffer
2248 * @lenp: the size of the user buffer
2249 * @ppos: file position
2251 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2252 * values from/to the user buffer, treated as an ASCII string. The values
2253 * are treated as milliseconds, and converted to jiffies when they are stored.
2255 * This routine will ensure the values are within the range specified by
2256 * table->extra1 (min) and table->extra2 (max).
2258 * Returns 0 on success.
2260 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
2261 void __user *buffer,
2262 size_t *lenp, loff_t *ppos)
2264 return do_proc_doulongvec_minmax(table, write, buffer,
2265 lenp, ppos, HZ, 1000l);
2269 static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
2271 int write, void *data)
2274 if (*lvalp > LONG_MAX / HZ)
2276 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2282 lval = (unsigned long)-val;
2285 lval = (unsigned long)val;
2292 static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
2294 int write, void *data)
2297 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2299 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2305 lval = (unsigned long)-val;
2308 lval = (unsigned long)val;
2310 *lvalp = jiffies_to_clock_t(lval);
2315 static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
2317 int write, void *data)
2320 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2326 lval = (unsigned long)-val;
2329 lval = (unsigned long)val;
2331 *lvalp = jiffies_to_msecs(lval);
2337 * proc_dointvec_jiffies - read a vector of integers as seconds
2338 * @table: the sysctl table
2339 * @write: %TRUE if this is a write to the sysctl file
2340 * @buffer: the user buffer
2341 * @lenp: the size of the user buffer
2342 * @ppos: file position
2344 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2345 * values from/to the user buffer, treated as an ASCII string.
2346 * The values read are assumed to be in seconds, and are converted into
2349 * Returns 0 on success.
2351 int proc_dointvec_jiffies(struct ctl_table *table, int write,
2352 void __user *buffer, size_t *lenp, loff_t *ppos)
2354 return do_proc_dointvec(table,write,buffer,lenp,ppos,
2355 do_proc_dointvec_jiffies_conv,NULL);
2359 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2360 * @table: the sysctl table
2361 * @write: %TRUE if this is a write to the sysctl file
2362 * @buffer: the user buffer
2363 * @lenp: the size of the user buffer
2364 * @ppos: pointer to the file position
2366 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2367 * values from/to the user buffer, treated as an ASCII string.
2368 * The values read are assumed to be in 1/USER_HZ seconds, and
2369 * are converted into jiffies.
2371 * Returns 0 on success.
2373 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
2374 void __user *buffer, size_t *lenp, loff_t *ppos)
2376 return do_proc_dointvec(table,write,buffer,lenp,ppos,
2377 do_proc_dointvec_userhz_jiffies_conv,NULL);
2381 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2382 * @table: the sysctl table
2383 * @write: %TRUE if this is a write to the sysctl file
2384 * @buffer: the user buffer
2385 * @lenp: the size of the user buffer
2386 * @ppos: file position
2387 * @ppos: the current position in the file
2389 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2390 * values from/to the user buffer, treated as an ASCII string.
2391 * The values read are assumed to be in 1/1000 seconds, and
2392 * are converted into jiffies.
2394 * Returns 0 on success.
2396 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
2397 void __user *buffer, size_t *lenp, loff_t *ppos)
2399 return do_proc_dointvec(table, write, buffer, lenp, ppos,
2400 do_proc_dointvec_ms_jiffies_conv, NULL);
2403 static int proc_do_cad_pid(struct ctl_table *table, int write,
2404 void __user *buffer, size_t *lenp, loff_t *ppos)
2406 struct pid *new_pid;
2410 tmp = pid_vnr(cad_pid);
2412 r = __do_proc_dointvec(&tmp, table, write, buffer,
2413 lenp, ppos, NULL, NULL);
2417 new_pid = find_get_pid(tmp);
2421 put_pid(xchg(&cad_pid, new_pid));
2426 * proc_do_large_bitmap - read/write from/to a large bitmap
2427 * @table: the sysctl table
2428 * @write: %TRUE if this is a write to the sysctl file
2429 * @buffer: the user buffer
2430 * @lenp: the size of the user buffer
2431 * @ppos: file position
2433 * The bitmap is stored at table->data and the bitmap length (in bits)
2436 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2437 * large bitmaps may be represented in a compact manner. Writing into
2438 * the file will clear the bitmap then update it with the given input.
2440 * Returns 0 on success.
2442 int proc_do_large_bitmap(struct ctl_table *table, int write,
2443 void __user *buffer, size_t *lenp, loff_t *ppos)
2447 size_t left = *lenp;
2448 unsigned long bitmap_len = table->maxlen;
2449 unsigned long *bitmap = (unsigned long *) table->data;
2450 unsigned long *tmp_bitmap = NULL;
2451 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
2453 if (!bitmap_len || !left || (*ppos && !write)) {
2459 unsigned long page = 0;
2462 if (left > PAGE_SIZE - 1)
2463 left = PAGE_SIZE - 1;
2465 page = __get_free_page(GFP_TEMPORARY);
2466 kbuf = (char *) page;
2469 if (copy_from_user(kbuf, buffer, left)) {
2475 tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
2481 proc_skip_char(&kbuf, &left, '\n');
2482 while (!err && left) {
2483 unsigned long val_a, val_b;
2486 err = proc_get_long(&kbuf, &left, &val_a, &neg, tr_a,
2490 if (val_a >= bitmap_len || neg) {
2502 err = proc_get_long(&kbuf, &left, &val_b,
2503 &neg, tr_b, sizeof(tr_b),
2507 if (val_b >= bitmap_len || neg ||
2518 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
2520 proc_skip_char(&kbuf, &left, '\n');
2524 unsigned long bit_a, bit_b = 0;
2527 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
2528 if (bit_a >= bitmap_len)
2530 bit_b = find_next_zero_bit(bitmap, bitmap_len,
2534 err = proc_put_char(&buffer, &left, ',');
2538 err = proc_put_long(&buffer, &left, bit_a, false);
2541 if (bit_a != bit_b) {
2542 err = proc_put_char(&buffer, &left, '-');
2545 err = proc_put_long(&buffer, &left, bit_b, false);
2553 err = proc_put_char(&buffer, &left, '\n');
2559 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
2561 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
2573 #else /* CONFIG_PROC_SYSCTL */
2575 int proc_dostring(struct ctl_table *table, int write,
2576 void __user *buffer, size_t *lenp, loff_t *ppos)
2581 int proc_dointvec(struct ctl_table *table, int write,
2582 void __user *buffer, size_t *lenp, loff_t *ppos)
2587 int proc_dointvec_minmax(struct ctl_table *table, int write,
2588 void __user *buffer, size_t *lenp, loff_t *ppos)
2593 int proc_dointvec_jiffies(struct ctl_table *table, int write,
2594 void __user *buffer, size_t *lenp, loff_t *ppos)
2599 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
2600 void __user *buffer, size_t *lenp, loff_t *ppos)
2605 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
2606 void __user *buffer, size_t *lenp, loff_t *ppos)
2611 int proc_doulongvec_minmax(struct ctl_table *table, int write,
2612 void __user *buffer, size_t *lenp, loff_t *ppos)
2617 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
2618 void __user *buffer,
2619 size_t *lenp, loff_t *ppos)
2625 #endif /* CONFIG_PROC_SYSCTL */
2628 * No sense putting this after each symbol definition, twice,
2629 * exception granted :-)
2631 EXPORT_SYMBOL(proc_dointvec);
2632 EXPORT_SYMBOL(proc_dointvec_jiffies);
2633 EXPORT_SYMBOL(proc_dointvec_minmax);
2634 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2635 EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2636 EXPORT_SYMBOL(proc_dostring);
2637 EXPORT_SYMBOL(proc_doulongvec_minmax);
2638 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);