2 * sysctl.c: General linux system control interface
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
21 #include <linux/module.h>
23 #include <linux/swap.h>
24 #include <linux/slab.h>
25 #include <linux/sysctl.h>
26 #include <linux/proc_fs.h>
27 #include <linux/capability.h>
28 #include <linux/ctype.h>
29 #include <linux/utsname.h>
30 #include <linux/capability.h>
31 #include <linux/smp_lock.h>
32 #include <linux/init.h>
33 #include <linux/kernel.h>
34 #include <linux/kobject.h>
35 #include <linux/net.h>
36 #include <linux/sysrq.h>
37 #include <linux/highuid.h>
38 #include <linux/writeback.h>
39 #include <linux/hugetlb.h>
40 #include <linux/security.h>
41 #include <linux/initrd.h>
42 #include <linux/times.h>
43 #include <linux/limits.h>
44 #include <linux/dcache.h>
45 #include <linux/syscalls.h>
46 #include <linux/nfs_fs.h>
47 #include <linux/acpi.h>
49 #include <asm/uaccess.h>
50 #include <asm/processor.h>
52 extern int proc_nr_files(ctl_table
*table
, int write
, struct file
*filp
,
53 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
59 #if defined(CONFIG_SYSCTL)
61 /* External variables not in a header file. */
63 extern int sysctl_overcommit_memory
;
64 extern int sysctl_overcommit_ratio
;
65 extern int sysctl_panic_on_oom
;
66 extern int max_threads
;
67 extern int sysrq_enabled
;
68 extern int core_uses_pid
;
69 extern int suid_dumpable
;
70 extern char core_pattern
[];
72 extern int min_free_kbytes
;
73 extern int printk_ratelimit_jiffies
;
74 extern int printk_ratelimit_burst
;
75 extern int pid_max_min
, pid_max_max
;
76 extern int sysctl_drop_caches
;
77 extern int percpu_pagelist_fraction
;
78 extern int compat_log
;
80 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
81 static int maxolduid
= 65535;
83 static int min_percpu_pagelist_fract
= 8;
85 static int ngroups_max
= NGROUPS_MAX
;
88 extern char modprobe_path
[];
90 #ifdef CONFIG_CHR_DEV_SG
91 extern int sg_big_buff
;
94 static int proc_do_ipc_string(ctl_table
*table
, int write
, struct file
*filp
,
95 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
99 extern char reboot_command
[];
100 extern int stop_a_enabled
;
101 extern int scons_pwroff
;
105 extern int pwrsw_enabled
;
106 extern int unaligned_enabled
;
110 #ifdef CONFIG_MATHEMU
111 extern int sysctl_ieee_emulation_warnings
;
113 extern int sysctl_userprocess_debug
;
114 extern int spin_retry
;
117 extern int sysctl_hz_timer
;
119 #ifdef CONFIG_BSD_PROCESS_ACCT
120 extern int acct_parm
[];
124 extern int no_unaligned_warning
;
127 #ifdef CONFIG_RT_MUTEXES
128 extern int max_lock_depth
;
131 #ifdef CONFIG_SYSCTL_SYSCALL
132 static int parse_table(int __user
*, int, void __user
*, size_t __user
*,
133 void __user
*, size_t, ctl_table
*, void **);
136 static int proc_do_uts_string(ctl_table
*table
, int write
, struct file
*filp
,
137 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
139 #ifdef CONFIG_PROC_SYSCTL
140 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
141 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
144 static ctl_table root_table
[];
145 static struct ctl_table_header root_table_header
=
146 { root_table
, LIST_HEAD_INIT(root_table_header
.ctl_entry
) };
148 static ctl_table kern_table
[];
149 static ctl_table vm_table
[];
150 static ctl_table fs_table
[];
151 static ctl_table debug_table
[];
152 static ctl_table dev_table
[];
153 extern ctl_table random_table
[];
154 #ifdef CONFIG_UNIX98_PTYS
155 extern ctl_table pty_table
[];
157 #ifdef CONFIG_INOTIFY_USER
158 extern ctl_table inotify_table
[];
161 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
162 int sysctl_legacy_va_layout
;
165 /* /proc declarations: */
167 #ifdef CONFIG_PROC_SYSCTL
169 static ssize_t
proc_readsys(struct file
*, char __user
*, size_t, loff_t
*);
170 static ssize_t
proc_writesys(struct file
*, const char __user
*, size_t, loff_t
*);
171 static int proc_opensys(struct inode
*, struct file
*);
173 struct file_operations proc_sys_file_operations
= {
174 .open
= proc_opensys
,
175 .read
= proc_readsys
,
176 .write
= proc_writesys
,
179 extern struct proc_dir_entry
*proc_sys_root
;
181 static void register_proc_table(ctl_table
*, struct proc_dir_entry
*, void *);
182 static void unregister_proc_table(ctl_table
*, struct proc_dir_entry
*);
185 /* The default sysctl tables: */
187 static ctl_table root_table
[] = {
189 .ctl_name
= CTL_KERN
,
190 .procname
= "kernel",
215 .ctl_name
= CTL_DEBUG
,
218 .child
= debug_table
,
230 static ctl_table kern_table
[] = {
231 #ifndef CONFIG_UTS_NS
233 .ctl_name
= KERN_OSTYPE
,
234 .procname
= "ostype",
235 .data
= init_uts_ns
.name
.sysname
,
236 .maxlen
= sizeof(init_uts_ns
.name
.sysname
),
238 .proc_handler
= &proc_do_uts_string
,
239 .strategy
= &sysctl_string
,
242 .ctl_name
= KERN_OSRELEASE
,
243 .procname
= "osrelease",
244 .data
= init_uts_ns
.name
.release
,
245 .maxlen
= sizeof(init_uts_ns
.name
.release
),
247 .proc_handler
= &proc_do_uts_string
,
248 .strategy
= &sysctl_string
,
251 .ctl_name
= KERN_VERSION
,
252 .procname
= "version",
253 .data
= init_uts_ns
.name
.version
,
254 .maxlen
= sizeof(init_uts_ns
.name
.version
),
256 .proc_handler
= &proc_do_uts_string
,
257 .strategy
= &sysctl_string
,
260 .ctl_name
= KERN_NODENAME
,
261 .procname
= "hostname",
262 .data
= init_uts_ns
.name
.nodename
,
263 .maxlen
= sizeof(init_uts_ns
.name
.nodename
),
265 .proc_handler
= &proc_do_uts_string
,
266 .strategy
= &sysctl_string
,
269 .ctl_name
= KERN_DOMAINNAME
,
270 .procname
= "domainname",
271 .data
= init_uts_ns
.name
.domainname
,
272 .maxlen
= sizeof(init_uts_ns
.name
.domainname
),
274 .proc_handler
= &proc_do_uts_string
,
275 .strategy
= &sysctl_string
,
277 #else /* !CONFIG_UTS_NS */
279 .ctl_name
= KERN_OSTYPE
,
280 .procname
= "ostype",
282 /* could maybe use __NEW_UTS_LEN here? */
283 .maxlen
= FIELD_SIZEOF(struct new_utsname
, sysname
),
285 .proc_handler
= &proc_do_uts_string
,
286 .strategy
= &sysctl_string
,
289 .ctl_name
= KERN_OSRELEASE
,
290 .procname
= "osrelease",
292 .maxlen
= FIELD_SIZEOF(struct new_utsname
, release
),
294 .proc_handler
= &proc_do_uts_string
,
295 .strategy
= &sysctl_string
,
298 .ctl_name
= KERN_VERSION
,
299 .procname
= "version",
301 .maxlen
= FIELD_SIZEOF(struct new_utsname
, version
),
303 .proc_handler
= &proc_do_uts_string
,
304 .strategy
= &sysctl_string
,
307 .ctl_name
= KERN_NODENAME
,
308 .procname
= "hostname",
310 .maxlen
= FIELD_SIZEOF(struct new_utsname
, nodename
),
312 .proc_handler
= &proc_do_uts_string
,
313 .strategy
= &sysctl_string
,
316 .ctl_name
= KERN_DOMAINNAME
,
317 .procname
= "domainname",
319 .maxlen
= FIELD_SIZEOF(struct new_utsname
, domainname
),
321 .proc_handler
= &proc_do_uts_string
,
322 .strategy
= &sysctl_string
,
324 #endif /* !CONFIG_UTS_NS */
326 .ctl_name
= KERN_PANIC
,
328 .data
= &panic_timeout
,
329 .maxlen
= sizeof(int),
331 .proc_handler
= &proc_dointvec
,
334 .ctl_name
= KERN_CORE_USES_PID
,
335 .procname
= "core_uses_pid",
336 .data
= &core_uses_pid
,
337 .maxlen
= sizeof(int),
339 .proc_handler
= &proc_dointvec
,
342 .ctl_name
= KERN_CORE_PATTERN
,
343 .procname
= "core_pattern",
344 .data
= core_pattern
,
347 .proc_handler
= &proc_dostring
,
348 .strategy
= &sysctl_string
,
351 .ctl_name
= KERN_TAINTED
,
352 .procname
= "tainted",
354 .maxlen
= sizeof(int),
356 .proc_handler
= &proc_dointvec
,
359 .ctl_name
= KERN_CAP_BSET
,
360 .procname
= "cap-bound",
362 .maxlen
= sizeof(kernel_cap_t
),
364 .proc_handler
= &proc_dointvec_bset
,
366 #ifdef CONFIG_BLK_DEV_INITRD
368 .ctl_name
= KERN_REALROOTDEV
,
369 .procname
= "real-root-dev",
370 .data
= &real_root_dev
,
371 .maxlen
= sizeof(int),
373 .proc_handler
= &proc_dointvec
,
378 .ctl_name
= KERN_SPARC_REBOOT
,
379 .procname
= "reboot-cmd",
380 .data
= reboot_command
,
383 .proc_handler
= &proc_dostring
,
384 .strategy
= &sysctl_string
,
387 .ctl_name
= KERN_SPARC_STOP_A
,
388 .procname
= "stop-a",
389 .data
= &stop_a_enabled
,
390 .maxlen
= sizeof (int),
392 .proc_handler
= &proc_dointvec
,
395 .ctl_name
= KERN_SPARC_SCONS_PWROFF
,
396 .procname
= "scons-poweroff",
397 .data
= &scons_pwroff
,
398 .maxlen
= sizeof (int),
400 .proc_handler
= &proc_dointvec
,
405 .ctl_name
= KERN_HPPA_PWRSW
,
406 .procname
= "soft-power",
407 .data
= &pwrsw_enabled
,
408 .maxlen
= sizeof (int),
410 .proc_handler
= &proc_dointvec
,
413 .ctl_name
= KERN_HPPA_UNALIGNED
,
414 .procname
= "unaligned-trap",
415 .data
= &unaligned_enabled
,
416 .maxlen
= sizeof (int),
418 .proc_handler
= &proc_dointvec
,
422 .ctl_name
= KERN_CTLALTDEL
,
423 .procname
= "ctrl-alt-del",
425 .maxlen
= sizeof(int),
427 .proc_handler
= &proc_dointvec
,
430 .ctl_name
= KERN_PRINTK
,
431 .procname
= "printk",
432 .data
= &console_loglevel
,
433 .maxlen
= 4*sizeof(int),
435 .proc_handler
= &proc_dointvec
,
439 .ctl_name
= KERN_MODPROBE
,
440 .procname
= "modprobe",
441 .data
= &modprobe_path
,
442 .maxlen
= KMOD_PATH_LEN
,
444 .proc_handler
= &proc_dostring
,
445 .strategy
= &sysctl_string
,
448 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
450 .ctl_name
= KERN_HOTPLUG
,
451 .procname
= "hotplug",
452 .data
= &uevent_helper
,
453 .maxlen
= UEVENT_HELPER_PATH_LEN
,
455 .proc_handler
= &proc_dostring
,
456 .strategy
= &sysctl_string
,
459 #ifdef CONFIG_CHR_DEV_SG
461 .ctl_name
= KERN_SG_BIG_BUFF
,
462 .procname
= "sg-big-buff",
463 .data
= &sg_big_buff
,
464 .maxlen
= sizeof (int),
466 .proc_handler
= &proc_dointvec
,
469 #ifdef CONFIG_BSD_PROCESS_ACCT
471 .ctl_name
= KERN_ACCT
,
474 .maxlen
= 3*sizeof(int),
476 .proc_handler
= &proc_dointvec
,
479 #ifdef CONFIG_SYSVIPC
481 .ctl_name
= KERN_SHMMAX
,
482 .procname
= "shmmax",
484 .maxlen
= sizeof (size_t),
486 .proc_handler
= &proc_do_ipc_string
,
489 .ctl_name
= KERN_SHMALL
,
490 .procname
= "shmall",
492 .maxlen
= sizeof (size_t),
494 .proc_handler
= &proc_do_ipc_string
,
497 .ctl_name
= KERN_SHMMNI
,
498 .procname
= "shmmni",
500 .maxlen
= sizeof (int),
502 .proc_handler
= &proc_do_ipc_string
,
505 .ctl_name
= KERN_MSGMAX
,
506 .procname
= "msgmax",
508 .maxlen
= sizeof (int),
510 .proc_handler
= &proc_do_ipc_string
,
513 .ctl_name
= KERN_MSGMNI
,
514 .procname
= "msgmni",
516 .maxlen
= sizeof (int),
518 .proc_handler
= &proc_do_ipc_string
,
521 .ctl_name
= KERN_MSGMNB
,
522 .procname
= "msgmnb",
524 .maxlen
= sizeof (int),
526 .proc_handler
= &proc_do_ipc_string
,
529 .ctl_name
= KERN_SEM
,
532 .maxlen
= 4*sizeof (int),
534 .proc_handler
= &proc_do_ipc_string
,
537 #ifdef CONFIG_MAGIC_SYSRQ
539 .ctl_name
= KERN_SYSRQ
,
541 .data
= &sysrq_enabled
,
542 .maxlen
= sizeof (int),
544 .proc_handler
= &proc_dointvec
,
547 #ifdef CONFIG_PROC_SYSCTL
549 .ctl_name
= KERN_CADPID
,
550 .procname
= "cad_pid",
552 .maxlen
= sizeof (int),
554 .proc_handler
= &proc_do_cad_pid
,
558 .ctl_name
= KERN_MAX_THREADS
,
559 .procname
= "threads-max",
560 .data
= &max_threads
,
561 .maxlen
= sizeof(int),
563 .proc_handler
= &proc_dointvec
,
566 .ctl_name
= KERN_RANDOM
,
567 .procname
= "random",
569 .child
= random_table
,
571 #ifdef CONFIG_UNIX98_PTYS
573 .ctl_name
= KERN_PTY
,
580 .ctl_name
= KERN_OVERFLOWUID
,
581 .procname
= "overflowuid",
582 .data
= &overflowuid
,
583 .maxlen
= sizeof(int),
585 .proc_handler
= &proc_dointvec_minmax
,
586 .strategy
= &sysctl_intvec
,
587 .extra1
= &minolduid
,
588 .extra2
= &maxolduid
,
591 .ctl_name
= KERN_OVERFLOWGID
,
592 .procname
= "overflowgid",
593 .data
= &overflowgid
,
594 .maxlen
= sizeof(int),
596 .proc_handler
= &proc_dointvec_minmax
,
597 .strategy
= &sysctl_intvec
,
598 .extra1
= &minolduid
,
599 .extra2
= &maxolduid
,
602 #ifdef CONFIG_MATHEMU
604 .ctl_name
= KERN_IEEE_EMULATION_WARNINGS
,
605 .procname
= "ieee_emulation_warnings",
606 .data
= &sysctl_ieee_emulation_warnings
,
607 .maxlen
= sizeof(int),
609 .proc_handler
= &proc_dointvec
,
612 #ifdef CONFIG_NO_IDLE_HZ
614 .ctl_name
= KERN_HZ_TIMER
,
615 .procname
= "hz_timer",
616 .data
= &sysctl_hz_timer
,
617 .maxlen
= sizeof(int),
619 .proc_handler
= &proc_dointvec
,
623 .ctl_name
= KERN_S390_USER_DEBUG_LOGGING
,
624 .procname
= "userprocess_debug",
625 .data
= &sysctl_userprocess_debug
,
626 .maxlen
= sizeof(int),
628 .proc_handler
= &proc_dointvec
,
632 .ctl_name
= KERN_PIDMAX
,
633 .procname
= "pid_max",
635 .maxlen
= sizeof (int),
637 .proc_handler
= &proc_dointvec_minmax
,
638 .strategy
= sysctl_intvec
,
639 .extra1
= &pid_max_min
,
640 .extra2
= &pid_max_max
,
643 .ctl_name
= KERN_PANIC_ON_OOPS
,
644 .procname
= "panic_on_oops",
645 .data
= &panic_on_oops
,
646 .maxlen
= sizeof(int),
648 .proc_handler
= &proc_dointvec
,
651 .ctl_name
= KERN_PRINTK_RATELIMIT
,
652 .procname
= "printk_ratelimit",
653 .data
= &printk_ratelimit_jiffies
,
654 .maxlen
= sizeof(int),
656 .proc_handler
= &proc_dointvec_jiffies
,
657 .strategy
= &sysctl_jiffies
,
660 .ctl_name
= KERN_PRINTK_RATELIMIT_BURST
,
661 .procname
= "printk_ratelimit_burst",
662 .data
= &printk_ratelimit_burst
,
663 .maxlen
= sizeof(int),
665 .proc_handler
= &proc_dointvec
,
668 .ctl_name
= KERN_NGROUPS_MAX
,
669 .procname
= "ngroups_max",
670 .data
= &ngroups_max
,
671 .maxlen
= sizeof (int),
673 .proc_handler
= &proc_dointvec
,
675 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
677 .ctl_name
= KERN_UNKNOWN_NMI_PANIC
,
678 .procname
= "unknown_nmi_panic",
679 .data
= &unknown_nmi_panic
,
680 .maxlen
= sizeof (int),
682 .proc_handler
= &proc_dointvec
,
685 .ctl_name
= KERN_NMI_WATCHDOG
,
686 .procname
= "nmi_watchdog",
687 .data
= &nmi_watchdog_enabled
,
688 .maxlen
= sizeof (int),
690 .proc_handler
= &proc_nmi_enabled
,
693 #if defined(CONFIG_X86)
695 .ctl_name
= KERN_PANIC_ON_NMI
,
696 .procname
= "panic_on_unrecovered_nmi",
697 .data
= &panic_on_unrecovered_nmi
,
698 .maxlen
= sizeof(int),
700 .proc_handler
= &proc_dointvec
,
703 .ctl_name
= KERN_BOOTLOADER_TYPE
,
704 .procname
= "bootloader_type",
705 .data
= &bootloader_type
,
706 .maxlen
= sizeof (int),
708 .proc_handler
= &proc_dointvec
,
711 #if defined(CONFIG_MMU)
713 .ctl_name
= KERN_RANDOMIZE
,
714 .procname
= "randomize_va_space",
715 .data
= &randomize_va_space
,
716 .maxlen
= sizeof(int),
718 .proc_handler
= &proc_dointvec
,
721 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
723 .ctl_name
= KERN_SPIN_RETRY
,
724 .procname
= "spin_retry",
726 .maxlen
= sizeof (int),
728 .proc_handler
= &proc_dointvec
,
731 #ifdef CONFIG_ACPI_SLEEP
733 .ctl_name
= KERN_ACPI_VIDEO_FLAGS
,
734 .procname
= "acpi_video_flags",
735 .data
= &acpi_video_flags
,
736 .maxlen
= sizeof (unsigned long),
738 .proc_handler
= &proc_doulongvec_minmax
,
743 .ctl_name
= KERN_IA64_UNALIGNED
,
744 .procname
= "ignore-unaligned-usertrap",
745 .data
= &no_unaligned_warning
,
746 .maxlen
= sizeof (int),
748 .proc_handler
= &proc_dointvec
,
753 .ctl_name
= KERN_COMPAT_LOG
,
754 .procname
= "compat-log",
756 .maxlen
= sizeof (int),
758 .proc_handler
= &proc_dointvec
,
761 #ifdef CONFIG_RT_MUTEXES
763 .ctl_name
= KERN_MAX_LOCK_DEPTH
,
764 .procname
= "max_lock_depth",
765 .data
= &max_lock_depth
,
766 .maxlen
= sizeof(int),
768 .proc_handler
= &proc_dointvec
,
775 /* Constants for minimum and maximum testing in vm_table.
776 We use these as one-element integer vectors. */
778 static int one_hundred
= 100;
781 static ctl_table vm_table
[] = {
783 .ctl_name
= VM_OVERCOMMIT_MEMORY
,
784 .procname
= "overcommit_memory",
785 .data
= &sysctl_overcommit_memory
,
786 .maxlen
= sizeof(sysctl_overcommit_memory
),
788 .proc_handler
= &proc_dointvec
,
791 .ctl_name
= VM_PANIC_ON_OOM
,
792 .procname
= "panic_on_oom",
793 .data
= &sysctl_panic_on_oom
,
794 .maxlen
= sizeof(sysctl_panic_on_oom
),
796 .proc_handler
= &proc_dointvec
,
799 .ctl_name
= VM_OVERCOMMIT_RATIO
,
800 .procname
= "overcommit_ratio",
801 .data
= &sysctl_overcommit_ratio
,
802 .maxlen
= sizeof(sysctl_overcommit_ratio
),
804 .proc_handler
= &proc_dointvec
,
807 .ctl_name
= VM_PAGE_CLUSTER
,
808 .procname
= "page-cluster",
809 .data
= &page_cluster
,
810 .maxlen
= sizeof(int),
812 .proc_handler
= &proc_dointvec
,
815 .ctl_name
= VM_DIRTY_BACKGROUND
,
816 .procname
= "dirty_background_ratio",
817 .data
= &dirty_background_ratio
,
818 .maxlen
= sizeof(dirty_background_ratio
),
820 .proc_handler
= &proc_dointvec_minmax
,
821 .strategy
= &sysctl_intvec
,
823 .extra2
= &one_hundred
,
826 .ctl_name
= VM_DIRTY_RATIO
,
827 .procname
= "dirty_ratio",
828 .data
= &vm_dirty_ratio
,
829 .maxlen
= sizeof(vm_dirty_ratio
),
831 .proc_handler
= &proc_dointvec_minmax
,
832 .strategy
= &sysctl_intvec
,
834 .extra2
= &one_hundred
,
837 .ctl_name
= VM_DIRTY_WB_CS
,
838 .procname
= "dirty_writeback_centisecs",
839 .data
= &dirty_writeback_interval
,
840 .maxlen
= sizeof(dirty_writeback_interval
),
842 .proc_handler
= &dirty_writeback_centisecs_handler
,
845 .ctl_name
= VM_DIRTY_EXPIRE_CS
,
846 .procname
= "dirty_expire_centisecs",
847 .data
= &dirty_expire_interval
,
848 .maxlen
= sizeof(dirty_expire_interval
),
850 .proc_handler
= &proc_dointvec_userhz_jiffies
,
853 .ctl_name
= VM_NR_PDFLUSH_THREADS
,
854 .procname
= "nr_pdflush_threads",
855 .data
= &nr_pdflush_threads
,
856 .maxlen
= sizeof nr_pdflush_threads
,
857 .mode
= 0444 /* read-only*/,
858 .proc_handler
= &proc_dointvec
,
861 .ctl_name
= VM_SWAPPINESS
,
862 .procname
= "swappiness",
863 .data
= &vm_swappiness
,
864 .maxlen
= sizeof(vm_swappiness
),
866 .proc_handler
= &proc_dointvec_minmax
,
867 .strategy
= &sysctl_intvec
,
869 .extra2
= &one_hundred
,
871 #ifdef CONFIG_HUGETLB_PAGE
873 .ctl_name
= VM_HUGETLB_PAGES
,
874 .procname
= "nr_hugepages",
875 .data
= &max_huge_pages
,
876 .maxlen
= sizeof(unsigned long),
878 .proc_handler
= &hugetlb_sysctl_handler
,
879 .extra1
= (void *)&hugetlb_zero
,
880 .extra2
= (void *)&hugetlb_infinity
,
883 .ctl_name
= VM_HUGETLB_GROUP
,
884 .procname
= "hugetlb_shm_group",
885 .data
= &sysctl_hugetlb_shm_group
,
886 .maxlen
= sizeof(gid_t
),
888 .proc_handler
= &proc_dointvec
,
892 .ctl_name
= VM_LOWMEM_RESERVE_RATIO
,
893 .procname
= "lowmem_reserve_ratio",
894 .data
= &sysctl_lowmem_reserve_ratio
,
895 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
897 .proc_handler
= &lowmem_reserve_ratio_sysctl_handler
,
898 .strategy
= &sysctl_intvec
,
901 .ctl_name
= VM_DROP_PAGECACHE
,
902 .procname
= "drop_caches",
903 .data
= &sysctl_drop_caches
,
904 .maxlen
= sizeof(int),
906 .proc_handler
= drop_caches_sysctl_handler
,
907 .strategy
= &sysctl_intvec
,
910 .ctl_name
= VM_MIN_FREE_KBYTES
,
911 .procname
= "min_free_kbytes",
912 .data
= &min_free_kbytes
,
913 .maxlen
= sizeof(min_free_kbytes
),
915 .proc_handler
= &min_free_kbytes_sysctl_handler
,
916 .strategy
= &sysctl_intvec
,
920 .ctl_name
= VM_PERCPU_PAGELIST_FRACTION
,
921 .procname
= "percpu_pagelist_fraction",
922 .data
= &percpu_pagelist_fraction
,
923 .maxlen
= sizeof(percpu_pagelist_fraction
),
925 .proc_handler
= &percpu_pagelist_fraction_sysctl_handler
,
926 .strategy
= &sysctl_intvec
,
927 .extra1
= &min_percpu_pagelist_fract
,
931 .ctl_name
= VM_MAX_MAP_COUNT
,
932 .procname
= "max_map_count",
933 .data
= &sysctl_max_map_count
,
934 .maxlen
= sizeof(sysctl_max_map_count
),
936 .proc_handler
= &proc_dointvec
940 .ctl_name
= VM_LAPTOP_MODE
,
941 .procname
= "laptop_mode",
942 .data
= &laptop_mode
,
943 .maxlen
= sizeof(laptop_mode
),
945 .proc_handler
= &proc_dointvec_jiffies
,
946 .strategy
= &sysctl_jiffies
,
949 .ctl_name
= VM_BLOCK_DUMP
,
950 .procname
= "block_dump",
952 .maxlen
= sizeof(block_dump
),
954 .proc_handler
= &proc_dointvec
,
955 .strategy
= &sysctl_intvec
,
959 .ctl_name
= VM_VFS_CACHE_PRESSURE
,
960 .procname
= "vfs_cache_pressure",
961 .data
= &sysctl_vfs_cache_pressure
,
962 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
964 .proc_handler
= &proc_dointvec
,
965 .strategy
= &sysctl_intvec
,
968 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
970 .ctl_name
= VM_LEGACY_VA_LAYOUT
,
971 .procname
= "legacy_va_layout",
972 .data
= &sysctl_legacy_va_layout
,
973 .maxlen
= sizeof(sysctl_legacy_va_layout
),
975 .proc_handler
= &proc_dointvec
,
976 .strategy
= &sysctl_intvec
,
982 .ctl_name
= VM_ZONE_RECLAIM_MODE
,
983 .procname
= "zone_reclaim_mode",
984 .data
= &zone_reclaim_mode
,
985 .maxlen
= sizeof(zone_reclaim_mode
),
987 .proc_handler
= &proc_dointvec
,
988 .strategy
= &sysctl_intvec
,
992 .ctl_name
= VM_MIN_UNMAPPED
,
993 .procname
= "min_unmapped_ratio",
994 .data
= &sysctl_min_unmapped_ratio
,
995 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
997 .proc_handler
= &sysctl_min_unmapped_ratio_sysctl_handler
,
998 .strategy
= &sysctl_intvec
,
1000 .extra2
= &one_hundred
,
1003 .ctl_name
= VM_MIN_SLAB
,
1004 .procname
= "min_slab_ratio",
1005 .data
= &sysctl_min_slab_ratio
,
1006 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1008 .proc_handler
= &sysctl_min_slab_ratio_sysctl_handler
,
1009 .strategy
= &sysctl_intvec
,
1011 .extra2
= &one_hundred
,
1014 #ifdef CONFIG_X86_32
1016 .ctl_name
= VM_VDSO_ENABLED
,
1017 .procname
= "vdso_enabled",
1018 .data
= &vdso_enabled
,
1019 .maxlen
= sizeof(vdso_enabled
),
1021 .proc_handler
= &proc_dointvec
,
1022 .strategy
= &sysctl_intvec
,
1029 static ctl_table fs_table
[] = {
1031 .ctl_name
= FS_NRINODE
,
1032 .procname
= "inode-nr",
1033 .data
= &inodes_stat
,
1034 .maxlen
= 2*sizeof(int),
1036 .proc_handler
= &proc_dointvec
,
1039 .ctl_name
= FS_STATINODE
,
1040 .procname
= "inode-state",
1041 .data
= &inodes_stat
,
1042 .maxlen
= 7*sizeof(int),
1044 .proc_handler
= &proc_dointvec
,
1047 .ctl_name
= FS_NRFILE
,
1048 .procname
= "file-nr",
1049 .data
= &files_stat
,
1050 .maxlen
= 3*sizeof(int),
1052 .proc_handler
= &proc_nr_files
,
1055 .ctl_name
= FS_MAXFILE
,
1056 .procname
= "file-max",
1057 .data
= &files_stat
.max_files
,
1058 .maxlen
= sizeof(int),
1060 .proc_handler
= &proc_dointvec
,
1063 .ctl_name
= FS_DENTRY
,
1064 .procname
= "dentry-state",
1065 .data
= &dentry_stat
,
1066 .maxlen
= 6*sizeof(int),
1068 .proc_handler
= &proc_dointvec
,
1071 .ctl_name
= FS_OVERFLOWUID
,
1072 .procname
= "overflowuid",
1073 .data
= &fs_overflowuid
,
1074 .maxlen
= sizeof(int),
1076 .proc_handler
= &proc_dointvec_minmax
,
1077 .strategy
= &sysctl_intvec
,
1078 .extra1
= &minolduid
,
1079 .extra2
= &maxolduid
,
1082 .ctl_name
= FS_OVERFLOWGID
,
1083 .procname
= "overflowgid",
1084 .data
= &fs_overflowgid
,
1085 .maxlen
= sizeof(int),
1087 .proc_handler
= &proc_dointvec_minmax
,
1088 .strategy
= &sysctl_intvec
,
1089 .extra1
= &minolduid
,
1090 .extra2
= &maxolduid
,
1093 .ctl_name
= FS_LEASES
,
1094 .procname
= "leases-enable",
1095 .data
= &leases_enable
,
1096 .maxlen
= sizeof(int),
1098 .proc_handler
= &proc_dointvec
,
1100 #ifdef CONFIG_DNOTIFY
1102 .ctl_name
= FS_DIR_NOTIFY
,
1103 .procname
= "dir-notify-enable",
1104 .data
= &dir_notify_enable
,
1105 .maxlen
= sizeof(int),
1107 .proc_handler
= &proc_dointvec
,
1112 .ctl_name
= FS_LEASE_TIME
,
1113 .procname
= "lease-break-time",
1114 .data
= &lease_break_time
,
1115 .maxlen
= sizeof(int),
1117 .proc_handler
= &proc_dointvec
,
1120 .ctl_name
= FS_AIO_NR
,
1121 .procname
= "aio-nr",
1123 .maxlen
= sizeof(aio_nr
),
1125 .proc_handler
= &proc_doulongvec_minmax
,
1128 .ctl_name
= FS_AIO_MAX_NR
,
1129 .procname
= "aio-max-nr",
1130 .data
= &aio_max_nr
,
1131 .maxlen
= sizeof(aio_max_nr
),
1133 .proc_handler
= &proc_doulongvec_minmax
,
1135 #ifdef CONFIG_INOTIFY_USER
1137 .ctl_name
= FS_INOTIFY
,
1138 .procname
= "inotify",
1140 .child
= inotify_table
,
1145 .ctl_name
= KERN_SETUID_DUMPABLE
,
1146 .procname
= "suid_dumpable",
1147 .data
= &suid_dumpable
,
1148 .maxlen
= sizeof(int),
1150 .proc_handler
= &proc_dointvec
,
1155 static ctl_table debug_table
[] = {
1159 static ctl_table dev_table
[] = {
1163 extern void init_irq_proc (void);
1165 static DEFINE_SPINLOCK(sysctl_lock
);
1167 /* called under sysctl_lock */
1168 static int use_table(struct ctl_table_header
*p
)
1170 if (unlikely(p
->unregistering
))
1176 /* called under sysctl_lock */
1177 static void unuse_table(struct ctl_table_header
*p
)
1180 if (unlikely(p
->unregistering
))
1181 complete(p
->unregistering
);
1184 /* called under sysctl_lock, will reacquire if has to wait */
1185 static void start_unregistering(struct ctl_table_header
*p
)
1188 * if p->used is 0, nobody will ever touch that entry again;
1189 * we'll eliminate all paths to it before dropping sysctl_lock
1191 if (unlikely(p
->used
)) {
1192 struct completion wait
;
1193 init_completion(&wait
);
1194 p
->unregistering
= &wait
;
1195 spin_unlock(&sysctl_lock
);
1196 wait_for_completion(&wait
);
1197 spin_lock(&sysctl_lock
);
1200 * do not remove from the list until nobody holds it; walking the
1201 * list in do_sysctl() relies on that.
1203 list_del_init(&p
->ctl_entry
);
1206 void __init
sysctl_init(void)
1208 #ifdef CONFIG_PROC_SYSCTL
1209 register_proc_table(root_table
, proc_sys_root
, &root_table_header
);
1214 #ifdef CONFIG_SYSCTL_SYSCALL
1215 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1216 void __user
*newval
, size_t newlen
)
1218 struct list_head
*tmp
;
1219 int error
= -ENOTDIR
;
1221 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1225 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1228 spin_lock(&sysctl_lock
);
1229 tmp
= &root_table_header
.ctl_entry
;
1231 struct ctl_table_header
*head
=
1232 list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1233 void *context
= NULL
;
1235 if (!use_table(head
))
1238 spin_unlock(&sysctl_lock
);
1240 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1241 newval
, newlen
, head
->ctl_table
,
1245 spin_lock(&sysctl_lock
);
1247 if (error
!= -ENOTDIR
)
1249 } while ((tmp
= tmp
->next
) != &root_table_header
.ctl_entry
);
1250 spin_unlock(&sysctl_lock
);
1254 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
1256 struct __sysctl_args tmp
;
1259 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1263 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1264 tmp
.newval
, tmp
.newlen
);
1268 #endif /* CONFIG_SYSCTL_SYSCALL */
1271 * ctl_perm does NOT grant the superuser all rights automatically, because
1272 * some sysctl variables are readonly even to root.
1275 static int test_perm(int mode
, int op
)
1279 else if (in_egroup_p(0))
1281 if ((mode
& op
& 0007) == op
)
1286 static inline int ctl_perm(ctl_table
*table
, int op
)
1289 error
= security_sysctl(table
, op
);
1292 return test_perm(table
->mode
, op
);
1295 #ifdef CONFIG_SYSCTL_SYSCALL
1296 static int parse_table(int __user
*name
, int nlen
,
1297 void __user
*oldval
, size_t __user
*oldlenp
,
1298 void __user
*newval
, size_t newlen
,
1299 ctl_table
*table
, void **context
)
1305 if (get_user(n
, name
))
1307 for ( ; table
->ctl_name
|| table
->procname
; table
++) {
1308 if (!table
->ctl_name
)
1310 if (n
== table
->ctl_name
|| table
->ctl_name
== CTL_ANY
) {
1313 if (ctl_perm(table
, 001))
1315 if (table
->strategy
) {
1316 error
= table
->strategy(
1319 newval
, newlen
, context
);
1325 table
= table
->child
;
1328 error
= do_sysctl_strategy(table
, name
, nlen
,
1330 newval
, newlen
, context
);
1337 /* Perform the actual read/write of a sysctl table entry. */
1338 int do_sysctl_strategy (ctl_table
*table
,
1339 int __user
*name
, int nlen
,
1340 void __user
*oldval
, size_t __user
*oldlenp
,
1341 void __user
*newval
, size_t newlen
, void **context
)
1350 if (ctl_perm(table
, op
))
1353 if (table
->strategy
) {
1354 rc
= table
->strategy(table
, name
, nlen
, oldval
, oldlenp
,
1355 newval
, newlen
, context
);
1362 /* If there is no strategy routine, or if the strategy returns
1363 * zero, proceed with automatic r/w */
1364 if (table
->data
&& table
->maxlen
) {
1365 if (oldval
&& oldlenp
) {
1366 if (get_user(len
, oldlenp
))
1369 if (len
> table
->maxlen
)
1370 len
= table
->maxlen
;
1371 if(copy_to_user(oldval
, table
->data
, len
))
1373 if(put_user(len
, oldlenp
))
1377 if (newval
&& newlen
) {
1379 if (len
> table
->maxlen
)
1380 len
= table
->maxlen
;
1381 if(copy_from_user(table
->data
, newval
, len
))
1387 #endif /* CONFIG_SYSCTL_SYSCALL */
1390 * register_sysctl_table - register a sysctl hierarchy
1391 * @table: the top-level table structure
1392 * @insert_at_head: whether the entry should be inserted in front or at the end
1394 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1395 * array. An entry with a ctl_name of 0 terminates the table.
1397 * The members of the &ctl_table structure are used as follows:
1399 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1400 * must be unique within that level of sysctl
1402 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1403 * enter a sysctl file
1405 * data - a pointer to data for use by proc_handler
1407 * maxlen - the maximum size in bytes of the data
1409 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1411 * child - a pointer to the child sysctl table if this entry is a directory, or
1414 * proc_handler - the text handler routine (described below)
1416 * strategy - the strategy routine (described below)
1418 * de - for internal use by the sysctl routines
1420 * extra1, extra2 - extra pointers usable by the proc handler routines
1422 * Leaf nodes in the sysctl tree will be represented by a single file
1423 * under /proc; non-leaf nodes will be represented by directories.
1425 * sysctl(2) can automatically manage read and write requests through
1426 * the sysctl table. The data and maxlen fields of the ctl_table
1427 * struct enable minimal validation of the values being written to be
1428 * performed, and the mode field allows minimal authentication.
1430 * More sophisticated management can be enabled by the provision of a
1431 * strategy routine with the table entry. This will be called before
1432 * any automatic read or write of the data is performed.
1434 * The strategy routine may return
1436 * < 0 - Error occurred (error is passed to user process)
1438 * 0 - OK - proceed with automatic read or write.
1440 * > 0 - OK - read or write has been done by the strategy routine, so
1441 * return immediately.
1443 * There must be a proc_handler routine for any terminal nodes
1444 * mirrored under /proc/sys (non-terminals are handled by a built-in
1445 * directory handler). Several default handlers are available to
1446 * cover common cases -
1448 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1449 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1450 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1452 * It is the handler's job to read the input buffer from user memory
1453 * and process it. The handler should return 0 on success.
1455 * This routine returns %NULL on a failure to register, and a pointer
1456 * to the table header on success.
1458 struct ctl_table_header
*register_sysctl_table(ctl_table
* table
,
1461 struct ctl_table_header
*tmp
;
1462 tmp
= kmalloc(sizeof(struct ctl_table_header
), GFP_KERNEL
);
1465 tmp
->ctl_table
= table
;
1466 INIT_LIST_HEAD(&tmp
->ctl_entry
);
1468 tmp
->unregistering
= NULL
;
1469 spin_lock(&sysctl_lock
);
1471 list_add(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1473 list_add_tail(&tmp
->ctl_entry
, &root_table_header
.ctl_entry
);
1474 spin_unlock(&sysctl_lock
);
1475 #ifdef CONFIG_PROC_SYSCTL
1476 register_proc_table(table
, proc_sys_root
, tmp
);
1482 * unregister_sysctl_table - unregister a sysctl table hierarchy
1483 * @header: the header returned from register_sysctl_table
1485 * Unregisters the sysctl table and all children. proc entries may not
1486 * actually be removed until they are no longer used by anyone.
1488 void unregister_sysctl_table(struct ctl_table_header
* header
)
1491 spin_lock(&sysctl_lock
);
1492 start_unregistering(header
);
1493 #ifdef CONFIG_PROC_SYSCTL
1494 unregister_proc_table(header
->ctl_table
, proc_sys_root
);
1496 spin_unlock(&sysctl_lock
);
1500 #else /* !CONFIG_SYSCTL */
1501 struct ctl_table_header
* register_sysctl_table(ctl_table
* table
,
1507 void unregister_sysctl_table(struct ctl_table_header
* table
)
1511 #endif /* CONFIG_SYSCTL */
1517 #ifdef CONFIG_PROC_SYSCTL
1519 /* Scan the sysctl entries in table and add them all into /proc */
1520 static void register_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
, void *set
)
1522 struct proc_dir_entry
*de
;
1526 for (; table
->ctl_name
|| table
->procname
; table
++) {
1527 /* Can't do anything without a proc name. */
1528 if (!table
->procname
)
1530 /* Maybe we can't do anything with it... */
1531 if (!table
->proc_handler
&& !table
->child
) {
1532 printk(KERN_WARNING
"SYSCTL: Can't register %s\n",
1537 len
= strlen(table
->procname
);
1541 if (table
->proc_handler
)
1545 for (de
= root
->subdir
; de
; de
= de
->next
) {
1546 if (proc_match(len
, table
->procname
, de
))
1549 /* If the subdir exists already, de is non-NULL */
1553 de
= create_proc_entry(table
->procname
, mode
, root
);
1557 de
->data
= (void *) table
;
1558 if (table
->proc_handler
)
1559 de
->proc_fops
= &proc_sys_file_operations
;
1562 if (de
->mode
& S_IFDIR
)
1563 register_proc_table(table
->child
, de
, set
);
1568 * Unregister a /proc sysctl table and any subdirectories.
1570 static void unregister_proc_table(ctl_table
* table
, struct proc_dir_entry
*root
)
1572 struct proc_dir_entry
*de
;
1573 for (; table
->ctl_name
|| table
->procname
; table
++) {
1574 if (!(de
= table
->de
))
1576 if (de
->mode
& S_IFDIR
) {
1577 if (!table
->child
) {
1578 printk (KERN_ALERT
"Help - malformed sysctl tree on free\n");
1581 unregister_proc_table(table
->child
, de
);
1583 /* Don't unregister directories which still have entries.. */
1589 * In any case, mark the entry as goner; we'll keep it
1590 * around if it's busy, but we'll know to do nothing with
1591 * its fields. We are under sysctl_lock here.
1595 /* Don't unregister proc entries that are still being used.. */
1596 if (atomic_read(&de
->count
))
1600 remove_proc_entry(table
->procname
, root
);
1604 static ssize_t
do_rw_proc(int write
, struct file
* file
, char __user
* buf
,
1605 size_t count
, loff_t
*ppos
)
1608 struct proc_dir_entry
*de
= PDE(file
->f_dentry
->d_inode
);
1609 struct ctl_table
*table
;
1611 ssize_t error
= -ENOTDIR
;
1613 spin_lock(&sysctl_lock
);
1614 if (de
&& de
->data
&& use_table(de
->set
)) {
1616 * at that point we know that sysctl was not unregistered
1617 * and won't be until we finish
1619 spin_unlock(&sysctl_lock
);
1620 table
= (struct ctl_table
*) de
->data
;
1621 if (!table
|| !table
->proc_handler
)
1624 op
= (write
? 002 : 004);
1625 if (ctl_perm(table
, op
))
1628 /* careful: calling conventions are nasty here */
1630 error
= (*table
->proc_handler
)(table
, write
, file
,
1635 spin_lock(&sysctl_lock
);
1636 unuse_table(de
->set
);
1638 spin_unlock(&sysctl_lock
);
1642 static int proc_opensys(struct inode
*inode
, struct file
*file
)
1644 if (file
->f_mode
& FMODE_WRITE
) {
1646 * sysctl entries that are not writable,
1647 * are _NOT_ writable, capabilities or not.
1649 if (!(inode
->i_mode
& S_IWUSR
))
1656 static ssize_t
proc_readsys(struct file
* file
, char __user
* buf
,
1657 size_t count
, loff_t
*ppos
)
1659 return do_rw_proc(0, file
, buf
, count
, ppos
);
1662 static ssize_t
proc_writesys(struct file
* file
, const char __user
* buf
,
1663 size_t count
, loff_t
*ppos
)
1665 return do_rw_proc(1, file
, (char __user
*) buf
, count
, ppos
);
1668 static int _proc_do_string(void* data
, int maxlen
, int write
,
1669 struct file
*filp
, void __user
*buffer
,
1670 size_t *lenp
, loff_t
*ppos
)
1676 if (!data
|| !maxlen
|| !*lenp
||
1677 (*ppos
&& !write
)) {
1685 while (len
< *lenp
) {
1686 if (get_user(c
, p
++))
1688 if (c
== 0 || c
== '\n')
1694 if(copy_from_user(data
, buffer
, len
))
1696 ((char *) data
)[len
] = 0;
1705 if(copy_to_user(buffer
, data
, len
))
1708 if(put_user('\n', ((char __user
*) buffer
) + len
))
1719 * proc_dostring - read a string sysctl
1720 * @table: the sysctl table
1721 * @write: %TRUE if this is a write to the sysctl file
1722 * @filp: the file structure
1723 * @buffer: the user buffer
1724 * @lenp: the size of the user buffer
1725 * @ppos: file position
1727 * Reads/writes a string from/to the user buffer. If the kernel
1728 * buffer provided is not large enough to hold the string, the
1729 * string is truncated. The copied string is %NULL-terminated.
1730 * If the string is being read by the user process, it is copied
1731 * and a newline '\n' is added. It is truncated if the buffer is
1734 * Returns 0 on success.
1736 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
1737 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1739 return _proc_do_string(table
->data
, table
->maxlen
, write
, filp
,
1740 buffer
, lenp
, ppos
);
1744 * Special case of dostring for the UTS structure. This has locks
1745 * to observe. Should this be in kernel/sys.c ????
1748 #ifndef CONFIG_UTS_NS
1749 static int proc_do_uts_string(ctl_table
*table
, int write
, struct file
*filp
,
1750 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1755 down_read(&uts_sem
);
1756 r
=proc_dostring(table
,0,filp
,buffer
,lenp
, ppos
);
1759 down_write(&uts_sem
);
1760 r
=proc_dostring(table
,1,filp
,buffer
,lenp
, ppos
);
1765 #else /* !CONFIG_UTS_NS */
1766 static int proc_do_uts_string(ctl_table
*table
, int write
, struct file
*filp
,
1767 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1770 struct uts_namespace
* uts_ns
= current
->nsproxy
->uts_ns
;
1773 switch (table
->ctl_name
) {
1775 which
= uts_ns
->name
.sysname
;
1778 which
= uts_ns
->name
.nodename
;
1780 case KERN_OSRELEASE
:
1781 which
= uts_ns
->name
.release
;
1784 which
= uts_ns
->name
.version
;
1786 case KERN_DOMAINNAME
:
1787 which
= uts_ns
->name
.domainname
;
1795 down_read(&uts_sem
);
1796 r
=_proc_do_string(which
,table
->maxlen
,0,filp
,buffer
,lenp
, ppos
);
1799 down_write(&uts_sem
);
1800 r
=_proc_do_string(which
,table
->maxlen
,1,filp
,buffer
,lenp
, ppos
);
1806 #endif /* !CONFIG_UTS_NS */
1808 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
1810 int write
, void *data
)
1813 *valp
= *negp
? -*lvalp
: *lvalp
;
1818 *lvalp
= (unsigned long)-val
;
1821 *lvalp
= (unsigned long)val
;
1827 static int __do_proc_dointvec(void *tbl_data
, ctl_table
*table
,
1828 int write
, struct file
*filp
, void __user
*buffer
,
1829 size_t *lenp
, loff_t
*ppos
,
1830 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1831 int write
, void *data
),
1834 #define TMPBUFLEN 21
1835 int *i
, vleft
, first
=1, neg
, val
;
1839 char buf
[TMPBUFLEN
], *p
;
1840 char __user
*s
= buffer
;
1842 if (!tbl_data
|| !table
->maxlen
|| !*lenp
||
1843 (*ppos
&& !write
)) {
1848 i
= (int *) tbl_data
;
1849 vleft
= table
->maxlen
/ sizeof(*i
);
1853 conv
= do_proc_dointvec_conv
;
1855 for (; left
&& vleft
--; i
++, first
=0) {
1870 if (len
> sizeof(buf
) - 1)
1871 len
= sizeof(buf
) - 1;
1872 if (copy_from_user(buf
, s
, len
))
1876 if (*p
== '-' && left
> 1) {
1880 if (*p
< '0' || *p
> '9')
1883 lval
= simple_strtoul(p
, &p
, 0);
1886 if ((len
< left
) && *p
&& !isspace(*p
))
1893 if (conv(&neg
, &lval
, i
, 1, data
))
1900 if (conv(&neg
, &lval
, i
, 0, data
))
1903 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
1907 if(copy_to_user(s
, buf
, len
))
1914 if (!write
&& !first
&& left
) {
1915 if(put_user('\n', s
))
1922 if (get_user(c
, s
++))
1937 static int do_proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1938 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
1939 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
1940 int write
, void *data
),
1943 return __do_proc_dointvec(table
->data
, table
, write
, filp
,
1944 buffer
, lenp
, ppos
, conv
, data
);
1948 * proc_dointvec - read a vector of integers
1949 * @table: the sysctl table
1950 * @write: %TRUE if this is a write to the sysctl file
1951 * @filp: the file structure
1952 * @buffer: the user buffer
1953 * @lenp: the size of the user buffer
1954 * @ppos: file position
1956 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1957 * values from/to the user buffer, treated as an ASCII string.
1959 * Returns 0 on success.
1961 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
1962 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1964 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
1974 static int do_proc_dointvec_bset_conv(int *negp
, unsigned long *lvalp
,
1976 int write
, void *data
)
1978 int op
= *(int *)data
;
1980 int val
= *negp
? -*lvalp
: *lvalp
;
1982 case OP_SET
: *valp
= val
; break;
1983 case OP_AND
: *valp
&= val
; break;
1984 case OP_OR
: *valp
|= val
; break;
1985 case OP_MAX
: if(*valp
< val
)
1988 case OP_MIN
: if(*valp
> val
)
1996 *lvalp
= (unsigned long)-val
;
1999 *lvalp
= (unsigned long)val
;
2006 * init may raise the set.
2009 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2010 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2014 if (!capable(CAP_SYS_MODULE
)) {
2018 op
= is_init(current
) ? OP_SET
: OP_AND
;
2019 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2020 do_proc_dointvec_bset_conv
,&op
);
2023 struct do_proc_dointvec_minmax_conv_param
{
2028 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
2030 int write
, void *data
)
2032 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
2034 int val
= *negp
? -*lvalp
: *lvalp
;
2035 if ((param
->min
&& *param
->min
> val
) ||
2036 (param
->max
&& *param
->max
< val
))
2043 *lvalp
= (unsigned long)-val
;
2046 *lvalp
= (unsigned long)val
;
2053 * proc_dointvec_minmax - read a vector of integers with min/max values
2054 * @table: the sysctl table
2055 * @write: %TRUE if this is a write to the sysctl file
2056 * @filp: the file structure
2057 * @buffer: the user buffer
2058 * @lenp: the size of the user buffer
2059 * @ppos: file position
2061 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2062 * values from/to the user buffer, treated as an ASCII string.
2064 * This routine will ensure the values are within the range specified by
2065 * table->extra1 (min) and table->extra2 (max).
2067 * Returns 0 on success.
2069 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2070 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2072 struct do_proc_dointvec_minmax_conv_param param
= {
2073 .min
= (int *) table
->extra1
,
2074 .max
= (int *) table
->extra2
,
2076 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2077 do_proc_dointvec_minmax_conv
, ¶m
);
2080 static int __do_proc_doulongvec_minmax(void *data
, ctl_table
*table
, int write
,
2082 void __user
*buffer
,
2083 size_t *lenp
, loff_t
*ppos
,
2084 unsigned long convmul
,
2085 unsigned long convdiv
)
2087 #define TMPBUFLEN 21
2088 unsigned long *i
, *min
, *max
, val
;
2089 int vleft
, first
=1, neg
;
2091 char buf
[TMPBUFLEN
], *p
;
2092 char __user
*s
= buffer
;
2094 if (!data
|| !table
->maxlen
|| !*lenp
||
2095 (*ppos
&& !write
)) {
2100 i
= (unsigned long *) data
;
2101 min
= (unsigned long *) table
->extra1
;
2102 max
= (unsigned long *) table
->extra2
;
2103 vleft
= table
->maxlen
/ sizeof(unsigned long);
2106 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
2121 if (len
> TMPBUFLEN
-1)
2123 if (copy_from_user(buf
, s
, len
))
2127 if (*p
== '-' && left
> 1) {
2131 if (*p
< '0' || *p
> '9')
2133 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
2135 if ((len
< left
) && *p
&& !isspace(*p
))
2144 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2151 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
2155 if(copy_to_user(s
, buf
, len
))
2162 if (!write
&& !first
&& left
) {
2163 if(put_user('\n', s
))
2170 if (get_user(c
, s
++))
2185 static int do_proc_doulongvec_minmax(ctl_table
*table
, int write
,
2187 void __user
*buffer
,
2188 size_t *lenp
, loff_t
*ppos
,
2189 unsigned long convmul
,
2190 unsigned long convdiv
)
2192 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2193 filp
, buffer
, lenp
, ppos
, convmul
, convdiv
);
2197 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2198 * @table: the sysctl table
2199 * @write: %TRUE if this is a write to the sysctl file
2200 * @filp: the file structure
2201 * @buffer: the user buffer
2202 * @lenp: the size of the user buffer
2203 * @ppos: file position
2205 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2206 * values from/to the user buffer, treated as an ASCII string.
2208 * This routine will ensure the values are within the range specified by
2209 * table->extra1 (min) and table->extra2 (max).
2211 * Returns 0 on success.
2213 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2214 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2216 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
2220 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2221 * @table: the sysctl table
2222 * @write: %TRUE if this is a write to the sysctl file
2223 * @filp: the file structure
2224 * @buffer: the user buffer
2225 * @lenp: the size of the user buffer
2226 * @ppos: file position
2228 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2229 * values from/to the user buffer, treated as an ASCII string. The values
2230 * are treated as milliseconds, and converted to jiffies when they are stored.
2232 * This routine will ensure the values are within the range specified by
2233 * table->extra1 (min) and table->extra2 (max).
2235 * Returns 0 on success.
2237 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2239 void __user
*buffer
,
2240 size_t *lenp
, loff_t
*ppos
)
2242 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2243 lenp
, ppos
, HZ
, 1000l);
2247 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2249 int write
, void *data
)
2252 if (*lvalp
> LONG_MAX
/ HZ
)
2254 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2260 lval
= (unsigned long)-val
;
2263 lval
= (unsigned long)val
;
2270 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2272 int write
, void *data
)
2275 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2277 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2283 lval
= (unsigned long)-val
;
2286 lval
= (unsigned long)val
;
2288 *lvalp
= jiffies_to_clock_t(lval
);
2293 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2295 int write
, void *data
)
2298 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2304 lval
= (unsigned long)-val
;
2307 lval
= (unsigned long)val
;
2309 *lvalp
= jiffies_to_msecs(lval
);
2315 * proc_dointvec_jiffies - read a vector of integers as seconds
2316 * @table: the sysctl table
2317 * @write: %TRUE if this is a write to the sysctl file
2318 * @filp: the file structure
2319 * @buffer: the user buffer
2320 * @lenp: the size of the user buffer
2321 * @ppos: file position
2323 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2324 * values from/to the user buffer, treated as an ASCII string.
2325 * The values read are assumed to be in seconds, and are converted into
2328 * Returns 0 on success.
2330 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2331 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2333 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2334 do_proc_dointvec_jiffies_conv
,NULL
);
2338 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2339 * @table: the sysctl table
2340 * @write: %TRUE if this is a write to the sysctl file
2341 * @filp: the file structure
2342 * @buffer: the user buffer
2343 * @lenp: the size of the user buffer
2344 * @ppos: pointer to the file position
2346 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2347 * values from/to the user buffer, treated as an ASCII string.
2348 * The values read are assumed to be in 1/USER_HZ seconds, and
2349 * are converted into jiffies.
2351 * Returns 0 on success.
2353 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2354 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2356 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2357 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2361 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2362 * @table: the sysctl table
2363 * @write: %TRUE if this is a write to the sysctl file
2364 * @filp: the file structure
2365 * @buffer: the user buffer
2366 * @lenp: the size of the user buffer
2367 * @ppos: file position
2368 * @ppos: the current position in the file
2370 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2371 * values from/to the user buffer, treated as an ASCII string.
2372 * The values read are assumed to be in 1/1000 seconds, and
2373 * are converted into jiffies.
2375 * Returns 0 on success.
2377 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2378 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2380 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2381 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2384 #ifdef CONFIG_SYSVIPC
2385 static int proc_do_ipc_string(ctl_table
*table
, int write
, struct file
*filp
,
2386 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2389 struct ipc_namespace
*ns
;
2391 ns
= current
->nsproxy
->ipc_ns
;
2393 switch (table
->ctl_name
) {
2395 data
= &ns
->shm_ctlmax
;
2398 data
= &ns
->shm_ctlall
;
2401 data
= &ns
->shm_ctlmni
;
2404 data
= &ns
->msg_ctlmax
;
2407 data
= &ns
->msg_ctlmni
;
2410 data
= &ns
->msg_ctlmnb
;
2413 data
= &ns
->sem_ctls
;
2419 return __do_proc_dointvec(data
, table
, write
, filp
, buffer
,
2420 lenp
, ppos
, NULL
, NULL
);
2422 return __do_proc_doulongvec_minmax(data
, table
, write
, filp
, buffer
,
2423 lenp
, ppos
, 1l, 1l);
2427 static int proc_do_cad_pid(ctl_table
*table
, int write
, struct file
*filp
,
2428 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2430 struct pid
*new_pid
;
2434 tmp
= pid_nr(cad_pid
);
2436 r
= __do_proc_dointvec(&tmp
, table
, write
, filp
, buffer
,
2437 lenp
, ppos
, NULL
, NULL
);
2441 new_pid
= find_get_pid(tmp
);
2445 put_pid(xchg(&cad_pid
, new_pid
));
2449 #else /* CONFIG_PROC_FS */
2451 int proc_dostring(ctl_table
*table
, int write
, struct file
*filp
,
2452 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2457 static int proc_do_uts_string(ctl_table
*table
, int write
, struct file
*filp
,
2458 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2463 #ifdef CONFIG_SYSVIPC
2464 static int proc_do_ipc_string(ctl_table
*table
, int write
, struct file
*filp
,
2465 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2471 int proc_dointvec(ctl_table
*table
, int write
, struct file
*filp
,
2472 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2477 int proc_dointvec_bset(ctl_table
*table
, int write
, struct file
*filp
,
2478 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2483 int proc_dointvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2484 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2489 int proc_dointvec_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2490 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2495 int proc_dointvec_userhz_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2496 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2501 int proc_dointvec_ms_jiffies(ctl_table
*table
, int write
, struct file
*filp
,
2502 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2507 int proc_doulongvec_minmax(ctl_table
*table
, int write
, struct file
*filp
,
2508 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2513 int proc_doulongvec_ms_jiffies_minmax(ctl_table
*table
, int write
,
2515 void __user
*buffer
,
2516 size_t *lenp
, loff_t
*ppos
)
2522 #endif /* CONFIG_PROC_FS */
2525 #ifdef CONFIG_SYSCTL_SYSCALL
2527 * General sysctl support routines
2530 /* The generic string strategy routine: */
2531 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2532 void __user
*oldval
, size_t __user
*oldlenp
,
2533 void __user
*newval
, size_t newlen
, void **context
)
2535 if (!table
->data
|| !table
->maxlen
)
2538 if (oldval
&& oldlenp
) {
2540 if (get_user(bufsize
, oldlenp
))
2543 size_t len
= strlen(table
->data
), copied
;
2545 /* This shouldn't trigger for a well-formed sysctl */
2546 if (len
> table
->maxlen
)
2547 len
= table
->maxlen
;
2549 /* Copy up to a max of bufsize-1 bytes of the string */
2550 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2552 if (copy_to_user(oldval
, table
->data
, copied
) ||
2553 put_user(0, (char __user
*)(oldval
+ copied
)))
2555 if (put_user(len
, oldlenp
))
2559 if (newval
&& newlen
) {
2560 size_t len
= newlen
;
2561 if (len
> table
->maxlen
)
2562 len
= table
->maxlen
;
2563 if(copy_from_user(table
->data
, newval
, len
))
2565 if (len
== table
->maxlen
)
2567 ((char *) table
->data
)[len
] = 0;
2573 * This function makes sure that all of the integers in the vector
2574 * are between the minimum and maximum values given in the arrays
2575 * table->extra1 and table->extra2, respectively.
2577 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2578 void __user
*oldval
, size_t __user
*oldlenp
,
2579 void __user
*newval
, size_t newlen
, void **context
)
2582 if (newval
&& newlen
) {
2583 int __user
*vec
= (int __user
*) newval
;
2584 int *min
= (int *) table
->extra1
;
2585 int *max
= (int *) table
->extra2
;
2589 if (newlen
% sizeof(int) != 0)
2592 if (!table
->extra1
&& !table
->extra2
)
2595 if (newlen
> table
->maxlen
)
2596 newlen
= table
->maxlen
;
2597 length
= newlen
/ sizeof(int);
2599 for (i
= 0; i
< length
; i
++) {
2601 if (get_user(value
, vec
+ i
))
2603 if (min
&& value
< min
[i
])
2605 if (max
&& value
> max
[i
])
2612 /* Strategy function to convert jiffies to seconds */
2613 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2614 void __user
*oldval
, size_t __user
*oldlenp
,
2615 void __user
*newval
, size_t newlen
, void **context
)
2620 if (get_user(olen
, oldlenp
))
2622 if (olen
!=sizeof(int))
2625 if (put_user(*(int *)(table
->data
)/HZ
, (int __user
*)oldval
) ||
2626 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2629 if (newval
&& newlen
) {
2631 if (newlen
!= sizeof(int))
2633 if (get_user(new, (int __user
*)newval
))
2635 *(int *)(table
->data
) = new*HZ
;
2640 /* Strategy function to convert jiffies to seconds */
2641 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2642 void __user
*oldval
, size_t __user
*oldlenp
,
2643 void __user
*newval
, size_t newlen
, void **context
)
2648 if (get_user(olen
, oldlenp
))
2650 if (olen
!=sizeof(int))
2653 if (put_user(jiffies_to_msecs(*(int *)(table
->data
)), (int __user
*)oldval
) ||
2654 (oldlenp
&& put_user(sizeof(int),oldlenp
)))
2657 if (newval
&& newlen
) {
2659 if (newlen
!= sizeof(int))
2661 if (get_user(new, (int __user
*)newval
))
2663 *(int *)(table
->data
) = msecs_to_jiffies(new);
2668 #else /* CONFIG_SYSCTL_SYSCALL */
2671 asmlinkage
long sys_sysctl(struct __sysctl_args __user
*args
)
2673 static int msg_count
;
2674 struct __sysctl_args tmp
;
2675 int name
[CTL_MAXNAME
];
2678 /* Read in the sysctl name for better debug message logging */
2679 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
2681 if (tmp
.nlen
<= 0 || tmp
.nlen
>= CTL_MAXNAME
)
2683 for (i
= 0; i
< tmp
.nlen
; i
++)
2684 if (get_user(name
[i
], tmp
.name
+ i
))
2687 /* Ignore accesses to kernel.version */
2688 if ((tmp
.nlen
== 2) && (name
[0] == CTL_KERN
) && (name
[1] == KERN_VERSION
))
2691 if (msg_count
< 5) {
2694 "warning: process `%s' used the removed sysctl "
2695 "system call with ", current
->comm
);
2696 for (i
= 0; i
< tmp
.nlen
; i
++)
2697 printk("%d.", name
[i
]);
2704 int sysctl_string(ctl_table
*table
, int __user
*name
, int nlen
,
2705 void __user
*oldval
, size_t __user
*oldlenp
,
2706 void __user
*newval
, size_t newlen
, void **context
)
2711 int sysctl_intvec(ctl_table
*table
, int __user
*name
, int nlen
,
2712 void __user
*oldval
, size_t __user
*oldlenp
,
2713 void __user
*newval
, size_t newlen
, void **context
)
2718 int sysctl_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2719 void __user
*oldval
, size_t __user
*oldlenp
,
2720 void __user
*newval
, size_t newlen
, void **context
)
2725 int sysctl_ms_jiffies(ctl_table
*table
, int __user
*name
, int nlen
,
2726 void __user
*oldval
, size_t __user
*oldlenp
,
2727 void __user
*newval
, size_t newlen
, void **context
)
2732 #endif /* CONFIG_SYSCTL_SYSCALL */
2735 * No sense putting this after each symbol definition, twice,
2736 * exception granted :-)
2738 EXPORT_SYMBOL(proc_dointvec
);
2739 EXPORT_SYMBOL(proc_dointvec_jiffies
);
2740 EXPORT_SYMBOL(proc_dointvec_minmax
);
2741 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
2742 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
2743 EXPORT_SYMBOL(proc_dostring
);
2744 EXPORT_SYMBOL(proc_doulongvec_minmax
);
2745 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
2746 EXPORT_SYMBOL(register_sysctl_table
);
2747 EXPORT_SYMBOL(sysctl_intvec
);
2748 EXPORT_SYMBOL(sysctl_jiffies
);
2749 EXPORT_SYMBOL(sysctl_ms_jiffies
);
2750 EXPORT_SYMBOL(sysctl_string
);
2751 EXPORT_SYMBOL(unregister_sysctl_table
);