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/proc_fs.h>
27 #include <linux/capability.h>
28 #include <linux/ctype.h>
29 #include <linux/utsname.h>
30 #include <linux/smp_lock.h>
32 #include <linux/init.h>
33 #include <linux/kernel.h>
34 #include <linux/kobject.h>
35 #include <linux/net.h>
36 #include <linux/sysrq.h>
37 #include <linux/highuid.h>
38 #include <linux/writeback.h>
39 #include <linux/hugetlb.h>
40 #include <linux/security.h>
41 #include <linux/initrd.h>
42 #include <linux/times.h>
43 #include <linux/limits.h>
44 #include <linux/dcache.h>
45 #include <linux/syscalls.h>
46 #include <linux/nfs_fs.h>
47 #include <linux/acpi.h>
48 #include <linux/reboot.h>
50 #include <asm/uaccess.h>
51 #include <asm/processor.h>
55 #include <asm/stacktrace.h>
58 #if defined(CONFIG_SYSCTL)
60 /* External variables not in a header file. */
62 extern int print_fatal_signals
;
63 extern int sysctl_overcommit_memory
;
64 extern int sysctl_overcommit_ratio
;
65 extern int sysctl_panic_on_oom
;
66 extern int sysctl_oom_kill_allocating_task
;
67 extern int max_threads
;
68 extern int core_uses_pid
;
69 extern int suid_dumpable
;
70 extern char core_pattern
[];
72 extern int min_free_kbytes
;
73 extern int printk_ratelimit_jiffies
;
74 extern int printk_ratelimit_burst
;
75 extern int pid_max_min
, pid_max_max
;
76 extern int sysctl_drop_caches
;
77 extern int percpu_pagelist_fraction
;
78 extern int compat_log
;
79 extern int maps_protect
;
80 extern int sysctl_stat_interval
;
81 extern int audit_argv_kb
;
83 /* Constants used for minimum and maximum */
84 #ifdef CONFIG_DETECT_SOFTLOCKUP
86 static int sixty
= 60;
94 static int one_hundred
= 100;
96 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
97 static int maxolduid
= 65535;
99 static int min_percpu_pagelist_fract
= 8;
101 static int ngroups_max
= NGROUPS_MAX
;
104 extern char modprobe_path
[];
106 #ifdef CONFIG_CHR_DEV_SG
107 extern int sg_big_buff
;
111 extern char reboot_command
[];
112 extern int stop_a_enabled
;
113 extern int scons_pwroff
;
117 extern int pwrsw_enabled
;
118 extern int unaligned_enabled
;
122 #ifdef CONFIG_MATHEMU
123 extern int sysctl_ieee_emulation_warnings
;
125 extern int sysctl_userprocess_debug
;
126 extern int spin_retry
;
129 extern int sysctl_hz_timer
;
131 #ifdef CONFIG_BSD_PROCESS_ACCT
132 extern int acct_parm
[];
136 extern int no_unaligned_warning
;
139 #ifdef CONFIG_RT_MUTEXES
140 extern int max_lock_depth
;
143 #ifdef CONFIG_SYSCTL_SYSCALL
144 static int parse_table(int __user
*, int, void __user
*, size_t __user
*,
145 void __user
*, size_t, ctl_table
*);
149 #ifdef CONFIG_PROC_SYSCTL
150 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
151 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
152 static int proc_dointvec_taint(ctl_table
*table
, int write
, struct file
*filp
,
153 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
156 static ctl_table root_table
[];
157 static struct ctl_table_header root_table_header
=
158 { root_table
, LIST_HEAD_INIT(root_table_header
.ctl_entry
) };
160 static ctl_table kern_table
[];
161 static ctl_table vm_table
[];
162 static ctl_table fs_table
[];
163 static ctl_table debug_table
[];
164 static ctl_table dev_table
[];
165 extern ctl_table random_table
[];
166 #ifdef CONFIG_UNIX98_PTYS
167 extern ctl_table pty_table
[];
169 #ifdef CONFIG_INOTIFY_USER
170 extern ctl_table inotify_table
[];
173 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
174 int sysctl_legacy_va_layout
;
177 extern int prove_locking
;
178 extern int lock_stat
;
180 /* The default sysctl tables: */
182 static ctl_table root_table
[] = {
184 .ctl_name
= CTL_KERN
,
185 .procname
= "kernel",
210 .ctl_name
= CTL_DEBUG
,
213 .child
= debug_table
,
222 * NOTE: do not add new entries to this table unless you have read
223 * Documentation/sysctl/ctl_unnumbered.txt
228 #ifdef CONFIG_SCHED_DEBUG
229 static unsigned long min_sched_granularity_ns
= 100000; /* 100 usecs */
230 static unsigned long max_sched_granularity_ns
= 1000000000; /* 1 second */
231 static unsigned long min_wakeup_granularity_ns
; /* 0 usecs */
232 static unsigned long max_wakeup_granularity_ns
= 1000000000; /* 1 second */
235 static ctl_table kern_table
[] = {
236 #ifdef CONFIG_SCHED_DEBUG
238 .ctl_name
= CTL_UNNUMBERED
,
239 .procname
= "sched_nr_latency",
240 .data
= &sysctl_sched_nr_latency
,
241 .maxlen
= sizeof(unsigned int),
243 .proc_handler
= &proc_dointvec
,
246 .ctl_name
= CTL_UNNUMBERED
,
247 .procname
= "sched_latency_ns",
248 .data
= &sysctl_sched_latency
,
249 .maxlen
= sizeof(unsigned int),
251 .proc_handler
= &proc_dointvec_minmax
,
252 .strategy
= &sysctl_intvec
,
253 .extra1
= &min_sched_granularity_ns
,
254 .extra2
= &max_sched_granularity_ns
,
257 .ctl_name
= CTL_UNNUMBERED
,
258 .procname
= "sched_wakeup_granularity_ns",
259 .data
= &sysctl_sched_wakeup_granularity
,
260 .maxlen
= sizeof(unsigned int),
262 .proc_handler
= &proc_dointvec_minmax
,
263 .strategy
= &sysctl_intvec
,
264 .extra1
= &min_wakeup_granularity_ns
,
265 .extra2
= &max_wakeup_granularity_ns
,
268 .ctl_name
= CTL_UNNUMBERED
,
269 .procname
= "sched_batch_wakeup_granularity_ns",
270 .data
= &sysctl_sched_batch_wakeup_granularity
,
271 .maxlen
= sizeof(unsigned int),
273 .proc_handler
= &proc_dointvec_minmax
,
274 .strategy
= &sysctl_intvec
,
275 .extra1
= &min_wakeup_granularity_ns
,
276 .extra2
= &max_wakeup_granularity_ns
,
279 .ctl_name
= CTL_UNNUMBERED
,
280 .procname
= "sched_child_runs_first",
281 .data
= &sysctl_sched_child_runs_first
,
282 .maxlen
= sizeof(unsigned int),
284 .proc_handler
= &proc_dointvec
,
287 .ctl_name
= CTL_UNNUMBERED
,
288 .procname
= "sched_features",
289 .data
= &sysctl_sched_features
,
290 .maxlen
= sizeof(unsigned int),
292 .proc_handler
= &proc_dointvec
,
295 .ctl_name
= CTL_UNNUMBERED
,
296 .procname
= "sched_migration_cost",
297 .data
= &sysctl_sched_migration_cost
,
298 .maxlen
= sizeof(unsigned int),
300 .proc_handler
= &proc_dointvec
,
304 .ctl_name
= CTL_UNNUMBERED
,
305 .procname
= "sched_compat_yield",
306 .data
= &sysctl_sched_compat_yield
,
307 .maxlen
= sizeof(unsigned int),
309 .proc_handler
= &proc_dointvec
,
311 #ifdef CONFIG_PROVE_LOCKING
313 .ctl_name
= CTL_UNNUMBERED
,
314 .procname
= "prove_locking",
315 .data
= &prove_locking
,
316 .maxlen
= sizeof(int),
318 .proc_handler
= &proc_dointvec
,
321 #ifdef CONFIG_LOCK_STAT
323 .ctl_name
= CTL_UNNUMBERED
,
324 .procname
= "lock_stat",
326 .maxlen
= sizeof(int),
328 .proc_handler
= &proc_dointvec
,
332 .ctl_name
= KERN_PANIC
,
334 .data
= &panic_timeout
,
335 .maxlen
= sizeof(int),
337 .proc_handler
= &proc_dointvec
,
340 .ctl_name
= KERN_CORE_USES_PID
,
341 .procname
= "core_uses_pid",
342 .data
= &core_uses_pid
,
343 .maxlen
= sizeof(int),
345 .proc_handler
= &proc_dointvec
,
347 #ifdef CONFIG_AUDITSYSCALL
349 .ctl_name
= CTL_UNNUMBERED
,
350 .procname
= "audit_argv_kb",
351 .data
= &audit_argv_kb
,
352 .maxlen
= sizeof(int),
354 .proc_handler
= &proc_dointvec
,
358 .ctl_name
= KERN_CORE_PATTERN
,
359 .procname
= "core_pattern",
360 .data
= core_pattern
,
361 .maxlen
= CORENAME_MAX_SIZE
,
363 .proc_handler
= &proc_dostring
,
364 .strategy
= &sysctl_string
,
366 #ifdef CONFIG_PROC_SYSCTL
368 .ctl_name
= KERN_TAINTED
,
369 .procname
= "tainted",
371 .maxlen
= sizeof(int),
373 .proc_handler
= &proc_dointvec_taint
,
377 .ctl_name
= KERN_CAP_BSET
,
378 .procname
= "cap-bound",
380 .maxlen
= sizeof(kernel_cap_t
),
382 .proc_handler
= &proc_dointvec_bset
,
384 #ifdef CONFIG_BLK_DEV_INITRD
386 .ctl_name
= KERN_REALROOTDEV
,
387 .procname
= "real-root-dev",
388 .data
= &real_root_dev
,
389 .maxlen
= sizeof(int),
391 .proc_handler
= &proc_dointvec
,
395 .ctl_name
= CTL_UNNUMBERED
,
396 .procname
= "print-fatal-signals",
397 .data
= &print_fatal_signals
,
398 .maxlen
= sizeof(int),
400 .proc_handler
= &proc_dointvec
,
404 .ctl_name
= KERN_SPARC_REBOOT
,
405 .procname
= "reboot-cmd",
406 .data
= reboot_command
,
409 .proc_handler
= &proc_dostring
,
410 .strategy
= &sysctl_string
,
413 .ctl_name
= KERN_SPARC_STOP_A
,
414 .procname
= "stop-a",
415 .data
= &stop_a_enabled
,
416 .maxlen
= sizeof (int),
418 .proc_handler
= &proc_dointvec
,
421 .ctl_name
= KERN_SPARC_SCONS_PWROFF
,
422 .procname
= "scons-poweroff",
423 .data
= &scons_pwroff
,
424 .maxlen
= sizeof (int),
426 .proc_handler
= &proc_dointvec
,
431 .ctl_name
= KERN_HPPA_PWRSW
,
432 .procname
= "soft-power",
433 .data
= &pwrsw_enabled
,
434 .maxlen
= sizeof (int),
436 .proc_handler
= &proc_dointvec
,
439 .ctl_name
= KERN_HPPA_UNALIGNED
,
440 .procname
= "unaligned-trap",
441 .data
= &unaligned_enabled
,
442 .maxlen
= sizeof (int),
444 .proc_handler
= &proc_dointvec
,
448 .ctl_name
= KERN_CTLALTDEL
,
449 .procname
= "ctrl-alt-del",
451 .maxlen
= sizeof(int),
453 .proc_handler
= &proc_dointvec
,
456 .ctl_name
= KERN_PRINTK
,
457 .procname
= "printk",
458 .data
= &console_loglevel
,
459 .maxlen
= 4*sizeof(int),
461 .proc_handler
= &proc_dointvec
,
465 .ctl_name
= KERN_MODPROBE
,
466 .procname
= "modprobe",
467 .data
= &modprobe_path
,
468 .maxlen
= KMOD_PATH_LEN
,
470 .proc_handler
= &proc_dostring
,
471 .strategy
= &sysctl_string
,
474 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
476 .ctl_name
= KERN_HOTPLUG
,
477 .procname
= "hotplug",
478 .data
= &uevent_helper
,
479 .maxlen
= UEVENT_HELPER_PATH_LEN
,
481 .proc_handler
= &proc_dostring
,
482 .strategy
= &sysctl_string
,
485 #ifdef CONFIG_CHR_DEV_SG
487 .ctl_name
= KERN_SG_BIG_BUFF
,
488 .procname
= "sg-big-buff",
489 .data
= &sg_big_buff
,
490 .maxlen
= sizeof (int),
492 .proc_handler
= &proc_dointvec
,
495 #ifdef CONFIG_BSD_PROCESS_ACCT
497 .ctl_name
= KERN_ACCT
,
500 .maxlen
= 3*sizeof(int),
502 .proc_handler
= &proc_dointvec
,
505 #ifdef CONFIG_MAGIC_SYSRQ
507 .ctl_name
= KERN_SYSRQ
,
509 .data
= &__sysrq_enabled
,
510 .maxlen
= sizeof (int),
512 .proc_handler
= &proc_dointvec
,
515 #ifdef CONFIG_PROC_SYSCTL
517 .ctl_name
= KERN_CADPID
,
518 .procname
= "cad_pid",
520 .maxlen
= sizeof (int),
522 .proc_handler
= &proc_do_cad_pid
,
526 .ctl_name
= KERN_MAX_THREADS
,
527 .procname
= "threads-max",
528 .data
= &max_threads
,
529 .maxlen
= sizeof(int),
531 .proc_handler
= &proc_dointvec
,
534 .ctl_name
= KERN_RANDOM
,
535 .procname
= "random",
537 .child
= random_table
,
539 #ifdef CONFIG_UNIX98_PTYS
541 .ctl_name
= KERN_PTY
,
548 .ctl_name
= KERN_OVERFLOWUID
,
549 .procname
= "overflowuid",
550 .data
= &overflowuid
,
551 .maxlen
= sizeof(int),
553 .proc_handler
= &proc_dointvec_minmax
,
554 .strategy
= &sysctl_intvec
,
555 .extra1
= &minolduid
,
556 .extra2
= &maxolduid
,
559 .ctl_name
= KERN_OVERFLOWGID
,
560 .procname
= "overflowgid",
561 .data
= &overflowgid
,
562 .maxlen
= sizeof(int),
564 .proc_handler
= &proc_dointvec_minmax
,
565 .strategy
= &sysctl_intvec
,
566 .extra1
= &minolduid
,
567 .extra2
= &maxolduid
,
570 #ifdef CONFIG_MATHEMU
572 .ctl_name
= KERN_IEEE_EMULATION_WARNINGS
,
573 .procname
= "ieee_emulation_warnings",
574 .data
= &sysctl_ieee_emulation_warnings
,
575 .maxlen
= sizeof(int),
577 .proc_handler
= &proc_dointvec
,
580 #ifdef CONFIG_NO_IDLE_HZ
582 .ctl_name
= KERN_HZ_TIMER
,
583 .procname
= "hz_timer",
584 .data
= &sysctl_hz_timer
,
585 .maxlen
= sizeof(int),
587 .proc_handler
= &proc_dointvec
,
591 .ctl_name
= KERN_S390_USER_DEBUG_LOGGING
,
592 .procname
= "userprocess_debug",
593 .data
= &sysctl_userprocess_debug
,
594 .maxlen
= sizeof(int),
596 .proc_handler
= &proc_dointvec
,
600 .ctl_name
= KERN_PIDMAX
,
601 .procname
= "pid_max",
603 .maxlen
= sizeof (int),
605 .proc_handler
= &proc_dointvec_minmax
,
606 .strategy
= sysctl_intvec
,
607 .extra1
= &pid_max_min
,
608 .extra2
= &pid_max_max
,
611 .ctl_name
= KERN_PANIC_ON_OOPS
,
612 .procname
= "panic_on_oops",
613 .data
= &panic_on_oops
,
614 .maxlen
= sizeof(int),
616 .proc_handler
= &proc_dointvec
,
619 .ctl_name
= KERN_PRINTK_RATELIMIT
,
620 .procname
= "printk_ratelimit",
621 .data
= &printk_ratelimit_jiffies
,
622 .maxlen
= sizeof(int),
624 .proc_handler
= &proc_dointvec_jiffies
,
625 .strategy
= &sysctl_jiffies
,
628 .ctl_name
= KERN_PRINTK_RATELIMIT_BURST
,
629 .procname
= "printk_ratelimit_burst",
630 .data
= &printk_ratelimit_burst
,
631 .maxlen
= sizeof(int),
633 .proc_handler
= &proc_dointvec
,
636 .ctl_name
= KERN_NGROUPS_MAX
,
637 .procname
= "ngroups_max",
638 .data
= &ngroups_max
,
639 .maxlen
= sizeof (int),
641 .proc_handler
= &proc_dointvec
,
643 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
645 .ctl_name
= KERN_UNKNOWN_NMI_PANIC
,
646 .procname
= "unknown_nmi_panic",
647 .data
= &unknown_nmi_panic
,
648 .maxlen
= sizeof (int),
650 .proc_handler
= &proc_dointvec
,
653 .ctl_name
= KERN_NMI_WATCHDOG
,
654 .procname
= "nmi_watchdog",
655 .data
= &nmi_watchdog_enabled
,
656 .maxlen
= sizeof (int),
658 .proc_handler
= &proc_nmi_enabled
,
661 #if defined(CONFIG_X86)
663 .ctl_name
= KERN_PANIC_ON_NMI
,
664 .procname
= "panic_on_unrecovered_nmi",
665 .data
= &panic_on_unrecovered_nmi
,
666 .maxlen
= sizeof(int),
668 .proc_handler
= &proc_dointvec
,
671 .ctl_name
= KERN_BOOTLOADER_TYPE
,
672 .procname
= "bootloader_type",
673 .data
= &bootloader_type
,
674 .maxlen
= sizeof (int),
676 .proc_handler
= &proc_dointvec
,
679 .ctl_name
= CTL_UNNUMBERED
,
680 .procname
= "kstack_depth_to_print",
681 .data
= &kstack_depth_to_print
,
682 .maxlen
= sizeof(int),
684 .proc_handler
= &proc_dointvec
,
687 #if defined(CONFIG_MMU)
689 .ctl_name
= KERN_RANDOMIZE
,
690 .procname
= "randomize_va_space",
691 .data
= &randomize_va_space
,
692 .maxlen
= sizeof(int),
694 .proc_handler
= &proc_dointvec
,
697 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
699 .ctl_name
= KERN_SPIN_RETRY
,
700 .procname
= "spin_retry",
702 .maxlen
= sizeof (int),
704 .proc_handler
= &proc_dointvec
,
707 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
709 .ctl_name
= KERN_ACPI_VIDEO_FLAGS
,
710 .procname
= "acpi_video_flags",
711 .data
= &acpi_realmode_flags
,
712 .maxlen
= sizeof (unsigned long),
714 .proc_handler
= &proc_doulongvec_minmax
,
719 .ctl_name
= KERN_IA64_UNALIGNED
,
720 .procname
= "ignore-unaligned-usertrap",
721 .data
= &no_unaligned_warning
,
722 .maxlen
= sizeof (int),
724 .proc_handler
= &proc_dointvec
,
727 #ifdef CONFIG_DETECT_SOFTLOCKUP
729 .ctl_name
= CTL_UNNUMBERED
,
730 .procname
= "softlockup_thresh",
731 .data
= &softlockup_thresh
,
732 .maxlen
= sizeof(int),
734 .proc_handler
= &proc_dointvec_minmax
,
735 .strategy
= &sysctl_intvec
,
742 .ctl_name
= KERN_COMPAT_LOG
,
743 .procname
= "compat-log",
745 .maxlen
= sizeof (int),
747 .proc_handler
= &proc_dointvec
,
750 #ifdef CONFIG_RT_MUTEXES
752 .ctl_name
= KERN_MAX_LOCK_DEPTH
,
753 .procname
= "max_lock_depth",
754 .data
= &max_lock_depth
,
755 .maxlen
= sizeof(int),
757 .proc_handler
= &proc_dointvec
,
760 #ifdef CONFIG_PROC_FS
762 .ctl_name
= CTL_UNNUMBERED
,
763 .procname
= "maps_protect",
764 .data
= &maps_protect
,
765 .maxlen
= sizeof(int),
767 .proc_handler
= &proc_dointvec
,
771 .ctl_name
= CTL_UNNUMBERED
,
772 .procname
= "poweroff_cmd",
773 .data
= &poweroff_cmd
,
774 .maxlen
= POWEROFF_CMD_PATH_LEN
,
776 .proc_handler
= &proc_dostring
,
777 .strategy
= &sysctl_string
,
780 * NOTE: do not add new entries to this table unless you have read
781 * Documentation/sysctl/ctl_unnumbered.txt
786 static ctl_table vm_table
[] = {
788 .ctl_name
= VM_OVERCOMMIT_MEMORY
,
789 .procname
= "overcommit_memory",
790 .data
= &sysctl_overcommit_memory
,
791 .maxlen
= sizeof(sysctl_overcommit_memory
),
793 .proc_handler
= &proc_dointvec
,
796 .ctl_name
= VM_PANIC_ON_OOM
,
797 .procname
= "panic_on_oom",
798 .data
= &sysctl_panic_on_oom
,
799 .maxlen
= sizeof(sysctl_panic_on_oom
),
801 .proc_handler
= &proc_dointvec
,
804 .ctl_name
= CTL_UNNUMBERED
,
805 .procname
= "oom_kill_allocating_task",
806 .data
= &sysctl_oom_kill_allocating_task
,
807 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
809 .proc_handler
= &proc_dointvec
,
812 .ctl_name
= VM_OVERCOMMIT_RATIO
,
813 .procname
= "overcommit_ratio",
814 .data
= &sysctl_overcommit_ratio
,
815 .maxlen
= sizeof(sysctl_overcommit_ratio
),
817 .proc_handler
= &proc_dointvec
,
820 .ctl_name
= VM_PAGE_CLUSTER
,
821 .procname
= "page-cluster",
822 .data
= &page_cluster
,
823 .maxlen
= sizeof(int),
825 .proc_handler
= &proc_dointvec
,
828 .ctl_name
= VM_DIRTY_BACKGROUND
,
829 .procname
= "dirty_background_ratio",
830 .data
= &dirty_background_ratio
,
831 .maxlen
= sizeof(dirty_background_ratio
),
833 .proc_handler
= &proc_dointvec_minmax
,
834 .strategy
= &sysctl_intvec
,
836 .extra2
= &one_hundred
,
839 .ctl_name
= VM_DIRTY_RATIO
,
840 .procname
= "dirty_ratio",
841 .data
= &vm_dirty_ratio
,
842 .maxlen
= sizeof(vm_dirty_ratio
),
844 .proc_handler
= &dirty_ratio_handler
,
845 .strategy
= &sysctl_intvec
,
847 .extra2
= &one_hundred
,
850 .ctl_name
= VM_DIRTY_WB_CS
,
851 .procname
= "dirty_writeback_centisecs",
852 .data
= &dirty_writeback_interval
,
853 .maxlen
= sizeof(dirty_writeback_interval
),
855 .proc_handler
= &dirty_writeback_centisecs_handler
,
858 .ctl_name
= VM_DIRTY_EXPIRE_CS
,
859 .procname
= "dirty_expire_centisecs",
860 .data
= &dirty_expire_interval
,
861 .maxlen
= sizeof(dirty_expire_interval
),
863 .proc_handler
= &proc_dointvec_userhz_jiffies
,
866 .ctl_name
= VM_NR_PDFLUSH_THREADS
,
867 .procname
= "nr_pdflush_threads",
868 .data
= &nr_pdflush_threads
,
869 .maxlen
= sizeof nr_pdflush_threads
,
870 .mode
= 0444 /* read-only*/,
871 .proc_handler
= &proc_dointvec
,
874 .ctl_name
= VM_SWAPPINESS
,
875 .procname
= "swappiness",
876 .data
= &vm_swappiness
,
877 .maxlen
= sizeof(vm_swappiness
),
879 .proc_handler
= &proc_dointvec_minmax
,
880 .strategy
= &sysctl_intvec
,
882 .extra2
= &one_hundred
,
884 #ifdef CONFIG_HUGETLB_PAGE
886 .ctl_name
= VM_HUGETLB_PAGES
,
887 .procname
= "nr_hugepages",
888 .data
= &max_huge_pages
,
889 .maxlen
= sizeof(unsigned long),
891 .proc_handler
= &hugetlb_sysctl_handler
,
892 .extra1
= (void *)&hugetlb_zero
,
893 .extra2
= (void *)&hugetlb_infinity
,
896 .ctl_name
= VM_HUGETLB_GROUP
,
897 .procname
= "hugetlb_shm_group",
898 .data
= &sysctl_hugetlb_shm_group
,
899 .maxlen
= sizeof(gid_t
),
901 .proc_handler
= &proc_dointvec
,
904 .ctl_name
= CTL_UNNUMBERED
,
905 .procname
= "hugepages_treat_as_movable",
906 .data
= &hugepages_treat_as_movable
,
907 .maxlen
= sizeof(int),
909 .proc_handler
= &hugetlb_treat_movable_handler
,
912 .ctl_name
= CTL_UNNUMBERED
,
913 .procname
= "hugetlb_dynamic_pool",
914 .data
= &hugetlb_dynamic_pool
,
915 .maxlen
= sizeof(hugetlb_dynamic_pool
),
917 .proc_handler
= &proc_dointvec
,
921 .ctl_name
= VM_LOWMEM_RESERVE_RATIO
,
922 .procname
= "lowmem_reserve_ratio",
923 .data
= &sysctl_lowmem_reserve_ratio
,
924 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
926 .proc_handler
= &lowmem_reserve_ratio_sysctl_handler
,
927 .strategy
= &sysctl_intvec
,
930 .ctl_name
= VM_DROP_PAGECACHE
,
931 .procname
= "drop_caches",
932 .data
= &sysctl_drop_caches
,
933 .maxlen
= sizeof(int),
935 .proc_handler
= drop_caches_sysctl_handler
,
936 .strategy
= &sysctl_intvec
,
939 .ctl_name
= VM_MIN_FREE_KBYTES
,
940 .procname
= "min_free_kbytes",
941 .data
= &min_free_kbytes
,
942 .maxlen
= sizeof(min_free_kbytes
),
944 .proc_handler
= &min_free_kbytes_sysctl_handler
,
945 .strategy
= &sysctl_intvec
,
949 .ctl_name
= VM_PERCPU_PAGELIST_FRACTION
,
950 .procname
= "percpu_pagelist_fraction",
951 .data
= &percpu_pagelist_fraction
,
952 .maxlen
= sizeof(percpu_pagelist_fraction
),
954 .proc_handler
= &percpu_pagelist_fraction_sysctl_handler
,
955 .strategy
= &sysctl_intvec
,
956 .extra1
= &min_percpu_pagelist_fract
,
960 .ctl_name
= VM_MAX_MAP_COUNT
,
961 .procname
= "max_map_count",
962 .data
= &sysctl_max_map_count
,
963 .maxlen
= sizeof(sysctl_max_map_count
),
965 .proc_handler
= &proc_dointvec
969 .ctl_name
= VM_LAPTOP_MODE
,
970 .procname
= "laptop_mode",
971 .data
= &laptop_mode
,
972 .maxlen
= sizeof(laptop_mode
),
974 .proc_handler
= &proc_dointvec_jiffies
,
975 .strategy
= &sysctl_jiffies
,
978 .ctl_name
= VM_BLOCK_DUMP
,
979 .procname
= "block_dump",
981 .maxlen
= sizeof(block_dump
),
983 .proc_handler
= &proc_dointvec
,
984 .strategy
= &sysctl_intvec
,
988 .ctl_name
= VM_VFS_CACHE_PRESSURE
,
989 .procname
= "vfs_cache_pressure",
990 .data
= &sysctl_vfs_cache_pressure
,
991 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
993 .proc_handler
= &proc_dointvec
,
994 .strategy
= &sysctl_intvec
,
997 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
999 .ctl_name
= VM_LEGACY_VA_LAYOUT
,
1000 .procname
= "legacy_va_layout",
1001 .data
= &sysctl_legacy_va_layout
,
1002 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1004 .proc_handler
= &proc_dointvec
,
1005 .strategy
= &sysctl_intvec
,
1011 .ctl_name
= VM_ZONE_RECLAIM_MODE
,
1012 .procname
= "zone_reclaim_mode",
1013 .data
= &zone_reclaim_mode
,
1014 .maxlen
= sizeof(zone_reclaim_mode
),
1016 .proc_handler
= &proc_dointvec
,
1017 .strategy
= &sysctl_intvec
,
1021 .ctl_name
= VM_MIN_UNMAPPED
,
1022 .procname
= "min_unmapped_ratio",
1023 .data
= &sysctl_min_unmapped_ratio
,
1024 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1026 .proc_handler
= &sysctl_min_unmapped_ratio_sysctl_handler
,
1027 .strategy
= &sysctl_intvec
,
1029 .extra2
= &one_hundred
,
1032 .ctl_name
= VM_MIN_SLAB
,
1033 .procname
= "min_slab_ratio",
1034 .data
= &sysctl_min_slab_ratio
,
1035 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1037 .proc_handler
= &sysctl_min_slab_ratio_sysctl_handler
,
1038 .strategy
= &sysctl_intvec
,
1040 .extra2
= &one_hundred
,
1045 .ctl_name
= CTL_UNNUMBERED
,
1046 .procname
= "stat_interval",
1047 .data
= &sysctl_stat_interval
,
1048 .maxlen
= sizeof(sysctl_stat_interval
),
1050 .proc_handler
= &proc_dointvec_jiffies
,
1051 .strategy
= &sysctl_jiffies
,
1054 #ifdef CONFIG_SECURITY
1056 .ctl_name
= CTL_UNNUMBERED
,
1057 .procname
= "mmap_min_addr",
1058 .data
= &mmap_min_addr
,
1059 .maxlen
= sizeof(unsigned long),
1061 .proc_handler
= &proc_doulongvec_minmax
,
1066 .ctl_name
= CTL_UNNUMBERED
,
1067 .procname
= "numa_zonelist_order",
1068 .data
= &numa_zonelist_order
,
1069 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1071 .proc_handler
= &numa_zonelist_order_handler
,
1072 .strategy
= &sysctl_string
,
1075 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1076 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1078 .ctl_name
= VM_VDSO_ENABLED
,
1079 .procname
= "vdso_enabled",
1080 .data
= &vdso_enabled
,
1081 .maxlen
= sizeof(vdso_enabled
),
1083 .proc_handler
= &proc_dointvec
,
1084 .strategy
= &sysctl_intvec
,
1089 * NOTE: do not add new entries to this table unless you have read
1090 * Documentation/sysctl/ctl_unnumbered.txt
1095 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1096 static ctl_table binfmt_misc_table
[] = {
1101 static ctl_table fs_table
[] = {
1103 .ctl_name
= FS_NRINODE
,
1104 .procname
= "inode-nr",
1105 .data
= &inodes_stat
,
1106 .maxlen
= 2*sizeof(int),
1108 .proc_handler
= &proc_dointvec
,
1111 .ctl_name
= FS_STATINODE
,
1112 .procname
= "inode-state",
1113 .data
= &inodes_stat
,
1114 .maxlen
= 7*sizeof(int),
1116 .proc_handler
= &proc_dointvec
,
1119 .ctl_name
= FS_NRFILE
,
1120 .procname
= "file-nr",
1121 .data
= &files_stat
,
1122 .maxlen
= 3*sizeof(int),
1124 .proc_handler
= &proc_nr_files
,
1127 .ctl_name
= FS_MAXFILE
,
1128 .procname
= "file-max",
1129 .data
= &files_stat
.max_files
,
1130 .maxlen
= sizeof(int),
1132 .proc_handler
= &proc_dointvec
,
1135 .ctl_name
= FS_DENTRY
,
1136 .procname
= "dentry-state",
1137 .data
= &dentry_stat
,
1138 .maxlen
= 6*sizeof(int),
1140 .proc_handler
= &proc_dointvec
,
1143 .ctl_name
= FS_OVERFLOWUID
,
1144 .procname
= "overflowuid",
1145 .data
= &fs_overflowuid
,
1146 .maxlen
= sizeof(int),
1148 .proc_handler
= &proc_dointvec_minmax
,
1149 .strategy
= &sysctl_intvec
,
1150 .extra1
= &minolduid
,
1151 .extra2
= &maxolduid
,
1154 .ctl_name
= FS_OVERFLOWGID
,
1155 .procname
= "overflowgid",
1156 .data
= &fs_overflowgid
,
1157 .maxlen
= sizeof(int),
1159 .proc_handler
= &proc_dointvec_minmax
,
1160 .strategy
= &sysctl_intvec
,
1161 .extra1
= &minolduid
,
1162 .extra2
= &maxolduid
,
1165 .ctl_name
= FS_LEASES
,
1166 .procname
= "leases-enable",
1167 .data
= &leases_enable
,
1168 .maxlen
= sizeof(int),
1170 .proc_handler
= &proc_dointvec
,
1172 #ifdef CONFIG_DNOTIFY
1174 .ctl_name
= FS_DIR_NOTIFY
,
1175 .procname
= "dir-notify-enable",
1176 .data
= &dir_notify_enable
,
1177 .maxlen
= sizeof(int),
1179 .proc_handler
= &proc_dointvec
,
1184 .ctl_name
= FS_LEASE_TIME
,
1185 .procname
= "lease-break-time",
1186 .data
= &lease_break_time
,
1187 .maxlen
= sizeof(int),
1189 .proc_handler
= &proc_dointvec_minmax
,
1190 .strategy
= &sysctl_intvec
,
1195 .ctl_name
= FS_AIO_NR
,
1196 .procname
= "aio-nr",
1198 .maxlen
= sizeof(aio_nr
),
1200 .proc_handler
= &proc_doulongvec_minmax
,
1203 .ctl_name
= FS_AIO_MAX_NR
,
1204 .procname
= "aio-max-nr",
1205 .data
= &aio_max_nr
,
1206 .maxlen
= sizeof(aio_max_nr
),
1208 .proc_handler
= &proc_doulongvec_minmax
,
1210 #ifdef CONFIG_INOTIFY_USER
1212 .ctl_name
= FS_INOTIFY
,
1213 .procname
= "inotify",
1215 .child
= inotify_table
,
1220 .ctl_name
= KERN_SETUID_DUMPABLE
,
1221 .procname
= "suid_dumpable",
1222 .data
= &suid_dumpable
,
1223 .maxlen
= sizeof(int),
1225 .proc_handler
= &proc_dointvec
,
1227 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1229 .ctl_name
= CTL_UNNUMBERED
,
1230 .procname
= "binfmt_misc",
1232 .child
= binfmt_misc_table
,
1236 * NOTE: do not add new entries to this table unless you have read
1237 * Documentation/sysctl/ctl_unnumbered.txt
1242 static ctl_table debug_table
[] = {
1243 #if defined(CONFIG_X86) || defined(CONFIG_PPC)
1245 .ctl_name
= CTL_UNNUMBERED
,
1246 .procname
= "exception-trace",
1247 .data
= &show_unhandled_signals
,
1248 .maxlen
= sizeof(int),
1250 .proc_handler
= proc_dointvec
1256 static ctl_table dev_table
[] = {
1260 static DEFINE_SPINLOCK(sysctl_lock
);
1262 /* called under sysctl_lock */
1263 static int use_table(struct ctl_table_header
*p
)
1265 if (unlikely(p
->unregistering
))
1271 /* called under sysctl_lock */
1272 static void unuse_table(struct ctl_table_header
*p
)
1275 if (unlikely(p
->unregistering
))
1276 complete(p
->unregistering
);
1279 /* called under sysctl_lock, will reacquire if has to wait */
1280 static void start_unregistering(struct ctl_table_header
*p
)
1283 * if p->used is 0, nobody will ever touch that entry again;
1284 * we'll eliminate all paths to it before dropping sysctl_lock
1286 if (unlikely(p
->used
)) {
1287 struct completion wait
;
1288 init_completion(&wait
);
1289 p
->unregistering
= &wait
;
1290 spin_unlock(&sysctl_lock
);
1291 wait_for_completion(&wait
);
1292 spin_lock(&sysctl_lock
);
1295 * do not remove from the list until nobody holds it; walking the
1296 * list in do_sysctl() relies on that.
1298 list_del_init(&p
->ctl_entry
);
1301 void sysctl_head_finish(struct ctl_table_header
*head
)
1305 spin_lock(&sysctl_lock
);
1307 spin_unlock(&sysctl_lock
);
1310 struct ctl_table_header
*sysctl_head_next(struct ctl_table_header
*prev
)
1312 struct ctl_table_header
*head
;
1313 struct list_head
*tmp
;
1314 spin_lock(&sysctl_lock
);
1316 tmp
= &prev
->ctl_entry
;
1320 tmp
= &root_table_header
.ctl_entry
;
1322 head
= list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1324 if (!use_table(head
))
1326 spin_unlock(&sysctl_lock
);
1330 if (tmp
== &root_table_header
.ctl_entry
)
1333 spin_unlock(&sysctl_lock
);
1337 #ifdef CONFIG_SYSCTL_SYSCALL
1338 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1339 void __user
*newval
, size_t newlen
)
1341 struct ctl_table_header
*head
;
1342 int error
= -ENOTDIR
;
1344 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1348 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1352 for (head
= sysctl_head_next(NULL
); head
;
1353 head
= sysctl_head_next(head
)) {
1354 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1355 newval
, newlen
, head
->ctl_table
);
1356 if (error
!= -ENOTDIR
) {
1357 sysctl_head_finish(head
);
1364 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1366 struct __sysctl_args tmp
;
1369 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1373 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1374 tmp
.newval
, tmp
.newlen
);
1378 #endif /* CONFIG_SYSCTL_SYSCALL */
1381 * sysctl_perm does NOT grant the superuser all rights automatically, because
1382 * some sysctl variables are readonly even to root.
1385 static int test_perm(int mode
, int op
)
1389 else if (in_egroup_p(0))
1391 if ((mode
& op
& 0007) == op
)
1396 int sysctl_perm(ctl_table
*table
, int op
)
1399 error
= security_sysctl(table
, op
);
1402 return test_perm(table
->mode
, op
);
1405 #ifdef CONFIG_SYSCTL_SYSCALL
1406 static int parse_table(int __user
*name
, int nlen
,
1407 void __user
*oldval
, size_t __user
*oldlenp
,
1408 void __user
*newval
, size_t newlen
,
1415 if (get_user(n
, name
))
1417 for ( ; table
->ctl_name
|| table
->procname
; table
++) {
1418 if (!table
->ctl_name
)
1420 if (n
== table
->ctl_name
) {
1423 if (sysctl_perm(table
, 001))
1427 table
= table
->child
;
1430 error
= do_sysctl_strategy(table
, name
, nlen
,
1439 /* Perform the actual read/write of a sysctl table entry. */
1440 int do_sysctl_strategy (ctl_table
*table
,
1441 int __user
*name
, int nlen
,
1442 void __user
*oldval
, size_t __user
*oldlenp
,
1443 void __user
*newval
, size_t newlen
)
1452 if (sysctl_perm(table
, op
))
1455 if (table
->strategy
) {
1456 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1464 /* If there is no strategy routine, or if the strategy returns
1465 * zero, proceed with automatic r/w */
1466 if (table
->data
&& table
->maxlen
) {
1467 if (oldval
&& oldlenp
) {
1468 if (get_user(len
, oldlenp
))
1471 if (len
> table
->maxlen
)
1472 len
= table
->maxlen
;
1473 if(copy_to_user(oldval
, table
->data
, len
))
1475 if(put_user(len
, oldlenp
))
1479 if (newval
&& newlen
) {
1481 if (len
> table
->maxlen
)
1482 len
= table
->maxlen
;
1483 if(copy_from_user(table
->data
, newval
, len
))
1489 #endif /* CONFIG_SYSCTL_SYSCALL */
1491 static void sysctl_set_parent(struct ctl_table
*parent
, struct ctl_table
*table
)
1493 for (; table
->ctl_name
|| table
->procname
; table
++) {
1494 table
->parent
= parent
;
1496 sysctl_set_parent(table
, table
->child
);
1500 static __init
int sysctl_init(void)
1502 sysctl_set_parent(NULL
, root_table
);
1506 core_initcall(sysctl_init
);
1509 * register_sysctl_table - register a sysctl hierarchy
1510 * @table: the top-level table structure
1512 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1513 * array. An entry with a ctl_name of 0 terminates the table.
1515 * The members of the &ctl_table structure are used as follows:
1517 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1518 * must be unique within that level of sysctl
1520 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1521 * enter a sysctl file
1523 * data - a pointer to data for use by proc_handler
1525 * maxlen - the maximum size in bytes of the data
1527 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1529 * child - a pointer to the child sysctl table if this entry is a directory, or
1532 * proc_handler - the text handler routine (described below)
1534 * strategy - the strategy routine (described below)
1536 * de - for internal use by the sysctl routines
1538 * extra1, extra2 - extra pointers usable by the proc handler routines
1540 * Leaf nodes in the sysctl tree will be represented by a single file
1541 * under /proc; non-leaf nodes will be represented by directories.
1543 * sysctl(2) can automatically manage read and write requests through
1544 * the sysctl table. The data and maxlen fields of the ctl_table
1545 * struct enable minimal validation of the values being written to be
1546 * performed, and the mode field allows minimal authentication.
1548 * More sophisticated management can be enabled by the provision of a
1549 * strategy routine with the table entry. This will be called before
1550 * any automatic read or write of the data is performed.
1552 * The strategy routine may return
1554 * < 0 - Error occurred (error is passed to user process)
1556 * 0 - OK - proceed with automatic read or write.
1558 * > 0 - OK - read or write has been done by the strategy routine, so
1559 * return immediately.
1561 * There must be a proc_handler routine for any terminal nodes
1562 * mirrored under /proc/sys (non-terminals are handled by a built-in
1563 * directory handler). Several default handlers are available to
1564 * cover common cases -
1566 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1567 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1568 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1570 * It is the handler's job to read the input buffer from user memory
1571 * and process it. The handler should return 0 on success.
1573 * This routine returns %NULL on a failure to register, and a pointer
1574 * to the table header on success.
1576 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
)
1578 struct ctl_table_header
*tmp
;
1579 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1582 tmp
->ctl_table
= table
;
1583 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1585 tmp
->unregistering
= NULL
;
1586 sysctl_set_parent(NULL
, table
);
1587 spin_lock(&sysctl_lock
);
1588 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1589 spin_unlock(&sysctl_lock
);
1594 * unregister_sysctl_table - unregister a sysctl table hierarchy
1595 * @header: the header returned from register_sysctl_table
1597 * Unregisters the sysctl table and all children. proc entries may not
1598 * actually be removed until they are no longer used by anyone.
1600 void unregister_sysctl_table(struct ctl_table_header
* header
)
1603 spin_lock(&sysctl_lock
);
1604 start_unregistering(header
);
1605 spin_unlock(&sysctl_lock
);
1609 #else /* !CONFIG_SYSCTL */
1610 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
)
1615 void unregister_sysctl_table(struct ctl_table_header
* table
)
1619 #endif /* CONFIG_SYSCTL */
1625 #ifdef CONFIG_PROC_SYSCTL
1627 static int _proc_do_string(void* data
, int maxlen
, int write
,
1628 struct file
*filp
, void __user
*buffer
,
1629 size_t *lenp
, loff_t
*ppos
)
1635 if (!data
|| !maxlen
|| !*lenp
) {
1643 while (len
< *lenp
) {
1644 if (get_user(c
, p
++))
1646 if (c
== 0 || c
== '\n')
1652 if(copy_from_user(data
, buffer
, len
))
1654 ((char *) data
)[len
] = 0;
1672 if(copy_to_user(buffer
, data
, len
))
1675 if(put_user('\n', ((char __user
*) buffer
) + len
))
1686 * proc_dostring - read a string sysctl
1687 * @table: the sysctl table
1688 * @write: %TRUE if this is a write to the sysctl file
1689 * @filp: the file structure
1690 * @buffer: the user buffer
1691 * @lenp: the size of the user buffer
1692 * @ppos: file position
1694 * Reads/writes a string from/to the user buffer. If the kernel
1695 * buffer provided is not large enough to hold the string, the
1696 * string is truncated. The copied string is %NULL-terminated.
1697 * If the string is being read by the user process, it is copied
1698 * and a newline '\n' is added. It is truncated if the buffer is
1701 * Returns 0 on success.
1703 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1704 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1706 return _proc_do_string(table
->data
, table
->maxlen
, write
, filp
,
1707 buffer
, lenp
, ppos
);
1711 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1713 int write
, void *data
)
1716 *valp
= *negp
? -*lvalp
: *lvalp
;
1721 *lvalp
= (unsigned long)-val
;
1724 *lvalp
= (unsigned long)val
;
1730 static int __do_proc_dointvec(void *tbl_data
, ctl_table
*table
,
1731 int write
, struct file
*filp
, void __user
*buffer
,
1732 size_t *lenp
, loff_t
*ppos
,
1733 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1734 int write
, void *data
),
1737 #define TMPBUFLEN 21
1738 int *i
, vleft
, first
=1, neg
, val
;
1742 char buf
[TMPBUFLEN
], *p
;
1743 char __user
*s
= buffer
;
1745 if (!tbl_data
|| !table
->maxlen
|| !*lenp
||
1746 (*ppos
&& !write
)) {
1751 i
= (int *) tbl_data
;
1752 vleft
= table
->maxlen
/ sizeof(*i
);
1756 conv
= do_proc_dointvec_conv
;
1758 for (; left
&& vleft
--; i
++, first
=0) {
1773 if (len
> sizeof(buf
) - 1)
1774 len
= sizeof(buf
) - 1;
1775 if (copy_from_user(buf
, s
, len
))
1779 if (*p
== '-' && left
> 1) {
1783 if (*p
< '0' || *p
> '9')
1786 lval
= simple_strtoul(p
, &p
, 0);
1789 if ((len
< left
) && *p
&& !isspace(*p
))
1796 if (conv(&neg
, &lval
, i
, 1, data
))
1803 if (conv(&neg
, &lval
, i
, 0, data
))
1806 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1810 if(copy_to_user(s
, buf
, len
))
1817 if (!write
&& !first
&& left
) {
1818 if(put_user('\n', s
))
1825 if (get_user(c
, s
++))
1840 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1841 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1842 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1843 int write
, void *data
),
1846 return __do_proc_dointvec(table
->data
, table
, write
, filp
,
1847 buffer
, lenp
, ppos
, conv
, data
);
1851 * proc_dointvec - read a vector of integers
1852 * @table: the sysctl table
1853 * @write: %TRUE if this is a write to the sysctl file
1854 * @filp: the file structure
1855 * @buffer: the user buffer
1856 * @lenp: the size of the user buffer
1857 * @ppos: file position
1859 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1860 * values from/to the user buffer, treated as an ASCII string.
1862 * Returns 0 on success.
1864 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1865 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1867 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1875 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1877 int write
, void *data
)
1879 int op
= *(int *)data
;
1881 int val
= *negp
? -*lvalp
: *lvalp
;
1883 case OP_SET
: *valp
= val
; break;
1884 case OP_AND
: *valp
&= val
; break;
1885 case OP_OR
: *valp
|= val
; break;
1891 *lvalp
= (unsigned long)-val
;
1894 *lvalp
= (unsigned long)val
;
1901 * init may raise the set.
1904 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
1905 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1909 if (write
&& !capable(CAP_SYS_MODULE
)) {
1913 op
= is_init(current
) ? OP_SET
: OP_AND
;
1914 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1915 do_proc_dointvec_bset_conv
,&op
);
1919 * Taint values can only be increased
1921 static int proc_dointvec_taint(ctl_table
*table
, int write
, struct file
*filp
,
1922 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1926 if (write
&& !capable(CAP_SYS_ADMIN
))
1930 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1931 do_proc_dointvec_bset_conv
,&op
);
1934 struct do_proc_dointvec_minmax_conv_param
{
1939 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
1941 int write
, void *data
)
1943 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1945 int val
= *negp
? -*lvalp
: *lvalp
;
1946 if ((param
->min
&& *param
->min
> val
) ||
1947 (param
->max
&& *param
->max
< val
))
1954 *lvalp
= (unsigned long)-val
;
1957 *lvalp
= (unsigned long)val
;
1964 * proc_dointvec_minmax - read a vector of integers with min/max values
1965 * @table: the sysctl table
1966 * @write: %TRUE if this is a write to the sysctl file
1967 * @filp: the file structure
1968 * @buffer: the user buffer
1969 * @lenp: the size of the user buffer
1970 * @ppos: file position
1972 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1973 * values from/to the user buffer, treated as an ASCII string.
1975 * This routine will ensure the values are within the range specified by
1976 * table->extra1 (min) and table->extra2 (max).
1978 * Returns 0 on success.
1980 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1981 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1983 struct do_proc_dointvec_minmax_conv_param param
= {
1984 .min
= (int *) table
->extra1
,
1985 .max
= (int *) table
->extra2
,
1987 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
1988 do_proc_dointvec_minmax_conv
, ¶m
);
1991 static int __do_proc_doulongvec_minmax(void *data
, ctl_table
*table
, int write
,
1993 void __user
*buffer
,
1994 size_t *lenp
, loff_t
*ppos
,
1995 unsigned long convmul
,
1996 unsigned long convdiv
)
1998 #define TMPBUFLEN 21
1999 unsigned long *i
, *min
, *max
, val
;
2000 int vleft
, first
=1, neg
;
2002 char buf
[TMPBUFLEN
], *p
;
2003 char __user
*s
= buffer
;
2005 if (!data
|| !table
->maxlen
|| !*lenp
||
2006 (*ppos
&& !write
)) {
2011 i
= (unsigned long *) data
;
2012 min
= (unsigned long *) table
->extra1
;
2013 max
= (unsigned long *) table
->extra2
;
2014 vleft
= table
->maxlen
/ sizeof(unsigned long);
2017 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
2032 if (len
> TMPBUFLEN
-1)
2034 if (copy_from_user(buf
, s
, len
))
2038 if (*p
== '-' && left
> 1) {
2042 if (*p
< '0' || *p
> '9')
2044 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
2046 if ((len
< left
) && *p
&& !isspace(*p
))
2055 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2062 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
2066 if(copy_to_user(s
, buf
, len
))
2073 if (!write
&& !first
&& left
) {
2074 if(put_user('\n', s
))
2081 if (get_user(c
, s
++))
2096 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
2098 void __user
*buffer
,
2099 size_t *lenp
, loff_t
*ppos
,
2100 unsigned long convmul
,
2101 unsigned long convdiv
)
2103 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2104 filp
, buffer
, lenp
, ppos
, convmul
, convdiv
);
2108 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2109 * @table: the sysctl table
2110 * @write: %TRUE if this is a write to the sysctl file
2111 * @filp: the file structure
2112 * @buffer: the user buffer
2113 * @lenp: the size of the user buffer
2114 * @ppos: file position
2116 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2117 * values from/to the user buffer, treated as an ASCII string.
2119 * This routine will ensure the values are within the range specified by
2120 * table->extra1 (min) and table->extra2 (max).
2122 * Returns 0 on success.
2124 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2125 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2127 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
2131 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2132 * @table: the sysctl table
2133 * @write: %TRUE if this is a write to the sysctl file
2134 * @filp: the file structure
2135 * @buffer: the user buffer
2136 * @lenp: the size of the user buffer
2137 * @ppos: file position
2139 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2140 * values from/to the user buffer, treated as an ASCII string. The values
2141 * are treated as milliseconds, and converted to jiffies when they are stored.
2143 * This routine will ensure the values are within the range specified by
2144 * table->extra1 (min) and table->extra2 (max).
2146 * Returns 0 on success.
2148 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2150 void __user
*buffer
,
2151 size_t *lenp
, loff_t
*ppos
)
2153 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2154 lenp
, ppos
, HZ
, 1000l);
2158 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2160 int write
, void *data
)
2163 if (*lvalp
> LONG_MAX
/ HZ
)
2165 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2171 lval
= (unsigned long)-val
;
2174 lval
= (unsigned long)val
;
2181 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2183 int write
, void *data
)
2186 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2188 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2194 lval
= (unsigned long)-val
;
2197 lval
= (unsigned long)val
;
2199 *lvalp
= jiffies_to_clock_t(lval
);
2204 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2206 int write
, void *data
)
2209 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2215 lval
= (unsigned long)-val
;
2218 lval
= (unsigned long)val
;
2220 *lvalp
= jiffies_to_msecs(lval
);
2226 * proc_dointvec_jiffies - read a vector of integers as seconds
2227 * @table: the sysctl table
2228 * @write: %TRUE if this is a write to the sysctl file
2229 * @filp: the file structure
2230 * @buffer: the user buffer
2231 * @lenp: the size of the user buffer
2232 * @ppos: file position
2234 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2235 * values from/to the user buffer, treated as an ASCII string.
2236 * The values read are assumed to be in seconds, and are converted into
2239 * Returns 0 on success.
2241 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2242 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2244 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2245 do_proc_dointvec_jiffies_conv
,NULL
);
2249 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2250 * @table: the sysctl table
2251 * @write: %TRUE if this is a write to the sysctl file
2252 * @filp: the file structure
2253 * @buffer: the user buffer
2254 * @lenp: the size of the user buffer
2255 * @ppos: pointer to the file position
2257 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2258 * values from/to the user buffer, treated as an ASCII string.
2259 * The values read are assumed to be in 1/USER_HZ seconds, and
2260 * are converted into jiffies.
2262 * Returns 0 on success.
2264 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2265 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2267 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2268 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2272 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2273 * @table: the sysctl table
2274 * @write: %TRUE if this is a write to the sysctl file
2275 * @filp: the file structure
2276 * @buffer: the user buffer
2277 * @lenp: the size of the user buffer
2278 * @ppos: file position
2279 * @ppos: the current position in the file
2281 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2282 * values from/to the user buffer, treated as an ASCII string.
2283 * The values read are assumed to be in 1/1000 seconds, and
2284 * are converted into jiffies.
2286 * Returns 0 on success.
2288 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2289 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2291 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2292 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2295 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
2296 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2298 struct pid
*new_pid
;
2302 tmp
= pid_nr(cad_pid
);
2304 r
= __do_proc_dointvec(&tmp
, table
, write
, filp
, buffer
,
2305 lenp
, ppos
, NULL
, NULL
);
2309 new_pid
= find_get_pid(tmp
);
2313 put_pid(xchg(&cad_pid
, new_pid
));
2317 #else /* CONFIG_PROC_FS */
2319 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2320 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2325 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2326 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2331 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2332 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2337 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2338 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2343 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2344 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2349 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2350 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2355 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2356 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2361 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2362 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2367 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2369 void __user
*buffer
,
2370 size_t *lenp
, loff_t
*ppos
)
2376 #endif /* CONFIG_PROC_FS */
2379 #ifdef CONFIG_SYSCTL_SYSCALL
2381 * General sysctl support routines
2384 /* The generic string strategy routine: */
2385 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2386 void __user
*oldval
, size_t __user
*oldlenp
,
2387 void __user
*newval
, size_t newlen
)
2389 if (!table
->data
|| !table
->maxlen
)
2392 if (oldval
&& oldlenp
) {
2394 if (get_user(bufsize
, oldlenp
))
2397 size_t len
= strlen(table
->data
), copied
;
2399 /* This shouldn't trigger for a well-formed sysctl */
2400 if (len
> table
->maxlen
)
2401 len
= table
->maxlen
;
2403 /* Copy up to a max of bufsize-1 bytes of the string */
2404 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2406 if (copy_to_user(oldval
, table
->data
, copied
) ||
2407 put_user(0, (char __user
*)(oldval
+ copied
)))
2409 if (put_user(len
, oldlenp
))
2413 if (newval
&& newlen
) {
2414 size_t len
= newlen
;
2415 if (len
> table
->maxlen
)
2416 len
= table
->maxlen
;
2417 if(copy_from_user(table
->data
, newval
, len
))
2419 if (len
== table
->maxlen
)
2421 ((char *) table
->data
)[len
] = 0;
2427 * This function makes sure that all of the integers in the vector
2428 * are between the minimum and maximum values given in the arrays
2429 * table->extra1 and table->extra2, respectively.
2431 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2432 void __user
*oldval
, size_t __user
*oldlenp
,
2433 void __user
*newval
, size_t newlen
)
2436 if (newval
&& newlen
) {
2437 int __user
*vec
= (int __user
*) newval
;
2438 int *min
= (int *) table
->extra1
;
2439 int *max
= (int *) table
->extra2
;
2443 if (newlen
% sizeof(int) != 0)
2446 if (!table
->extra1
&& !table
->extra2
)
2449 if (newlen
> table
->maxlen
)
2450 newlen
= table
->maxlen
;
2451 length
= newlen
/ sizeof(int);
2453 for (i
= 0; i
< length
; i
++) {
2455 if (get_user(value
, vec
+ i
))
2457 if (min
&& value
< min
[i
])
2459 if (max
&& value
> max
[i
])
2466 /* Strategy function to convert jiffies to seconds */
2467 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2468 void __user
*oldval
, size_t __user
*oldlenp
,
2469 void __user
*newval
, size_t newlen
)
2471 if (oldval
&& oldlenp
) {
2474 if (get_user(olen
, oldlenp
))
2479 if (olen
< sizeof(int))
2482 val
= *(int *)(table
->data
) / HZ
;
2483 if (put_user(val
, (int __user
*)oldval
))
2485 if (put_user(sizeof(int), oldlenp
))
2489 if (newval
&& newlen
) {
2491 if (newlen
!= sizeof(int))
2493 if (get_user(new, (int __user
*)newval
))
2495 *(int *)(table
->data
) = new*HZ
;
2500 /* Strategy function to convert jiffies to seconds */
2501 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2502 void __user
*oldval
, size_t __user
*oldlenp
,
2503 void __user
*newval
, size_t newlen
)
2505 if (oldval
&& oldlenp
) {
2508 if (get_user(olen
, oldlenp
))
2513 if (olen
< sizeof(int))
2516 val
= jiffies_to_msecs(*(int *)(table
->data
));
2517 if (put_user(val
, (int __user
*)oldval
))
2519 if (put_user(sizeof(int), oldlenp
))
2523 if (newval
&& newlen
) {
2525 if (newlen
!= sizeof(int))
2527 if (get_user(new, (int __user
*)newval
))
2529 *(int *)(table
->data
) = msecs_to_jiffies(new);
2536 #else /* CONFIG_SYSCTL_SYSCALL */
2539 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2541 static int msg_count
;
2542 struct __sysctl_args tmp
;
2543 int name
[CTL_MAXNAME
];
2546 /* Read in the sysctl name for better debug message logging */
2547 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
2549 if (tmp
.nlen
<= 0 || tmp
.nlen
>= CTL_MAXNAME
)
2551 for (i
= 0; i
< tmp
.nlen
; i
++)
2552 if (get_user(name
[i
], tmp
.name
+ i
))
2555 /* Ignore accesses to kernel.version */
2556 if ((tmp
.nlen
== 2) && (name
[0] == CTL_KERN
) && (name
[1] == KERN_VERSION
))
2559 if (msg_count
< 5) {
2562 "warning: process `%s' used the removed sysctl "
2563 "system call with ", current
->comm
);
2564 for (i
= 0; i
< tmp
.nlen
; i
++)
2565 printk("%d.", name
[i
]);
2572 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2573 void __user
*oldval
, size_t __user
*oldlenp
,
2574 void __user
*newval
, size_t newlen
)
2579 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2580 void __user
*oldval
, size_t __user
*oldlenp
,
2581 void __user
*newval
, size_t newlen
)
2586 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2587 void __user
*oldval
, size_t __user
*oldlenp
,
2588 void __user
*newval
, size_t newlen
)
2593 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2594 void __user
*oldval
, size_t __user
*oldlenp
,
2595 void __user
*newval
, size_t newlen
)
2600 #endif /* CONFIG_SYSCTL_SYSCALL */
2603 * No sense putting this after each symbol definition, twice,
2604 * exception granted :-)
2606 EXPORT_SYMBOL(proc_dointvec
);
2607 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2608 EXPORT_SYMBOL(proc_dointvec_minmax
);
2609 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2610 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2611 EXPORT_SYMBOL(proc_dostring
);
2612 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2613 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2614 EXPORT_SYMBOL(register_sysctl_table
);
2615 EXPORT_SYMBOL(sysctl_intvec
);
2616 EXPORT_SYMBOL(sysctl_jiffies
);
2617 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2618 EXPORT_SYMBOL(sysctl_string
);
2619 EXPORT_SYMBOL(unregister_sysctl_table
);