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
,
881 .strategy
= &sysctl_intvec
,
885 .ctl_name
= VM_ZONE_RECLAIM_INTERVAL
,
886 .procname
= "zone_reclaim_interval",
887 .data
= &zone_reclaim_interval
,
888 .maxlen
= sizeof(zone_reclaim_interval
),
890 .proc_handler
= &proc_dointvec_jiffies
,
891 .strategy
= &sysctl_jiffies
,
897 static ctl_table proc_table
[] = {
901 static ctl_table fs_table
[] = {
903 .ctl_name
= FS_NRINODE
,
904 .procname
= "inode-nr",
905 .data
= &inodes_stat
,
906 .maxlen
= 2*sizeof(int),
908 .proc_handler
= &proc_dointvec
,
911 .ctl_name
= FS_STATINODE
,
912 .procname
= "inode-state",
913 .data
= &inodes_stat
,
914 .maxlen
= 7*sizeof(int),
916 .proc_handler
= &proc_dointvec
,
919 .ctl_name
= FS_NRFILE
,
920 .procname
= "file-nr",
922 .maxlen
= 3*sizeof(int),
924 .proc_handler
= &proc_dointvec
,
927 .ctl_name
= FS_MAXFILE
,
928 .procname
= "file-max",
929 .data
= &files_stat
.max_files
,
930 .maxlen
= sizeof(int),
932 .proc_handler
= &proc_dointvec
,
935 .ctl_name
= FS_DENTRY
,
936 .procname
= "dentry-state",
937 .data
= &dentry_stat
,
938 .maxlen
= 6*sizeof(int),
940 .proc_handler
= &proc_dointvec
,
943 .ctl_name
= FS_OVERFLOWUID
,
944 .procname
= "overflowuid",
945 .data
= &fs_overflowuid
,
946 .maxlen
= sizeof(int),
948 .proc_handler
= &proc_dointvec_minmax
,
949 .strategy
= &sysctl_intvec
,
950 .extra1
= &minolduid
,
951 .extra2
= &maxolduid
,
954 .ctl_name
= FS_OVERFLOWGID
,
955 .procname
= "overflowgid",
956 .data
= &fs_overflowgid
,
957 .maxlen
= sizeof(int),
959 .proc_handler
= &proc_dointvec_minmax
,
960 .strategy
= &sysctl_intvec
,
961 .extra1
= &minolduid
,
962 .extra2
= &maxolduid
,
965 .ctl_name
= FS_LEASES
,
966 .procname
= "leases-enable",
967 .data
= &leases_enable
,
968 .maxlen
= sizeof(int),
970 .proc_handler
= &proc_dointvec
,
972 #ifdef CONFIG_DNOTIFY
974 .ctl_name
= FS_DIR_NOTIFY
,
975 .procname
= "dir-notify-enable",
976 .data
= &dir_notify_enable
,
977 .maxlen
= sizeof(int),
979 .proc_handler
= &proc_dointvec
,
984 .ctl_name
= FS_LEASE_TIME
,
985 .procname
= "lease-break-time",
986 .data
= &lease_break_time
,
987 .maxlen
= sizeof(int),
989 .proc_handler
= &proc_dointvec
,
992 .ctl_name
= FS_AIO_NR
,
993 .procname
= "aio-nr",
995 .maxlen
= sizeof(aio_nr
),
997 .proc_handler
= &proc_doulongvec_minmax
,
1000 .ctl_name
= FS_AIO_MAX_NR
,
1001 .procname
= "aio-max-nr",
1002 .data
= &aio_max_nr
,
1003 .maxlen
= sizeof(aio_max_nr
),
1005 .proc_handler
= &proc_doulongvec_minmax
,
1007 #ifdef CONFIG_INOTIFY
1009 .ctl_name
= FS_INOTIFY
,
1010 .procname
= "inotify",
1012 .child
= inotify_table
,
1017 .ctl_name
= KERN_SETUID_DUMPABLE
,
1018 .procname
= "suid_dumpable",
1019 .data
= &suid_dumpable
,
1020 .maxlen
= sizeof(int),
1022 .proc_handler
= &proc_dointvec
,
1027 static ctl_table debug_table
[] = {
1031 static ctl_table dev_table
[] = {
1035 extern void init_irq_proc (void);
1037 static DEFINE_SPINLOCK(sysctl_lock
);
1039 /* called under sysctl_lock */
1040 static int use_table(struct ctl_table_header
*p
)
1042 if (unlikely(p
->unregistering
))
1048 /* called under sysctl_lock */
1049 static void unuse_table(struct ctl_table_header
*p
)
1052 if (unlikely(p
->unregistering
))
1053 complete(p
->unregistering
);
1056 /* called under sysctl_lock, will reacquire if has to wait */
1057 static void start_unregistering(struct ctl_table_header
*p
)
1060 * if p->used is 0, nobody will ever touch that entry again;
1061 * we'll eliminate all paths to it before dropping sysctl_lock
1063 if (unlikely(p
->used
)) {
1064 struct completion wait
;
1065 init_completion(&wait
);
1066 p
->unregistering
= &wait
;
1067 spin_unlock(&sysctl_lock
);
1068 wait_for_completion(&wait
);
1069 spin_lock(&sysctl_lock
);
1072 * do not remove from the list until nobody holds it; walking the
1073 * list in do_sysctl() relies on that.
1075 list_del_init(&p
->ctl_entry
);
1078 void __init
sysctl_init(void)
1080 #ifdef CONFIG_PROC_FS
1081 register_proc_table(root_table
, proc_sys_root
, &root_table_header
);
1086 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1087 void __user
*newval
, size_t newlen
)
1089 struct list_head
*tmp
;
1090 int error
= -ENOTDIR
;
1092 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1096 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1099 spin_lock(&sysctl_lock
);
1100 tmp
= &root_table_header
.ctl_entry
;
1102 struct ctl_table_header
*head
=
1103 list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1104 void *context
= NULL
;
1106 if (!use_table(head
))
1109 spin_unlock(&sysctl_lock
);
1111 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1112 newval
, newlen
, head
->ctl_table
,
1116 spin_lock(&sysctl_lock
);
1118 if (error
!= -ENOTDIR
)
1120 } while ((tmp
= tmp
->next
) != &root_table_header
.ctl_entry
);
1121 spin_unlock(&sysctl_lock
);
1125 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1127 struct __sysctl_args tmp
;
1130 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1134 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1135 tmp
.newval
, tmp
.newlen
);
1141 * ctl_perm does NOT grant the superuser all rights automatically, because
1142 * some sysctl variables are readonly even to root.
1145 static int test_perm(int mode
, int op
)
1149 else if (in_egroup_p(0))
1151 if ((mode
& op
& 0007) == op
)
1156 static inline int ctl_perm(ctl_table
*table
, int op
)
1159 error
= security_sysctl(table
, op
);
1162 return test_perm(table
->mode
, op
);
1165 static int parse_table(int __user
*name
, int nlen
,
1166 void __user
*oldval
, size_t __user
*oldlenp
,
1167 void __user
*newval
, size_t newlen
,
1168 ctl_table
*table
, void **context
)
1174 if (get_user(n
, name
))
1176 for ( ; table
->ctl_name
; table
++) {
1177 if (n
== table
->ctl_name
|| table
->ctl_name
== CTL_ANY
) {
1180 if (ctl_perm(table
, 001))
1182 if (table
->strategy
) {
1183 error
= table
->strategy(
1186 newval
, newlen
, context
);
1192 table
= table
->child
;
1195 error
= do_sysctl_strategy(table
, name
, nlen
,
1197 newval
, newlen
, context
);
1204 /* Perform the actual read/write of a sysctl table entry. */
1205 int do_sysctl_strategy (ctl_table
*table
,
1206 int __user
*name
, int nlen
,
1207 void __user
*oldval
, size_t __user
*oldlenp
,
1208 void __user
*newval
, size_t newlen
, void **context
)
1217 if (ctl_perm(table
, op
))
1220 if (table
->strategy
) {
1221 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1222 newval
, newlen
, context
);
1229 /* If there is no strategy routine, or if the strategy returns
1230 * zero, proceed with automatic r/w */
1231 if (table
->data
&& table
->maxlen
) {
1232 if (oldval
&& oldlenp
) {
1233 if (get_user(len
, oldlenp
))
1236 if (len
> table
->maxlen
)
1237 len
= table
->maxlen
;
1238 if(copy_to_user(oldval
, table
->data
, len
))
1240 if(put_user(len
, oldlenp
))
1244 if (newval
&& newlen
) {
1246 if (len
> table
->maxlen
)
1247 len
= table
->maxlen
;
1248 if(copy_from_user(table
->data
, newval
, len
))
1256 * register_sysctl_table - register a sysctl hierarchy
1257 * @table: the top-level table structure
1258 * @insert_at_head: whether the entry should be inserted in front or at the end
1260 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1261 * array. An entry with a ctl_name of 0 terminates the table.
1263 * The members of the &ctl_table structure are used as follows:
1265 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1266 * must be unique within that level of sysctl
1268 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1269 * enter a sysctl file
1271 * data - a pointer to data for use by proc_handler
1273 * maxlen - the maximum size in bytes of the data
1275 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1277 * child - a pointer to the child sysctl table if this entry is a directory, or
1280 * proc_handler - the text handler routine (described below)
1282 * strategy - the strategy routine (described below)
1284 * de - for internal use by the sysctl routines
1286 * extra1, extra2 - extra pointers usable by the proc handler routines
1288 * Leaf nodes in the sysctl tree will be represented by a single file
1289 * under /proc; non-leaf nodes will be represented by directories.
1291 * sysctl(2) can automatically manage read and write requests through
1292 * the sysctl table. The data and maxlen fields of the ctl_table
1293 * struct enable minimal validation of the values being written to be
1294 * performed, and the mode field allows minimal authentication.
1296 * More sophisticated management can be enabled by the provision of a
1297 * strategy routine with the table entry. This will be called before
1298 * any automatic read or write of the data is performed.
1300 * The strategy routine may return
1302 * < 0 - Error occurred (error is passed to user process)
1304 * 0 - OK - proceed with automatic read or write.
1306 * > 0 - OK - read or write has been done by the strategy routine, so
1307 * return immediately.
1309 * There must be a proc_handler routine for any terminal nodes
1310 * mirrored under /proc/sys (non-terminals are handled by a built-in
1311 * directory handler). Several default handlers are available to
1312 * cover common cases -
1314 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1315 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1316 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1318 * It is the handler's job to read the input buffer from user memory
1319 * and process it. The handler should return 0 on success.
1321 * This routine returns %NULL on a failure to register, and a pointer
1322 * to the table header on success.
1324 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
,
1327 struct ctl_table_header
*tmp
;
1328 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1331 tmp
->ctl_table
= table
;
1332 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1334 tmp
->unregistering
= NULL
;
1335 spin_lock(&sysctl_lock
);
1337 list_add(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1339 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1340 spin_unlock(&sysctl_lock
);
1341 #ifdef CONFIG_PROC_FS
1342 register_proc_table(table
, proc_sys_root
, tmp
);
1348 * unregister_sysctl_table - unregister a sysctl table hierarchy
1349 * @header: the header returned from register_sysctl_table
1351 * Unregisters the sysctl table and all children. proc entries may not
1352 * actually be removed until they are no longer used by anyone.
1354 void unregister_sysctl_table(struct ctl_table_header
* header
)
1357 spin_lock(&sysctl_lock
);
1358 start_unregistering(header
);
1359 #ifdef CONFIG_PROC_FS
1360 unregister_proc_table(header
->ctl_table
, proc_sys_root
);
1362 spin_unlock(&sysctl_lock
);
1370 #ifdef CONFIG_PROC_FS
1372 /* Scan the sysctl entries in table and add them all into /proc */
1373 static void register_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
, void *set
)
1375 struct proc_dir_entry
*de
;
1379 for (; table
->ctl_name
; table
++) {
1380 /* Can't do anything without a proc name. */
1381 if (!table
->procname
)
1383 /* Maybe we can't do anything with it... */
1384 if (!table
->proc_handler
&& !table
->child
) {
1385 printk(KERN_WARNING
"SYSCTL: Can't register %s\n",
1390 len
= strlen(table
->procname
);
1394 if (table
->proc_handler
)
1398 for (de
= root
->subdir
; de
; de
= de
->next
) {
1399 if (proc_match(len
, table
->procname
, de
))
1402 /* If the subdir exists already, de is non-NULL */
1406 de
= create_proc_entry(table
->procname
, mode
, root
);
1410 de
->data
= (void *) table
;
1411 if (table
->proc_handler
)
1412 de
->proc_fops
= &proc_sys_file_operations
;
1415 if (de
->mode
& S_IFDIR
)
1416 register_proc_table(table
->child
, de
, set
);
1421 * Unregister a /proc sysctl table and any subdirectories.
1423 static void unregister_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
)
1425 struct proc_dir_entry
*de
;
1426 for (; table
->ctl_name
; table
++) {
1427 if (!(de
= table
->de
))
1429 if (de
->mode
& S_IFDIR
) {
1430 if (!table
->child
) {
1431 printk (KERN_ALERT
"Help - malformed sysctl tree on free\n");
1434 unregister_proc_table(table
->child
, de
);
1436 /* Don't unregister directories which still have entries.. */
1442 * In any case, mark the entry as goner; we'll keep it
1443 * around if it's busy, but we'll know to do nothing with
1444 * its fields. We are under sysctl_lock here.
1448 /* Don't unregister proc entries that are still being used.. */
1449 if (atomic_read(&de
->count
))
1453 remove_proc_entry(table
->procname
, root
);
1457 static ssize_t
do_rw_proc(int write
, struct file
* file
, char __user
* buf
,
1458 size_t count
, loff_t
*ppos
)
1461 struct proc_dir_entry
*de
= PDE(file
->f_dentry
->d_inode
);
1462 struct ctl_table
*table
;
1464 ssize_t error
= -ENOTDIR
;
1466 spin_lock(&sysctl_lock
);
1467 if (de
&& de
->data
&& use_table(de
->set
)) {
1469 * at that point we know that sysctl was not unregistered
1470 * and won't be until we finish
1472 spin_unlock(&sysctl_lock
);
1473 table
= (struct ctl_table
*) de
->data
;
1474 if (!table
|| !table
->proc_handler
)
1477 op
= (write
? 002 : 004);
1478 if (ctl_perm(table
, op
))
1481 /* careful: calling conventions are nasty here */
1483 error
= (*table
->proc_handler
)(table
, write
, file
,
1488 spin_lock(&sysctl_lock
);
1489 unuse_table(de
->set
);
1491 spin_unlock(&sysctl_lock
);
1495 static int proc_opensys(struct inode
*inode
, struct file
*file
)
1497 if (file
->f_mode
& FMODE_WRITE
) {
1499 * sysctl entries that are not writable,
1500 * are _NOT_ writable, capabilities or not.
1502 if (!(inode
->i_mode
& S_IWUSR
))
1509 static ssize_t
proc_readsys(struct file
* file
, char __user
* buf
,
1510 size_t count
, loff_t
*ppos
)
1512 return do_rw_proc(0, file
, buf
, count
, ppos
);
1515 static ssize_t
proc_writesys(struct file
* file
, const char __user
* buf
,
1516 size_t count
, loff_t
*ppos
)
1518 return do_rw_proc(1, file
, (char __user
*) buf
, count
, ppos
);
1522 * proc_dostring - read a string sysctl
1523 * @table: the sysctl table
1524 * @write: %TRUE if this is a write to the sysctl file
1525 * @filp: the file structure
1526 * @buffer: the user buffer
1527 * @lenp: the size of the user buffer
1528 * @ppos: file position
1530 * Reads/writes a string from/to the user buffer. If the kernel
1531 * buffer provided is not large enough to hold the string, the
1532 * string is truncated. The copied string is %NULL-terminated.
1533 * If the string is being read by the user process, it is copied
1534 * and a newline '\n' is added. It is truncated if the buffer is
1537 * Returns 0 on success.
1539 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1540 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1546 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1547 (*ppos
&& !write
)) {
1555 while (len
< *lenp
) {
1556 if (get_user(c
, p
++))
1558 if (c
== 0 || c
== '\n')
1562 if (len
>= table
->maxlen
)
1563 len
= table
->maxlen
-1;
1564 if(copy_from_user(table
->data
, buffer
, len
))
1566 ((char *) table
->data
)[len
] = 0;
1569 len
= strlen(table
->data
);
1570 if (len
> table
->maxlen
)
1571 len
= table
->maxlen
;
1575 if(copy_to_user(buffer
, table
->data
, len
))
1578 if(put_user('\n', ((char __user
*) buffer
) + len
))
1589 * Special case of dostring for the UTS structure. This has locks
1590 * to observe. Should this be in kernel/sys.c ????
1593 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
1594 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1599 down_read(&uts_sem
);
1600 r
=proc_dostring(table
,0,filp
,buffer
,lenp
, ppos
);
1603 down_write(&uts_sem
);
1604 r
=proc_dostring(table
,1,filp
,buffer
,lenp
, ppos
);
1610 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1612 int write
, void *data
)
1615 *valp
= *negp
? -*lvalp
: *lvalp
;
1620 *lvalp
= (unsigned long)-val
;
1623 *lvalp
= (unsigned long)val
;
1629 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1630 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1631 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1632 int write
, void *data
),
1635 #define TMPBUFLEN 21
1636 int *i
, vleft
, first
=1, neg
, val
;
1640 char buf
[TMPBUFLEN
], *p
;
1641 char __user
*s
= buffer
;
1643 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1644 (*ppos
&& !write
)) {
1649 i
= (int *) table
->data
;
1650 vleft
= table
->maxlen
/ sizeof(*i
);
1654 conv
= do_proc_dointvec_conv
;
1656 for (; left
&& vleft
--; i
++, first
=0) {
1671 if (len
> sizeof(buf
) - 1)
1672 len
= sizeof(buf
) - 1;
1673 if (copy_from_user(buf
, s
, len
))
1677 if (*p
== '-' && left
> 1) {
1681 if (*p
< '0' || *p
> '9')
1684 lval
= simple_strtoul(p
, &p
, 0);
1687 if ((len
< left
) && *p
&& !isspace(*p
))
1694 if (conv(&neg
, &lval
, i
, 1, data
))
1701 if (conv(&neg
, &lval
, i
, 0, data
))
1704 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1708 if(copy_to_user(s
, buf
, len
))
1715 if (!write
&& !first
&& left
) {
1716 if(put_user('\n', s
))
1723 if (get_user(c
, s
++))
1739 * proc_dointvec - read a vector of integers
1740 * @table: the sysctl table
1741 * @write: %TRUE if this is a write to the sysctl file
1742 * @filp: the file structure
1743 * @buffer: the user buffer
1744 * @lenp: the size of the user buffer
1745 * @ppos: file position
1747 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1748 * values from/to the user buffer, treated as an ASCII string.
1750 * Returns 0 on success.
1752 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1753 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1755 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1765 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1767 int write
, void *data
)
1769 int op
= *(int *)data
;
1771 int val
= *negp
? -*lvalp
: *lvalp
;
1773 case OP_SET
: *valp
= val
; break;
1774 case OP_AND
: *valp
&= val
; break;
1775 case OP_OR
: *valp
|= val
; break;
1776 case OP_MAX
: if(*valp
< val
)
1779 case OP_MIN
: if(*valp
> val
)
1787 *lvalp
= (unsigned long)-val
;
1790 *lvalp
= (unsigned long)val
;
1797 * init may raise the set.
1800 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
1801 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1805 if (!capable(CAP_SYS_MODULE
)) {
1809 op
= (current
->pid
== 1) ? OP_SET
: OP_AND
;
1810 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1811 do_proc_dointvec_bset_conv
,&op
);
1814 struct do_proc_dointvec_minmax_conv_param
{
1819 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
1821 int write
, void *data
)
1823 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1825 int val
= *negp
? -*lvalp
: *lvalp
;
1826 if ((param
->min
&& *param
->min
> val
) ||
1827 (param
->max
&& *param
->max
< val
))
1834 *lvalp
= (unsigned long)-val
;
1837 *lvalp
= (unsigned long)val
;
1844 * proc_dointvec_minmax - read a vector of integers with min/max values
1845 * @table: the sysctl table
1846 * @write: %TRUE if this is a write to the sysctl file
1847 * @filp: the file structure
1848 * @buffer: the user buffer
1849 * @lenp: the size of the user buffer
1850 * @ppos: file position
1852 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1853 * values from/to the user buffer, treated as an ASCII string.
1855 * This routine will ensure the values are within the range specified by
1856 * table->extra1 (min) and table->extra2 (max).
1858 * Returns 0 on success.
1860 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1861 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1863 struct do_proc_dointvec_minmax_conv_param param
= {
1864 .min
= (int *) table
->extra1
,
1865 .max
= (int *) table
->extra2
,
1867 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
1868 do_proc_dointvec_minmax_conv
, ¶m
);
1871 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
1873 void __user
*buffer
,
1874 size_t *lenp
, loff_t
*ppos
,
1875 unsigned long convmul
,
1876 unsigned long convdiv
)
1878 #define TMPBUFLEN 21
1879 unsigned long *i
, *min
, *max
, val
;
1880 int vleft
, first
=1, neg
;
1882 char buf
[TMPBUFLEN
], *p
;
1883 char __user
*s
= buffer
;
1885 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1886 (*ppos
&& !write
)) {
1891 i
= (unsigned long *) table
->data
;
1892 min
= (unsigned long *) table
->extra1
;
1893 max
= (unsigned long *) table
->extra2
;
1894 vleft
= table
->maxlen
/ sizeof(unsigned long);
1897 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
1912 if (len
> TMPBUFLEN
-1)
1914 if (copy_from_user(buf
, s
, len
))
1918 if (*p
== '-' && left
> 1) {
1922 if (*p
< '0' || *p
> '9')
1924 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
1926 if ((len
< left
) && *p
&& !isspace(*p
))
1935 if ((min
&& val
< *min
) || (max
&& val
> *max
))
1942 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
1946 if(copy_to_user(s
, buf
, len
))
1953 if (!write
&& !first
&& left
) {
1954 if(put_user('\n', s
))
1961 if (get_user(c
, s
++))
1977 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1978 * @table: the sysctl table
1979 * @write: %TRUE if this is a write to the sysctl file
1980 * @filp: the file structure
1981 * @buffer: the user buffer
1982 * @lenp: the size of the user buffer
1983 * @ppos: file position
1985 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1986 * values from/to the user buffer, treated as an ASCII string.
1988 * This routine will ensure the values are within the range specified by
1989 * table->extra1 (min) and table->extra2 (max).
1991 * Returns 0 on success.
1993 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1994 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1996 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
2000 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2001 * @table: the sysctl table
2002 * @write: %TRUE if this is a write to the sysctl file
2003 * @filp: the file structure
2004 * @buffer: the user buffer
2005 * @lenp: the size of the user buffer
2006 * @ppos: file position
2008 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2009 * values from/to the user buffer, treated as an ASCII string. The values
2010 * are treated as milliseconds, and converted to jiffies when they are stored.
2012 * This routine will ensure the values are within the range specified by
2013 * table->extra1 (min) and table->extra2 (max).
2015 * Returns 0 on success.
2017 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2019 void __user
*buffer
,
2020 size_t *lenp
, loff_t
*ppos
)
2022 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2023 lenp
, ppos
, HZ
, 1000l);
2027 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2029 int write
, void *data
)
2032 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2038 lval
= (unsigned long)-val
;
2041 lval
= (unsigned long)val
;
2048 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2050 int write
, void *data
)
2053 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2059 lval
= (unsigned long)-val
;
2062 lval
= (unsigned long)val
;
2064 *lvalp
= jiffies_to_clock_t(lval
);
2069 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2071 int write
, void *data
)
2074 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2080 lval
= (unsigned long)-val
;
2083 lval
= (unsigned long)val
;
2085 *lvalp
= jiffies_to_msecs(lval
);
2091 * proc_dointvec_jiffies - read a vector of integers as seconds
2092 * @table: the sysctl table
2093 * @write: %TRUE if this is a write to the sysctl file
2094 * @filp: the file structure
2095 * @buffer: the user buffer
2096 * @lenp: the size of the user buffer
2097 * @ppos: file position
2099 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2100 * values from/to the user buffer, treated as an ASCII string.
2101 * The values read are assumed to be in seconds, and are converted into
2104 * Returns 0 on success.
2106 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2107 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2109 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2110 do_proc_dointvec_jiffies_conv
,NULL
);
2114 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2115 * @table: the sysctl table
2116 * @write: %TRUE if this is a write to the sysctl file
2117 * @filp: the file structure
2118 * @buffer: the user buffer
2119 * @lenp: the size of the user buffer
2120 * @ppos: pointer to the file position
2122 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2123 * values from/to the user buffer, treated as an ASCII string.
2124 * The values read are assumed to be in 1/USER_HZ seconds, and
2125 * are converted into jiffies.
2127 * Returns 0 on success.
2129 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2130 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2132 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2133 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2137 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2138 * @table: the sysctl table
2139 * @write: %TRUE if this is a write to the sysctl file
2140 * @filp: the file structure
2141 * @buffer: the user buffer
2142 * @lenp: the size of the user buffer
2143 * @ppos: file position
2144 * @ppos: the current position in the file
2146 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2147 * values from/to the user buffer, treated as an ASCII string.
2148 * The values read are assumed to be in 1/1000 seconds, and
2149 * are converted into jiffies.
2151 * Returns 0 on success.
2153 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2154 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2156 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2157 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2160 #else /* CONFIG_PROC_FS */
2162 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2163 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2168 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
2169 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2174 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2175 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2180 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2181 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2186 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2187 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2192 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2193 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2198 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2199 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2204 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2205 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2210 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2211 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2216 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2218 void __user
*buffer
,
2219 size_t *lenp
, loff_t
*ppos
)
2225 #endif /* CONFIG_PROC_FS */
2229 * General sysctl support routines
2232 /* The generic string strategy routine: */
2233 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2234 void __user
*oldval
, size_t __user
*oldlenp
,
2235 void __user
*newval
, size_t newlen
, void **context
)
2237 if (!table
->data
|| !table
->maxlen
)
2240 if (oldval
&& oldlenp
) {
2242 if (get_user(bufsize
, oldlenp
))
2245 size_t len
= strlen(table
->data
), copied
;
2247 /* This shouldn't trigger for a well-formed sysctl */
2248 if (len
> table
->maxlen
)
2249 len
= table
->maxlen
;
2251 /* Copy up to a max of bufsize-1 bytes of the string */
2252 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2254 if (copy_to_user(oldval
, table
->data
, copied
) ||
2255 put_user(0, (char __user
*)(oldval
+ copied
)))
2257 if (put_user(len
, oldlenp
))
2261 if (newval
&& newlen
) {
2262 size_t len
= newlen
;
2263 if (len
> table
->maxlen
)
2264 len
= table
->maxlen
;
2265 if(copy_from_user(table
->data
, newval
, len
))
2267 if (len
== table
->maxlen
)
2269 ((char *) table
->data
)[len
] = 0;
2275 * This function makes sure that all of the integers in the vector
2276 * are between the minimum and maximum values given in the arrays
2277 * table->extra1 and table->extra2, respectively.
2279 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2280 void __user
*oldval
, size_t __user
*oldlenp
,
2281 void __user
*newval
, size_t newlen
, void **context
)
2284 if (newval
&& newlen
) {
2285 int __user
*vec
= (int __user
*) newval
;
2286 int *min
= (int *) table
->extra1
;
2287 int *max
= (int *) table
->extra2
;
2291 if (newlen
% sizeof(int) != 0)
2294 if (!table
->extra1
&& !table
->extra2
)
2297 if (newlen
> table
->maxlen
)
2298 newlen
= table
->maxlen
;
2299 length
= newlen
/ sizeof(int);
2301 for (i
= 0; i
< length
; i
++) {
2303 if (get_user(value
, vec
+ i
))
2305 if (min
&& value
< min
[i
])
2307 if (max
&& value
> max
[i
])
2314 /* Strategy function to convert jiffies to seconds */
2315 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2316 void __user
*oldval
, size_t __user
*oldlenp
,
2317 void __user
*newval
, size_t newlen
, void **context
)
2322 if (get_user(olen
, oldlenp
))
2324 if (olen
!=sizeof(int))
2327 if (put_user(*(int *)(table
->data
)/HZ
, (int __user
*)oldval
) ||
2328 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2331 if (newval
&& newlen
) {
2333 if (newlen
!= sizeof(int))
2335 if (get_user(new, (int __user
*)newval
))
2337 *(int *)(table
->data
) = new*HZ
;
2342 /* Strategy function to convert jiffies to seconds */
2343 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2344 void __user
*oldval
, size_t __user
*oldlenp
,
2345 void __user
*newval
, size_t newlen
, void **context
)
2350 if (get_user(olen
, oldlenp
))
2352 if (olen
!=sizeof(int))
2355 if (put_user(jiffies_to_msecs(*(int *)(table
->data
)), (int __user
*)oldval
) ||
2356 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2359 if (newval
&& newlen
) {
2361 if (newlen
!= sizeof(int))
2363 if (get_user(new, (int __user
*)newval
))
2365 *(int *)(table
->data
) = msecs_to_jiffies(new);
2370 #else /* CONFIG_SYSCTL */
2373 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2378 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2379 void __user
*oldval
, size_t __user
*oldlenp
,
2380 void __user
*newval
, size_t newlen
, void **context
)
2385 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2386 void __user
*oldval
, size_t __user
*oldlenp
,
2387 void __user
*newval
, size_t newlen
, void **context
)
2392 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2393 void __user
*oldval
, size_t __user
*oldlenp
,
2394 void __user
*newval
, size_t newlen
, void **context
)
2399 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2400 void __user
*oldval
, size_t __user
*oldlenp
,
2401 void __user
*newval
, size_t newlen
, void **context
)
2406 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2407 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2412 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2413 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2418 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2419 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2424 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2425 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2430 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2431 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2436 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2437 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2442 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2443 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2448 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2449 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2454 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2456 void __user
*buffer
,
2457 size_t *lenp
, loff_t
*ppos
)
2462 struct ctl_table_header
* register_sysctl_table(ctl_table
* table
,
2468 void unregister_sysctl_table(struct ctl_table_header
* table
)
2472 #endif /* CONFIG_SYSCTL */
2475 * No sense putting this after each symbol definition, twice,
2476 * exception granted :-)
2478 EXPORT_SYMBOL(proc_dointvec
);
2479 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2480 EXPORT_SYMBOL(proc_dointvec_minmax
);
2481 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2482 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2483 EXPORT_SYMBOL(proc_dostring
);
2484 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2485 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2486 EXPORT_SYMBOL(register_sysctl_table
);
2487 EXPORT_SYMBOL(sysctl_intvec
);
2488 EXPORT_SYMBOL(sysctl_jiffies
);
2489 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2490 EXPORT_SYMBOL(sysctl_string
);
2491 EXPORT_SYMBOL(unregister_sysctl_table
);