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)
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
,
876 static ctl_table proc_table
[] = {
880 static ctl_table fs_table
[] = {
882 .ctl_name
= FS_NRINODE
,
883 .procname
= "inode-nr",
884 .data
= &inodes_stat
,
885 .maxlen
= 2*sizeof(int),
887 .proc_handler
= &proc_dointvec
,
890 .ctl_name
= FS_STATINODE
,
891 .procname
= "inode-state",
892 .data
= &inodes_stat
,
893 .maxlen
= 7*sizeof(int),
895 .proc_handler
= &proc_dointvec
,
898 .ctl_name
= FS_NRFILE
,
899 .procname
= "file-nr",
901 .maxlen
= 3*sizeof(int),
903 .proc_handler
= &proc_dointvec
,
906 .ctl_name
= FS_MAXFILE
,
907 .procname
= "file-max",
908 .data
= &files_stat
.max_files
,
909 .maxlen
= sizeof(int),
911 .proc_handler
= &proc_dointvec
,
914 .ctl_name
= FS_DENTRY
,
915 .procname
= "dentry-state",
916 .data
= &dentry_stat
,
917 .maxlen
= 6*sizeof(int),
919 .proc_handler
= &proc_dointvec
,
922 .ctl_name
= FS_OVERFLOWUID
,
923 .procname
= "overflowuid",
924 .data
= &fs_overflowuid
,
925 .maxlen
= sizeof(int),
927 .proc_handler
= &proc_dointvec_minmax
,
928 .strategy
= &sysctl_intvec
,
929 .extra1
= &minolduid
,
930 .extra2
= &maxolduid
,
933 .ctl_name
= FS_OVERFLOWGID
,
934 .procname
= "overflowgid",
935 .data
= &fs_overflowgid
,
936 .maxlen
= sizeof(int),
938 .proc_handler
= &proc_dointvec_minmax
,
939 .strategy
= &sysctl_intvec
,
940 .extra1
= &minolduid
,
941 .extra2
= &maxolduid
,
944 .ctl_name
= FS_LEASES
,
945 .procname
= "leases-enable",
946 .data
= &leases_enable
,
947 .maxlen
= sizeof(int),
949 .proc_handler
= &proc_dointvec
,
951 #ifdef CONFIG_DNOTIFY
953 .ctl_name
= FS_DIR_NOTIFY
,
954 .procname
= "dir-notify-enable",
955 .data
= &dir_notify_enable
,
956 .maxlen
= sizeof(int),
958 .proc_handler
= &proc_dointvec
,
963 .ctl_name
= FS_LEASE_TIME
,
964 .procname
= "lease-break-time",
965 .data
= &lease_break_time
,
966 .maxlen
= sizeof(int),
968 .proc_handler
= &proc_dointvec
,
971 .ctl_name
= FS_AIO_NR
,
972 .procname
= "aio-nr",
974 .maxlen
= sizeof(aio_nr
),
976 .proc_handler
= &proc_doulongvec_minmax
,
979 .ctl_name
= FS_AIO_MAX_NR
,
980 .procname
= "aio-max-nr",
982 .maxlen
= sizeof(aio_max_nr
),
984 .proc_handler
= &proc_doulongvec_minmax
,
986 #ifdef CONFIG_INOTIFY
988 .ctl_name
= FS_INOTIFY
,
989 .procname
= "inotify",
991 .child
= inotify_table
,
996 .ctl_name
= KERN_SETUID_DUMPABLE
,
997 .procname
= "suid_dumpable",
998 .data
= &suid_dumpable
,
999 .maxlen
= sizeof(int),
1001 .proc_handler
= &proc_dointvec
,
1006 static ctl_table debug_table
[] = {
1010 static ctl_table dev_table
[] = {
1014 extern void init_irq_proc (void);
1016 static DEFINE_SPINLOCK(sysctl_lock
);
1018 /* called under sysctl_lock */
1019 static int use_table(struct ctl_table_header
*p
)
1021 if (unlikely(p
->unregistering
))
1027 /* called under sysctl_lock */
1028 static void unuse_table(struct ctl_table_header
*p
)
1031 if (unlikely(p
->unregistering
))
1032 complete(p
->unregistering
);
1035 /* called under sysctl_lock, will reacquire if has to wait */
1036 static void start_unregistering(struct ctl_table_header
*p
)
1039 * if p->used is 0, nobody will ever touch that entry again;
1040 * we'll eliminate all paths to it before dropping sysctl_lock
1042 if (unlikely(p
->used
)) {
1043 struct completion wait
;
1044 init_completion(&wait
);
1045 p
->unregistering
= &wait
;
1046 spin_unlock(&sysctl_lock
);
1047 wait_for_completion(&wait
);
1048 spin_lock(&sysctl_lock
);
1051 * do not remove from the list until nobody holds it; walking the
1052 * list in do_sysctl() relies on that.
1054 list_del_init(&p
->ctl_entry
);
1057 void __init
sysctl_init(void)
1059 #ifdef CONFIG_PROC_FS
1060 register_proc_table(root_table
, proc_sys_root
, &root_table_header
);
1065 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1066 void __user
*newval
, size_t newlen
)
1068 struct list_head
*tmp
;
1069 int error
= -ENOTDIR
;
1071 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1075 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1078 spin_lock(&sysctl_lock
);
1079 tmp
= &root_table_header
.ctl_entry
;
1081 struct ctl_table_header
*head
=
1082 list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1083 void *context
= NULL
;
1085 if (!use_table(head
))
1088 spin_unlock(&sysctl_lock
);
1090 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1091 newval
, newlen
, head
->ctl_table
,
1095 spin_lock(&sysctl_lock
);
1097 if (error
!= -ENOTDIR
)
1099 } while ((tmp
= tmp
->next
) != &root_table_header
.ctl_entry
);
1100 spin_unlock(&sysctl_lock
);
1104 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1106 struct __sysctl_args tmp
;
1109 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1113 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1114 tmp
.newval
, tmp
.newlen
);
1120 * ctl_perm does NOT grant the superuser all rights automatically, because
1121 * some sysctl variables are readonly even to root.
1124 static int test_perm(int mode
, int op
)
1128 else if (in_egroup_p(0))
1130 if ((mode
& op
& 0007) == op
)
1135 static inline int ctl_perm(ctl_table
*table
, int op
)
1138 error
= security_sysctl(table
, op
);
1141 return test_perm(table
->mode
, op
);
1144 static int parse_table(int __user
*name
, int nlen
,
1145 void __user
*oldval
, size_t __user
*oldlenp
,
1146 void __user
*newval
, size_t newlen
,
1147 ctl_table
*table
, void **context
)
1153 if (get_user(n
, name
))
1155 for ( ; table
->ctl_name
; table
++) {
1156 if (n
== table
->ctl_name
|| table
->ctl_name
== CTL_ANY
) {
1159 if (ctl_perm(table
, 001))
1161 if (table
->strategy
) {
1162 error
= table
->strategy(
1165 newval
, newlen
, context
);
1171 table
= table
->child
;
1174 error
= do_sysctl_strategy(table
, name
, nlen
,
1176 newval
, newlen
, context
);
1183 /* Perform the actual read/write of a sysctl table entry. */
1184 int do_sysctl_strategy (ctl_table
*table
,
1185 int __user
*name
, int nlen
,
1186 void __user
*oldval
, size_t __user
*oldlenp
,
1187 void __user
*newval
, size_t newlen
, void **context
)
1196 if (ctl_perm(table
, op
))
1199 if (table
->strategy
) {
1200 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1201 newval
, newlen
, context
);
1208 /* If there is no strategy routine, or if the strategy returns
1209 * zero, proceed with automatic r/w */
1210 if (table
->data
&& table
->maxlen
) {
1211 if (oldval
&& oldlenp
) {
1212 if (get_user(len
, oldlenp
))
1215 if (len
> table
->maxlen
)
1216 len
= table
->maxlen
;
1217 if(copy_to_user(oldval
, table
->data
, len
))
1219 if(put_user(len
, oldlenp
))
1223 if (newval
&& newlen
) {
1225 if (len
> table
->maxlen
)
1226 len
= table
->maxlen
;
1227 if(copy_from_user(table
->data
, newval
, len
))
1235 * register_sysctl_table - register a sysctl hierarchy
1236 * @table: the top-level table structure
1237 * @insert_at_head: whether the entry should be inserted in front or at the end
1239 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1240 * array. An entry with a ctl_name of 0 terminates the table.
1242 * The members of the &ctl_table structure are used as follows:
1244 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1245 * must be unique within that level of sysctl
1247 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1248 * enter a sysctl file
1250 * data - a pointer to data for use by proc_handler
1252 * maxlen - the maximum size in bytes of the data
1254 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1256 * child - a pointer to the child sysctl table if this entry is a directory, or
1259 * proc_handler - the text handler routine (described below)
1261 * strategy - the strategy routine (described below)
1263 * de - for internal use by the sysctl routines
1265 * extra1, extra2 - extra pointers usable by the proc handler routines
1267 * Leaf nodes in the sysctl tree will be represented by a single file
1268 * under /proc; non-leaf nodes will be represented by directories.
1270 * sysctl(2) can automatically manage read and write requests through
1271 * the sysctl table. The data and maxlen fields of the ctl_table
1272 * struct enable minimal validation of the values being written to be
1273 * performed, and the mode field allows minimal authentication.
1275 * More sophisticated management can be enabled by the provision of a
1276 * strategy routine with the table entry. This will be called before
1277 * any automatic read or write of the data is performed.
1279 * The strategy routine may return
1281 * < 0 - Error occurred (error is passed to user process)
1283 * 0 - OK - proceed with automatic read or write.
1285 * > 0 - OK - read or write has been done by the strategy routine, so
1286 * return immediately.
1288 * There must be a proc_handler routine for any terminal nodes
1289 * mirrored under /proc/sys (non-terminals are handled by a built-in
1290 * directory handler). Several default handlers are available to
1291 * cover common cases -
1293 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1294 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1295 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1297 * It is the handler's job to read the input buffer from user memory
1298 * and process it. The handler should return 0 on success.
1300 * This routine returns %NULL on a failure to register, and a pointer
1301 * to the table header on success.
1303 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
,
1306 struct ctl_table_header
*tmp
;
1307 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1310 tmp
->ctl_table
= table
;
1311 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1313 tmp
->unregistering
= NULL
;
1314 spin_lock(&sysctl_lock
);
1316 list_add(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1318 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1319 spin_unlock(&sysctl_lock
);
1320 #ifdef CONFIG_PROC_FS
1321 register_proc_table(table
, proc_sys_root
, tmp
);
1327 * unregister_sysctl_table - unregister a sysctl table hierarchy
1328 * @header: the header returned from register_sysctl_table
1330 * Unregisters the sysctl table and all children. proc entries may not
1331 * actually be removed until they are no longer used by anyone.
1333 void unregister_sysctl_table(struct ctl_table_header
* header
)
1336 spin_lock(&sysctl_lock
);
1337 start_unregistering(header
);
1338 #ifdef CONFIG_PROC_FS
1339 unregister_proc_table(header
->ctl_table
, proc_sys_root
);
1341 spin_unlock(&sysctl_lock
);
1349 #ifdef CONFIG_PROC_FS
1351 /* Scan the sysctl entries in table and add them all into /proc */
1352 static void register_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
, void *set
)
1354 struct proc_dir_entry
*de
;
1358 for (; table
->ctl_name
; table
++) {
1359 /* Can't do anything without a proc name. */
1360 if (!table
->procname
)
1362 /* Maybe we can't do anything with it... */
1363 if (!table
->proc_handler
&& !table
->child
) {
1364 printk(KERN_WARNING
"SYSCTL: Can't register %s\n",
1369 len
= strlen(table
->procname
);
1373 if (table
->proc_handler
)
1377 for (de
= root
->subdir
; de
; de
= de
->next
) {
1378 if (proc_match(len
, table
->procname
, de
))
1381 /* If the subdir exists already, de is non-NULL */
1385 de
= create_proc_entry(table
->procname
, mode
, root
);
1389 de
->data
= (void *) table
;
1390 if (table
->proc_handler
)
1391 de
->proc_fops
= &proc_sys_file_operations
;
1394 if (de
->mode
& S_IFDIR
)
1395 register_proc_table(table
->child
, de
, set
);
1400 * Unregister a /proc sysctl table and any subdirectories.
1402 static void unregister_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
)
1404 struct proc_dir_entry
*de
;
1405 for (; table
->ctl_name
; table
++) {
1406 if (!(de
= table
->de
))
1408 if (de
->mode
& S_IFDIR
) {
1409 if (!table
->child
) {
1410 printk (KERN_ALERT
"Help - malformed sysctl tree on free\n");
1413 unregister_proc_table(table
->child
, de
);
1415 /* Don't unregister directories which still have entries.. */
1421 * In any case, mark the entry as goner; we'll keep it
1422 * around if it's busy, but we'll know to do nothing with
1423 * its fields. We are under sysctl_lock here.
1427 /* Don't unregister proc entries that are still being used.. */
1428 if (atomic_read(&de
->count
))
1432 remove_proc_entry(table
->procname
, root
);
1436 static ssize_t
do_rw_proc(int write
, struct file
* file
, char __user
* buf
,
1437 size_t count
, loff_t
*ppos
)
1440 struct proc_dir_entry
*de
= PDE(file
->f_dentry
->d_inode
);
1441 struct ctl_table
*table
;
1443 ssize_t error
= -ENOTDIR
;
1445 spin_lock(&sysctl_lock
);
1446 if (de
&& de
->data
&& use_table(de
->set
)) {
1448 * at that point we know that sysctl was not unregistered
1449 * and won't be until we finish
1451 spin_unlock(&sysctl_lock
);
1452 table
= (struct ctl_table
*) de
->data
;
1453 if (!table
|| !table
->proc_handler
)
1456 op
= (write
? 002 : 004);
1457 if (ctl_perm(table
, op
))
1460 /* careful: calling conventions are nasty here */
1462 error
= (*table
->proc_handler
)(table
, write
, file
,
1467 spin_lock(&sysctl_lock
);
1468 unuse_table(de
->set
);
1470 spin_unlock(&sysctl_lock
);
1474 static int proc_opensys(struct inode
*inode
, struct file
*file
)
1476 if (file
->f_mode
& FMODE_WRITE
) {
1478 * sysctl entries that are not writable,
1479 * are _NOT_ writable, capabilities or not.
1481 if (!(inode
->i_mode
& S_IWUSR
))
1488 static ssize_t
proc_readsys(struct file
* file
, char __user
* buf
,
1489 size_t count
, loff_t
*ppos
)
1491 return do_rw_proc(0, file
, buf
, count
, ppos
);
1494 static ssize_t
proc_writesys(struct file
* file
, const char __user
* buf
,
1495 size_t count
, loff_t
*ppos
)
1497 return do_rw_proc(1, file
, (char __user
*) buf
, count
, ppos
);
1501 * proc_dostring - read a string sysctl
1502 * @table: the sysctl table
1503 * @write: %TRUE if this is a write to the sysctl file
1504 * @filp: the file structure
1505 * @buffer: the user buffer
1506 * @lenp: the size of the user buffer
1507 * @ppos: file position
1509 * Reads/writes a string from/to the user buffer. If the kernel
1510 * buffer provided is not large enough to hold the string, the
1511 * string is truncated. The copied string is %NULL-terminated.
1512 * If the string is being read by the user process, it is copied
1513 * and a newline '\n' is added. It is truncated if the buffer is
1516 * Returns 0 on success.
1518 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1519 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1525 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1526 (*ppos
&& !write
)) {
1534 while (len
< *lenp
) {
1535 if (get_user(c
, p
++))
1537 if (c
== 0 || c
== '\n')
1541 if (len
>= table
->maxlen
)
1542 len
= table
->maxlen
-1;
1543 if(copy_from_user(table
->data
, buffer
, len
))
1545 ((char *) table
->data
)[len
] = 0;
1548 len
= strlen(table
->data
);
1549 if (len
> table
->maxlen
)
1550 len
= table
->maxlen
;
1554 if(copy_to_user(buffer
, table
->data
, len
))
1557 if(put_user('\n', ((char __user
*) buffer
) + len
))
1568 * Special case of dostring for the UTS structure. This has locks
1569 * to observe. Should this be in kernel/sys.c ????
1572 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
1573 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1578 down_read(&uts_sem
);
1579 r
=proc_dostring(table
,0,filp
,buffer
,lenp
, ppos
);
1582 down_write(&uts_sem
);
1583 r
=proc_dostring(table
,1,filp
,buffer
,lenp
, ppos
);
1589 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1591 int write
, void *data
)
1594 *valp
= *negp
? -*lvalp
: *lvalp
;
1599 *lvalp
= (unsigned long)-val
;
1602 *lvalp
= (unsigned long)val
;
1608 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1609 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1610 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1611 int write
, void *data
),
1614 #define TMPBUFLEN 21
1615 int *i
, vleft
, first
=1, neg
, val
;
1619 char buf
[TMPBUFLEN
], *p
;
1620 char __user
*s
= buffer
;
1622 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1623 (*ppos
&& !write
)) {
1628 i
= (int *) table
->data
;
1629 vleft
= table
->maxlen
/ sizeof(*i
);
1633 conv
= do_proc_dointvec_conv
;
1635 for (; left
&& vleft
--; i
++, first
=0) {
1650 if (len
> sizeof(buf
) - 1)
1651 len
= sizeof(buf
) - 1;
1652 if (copy_from_user(buf
, s
, len
))
1656 if (*p
== '-' && left
> 1) {
1660 if (*p
< '0' || *p
> '9')
1663 lval
= simple_strtoul(p
, &p
, 0);
1666 if ((len
< left
) && *p
&& !isspace(*p
))
1673 if (conv(&neg
, &lval
, i
, 1, data
))
1680 if (conv(&neg
, &lval
, i
, 0, data
))
1683 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1687 if(copy_to_user(s
, buf
, len
))
1694 if (!write
&& !first
&& left
) {
1695 if(put_user('\n', s
))
1702 if (get_user(c
, s
++))
1718 * proc_dointvec - read a vector of integers
1719 * @table: the sysctl table
1720 * @write: %TRUE if this is a write to the sysctl file
1721 * @filp: the file structure
1722 * @buffer: the user buffer
1723 * @lenp: the size of the user buffer
1724 * @ppos: file position
1726 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1727 * values from/to the user buffer, treated as an ASCII string.
1729 * Returns 0 on success.
1731 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1732 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1734 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1744 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1746 int write
, void *data
)
1748 int op
= *(int *)data
;
1750 int val
= *negp
? -*lvalp
: *lvalp
;
1752 case OP_SET
: *valp
= val
; break;
1753 case OP_AND
: *valp
&= val
; break;
1754 case OP_OR
: *valp
|= val
; break;
1755 case OP_MAX
: if(*valp
< val
)
1758 case OP_MIN
: if(*valp
> val
)
1766 *lvalp
= (unsigned long)-val
;
1769 *lvalp
= (unsigned long)val
;
1776 * init may raise the set.
1779 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
1780 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1784 if (!capable(CAP_SYS_MODULE
)) {
1788 op
= (current
->pid
== 1) ? OP_SET
: OP_AND
;
1789 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1790 do_proc_dointvec_bset_conv
,&op
);
1793 struct do_proc_dointvec_minmax_conv_param
{
1798 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
1800 int write
, void *data
)
1802 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
1804 int val
= *negp
? -*lvalp
: *lvalp
;
1805 if ((param
->min
&& *param
->min
> val
) ||
1806 (param
->max
&& *param
->max
< val
))
1813 *lvalp
= (unsigned long)-val
;
1816 *lvalp
= (unsigned long)val
;
1823 * proc_dointvec_minmax - read a vector of integers with min/max values
1824 * @table: the sysctl table
1825 * @write: %TRUE if this is a write to the sysctl file
1826 * @filp: the file structure
1827 * @buffer: the user buffer
1828 * @lenp: the size of the user buffer
1829 * @ppos: file position
1831 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1832 * values from/to the user buffer, treated as an ASCII string.
1834 * This routine will ensure the values are within the range specified by
1835 * table->extra1 (min) and table->extra2 (max).
1837 * Returns 0 on success.
1839 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1840 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1842 struct do_proc_dointvec_minmax_conv_param param
= {
1843 .min
= (int *) table
->extra1
,
1844 .max
= (int *) table
->extra2
,
1846 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
1847 do_proc_dointvec_minmax_conv
, ¶m
);
1850 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
1852 void __user
*buffer
,
1853 size_t *lenp
, loff_t
*ppos
,
1854 unsigned long convmul
,
1855 unsigned long convdiv
)
1857 #define TMPBUFLEN 21
1858 unsigned long *i
, *min
, *max
, val
;
1859 int vleft
, first
=1, neg
;
1861 char buf
[TMPBUFLEN
], *p
;
1862 char __user
*s
= buffer
;
1864 if (!table
->data
|| !table
->maxlen
|| !*lenp
||
1865 (*ppos
&& !write
)) {
1870 i
= (unsigned long *) table
->data
;
1871 min
= (unsigned long *) table
->extra1
;
1872 max
= (unsigned long *) table
->extra2
;
1873 vleft
= table
->maxlen
/ sizeof(unsigned long);
1876 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
1891 if (len
> TMPBUFLEN
-1)
1893 if (copy_from_user(buf
, s
, len
))
1897 if (*p
== '-' && left
> 1) {
1901 if (*p
< '0' || *p
> '9')
1903 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
1905 if ((len
< left
) && *p
&& !isspace(*p
))
1914 if ((min
&& val
< *min
) || (max
&& val
> *max
))
1921 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
1925 if(copy_to_user(s
, buf
, len
))
1932 if (!write
&& !first
&& left
) {
1933 if(put_user('\n', s
))
1940 if (get_user(c
, s
++))
1956 * proc_doulongvec_minmax - read a vector of long integers with min/max values
1957 * @table: the sysctl table
1958 * @write: %TRUE if this is a write to the sysctl file
1959 * @filp: the file structure
1960 * @buffer: the user buffer
1961 * @lenp: the size of the user buffer
1962 * @ppos: file position
1964 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1965 * values from/to the user buffer, treated as an ASCII string.
1967 * This routine will ensure the values are within the range specified by
1968 * table->extra1 (min) and table->extra2 (max).
1970 * Returns 0 on success.
1972 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
1973 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1975 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
1979 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1980 * @table: the sysctl table
1981 * @write: %TRUE if this is a write to the sysctl file
1982 * @filp: the file structure
1983 * @buffer: the user buffer
1984 * @lenp: the size of the user buffer
1985 * @ppos: file position
1987 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1988 * values from/to the user buffer, treated as an ASCII string. The values
1989 * are treated as milliseconds, and converted to jiffies when they are stored.
1991 * This routine will ensure the values are within the range specified by
1992 * table->extra1 (min) and table->extra2 (max).
1994 * Returns 0 on success.
1996 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
1998 void __user
*buffer
,
1999 size_t *lenp
, loff_t
*ppos
)
2001 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2002 lenp
, ppos
, HZ
, 1000l);
2006 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2008 int write
, void *data
)
2011 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2017 lval
= (unsigned long)-val
;
2020 lval
= (unsigned long)val
;
2027 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2029 int write
, void *data
)
2032 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2038 lval
= (unsigned long)-val
;
2041 lval
= (unsigned long)val
;
2043 *lvalp
= jiffies_to_clock_t(lval
);
2048 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2050 int write
, void *data
)
2053 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2059 lval
= (unsigned long)-val
;
2062 lval
= (unsigned long)val
;
2064 *lvalp
= jiffies_to_msecs(lval
);
2070 * proc_dointvec_jiffies - read a vector of integers as seconds
2071 * @table: the sysctl table
2072 * @write: %TRUE if this is a write to the sysctl file
2073 * @filp: the file structure
2074 * @buffer: the user buffer
2075 * @lenp: the size of the user buffer
2076 * @ppos: file position
2078 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2079 * values from/to the user buffer, treated as an ASCII string.
2080 * The values read are assumed to be in seconds, and are converted into
2083 * Returns 0 on success.
2085 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2086 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2088 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2089 do_proc_dointvec_jiffies_conv
,NULL
);
2093 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2094 * @table: the sysctl table
2095 * @write: %TRUE if this is a write to the sysctl file
2096 * @filp: the file structure
2097 * @buffer: the user buffer
2098 * @lenp: the size of the user buffer
2099 * @ppos: pointer to the file position
2101 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2102 * values from/to the user buffer, treated as an ASCII string.
2103 * The values read are assumed to be in 1/USER_HZ seconds, and
2104 * are converted into jiffies.
2106 * Returns 0 on success.
2108 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2109 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2111 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2112 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2116 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2117 * @table: the sysctl table
2118 * @write: %TRUE if this is a write to the sysctl file
2119 * @filp: the file structure
2120 * @buffer: the user buffer
2121 * @lenp: the size of the user buffer
2122 * @ppos: file position
2123 * @ppos: the current position in the file
2125 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2126 * values from/to the user buffer, treated as an ASCII string.
2127 * The values read are assumed to be in 1/1000 seconds, and
2128 * are converted into jiffies.
2130 * Returns 0 on success.
2132 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2133 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2135 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2136 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2139 #else /* CONFIG_PROC_FS */
2141 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2142 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2147 static int proc_doutsstring(ctl_table
*table
, int write
, struct file
*filp
,
2148 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2153 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2154 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2159 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2160 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2165 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2166 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2171 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2172 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2177 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2178 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2183 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2184 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2189 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2190 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2195 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2197 void __user
*buffer
,
2198 size_t *lenp
, loff_t
*ppos
)
2204 #endif /* CONFIG_PROC_FS */
2208 * General sysctl support routines
2211 /* The generic string strategy routine: */
2212 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2213 void __user
*oldval
, size_t __user
*oldlenp
,
2214 void __user
*newval
, size_t newlen
, void **context
)
2216 if (!table
->data
|| !table
->maxlen
)
2219 if (oldval
&& oldlenp
) {
2221 if (get_user(bufsize
, oldlenp
))
2224 size_t len
= strlen(table
->data
), copied
;
2226 /* This shouldn't trigger for a well-formed sysctl */
2227 if (len
> table
->maxlen
)
2228 len
= table
->maxlen
;
2230 /* Copy up to a max of bufsize-1 bytes of the string */
2231 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2233 if (copy_to_user(oldval
, table
->data
, copied
) ||
2234 put_user(0, (char __user
*)(oldval
+ copied
)))
2236 if (put_user(len
, oldlenp
))
2240 if (newval
&& newlen
) {
2241 size_t len
= newlen
;
2242 if (len
> table
->maxlen
)
2243 len
= table
->maxlen
;
2244 if(copy_from_user(table
->data
, newval
, len
))
2246 if (len
== table
->maxlen
)
2248 ((char *) table
->data
)[len
] = 0;
2254 * This function makes sure that all of the integers in the vector
2255 * are between the minimum and maximum values given in the arrays
2256 * table->extra1 and table->extra2, respectively.
2258 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2259 void __user
*oldval
, size_t __user
*oldlenp
,
2260 void __user
*newval
, size_t newlen
, void **context
)
2263 if (newval
&& newlen
) {
2264 int __user
*vec
= (int __user
*) newval
;
2265 int *min
= (int *) table
->extra1
;
2266 int *max
= (int *) table
->extra2
;
2270 if (newlen
% sizeof(int) != 0)
2273 if (!table
->extra1
&& !table
->extra2
)
2276 if (newlen
> table
->maxlen
)
2277 newlen
= table
->maxlen
;
2278 length
= newlen
/ sizeof(int);
2280 for (i
= 0; i
< length
; i
++) {
2282 if (get_user(value
, vec
+ i
))
2284 if (min
&& value
< min
[i
])
2286 if (max
&& value
> max
[i
])
2293 /* Strategy function to convert jiffies to seconds */
2294 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2295 void __user
*oldval
, size_t __user
*oldlenp
,
2296 void __user
*newval
, size_t newlen
, void **context
)
2301 if (get_user(olen
, oldlenp
))
2303 if (olen
!=sizeof(int))
2306 if (put_user(*(int *)(table
->data
)/HZ
, (int __user
*)oldval
) ||
2307 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2310 if (newval
&& newlen
) {
2312 if (newlen
!= sizeof(int))
2314 if (get_user(new, (int __user
*)newval
))
2316 *(int *)(table
->data
) = new*HZ
;
2321 /* Strategy function to convert jiffies to seconds */
2322 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2323 void __user
*oldval
, size_t __user
*oldlenp
,
2324 void __user
*newval
, size_t newlen
, void **context
)
2329 if (get_user(olen
, oldlenp
))
2331 if (olen
!=sizeof(int))
2334 if (put_user(jiffies_to_msecs(*(int *)(table
->data
)), (int __user
*)oldval
) ||
2335 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2338 if (newval
&& newlen
) {
2340 if (newlen
!= sizeof(int))
2342 if (get_user(new, (int __user
*)newval
))
2344 *(int *)(table
->data
) = msecs_to_jiffies(new);
2349 #else /* CONFIG_SYSCTL */
2352 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2357 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2358 void __user
*oldval
, size_t __user
*oldlenp
,
2359 void __user
*newval
, size_t newlen
, void **context
)
2364 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2365 void __user
*oldval
, size_t __user
*oldlenp
,
2366 void __user
*newval
, size_t newlen
, void **context
)
2371 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2372 void __user
*oldval
, size_t __user
*oldlenp
,
2373 void __user
*newval
, size_t newlen
, void **context
)
2378 int sysctl_ms_jiffies(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 proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2386 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2391 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2392 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2397 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2398 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2403 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2404 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2409 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2410 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2415 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2416 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2421 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2422 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2427 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2428 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2433 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2435 void __user
*buffer
,
2436 size_t *lenp
, loff_t
*ppos
)
2441 struct ctl_table_header
* register_sysctl_table(ctl_table
* table
,
2447 void unregister_sysctl_table(struct ctl_table_header
* table
)
2451 #endif /* CONFIG_SYSCTL */
2454 * No sense putting this after each symbol definition, twice,
2455 * exception granted :-)
2457 EXPORT_SYMBOL(proc_dointvec
);
2458 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2459 EXPORT_SYMBOL(proc_dointvec_minmax
);
2460 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2461 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2462 EXPORT_SYMBOL(proc_dostring
);
2463 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2464 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2465 EXPORT_SYMBOL(register_sysctl_table
);
2466 EXPORT_SYMBOL(sysctl_intvec
);
2467 EXPORT_SYMBOL(sysctl_jiffies
);
2468 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2469 EXPORT_SYMBOL(sysctl_string
);
2470 EXPORT_SYMBOL(unregister_sysctl_table
);