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/security.h>
28 #include <linux/ctype.h>
29 #include <linux/utsname.h>
30 #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>
48 #include <linux/reboot.h>
50 #include <asm/uaccess.h>
51 #include <asm/processor.h>
55 #include <asm/stacktrace.h>
58 static int deprecated_sysctl_warning(struct __sysctl_args *args);
60 #if defined(CONFIG_SYSCTL)
62 /* External variables not in a header file. */
64 extern int print_fatal_signals;
65 extern int sysctl_overcommit_memory;
66 extern int sysctl_overcommit_ratio;
67 extern int sysctl_panic_on_oom;
68 extern int sysctl_oom_kill_allocating_task;
69 extern int max_threads;
70 extern int core_uses_pid;
71 extern int suid_dumpable;
72 extern char core_pattern[];
74 extern int min_free_kbytes;
75 extern int printk_ratelimit_jiffies;
76 extern int printk_ratelimit_burst;
77 extern int pid_max_min, pid_max_max;
78 extern int sysctl_drop_caches;
79 extern int percpu_pagelist_fraction;
80 extern int compat_log;
81 extern int maps_protect;
82 extern int sysctl_stat_interval;
83 extern int audit_argv_kb;
84 extern int latencytop_enabled;
86 /* Constants used for minimum and maximum */
87 #ifdef CONFIG_DETECT_SOFTLOCKUP
89 static int sixty = 60;
97 static int one_hundred = 100;
99 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
100 static int maxolduid = 65535;
101 static int minolduid;
102 static int min_percpu_pagelist_fract = 8;
104 static int ngroups_max = NGROUPS_MAX;
107 extern char modprobe_path[];
109 #ifdef CONFIG_CHR_DEV_SG
110 extern int sg_big_buff;
114 extern char reboot_command [];
115 extern int stop_a_enabled;
116 extern int scons_pwroff;
120 extern int pwrsw_enabled;
121 extern int unaligned_enabled;
125 #ifdef CONFIG_MATHEMU
126 extern int sysctl_ieee_emulation_warnings;
128 extern int sysctl_userprocess_debug;
129 extern int spin_retry;
132 extern int sysctl_hz_timer;
134 #ifdef CONFIG_BSD_PROCESS_ACCT
135 extern int acct_parm[];
139 extern int no_unaligned_warning;
142 #ifdef CONFIG_RT_MUTEXES
143 extern int max_lock_depth;
146 #ifdef CONFIG_SYSCTL_SYSCALL
147 static int parse_table(int __user *, int, void __user *, size_t __user *,
148 void __user *, size_t, struct ctl_table *);
152 #ifdef CONFIG_PROC_SYSCTL
153 static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
154 void __user *buffer, size_t *lenp, loff_t *ppos);
155 static int proc_dointvec_taint(struct ctl_table *table, int write, struct file *filp,
156 void __user *buffer, size_t *lenp, loff_t *ppos);
159 static struct ctl_table root_table[];
160 static struct ctl_table_root sysctl_table_root;
161 static struct ctl_table_header root_table_header = {
162 .ctl_table = root_table,
163 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.header_list),
164 .root = &sysctl_table_root,
166 static struct ctl_table_root sysctl_table_root = {
167 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
168 .header_list = LIST_HEAD_INIT(root_table_header.ctl_entry),
171 static struct ctl_table kern_table[];
172 static struct ctl_table vm_table[];
173 static struct ctl_table fs_table[];
174 static struct ctl_table debug_table[];
175 static struct ctl_table dev_table[];
176 extern struct ctl_table random_table[];
177 #ifdef CONFIG_INOTIFY_USER
178 extern struct ctl_table inotify_table[];
181 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
182 int sysctl_legacy_va_layout;
185 extern int prove_locking;
186 extern int lock_stat;
188 /* The default sysctl tables: */
190 static struct ctl_table root_table[] = {
192 .ctl_name = CTL_KERN,
193 .procname = "kernel",
210 .ctl_name = CTL_DEBUG,
213 .child = debug_table,
222 * NOTE: do not add new entries to this table unless you have read
223 * Documentation/sysctl/ctl_unnumbered.txt
228 #ifdef CONFIG_SCHED_DEBUG
229 static int min_sched_granularity_ns = 100000; /* 100 usecs */
230 static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
231 static int min_wakeup_granularity_ns; /* 0 usecs */
232 static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
235 static struct ctl_table kern_table[] = {
236 #ifdef CONFIG_SCHED_DEBUG
238 .ctl_name = CTL_UNNUMBERED,
239 .procname = "sched_min_granularity_ns",
240 .data = &sysctl_sched_min_granularity,
241 .maxlen = sizeof(unsigned int),
243 .proc_handler = &sched_nr_latency_handler,
244 .strategy = &sysctl_intvec,
245 .extra1 = &min_sched_granularity_ns,
246 .extra2 = &max_sched_granularity_ns,
249 .ctl_name = CTL_UNNUMBERED,
250 .procname = "sched_latency_ns",
251 .data = &sysctl_sched_latency,
252 .maxlen = sizeof(unsigned int),
254 .proc_handler = &sched_nr_latency_handler,
255 .strategy = &sysctl_intvec,
256 .extra1 = &min_sched_granularity_ns,
257 .extra2 = &max_sched_granularity_ns,
260 .ctl_name = CTL_UNNUMBERED,
261 .procname = "sched_wakeup_granularity_ns",
262 .data = &sysctl_sched_wakeup_granularity,
263 .maxlen = sizeof(unsigned int),
265 .proc_handler = &proc_dointvec_minmax,
266 .strategy = &sysctl_intvec,
267 .extra1 = &min_wakeup_granularity_ns,
268 .extra2 = &max_wakeup_granularity_ns,
271 .ctl_name = CTL_UNNUMBERED,
272 .procname = "sched_batch_wakeup_granularity_ns",
273 .data = &sysctl_sched_batch_wakeup_granularity,
274 .maxlen = sizeof(unsigned int),
276 .proc_handler = &proc_dointvec_minmax,
277 .strategy = &sysctl_intvec,
278 .extra1 = &min_wakeup_granularity_ns,
279 .extra2 = &max_wakeup_granularity_ns,
282 .ctl_name = CTL_UNNUMBERED,
283 .procname = "sched_child_runs_first",
284 .data = &sysctl_sched_child_runs_first,
285 .maxlen = sizeof(unsigned int),
287 .proc_handler = &proc_dointvec,
290 .ctl_name = CTL_UNNUMBERED,
291 .procname = "sched_features",
292 .data = &sysctl_sched_features,
293 .maxlen = sizeof(unsigned int),
295 .proc_handler = &proc_dointvec,
298 .ctl_name = CTL_UNNUMBERED,
299 .procname = "sched_migration_cost",
300 .data = &sysctl_sched_migration_cost,
301 .maxlen = sizeof(unsigned int),
303 .proc_handler = &proc_dointvec,
306 .ctl_name = CTL_UNNUMBERED,
307 .procname = "sched_nr_migrate",
308 .data = &sysctl_sched_nr_migrate,
309 .maxlen = sizeof(unsigned int),
311 .proc_handler = &proc_dointvec,
314 .ctl_name = CTL_UNNUMBERED,
315 .procname = "sched_rt_period_ms",
316 .data = &sysctl_sched_rt_period,
317 .maxlen = sizeof(unsigned int),
319 .proc_handler = &proc_dointvec,
322 .ctl_name = CTL_UNNUMBERED,
323 .procname = "sched_rt_ratio",
324 .data = &sysctl_sched_rt_ratio,
325 .maxlen = sizeof(unsigned int),
327 .proc_handler = &proc_dointvec,
329 #if defined(CONFIG_FAIR_GROUP_SCHED) && defined(CONFIG_SMP)
331 .ctl_name = CTL_UNNUMBERED,
332 .procname = "sched_min_bal_int_shares",
333 .data = &sysctl_sched_min_bal_int_shares,
334 .maxlen = sizeof(unsigned int),
336 .proc_handler = &proc_dointvec,
339 .ctl_name = CTL_UNNUMBERED,
340 .procname = "sched_max_bal_int_shares",
341 .data = &sysctl_sched_max_bal_int_shares,
342 .maxlen = sizeof(unsigned int),
344 .proc_handler = &proc_dointvec,
349 .ctl_name = CTL_UNNUMBERED,
350 .procname = "sched_compat_yield",
351 .data = &sysctl_sched_compat_yield,
352 .maxlen = sizeof(unsigned int),
354 .proc_handler = &proc_dointvec,
356 #ifdef CONFIG_PROVE_LOCKING
358 .ctl_name = CTL_UNNUMBERED,
359 .procname = "prove_locking",
360 .data = &prove_locking,
361 .maxlen = sizeof(int),
363 .proc_handler = &proc_dointvec,
366 #ifdef CONFIG_LOCK_STAT
368 .ctl_name = CTL_UNNUMBERED,
369 .procname = "lock_stat",
371 .maxlen = sizeof(int),
373 .proc_handler = &proc_dointvec,
377 .ctl_name = KERN_PANIC,
379 .data = &panic_timeout,
380 .maxlen = sizeof(int),
382 .proc_handler = &proc_dointvec,
385 .ctl_name = KERN_CORE_USES_PID,
386 .procname = "core_uses_pid",
387 .data = &core_uses_pid,
388 .maxlen = sizeof(int),
390 .proc_handler = &proc_dointvec,
392 #ifdef CONFIG_AUDITSYSCALL
394 .ctl_name = CTL_UNNUMBERED,
395 .procname = "audit_argv_kb",
396 .data = &audit_argv_kb,
397 .maxlen = sizeof(int),
399 .proc_handler = &proc_dointvec,
403 .ctl_name = KERN_CORE_PATTERN,
404 .procname = "core_pattern",
405 .data = core_pattern,
406 .maxlen = CORENAME_MAX_SIZE,
408 .proc_handler = &proc_dostring,
409 .strategy = &sysctl_string,
411 #ifdef CONFIG_PROC_SYSCTL
413 .procname = "tainted",
415 .maxlen = sizeof(int),
417 .proc_handler = &proc_dointvec_taint,
420 #ifdef CONFIG_LATENCYTOP
422 .procname = "latencytop",
423 .data = &latencytop_enabled,
424 .maxlen = sizeof(int),
426 .proc_handler = &proc_dointvec,
429 #ifdef CONFIG_SECURITY_CAPABILITIES
431 .procname = "cap-bound",
433 .maxlen = sizeof(kernel_cap_t),
435 .proc_handler = &proc_dointvec_bset,
437 #endif /* def CONFIG_SECURITY_CAPABILITIES */
438 #ifdef CONFIG_BLK_DEV_INITRD
440 .ctl_name = KERN_REALROOTDEV,
441 .procname = "real-root-dev",
442 .data = &real_root_dev,
443 .maxlen = sizeof(int),
445 .proc_handler = &proc_dointvec,
449 .ctl_name = CTL_UNNUMBERED,
450 .procname = "print-fatal-signals",
451 .data = &print_fatal_signals,
452 .maxlen = sizeof(int),
454 .proc_handler = &proc_dointvec,
458 .ctl_name = KERN_SPARC_REBOOT,
459 .procname = "reboot-cmd",
460 .data = reboot_command,
463 .proc_handler = &proc_dostring,
464 .strategy = &sysctl_string,
467 .ctl_name = KERN_SPARC_STOP_A,
468 .procname = "stop-a",
469 .data = &stop_a_enabled,
470 .maxlen = sizeof (int),
472 .proc_handler = &proc_dointvec,
475 .ctl_name = KERN_SPARC_SCONS_PWROFF,
476 .procname = "scons-poweroff",
477 .data = &scons_pwroff,
478 .maxlen = sizeof (int),
480 .proc_handler = &proc_dointvec,
485 .ctl_name = KERN_HPPA_PWRSW,
486 .procname = "soft-power",
487 .data = &pwrsw_enabled,
488 .maxlen = sizeof (int),
490 .proc_handler = &proc_dointvec,
493 .ctl_name = KERN_HPPA_UNALIGNED,
494 .procname = "unaligned-trap",
495 .data = &unaligned_enabled,
496 .maxlen = sizeof (int),
498 .proc_handler = &proc_dointvec,
502 .ctl_name = KERN_CTLALTDEL,
503 .procname = "ctrl-alt-del",
505 .maxlen = sizeof(int),
507 .proc_handler = &proc_dointvec,
510 .ctl_name = KERN_PRINTK,
511 .procname = "printk",
512 .data = &console_loglevel,
513 .maxlen = 4*sizeof(int),
515 .proc_handler = &proc_dointvec,
519 .ctl_name = KERN_MODPROBE,
520 .procname = "modprobe",
521 .data = &modprobe_path,
522 .maxlen = KMOD_PATH_LEN,
524 .proc_handler = &proc_dostring,
525 .strategy = &sysctl_string,
528 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
530 .ctl_name = KERN_HOTPLUG,
531 .procname = "hotplug",
532 .data = &uevent_helper,
533 .maxlen = UEVENT_HELPER_PATH_LEN,
535 .proc_handler = &proc_dostring,
536 .strategy = &sysctl_string,
539 #ifdef CONFIG_CHR_DEV_SG
541 .ctl_name = KERN_SG_BIG_BUFF,
542 .procname = "sg-big-buff",
543 .data = &sg_big_buff,
544 .maxlen = sizeof (int),
546 .proc_handler = &proc_dointvec,
549 #ifdef CONFIG_BSD_PROCESS_ACCT
551 .ctl_name = KERN_ACCT,
554 .maxlen = 3*sizeof(int),
556 .proc_handler = &proc_dointvec,
559 #ifdef CONFIG_MAGIC_SYSRQ
561 .ctl_name = KERN_SYSRQ,
563 .data = &__sysrq_enabled,
564 .maxlen = sizeof (int),
566 .proc_handler = &proc_dointvec,
569 #ifdef CONFIG_PROC_SYSCTL
571 .procname = "cad_pid",
573 .maxlen = sizeof (int),
575 .proc_handler = &proc_do_cad_pid,
579 .ctl_name = KERN_MAX_THREADS,
580 .procname = "threads-max",
581 .data = &max_threads,
582 .maxlen = sizeof(int),
584 .proc_handler = &proc_dointvec,
587 .ctl_name = KERN_RANDOM,
588 .procname = "random",
590 .child = random_table,
593 .ctl_name = KERN_OVERFLOWUID,
594 .procname = "overflowuid",
595 .data = &overflowuid,
596 .maxlen = sizeof(int),
598 .proc_handler = &proc_dointvec_minmax,
599 .strategy = &sysctl_intvec,
600 .extra1 = &minolduid,
601 .extra2 = &maxolduid,
604 .ctl_name = KERN_OVERFLOWGID,
605 .procname = "overflowgid",
606 .data = &overflowgid,
607 .maxlen = sizeof(int),
609 .proc_handler = &proc_dointvec_minmax,
610 .strategy = &sysctl_intvec,
611 .extra1 = &minolduid,
612 .extra2 = &maxolduid,
615 #ifdef CONFIG_MATHEMU
617 .ctl_name = KERN_IEEE_EMULATION_WARNINGS,
618 .procname = "ieee_emulation_warnings",
619 .data = &sysctl_ieee_emulation_warnings,
620 .maxlen = sizeof(int),
622 .proc_handler = &proc_dointvec,
625 #ifdef CONFIG_NO_IDLE_HZ
627 .ctl_name = KERN_HZ_TIMER,
628 .procname = "hz_timer",
629 .data = &sysctl_hz_timer,
630 .maxlen = sizeof(int),
632 .proc_handler = &proc_dointvec,
636 .ctl_name = KERN_S390_USER_DEBUG_LOGGING,
637 .procname = "userprocess_debug",
638 .data = &sysctl_userprocess_debug,
639 .maxlen = sizeof(int),
641 .proc_handler = &proc_dointvec,
645 .ctl_name = KERN_PIDMAX,
646 .procname = "pid_max",
648 .maxlen = sizeof (int),
650 .proc_handler = &proc_dointvec_minmax,
651 .strategy = sysctl_intvec,
652 .extra1 = &pid_max_min,
653 .extra2 = &pid_max_max,
656 .ctl_name = KERN_PANIC_ON_OOPS,
657 .procname = "panic_on_oops",
658 .data = &panic_on_oops,
659 .maxlen = sizeof(int),
661 .proc_handler = &proc_dointvec,
664 .ctl_name = KERN_PRINTK_RATELIMIT,
665 .procname = "printk_ratelimit",
666 .data = &printk_ratelimit_jiffies,
667 .maxlen = sizeof(int),
669 .proc_handler = &proc_dointvec_jiffies,
670 .strategy = &sysctl_jiffies,
673 .ctl_name = KERN_PRINTK_RATELIMIT_BURST,
674 .procname = "printk_ratelimit_burst",
675 .data = &printk_ratelimit_burst,
676 .maxlen = sizeof(int),
678 .proc_handler = &proc_dointvec,
681 .ctl_name = KERN_NGROUPS_MAX,
682 .procname = "ngroups_max",
683 .data = &ngroups_max,
684 .maxlen = sizeof (int),
686 .proc_handler = &proc_dointvec,
688 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
690 .ctl_name = KERN_UNKNOWN_NMI_PANIC,
691 .procname = "unknown_nmi_panic",
692 .data = &unknown_nmi_panic,
693 .maxlen = sizeof (int),
695 .proc_handler = &proc_dointvec,
698 .procname = "nmi_watchdog",
699 .data = &nmi_watchdog_enabled,
700 .maxlen = sizeof (int),
702 .proc_handler = &proc_nmi_enabled,
705 #if defined(CONFIG_X86)
707 .ctl_name = KERN_PANIC_ON_NMI,
708 .procname = "panic_on_unrecovered_nmi",
709 .data = &panic_on_unrecovered_nmi,
710 .maxlen = sizeof(int),
712 .proc_handler = &proc_dointvec,
715 .ctl_name = KERN_BOOTLOADER_TYPE,
716 .procname = "bootloader_type",
717 .data = &bootloader_type,
718 .maxlen = sizeof (int),
720 .proc_handler = &proc_dointvec,
723 .ctl_name = CTL_UNNUMBERED,
724 .procname = "kstack_depth_to_print",
725 .data = &kstack_depth_to_print,
726 .maxlen = sizeof(int),
728 .proc_handler = &proc_dointvec,
731 #if defined(CONFIG_MMU)
733 .ctl_name = KERN_RANDOMIZE,
734 .procname = "randomize_va_space",
735 .data = &randomize_va_space,
736 .maxlen = sizeof(int),
738 .proc_handler = &proc_dointvec,
741 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
743 .ctl_name = KERN_SPIN_RETRY,
744 .procname = "spin_retry",
746 .maxlen = sizeof (int),
748 .proc_handler = &proc_dointvec,
751 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
753 .procname = "acpi_video_flags",
754 .data = &acpi_realmode_flags,
755 .maxlen = sizeof (unsigned long),
757 .proc_handler = &proc_doulongvec_minmax,
762 .ctl_name = KERN_IA64_UNALIGNED,
763 .procname = "ignore-unaligned-usertrap",
764 .data = &no_unaligned_warning,
765 .maxlen = sizeof (int),
767 .proc_handler = &proc_dointvec,
770 #ifdef CONFIG_DETECT_SOFTLOCKUP
772 .ctl_name = CTL_UNNUMBERED,
773 .procname = "softlockup_thresh",
774 .data = &softlockup_thresh,
775 .maxlen = sizeof(unsigned long),
777 .proc_handler = &proc_doulongvec_minmax,
778 .strategy = &sysctl_intvec,
783 .ctl_name = CTL_UNNUMBERED,
784 .procname = "hung_task_check_count",
785 .data = &sysctl_hung_task_check_count,
786 .maxlen = sizeof(unsigned long),
788 .proc_handler = &proc_doulongvec_minmax,
789 .strategy = &sysctl_intvec,
792 .ctl_name = CTL_UNNUMBERED,
793 .procname = "hung_task_timeout_secs",
794 .data = &sysctl_hung_task_timeout_secs,
795 .maxlen = sizeof(unsigned long),
797 .proc_handler = &proc_doulongvec_minmax,
798 .strategy = &sysctl_intvec,
801 .ctl_name = CTL_UNNUMBERED,
802 .procname = "hung_task_warnings",
803 .data = &sysctl_hung_task_warnings,
804 .maxlen = sizeof(unsigned long),
806 .proc_handler = &proc_doulongvec_minmax,
807 .strategy = &sysctl_intvec,
812 .ctl_name = KERN_COMPAT_LOG,
813 .procname = "compat-log",
815 .maxlen = sizeof (int),
817 .proc_handler = &proc_dointvec,
820 #ifdef CONFIG_RT_MUTEXES
822 .ctl_name = KERN_MAX_LOCK_DEPTH,
823 .procname = "max_lock_depth",
824 .data = &max_lock_depth,
825 .maxlen = sizeof(int),
827 .proc_handler = &proc_dointvec,
830 #ifdef CONFIG_PROC_FS
832 .ctl_name = CTL_UNNUMBERED,
833 .procname = "maps_protect",
834 .data = &maps_protect,
835 .maxlen = sizeof(int),
837 .proc_handler = &proc_dointvec,
841 .ctl_name = CTL_UNNUMBERED,
842 .procname = "poweroff_cmd",
843 .data = &poweroff_cmd,
844 .maxlen = POWEROFF_CMD_PATH_LEN,
846 .proc_handler = &proc_dostring,
847 .strategy = &sysctl_string,
850 * NOTE: do not add new entries to this table unless you have read
851 * Documentation/sysctl/ctl_unnumbered.txt
856 static struct ctl_table vm_table[] = {
858 .ctl_name = VM_OVERCOMMIT_MEMORY,
859 .procname = "overcommit_memory",
860 .data = &sysctl_overcommit_memory,
861 .maxlen = sizeof(sysctl_overcommit_memory),
863 .proc_handler = &proc_dointvec,
866 .ctl_name = VM_PANIC_ON_OOM,
867 .procname = "panic_on_oom",
868 .data = &sysctl_panic_on_oom,
869 .maxlen = sizeof(sysctl_panic_on_oom),
871 .proc_handler = &proc_dointvec,
874 .ctl_name = CTL_UNNUMBERED,
875 .procname = "oom_kill_allocating_task",
876 .data = &sysctl_oom_kill_allocating_task,
877 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
879 .proc_handler = &proc_dointvec,
882 .ctl_name = VM_OVERCOMMIT_RATIO,
883 .procname = "overcommit_ratio",
884 .data = &sysctl_overcommit_ratio,
885 .maxlen = sizeof(sysctl_overcommit_ratio),
887 .proc_handler = &proc_dointvec,
890 .ctl_name = VM_PAGE_CLUSTER,
891 .procname = "page-cluster",
892 .data = &page_cluster,
893 .maxlen = sizeof(int),
895 .proc_handler = &proc_dointvec,
898 .ctl_name = VM_DIRTY_BACKGROUND,
899 .procname = "dirty_background_ratio",
900 .data = &dirty_background_ratio,
901 .maxlen = sizeof(dirty_background_ratio),
903 .proc_handler = &proc_dointvec_minmax,
904 .strategy = &sysctl_intvec,
906 .extra2 = &one_hundred,
909 .ctl_name = VM_DIRTY_RATIO,
910 .procname = "dirty_ratio",
911 .data = &vm_dirty_ratio,
912 .maxlen = sizeof(vm_dirty_ratio),
914 .proc_handler = &dirty_ratio_handler,
915 .strategy = &sysctl_intvec,
917 .extra2 = &one_hundred,
920 .procname = "dirty_writeback_centisecs",
921 .data = &dirty_writeback_interval,
922 .maxlen = sizeof(dirty_writeback_interval),
924 .proc_handler = &dirty_writeback_centisecs_handler,
927 .procname = "dirty_expire_centisecs",
928 .data = &dirty_expire_interval,
929 .maxlen = sizeof(dirty_expire_interval),
931 .proc_handler = &proc_dointvec_userhz_jiffies,
934 .ctl_name = VM_NR_PDFLUSH_THREADS,
935 .procname = "nr_pdflush_threads",
936 .data = &nr_pdflush_threads,
937 .maxlen = sizeof nr_pdflush_threads,
938 .mode = 0444 /* read-only*/,
939 .proc_handler = &proc_dointvec,
942 .ctl_name = VM_SWAPPINESS,
943 .procname = "swappiness",
944 .data = &vm_swappiness,
945 .maxlen = sizeof(vm_swappiness),
947 .proc_handler = &proc_dointvec_minmax,
948 .strategy = &sysctl_intvec,
950 .extra2 = &one_hundred,
952 #ifdef CONFIG_HUGETLB_PAGE
954 .procname = "nr_hugepages",
955 .data = &max_huge_pages,
956 .maxlen = sizeof(unsigned long),
958 .proc_handler = &hugetlb_sysctl_handler,
959 .extra1 = (void *)&hugetlb_zero,
960 .extra2 = (void *)&hugetlb_infinity,
963 .ctl_name = VM_HUGETLB_GROUP,
964 .procname = "hugetlb_shm_group",
965 .data = &sysctl_hugetlb_shm_group,
966 .maxlen = sizeof(gid_t),
968 .proc_handler = &proc_dointvec,
971 .ctl_name = CTL_UNNUMBERED,
972 .procname = "hugepages_treat_as_movable",
973 .data = &hugepages_treat_as_movable,
974 .maxlen = sizeof(int),
976 .proc_handler = &hugetlb_treat_movable_handler,
979 .ctl_name = CTL_UNNUMBERED,
980 .procname = "nr_overcommit_hugepages",
981 .data = &nr_overcommit_huge_pages,
982 .maxlen = sizeof(nr_overcommit_huge_pages),
984 .proc_handler = &proc_doulongvec_minmax,
988 .ctl_name = VM_LOWMEM_RESERVE_RATIO,
989 .procname = "lowmem_reserve_ratio",
990 .data = &sysctl_lowmem_reserve_ratio,
991 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
993 .proc_handler = &lowmem_reserve_ratio_sysctl_handler,
994 .strategy = &sysctl_intvec,
997 .ctl_name = VM_DROP_PAGECACHE,
998 .procname = "drop_caches",
999 .data = &sysctl_drop_caches,
1000 .maxlen = sizeof(int),
1002 .proc_handler = drop_caches_sysctl_handler,
1003 .strategy = &sysctl_intvec,
1006 .ctl_name = VM_MIN_FREE_KBYTES,
1007 .procname = "min_free_kbytes",
1008 .data = &min_free_kbytes,
1009 .maxlen = sizeof(min_free_kbytes),
1011 .proc_handler = &min_free_kbytes_sysctl_handler,
1012 .strategy = &sysctl_intvec,
1016 .ctl_name = VM_PERCPU_PAGELIST_FRACTION,
1017 .procname = "percpu_pagelist_fraction",
1018 .data = &percpu_pagelist_fraction,
1019 .maxlen = sizeof(percpu_pagelist_fraction),
1021 .proc_handler = &percpu_pagelist_fraction_sysctl_handler,
1022 .strategy = &sysctl_intvec,
1023 .extra1 = &min_percpu_pagelist_fract,
1027 .ctl_name = VM_MAX_MAP_COUNT,
1028 .procname = "max_map_count",
1029 .data = &sysctl_max_map_count,
1030 .maxlen = sizeof(sysctl_max_map_count),
1032 .proc_handler = &proc_dointvec
1036 .ctl_name = VM_LAPTOP_MODE,
1037 .procname = "laptop_mode",
1038 .data = &laptop_mode,
1039 .maxlen = sizeof(laptop_mode),
1041 .proc_handler = &proc_dointvec_jiffies,
1042 .strategy = &sysctl_jiffies,
1045 .ctl_name = VM_BLOCK_DUMP,
1046 .procname = "block_dump",
1047 .data = &block_dump,
1048 .maxlen = sizeof(block_dump),
1050 .proc_handler = &proc_dointvec,
1051 .strategy = &sysctl_intvec,
1055 .ctl_name = VM_VFS_CACHE_PRESSURE,
1056 .procname = "vfs_cache_pressure",
1057 .data = &sysctl_vfs_cache_pressure,
1058 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1060 .proc_handler = &proc_dointvec,
1061 .strategy = &sysctl_intvec,
1064 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1066 .ctl_name = VM_LEGACY_VA_LAYOUT,
1067 .procname = "legacy_va_layout",
1068 .data = &sysctl_legacy_va_layout,
1069 .maxlen = sizeof(sysctl_legacy_va_layout),
1071 .proc_handler = &proc_dointvec,
1072 .strategy = &sysctl_intvec,
1078 .ctl_name = VM_ZONE_RECLAIM_MODE,
1079 .procname = "zone_reclaim_mode",
1080 .data = &zone_reclaim_mode,
1081 .maxlen = sizeof(zone_reclaim_mode),
1083 .proc_handler = &proc_dointvec,
1084 .strategy = &sysctl_intvec,
1088 .ctl_name = VM_MIN_UNMAPPED,
1089 .procname = "min_unmapped_ratio",
1090 .data = &sysctl_min_unmapped_ratio,
1091 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1093 .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler,
1094 .strategy = &sysctl_intvec,
1096 .extra2 = &one_hundred,
1099 .ctl_name = VM_MIN_SLAB,
1100 .procname = "min_slab_ratio",
1101 .data = &sysctl_min_slab_ratio,
1102 .maxlen = sizeof(sysctl_min_slab_ratio),
1104 .proc_handler = &sysctl_min_slab_ratio_sysctl_handler,
1105 .strategy = &sysctl_intvec,
1107 .extra2 = &one_hundred,
1112 .ctl_name = CTL_UNNUMBERED,
1113 .procname = "stat_interval",
1114 .data = &sysctl_stat_interval,
1115 .maxlen = sizeof(sysctl_stat_interval),
1117 .proc_handler = &proc_dointvec_jiffies,
1118 .strategy = &sysctl_jiffies,
1121 #ifdef CONFIG_SECURITY
1123 .ctl_name = CTL_UNNUMBERED,
1124 .procname = "mmap_min_addr",
1125 .data = &mmap_min_addr,
1126 .maxlen = sizeof(unsigned long),
1128 .proc_handler = &proc_doulongvec_minmax,
1133 .ctl_name = CTL_UNNUMBERED,
1134 .procname = "numa_zonelist_order",
1135 .data = &numa_zonelist_order,
1136 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1138 .proc_handler = &numa_zonelist_order_handler,
1139 .strategy = &sysctl_string,
1142 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1143 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1145 .ctl_name = VM_VDSO_ENABLED,
1146 .procname = "vdso_enabled",
1147 .data = &vdso_enabled,
1148 .maxlen = sizeof(vdso_enabled),
1150 .proc_handler = &proc_dointvec,
1151 .strategy = &sysctl_intvec,
1156 * NOTE: do not add new entries to this table unless you have read
1157 * Documentation/sysctl/ctl_unnumbered.txt
1162 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1163 static struct ctl_table binfmt_misc_table[] = {
1168 static struct ctl_table fs_table[] = {
1170 .ctl_name = FS_NRINODE,
1171 .procname = "inode-nr",
1172 .data = &inodes_stat,
1173 .maxlen = 2*sizeof(int),
1175 .proc_handler = &proc_dointvec,
1178 .ctl_name = FS_STATINODE,
1179 .procname = "inode-state",
1180 .data = &inodes_stat,
1181 .maxlen = 7*sizeof(int),
1183 .proc_handler = &proc_dointvec,
1186 .procname = "file-nr",
1187 .data = &files_stat,
1188 .maxlen = 3*sizeof(int),
1190 .proc_handler = &proc_nr_files,
1193 .ctl_name = FS_MAXFILE,
1194 .procname = "file-max",
1195 .data = &files_stat.max_files,
1196 .maxlen = sizeof(int),
1198 .proc_handler = &proc_dointvec,
1201 .ctl_name = FS_DENTRY,
1202 .procname = "dentry-state",
1203 .data = &dentry_stat,
1204 .maxlen = 6*sizeof(int),
1206 .proc_handler = &proc_dointvec,
1209 .ctl_name = FS_OVERFLOWUID,
1210 .procname = "overflowuid",
1211 .data = &fs_overflowuid,
1212 .maxlen = sizeof(int),
1214 .proc_handler = &proc_dointvec_minmax,
1215 .strategy = &sysctl_intvec,
1216 .extra1 = &minolduid,
1217 .extra2 = &maxolduid,
1220 .ctl_name = FS_OVERFLOWGID,
1221 .procname = "overflowgid",
1222 .data = &fs_overflowgid,
1223 .maxlen = sizeof(int),
1225 .proc_handler = &proc_dointvec_minmax,
1226 .strategy = &sysctl_intvec,
1227 .extra1 = &minolduid,
1228 .extra2 = &maxolduid,
1231 .ctl_name = FS_LEASES,
1232 .procname = "leases-enable",
1233 .data = &leases_enable,
1234 .maxlen = sizeof(int),
1236 .proc_handler = &proc_dointvec,
1238 #ifdef CONFIG_DNOTIFY
1240 .ctl_name = FS_DIR_NOTIFY,
1241 .procname = "dir-notify-enable",
1242 .data = &dir_notify_enable,
1243 .maxlen = sizeof(int),
1245 .proc_handler = &proc_dointvec,
1250 .ctl_name = FS_LEASE_TIME,
1251 .procname = "lease-break-time",
1252 .data = &lease_break_time,
1253 .maxlen = sizeof(int),
1255 .proc_handler = &proc_dointvec_minmax,
1256 .strategy = &sysctl_intvec,
1261 .procname = "aio-nr",
1263 .maxlen = sizeof(aio_nr),
1265 .proc_handler = &proc_doulongvec_minmax,
1268 .procname = "aio-max-nr",
1269 .data = &aio_max_nr,
1270 .maxlen = sizeof(aio_max_nr),
1272 .proc_handler = &proc_doulongvec_minmax,
1274 #ifdef CONFIG_INOTIFY_USER
1276 .ctl_name = FS_INOTIFY,
1277 .procname = "inotify",
1279 .child = inotify_table,
1284 .ctl_name = KERN_SETUID_DUMPABLE,
1285 .procname = "suid_dumpable",
1286 .data = &suid_dumpable,
1287 .maxlen = sizeof(int),
1289 .proc_handler = &proc_dointvec,
1291 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1293 .ctl_name = CTL_UNNUMBERED,
1294 .procname = "binfmt_misc",
1296 .child = binfmt_misc_table,
1300 * NOTE: do not add new entries to this table unless you have read
1301 * Documentation/sysctl/ctl_unnumbered.txt
1306 static struct ctl_table debug_table[] = {
1307 #if defined(CONFIG_X86) || defined(CONFIG_PPC)
1309 .ctl_name = CTL_UNNUMBERED,
1310 .procname = "exception-trace",
1311 .data = &show_unhandled_signals,
1312 .maxlen = sizeof(int),
1314 .proc_handler = proc_dointvec
1320 static struct ctl_table dev_table[] = {
1324 static DEFINE_SPINLOCK(sysctl_lock);
1326 /* called under sysctl_lock */
1327 static int use_table(struct ctl_table_header *p)
1329 if (unlikely(p->unregistering))
1335 /* called under sysctl_lock */
1336 static void unuse_table(struct ctl_table_header *p)
1339 if (unlikely(p->unregistering))
1340 complete(p->unregistering);
1343 /* called under sysctl_lock, will reacquire if has to wait */
1344 static void start_unregistering(struct ctl_table_header *p)
1347 * if p->used is 0, nobody will ever touch that entry again;
1348 * we'll eliminate all paths to it before dropping sysctl_lock
1350 if (unlikely(p->used)) {
1351 struct completion wait;
1352 init_completion(&wait);
1353 p->unregistering = &wait;
1354 spin_unlock(&sysctl_lock);
1355 wait_for_completion(&wait);
1356 spin_lock(&sysctl_lock);
1359 * do not remove from the list until nobody holds it; walking the
1360 * list in do_sysctl() relies on that.
1362 list_del_init(&p->ctl_entry);
1365 void sysctl_head_finish(struct ctl_table_header *head)
1369 spin_lock(&sysctl_lock);
1371 spin_unlock(&sysctl_lock);
1374 static struct list_head *
1375 lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
1377 struct list_head *header_list;
1378 header_list = &root->header_list;
1380 header_list = root->lookup(root, namespaces);
1384 struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1385 struct ctl_table_header *prev)
1387 struct ctl_table_root *root;
1388 struct list_head *header_list;
1389 struct ctl_table_header *head;
1390 struct list_head *tmp;
1392 spin_lock(&sysctl_lock);
1395 tmp = &prev->ctl_entry;
1399 tmp = &root_table_header.ctl_entry;
1401 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1403 if (!use_table(head))
1405 spin_unlock(&sysctl_lock);
1410 header_list = lookup_header_list(root, namespaces);
1411 if (tmp != header_list)
1415 root = list_entry(root->root_list.next,
1416 struct ctl_table_root, root_list);
1417 if (root == &sysctl_table_root)
1419 header_list = lookup_header_list(root, namespaces);
1420 } while (list_empty(header_list));
1421 tmp = header_list->next;
1424 spin_unlock(&sysctl_lock);
1428 struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1430 return __sysctl_head_next(current->nsproxy, prev);
1433 void register_sysctl_root(struct ctl_table_root *root)
1435 spin_lock(&sysctl_lock);
1436 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1437 spin_unlock(&sysctl_lock);
1440 #ifdef CONFIG_SYSCTL_SYSCALL
1441 int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
1442 void __user *newval, size_t newlen)
1444 struct ctl_table_header *head;
1445 int error = -ENOTDIR;
1447 if (nlen <= 0 || nlen >= CTL_MAXNAME)
1451 if (!oldlenp || get_user(old_len, oldlenp))
1455 for (head = sysctl_head_next(NULL); head;
1456 head = sysctl_head_next(head)) {
1457 error = parse_table(name, nlen, oldval, oldlenp,
1458 newval, newlen, head->ctl_table);
1459 if (error != -ENOTDIR) {
1460 sysctl_head_finish(head);
1467 asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
1469 struct __sysctl_args tmp;
1472 if (copy_from_user(&tmp, args, sizeof(tmp)))
1475 error = deprecated_sysctl_warning(&tmp);
1480 error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
1481 tmp.newval, tmp.newlen);
1486 #endif /* CONFIG_SYSCTL_SYSCALL */
1489 * sysctl_perm does NOT grant the superuser all rights automatically, because
1490 * some sysctl variables are readonly even to root.
1493 static int test_perm(int mode, int op)
1497 else if (in_egroup_p(0))
1499 if ((mode & op & 0007) == op)
1504 int sysctl_perm(struct ctl_table *table, int op)
1507 error = security_sysctl(table, op);
1510 return test_perm(table->mode, op);
1513 #ifdef CONFIG_SYSCTL_SYSCALL
1514 static int parse_table(int __user *name, int nlen,
1515 void __user *oldval, size_t __user *oldlenp,
1516 void __user *newval, size_t newlen,
1517 struct ctl_table *table)
1523 if (get_user(n, name))
1525 for ( ; table->ctl_name || table->procname; table++) {
1526 if (!table->ctl_name)
1528 if (n == table->ctl_name) {
1531 if (sysctl_perm(table, 001))
1535 table = table->child;
1538 error = do_sysctl_strategy(table, name, nlen,
1547 /* Perform the actual read/write of a sysctl table entry. */
1548 int do_sysctl_strategy (struct ctl_table *table,
1549 int __user *name, int nlen,
1550 void __user *oldval, size_t __user *oldlenp,
1551 void __user *newval, size_t newlen)
1559 if (sysctl_perm(table, op))
1562 if (table->strategy) {
1563 rc = table->strategy(table, name, nlen, oldval, oldlenp,
1571 /* If there is no strategy routine, or if the strategy returns
1572 * zero, proceed with automatic r/w */
1573 if (table->data && table->maxlen) {
1574 rc = sysctl_data(table, name, nlen, oldval, oldlenp,
1581 #endif /* CONFIG_SYSCTL_SYSCALL */
1583 static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1585 for (; table->ctl_name || table->procname; table++) {
1586 table->parent = parent;
1588 sysctl_set_parent(table, table->child);
1592 static __init int sysctl_init(void)
1595 sysctl_set_parent(NULL, root_table);
1596 err = sysctl_check_table(current->nsproxy, root_table);
1600 core_initcall(sysctl_init);
1603 * __register_sysctl_paths - register a sysctl hierarchy
1604 * @root: List of sysctl headers to register on
1605 * @namespaces: Data to compute which lists of sysctl entries are visible
1606 * @path: The path to the directory the sysctl table is in.
1607 * @table: the top-level table structure
1609 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1610 * array. A completely 0 filled entry terminates the table.
1612 * The members of the &struct ctl_table structure are used as follows:
1614 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1615 * must be unique within that level of sysctl
1617 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1618 * enter a sysctl file
1620 * data - a pointer to data for use by proc_handler
1622 * maxlen - the maximum size in bytes of the data
1624 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1626 * child - a pointer to the child sysctl table if this entry is a directory, or
1629 * proc_handler - the text handler routine (described below)
1631 * strategy - the strategy routine (described below)
1633 * de - for internal use by the sysctl routines
1635 * extra1, extra2 - extra pointers usable by the proc handler routines
1637 * Leaf nodes in the sysctl tree will be represented by a single file
1638 * under /proc; non-leaf nodes will be represented by directories.
1640 * sysctl(2) can automatically manage read and write requests through
1641 * the sysctl table. The data and maxlen fields of the ctl_table
1642 * struct enable minimal validation of the values being written to be
1643 * performed, and the mode field allows minimal authentication.
1645 * More sophisticated management can be enabled by the provision of a
1646 * strategy routine with the table entry. This will be called before
1647 * any automatic read or write of the data is performed.
1649 * The strategy routine may return
1651 * < 0 - Error occurred (error is passed to user process)
1653 * 0 - OK - proceed with automatic read or write.
1655 * > 0 - OK - read or write has been done by the strategy routine, so
1656 * return immediately.
1658 * There must be a proc_handler routine for any terminal nodes
1659 * mirrored under /proc/sys (non-terminals are handled by a built-in
1660 * directory handler). Several default handlers are available to
1661 * cover common cases -
1663 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1664 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1665 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1667 * It is the handler's job to read the input buffer from user memory
1668 * and process it. The handler should return 0 on success.
1670 * This routine returns %NULL on a failure to register, and a pointer
1671 * to the table header on success.
1673 struct ctl_table_header *__register_sysctl_paths(
1674 struct ctl_table_root *root,
1675 struct nsproxy *namespaces,
1676 const struct ctl_path *path, struct ctl_table *table)
1678 struct list_head *header_list;
1679 struct ctl_table_header *header;
1680 struct ctl_table *new, **prevp;
1681 unsigned int n, npath;
1683 /* Count the path components */
1684 for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath)
1688 * For each path component, allocate a 2-element ctl_table array.
1689 * The first array element will be filled with the sysctl entry
1690 * for this, the second will be the sentinel (ctl_name == 0).
1692 * We allocate everything in one go so that we don't have to
1693 * worry about freeing additional memory in unregister_sysctl_table.
1695 header = kzalloc(sizeof(struct ctl_table_header) +
1696 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1700 new = (struct ctl_table *) (header + 1);
1702 /* Now connect the dots */
1703 prevp = &header->ctl_table;
1704 for (n = 0; n < npath; ++n, ++path) {
1705 /* Copy the procname */
1706 new->procname = path->procname;
1707 new->ctl_name = path->ctl_name;
1711 prevp = &new->child;
1716 header->ctl_table_arg = table;
1718 INIT_LIST_HEAD(&header->ctl_entry);
1720 header->unregistering = NULL;
1721 header->root = root;
1722 sysctl_set_parent(NULL, header->ctl_table);
1723 if (sysctl_check_table(namespaces, header->ctl_table)) {
1727 spin_lock(&sysctl_lock);
1728 header_list = lookup_header_list(root, namespaces);
1729 list_add_tail(&header->ctl_entry, header_list);
1730 spin_unlock(&sysctl_lock);
1736 * register_sysctl_table_path - register a sysctl table hierarchy
1737 * @path: The path to the directory the sysctl table is in.
1738 * @table: the top-level table structure
1740 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1741 * array. A completely 0 filled entry terminates the table.
1743 * See __register_sysctl_paths for more details.
1745 struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1746 struct ctl_table *table)
1748 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1753 * register_sysctl_table - register a sysctl table hierarchy
1754 * @table: the top-level table structure
1756 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1757 * array. A completely 0 filled entry terminates the table.
1759 * See register_sysctl_paths for more details.
1761 struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1763 static const struct ctl_path null_path[] = { {} };
1765 return register_sysctl_paths(null_path, table);
1769 * unregister_sysctl_table - unregister a sysctl table hierarchy
1770 * @header: the header returned from register_sysctl_table
1772 * Unregisters the sysctl table and all children. proc entries may not
1773 * actually be removed until they are no longer used by anyone.
1775 void unregister_sysctl_table(struct ctl_table_header * header)
1782 spin_lock(&sysctl_lock);
1783 start_unregistering(header);
1784 spin_unlock(&sysctl_lock);
1788 #else /* !CONFIG_SYSCTL */
1789 struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
1794 struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1795 struct ctl_table *table)
1800 void unregister_sysctl_table(struct ctl_table_header * table)
1804 #endif /* CONFIG_SYSCTL */
1810 #ifdef CONFIG_PROC_SYSCTL
1812 static int _proc_do_string(void* data, int maxlen, int write,
1813 struct file *filp, void __user *buffer,
1814 size_t *lenp, loff_t *ppos)
1820 if (!data || !maxlen || !*lenp) {
1828 while (len < *lenp) {
1829 if (get_user(c, p++))
1831 if (c == 0 || c == '\n')
1837 if(copy_from_user(data, buffer, len))
1839 ((char *) data)[len] = 0;
1857 if(copy_to_user(buffer, data, len))
1860 if(put_user('\n', ((char __user *) buffer) + len))
1871 * proc_dostring - read a string sysctl
1872 * @table: the sysctl table
1873 * @write: %TRUE if this is a write to the sysctl file
1874 * @filp: the file structure
1875 * @buffer: the user buffer
1876 * @lenp: the size of the user buffer
1877 * @ppos: file position
1879 * Reads/writes a string from/to the user buffer. If the kernel
1880 * buffer provided is not large enough to hold the string, the
1881 * string is truncated. The copied string is %NULL-terminated.
1882 * If the string is being read by the user process, it is copied
1883 * and a newline '\n' is added. It is truncated if the buffer is
1886 * Returns 0 on success.
1888 int proc_dostring(struct ctl_table *table, int write, struct file *filp,
1889 void __user *buffer, size_t *lenp, loff_t *ppos)
1891 return _proc_do_string(table->data, table->maxlen, write, filp,
1892 buffer, lenp, ppos);
1896 static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
1898 int write, void *data)
1901 *valp = *negp ? -*lvalp : *lvalp;
1906 *lvalp = (unsigned long)-val;
1909 *lvalp = (unsigned long)val;
1915 static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
1916 int write, struct file *filp, void __user *buffer,
1917 size_t *lenp, loff_t *ppos,
1918 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
1919 int write, void *data),
1922 #define TMPBUFLEN 21
1923 int *i, vleft, first=1, neg, val;
1927 char buf[TMPBUFLEN], *p;
1928 char __user *s = buffer;
1930 if (!tbl_data || !table->maxlen || !*lenp ||
1931 (*ppos && !write)) {
1936 i = (int *) tbl_data;
1937 vleft = table->maxlen / sizeof(*i);
1941 conv = do_proc_dointvec_conv;
1943 for (; left && vleft--; i++, first=0) {
1958 if (len > sizeof(buf) - 1)
1959 len = sizeof(buf) - 1;
1960 if (copy_from_user(buf, s, len))
1964 if (*p == '-' && left > 1) {
1968 if (*p < '0' || *p > '9')
1971 lval = simple_strtoul(p, &p, 0);
1974 if ((len < left) && *p && !isspace(*p))
1981 if (conv(&neg, &lval, i, 1, data))
1988 if (conv(&neg, &lval, i, 0, data))
1991 sprintf(p, "%s%lu", neg ? "-" : "", lval);
1995 if(copy_to_user(s, buf, len))
2002 if (!write && !first && left) {
2003 if(put_user('\n', s))
2010 if (get_user(c, s++))
2025 static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp,
2026 void __user *buffer, size_t *lenp, loff_t *ppos,
2027 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2028 int write, void *data),
2031 return __do_proc_dointvec(table->data, table, write, filp,
2032 buffer, lenp, ppos, conv, data);
2036 * proc_dointvec - read a vector of integers
2037 * @table: the sysctl table
2038 * @write: %TRUE if this is a write to the sysctl file
2039 * @filp: the file structure
2040 * @buffer: the user buffer
2041 * @lenp: the size of the user buffer
2042 * @ppos: file position
2044 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2045 * values from/to the user buffer, treated as an ASCII string.
2047 * Returns 0 on success.
2049 int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
2050 void __user *buffer, size_t *lenp, loff_t *ppos)
2052 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2060 static int do_proc_dointvec_bset_conv(int *negp, unsigned long *lvalp,
2062 int write, void *data)
2064 int op = *(int *)data;
2066 int val = *negp ? -*lvalp : *lvalp;
2068 case OP_SET: *valp = val; break;
2069 case OP_AND: *valp &= val; break;
2070 case OP_OR: *valp |= val; break;
2076 *lvalp = (unsigned long)-val;
2079 *lvalp = (unsigned long)val;
2085 #ifdef CONFIG_SECURITY_CAPABILITIES
2087 * init may raise the set.
2090 int proc_dointvec_bset(struct ctl_table *table, int write, struct file *filp,
2091 void __user *buffer, size_t *lenp, loff_t *ppos)
2095 if (write && !capable(CAP_SYS_MODULE)) {
2099 op = is_global_init(current) ? OP_SET : OP_AND;
2100 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2101 do_proc_dointvec_bset_conv,&op);
2103 #endif /* def CONFIG_SECURITY_CAPABILITIES */
2106 * Taint values can only be increased
2108 static int proc_dointvec_taint(struct ctl_table *table, int write, struct file *filp,
2109 void __user *buffer, size_t *lenp, loff_t *ppos)
2113 if (write && !capable(CAP_SYS_ADMIN))
2117 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2118 do_proc_dointvec_bset_conv,&op);
2121 struct do_proc_dointvec_minmax_conv_param {
2126 static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2128 int write, void *data)
2130 struct do_proc_dointvec_minmax_conv_param *param = data;
2132 int val = *negp ? -*lvalp : *lvalp;
2133 if ((param->min && *param->min > val) ||
2134 (param->max && *param->max < val))
2141 *lvalp = (unsigned long)-val;
2144 *lvalp = (unsigned long)val;
2151 * proc_dointvec_minmax - read a vector of integers with min/max values
2152 * @table: the sysctl table
2153 * @write: %TRUE if this is a write to the sysctl file
2154 * @filp: the file structure
2155 * @buffer: the user buffer
2156 * @lenp: the size of the user buffer
2157 * @ppos: file position
2159 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2160 * values from/to the user buffer, treated as an ASCII string.
2162 * This routine will ensure the values are within the range specified by
2163 * table->extra1 (min) and table->extra2 (max).
2165 * Returns 0 on success.
2167 int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
2168 void __user *buffer, size_t *lenp, loff_t *ppos)
2170 struct do_proc_dointvec_minmax_conv_param param = {
2171 .min = (int *) table->extra1,
2172 .max = (int *) table->extra2,
2174 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2175 do_proc_dointvec_minmax_conv, ¶m);
2178 static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
2180 void __user *buffer,
2181 size_t *lenp, loff_t *ppos,
2182 unsigned long convmul,
2183 unsigned long convdiv)
2185 #define TMPBUFLEN 21
2186 unsigned long *i, *min, *max, val;
2187 int vleft, first=1, neg;
2189 char buf[TMPBUFLEN], *p;
2190 char __user *s = buffer;
2192 if (!data || !table->maxlen || !*lenp ||
2193 (*ppos && !write)) {
2198 i = (unsigned long *) data;
2199 min = (unsigned long *) table->extra1;
2200 max = (unsigned long *) table->extra2;
2201 vleft = table->maxlen / sizeof(unsigned long);
2204 for (; left && vleft--; i++, min++, max++, first=0) {
2219 if (len > TMPBUFLEN-1)
2221 if (copy_from_user(buf, s, len))
2225 if (*p == '-' && left > 1) {
2229 if (*p < '0' || *p > '9')
2231 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2233 if ((len < left) && *p && !isspace(*p))
2242 if ((min && val < *min) || (max && val > *max))
2249 sprintf(p, "%lu", convdiv * (*i) / convmul);
2253 if(copy_to_user(s, buf, len))
2260 if (!write && !first && left) {
2261 if(put_user('\n', s))
2268 if (get_user(c, s++))
2283 static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
2285 void __user *buffer,
2286 size_t *lenp, loff_t *ppos,
2287 unsigned long convmul,
2288 unsigned long convdiv)
2290 return __do_proc_doulongvec_minmax(table->data, table, write,
2291 filp, buffer, lenp, ppos, convmul, convdiv);
2295 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2296 * @table: the sysctl table
2297 * @write: %TRUE if this is a write to the sysctl file
2298 * @filp: the file structure
2299 * @buffer: the user buffer
2300 * @lenp: the size of the user buffer
2301 * @ppos: file position
2303 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2304 * values from/to the user buffer, treated as an ASCII string.
2306 * This routine will ensure the values are within the range specified by
2307 * table->extra1 (min) and table->extra2 (max).
2309 * Returns 0 on success.
2311 int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
2312 void __user *buffer, size_t *lenp, loff_t *ppos)
2314 return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
2318 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2319 * @table: the sysctl table
2320 * @write: %TRUE if this is a write to the sysctl file
2321 * @filp: the file structure
2322 * @buffer: the user buffer
2323 * @lenp: the size of the user buffer
2324 * @ppos: file position
2326 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2327 * values from/to the user buffer, treated as an ASCII string. The values
2328 * are treated as milliseconds, and converted to jiffies when they are stored.
2330 * This routine will ensure the values are within the range specified by
2331 * table->extra1 (min) and table->extra2 (max).
2333 * Returns 0 on success.
2335 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
2337 void __user *buffer,
2338 size_t *lenp, loff_t *ppos)
2340 return do_proc_doulongvec_minmax(table, write, filp, buffer,
2341 lenp, ppos, HZ, 1000l);
2345 static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2347 int write, void *data)
2350 if (*lvalp > LONG_MAX / HZ)
2352 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2358 lval = (unsigned long)-val;
2361 lval = (unsigned long)val;
2368 static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2370 int write, void *data)
2373 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2375 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2381 lval = (unsigned long)-val;
2384 lval = (unsigned long)val;
2386 *lvalp = jiffies_to_clock_t(lval);
2391 static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2393 int write, void *data)
2396 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2402 lval = (unsigned long)-val;
2405 lval = (unsigned long)val;
2407 *lvalp = jiffies_to_msecs(lval);
2413 * proc_dointvec_jiffies - read a vector of integers as seconds
2414 * @table: the sysctl table
2415 * @write: %TRUE if this is a write to the sysctl file
2416 * @filp: the file structure
2417 * @buffer: the user buffer
2418 * @lenp: the size of the user buffer
2419 * @ppos: file position
2421 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2422 * values from/to the user buffer, treated as an ASCII string.
2423 * The values read are assumed to be in seconds, and are converted into
2426 * Returns 0 on success.
2428 int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
2429 void __user *buffer, size_t *lenp, loff_t *ppos)
2431 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2432 do_proc_dointvec_jiffies_conv,NULL);
2436 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2437 * @table: the sysctl table
2438 * @write: %TRUE if this is a write to the sysctl file
2439 * @filp: the file structure
2440 * @buffer: the user buffer
2441 * @lenp: the size of the user buffer
2442 * @ppos: pointer to the file position
2444 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2445 * values from/to the user buffer, treated as an ASCII string.
2446 * The values read are assumed to be in 1/USER_HZ seconds, and
2447 * are converted into jiffies.
2449 * Returns 0 on success.
2451 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
2452 void __user *buffer, size_t *lenp, loff_t *ppos)
2454 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2455 do_proc_dointvec_userhz_jiffies_conv,NULL);
2459 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2460 * @table: the sysctl table
2461 * @write: %TRUE if this is a write to the sysctl file
2462 * @filp: the file structure
2463 * @buffer: the user buffer
2464 * @lenp: the size of the user buffer
2465 * @ppos: file position
2466 * @ppos: the current position in the file
2468 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2469 * values from/to the user buffer, treated as an ASCII string.
2470 * The values read are assumed to be in 1/1000 seconds, and
2471 * are converted into jiffies.
2473 * Returns 0 on success.
2475 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
2476 void __user *buffer, size_t *lenp, loff_t *ppos)
2478 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2479 do_proc_dointvec_ms_jiffies_conv, NULL);
2482 static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
2483 void __user *buffer, size_t *lenp, loff_t *ppos)
2485 struct pid *new_pid;
2489 tmp = pid_nr_ns(cad_pid, current->nsproxy->pid_ns);
2491 r = __do_proc_dointvec(&tmp, table, write, filp, buffer,
2492 lenp, ppos, NULL, NULL);
2496 new_pid = find_get_pid(tmp);
2500 put_pid(xchg(&cad_pid, new_pid));
2504 #else /* CONFIG_PROC_FS */
2506 int proc_dostring(struct ctl_table *table, int write, struct file *filp,
2507 void __user *buffer, size_t *lenp, loff_t *ppos)
2512 int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
2513 void __user *buffer, size_t *lenp, loff_t *ppos)
2518 int proc_dointvec_bset(struct ctl_table *table, int write, struct file *filp,
2519 void __user *buffer, size_t *lenp, loff_t *ppos)
2524 int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
2525 void __user *buffer, size_t *lenp, loff_t *ppos)
2530 int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
2531 void __user *buffer, size_t *lenp, loff_t *ppos)
2536 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
2537 void __user *buffer, size_t *lenp, loff_t *ppos)
2542 int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
2543 void __user *buffer, size_t *lenp, loff_t *ppos)
2548 int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
2549 void __user *buffer, size_t *lenp, loff_t *ppos)
2554 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
2556 void __user *buffer,
2557 size_t *lenp, loff_t *ppos)
2563 #endif /* CONFIG_PROC_FS */
2566 #ifdef CONFIG_SYSCTL_SYSCALL
2568 * General sysctl support routines
2571 /* The generic sysctl data routine (used if no strategy routine supplied) */
2572 int sysctl_data(struct ctl_table *table, int __user *name, int nlen,
2573 void __user *oldval, size_t __user *oldlenp,
2574 void __user *newval, size_t newlen)
2578 /* Get out of I don't have a variable */
2579 if (!table->data || !table->maxlen)
2582 if (oldval && oldlenp) {
2583 if (get_user(len, oldlenp))
2586 if (len > table->maxlen)
2587 len = table->maxlen;
2588 if (copy_to_user(oldval, table->data, len))
2590 if (put_user(len, oldlenp))
2595 if (newval && newlen) {
2596 if (newlen > table->maxlen)
2597 newlen = table->maxlen;
2599 if (copy_from_user(table->data, newval, newlen))
2605 /* The generic string strategy routine: */
2606 int sysctl_string(struct ctl_table *table, int __user *name, int nlen,
2607 void __user *oldval, size_t __user *oldlenp,
2608 void __user *newval, size_t newlen)
2610 if (!table->data || !table->maxlen)
2613 if (oldval && oldlenp) {
2615 if (get_user(bufsize, oldlenp))
2618 size_t len = strlen(table->data), copied;
2620 /* This shouldn't trigger for a well-formed sysctl */
2621 if (len > table->maxlen)
2622 len = table->maxlen;
2624 /* Copy up to a max of bufsize-1 bytes of the string */
2625 copied = (len >= bufsize) ? bufsize - 1 : len;
2627 if (copy_to_user(oldval, table->data, copied) ||
2628 put_user(0, (char __user *)(oldval + copied)))
2630 if (put_user(len, oldlenp))
2634 if (newval && newlen) {
2635 size_t len = newlen;
2636 if (len > table->maxlen)
2637 len = table->maxlen;
2638 if(copy_from_user(table->data, newval, len))
2640 if (len == table->maxlen)
2642 ((char *) table->data)[len] = 0;
2648 * This function makes sure that all of the integers in the vector
2649 * are between the minimum and maximum values given in the arrays
2650 * table->extra1 and table->extra2, respectively.
2652 int sysctl_intvec(struct ctl_table *table, int __user *name, int nlen,
2653 void __user *oldval, size_t __user *oldlenp,
2654 void __user *newval, size_t newlen)
2657 if (newval && newlen) {
2658 int __user *vec = (int __user *) newval;
2659 int *min = (int *) table->extra1;
2660 int *max = (int *) table->extra2;
2664 if (newlen % sizeof(int) != 0)
2667 if (!table->extra1 && !table->extra2)
2670 if (newlen > table->maxlen)
2671 newlen = table->maxlen;
2672 length = newlen / sizeof(int);
2674 for (i = 0; i < length; i++) {
2676 if (get_user(value, vec + i))
2678 if (min && value < min[i])
2680 if (max && value > max[i])
2687 /* Strategy function to convert jiffies to seconds */
2688 int sysctl_jiffies(struct ctl_table *table, int __user *name, int nlen,
2689 void __user *oldval, size_t __user *oldlenp,
2690 void __user *newval, size_t newlen)
2692 if (oldval && oldlenp) {
2695 if (get_user(olen, oldlenp))
2700 if (olen < sizeof(int))
2703 val = *(int *)(table->data) / HZ;
2704 if (put_user(val, (int __user *)oldval))
2706 if (put_user(sizeof(int), oldlenp))
2710 if (newval && newlen) {
2712 if (newlen != sizeof(int))
2714 if (get_user(new, (int __user *)newval))
2716 *(int *)(table->data) = new*HZ;
2721 /* Strategy function to convert jiffies to seconds */
2722 int sysctl_ms_jiffies(struct ctl_table *table, int __user *name, int nlen,
2723 void __user *oldval, size_t __user *oldlenp,
2724 void __user *newval, size_t newlen)
2726 if (oldval && oldlenp) {
2729 if (get_user(olen, oldlenp))
2734 if (olen < sizeof(int))
2737 val = jiffies_to_msecs(*(int *)(table->data));
2738 if (put_user(val, (int __user *)oldval))
2740 if (put_user(sizeof(int), oldlenp))
2744 if (newval && newlen) {
2746 if (newlen != sizeof(int))
2748 if (get_user(new, (int __user *)newval))
2750 *(int *)(table->data) = msecs_to_jiffies(new);
2757 #else /* CONFIG_SYSCTL_SYSCALL */
2760 asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
2762 struct __sysctl_args tmp;
2765 if (copy_from_user(&tmp, args, sizeof(tmp)))
2768 error = deprecated_sysctl_warning(&tmp);
2770 /* If no error reading the parameters then just -ENOSYS ... */
2777 int sysctl_data(struct ctl_table *table, int __user *name, int nlen,
2778 void __user *oldval, size_t __user *oldlenp,
2779 void __user *newval, size_t newlen)
2784 int sysctl_string(struct ctl_table *table, int __user *name, int nlen,
2785 void __user *oldval, size_t __user *oldlenp,
2786 void __user *newval, size_t newlen)
2791 int sysctl_intvec(struct ctl_table *table, int __user *name, int nlen,
2792 void __user *oldval, size_t __user *oldlenp,
2793 void __user *newval, size_t newlen)
2798 int sysctl_jiffies(struct ctl_table *table, int __user *name, int nlen,
2799 void __user *oldval, size_t __user *oldlenp,
2800 void __user *newval, size_t newlen)
2805 int sysctl_ms_jiffies(struct ctl_table *table, int __user *name, int nlen,
2806 void __user *oldval, size_t __user *oldlenp,
2807 void __user *newval, size_t newlen)
2812 #endif /* CONFIG_SYSCTL_SYSCALL */
2814 static int deprecated_sysctl_warning(struct __sysctl_args *args)
2816 static int msg_count;
2817 int name[CTL_MAXNAME];
2820 /* Check args->nlen. */
2821 if (args->nlen < 0 || args->nlen > CTL_MAXNAME)
2824 /* Read in the sysctl name for better debug message logging */
2825 for (i = 0; i < args->nlen; i++)
2826 if (get_user(name[i], args->name + i))
2829 /* Ignore accesses to kernel.version */
2830 if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION))
2833 if (msg_count < 5) {
2836 "warning: process `%s' used the deprecated sysctl "
2837 "system call with ", current->comm);
2838 for (i = 0; i < args->nlen; i++)
2839 printk("%d.", name[i]);
2846 * No sense putting this after each symbol definition, twice,
2847 * exception granted :-)
2849 EXPORT_SYMBOL(proc_dointvec);
2850 EXPORT_SYMBOL(proc_dointvec_jiffies);
2851 EXPORT_SYMBOL(proc_dointvec_minmax);
2852 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2853 EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2854 EXPORT_SYMBOL(proc_dostring);
2855 EXPORT_SYMBOL(proc_doulongvec_minmax);
2856 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
2857 EXPORT_SYMBOL(register_sysctl_table);
2858 EXPORT_SYMBOL(register_sysctl_paths);
2859 EXPORT_SYMBOL(sysctl_intvec);
2860 EXPORT_SYMBOL(sysctl_jiffies);
2861 EXPORT_SYMBOL(sysctl_ms_jiffies);
2862 EXPORT_SYMBOL(sysctl_string);
2863 EXPORT_SYMBOL(sysctl_data);
2864 EXPORT_SYMBOL(unregister_sysctl_table);