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/capability.h>
31 #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>
49 #include <asm/uaccess.h>
50 #include <asm/processor.h>
52 extern int proc_nr_files(ctl_table
*table
, int write
, struct file
*filp
,
53 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
57 #include <asm/stacktrace.h>
60 #if defined(CONFIG_SYSCTL)
62 /* External variables not in a header file. */
64 extern int sysctl_overcommit_memory
;
65 extern int sysctl_overcommit_ratio
;
66 extern int sysctl_panic_on_oom
;
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
;
80 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
81 static int maxolduid
= 65535;
83 static int min_percpu_pagelist_fract
= 8;
85 static int ngroups_max
= NGROUPS_MAX
;
88 extern char modprobe_path
[];
90 #ifdef CONFIG_CHR_DEV_SG
91 extern int sg_big_buff
;
95 extern char reboot_command
[];
96 extern int stop_a_enabled
;
97 extern int scons_pwroff
;
101 extern int pwrsw_enabled
;
102 extern int unaligned_enabled
;
106 #ifdef CONFIG_MATHEMU
107 extern int sysctl_ieee_emulation_warnings
;
109 extern int sysctl_userprocess_debug
;
110 extern int spin_retry
;
113 extern int sysctl_hz_timer
;
115 #ifdef CONFIG_BSD_PROCESS_ACCT
116 extern int acct_parm
[];
120 extern int no_unaligned_warning
;
123 #ifdef CONFIG_RT_MUTEXES
124 extern int max_lock_depth
;
127 #ifdef CONFIG_SYSCTL_SYSCALL
128 static int parse_table(int __user
*, int, void __user
*, size_t __user
*,
129 void __user
*, size_t, ctl_table
*);
133 #ifdef CONFIG_PROC_SYSCTL
134 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
135 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
136 static int proc_dointvec_taint(ctl_table
*table
, int write
, struct file
*filp
,
137 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
140 static ctl_table root_table
[];
141 static struct ctl_table_header root_table_header
=
142 { root_table
, LIST_HEAD_INIT(root_table_header
.ctl_entry
) };
144 static ctl_table kern_table
[];
145 static ctl_table vm_table
[];
146 static ctl_table fs_table
[];
147 static ctl_table debug_table
[];
148 static ctl_table dev_table
[];
149 extern ctl_table random_table
[];
150 #ifdef CONFIG_UNIX98_PTYS
151 extern ctl_table pty_table
[];
153 #ifdef CONFIG_INOTIFY_USER
154 extern ctl_table inotify_table
[];
157 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
158 int sysctl_legacy_va_layout
;
162 /* The default sysctl tables: */
164 static ctl_table root_table
[] = {
166 .ctl_name
= CTL_KERN
,
167 .procname
= "kernel",
192 .ctl_name
= CTL_DEBUG
,
195 .child
= debug_table
,
207 static ctl_table kern_table
[] = {
209 .ctl_name
= KERN_PANIC
,
211 .data
= &panic_timeout
,
212 .maxlen
= sizeof(int),
214 .proc_handler
= &proc_dointvec
,
217 .ctl_name
= KERN_CORE_USES_PID
,
218 .procname
= "core_uses_pid",
219 .data
= &core_uses_pid
,
220 .maxlen
= sizeof(int),
222 .proc_handler
= &proc_dointvec
,
225 .ctl_name
= KERN_CORE_PATTERN
,
226 .procname
= "core_pattern",
227 .data
= core_pattern
,
230 .proc_handler
= &proc_dostring
,
231 .strategy
= &sysctl_string
,
233 #ifdef CONFIG_PROC_SYSCTL
235 .ctl_name
= KERN_TAINTED
,
236 .procname
= "tainted",
238 .maxlen
= sizeof(int),
240 .proc_handler
= &proc_dointvec_taint
,
244 .ctl_name
= KERN_CAP_BSET
,
245 .procname
= "cap-bound",
247 .maxlen
= sizeof(kernel_cap_t
),
249 .proc_handler
= &proc_dointvec_bset
,
251 #ifdef CONFIG_BLK_DEV_INITRD
253 .ctl_name
= KERN_REALROOTDEV
,
254 .procname
= "real-root-dev",
255 .data
= &real_root_dev
,
256 .maxlen
= sizeof(int),
258 .proc_handler
= &proc_dointvec
,
263 .ctl_name
= KERN_SPARC_REBOOT
,
264 .procname
= "reboot-cmd",
265 .data
= reboot_command
,
268 .proc_handler
= &proc_dostring
,
269 .strategy
= &sysctl_string
,
272 .ctl_name
= KERN_SPARC_STOP_A
,
273 .procname
= "stop-a",
274 .data
= &stop_a_enabled
,
275 .maxlen
= sizeof (int),
277 .proc_handler
= &proc_dointvec
,
280 .ctl_name
= KERN_SPARC_SCONS_PWROFF
,
281 .procname
= "scons-poweroff",
282 .data
= &scons_pwroff
,
283 .maxlen
= sizeof (int),
285 .proc_handler
= &proc_dointvec
,
290 .ctl_name
= KERN_HPPA_PWRSW
,
291 .procname
= "soft-power",
292 .data
= &pwrsw_enabled
,
293 .maxlen
= sizeof (int),
295 .proc_handler
= &proc_dointvec
,
298 .ctl_name
= KERN_HPPA_UNALIGNED
,
299 .procname
= "unaligned-trap",
300 .data
= &unaligned_enabled
,
301 .maxlen
= sizeof (int),
303 .proc_handler
= &proc_dointvec
,
307 .ctl_name
= KERN_CTLALTDEL
,
308 .procname
= "ctrl-alt-del",
310 .maxlen
= sizeof(int),
312 .proc_handler
= &proc_dointvec
,
315 .ctl_name
= KERN_PRINTK
,
316 .procname
= "printk",
317 .data
= &console_loglevel
,
318 .maxlen
= 4*sizeof(int),
320 .proc_handler
= &proc_dointvec
,
324 .ctl_name
= KERN_MODPROBE
,
325 .procname
= "modprobe",
326 .data
= &modprobe_path
,
327 .maxlen
= KMOD_PATH_LEN
,
329 .proc_handler
= &proc_dostring
,
330 .strategy
= &sysctl_string
,
333 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
335 .ctl_name
= KERN_HOTPLUG
,
336 .procname
= "hotplug",
337 .data
= &uevent_helper
,
338 .maxlen
= UEVENT_HELPER_PATH_LEN
,
340 .proc_handler
= &proc_dostring
,
341 .strategy
= &sysctl_string
,
344 #ifdef CONFIG_CHR_DEV_SG
346 .ctl_name
= KERN_SG_BIG_BUFF
,
347 .procname
= "sg-big-buff",
348 .data
= &sg_big_buff
,
349 .maxlen
= sizeof (int),
351 .proc_handler
= &proc_dointvec
,
354 #ifdef CONFIG_BSD_PROCESS_ACCT
356 .ctl_name
= KERN_ACCT
,
359 .maxlen
= 3*sizeof(int),
361 .proc_handler
= &proc_dointvec
,
364 #ifdef CONFIG_MAGIC_SYSRQ
366 .ctl_name
= KERN_SYSRQ
,
368 .data
= &__sysrq_enabled
,
369 .maxlen
= sizeof (int),
371 .proc_handler
= &proc_dointvec
,
374 #ifdef CONFIG_PROC_SYSCTL
376 .ctl_name
= KERN_CADPID
,
377 .procname
= "cad_pid",
379 .maxlen
= sizeof (int),
381 .proc_handler
= &proc_do_cad_pid
,
385 .ctl_name
= KERN_MAX_THREADS
,
386 .procname
= "threads-max",
387 .data
= &max_threads
,
388 .maxlen
= sizeof(int),
390 .proc_handler
= &proc_dointvec
,
393 .ctl_name
= KERN_RANDOM
,
394 .procname
= "random",
396 .child
= random_table
,
398 #ifdef CONFIG_UNIX98_PTYS
400 .ctl_name
= KERN_PTY
,
407 .ctl_name
= KERN_OVERFLOWUID
,
408 .procname
= "overflowuid",
409 .data
= &overflowuid
,
410 .maxlen
= sizeof(int),
412 .proc_handler
= &proc_dointvec_minmax
,
413 .strategy
= &sysctl_intvec
,
414 .extra1
= &minolduid
,
415 .extra2
= &maxolduid
,
418 .ctl_name
= KERN_OVERFLOWGID
,
419 .procname
= "overflowgid",
420 .data
= &overflowgid
,
421 .maxlen
= sizeof(int),
423 .proc_handler
= &proc_dointvec_minmax
,
424 .strategy
= &sysctl_intvec
,
425 .extra1
= &minolduid
,
426 .extra2
= &maxolduid
,
429 #ifdef CONFIG_MATHEMU
431 .ctl_name
= KERN_IEEE_EMULATION_WARNINGS
,
432 .procname
= "ieee_emulation_warnings",
433 .data
= &sysctl_ieee_emulation_warnings
,
434 .maxlen
= sizeof(int),
436 .proc_handler
= &proc_dointvec
,
439 #ifdef CONFIG_NO_IDLE_HZ
441 .ctl_name
= KERN_HZ_TIMER
,
442 .procname
= "hz_timer",
443 .data
= &sysctl_hz_timer
,
444 .maxlen
= sizeof(int),
446 .proc_handler
= &proc_dointvec
,
450 .ctl_name
= KERN_S390_USER_DEBUG_LOGGING
,
451 .procname
= "userprocess_debug",
452 .data
= &sysctl_userprocess_debug
,
453 .maxlen
= sizeof(int),
455 .proc_handler
= &proc_dointvec
,
459 .ctl_name
= KERN_PIDMAX
,
460 .procname
= "pid_max",
462 .maxlen
= sizeof (int),
464 .proc_handler
= &proc_dointvec_minmax
,
465 .strategy
= sysctl_intvec
,
466 .extra1
= &pid_max_min
,
467 .extra2
= &pid_max_max
,
470 .ctl_name
= KERN_PANIC_ON_OOPS
,
471 .procname
= "panic_on_oops",
472 .data
= &panic_on_oops
,
473 .maxlen
= sizeof(int),
475 .proc_handler
= &proc_dointvec
,
478 .ctl_name
= KERN_PRINTK_RATELIMIT
,
479 .procname
= "printk_ratelimit",
480 .data
= &printk_ratelimit_jiffies
,
481 .maxlen
= sizeof(int),
483 .proc_handler
= &proc_dointvec_jiffies
,
484 .strategy
= &sysctl_jiffies
,
487 .ctl_name
= KERN_PRINTK_RATELIMIT_BURST
,
488 .procname
= "printk_ratelimit_burst",
489 .data
= &printk_ratelimit_burst
,
490 .maxlen
= sizeof(int),
492 .proc_handler
= &proc_dointvec
,
495 .ctl_name
= KERN_NGROUPS_MAX
,
496 .procname
= "ngroups_max",
497 .data
= &ngroups_max
,
498 .maxlen
= sizeof (int),
500 .proc_handler
= &proc_dointvec
,
502 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
504 .ctl_name
= KERN_UNKNOWN_NMI_PANIC
,
505 .procname
= "unknown_nmi_panic",
506 .data
= &unknown_nmi_panic
,
507 .maxlen
= sizeof (int),
509 .proc_handler
= &proc_dointvec
,
512 .ctl_name
= KERN_NMI_WATCHDOG
,
513 .procname
= "nmi_watchdog",
514 .data
= &nmi_watchdog_enabled
,
515 .maxlen
= sizeof (int),
517 .proc_handler
= &proc_nmi_enabled
,
520 #if defined(CONFIG_X86)
522 .ctl_name
= KERN_PANIC_ON_NMI
,
523 .procname
= "panic_on_unrecovered_nmi",
524 .data
= &panic_on_unrecovered_nmi
,
525 .maxlen
= sizeof(int),
527 .proc_handler
= &proc_dointvec
,
530 .ctl_name
= KERN_BOOTLOADER_TYPE
,
531 .procname
= "bootloader_type",
532 .data
= &bootloader_type
,
533 .maxlen
= sizeof (int),
535 .proc_handler
= &proc_dointvec
,
538 .ctl_name
= CTL_UNNUMBERED
,
539 .procname
= "kstack_depth_to_print",
540 .data
= &kstack_depth_to_print
,
541 .maxlen
= sizeof(int),
543 .proc_handler
= &proc_dointvec
,
546 #if defined(CONFIG_MMU)
548 .ctl_name
= KERN_RANDOMIZE
,
549 .procname
= "randomize_va_space",
550 .data
= &randomize_va_space
,
551 .maxlen
= sizeof(int),
553 .proc_handler
= &proc_dointvec
,
556 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
558 .ctl_name
= KERN_SPIN_RETRY
,
559 .procname
= "spin_retry",
561 .maxlen
= sizeof (int),
563 .proc_handler
= &proc_dointvec
,
566 #ifdef CONFIG_ACPI_SLEEP
568 .ctl_name
= KERN_ACPI_VIDEO_FLAGS
,
569 .procname
= "acpi_video_flags",
570 .data
= &acpi_video_flags
,
571 .maxlen
= sizeof (unsigned long),
573 .proc_handler
= &proc_doulongvec_minmax
,
578 .ctl_name
= KERN_IA64_UNALIGNED
,
579 .procname
= "ignore-unaligned-usertrap",
580 .data
= &no_unaligned_warning
,
581 .maxlen
= sizeof (int),
583 .proc_handler
= &proc_dointvec
,
588 .ctl_name
= KERN_COMPAT_LOG
,
589 .procname
= "compat-log",
591 .maxlen
= sizeof (int),
593 .proc_handler
= &proc_dointvec
,
596 #ifdef CONFIG_RT_MUTEXES
598 .ctl_name
= KERN_MAX_LOCK_DEPTH
,
599 .procname
= "max_lock_depth",
600 .data
= &max_lock_depth
,
601 .maxlen
= sizeof(int),
603 .proc_handler
= &proc_dointvec
,
610 /* Constants for minimum and maximum testing in vm_table.
611 We use these as one-element integer vectors. */
613 static int one_hundred
= 100;
616 static ctl_table vm_table
[] = {
618 .ctl_name
= VM_OVERCOMMIT_MEMORY
,
619 .procname
= "overcommit_memory",
620 .data
= &sysctl_overcommit_memory
,
621 .maxlen
= sizeof(sysctl_overcommit_memory
),
623 .proc_handler
= &proc_dointvec
,
626 .ctl_name
= VM_PANIC_ON_OOM
,
627 .procname
= "panic_on_oom",
628 .data
= &sysctl_panic_on_oom
,
629 .maxlen
= sizeof(sysctl_panic_on_oom
),
631 .proc_handler
= &proc_dointvec
,
634 .ctl_name
= VM_OVERCOMMIT_RATIO
,
635 .procname
= "overcommit_ratio",
636 .data
= &sysctl_overcommit_ratio
,
637 .maxlen
= sizeof(sysctl_overcommit_ratio
),
639 .proc_handler
= &proc_dointvec
,
642 .ctl_name
= VM_PAGE_CLUSTER
,
643 .procname
= "page-cluster",
644 .data
= &page_cluster
,
645 .maxlen
= sizeof(int),
647 .proc_handler
= &proc_dointvec
,
650 .ctl_name
= VM_DIRTY_BACKGROUND
,
651 .procname
= "dirty_background_ratio",
652 .data
= &dirty_background_ratio
,
653 .maxlen
= sizeof(dirty_background_ratio
),
655 .proc_handler
= &proc_dointvec_minmax
,
656 .strategy
= &sysctl_intvec
,
658 .extra2
= &one_hundred
,
661 .ctl_name
= VM_DIRTY_RATIO
,
662 .procname
= "dirty_ratio",
663 .data
= &vm_dirty_ratio
,
664 .maxlen
= sizeof(vm_dirty_ratio
),
666 .proc_handler
= &proc_dointvec_minmax
,
667 .strategy
= &sysctl_intvec
,
669 .extra2
= &one_hundred
,
672 .ctl_name
= VM_DIRTY_WB_CS
,
673 .procname
= "dirty_writeback_centisecs",
674 .data
= &dirty_writeback_interval
,
675 .maxlen
= sizeof(dirty_writeback_interval
),
677 .proc_handler
= &dirty_writeback_centisecs_handler
,
680 .ctl_name
= VM_DIRTY_EXPIRE_CS
,
681 .procname
= "dirty_expire_centisecs",
682 .data
= &dirty_expire_interval
,
683 .maxlen
= sizeof(dirty_expire_interval
),
685 .proc_handler
= &proc_dointvec_userhz_jiffies
,
688 .ctl_name
= VM_NR_PDFLUSH_THREADS
,
689 .procname
= "nr_pdflush_threads",
690 .data
= &nr_pdflush_threads
,
691 .maxlen
= sizeof nr_pdflush_threads
,
692 .mode
= 0444 /* read-only*/,
693 .proc_handler
= &proc_dointvec
,
696 .ctl_name
= VM_SWAPPINESS
,
697 .procname
= "swappiness",
698 .data
= &vm_swappiness
,
699 .maxlen
= sizeof(vm_swappiness
),
701 .proc_handler
= &proc_dointvec_minmax
,
702 .strategy
= &sysctl_intvec
,
704 .extra2
= &one_hundred
,
706 #ifdef CONFIG_HUGETLB_PAGE
708 .ctl_name
= VM_HUGETLB_PAGES
,
709 .procname
= "nr_hugepages",
710 .data
= &max_huge_pages
,
711 .maxlen
= sizeof(unsigned long),
713 .proc_handler
= &hugetlb_sysctl_handler
,
714 .extra1
= (void *)&hugetlb_zero
,
715 .extra2
= (void *)&hugetlb_infinity
,
718 .ctl_name
= VM_HUGETLB_GROUP
,
719 .procname
= "hugetlb_shm_group",
720 .data
= &sysctl_hugetlb_shm_group
,
721 .maxlen
= sizeof(gid_t
),
723 .proc_handler
= &proc_dointvec
,
727 .ctl_name
= VM_LOWMEM_RESERVE_RATIO
,
728 .procname
= "lowmem_reserve_ratio",
729 .data
= &sysctl_lowmem_reserve_ratio
,
730 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
732 .proc_handler
= &lowmem_reserve_ratio_sysctl_handler
,
733 .strategy
= &sysctl_intvec
,
736 .ctl_name
= VM_DROP_PAGECACHE
,
737 .procname
= "drop_caches",
738 .data
= &sysctl_drop_caches
,
739 .maxlen
= sizeof(int),
741 .proc_handler
= drop_caches_sysctl_handler
,
742 .strategy
= &sysctl_intvec
,
745 .ctl_name
= VM_MIN_FREE_KBYTES
,
746 .procname
= "min_free_kbytes",
747 .data
= &min_free_kbytes
,
748 .maxlen
= sizeof(min_free_kbytes
),
750 .proc_handler
= &min_free_kbytes_sysctl_handler
,
751 .strategy
= &sysctl_intvec
,
755 .ctl_name
= VM_PERCPU_PAGELIST_FRACTION
,
756 .procname
= "percpu_pagelist_fraction",
757 .data
= &percpu_pagelist_fraction
,
758 .maxlen
= sizeof(percpu_pagelist_fraction
),
760 .proc_handler
= &percpu_pagelist_fraction_sysctl_handler
,
761 .strategy
= &sysctl_intvec
,
762 .extra1
= &min_percpu_pagelist_fract
,
766 .ctl_name
= VM_MAX_MAP_COUNT
,
767 .procname
= "max_map_count",
768 .data
= &sysctl_max_map_count
,
769 .maxlen
= sizeof(sysctl_max_map_count
),
771 .proc_handler
= &proc_dointvec
775 .ctl_name
= VM_LAPTOP_MODE
,
776 .procname
= "laptop_mode",
777 .data
= &laptop_mode
,
778 .maxlen
= sizeof(laptop_mode
),
780 .proc_handler
= &proc_dointvec_jiffies
,
781 .strategy
= &sysctl_jiffies
,
784 .ctl_name
= VM_BLOCK_DUMP
,
785 .procname
= "block_dump",
787 .maxlen
= sizeof(block_dump
),
789 .proc_handler
= &proc_dointvec
,
790 .strategy
= &sysctl_intvec
,
794 .ctl_name
= VM_VFS_CACHE_PRESSURE
,
795 .procname
= "vfs_cache_pressure",
796 .data
= &sysctl_vfs_cache_pressure
,
797 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
799 .proc_handler
= &proc_dointvec
,
800 .strategy
= &sysctl_intvec
,
803 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
805 .ctl_name
= VM_LEGACY_VA_LAYOUT
,
806 .procname
= "legacy_va_layout",
807 .data
= &sysctl_legacy_va_layout
,
808 .maxlen
= sizeof(sysctl_legacy_va_layout
),
810 .proc_handler
= &proc_dointvec
,
811 .strategy
= &sysctl_intvec
,
817 .ctl_name
= VM_ZONE_RECLAIM_MODE
,
818 .procname
= "zone_reclaim_mode",
819 .data
= &zone_reclaim_mode
,
820 .maxlen
= sizeof(zone_reclaim_mode
),
822 .proc_handler
= &proc_dointvec
,
823 .strategy
= &sysctl_intvec
,
827 .ctl_name
= VM_MIN_UNMAPPED
,
828 .procname
= "min_unmapped_ratio",
829 .data
= &sysctl_min_unmapped_ratio
,
830 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
832 .proc_handler
= &sysctl_min_unmapped_ratio_sysctl_handler
,
833 .strategy
= &sysctl_intvec
,
835 .extra2
= &one_hundred
,
838 .ctl_name
= VM_MIN_SLAB
,
839 .procname
= "min_slab_ratio",
840 .data
= &sysctl_min_slab_ratio
,
841 .maxlen
= sizeof(sysctl_min_slab_ratio
),
843 .proc_handler
= &sysctl_min_slab_ratio_sysctl_handler
,
844 .strategy
= &sysctl_intvec
,
846 .extra2
= &one_hundred
,
851 .ctl_name
= VM_VDSO_ENABLED
,
852 .procname
= "vdso_enabled",
853 .data
= &vdso_enabled
,
854 .maxlen
= sizeof(vdso_enabled
),
856 .proc_handler
= &proc_dointvec
,
857 .strategy
= &sysctl_intvec
,
864 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
865 static ctl_table binfmt_misc_table
[] = {
870 static ctl_table fs_table
[] = {
872 .ctl_name
= FS_NRINODE
,
873 .procname
= "inode-nr",
874 .data
= &inodes_stat
,
875 .maxlen
= 2*sizeof(int),
877 .proc_handler
= &proc_dointvec
,
880 .ctl_name
= FS_STATINODE
,
881 .procname
= "inode-state",
882 .data
= &inodes_stat
,
883 .maxlen
= 7*sizeof(int),
885 .proc_handler
= &proc_dointvec
,
888 .ctl_name
= FS_NRFILE
,
889 .procname
= "file-nr",
891 .maxlen
= 3*sizeof(int),
893 .proc_handler
= &proc_nr_files
,
896 .ctl_name
= FS_MAXFILE
,
897 .procname
= "file-max",
898 .data
= &files_stat
.max_files
,
899 .maxlen
= sizeof(int),
901 .proc_handler
= &proc_dointvec
,
904 .ctl_name
= FS_DENTRY
,
905 .procname
= "dentry-state",
906 .data
= &dentry_stat
,
907 .maxlen
= 6*sizeof(int),
909 .proc_handler
= &proc_dointvec
,
912 .ctl_name
= FS_OVERFLOWUID
,
913 .procname
= "overflowuid",
914 .data
= &fs_overflowuid
,
915 .maxlen
= sizeof(int),
917 .proc_handler
= &proc_dointvec_minmax
,
918 .strategy
= &sysctl_intvec
,
919 .extra1
= &minolduid
,
920 .extra2
= &maxolduid
,
923 .ctl_name
= FS_OVERFLOWGID
,
924 .procname
= "overflowgid",
925 .data
= &fs_overflowgid
,
926 .maxlen
= sizeof(int),
928 .proc_handler
= &proc_dointvec_minmax
,
929 .strategy
= &sysctl_intvec
,
930 .extra1
= &minolduid
,
931 .extra2
= &maxolduid
,
934 .ctl_name
= FS_LEASES
,
935 .procname
= "leases-enable",
936 .data
= &leases_enable
,
937 .maxlen
= sizeof(int),
939 .proc_handler
= &proc_dointvec
,
941 #ifdef CONFIG_DNOTIFY
943 .ctl_name
= FS_DIR_NOTIFY
,
944 .procname
= "dir-notify-enable",
945 .data
= &dir_notify_enable
,
946 .maxlen
= sizeof(int),
948 .proc_handler
= &proc_dointvec
,
953 .ctl_name
= FS_LEASE_TIME
,
954 .procname
= "lease-break-time",
955 .data
= &lease_break_time
,
956 .maxlen
= sizeof(int),
958 .proc_handler
= &proc_dointvec
,
961 .ctl_name
= FS_AIO_NR
,
962 .procname
= "aio-nr",
964 .maxlen
= sizeof(aio_nr
),
966 .proc_handler
= &proc_doulongvec_minmax
,
969 .ctl_name
= FS_AIO_MAX_NR
,
970 .procname
= "aio-max-nr",
972 .maxlen
= sizeof(aio_max_nr
),
974 .proc_handler
= &proc_doulongvec_minmax
,
976 #ifdef CONFIG_INOTIFY_USER
978 .ctl_name
= FS_INOTIFY
,
979 .procname
= "inotify",
981 .child
= inotify_table
,
986 .ctl_name
= KERN_SETUID_DUMPABLE
,
987 .procname
= "suid_dumpable",
988 .data
= &suid_dumpable
,
989 .maxlen
= sizeof(int),
991 .proc_handler
= &proc_dointvec
,
993 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
995 .ctl_name
= CTL_UNNUMBERED
,
996 .procname
= "binfmt_misc",
998 .child
= binfmt_misc_table
,
1004 static ctl_table debug_table
[] = {
1008 static ctl_table dev_table
[] = {
1012 static DEFINE_SPINLOCK(sysctl_lock
);
1014 /* called under sysctl_lock */
1015 static int use_table(struct ctl_table_header
*p
)
1017 if (unlikely(p
->unregistering
))
1023 /* called under sysctl_lock */
1024 static void unuse_table(struct ctl_table_header
*p
)
1027 if (unlikely(p
->unregistering
))
1028 complete(p
->unregistering
);
1031 /* called under sysctl_lock, will reacquire if has to wait */
1032 static void start_unregistering(struct ctl_table_header
*p
)
1035 * if p->used is 0, nobody will ever touch that entry again;
1036 * we'll eliminate all paths to it before dropping sysctl_lock
1038 if (unlikely(p
->used
)) {
1039 struct completion wait
;
1040 init_completion(&wait
);
1041 p
->unregistering
= &wait
;
1042 spin_unlock(&sysctl_lock
);
1043 wait_for_completion(&wait
);
1044 spin_lock(&sysctl_lock
);
1047 * do not remove from the list until nobody holds it; walking the
1048 * list in do_sysctl() relies on that.
1050 list_del_init(&p
->ctl_entry
);
1053 void sysctl_head_finish(struct ctl_table_header
*head
)
1057 spin_lock(&sysctl_lock
);
1059 spin_unlock(&sysctl_lock
);
1062 struct ctl_table_header
*sysctl_head_next(struct ctl_table_header
*prev
)
1064 struct ctl_table_header
*head
;
1065 struct list_head
*tmp
;
1066 spin_lock(&sysctl_lock
);
1068 tmp
= &prev
->ctl_entry
;
1072 tmp
= &root_table_header
.ctl_entry
;
1074 head
= list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1076 if (!use_table(head
))
1078 spin_unlock(&sysctl_lock
);
1082 if (tmp
== &root_table_header
.ctl_entry
)
1085 spin_unlock(&sysctl_lock
);
1089 #ifdef CONFIG_SYSCTL_SYSCALL
1090 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1091 void __user
*newval
, size_t newlen
)
1093 struct ctl_table_header
*head
;
1094 int error
= -ENOTDIR
;
1096 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1100 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1104 for (head
= sysctl_head_next(NULL
); head
;
1105 head
= sysctl_head_next(head
)) {
1106 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1107 newval
, newlen
, head
->ctl_table
);
1108 if (error
!= -ENOTDIR
) {
1109 sysctl_head_finish(head
);
1116 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1118 struct __sysctl_args tmp
;
1121 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1125 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1126 tmp
.newval
, tmp
.newlen
);
1130 #endif /* CONFIG_SYSCTL_SYSCALL */
1133 * sysctl_perm does NOT grant the superuser all rights automatically, because
1134 * some sysctl variables are readonly even to root.
1137 static int test_perm(int mode
, int op
)
1141 else if (in_egroup_p(0))
1143 if ((mode
& op
& 0007) == op
)
1148 int sysctl_perm(ctl_table
*table
, int op
)
1151 error
= security_sysctl(table
, op
);
1154 return test_perm(table
->mode
, op
);
1157 #ifdef CONFIG_SYSCTL_SYSCALL
1158 static int parse_table(int __user
*name
, int nlen
,
1159 void __user
*oldval
, size_t __user
*oldlenp
,
1160 void __user
*newval
, size_t newlen
,
1167 if (get_user(n
, name
))
1169 for ( ; table
->ctl_name
|| table
->procname
; table
++) {
1170 if (!table
->ctl_name
)
1172 if (n
== table
->ctl_name
) {
1175 if (sysctl_perm(table
, 001))
1179 table
= table
->child
;
1182 error
= do_sysctl_strategy(table
, name
, nlen
,
1191 /* Perform the actual read/write of a sysctl table entry. */
1192 int do_sysctl_strategy (ctl_table
*table
,
1193 int __user
*name
, int nlen
,
1194 void __user
*oldval
, size_t __user
*oldlenp
,
1195 void __user
*newval
, size_t newlen
)
1204 if (sysctl_perm(table
, op
))
1207 if (table
->strategy
) {
1208 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1216 /* If there is no strategy routine, or if the strategy returns
1217 * zero, proceed with automatic r/w */
1218 if (table
->data
&& table
->maxlen
) {
1219 if (oldval
&& oldlenp
) {
1220 if (get_user(len
, oldlenp
))
1223 if (len
> table
->maxlen
)
1224 len
= table
->maxlen
;
1225 if(copy_to_user(oldval
, table
->data
, len
))
1227 if(put_user(len
, oldlenp
))
1231 if (newval
&& newlen
) {
1233 if (len
> table
->maxlen
)
1234 len
= table
->maxlen
;
1235 if(copy_from_user(table
->data
, newval
, len
))
1241 #endif /* CONFIG_SYSCTL_SYSCALL */
1243 static void sysctl_set_parent(struct ctl_table
*parent
, struct ctl_table
*table
)
1245 for (; table
->ctl_name
|| table
->procname
; table
++) {
1246 table
->parent
= parent
;
1248 sysctl_set_parent(table
, table
->child
);
1252 static __init
int sysctl_init(void)
1254 sysctl_set_parent(NULL
, root_table
);
1258 core_initcall(sysctl_init
);
1261 * register_sysctl_table - register a sysctl hierarchy
1262 * @table: the top-level table structure
1264 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1265 * array. An entry with a ctl_name of 0 terminates the table.
1267 * The members of the &ctl_table structure are used as follows:
1269 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1270 * must be unique within that level of sysctl
1272 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1273 * enter a sysctl file
1275 * data - a pointer to data for use by proc_handler
1277 * maxlen - the maximum size in bytes of the data
1279 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1281 * child - a pointer to the child sysctl table if this entry is a directory, or
1284 * proc_handler - the text handler routine (described below)
1286 * strategy - the strategy routine (described below)
1288 * de - for internal use by the sysctl routines
1290 * extra1, extra2 - extra pointers usable by the proc handler routines
1292 * Leaf nodes in the sysctl tree will be represented by a single file
1293 * under /proc; non-leaf nodes will be represented by directories.
1295 * sysctl(2) can automatically manage read and write requests through
1296 * the sysctl table. The data and maxlen fields of the ctl_table
1297 * struct enable minimal validation of the values being written to be
1298 * performed, and the mode field allows minimal authentication.
1300 * More sophisticated management can be enabled by the provision of a
1301 * strategy routine with the table entry. This will be called before
1302 * any automatic read or write of the data is performed.
1304 * The strategy routine may return
1306 * < 0 - Error occurred (error is passed to user process)
1308 * 0 - OK - proceed with automatic read or write.
1310 * > 0 - OK - read or write has been done by the strategy routine, so
1311 * return immediately.
1313 * There must be a proc_handler routine for any terminal nodes
1314 * mirrored under /proc/sys (non-terminals are handled by a built-in
1315 * directory handler). Several default handlers are available to
1316 * cover common cases -
1318 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1319 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1320 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1322 * It is the handler's job to read the input buffer from user memory
1323 * and process it. The handler should return 0 on success.
1325 * This routine returns %NULL on a failure to register, and a pointer
1326 * to the table header on success.
1328 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
)
1330 struct ctl_table_header
*tmp
;
1331 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1334 tmp
->ctl_table
= table
;
1335 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1337 tmp
->unregistering
= NULL
;
1338 sysctl_set_parent(NULL
, table
);
1339 spin_lock(&sysctl_lock
);
1340 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1341 spin_unlock(&sysctl_lock
);
1346 * unregister_sysctl_table - unregister a sysctl table hierarchy
1347 * @header: the header returned from register_sysctl_table
1349 * Unregisters the sysctl table and all children. proc entries may not
1350 * actually be removed until they are no longer used by anyone.
1352 void unregister_sysctl_table(struct ctl_table_header
* header
)
1355 spin_lock(&sysctl_lock
);
1356 start_unregistering(header
);
1357 spin_unlock(&sysctl_lock
);
1361 #else /* !CONFIG_SYSCTL */
1362 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
)
1367 void unregister_sysctl_table(struct ctl_table_header
* table
)
1371 #endif /* CONFIG_SYSCTL */
1377 #ifdef CONFIG_PROC_SYSCTL
1379 static int _proc_do_string(void* data
, int maxlen
, int write
,
1380 struct file
*filp
, void __user
*buffer
,
1381 size_t *lenp
, loff_t
*ppos
)
1387 if (!data
|| !maxlen
|| !*lenp
) {
1395 while (len
< *lenp
) {
1396 if (get_user(c
, p
++))
1398 if (c
== 0 || c
== '\n')
1404 if(copy_from_user(data
, buffer
, len
))
1406 ((char *) data
)[len
] = 0;
1424 if(copy_to_user(buffer
, data
, len
))
1427 if(put_user('\n', ((char __user
*) buffer
) + len
))
1438 * proc_dostring - read a string sysctl
1439 * @table: the sysctl table
1440 * @write: %TRUE if this is a write to the sysctl file
1441 * @filp: the file structure
1442 * @buffer: the user buffer
1443 * @lenp: the size of the user buffer
1444 * @ppos: file position
1446 * Reads/writes a string from/to the user buffer. If the kernel
1447 * buffer provided is not large enough to hold the string, the
1448 * string is truncated. The copied string is %NULL-terminated.
1449 * If the string is being read by the user process, it is copied
1450 * and a newline '\n' is added. It is truncated if the buffer is
1453 * Returns 0 on success.
1455 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1456 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1458 return _proc_do_string(table
->data
, table
->maxlen
, write
, filp
,
1459 buffer
, lenp
, ppos
);
1463 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1465 int write
, void *data
)
1468 *valp
= *negp
? -*lvalp
: *lvalp
;
1473 *lvalp
= (unsigned long)-val
;
1476 *lvalp
= (unsigned long)val
;
1482 static int __do_proc_dointvec(void *tbl_data
, ctl_table
*table
,
1483 int write
, struct file
*filp
, void __user
*buffer
,
1484 size_t *lenp
, loff_t
*ppos
,
1485 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1486 int write
, void *data
),
1489 #define TMPBUFLEN 21
1490 int *i
, vleft
, first
=1, neg
, val
;
1494 char buf
[TMPBUFLEN
], *p
;
1495 char __user
*s
= buffer
;
1497 if (!tbl_data
|| !table
->maxlen
|| !*lenp
||
1498 (*ppos
&& !write
)) {
1503 i
= (int *) tbl_data
;
1504 vleft
= table
->maxlen
/ sizeof(*i
);
1508 conv
= do_proc_dointvec_conv
;
1510 for (; left
&& vleft
--; i
++, first
=0) {
1525 if (len
> sizeof(buf
) - 1)
1526 len
= sizeof(buf
) - 1;
1527 if (copy_from_user(buf
, s
, len
))
1531 if (*p
== '-' && left
> 1) {
1535 if (*p
< '0' || *p
> '9')
1538 lval
= simple_strtoul(p
, &p
, 0);
1541 if ((len
< left
) && *p
&& !isspace(*p
))
1548 if (conv(&neg
, &lval
, i
, 1, data
))
1555 if (conv(&neg
, &lval
, i
, 0, data
))
1558 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1562 if(copy_to_user(s
, buf
, len
))
1569 if (!write
&& !first
&& left
) {
1570 if(put_user('\n', s
))
1577 if (get_user(c
, s
++))
1592 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1593 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1594 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1595 int write
, void *data
),
1598 return __do_proc_dointvec(table
->data
, table
, write
, filp
,
1599 buffer
, lenp
, ppos
, conv
, data
);
1603 * proc_dointvec - read a vector of integers
1604 * @table: the sysctl table
1605 * @write: %TRUE if this is a write to the sysctl file
1606 * @filp: the file structure
1607 * @buffer: the user buffer
1608 * @lenp: the size of the user buffer
1609 * @ppos: file position
1611 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1612 * values from/to the user buffer, treated as an ASCII string.
1614 * Returns 0 on success.
1616 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1617 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1619 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1627 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1629 int write
, void *data
)
1631 int op
= *(int *)data
;
1633 int val
= *negp
? -*lvalp
: *lvalp
;
1635 case OP_SET
: *valp
= val
; break;
1636 case OP_AND
: *valp
&= val
; break;
1637 case OP_OR
: *valp
|= val
; break;
1643 *lvalp
= (unsigned long)-val
;
1646 *lvalp
= (unsigned long)val
;
1653 * init may raise the set.
1656 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
1657 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1661 if (write
&& !capable(CAP_SYS_MODULE
)) {
1665 op
= is_init(current
) ? OP_SET
: OP_AND
;
1666 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1667 do_proc_dointvec_bset_conv
,&op
);
1671 * Taint values can only be increased
1673 static int proc_dointvec_taint(ctl_table
*table
, int write
, struct file
*filp
,
1674 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1678 if (!capable(CAP_SYS_ADMIN
))
1682 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1683 do_proc_dointvec_bset_conv
,&op
);
1686 struct do_proc_dointvec_minmax_conv_param
{
1691 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
1693 int write
, void *data
)
1695 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1697 int val
= *negp
? -*lvalp
: *lvalp
;
1698 if ((param
->min
&& *param
->min
> val
) ||
1699 (param
->max
&& *param
->max
< val
))
1706 *lvalp
= (unsigned long)-val
;
1709 *lvalp
= (unsigned long)val
;
1716 * proc_dointvec_minmax - read a vector of integers with min/max values
1717 * @table: the sysctl table
1718 * @write: %TRUE if this is a write to the sysctl file
1719 * @filp: the file structure
1720 * @buffer: the user buffer
1721 * @lenp: the size of the user buffer
1722 * @ppos: file position
1724 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1725 * values from/to the user buffer, treated as an ASCII string.
1727 * This routine will ensure the values are within the range specified by
1728 * table->extra1 (min) and table->extra2 (max).
1730 * Returns 0 on success.
1732 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1733 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1735 struct do_proc_dointvec_minmax_conv_param param
= {
1736 .min
= (int *) table
->extra1
,
1737 .max
= (int *) table
->extra2
,
1739 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
1740 do_proc_dointvec_minmax_conv
, ¶m
);
1743 static int __do_proc_doulongvec_minmax(void *data
, ctl_table
*table
, int write
,
1745 void __user
*buffer
,
1746 size_t *lenp
, loff_t
*ppos
,
1747 unsigned long convmul
,
1748 unsigned long convdiv
)
1750 #define TMPBUFLEN 21
1751 unsigned long *i
, *min
, *max
, val
;
1752 int vleft
, first
=1, neg
;
1754 char buf
[TMPBUFLEN
], *p
;
1755 char __user
*s
= buffer
;
1757 if (!data
|| !table
->maxlen
|| !*lenp
||
1758 (*ppos
&& !write
)) {
1763 i
= (unsigned long *) data
;
1764 min
= (unsigned long *) table
->extra1
;
1765 max
= (unsigned long *) table
->extra2
;
1766 vleft
= table
->maxlen
/ sizeof(unsigned long);
1769 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
1784 if (len
> TMPBUFLEN
-1)
1786 if (copy_from_user(buf
, s
, len
))
1790 if (*p
== '-' && left
> 1) {
1794 if (*p
< '0' || *p
> '9')
1796 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
1798 if ((len
< left
) && *p
&& !isspace(*p
))
1807 if ((min
&& val
< *min
) || (max
&& val
> *max
))
1814 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
1818 if(copy_to_user(s
, buf
, len
))
1825 if (!write
&& !first
&& left
) {
1826 if(put_user('\n', s
))
1833 if (get_user(c
, s
++))
1848 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
1850 void __user
*buffer
,
1851 size_t *lenp
, loff_t
*ppos
,
1852 unsigned long convmul
,
1853 unsigned long convdiv
)
1855 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
1856 filp
, buffer
, lenp
, ppos
, convmul
, convdiv
);
1860 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1861 * @table: the sysctl table
1862 * @write: %TRUE if this is a write to the sysctl file
1863 * @filp: the file structure
1864 * @buffer: the user buffer
1865 * @lenp: the size of the user buffer
1866 * @ppos: file position
1868 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1869 * values from/to the user buffer, treated as an ASCII string.
1871 * This routine will ensure the values are within the range specified by
1872 * table->extra1 (min) and table->extra2 (max).
1874 * Returns 0 on success.
1876 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1877 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1879 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
1883 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1884 * @table: the sysctl table
1885 * @write: %TRUE if this is a write to the sysctl file
1886 * @filp: the file structure
1887 * @buffer: the user buffer
1888 * @lenp: the size of the user buffer
1889 * @ppos: file position
1891 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1892 * values from/to the user buffer, treated as an ASCII string. The values
1893 * are treated as milliseconds, and converted to jiffies when they are stored.
1895 * This routine will ensure the values are within the range specified by
1896 * table->extra1 (min) and table->extra2 (max).
1898 * Returns 0 on success.
1900 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
1902 void __user
*buffer
,
1903 size_t *lenp
, loff_t
*ppos
)
1905 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
1906 lenp
, ppos
, HZ
, 1000l);
1910 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
1912 int write
, void *data
)
1915 if (*lvalp
> LONG_MAX
/ HZ
)
1917 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
1923 lval
= (unsigned long)-val
;
1926 lval
= (unsigned long)val
;
1933 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
1935 int write
, void *data
)
1938 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
1940 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
1946 lval
= (unsigned long)-val
;
1949 lval
= (unsigned long)val
;
1951 *lvalp
= jiffies_to_clock_t(lval
);
1956 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
1958 int write
, void *data
)
1961 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
1967 lval
= (unsigned long)-val
;
1970 lval
= (unsigned long)val
;
1972 *lvalp
= jiffies_to_msecs(lval
);
1978 * proc_dointvec_jiffies - read a vector of integers as seconds
1979 * @table: the sysctl table
1980 * @write: %TRUE if this is a write to the sysctl file
1981 * @filp: the file structure
1982 * @buffer: the user buffer
1983 * @lenp: the size of the user buffer
1984 * @ppos: file position
1986 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1987 * values from/to the user buffer, treated as an ASCII string.
1988 * The values read are assumed to be in seconds, and are converted into
1991 * Returns 0 on success.
1993 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
1994 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1996 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1997 do_proc_dointvec_jiffies_conv
,NULL
);
2001 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2002 * @table: the sysctl table
2003 * @write: %TRUE if this is a write to the sysctl file
2004 * @filp: the file structure
2005 * @buffer: the user buffer
2006 * @lenp: the size of the user buffer
2007 * @ppos: pointer to the file position
2009 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2010 * values from/to the user buffer, treated as an ASCII string.
2011 * The values read are assumed to be in 1/USER_HZ seconds, and
2012 * are converted into jiffies.
2014 * Returns 0 on success.
2016 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2017 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2019 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2020 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2024 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2025 * @table: the sysctl table
2026 * @write: %TRUE if this is a write to the sysctl file
2027 * @filp: the file structure
2028 * @buffer: the user buffer
2029 * @lenp: the size of the user buffer
2030 * @ppos: file position
2031 * @ppos: the current position in the file
2033 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2034 * values from/to the user buffer, treated as an ASCII string.
2035 * The values read are assumed to be in 1/1000 seconds, and
2036 * are converted into jiffies.
2038 * Returns 0 on success.
2040 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2041 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2043 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2044 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2047 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
2048 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2050 struct pid
*new_pid
;
2054 tmp
= pid_nr(cad_pid
);
2056 r
= __do_proc_dointvec(&tmp
, table
, write
, filp
, buffer
,
2057 lenp
, ppos
, NULL
, NULL
);
2061 new_pid
= find_get_pid(tmp
);
2065 put_pid(xchg(&cad_pid
, new_pid
));
2069 #else /* CONFIG_PROC_FS */
2071 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2072 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2077 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2078 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2083 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2084 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2089 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2090 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2095 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2096 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2101 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2102 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2107 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2108 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2113 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2114 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2119 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2121 void __user
*buffer
,
2122 size_t *lenp
, loff_t
*ppos
)
2128 #endif /* CONFIG_PROC_FS */
2131 #ifdef CONFIG_SYSCTL_SYSCALL
2133 * General sysctl support routines
2136 /* The generic string strategy routine: */
2137 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2138 void __user
*oldval
, size_t __user
*oldlenp
,
2139 void __user
*newval
, size_t newlen
)
2141 if (!table
->data
|| !table
->maxlen
)
2144 if (oldval
&& oldlenp
) {
2146 if (get_user(bufsize
, oldlenp
))
2149 size_t len
= strlen(table
->data
), copied
;
2151 /* This shouldn't trigger for a well-formed sysctl */
2152 if (len
> table
->maxlen
)
2153 len
= table
->maxlen
;
2155 /* Copy up to a max of bufsize-1 bytes of the string */
2156 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2158 if (copy_to_user(oldval
, table
->data
, copied
) ||
2159 put_user(0, (char __user
*)(oldval
+ copied
)))
2161 if (put_user(len
, oldlenp
))
2165 if (newval
&& newlen
) {
2166 size_t len
= newlen
;
2167 if (len
> table
->maxlen
)
2168 len
= table
->maxlen
;
2169 if(copy_from_user(table
->data
, newval
, len
))
2171 if (len
== table
->maxlen
)
2173 ((char *) table
->data
)[len
] = 0;
2179 * This function makes sure that all of the integers in the vector
2180 * are between the minimum and maximum values given in the arrays
2181 * table->extra1 and table->extra2, respectively.
2183 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2184 void __user
*oldval
, size_t __user
*oldlenp
,
2185 void __user
*newval
, size_t newlen
)
2188 if (newval
&& newlen
) {
2189 int __user
*vec
= (int __user
*) newval
;
2190 int *min
= (int *) table
->extra1
;
2191 int *max
= (int *) table
->extra2
;
2195 if (newlen
% sizeof(int) != 0)
2198 if (!table
->extra1
&& !table
->extra2
)
2201 if (newlen
> table
->maxlen
)
2202 newlen
= table
->maxlen
;
2203 length
= newlen
/ sizeof(int);
2205 for (i
= 0; i
< length
; i
++) {
2207 if (get_user(value
, vec
+ i
))
2209 if (min
&& value
< min
[i
])
2211 if (max
&& value
> max
[i
])
2218 /* Strategy function to convert jiffies to seconds */
2219 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2220 void __user
*oldval
, size_t __user
*oldlenp
,
2221 void __user
*newval
, size_t newlen
)
2223 if (oldval
&& oldlenp
) {
2226 if (get_user(olen
, oldlenp
))
2231 if (olen
< sizeof(int))
2234 val
= *(int *)(table
->data
) / HZ
;
2235 if (put_user(val
, (int __user
*)oldval
))
2237 if (put_user(sizeof(int), oldlenp
))
2241 if (newval
&& newlen
) {
2243 if (newlen
!= sizeof(int))
2245 if (get_user(new, (int __user
*)newval
))
2247 *(int *)(table
->data
) = new*HZ
;
2252 /* Strategy function to convert jiffies to seconds */
2253 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2254 void __user
*oldval
, size_t __user
*oldlenp
,
2255 void __user
*newval
, size_t newlen
)
2257 if (oldval
&& oldlenp
) {
2260 if (get_user(olen
, oldlenp
))
2265 if (olen
< sizeof(int))
2268 val
= jiffies_to_msecs(*(int *)(table
->data
));
2269 if (put_user(val
, (int __user
*)oldval
))
2271 if (put_user(sizeof(int), oldlenp
))
2275 if (newval
&& newlen
) {
2277 if (newlen
!= sizeof(int))
2279 if (get_user(new, (int __user
*)newval
))
2281 *(int *)(table
->data
) = msecs_to_jiffies(new);
2288 #else /* CONFIG_SYSCTL_SYSCALL */
2291 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2293 static int msg_count
;
2294 struct __sysctl_args tmp
;
2295 int name
[CTL_MAXNAME
];
2298 /* Read in the sysctl name for better debug message logging */
2299 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
2301 if (tmp
.nlen
<= 0 || tmp
.nlen
>= CTL_MAXNAME
)
2303 for (i
= 0; i
< tmp
.nlen
; i
++)
2304 if (get_user(name
[i
], tmp
.name
+ i
))
2307 /* Ignore accesses to kernel.version */
2308 if ((tmp
.nlen
== 2) && (name
[0] == CTL_KERN
) && (name
[1] == KERN_VERSION
))
2311 if (msg_count
< 5) {
2314 "warning: process `%s' used the removed sysctl "
2315 "system call with ", current
->comm
);
2316 for (i
= 0; i
< tmp
.nlen
; i
++)
2317 printk("%d.", name
[i
]);
2324 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2325 void __user
*oldval
, size_t __user
*oldlenp
,
2326 void __user
*newval
, size_t newlen
)
2331 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2332 void __user
*oldval
, size_t __user
*oldlenp
,
2333 void __user
*newval
, size_t newlen
)
2338 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2339 void __user
*oldval
, size_t __user
*oldlenp
,
2340 void __user
*newval
, size_t newlen
)
2345 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2346 void __user
*oldval
, size_t __user
*oldlenp
,
2347 void __user
*newval
, size_t newlen
)
2352 #endif /* CONFIG_SYSCTL_SYSCALL */
2355 * No sense putting this after each symbol definition, twice,
2356 * exception granted :-)
2358 EXPORT_SYMBOL(proc_dointvec
);
2359 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2360 EXPORT_SYMBOL(proc_dointvec_minmax
);
2361 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2362 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2363 EXPORT_SYMBOL(proc_dostring
);
2364 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2365 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2366 EXPORT_SYMBOL(register_sysctl_table
);
2367 EXPORT_SYMBOL(sysctl_intvec
);
2368 EXPORT_SYMBOL(sysctl_jiffies
);
2369 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2370 EXPORT_SYMBOL(sysctl_string
);
2371 EXPORT_SYMBOL(unregister_sysctl_table
);