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/config.h>
22 #include <linux/module.h>
24 #include <linux/swap.h>
25 #include <linux/slab.h>
26 #include <linux/sysctl.h>
27 #include <linux/proc_fs.h>
28 #include <linux/capability.h>
29 #include <linux/ctype.h>
30 #include <linux/utsname.h>
31 #include <linux/capability.h>
32 #include <linux/smp_lock.h>
33 #include <linux/init.h>
34 #include <linux/kernel.h>
35 #include <linux/kobject.h>
36 #include <linux/net.h>
37 #include <linux/sysrq.h>
38 #include <linux/highuid.h>
39 #include <linux/writeback.h>
40 #include <linux/hugetlb.h>
41 #include <linux/security.h>
42 #include <linux/initrd.h>
43 #include <linux/times.h>
44 #include <linux/limits.h>
45 #include <linux/dcache.h>
46 #include <linux/syscalls.h>
48 #include <asm/uaccess.h>
49 #include <asm/processor.h>
51 #ifdef CONFIG_ROOT_NFS
52 #include <linux/nfs_fs.h>
55 #if defined(CONFIG_SYSCTL)
57 /* External variables not in a header file. */
59 extern int sysctl_overcommit_memory
;
60 extern int sysctl_overcommit_ratio
;
61 extern int max_threads
;
62 extern int sysrq_enabled
;
63 extern int core_uses_pid
;
64 extern int suid_dumpable
;
65 extern char core_pattern
[];
68 extern int min_free_kbytes
;
69 extern int printk_ratelimit_jiffies
;
70 extern int printk_ratelimit_burst
;
71 extern int pid_max_min
, pid_max_max
;
72 extern int sysctl_drop_caches
;
73 extern int percpu_pagelist_fraction
;
75 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
76 int unknown_nmi_panic
;
77 extern int proc_unknown_nmi_panic(ctl_table
*, int, struct file
*,
78 void __user
*, size_t *, loff_t
*);
81 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
82 static int maxolduid
= 65535;
84 static int min_percpu_pagelist_fract
= 8;
86 static int ngroups_max
= NGROUPS_MAX
;
89 extern char modprobe_path
[];
91 #ifdef CONFIG_CHR_DEV_SG
92 extern int sg_big_buff
;
95 extern size_t shm_ctlmax
;
96 extern size_t shm_ctlall
;
97 extern int shm_ctlmni
;
98 extern int msg_ctlmax
;
99 extern int msg_ctlmnb
;
100 extern int msg_ctlmni
;
101 extern int sem_ctls
[];
105 extern char reboot_command
[];
106 extern int stop_a_enabled
;
107 extern int scons_pwroff
;
111 extern int pwrsw_enabled
;
112 extern int unaligned_enabled
;
116 #ifdef CONFIG_MATHEMU
117 extern int sysctl_ieee_emulation_warnings
;
119 extern int sysctl_userprocess_debug
;
120 extern int spin_retry
;
123 extern int sysctl_hz_timer
;
125 #ifdef CONFIG_BSD_PROCESS_ACCT
126 extern int acct_parm
[];
129 int randomize_va_space
= 1;
131 static int parse_table(int __user
*, int, void __user
*, size_t __user
*, void __user
*, size_t,
132 ctl_table
*, void **);
133 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
134 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
136 static ctl_table root_table
[];
137 static struct ctl_table_header root_table_header
=
138 { root_table
, LIST_HEAD_INIT(root_table_header
.ctl_entry
) };
140 static ctl_table kern_table
[];
141 static ctl_table vm_table
[];
142 static ctl_table proc_table
[];
143 static ctl_table fs_table
[];
144 static ctl_table debug_table
[];
145 static ctl_table dev_table
[];
146 extern ctl_table random_table
[];
147 #ifdef CONFIG_UNIX98_PTYS
148 extern ctl_table pty_table
[];
150 #ifdef CONFIG_INOTIFY
151 extern ctl_table inotify_table
[];
154 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
155 int sysctl_legacy_va_layout
;
158 /* /proc declarations: */
160 #ifdef CONFIG_PROC_FS
162 static ssize_t
proc_readsys(struct file
*, char __user
*, size_t, loff_t
*);
163 static ssize_t
proc_writesys(struct file
*, const char __user
*, size_t, loff_t
*);
164 static int proc_opensys(struct inode
*, struct file
*);
166 struct file_operations proc_sys_file_operations
= {
167 .open
= proc_opensys
,
168 .read
= proc_readsys
,
169 .write
= proc_writesys
,
172 extern struct proc_dir_entry
*proc_sys_root
;
174 static void register_proc_table(ctl_table
*, struct proc_dir_entry
*, void *);
175 static void unregister_proc_table(ctl_table
*, struct proc_dir_entry
*);
178 /* The default sysctl tables: */
180 static ctl_table root_table
[] = {
182 .ctl_name
= CTL_KERN
,
183 .procname
= "kernel",
202 .ctl_name
= CTL_PROC
,
214 .ctl_name
= CTL_DEBUG
,
217 .child
= debug_table
,
229 static ctl_table kern_table
[] = {
231 .ctl_name
= KERN_OSTYPE
,
232 .procname
= "ostype",
233 .data
= system_utsname
.sysname
,
234 .maxlen
= sizeof(system_utsname
.sysname
),
236 .proc_handler
= &proc_doutsstring
,
237 .strategy
= &sysctl_string
,
240 .ctl_name
= KERN_OSRELEASE
,
241 .procname
= "osrelease",
242 .data
= system_utsname
.release
,
243 .maxlen
= sizeof(system_utsname
.release
),
245 .proc_handler
= &proc_doutsstring
,
246 .strategy
= &sysctl_string
,
249 .ctl_name
= KERN_VERSION
,
250 .procname
= "version",
251 .data
= system_utsname
.version
,
252 .maxlen
= sizeof(system_utsname
.version
),
254 .proc_handler
= &proc_doutsstring
,
255 .strategy
= &sysctl_string
,
258 .ctl_name
= KERN_NODENAME
,
259 .procname
= "hostname",
260 .data
= system_utsname
.nodename
,
261 .maxlen
= sizeof(system_utsname
.nodename
),
263 .proc_handler
= &proc_doutsstring
,
264 .strategy
= &sysctl_string
,
267 .ctl_name
= KERN_DOMAINNAME
,
268 .procname
= "domainname",
269 .data
= system_utsname
.domainname
,
270 .maxlen
= sizeof(system_utsname
.domainname
),
272 .proc_handler
= &proc_doutsstring
,
273 .strategy
= &sysctl_string
,
276 .ctl_name
= KERN_PANIC
,
278 .data
= &panic_timeout
,
279 .maxlen
= sizeof(int),
281 .proc_handler
= &proc_dointvec
,
284 .ctl_name
= KERN_CORE_USES_PID
,
285 .procname
= "core_uses_pid",
286 .data
= &core_uses_pid
,
287 .maxlen
= sizeof(int),
289 .proc_handler
= &proc_dointvec
,
292 .ctl_name
= KERN_CORE_PATTERN
,
293 .procname
= "core_pattern",
294 .data
= core_pattern
,
297 .proc_handler
= &proc_dostring
,
298 .strategy
= &sysctl_string
,
301 .ctl_name
= KERN_TAINTED
,
302 .procname
= "tainted",
304 .maxlen
= sizeof(int),
306 .proc_handler
= &proc_dointvec
,
309 .ctl_name
= KERN_CAP_BSET
,
310 .procname
= "cap-bound",
312 .maxlen
= sizeof(kernel_cap_t
),
314 .proc_handler
= &proc_dointvec_bset
,
316 #ifdef CONFIG_BLK_DEV_INITRD
318 .ctl_name
= KERN_REALROOTDEV
,
319 .procname
= "real-root-dev",
320 .data
= &real_root_dev
,
321 .maxlen
= sizeof(int),
323 .proc_handler
= &proc_dointvec
,
328 .ctl_name
= KERN_SPARC_REBOOT
,
329 .procname
= "reboot-cmd",
330 .data
= reboot_command
,
333 .proc_handler
= &proc_dostring
,
334 .strategy
= &sysctl_string
,
337 .ctl_name
= KERN_SPARC_STOP_A
,
338 .procname
= "stop-a",
339 .data
= &stop_a_enabled
,
340 .maxlen
= sizeof (int),
342 .proc_handler
= &proc_dointvec
,
345 .ctl_name
= KERN_SPARC_SCONS_PWROFF
,
346 .procname
= "scons-poweroff",
347 .data
= &scons_pwroff
,
348 .maxlen
= sizeof (int),
350 .proc_handler
= &proc_dointvec
,
355 .ctl_name
= KERN_HPPA_PWRSW
,
356 .procname
= "soft-power",
357 .data
= &pwrsw_enabled
,
358 .maxlen
= sizeof (int),
360 .proc_handler
= &proc_dointvec
,
363 .ctl_name
= KERN_HPPA_UNALIGNED
,
364 .procname
= "unaligned-trap",
365 .data
= &unaligned_enabled
,
366 .maxlen
= sizeof (int),
368 .proc_handler
= &proc_dointvec
,
372 .ctl_name
= KERN_CTLALTDEL
,
373 .procname
= "ctrl-alt-del",
375 .maxlen
= sizeof(int),
377 .proc_handler
= &proc_dointvec
,
380 .ctl_name
= KERN_PRINTK
,
381 .procname
= "printk",
382 .data
= &console_loglevel
,
383 .maxlen
= 4*sizeof(int),
385 .proc_handler
= &proc_dointvec
,
389 .ctl_name
= KERN_MODPROBE
,
390 .procname
= "modprobe",
391 .data
= &modprobe_path
,
392 .maxlen
= KMOD_PATH_LEN
,
394 .proc_handler
= &proc_dostring
,
395 .strategy
= &sysctl_string
,
398 #ifdef CONFIG_HOTPLUG
400 .ctl_name
= KERN_HOTPLUG
,
401 .procname
= "hotplug",
402 .data
= &uevent_helper
,
403 .maxlen
= UEVENT_HELPER_PATH_LEN
,
405 .proc_handler
= &proc_dostring
,
406 .strategy
= &sysctl_string
,
409 #ifdef CONFIG_CHR_DEV_SG
411 .ctl_name
= KERN_SG_BIG_BUFF
,
412 .procname
= "sg-big-buff",
413 .data
= &sg_big_buff
,
414 .maxlen
= sizeof (int),
416 .proc_handler
= &proc_dointvec
,
419 #ifdef CONFIG_BSD_PROCESS_ACCT
421 .ctl_name
= KERN_ACCT
,
424 .maxlen
= 3*sizeof(int),
426 .proc_handler
= &proc_dointvec
,
429 #ifdef CONFIG_SYSVIPC
431 .ctl_name
= KERN_SHMMAX
,
432 .procname
= "shmmax",
434 .maxlen
= sizeof (size_t),
436 .proc_handler
= &proc_doulongvec_minmax
,
439 .ctl_name
= KERN_SHMALL
,
440 .procname
= "shmall",
442 .maxlen
= sizeof (size_t),
444 .proc_handler
= &proc_doulongvec_minmax
,
447 .ctl_name
= KERN_SHMMNI
,
448 .procname
= "shmmni",
450 .maxlen
= sizeof (int),
452 .proc_handler
= &proc_dointvec
,
455 .ctl_name
= KERN_MSGMAX
,
456 .procname
= "msgmax",
458 .maxlen
= sizeof (int),
460 .proc_handler
= &proc_dointvec
,
463 .ctl_name
= KERN_MSGMNI
,
464 .procname
= "msgmni",
466 .maxlen
= sizeof (int),
468 .proc_handler
= &proc_dointvec
,
471 .ctl_name
= KERN_MSGMNB
,
472 .procname
= "msgmnb",
474 .maxlen
= sizeof (int),
476 .proc_handler
= &proc_dointvec
,
479 .ctl_name
= KERN_SEM
,
482 .maxlen
= 4*sizeof (int),
484 .proc_handler
= &proc_dointvec
,
487 #ifdef CONFIG_MAGIC_SYSRQ
489 .ctl_name
= KERN_SYSRQ
,
491 .data
= &sysrq_enabled
,
492 .maxlen
= sizeof (int),
494 .proc_handler
= &proc_dointvec
,
498 .ctl_name
= KERN_CADPID
,
499 .procname
= "cad_pid",
501 .maxlen
= sizeof (int),
503 .proc_handler
= &proc_dointvec
,
506 .ctl_name
= KERN_MAX_THREADS
,
507 .procname
= "threads-max",
508 .data
= &max_threads
,
509 .maxlen
= sizeof(int),
511 .proc_handler
= &proc_dointvec
,
514 .ctl_name
= KERN_RANDOM
,
515 .procname
= "random",
517 .child
= random_table
,
519 #ifdef CONFIG_UNIX98_PTYS
521 .ctl_name
= KERN_PTY
,
528 .ctl_name
= KERN_OVERFLOWUID
,
529 .procname
= "overflowuid",
530 .data
= &overflowuid
,
531 .maxlen
= sizeof(int),
533 .proc_handler
= &proc_dointvec_minmax
,
534 .strategy
= &sysctl_intvec
,
535 .extra1
= &minolduid
,
536 .extra2
= &maxolduid
,
539 .ctl_name
= KERN_OVERFLOWGID
,
540 .procname
= "overflowgid",
541 .data
= &overflowgid
,
542 .maxlen
= sizeof(int),
544 .proc_handler
= &proc_dointvec_minmax
,
545 .strategy
= &sysctl_intvec
,
546 .extra1
= &minolduid
,
547 .extra2
= &maxolduid
,
550 #ifdef CONFIG_MATHEMU
552 .ctl_name
= KERN_IEEE_EMULATION_WARNINGS
,
553 .procname
= "ieee_emulation_warnings",
554 .data
= &sysctl_ieee_emulation_warnings
,
555 .maxlen
= sizeof(int),
557 .proc_handler
= &proc_dointvec
,
560 #ifdef CONFIG_NO_IDLE_HZ
562 .ctl_name
= KERN_HZ_TIMER
,
563 .procname
= "hz_timer",
564 .data
= &sysctl_hz_timer
,
565 .maxlen
= sizeof(int),
567 .proc_handler
= &proc_dointvec
,
571 .ctl_name
= KERN_S390_USER_DEBUG_LOGGING
,
572 .procname
= "userprocess_debug",
573 .data
= &sysctl_userprocess_debug
,
574 .maxlen
= sizeof(int),
576 .proc_handler
= &proc_dointvec
,
580 .ctl_name
= KERN_PIDMAX
,
581 .procname
= "pid_max",
583 .maxlen
= sizeof (int),
585 .proc_handler
= &proc_dointvec_minmax
,
586 .strategy
= sysctl_intvec
,
587 .extra1
= &pid_max_min
,
588 .extra2
= &pid_max_max
,
591 .ctl_name
= KERN_PANIC_ON_OOPS
,
592 .procname
= "panic_on_oops",
593 .data
= &panic_on_oops
,
594 .maxlen
= sizeof(int),
596 .proc_handler
= &proc_dointvec
,
599 .ctl_name
= KERN_PRINTK_RATELIMIT
,
600 .procname
= "printk_ratelimit",
601 .data
= &printk_ratelimit_jiffies
,
602 .maxlen
= sizeof(int),
604 .proc_handler
= &proc_dointvec_jiffies
,
605 .strategy
= &sysctl_jiffies
,
608 .ctl_name
= KERN_PRINTK_RATELIMIT_BURST
,
609 .procname
= "printk_ratelimit_burst",
610 .data
= &printk_ratelimit_burst
,
611 .maxlen
= sizeof(int),
613 .proc_handler
= &proc_dointvec
,
616 .ctl_name
= KERN_NGROUPS_MAX
,
617 .procname
= "ngroups_max",
618 .data
= &ngroups_max
,
619 .maxlen
= sizeof (int),
621 .proc_handler
= &proc_dointvec
,
623 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
625 .ctl_name
= KERN_UNKNOWN_NMI_PANIC
,
626 .procname
= "unknown_nmi_panic",
627 .data
= &unknown_nmi_panic
,
628 .maxlen
= sizeof (int),
630 .proc_handler
= &proc_unknown_nmi_panic
,
633 #if defined(CONFIG_X86)
635 .ctl_name
= KERN_BOOTLOADER_TYPE
,
636 .procname
= "bootloader_type",
637 .data
= &bootloader_type
,
638 .maxlen
= sizeof (int),
640 .proc_handler
= &proc_dointvec
,
644 .ctl_name
= KERN_RANDOMIZE
,
645 .procname
= "randomize_va_space",
646 .data
= &randomize_va_space
,
647 .maxlen
= sizeof(int),
649 .proc_handler
= &proc_dointvec
,
651 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
653 .ctl_name
= KERN_SPIN_RETRY
,
654 .procname
= "spin_retry",
656 .maxlen
= sizeof (int),
658 .proc_handler
= &proc_dointvec
,
664 /* Constants for minimum and maximum testing in vm_table.
665 We use these as one-element integer vectors. */
667 static int one_hundred
= 100;
670 static ctl_table vm_table
[] = {
672 .ctl_name
= VM_OVERCOMMIT_MEMORY
,
673 .procname
= "overcommit_memory",
674 .data
= &sysctl_overcommit_memory
,
675 .maxlen
= sizeof(sysctl_overcommit_memory
),
677 .proc_handler
= &proc_dointvec
,
680 .ctl_name
= VM_OVERCOMMIT_RATIO
,
681 .procname
= "overcommit_ratio",
682 .data
= &sysctl_overcommit_ratio
,
683 .maxlen
= sizeof(sysctl_overcommit_ratio
),
685 .proc_handler
= &proc_dointvec
,
688 .ctl_name
= VM_PAGE_CLUSTER
,
689 .procname
= "page-cluster",
690 .data
= &page_cluster
,
691 .maxlen
= sizeof(int),
693 .proc_handler
= &proc_dointvec
,
696 .ctl_name
= VM_DIRTY_BACKGROUND
,
697 .procname
= "dirty_background_ratio",
698 .data
= &dirty_background_ratio
,
699 .maxlen
= sizeof(dirty_background_ratio
),
701 .proc_handler
= &proc_dointvec_minmax
,
702 .strategy
= &sysctl_intvec
,
704 .extra2
= &one_hundred
,
707 .ctl_name
= VM_DIRTY_RATIO
,
708 .procname
= "dirty_ratio",
709 .data
= &vm_dirty_ratio
,
710 .maxlen
= sizeof(vm_dirty_ratio
),
712 .proc_handler
= &proc_dointvec_minmax
,
713 .strategy
= &sysctl_intvec
,
715 .extra2
= &one_hundred
,
718 .ctl_name
= VM_DIRTY_WB_CS
,
719 .procname
= "dirty_writeback_centisecs",
720 .data
= &dirty_writeback_centisecs
,
721 .maxlen
= sizeof(dirty_writeback_centisecs
),
723 .proc_handler
= &dirty_writeback_centisecs_handler
,
726 .ctl_name
= VM_DIRTY_EXPIRE_CS
,
727 .procname
= "dirty_expire_centisecs",
728 .data
= &dirty_expire_centisecs
,
729 .maxlen
= sizeof(dirty_expire_centisecs
),
731 .proc_handler
= &proc_dointvec
,
734 .ctl_name
= VM_NR_PDFLUSH_THREADS
,
735 .procname
= "nr_pdflush_threads",
736 .data
= &nr_pdflush_threads
,
737 .maxlen
= sizeof nr_pdflush_threads
,
738 .mode
= 0444 /* read-only*/,
739 .proc_handler
= &proc_dointvec
,
742 .ctl_name
= VM_SWAPPINESS
,
743 .procname
= "swappiness",
744 .data
= &vm_swappiness
,
745 .maxlen
= sizeof(vm_swappiness
),
747 .proc_handler
= &proc_dointvec_minmax
,
748 .strategy
= &sysctl_intvec
,
750 .extra2
= &one_hundred
,
752 #ifdef CONFIG_HUGETLB_PAGE
754 .ctl_name
= VM_HUGETLB_PAGES
,
755 .procname
= "nr_hugepages",
756 .data
= &max_huge_pages
,
757 .maxlen
= sizeof(unsigned long),
759 .proc_handler
= &hugetlb_sysctl_handler
,
760 .extra1
= (void *)&hugetlb_zero
,
761 .extra2
= (void *)&hugetlb_infinity
,
764 .ctl_name
= VM_HUGETLB_GROUP
,
765 .procname
= "hugetlb_shm_group",
766 .data
= &sysctl_hugetlb_shm_group
,
767 .maxlen
= sizeof(gid_t
),
769 .proc_handler
= &proc_dointvec
,
773 .ctl_name
= VM_LOWMEM_RESERVE_RATIO
,
774 .procname
= "lowmem_reserve_ratio",
775 .data
= &sysctl_lowmem_reserve_ratio
,
776 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
778 .proc_handler
= &lowmem_reserve_ratio_sysctl_handler
,
779 .strategy
= &sysctl_intvec
,
782 .ctl_name
= VM_DROP_PAGECACHE
,
783 .procname
= "drop_caches",
784 .data
= &sysctl_drop_caches
,
785 .maxlen
= sizeof(int),
787 .proc_handler
= drop_caches_sysctl_handler
,
788 .strategy
= &sysctl_intvec
,
791 .ctl_name
= VM_MIN_FREE_KBYTES
,
792 .procname
= "min_free_kbytes",
793 .data
= &min_free_kbytes
,
794 .maxlen
= sizeof(min_free_kbytes
),
796 .proc_handler
= &min_free_kbytes_sysctl_handler
,
797 .strategy
= &sysctl_intvec
,
801 .ctl_name
= VM_PERCPU_PAGELIST_FRACTION
,
802 .procname
= "percpu_pagelist_fraction",
803 .data
= &percpu_pagelist_fraction
,
804 .maxlen
= sizeof(percpu_pagelist_fraction
),
806 .proc_handler
= &percpu_pagelist_fraction_sysctl_handler
,
807 .strategy
= &sysctl_intvec
,
808 .extra1
= &min_percpu_pagelist_fract
,
812 .ctl_name
= VM_MAX_MAP_COUNT
,
813 .procname
= "max_map_count",
814 .data
= &sysctl_max_map_count
,
815 .maxlen
= sizeof(sysctl_max_map_count
),
817 .proc_handler
= &proc_dointvec
821 .ctl_name
= VM_LAPTOP_MODE
,
822 .procname
= "laptop_mode",
823 .data
= &laptop_mode
,
824 .maxlen
= sizeof(laptop_mode
),
826 .proc_handler
= &proc_dointvec
,
827 .strategy
= &sysctl_intvec
,
831 .ctl_name
= VM_BLOCK_DUMP
,
832 .procname
= "block_dump",
834 .maxlen
= sizeof(block_dump
),
836 .proc_handler
= &proc_dointvec
,
837 .strategy
= &sysctl_intvec
,
841 .ctl_name
= VM_VFS_CACHE_PRESSURE
,
842 .procname
= "vfs_cache_pressure",
843 .data
= &sysctl_vfs_cache_pressure
,
844 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
846 .proc_handler
= &proc_dointvec
,
847 .strategy
= &sysctl_intvec
,
850 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
852 .ctl_name
= VM_LEGACY_VA_LAYOUT
,
853 .procname
= "legacy_va_layout",
854 .data
= &sysctl_legacy_va_layout
,
855 .maxlen
= sizeof(sysctl_legacy_va_layout
),
857 .proc_handler
= &proc_dointvec
,
858 .strategy
= &sysctl_intvec
,
864 .ctl_name
= VM_SWAP_TOKEN_TIMEOUT
,
865 .procname
= "swap_token_timeout",
866 .data
= &swap_token_default_timeout
,
867 .maxlen
= sizeof(swap_token_default_timeout
),
869 .proc_handler
= &proc_dointvec_jiffies
,
870 .strategy
= &sysctl_jiffies
,
875 .ctl_name
= VM_ZONE_RECLAIM_MODE
,
876 .procname
= "zone_reclaim_mode",
877 .data
= &zone_reclaim_mode
,
878 .maxlen
= sizeof(zone_reclaim_mode
),
880 .proc_handler
= &proc_dointvec
,
887 static ctl_table proc_table
[] = {
891 static ctl_table fs_table
[] = {
893 .ctl_name
= FS_NRINODE
,
894 .procname
= "inode-nr",
895 .data
= &inodes_stat
,
896 .maxlen
= 2*sizeof(int),
898 .proc_handler
= &proc_dointvec
,
901 .ctl_name
= FS_STATINODE
,
902 .procname
= "inode-state",
903 .data
= &inodes_stat
,
904 .maxlen
= 7*sizeof(int),
906 .proc_handler
= &proc_dointvec
,
909 .ctl_name
= FS_NRFILE
,
910 .procname
= "file-nr",
912 .maxlen
= 3*sizeof(int),
914 .proc_handler
= &proc_dointvec
,
917 .ctl_name
= FS_MAXFILE
,
918 .procname
= "file-max",
919 .data
= &files_stat
.max_files
,
920 .maxlen
= sizeof(int),
922 .proc_handler
= &proc_dointvec
,
925 .ctl_name
= FS_DENTRY
,
926 .procname
= "dentry-state",
927 .data
= &dentry_stat
,
928 .maxlen
= 6*sizeof(int),
930 .proc_handler
= &proc_dointvec
,
933 .ctl_name
= FS_OVERFLOWUID
,
934 .procname
= "overflowuid",
935 .data
= &fs_overflowuid
,
936 .maxlen
= sizeof(int),
938 .proc_handler
= &proc_dointvec_minmax
,
939 .strategy
= &sysctl_intvec
,
940 .extra1
= &minolduid
,
941 .extra2
= &maxolduid
,
944 .ctl_name
= FS_OVERFLOWGID
,
945 .procname
= "overflowgid",
946 .data
= &fs_overflowgid
,
947 .maxlen
= sizeof(int),
949 .proc_handler
= &proc_dointvec_minmax
,
950 .strategy
= &sysctl_intvec
,
951 .extra1
= &minolduid
,
952 .extra2
= &maxolduid
,
955 .ctl_name
= FS_LEASES
,
956 .procname
= "leases-enable",
957 .data
= &leases_enable
,
958 .maxlen
= sizeof(int),
960 .proc_handler
= &proc_dointvec
,
962 #ifdef CONFIG_DNOTIFY
964 .ctl_name
= FS_DIR_NOTIFY
,
965 .procname
= "dir-notify-enable",
966 .data
= &dir_notify_enable
,
967 .maxlen
= sizeof(int),
969 .proc_handler
= &proc_dointvec
,
974 .ctl_name
= FS_LEASE_TIME
,
975 .procname
= "lease-break-time",
976 .data
= &lease_break_time
,
977 .maxlen
= sizeof(int),
979 .proc_handler
= &proc_dointvec
,
982 .ctl_name
= FS_AIO_NR
,
983 .procname
= "aio-nr",
985 .maxlen
= sizeof(aio_nr
),
987 .proc_handler
= &proc_doulongvec_minmax
,
990 .ctl_name
= FS_AIO_MAX_NR
,
991 .procname
= "aio-max-nr",
993 .maxlen
= sizeof(aio_max_nr
),
995 .proc_handler
= &proc_doulongvec_minmax
,
997 #ifdef CONFIG_INOTIFY
999 .ctl_name
= FS_INOTIFY
,
1000 .procname
= "inotify",
1002 .child
= inotify_table
,
1007 .ctl_name
= KERN_SETUID_DUMPABLE
,
1008 .procname
= "suid_dumpable",
1009 .data
= &suid_dumpable
,
1010 .maxlen
= sizeof(int),
1012 .proc_handler
= &proc_dointvec
,
1017 static ctl_table debug_table
[] = {
1021 static ctl_table dev_table
[] = {
1025 extern void init_irq_proc (void);
1027 static DEFINE_SPINLOCK(sysctl_lock
);
1029 /* called under sysctl_lock */
1030 static int use_table(struct ctl_table_header
*p
)
1032 if (unlikely(p
->unregistering
))
1038 /* called under sysctl_lock */
1039 static void unuse_table(struct ctl_table_header
*p
)
1042 if (unlikely(p
->unregistering
))
1043 complete(p
->unregistering
);
1046 /* called under sysctl_lock, will reacquire if has to wait */
1047 static void start_unregistering(struct ctl_table_header
*p
)
1050 * if p->used is 0, nobody will ever touch that entry again;
1051 * we'll eliminate all paths to it before dropping sysctl_lock
1053 if (unlikely(p
->used
)) {
1054 struct completion wait
;
1055 init_completion(&wait
);
1056 p
->unregistering
= &wait
;
1057 spin_unlock(&sysctl_lock
);
1058 wait_for_completion(&wait
);
1059 spin_lock(&sysctl_lock
);
1062 * do not remove from the list until nobody holds it; walking the
1063 * list in do_sysctl() relies on that.
1065 list_del_init(&p
->ctl_entry
);
1068 void __init
sysctl_init(void)
1070 #ifdef CONFIG_PROC_FS
1071 register_proc_table(root_table
, proc_sys_root
, &root_table_header
);
1076 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1077 void __user
*newval
, size_t newlen
)
1079 struct list_head
*tmp
;
1080 int error
= -ENOTDIR
;
1082 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1086 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1089 spin_lock(&sysctl_lock
);
1090 tmp
= &root_table_header
.ctl_entry
;
1092 struct ctl_table_header
*head
=
1093 list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1094 void *context
= NULL
;
1096 if (!use_table(head
))
1099 spin_unlock(&sysctl_lock
);
1101 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1102 newval
, newlen
, head
->ctl_table
,
1106 spin_lock(&sysctl_lock
);
1108 if (error
!= -ENOTDIR
)
1110 } while ((tmp
= tmp
->next
) != &root_table_header
.ctl_entry
);
1111 spin_unlock(&sysctl_lock
);
1115 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1117 struct __sysctl_args tmp
;
1120 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1124 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1125 tmp
.newval
, tmp
.newlen
);
1131 * ctl_perm does NOT grant the superuser all rights automatically, because
1132 * some sysctl variables are readonly even to root.
1135 static int test_perm(int mode
, int op
)
1139 else if (in_egroup_p(0))
1141 if ((mode
& op
& 0007) == op
)
1146 static inline int ctl_perm(ctl_table
*table
, int op
)
1149 error
= security_sysctl(table
, op
);
1152 return test_perm(table
->mode
, op
);
1155 static int parse_table(int __user
*name
, int nlen
,
1156 void __user
*oldval
, size_t __user
*oldlenp
,
1157 void __user
*newval
, size_t newlen
,
1158 ctl_table
*table
, void **context
)
1164 if (get_user(n
, name
))
1166 for ( ; table
->ctl_name
; table
++) {
1167 if (n
== table
->ctl_name
|| table
->ctl_name
== CTL_ANY
) {
1170 if (ctl_perm(table
, 001))
1172 if (table
->strategy
) {
1173 error
= table
->strategy(
1176 newval
, newlen
, context
);
1182 table
= table
->child
;
1185 error
= do_sysctl_strategy(table
, name
, nlen
,
1187 newval
, newlen
, context
);
1194 /* Perform the actual read/write of a sysctl table entry. */
1195 int do_sysctl_strategy (ctl_table
*table
,
1196 int __user
*name
, int nlen
,
1197 void __user
*oldval
, size_t __user
*oldlenp
,
1198 void __user
*newval
, size_t newlen
, void **context
)
1207 if (ctl_perm(table
, op
))
1210 if (table
->strategy
) {
1211 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1212 newval
, newlen
, context
);
1219 /* If there is no strategy routine, or if the strategy returns
1220 * zero, proceed with automatic r/w */
1221 if (table
->data
&& table
->maxlen
) {
1222 if (oldval
&& oldlenp
) {
1223 if (get_user(len
, oldlenp
))
1226 if (len
> table
->maxlen
)
1227 len
= table
->maxlen
;
1228 if(copy_to_user(oldval
, table
->data
, len
))
1230 if(put_user(len
, oldlenp
))
1234 if (newval
&& newlen
) {
1236 if (len
> table
->maxlen
)
1237 len
= table
->maxlen
;
1238 if(copy_from_user(table
->data
, newval
, len
))
1246 * register_sysctl_table - register a sysctl hierarchy
1247 * @table: the top-level table structure
1248 * @insert_at_head: whether the entry should be inserted in front or at the end
1250 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1251 * array. An entry with a ctl_name of 0 terminates the table.
1253 * The members of the &ctl_table structure are used as follows:
1255 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1256 * must be unique within that level of sysctl
1258 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1259 * enter a sysctl file
1261 * data - a pointer to data for use by proc_handler
1263 * maxlen - the maximum size in bytes of the data
1265 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1267 * child - a pointer to the child sysctl table if this entry is a directory, or
1270 * proc_handler - the text handler routine (described below)
1272 * strategy - the strategy routine (described below)
1274 * de - for internal use by the sysctl routines
1276 * extra1, extra2 - extra pointers usable by the proc handler routines
1278 * Leaf nodes in the sysctl tree will be represented by a single file
1279 * under /proc; non-leaf nodes will be represented by directories.
1281 * sysctl(2) can automatically manage read and write requests through
1282 * the sysctl table. The data and maxlen fields of the ctl_table
1283 * struct enable minimal validation of the values being written to be
1284 * performed, and the mode field allows minimal authentication.
1286 * More sophisticated management can be enabled by the provision of a
1287 * strategy routine with the table entry. This will be called before
1288 * any automatic read or write of the data is performed.
1290 * The strategy routine may return
1292 * < 0 - Error occurred (error is passed to user process)
1294 * 0 - OK - proceed with automatic read or write.
1296 * > 0 - OK - read or write has been done by the strategy routine, so
1297 * return immediately.
1299 * There must be a proc_handler routine for any terminal nodes
1300 * mirrored under /proc/sys (non-terminals are handled by a built-in
1301 * directory handler). Several default handlers are available to
1302 * cover common cases -
1304 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1305 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1306 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1308 * It is the handler's job to read the input buffer from user memory
1309 * and process it. The handler should return 0 on success.
1311 * This routine returns %NULL on a failure to register, and a pointer
1312 * to the table header on success.
1314 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
,
1317 struct ctl_table_header
*tmp
;
1318 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1321 tmp
->ctl_table
= table
;
1322 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1324 tmp
->unregistering
= NULL
;
1325 spin_lock(&sysctl_lock
);
1327 list_add(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1329 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1330 spin_unlock(&sysctl_lock
);
1331 #ifdef CONFIG_PROC_FS
1332 register_proc_table(table
, proc_sys_root
, tmp
);
1338 * unregister_sysctl_table - unregister a sysctl table hierarchy
1339 * @header: the header returned from register_sysctl_table
1341 * Unregisters the sysctl table and all children. proc entries may not
1342 * actually be removed until they are no longer used by anyone.
1344 void unregister_sysctl_table(struct ctl_table_header
* header
)
1347 spin_lock(&sysctl_lock
);
1348 start_unregistering(header
);
1349 #ifdef CONFIG_PROC_FS
1350 unregister_proc_table(header
->ctl_table
, proc_sys_root
);
1352 spin_unlock(&sysctl_lock
);
1360 #ifdef CONFIG_PROC_FS
1362 /* Scan the sysctl entries in table and add them all into /proc */
1363 static void register_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
, void *set
)
1365 struct proc_dir_entry
*de
;
1369 for (; table
->ctl_name
; table
++) {
1370 /* Can't do anything without a proc name. */
1371 if (!table
->procname
)
1373 /* Maybe we can't do anything with it... */
1374 if (!table
->proc_handler
&& !table
->child
) {
1375 printk(KERN_WARNING
"SYSCTL: Can't register %s\n",
1380 len
= strlen(table
->procname
);
1384 if (table
->proc_handler
)
1388 for (de
= root
->subdir
; de
; de
= de
->next
) {
1389 if (proc_match(len
, table
->procname
, de
))
1392 /* If the subdir exists already, de is non-NULL */
1396 de
= create_proc_entry(table
->procname
, mode
, root
);
1400 de
->data
= (void *) table
;
1401 if (table
->proc_handler
)
1402 de
->proc_fops
= &proc_sys_file_operations
;
1405 if (de
->mode
& S_IFDIR
)
1406 register_proc_table(table
->child
, de
, set
);
1411 * Unregister a /proc sysctl table and any subdirectories.
1413 static void unregister_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
)
1415 struct proc_dir_entry
*de
;
1416 for (; table
->ctl_name
; table
++) {
1417 if (!(de
= table
->de
))
1419 if (de
->mode
& S_IFDIR
) {
1420 if (!table
->child
) {
1421 printk (KERN_ALERT
"Help - malformed sysctl tree on free\n");
1424 unregister_proc_table(table
->child
, de
);
1426 /* Don't unregister directories which still have entries.. */
1432 * In any case, mark the entry as goner; we'll keep it
1433 * around if it's busy, but we'll know to do nothing with
1434 * its fields. We are under sysctl_lock here.
1438 /* Don't unregister proc entries that are still being used.. */
1439 if (atomic_read(&de
->count
))
1443 remove_proc_entry(table
->procname
, root
);
1447 static ssize_t
do_rw_proc(int write
, struct file
* file
, char __user
* buf
,
1448 size_t count
, loff_t
*ppos
)
1451 struct proc_dir_entry
*de
= PDE(file
->f_dentry
->d_inode
);
1452 struct ctl_table
*table
;
1454 ssize_t error
= -ENOTDIR
;
1456 spin_lock(&sysctl_lock
);
1457 if (de
&& de
->data
&& use_table(de
->set
)) {
1459 * at that point we know that sysctl was not unregistered
1460 * and won't be until we finish
1462 spin_unlock(&sysctl_lock
);
1463 table
= (struct ctl_table
*) de
->data
;
1464 if (!table
|| !table
->proc_handler
)
1467 op
= (write
? 002 : 004);
1468 if (ctl_perm(table
, op
))
1471 /* careful: calling conventions are nasty here */
1473 error
= (*table
->proc_handler
)(table
, write
, file
,
1478 spin_lock(&sysctl_lock
);
1479 unuse_table(de
->set
);
1481 spin_unlock(&sysctl_lock
);
1485 static int proc_opensys(struct inode
*inode
, struct file
*file
)
1487 if (file
->f_mode
& FMODE_WRITE
) {
1489 * sysctl entries that are not writable,
1490 * are _NOT_ writable, capabilities or not.
1492 if (!(inode
->i_mode
& S_IWUSR
))
1499 static ssize_t
proc_readsys(struct file
* file
, char __user
* buf
,
1500 size_t count
, loff_t
*ppos
)
1502 return do_rw_proc(0, file
, buf
, count
, ppos
);
1505 static ssize_t
proc_writesys(struct file
* file
, const char __user
* buf
,
1506 size_t count
, loff_t
*ppos
)
1508 return do_rw_proc(1, file
, (char __user
*) buf
, count
, ppos
);
1512 * proc_dostring - read a string sysctl
1513 * @table: the sysctl table
1514 * @write: %TRUE if this is a write to the sysctl file
1515 * @filp: the file structure
1516 * @buffer: the user buffer
1517 * @lenp: the size of the user buffer
1518 * @ppos: file position
1520 * Reads/writes a string from/to the user buffer. If the kernel
1521 * buffer provided is not large enough to hold the string, the
1522 * string is truncated. The copied string is %NULL-terminated.
1523 * If the string is being read by the user process, it is copied
1524 * and a newline '\n' is added. It is truncated if the buffer is
1527 * Returns 0 on success.
1529 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1530 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1536 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1537 (*ppos
&& !write
)) {
1545 while (len
< *lenp
) {
1546 if (get_user(c
, p
++))
1548 if (c
== 0 || c
== '\n')
1552 if (len
>= table
->maxlen
)
1553 len
= table
->maxlen
-1;
1554 if(copy_from_user(table
->data
, buffer
, len
))
1556 ((char *) table
->data
)[len
] = 0;
1559 len
= strlen(table
->data
);
1560 if (len
> table
->maxlen
)
1561 len
= table
->maxlen
;
1565 if(copy_to_user(buffer
, table
->data
, len
))
1568 if(put_user('\n', ((char __user
*) buffer
) + len
))
1579 * Special case of dostring for the UTS structure. This has locks
1580 * to observe. Should this be in kernel/sys.c ????
1583 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
1584 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1589 down_read(&uts_sem
);
1590 r
=proc_dostring(table
,0,filp
,buffer
,lenp
, ppos
);
1593 down_write(&uts_sem
);
1594 r
=proc_dostring(table
,1,filp
,buffer
,lenp
, ppos
);
1600 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1602 int write
, void *data
)
1605 *valp
= *negp
? -*lvalp
: *lvalp
;
1610 *lvalp
= (unsigned long)-val
;
1613 *lvalp
= (unsigned long)val
;
1619 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1620 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1621 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1622 int write
, void *data
),
1625 #define TMPBUFLEN 21
1626 int *i
, vleft
, first
=1, neg
, val
;
1630 char buf
[TMPBUFLEN
], *p
;
1631 char __user
*s
= buffer
;
1633 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1634 (*ppos
&& !write
)) {
1639 i
= (int *) table
->data
;
1640 vleft
= table
->maxlen
/ sizeof(*i
);
1644 conv
= do_proc_dointvec_conv
;
1646 for (; left
&& vleft
--; i
++, first
=0) {
1661 if (len
> sizeof(buf
) - 1)
1662 len
= sizeof(buf
) - 1;
1663 if (copy_from_user(buf
, s
, len
))
1667 if (*p
== '-' && left
> 1) {
1671 if (*p
< '0' || *p
> '9')
1674 lval
= simple_strtoul(p
, &p
, 0);
1677 if ((len
< left
) && *p
&& !isspace(*p
))
1684 if (conv(&neg
, &lval
, i
, 1, data
))
1691 if (conv(&neg
, &lval
, i
, 0, data
))
1694 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1698 if(copy_to_user(s
, buf
, len
))
1705 if (!write
&& !first
&& left
) {
1706 if(put_user('\n', s
))
1713 if (get_user(c
, s
++))
1729 * proc_dointvec - read a vector of integers
1730 * @table: the sysctl table
1731 * @write: %TRUE if this is a write to the sysctl file
1732 * @filp: the file structure
1733 * @buffer: the user buffer
1734 * @lenp: the size of the user buffer
1735 * @ppos: file position
1737 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1738 * values from/to the user buffer, treated as an ASCII string.
1740 * Returns 0 on success.
1742 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1743 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1745 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1755 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1757 int write
, void *data
)
1759 int op
= *(int *)data
;
1761 int val
= *negp
? -*lvalp
: *lvalp
;
1763 case OP_SET
: *valp
= val
; break;
1764 case OP_AND
: *valp
&= val
; break;
1765 case OP_OR
: *valp
|= val
; break;
1766 case OP_MAX
: if(*valp
< val
)
1769 case OP_MIN
: if(*valp
> val
)
1777 *lvalp
= (unsigned long)-val
;
1780 *lvalp
= (unsigned long)val
;
1787 * init may raise the set.
1790 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
1791 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1795 if (!capable(CAP_SYS_MODULE
)) {
1799 op
= (current
->pid
== 1) ? OP_SET
: OP_AND
;
1800 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1801 do_proc_dointvec_bset_conv
,&op
);
1804 struct do_proc_dointvec_minmax_conv_param
{
1809 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
1811 int write
, void *data
)
1813 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1815 int val
= *negp
? -*lvalp
: *lvalp
;
1816 if ((param
->min
&& *param
->min
> val
) ||
1817 (param
->max
&& *param
->max
< val
))
1824 *lvalp
= (unsigned long)-val
;
1827 *lvalp
= (unsigned long)val
;
1834 * proc_dointvec_minmax - read a vector of integers with min/max values
1835 * @table: the sysctl table
1836 * @write: %TRUE if this is a write to the sysctl file
1837 * @filp: the file structure
1838 * @buffer: the user buffer
1839 * @lenp: the size of the user buffer
1840 * @ppos: file position
1842 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1843 * values from/to the user buffer, treated as an ASCII string.
1845 * This routine will ensure the values are within the range specified by
1846 * table->extra1 (min) and table->extra2 (max).
1848 * Returns 0 on success.
1850 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1851 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1853 struct do_proc_dointvec_minmax_conv_param param
= {
1854 .min
= (int *) table
->extra1
,
1855 .max
= (int *) table
->extra2
,
1857 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
1858 do_proc_dointvec_minmax_conv
, ¶m
);
1861 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
1863 void __user
*buffer
,
1864 size_t *lenp
, loff_t
*ppos
,
1865 unsigned long convmul
,
1866 unsigned long convdiv
)
1868 #define TMPBUFLEN 21
1869 unsigned long *i
, *min
, *max
, val
;
1870 int vleft
, first
=1, neg
;
1872 char buf
[TMPBUFLEN
], *p
;
1873 char __user
*s
= buffer
;
1875 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1876 (*ppos
&& !write
)) {
1881 i
= (unsigned long *) table
->data
;
1882 min
= (unsigned long *) table
->extra1
;
1883 max
= (unsigned long *) table
->extra2
;
1884 vleft
= table
->maxlen
/ sizeof(unsigned long);
1887 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
1902 if (len
> TMPBUFLEN
-1)
1904 if (copy_from_user(buf
, s
, len
))
1908 if (*p
== '-' && left
> 1) {
1912 if (*p
< '0' || *p
> '9')
1914 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
1916 if ((len
< left
) && *p
&& !isspace(*p
))
1925 if ((min
&& val
< *min
) || (max
&& val
> *max
))
1932 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
1936 if(copy_to_user(s
, buf
, len
))
1943 if (!write
&& !first
&& left
) {
1944 if(put_user('\n', s
))
1951 if (get_user(c
, s
++))
1967 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1968 * @table: the sysctl table
1969 * @write: %TRUE if this is a write to the sysctl file
1970 * @filp: the file structure
1971 * @buffer: the user buffer
1972 * @lenp: the size of the user buffer
1973 * @ppos: file position
1975 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1976 * values from/to the user buffer, treated as an ASCII string.
1978 * This routine will ensure the values are within the range specified by
1979 * table->extra1 (min) and table->extra2 (max).
1981 * Returns 0 on success.
1983 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1984 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1986 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
1990 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1991 * @table: the sysctl table
1992 * @write: %TRUE if this is a write to the sysctl file
1993 * @filp: the file structure
1994 * @buffer: the user buffer
1995 * @lenp: the size of the user buffer
1996 * @ppos: file position
1998 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1999 * values from/to the user buffer, treated as an ASCII string. The values
2000 * are treated as milliseconds, and converted to jiffies when they are stored.
2002 * This routine will ensure the values are within the range specified by
2003 * table->extra1 (min) and table->extra2 (max).
2005 * Returns 0 on success.
2007 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2009 void __user
*buffer
,
2010 size_t *lenp
, loff_t
*ppos
)
2012 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2013 lenp
, ppos
, HZ
, 1000l);
2017 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2019 int write
, void *data
)
2022 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2028 lval
= (unsigned long)-val
;
2031 lval
= (unsigned long)val
;
2038 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2040 int write
, void *data
)
2043 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2049 lval
= (unsigned long)-val
;
2052 lval
= (unsigned long)val
;
2054 *lvalp
= jiffies_to_clock_t(lval
);
2059 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2061 int write
, void *data
)
2064 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2070 lval
= (unsigned long)-val
;
2073 lval
= (unsigned long)val
;
2075 *lvalp
= jiffies_to_msecs(lval
);
2081 * proc_dointvec_jiffies - read a vector of integers as seconds
2082 * @table: the sysctl table
2083 * @write: %TRUE if this is a write to the sysctl file
2084 * @filp: the file structure
2085 * @buffer: the user buffer
2086 * @lenp: the size of the user buffer
2087 * @ppos: file position
2089 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2090 * values from/to the user buffer, treated as an ASCII string.
2091 * The values read are assumed to be in seconds, and are converted into
2094 * Returns 0 on success.
2096 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2097 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2099 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2100 do_proc_dointvec_jiffies_conv
,NULL
);
2104 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2105 * @table: the sysctl table
2106 * @write: %TRUE if this is a write to the sysctl file
2107 * @filp: the file structure
2108 * @buffer: the user buffer
2109 * @lenp: the size of the user buffer
2110 * @ppos: pointer to the file position
2112 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2113 * values from/to the user buffer, treated as an ASCII string.
2114 * The values read are assumed to be in 1/USER_HZ seconds, and
2115 * are converted into jiffies.
2117 * Returns 0 on success.
2119 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2120 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2122 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2123 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2127 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2128 * @table: the sysctl table
2129 * @write: %TRUE if this is a write to the sysctl file
2130 * @filp: the file structure
2131 * @buffer: the user buffer
2132 * @lenp: the size of the user buffer
2133 * @ppos: file position
2134 * @ppos: the current position in the file
2136 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2137 * values from/to the user buffer, treated as an ASCII string.
2138 * The values read are assumed to be in 1/1000 seconds, and
2139 * are converted into jiffies.
2141 * Returns 0 on success.
2143 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2144 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2146 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2147 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2150 #else /* CONFIG_PROC_FS */
2152 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2153 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2158 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
2159 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2164 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2165 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2170 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2171 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2176 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2177 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2182 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2183 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2188 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2189 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2194 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2195 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2200 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2201 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2206 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2208 void __user
*buffer
,
2209 size_t *lenp
, loff_t
*ppos
)
2215 #endif /* CONFIG_PROC_FS */
2219 * General sysctl support routines
2222 /* The generic string strategy routine: */
2223 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2224 void __user
*oldval
, size_t __user
*oldlenp
,
2225 void __user
*newval
, size_t newlen
, void **context
)
2227 if (!table
->data
|| !table
->maxlen
)
2230 if (oldval
&& oldlenp
) {
2232 if (get_user(bufsize
, oldlenp
))
2235 size_t len
= strlen(table
->data
), copied
;
2237 /* This shouldn't trigger for a well-formed sysctl */
2238 if (len
> table
->maxlen
)
2239 len
= table
->maxlen
;
2241 /* Copy up to a max of bufsize-1 bytes of the string */
2242 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2244 if (copy_to_user(oldval
, table
->data
, copied
) ||
2245 put_user(0, (char __user
*)(oldval
+ copied
)))
2247 if (put_user(len
, oldlenp
))
2251 if (newval
&& newlen
) {
2252 size_t len
= newlen
;
2253 if (len
> table
->maxlen
)
2254 len
= table
->maxlen
;
2255 if(copy_from_user(table
->data
, newval
, len
))
2257 if (len
== table
->maxlen
)
2259 ((char *) table
->data
)[len
] = 0;
2265 * This function makes sure that all of the integers in the vector
2266 * are between the minimum and maximum values given in the arrays
2267 * table->extra1 and table->extra2, respectively.
2269 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2270 void __user
*oldval
, size_t __user
*oldlenp
,
2271 void __user
*newval
, size_t newlen
, void **context
)
2274 if (newval
&& newlen
) {
2275 int __user
*vec
= (int __user
*) newval
;
2276 int *min
= (int *) table
->extra1
;
2277 int *max
= (int *) table
->extra2
;
2281 if (newlen
% sizeof(int) != 0)
2284 if (!table
->extra1
&& !table
->extra2
)
2287 if (newlen
> table
->maxlen
)
2288 newlen
= table
->maxlen
;
2289 length
= newlen
/ sizeof(int);
2291 for (i
= 0; i
< length
; i
++) {
2293 if (get_user(value
, vec
+ i
))
2295 if (min
&& value
< min
[i
])
2297 if (max
&& value
> max
[i
])
2304 /* Strategy function to convert jiffies to seconds */
2305 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2306 void __user
*oldval
, size_t __user
*oldlenp
,
2307 void __user
*newval
, size_t newlen
, void **context
)
2312 if (get_user(olen
, oldlenp
))
2314 if (olen
!=sizeof(int))
2317 if (put_user(*(int *)(table
->data
)/HZ
, (int __user
*)oldval
) ||
2318 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2321 if (newval
&& newlen
) {
2323 if (newlen
!= sizeof(int))
2325 if (get_user(new, (int __user
*)newval
))
2327 *(int *)(table
->data
) = new*HZ
;
2332 /* Strategy function to convert jiffies to seconds */
2333 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2334 void __user
*oldval
, size_t __user
*oldlenp
,
2335 void __user
*newval
, size_t newlen
, void **context
)
2340 if (get_user(olen
, oldlenp
))
2342 if (olen
!=sizeof(int))
2345 if (put_user(jiffies_to_msecs(*(int *)(table
->data
)), (int __user
*)oldval
) ||
2346 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2349 if (newval
&& newlen
) {
2351 if (newlen
!= sizeof(int))
2353 if (get_user(new, (int __user
*)newval
))
2355 *(int *)(table
->data
) = msecs_to_jiffies(new);
2360 #else /* CONFIG_SYSCTL */
2363 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2368 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2369 void __user
*oldval
, size_t __user
*oldlenp
,
2370 void __user
*newval
, size_t newlen
, void **context
)
2375 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2376 void __user
*oldval
, size_t __user
*oldlenp
,
2377 void __user
*newval
, size_t newlen
, void **context
)
2382 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2383 void __user
*oldval
, size_t __user
*oldlenp
,
2384 void __user
*newval
, size_t newlen
, void **context
)
2389 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2390 void __user
*oldval
, size_t __user
*oldlenp
,
2391 void __user
*newval
, size_t newlen
, void **context
)
2396 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2397 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2402 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2403 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2408 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2409 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2414 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2415 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2420 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2421 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2426 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2427 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2432 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2433 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2438 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2439 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2444 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2446 void __user
*buffer
,
2447 size_t *lenp
, loff_t
*ppos
)
2452 struct ctl_table_header
* register_sysctl_table(ctl_table
* table
,
2458 void unregister_sysctl_table(struct ctl_table_header
* table
)
2462 #endif /* CONFIG_SYSCTL */
2465 * No sense putting this after each symbol definition, twice,
2466 * exception granted :-)
2468 EXPORT_SYMBOL(proc_dointvec
);
2469 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2470 EXPORT_SYMBOL(proc_dointvec_minmax
);
2471 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2472 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2473 EXPORT_SYMBOL(proc_dostring
);
2474 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2475 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2476 EXPORT_SYMBOL(register_sysctl_table
);
2477 EXPORT_SYMBOL(sysctl_intvec
);
2478 EXPORT_SYMBOL(sysctl_jiffies
);
2479 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2480 EXPORT_SYMBOL(sysctl_string
);
2481 EXPORT_SYMBOL(unregister_sysctl_table
);