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/initrd.h>
41 #include <linux/key.h>
42 #include <linux/times.h>
43 #include <linux/limits.h>
44 #include <linux/dcache.h>
45 #include <linux/syscalls.h>
46 #include <linux/vmstat.h>
47 #include <linux/nfs_fs.h>
48 #include <linux/acpi.h>
49 #include <linux/reboot.h>
50 #include <linux/ftrace.h>
51 #include <linux/slow-work.h>
52 #include <linux/perf_counter.h>
54 #include <asm/uaccess.h>
55 #include <asm/processor.h>
59 #include <asm/stacktrace.h>
63 static int deprecated_sysctl_warning(struct __sysctl_args
*args
);
65 #if defined(CONFIG_SYSCTL)
67 /* External variables not in a header file. */
69 extern int print_fatal_signals
;
70 extern int sysctl_overcommit_memory
;
71 extern int sysctl_overcommit_ratio
;
72 extern int sysctl_panic_on_oom
;
73 extern int sysctl_oom_kill_allocating_task
;
74 extern int sysctl_oom_dump_tasks
;
75 extern int max_threads
;
76 extern int core_uses_pid
;
77 extern int suid_dumpable
;
78 extern char core_pattern
[];
80 extern int min_free_kbytes
;
81 extern int pid_max_min
, pid_max_max
;
82 extern int sysctl_drop_caches
;
83 extern int percpu_pagelist_fraction
;
84 extern int compat_log
;
85 extern int latencytop_enabled
;
86 extern int sysctl_nr_open_min
, sysctl_nr_open_max
;
88 extern int sysctl_nr_trim_pages
;
90 #ifdef CONFIG_RCU_TORTURE_TEST
91 extern int rcutorture_runnable
;
92 #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
94 /* Constants used for minimum and maximum */
95 #ifdef CONFIG_DETECT_SOFTLOCKUP
96 static int sixty
= 60;
97 static int neg_one
= -1;
101 static int __maybe_unused one
= 1;
102 static int __maybe_unused two
= 2;
103 static unsigned long one_ul
= 1;
104 static int one_hundred
= 100;
106 /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
107 static unsigned long dirty_bytes_min
= 2 * PAGE_SIZE
;
109 /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
110 static int maxolduid
= 65535;
111 static int minolduid
;
112 static int min_percpu_pagelist_fract
= 8;
114 static int ngroups_max
= NGROUPS_MAX
;
116 #ifdef CONFIG_MODULES
117 extern char modprobe_path
[];
119 #ifdef CONFIG_CHR_DEV_SG
120 extern int sg_big_buff
;
124 #include <asm/system.h>
127 #ifdef CONFIG_SPARC64
128 extern int sysctl_tsb_ratio
;
132 extern int pwrsw_enabled
;
133 extern int unaligned_enabled
;
137 #ifdef CONFIG_MATHEMU
138 extern int sysctl_ieee_emulation_warnings
;
140 extern int sysctl_userprocess_debug
;
141 extern int spin_retry
;
144 #ifdef CONFIG_BSD_PROCESS_ACCT
145 extern int acct_parm
[];
149 extern int no_unaligned_warning
;
150 extern int unaligned_dump_stack
;
153 #ifdef CONFIG_RT_MUTEXES
154 extern int max_lock_depth
;
157 #ifdef CONFIG_PROC_SYSCTL
158 static int proc_do_cad_pid(struct ctl_table
*table
, int write
, struct file
*filp
,
159 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
160 static int proc_taint(struct ctl_table
*table
, int write
, struct file
*filp
,
161 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
164 static struct ctl_table root_table
[];
165 static struct ctl_table_root sysctl_table_root
;
166 static struct ctl_table_header root_table_header
= {
168 .ctl_table
= root_table
,
169 .ctl_entry
= LIST_HEAD_INIT(sysctl_table_root
.default_set
.list
),
170 .root
= &sysctl_table_root
,
171 .set
= &sysctl_table_root
.default_set
,
173 static struct ctl_table_root sysctl_table_root
= {
174 .root_list
= LIST_HEAD_INIT(sysctl_table_root
.root_list
),
175 .default_set
.list
= LIST_HEAD_INIT(root_table_header
.ctl_entry
),
178 static struct ctl_table kern_table
[];
179 static struct ctl_table vm_table
[];
180 static struct ctl_table fs_table
[];
181 static struct ctl_table debug_table
[];
182 static struct ctl_table dev_table
[];
183 extern struct ctl_table random_table
[];
184 #ifdef CONFIG_INOTIFY_USER
185 extern struct ctl_table inotify_table
[];
188 extern struct ctl_table epoll_table
[];
191 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
192 int sysctl_legacy_va_layout
;
195 extern int prove_locking
;
196 extern int lock_stat
;
198 /* The default sysctl tables: */
200 static struct ctl_table root_table
[] = {
202 .ctl_name
= CTL_KERN
,
203 .procname
= "kernel",
220 .ctl_name
= CTL_DEBUG
,
223 .child
= debug_table
,
232 * NOTE: do not add new entries to this table unless you have read
233 * Documentation/sysctl/ctl_unnumbered.txt
238 #ifdef CONFIG_SCHED_DEBUG
239 static int min_sched_granularity_ns
= 100000; /* 100 usecs */
240 static int max_sched_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
241 static int min_wakeup_granularity_ns
; /* 0 usecs */
242 static int max_wakeup_granularity_ns
= NSEC_PER_SEC
; /* 1 second */
245 static struct ctl_table kern_table
[] = {
246 #ifdef CONFIG_SCHED_DEBUG
248 .ctl_name
= CTL_UNNUMBERED
,
249 .procname
= "sched_min_granularity_ns",
250 .data
= &sysctl_sched_min_granularity
,
251 .maxlen
= sizeof(unsigned int),
253 .proc_handler
= &sched_nr_latency_handler
,
254 .strategy
= &sysctl_intvec
,
255 .extra1
= &min_sched_granularity_ns
,
256 .extra2
= &max_sched_granularity_ns
,
259 .ctl_name
= CTL_UNNUMBERED
,
260 .procname
= "sched_latency_ns",
261 .data
= &sysctl_sched_latency
,
262 .maxlen
= sizeof(unsigned int),
264 .proc_handler
= &sched_nr_latency_handler
,
265 .strategy
= &sysctl_intvec
,
266 .extra1
= &min_sched_granularity_ns
,
267 .extra2
= &max_sched_granularity_ns
,
270 .ctl_name
= CTL_UNNUMBERED
,
271 .procname
= "sched_wakeup_granularity_ns",
272 .data
= &sysctl_sched_wakeup_granularity
,
273 .maxlen
= sizeof(unsigned int),
275 .proc_handler
= &proc_dointvec_minmax
,
276 .strategy
= &sysctl_intvec
,
277 .extra1
= &min_wakeup_granularity_ns
,
278 .extra2
= &max_wakeup_granularity_ns
,
281 .ctl_name
= CTL_UNNUMBERED
,
282 .procname
= "sched_shares_ratelimit",
283 .data
= &sysctl_sched_shares_ratelimit
,
284 .maxlen
= sizeof(unsigned int),
286 .proc_handler
= &proc_dointvec
,
289 .ctl_name
= CTL_UNNUMBERED
,
290 .procname
= "sched_shares_thresh",
291 .data
= &sysctl_sched_shares_thresh
,
292 .maxlen
= sizeof(unsigned int),
294 .proc_handler
= &proc_dointvec_minmax
,
295 .strategy
= &sysctl_intvec
,
299 .ctl_name
= CTL_UNNUMBERED
,
300 .procname
= "sched_child_runs_first",
301 .data
= &sysctl_sched_child_runs_first
,
302 .maxlen
= sizeof(unsigned int),
304 .proc_handler
= &proc_dointvec
,
307 .ctl_name
= CTL_UNNUMBERED
,
308 .procname
= "sched_features",
309 .data
= &sysctl_sched_features
,
310 .maxlen
= sizeof(unsigned int),
312 .proc_handler
= &proc_dointvec
,
315 .ctl_name
= CTL_UNNUMBERED
,
316 .procname
= "sched_migration_cost",
317 .data
= &sysctl_sched_migration_cost
,
318 .maxlen
= sizeof(unsigned int),
320 .proc_handler
= &proc_dointvec
,
323 .ctl_name
= CTL_UNNUMBERED
,
324 .procname
= "sched_nr_migrate",
325 .data
= &sysctl_sched_nr_migrate
,
326 .maxlen
= sizeof(unsigned int),
328 .proc_handler
= &proc_dointvec
,
332 .ctl_name
= CTL_UNNUMBERED
,
333 .procname
= "sched_rt_period_us",
334 .data
= &sysctl_sched_rt_period
,
335 .maxlen
= sizeof(unsigned int),
337 .proc_handler
= &sched_rt_handler
,
340 .ctl_name
= CTL_UNNUMBERED
,
341 .procname
= "sched_rt_runtime_us",
342 .data
= &sysctl_sched_rt_runtime
,
343 .maxlen
= sizeof(int),
345 .proc_handler
= &sched_rt_handler
,
348 .ctl_name
= CTL_UNNUMBERED
,
349 .procname
= "sched_compat_yield",
350 .data
= &sysctl_sched_compat_yield
,
351 .maxlen
= sizeof(unsigned int),
353 .proc_handler
= &proc_dointvec
,
355 #ifdef CONFIG_PROVE_LOCKING
357 .ctl_name
= CTL_UNNUMBERED
,
358 .procname
= "prove_locking",
359 .data
= &prove_locking
,
360 .maxlen
= sizeof(int),
362 .proc_handler
= &proc_dointvec
,
365 #ifdef CONFIG_LOCK_STAT
367 .ctl_name
= CTL_UNNUMBERED
,
368 .procname
= "lock_stat",
370 .maxlen
= sizeof(int),
372 .proc_handler
= &proc_dointvec
,
376 .ctl_name
= KERN_PANIC
,
378 .data
= &panic_timeout
,
379 .maxlen
= sizeof(int),
381 .proc_handler
= &proc_dointvec
,
384 .ctl_name
= KERN_CORE_USES_PID
,
385 .procname
= "core_uses_pid",
386 .data
= &core_uses_pid
,
387 .maxlen
= sizeof(int),
389 .proc_handler
= &proc_dointvec
,
392 .ctl_name
= KERN_CORE_PATTERN
,
393 .procname
= "core_pattern",
394 .data
= core_pattern
,
395 .maxlen
= CORENAME_MAX_SIZE
,
397 .proc_handler
= &proc_dostring
,
398 .strategy
= &sysctl_string
,
400 #ifdef CONFIG_PROC_SYSCTL
402 .procname
= "tainted",
403 .maxlen
= sizeof(long),
405 .proc_handler
= &proc_taint
,
408 #ifdef CONFIG_LATENCYTOP
410 .procname
= "latencytop",
411 .data
= &latencytop_enabled
,
412 .maxlen
= sizeof(int),
414 .proc_handler
= &proc_dointvec
,
417 #ifdef CONFIG_BLK_DEV_INITRD
419 .ctl_name
= KERN_REALROOTDEV
,
420 .procname
= "real-root-dev",
421 .data
= &real_root_dev
,
422 .maxlen
= sizeof(int),
424 .proc_handler
= &proc_dointvec
,
428 .ctl_name
= CTL_UNNUMBERED
,
429 .procname
= "print-fatal-signals",
430 .data
= &print_fatal_signals
,
431 .maxlen
= sizeof(int),
433 .proc_handler
= &proc_dointvec
,
437 .ctl_name
= KERN_SPARC_REBOOT
,
438 .procname
= "reboot-cmd",
439 .data
= reboot_command
,
442 .proc_handler
= &proc_dostring
,
443 .strategy
= &sysctl_string
,
446 .ctl_name
= KERN_SPARC_STOP_A
,
447 .procname
= "stop-a",
448 .data
= &stop_a_enabled
,
449 .maxlen
= sizeof (int),
451 .proc_handler
= &proc_dointvec
,
454 .ctl_name
= KERN_SPARC_SCONS_PWROFF
,
455 .procname
= "scons-poweroff",
456 .data
= &scons_pwroff
,
457 .maxlen
= sizeof (int),
459 .proc_handler
= &proc_dointvec
,
462 #ifdef CONFIG_SPARC64
464 .ctl_name
= CTL_UNNUMBERED
,
465 .procname
= "tsb-ratio",
466 .data
= &sysctl_tsb_ratio
,
467 .maxlen
= sizeof (int),
469 .proc_handler
= &proc_dointvec
,
474 .ctl_name
= KERN_HPPA_PWRSW
,
475 .procname
= "soft-power",
476 .data
= &pwrsw_enabled
,
477 .maxlen
= sizeof (int),
479 .proc_handler
= &proc_dointvec
,
482 .ctl_name
= KERN_HPPA_UNALIGNED
,
483 .procname
= "unaligned-trap",
484 .data
= &unaligned_enabled
,
485 .maxlen
= sizeof (int),
487 .proc_handler
= &proc_dointvec
,
491 .ctl_name
= KERN_CTLALTDEL
,
492 .procname
= "ctrl-alt-del",
494 .maxlen
= sizeof(int),
496 .proc_handler
= &proc_dointvec
,
498 #ifdef CONFIG_FUNCTION_TRACER
500 .ctl_name
= CTL_UNNUMBERED
,
501 .procname
= "ftrace_enabled",
502 .data
= &ftrace_enabled
,
503 .maxlen
= sizeof(int),
505 .proc_handler
= &ftrace_enable_sysctl
,
508 #ifdef CONFIG_STACK_TRACER
510 .ctl_name
= CTL_UNNUMBERED
,
511 .procname
= "stack_tracer_enabled",
512 .data
= &stack_tracer_enabled
,
513 .maxlen
= sizeof(int),
515 .proc_handler
= &stack_trace_sysctl
,
518 #ifdef CONFIG_TRACING
520 .ctl_name
= CTL_UNNUMBERED
,
521 .procname
= "ftrace_dump_on_oops",
522 .data
= &ftrace_dump_on_oops
,
523 .maxlen
= sizeof(int),
525 .proc_handler
= &proc_dointvec
,
528 #ifdef CONFIG_MODULES
530 .ctl_name
= KERN_MODPROBE
,
531 .procname
= "modprobe",
532 .data
= &modprobe_path
,
533 .maxlen
= KMOD_PATH_LEN
,
535 .proc_handler
= &proc_dostring
,
536 .strategy
= &sysctl_string
,
539 #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
541 .ctl_name
= KERN_HOTPLUG
,
542 .procname
= "hotplug",
543 .data
= &uevent_helper
,
544 .maxlen
= UEVENT_HELPER_PATH_LEN
,
546 .proc_handler
= &proc_dostring
,
547 .strategy
= &sysctl_string
,
550 #ifdef CONFIG_CHR_DEV_SG
552 .ctl_name
= KERN_SG_BIG_BUFF
,
553 .procname
= "sg-big-buff",
554 .data
= &sg_big_buff
,
555 .maxlen
= sizeof (int),
557 .proc_handler
= &proc_dointvec
,
560 #ifdef CONFIG_BSD_PROCESS_ACCT
562 .ctl_name
= KERN_ACCT
,
565 .maxlen
= 3*sizeof(int),
567 .proc_handler
= &proc_dointvec
,
570 #ifdef CONFIG_MAGIC_SYSRQ
572 .ctl_name
= KERN_SYSRQ
,
574 .data
= &__sysrq_enabled
,
575 .maxlen
= sizeof (int),
577 .proc_handler
= &proc_dointvec
,
580 #ifdef CONFIG_PROC_SYSCTL
582 .procname
= "cad_pid",
584 .maxlen
= sizeof (int),
586 .proc_handler
= &proc_do_cad_pid
,
590 .ctl_name
= KERN_MAX_THREADS
,
591 .procname
= "threads-max",
592 .data
= &max_threads
,
593 .maxlen
= sizeof(int),
595 .proc_handler
= &proc_dointvec
,
598 .ctl_name
= KERN_RANDOM
,
599 .procname
= "random",
601 .child
= random_table
,
604 .ctl_name
= KERN_OVERFLOWUID
,
605 .procname
= "overflowuid",
606 .data
= &overflowuid
,
607 .maxlen
= sizeof(int),
609 .proc_handler
= &proc_dointvec_minmax
,
610 .strategy
= &sysctl_intvec
,
611 .extra1
= &minolduid
,
612 .extra2
= &maxolduid
,
615 .ctl_name
= KERN_OVERFLOWGID
,
616 .procname
= "overflowgid",
617 .data
= &overflowgid
,
618 .maxlen
= sizeof(int),
620 .proc_handler
= &proc_dointvec_minmax
,
621 .strategy
= &sysctl_intvec
,
622 .extra1
= &minolduid
,
623 .extra2
= &maxolduid
,
626 #ifdef CONFIG_MATHEMU
628 .ctl_name
= KERN_IEEE_EMULATION_WARNINGS
,
629 .procname
= "ieee_emulation_warnings",
630 .data
= &sysctl_ieee_emulation_warnings
,
631 .maxlen
= sizeof(int),
633 .proc_handler
= &proc_dointvec
,
637 .ctl_name
= KERN_S390_USER_DEBUG_LOGGING
,
638 .procname
= "userprocess_debug",
639 .data
= &sysctl_userprocess_debug
,
640 .maxlen
= sizeof(int),
642 .proc_handler
= &proc_dointvec
,
646 .ctl_name
= KERN_PIDMAX
,
647 .procname
= "pid_max",
649 .maxlen
= sizeof (int),
651 .proc_handler
= &proc_dointvec_minmax
,
652 .strategy
= sysctl_intvec
,
653 .extra1
= &pid_max_min
,
654 .extra2
= &pid_max_max
,
657 .ctl_name
= KERN_PANIC_ON_OOPS
,
658 .procname
= "panic_on_oops",
659 .data
= &panic_on_oops
,
660 .maxlen
= sizeof(int),
662 .proc_handler
= &proc_dointvec
,
664 #if defined CONFIG_PRINTK
666 .ctl_name
= KERN_PRINTK
,
667 .procname
= "printk",
668 .data
= &console_loglevel
,
669 .maxlen
= 4*sizeof(int),
671 .proc_handler
= &proc_dointvec
,
674 .ctl_name
= KERN_PRINTK_RATELIMIT
,
675 .procname
= "printk_ratelimit",
676 .data
= &printk_ratelimit_state
.interval
,
677 .maxlen
= sizeof(int),
679 .proc_handler
= &proc_dointvec_jiffies
,
680 .strategy
= &sysctl_jiffies
,
683 .ctl_name
= KERN_PRINTK_RATELIMIT_BURST
,
684 .procname
= "printk_ratelimit_burst",
685 .data
= &printk_ratelimit_state
.burst
,
686 .maxlen
= sizeof(int),
688 .proc_handler
= &proc_dointvec
,
692 .ctl_name
= KERN_NGROUPS_MAX
,
693 .procname
= "ngroups_max",
694 .data
= &ngroups_max
,
695 .maxlen
= sizeof (int),
697 .proc_handler
= &proc_dointvec
,
699 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
701 .ctl_name
= KERN_UNKNOWN_NMI_PANIC
,
702 .procname
= "unknown_nmi_panic",
703 .data
= &unknown_nmi_panic
,
704 .maxlen
= sizeof (int),
706 .proc_handler
= &proc_dointvec
,
709 .procname
= "nmi_watchdog",
710 .data
= &nmi_watchdog_enabled
,
711 .maxlen
= sizeof (int),
713 .proc_handler
= &proc_nmi_enabled
,
716 #if defined(CONFIG_X86)
718 .ctl_name
= KERN_PANIC_ON_NMI
,
719 .procname
= "panic_on_unrecovered_nmi",
720 .data
= &panic_on_unrecovered_nmi
,
721 .maxlen
= sizeof(int),
723 .proc_handler
= &proc_dointvec
,
726 .ctl_name
= KERN_BOOTLOADER_TYPE
,
727 .procname
= "bootloader_type",
728 .data
= &bootloader_type
,
729 .maxlen
= sizeof (int),
731 .proc_handler
= &proc_dointvec
,
734 .ctl_name
= CTL_UNNUMBERED
,
735 .procname
= "kstack_depth_to_print",
736 .data
= &kstack_depth_to_print
,
737 .maxlen
= sizeof(int),
739 .proc_handler
= &proc_dointvec
,
742 .ctl_name
= CTL_UNNUMBERED
,
743 .procname
= "io_delay_type",
744 .data
= &io_delay_type
,
745 .maxlen
= sizeof(int),
747 .proc_handler
= &proc_dointvec
,
750 #if defined(CONFIG_MMU)
752 .ctl_name
= KERN_RANDOMIZE
,
753 .procname
= "randomize_va_space",
754 .data
= &randomize_va_space
,
755 .maxlen
= sizeof(int),
757 .proc_handler
= &proc_dointvec
,
760 #if defined(CONFIG_S390) && defined(CONFIG_SMP)
762 .ctl_name
= KERN_SPIN_RETRY
,
763 .procname
= "spin_retry",
765 .maxlen
= sizeof (int),
767 .proc_handler
= &proc_dointvec
,
770 #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
772 .procname
= "acpi_video_flags",
773 .data
= &acpi_realmode_flags
,
774 .maxlen
= sizeof (unsigned long),
776 .proc_handler
= &proc_doulongvec_minmax
,
781 .ctl_name
= KERN_IA64_UNALIGNED
,
782 .procname
= "ignore-unaligned-usertrap",
783 .data
= &no_unaligned_warning
,
784 .maxlen
= sizeof (int),
786 .proc_handler
= &proc_dointvec
,
789 .ctl_name
= CTL_UNNUMBERED
,
790 .procname
= "unaligned-dump-stack",
791 .data
= &unaligned_dump_stack
,
792 .maxlen
= sizeof (int),
794 .proc_handler
= &proc_dointvec
,
797 #ifdef CONFIG_DETECT_SOFTLOCKUP
799 .ctl_name
= CTL_UNNUMBERED
,
800 .procname
= "softlockup_panic",
801 .data
= &softlockup_panic
,
802 .maxlen
= sizeof(int),
804 .proc_handler
= &proc_dointvec_minmax
,
805 .strategy
= &sysctl_intvec
,
810 .ctl_name
= CTL_UNNUMBERED
,
811 .procname
= "softlockup_thresh",
812 .data
= &softlockup_thresh
,
813 .maxlen
= sizeof(int),
815 .proc_handler
= &proc_dosoftlockup_thresh
,
816 .strategy
= &sysctl_intvec
,
821 #ifdef CONFIG_DETECT_HUNG_TASK
823 .ctl_name
= CTL_UNNUMBERED
,
824 .procname
= "hung_task_panic",
825 .data
= &sysctl_hung_task_panic
,
826 .maxlen
= sizeof(int),
828 .proc_handler
= &proc_dointvec_minmax
,
829 .strategy
= &sysctl_intvec
,
834 .ctl_name
= CTL_UNNUMBERED
,
835 .procname
= "hung_task_check_count",
836 .data
= &sysctl_hung_task_check_count
,
837 .maxlen
= sizeof(unsigned long),
839 .proc_handler
= &proc_doulongvec_minmax
,
840 .strategy
= &sysctl_intvec
,
843 .ctl_name
= CTL_UNNUMBERED
,
844 .procname
= "hung_task_timeout_secs",
845 .data
= &sysctl_hung_task_timeout_secs
,
846 .maxlen
= sizeof(unsigned long),
848 .proc_handler
= &proc_dohung_task_timeout_secs
,
849 .strategy
= &sysctl_intvec
,
852 .ctl_name
= CTL_UNNUMBERED
,
853 .procname
= "hung_task_warnings",
854 .data
= &sysctl_hung_task_warnings
,
855 .maxlen
= sizeof(unsigned long),
857 .proc_handler
= &proc_doulongvec_minmax
,
858 .strategy
= &sysctl_intvec
,
863 .ctl_name
= KERN_COMPAT_LOG
,
864 .procname
= "compat-log",
866 .maxlen
= sizeof (int),
868 .proc_handler
= &proc_dointvec
,
871 #ifdef CONFIG_RT_MUTEXES
873 .ctl_name
= KERN_MAX_LOCK_DEPTH
,
874 .procname
= "max_lock_depth",
875 .data
= &max_lock_depth
,
876 .maxlen
= sizeof(int),
878 .proc_handler
= &proc_dointvec
,
882 .ctl_name
= CTL_UNNUMBERED
,
883 .procname
= "poweroff_cmd",
884 .data
= &poweroff_cmd
,
885 .maxlen
= POWEROFF_CMD_PATH_LEN
,
887 .proc_handler
= &proc_dostring
,
888 .strategy
= &sysctl_string
,
892 .ctl_name
= CTL_UNNUMBERED
,
895 .child
= key_sysctls
,
898 #ifdef CONFIG_RCU_TORTURE_TEST
900 .ctl_name
= CTL_UNNUMBERED
,
901 .procname
= "rcutorture_runnable",
902 .data
= &rcutorture_runnable
,
903 .maxlen
= sizeof(int),
905 .proc_handler
= &proc_dointvec
,
908 #ifdef CONFIG_SLOW_WORK
910 .ctl_name
= CTL_UNNUMBERED
,
911 .procname
= "slow-work",
913 .child
= slow_work_sysctls
,
916 #ifdef CONFIG_PERF_COUNTERS
918 .ctl_name
= CTL_UNNUMBERED
,
919 .procname
= "perf_counter_privileged",
920 .data
= &sysctl_perf_counter_priv
,
921 .maxlen
= sizeof(sysctl_perf_counter_priv
),
923 .proc_handler
= &proc_dointvec
,
926 .ctl_name
= CTL_UNNUMBERED
,
927 .procname
= "perf_counter_mlock_kb",
928 .data
= &sysctl_perf_counter_mlock
,
929 .maxlen
= sizeof(sysctl_perf_counter_mlock
),
931 .proc_handler
= &proc_dointvec
,
934 .ctl_name
= CTL_UNNUMBERED
,
935 .procname
= "perf_counter_int_limit",
936 .data
= &sysctl_perf_counter_limit
,
937 .maxlen
= sizeof(sysctl_perf_counter_limit
),
939 .proc_handler
= &proc_dointvec
,
943 * NOTE: do not add new entries to this table unless you have read
944 * Documentation/sysctl/ctl_unnumbered.txt
949 static struct ctl_table vm_table
[] = {
951 .ctl_name
= VM_OVERCOMMIT_MEMORY
,
952 .procname
= "overcommit_memory",
953 .data
= &sysctl_overcommit_memory
,
954 .maxlen
= sizeof(sysctl_overcommit_memory
),
956 .proc_handler
= &proc_dointvec
,
959 .ctl_name
= VM_PANIC_ON_OOM
,
960 .procname
= "panic_on_oom",
961 .data
= &sysctl_panic_on_oom
,
962 .maxlen
= sizeof(sysctl_panic_on_oom
),
964 .proc_handler
= &proc_dointvec
,
967 .ctl_name
= CTL_UNNUMBERED
,
968 .procname
= "oom_kill_allocating_task",
969 .data
= &sysctl_oom_kill_allocating_task
,
970 .maxlen
= sizeof(sysctl_oom_kill_allocating_task
),
972 .proc_handler
= &proc_dointvec
,
975 .ctl_name
= CTL_UNNUMBERED
,
976 .procname
= "oom_dump_tasks",
977 .data
= &sysctl_oom_dump_tasks
,
978 .maxlen
= sizeof(sysctl_oom_dump_tasks
),
980 .proc_handler
= &proc_dointvec
,
983 .ctl_name
= VM_OVERCOMMIT_RATIO
,
984 .procname
= "overcommit_ratio",
985 .data
= &sysctl_overcommit_ratio
,
986 .maxlen
= sizeof(sysctl_overcommit_ratio
),
988 .proc_handler
= &proc_dointvec
,
991 .ctl_name
= VM_PAGE_CLUSTER
,
992 .procname
= "page-cluster",
993 .data
= &page_cluster
,
994 .maxlen
= sizeof(int),
996 .proc_handler
= &proc_dointvec
,
999 .ctl_name
= VM_DIRTY_BACKGROUND
,
1000 .procname
= "dirty_background_ratio",
1001 .data
= &dirty_background_ratio
,
1002 .maxlen
= sizeof(dirty_background_ratio
),
1004 .proc_handler
= &dirty_background_ratio_handler
,
1005 .strategy
= &sysctl_intvec
,
1007 .extra2
= &one_hundred
,
1010 .ctl_name
= CTL_UNNUMBERED
,
1011 .procname
= "dirty_background_bytes",
1012 .data
= &dirty_background_bytes
,
1013 .maxlen
= sizeof(dirty_background_bytes
),
1015 .proc_handler
= &dirty_background_bytes_handler
,
1016 .strategy
= &sysctl_intvec
,
1020 .ctl_name
= VM_DIRTY_RATIO
,
1021 .procname
= "dirty_ratio",
1022 .data
= &vm_dirty_ratio
,
1023 .maxlen
= sizeof(vm_dirty_ratio
),
1025 .proc_handler
= &dirty_ratio_handler
,
1026 .strategy
= &sysctl_intvec
,
1028 .extra2
= &one_hundred
,
1031 .ctl_name
= CTL_UNNUMBERED
,
1032 .procname
= "dirty_bytes",
1033 .data
= &vm_dirty_bytes
,
1034 .maxlen
= sizeof(vm_dirty_bytes
),
1036 .proc_handler
= &dirty_bytes_handler
,
1037 .strategy
= &sysctl_intvec
,
1038 .extra1
= &dirty_bytes_min
,
1041 .procname
= "dirty_writeback_centisecs",
1042 .data
= &dirty_writeback_interval
,
1043 .maxlen
= sizeof(dirty_writeback_interval
),
1045 .proc_handler
= &dirty_writeback_centisecs_handler
,
1048 .procname
= "dirty_expire_centisecs",
1049 .data
= &dirty_expire_interval
,
1050 .maxlen
= sizeof(dirty_expire_interval
),
1052 .proc_handler
= &proc_dointvec
,
1055 .ctl_name
= VM_NR_PDFLUSH_THREADS
,
1056 .procname
= "nr_pdflush_threads",
1057 .data
= &nr_pdflush_threads
,
1058 .maxlen
= sizeof nr_pdflush_threads
,
1059 .mode
= 0444 /* read-only*/,
1060 .proc_handler
= &proc_dointvec
,
1063 .ctl_name
= VM_SWAPPINESS
,
1064 .procname
= "swappiness",
1065 .data
= &vm_swappiness
,
1066 .maxlen
= sizeof(vm_swappiness
),
1068 .proc_handler
= &proc_dointvec_minmax
,
1069 .strategy
= &sysctl_intvec
,
1071 .extra2
= &one_hundred
,
1073 #ifdef CONFIG_HUGETLB_PAGE
1075 .procname
= "nr_hugepages",
1077 .maxlen
= sizeof(unsigned long),
1079 .proc_handler
= &hugetlb_sysctl_handler
,
1080 .extra1
= (void *)&hugetlb_zero
,
1081 .extra2
= (void *)&hugetlb_infinity
,
1084 .ctl_name
= VM_HUGETLB_GROUP
,
1085 .procname
= "hugetlb_shm_group",
1086 .data
= &sysctl_hugetlb_shm_group
,
1087 .maxlen
= sizeof(gid_t
),
1089 .proc_handler
= &proc_dointvec
,
1092 .ctl_name
= CTL_UNNUMBERED
,
1093 .procname
= "hugepages_treat_as_movable",
1094 .data
= &hugepages_treat_as_movable
,
1095 .maxlen
= sizeof(int),
1097 .proc_handler
= &hugetlb_treat_movable_handler
,
1100 .ctl_name
= CTL_UNNUMBERED
,
1101 .procname
= "nr_overcommit_hugepages",
1103 .maxlen
= sizeof(unsigned long),
1105 .proc_handler
= &hugetlb_overcommit_handler
,
1106 .extra1
= (void *)&hugetlb_zero
,
1107 .extra2
= (void *)&hugetlb_infinity
,
1111 .ctl_name
= VM_LOWMEM_RESERVE_RATIO
,
1112 .procname
= "lowmem_reserve_ratio",
1113 .data
= &sysctl_lowmem_reserve_ratio
,
1114 .maxlen
= sizeof(sysctl_lowmem_reserve_ratio
),
1116 .proc_handler
= &lowmem_reserve_ratio_sysctl_handler
,
1117 .strategy
= &sysctl_intvec
,
1120 .ctl_name
= VM_DROP_PAGECACHE
,
1121 .procname
= "drop_caches",
1122 .data
= &sysctl_drop_caches
,
1123 .maxlen
= sizeof(int),
1125 .proc_handler
= drop_caches_sysctl_handler
,
1126 .strategy
= &sysctl_intvec
,
1129 .ctl_name
= VM_MIN_FREE_KBYTES
,
1130 .procname
= "min_free_kbytes",
1131 .data
= &min_free_kbytes
,
1132 .maxlen
= sizeof(min_free_kbytes
),
1134 .proc_handler
= &min_free_kbytes_sysctl_handler
,
1135 .strategy
= &sysctl_intvec
,
1139 .ctl_name
= VM_PERCPU_PAGELIST_FRACTION
,
1140 .procname
= "percpu_pagelist_fraction",
1141 .data
= &percpu_pagelist_fraction
,
1142 .maxlen
= sizeof(percpu_pagelist_fraction
),
1144 .proc_handler
= &percpu_pagelist_fraction_sysctl_handler
,
1145 .strategy
= &sysctl_intvec
,
1146 .extra1
= &min_percpu_pagelist_fract
,
1150 .ctl_name
= VM_MAX_MAP_COUNT
,
1151 .procname
= "max_map_count",
1152 .data
= &sysctl_max_map_count
,
1153 .maxlen
= sizeof(sysctl_max_map_count
),
1155 .proc_handler
= &proc_dointvec
1159 .ctl_name
= CTL_UNNUMBERED
,
1160 .procname
= "nr_trim_pages",
1161 .data
= &sysctl_nr_trim_pages
,
1162 .maxlen
= sizeof(sysctl_nr_trim_pages
),
1164 .proc_handler
= &proc_dointvec_minmax
,
1165 .strategy
= &sysctl_intvec
,
1170 .ctl_name
= VM_LAPTOP_MODE
,
1171 .procname
= "laptop_mode",
1172 .data
= &laptop_mode
,
1173 .maxlen
= sizeof(laptop_mode
),
1175 .proc_handler
= &proc_dointvec_jiffies
,
1176 .strategy
= &sysctl_jiffies
,
1179 .ctl_name
= VM_BLOCK_DUMP
,
1180 .procname
= "block_dump",
1181 .data
= &block_dump
,
1182 .maxlen
= sizeof(block_dump
),
1184 .proc_handler
= &proc_dointvec
,
1185 .strategy
= &sysctl_intvec
,
1189 .ctl_name
= VM_VFS_CACHE_PRESSURE
,
1190 .procname
= "vfs_cache_pressure",
1191 .data
= &sysctl_vfs_cache_pressure
,
1192 .maxlen
= sizeof(sysctl_vfs_cache_pressure
),
1194 .proc_handler
= &proc_dointvec
,
1195 .strategy
= &sysctl_intvec
,
1198 #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1200 .ctl_name
= VM_LEGACY_VA_LAYOUT
,
1201 .procname
= "legacy_va_layout",
1202 .data
= &sysctl_legacy_va_layout
,
1203 .maxlen
= sizeof(sysctl_legacy_va_layout
),
1205 .proc_handler
= &proc_dointvec
,
1206 .strategy
= &sysctl_intvec
,
1212 .ctl_name
= VM_ZONE_RECLAIM_MODE
,
1213 .procname
= "zone_reclaim_mode",
1214 .data
= &zone_reclaim_mode
,
1215 .maxlen
= sizeof(zone_reclaim_mode
),
1217 .proc_handler
= &proc_dointvec
,
1218 .strategy
= &sysctl_intvec
,
1222 .ctl_name
= VM_MIN_UNMAPPED
,
1223 .procname
= "min_unmapped_ratio",
1224 .data
= &sysctl_min_unmapped_ratio
,
1225 .maxlen
= sizeof(sysctl_min_unmapped_ratio
),
1227 .proc_handler
= &sysctl_min_unmapped_ratio_sysctl_handler
,
1228 .strategy
= &sysctl_intvec
,
1230 .extra2
= &one_hundred
,
1233 .ctl_name
= VM_MIN_SLAB
,
1234 .procname
= "min_slab_ratio",
1235 .data
= &sysctl_min_slab_ratio
,
1236 .maxlen
= sizeof(sysctl_min_slab_ratio
),
1238 .proc_handler
= &sysctl_min_slab_ratio_sysctl_handler
,
1239 .strategy
= &sysctl_intvec
,
1241 .extra2
= &one_hundred
,
1246 .ctl_name
= CTL_UNNUMBERED
,
1247 .procname
= "stat_interval",
1248 .data
= &sysctl_stat_interval
,
1249 .maxlen
= sizeof(sysctl_stat_interval
),
1251 .proc_handler
= &proc_dointvec_jiffies
,
1252 .strategy
= &sysctl_jiffies
,
1255 #ifdef CONFIG_SECURITY
1257 .ctl_name
= CTL_UNNUMBERED
,
1258 .procname
= "mmap_min_addr",
1259 .data
= &mmap_min_addr
,
1260 .maxlen
= sizeof(unsigned long),
1262 .proc_handler
= &proc_doulongvec_minmax
,
1267 .ctl_name
= CTL_UNNUMBERED
,
1268 .procname
= "numa_zonelist_order",
1269 .data
= &numa_zonelist_order
,
1270 .maxlen
= NUMA_ZONELIST_ORDER_LEN
,
1272 .proc_handler
= &numa_zonelist_order_handler
,
1273 .strategy
= &sysctl_string
,
1276 #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
1277 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1279 .ctl_name
= VM_VDSO_ENABLED
,
1280 .procname
= "vdso_enabled",
1281 .data
= &vdso_enabled
,
1282 .maxlen
= sizeof(vdso_enabled
),
1284 .proc_handler
= &proc_dointvec
,
1285 .strategy
= &sysctl_intvec
,
1289 #ifdef CONFIG_HIGHMEM
1291 .ctl_name
= CTL_UNNUMBERED
,
1292 .procname
= "highmem_is_dirtyable",
1293 .data
= &vm_highmem_is_dirtyable
,
1294 .maxlen
= sizeof(vm_highmem_is_dirtyable
),
1296 .proc_handler
= &proc_dointvec_minmax
,
1297 .strategy
= &sysctl_intvec
,
1302 #ifdef CONFIG_UNEVICTABLE_LRU
1304 .ctl_name
= CTL_UNNUMBERED
,
1305 .procname
= "scan_unevictable_pages",
1306 .data
= &scan_unevictable_pages
,
1307 .maxlen
= sizeof(scan_unevictable_pages
),
1309 .proc_handler
= &scan_unevictable_handler
,
1313 * NOTE: do not add new entries to this table unless you have read
1314 * Documentation/sysctl/ctl_unnumbered.txt
1319 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1320 static struct ctl_table binfmt_misc_table
[] = {
1325 static struct ctl_table fs_table
[] = {
1327 .ctl_name
= FS_NRINODE
,
1328 .procname
= "inode-nr",
1329 .data
= &inodes_stat
,
1330 .maxlen
= 2*sizeof(int),
1332 .proc_handler
= &proc_dointvec
,
1335 .ctl_name
= FS_STATINODE
,
1336 .procname
= "inode-state",
1337 .data
= &inodes_stat
,
1338 .maxlen
= 7*sizeof(int),
1340 .proc_handler
= &proc_dointvec
,
1343 .procname
= "file-nr",
1344 .data
= &files_stat
,
1345 .maxlen
= 3*sizeof(int),
1347 .proc_handler
= &proc_nr_files
,
1350 .ctl_name
= FS_MAXFILE
,
1351 .procname
= "file-max",
1352 .data
= &files_stat
.max_files
,
1353 .maxlen
= sizeof(int),
1355 .proc_handler
= &proc_dointvec
,
1358 .ctl_name
= CTL_UNNUMBERED
,
1359 .procname
= "nr_open",
1360 .data
= &sysctl_nr_open
,
1361 .maxlen
= sizeof(int),
1363 .proc_handler
= &proc_dointvec_minmax
,
1364 .extra1
= &sysctl_nr_open_min
,
1365 .extra2
= &sysctl_nr_open_max
,
1368 .ctl_name
= FS_DENTRY
,
1369 .procname
= "dentry-state",
1370 .data
= &dentry_stat
,
1371 .maxlen
= 6*sizeof(int),
1373 .proc_handler
= &proc_dointvec
,
1376 .ctl_name
= FS_OVERFLOWUID
,
1377 .procname
= "overflowuid",
1378 .data
= &fs_overflowuid
,
1379 .maxlen
= sizeof(int),
1381 .proc_handler
= &proc_dointvec_minmax
,
1382 .strategy
= &sysctl_intvec
,
1383 .extra1
= &minolduid
,
1384 .extra2
= &maxolduid
,
1387 .ctl_name
= FS_OVERFLOWGID
,
1388 .procname
= "overflowgid",
1389 .data
= &fs_overflowgid
,
1390 .maxlen
= sizeof(int),
1392 .proc_handler
= &proc_dointvec_minmax
,
1393 .strategy
= &sysctl_intvec
,
1394 .extra1
= &minolduid
,
1395 .extra2
= &maxolduid
,
1397 #ifdef CONFIG_FILE_LOCKING
1399 .ctl_name
= FS_LEASES
,
1400 .procname
= "leases-enable",
1401 .data
= &leases_enable
,
1402 .maxlen
= sizeof(int),
1404 .proc_handler
= &proc_dointvec
,
1407 #ifdef CONFIG_DNOTIFY
1409 .ctl_name
= FS_DIR_NOTIFY
,
1410 .procname
= "dir-notify-enable",
1411 .data
= &dir_notify_enable
,
1412 .maxlen
= sizeof(int),
1414 .proc_handler
= &proc_dointvec
,
1418 #ifdef CONFIG_FILE_LOCKING
1420 .ctl_name
= FS_LEASE_TIME
,
1421 .procname
= "lease-break-time",
1422 .data
= &lease_break_time
,
1423 .maxlen
= sizeof(int),
1425 .proc_handler
= &proc_dointvec
,
1430 .procname
= "aio-nr",
1432 .maxlen
= sizeof(aio_nr
),
1434 .proc_handler
= &proc_doulongvec_minmax
,
1437 .procname
= "aio-max-nr",
1438 .data
= &aio_max_nr
,
1439 .maxlen
= sizeof(aio_max_nr
),
1441 .proc_handler
= &proc_doulongvec_minmax
,
1443 #endif /* CONFIG_AIO */
1444 #ifdef CONFIG_INOTIFY_USER
1446 .ctl_name
= FS_INOTIFY
,
1447 .procname
= "inotify",
1449 .child
= inotify_table
,
1454 .procname
= "epoll",
1456 .child
= epoll_table
,
1461 .ctl_name
= KERN_SETUID_DUMPABLE
,
1462 .procname
= "suid_dumpable",
1463 .data
= &suid_dumpable
,
1464 .maxlen
= sizeof(int),
1466 .proc_handler
= &proc_dointvec_minmax
,
1467 .strategy
= &sysctl_intvec
,
1471 #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1473 .ctl_name
= CTL_UNNUMBERED
,
1474 .procname
= "binfmt_misc",
1476 .child
= binfmt_misc_table
,
1480 * NOTE: do not add new entries to this table unless you have read
1481 * Documentation/sysctl/ctl_unnumbered.txt
1486 static struct ctl_table debug_table
[] = {
1487 #if defined(CONFIG_X86) || defined(CONFIG_PPC)
1489 .ctl_name
= CTL_UNNUMBERED
,
1490 .procname
= "exception-trace",
1491 .data
= &show_unhandled_signals
,
1492 .maxlen
= sizeof(int),
1494 .proc_handler
= proc_dointvec
1500 static struct ctl_table dev_table
[] = {
1504 static DEFINE_SPINLOCK(sysctl_lock
);
1506 /* called under sysctl_lock */
1507 static int use_table(struct ctl_table_header
*p
)
1509 if (unlikely(p
->unregistering
))
1515 /* called under sysctl_lock */
1516 static void unuse_table(struct ctl_table_header
*p
)
1519 if (unlikely(p
->unregistering
))
1520 complete(p
->unregistering
);
1523 /* called under sysctl_lock, will reacquire if has to wait */
1524 static void start_unregistering(struct ctl_table_header
*p
)
1527 * if p->used is 0, nobody will ever touch that entry again;
1528 * we'll eliminate all paths to it before dropping sysctl_lock
1530 if (unlikely(p
->used
)) {
1531 struct completion wait
;
1532 init_completion(&wait
);
1533 p
->unregistering
= &wait
;
1534 spin_unlock(&sysctl_lock
);
1535 wait_for_completion(&wait
);
1536 spin_lock(&sysctl_lock
);
1538 /* anything non-NULL; we'll never dereference it */
1539 p
->unregistering
= ERR_PTR(-EINVAL
);
1542 * do not remove from the list until nobody holds it; walking the
1543 * list in do_sysctl() relies on that.
1545 list_del_init(&p
->ctl_entry
);
1548 void sysctl_head_get(struct ctl_table_header
*head
)
1550 spin_lock(&sysctl_lock
);
1552 spin_unlock(&sysctl_lock
);
1555 void sysctl_head_put(struct ctl_table_header
*head
)
1557 spin_lock(&sysctl_lock
);
1560 spin_unlock(&sysctl_lock
);
1563 struct ctl_table_header
*sysctl_head_grab(struct ctl_table_header
*head
)
1567 spin_lock(&sysctl_lock
);
1568 if (!use_table(head
))
1569 head
= ERR_PTR(-ENOENT
);
1570 spin_unlock(&sysctl_lock
);
1574 void sysctl_head_finish(struct ctl_table_header
*head
)
1578 spin_lock(&sysctl_lock
);
1580 spin_unlock(&sysctl_lock
);
1583 static struct ctl_table_set
*
1584 lookup_header_set(struct ctl_table_root
*root
, struct nsproxy
*namespaces
)
1586 struct ctl_table_set
*set
= &root
->default_set
;
1588 set
= root
->lookup(root
, namespaces
);
1592 static struct list_head
*
1593 lookup_header_list(struct ctl_table_root
*root
, struct nsproxy
*namespaces
)
1595 struct ctl_table_set
*set
= lookup_header_set(root
, namespaces
);
1599 struct ctl_table_header
*__sysctl_head_next(struct nsproxy
*namespaces
,
1600 struct ctl_table_header
*prev
)
1602 struct ctl_table_root
*root
;
1603 struct list_head
*header_list
;
1604 struct ctl_table_header
*head
;
1605 struct list_head
*tmp
;
1607 spin_lock(&sysctl_lock
);
1610 tmp
= &prev
->ctl_entry
;
1614 tmp
= &root_table_header
.ctl_entry
;
1616 head
= list_entry(tmp
, struct ctl_table_header
, ctl_entry
);
1618 if (!use_table(head
))
1620 spin_unlock(&sysctl_lock
);
1625 header_list
= lookup_header_list(root
, namespaces
);
1626 if (tmp
!= header_list
)
1630 root
= list_entry(root
->root_list
.next
,
1631 struct ctl_table_root
, root_list
);
1632 if (root
== &sysctl_table_root
)
1634 header_list
= lookup_header_list(root
, namespaces
);
1635 } while (list_empty(header_list
));
1636 tmp
= header_list
->next
;
1639 spin_unlock(&sysctl_lock
);
1643 struct ctl_table_header
*sysctl_head_next(struct ctl_table_header
*prev
)
1645 return __sysctl_head_next(current
->nsproxy
, prev
);
1648 void register_sysctl_root(struct ctl_table_root
*root
)
1650 spin_lock(&sysctl_lock
);
1651 list_add_tail(&root
->root_list
, &sysctl_table_root
.root_list
);
1652 spin_unlock(&sysctl_lock
);
1655 #ifdef CONFIG_SYSCTL_SYSCALL
1656 /* Perform the actual read/write of a sysctl table entry. */
1657 static int do_sysctl_strategy(struct ctl_table_root
*root
,
1658 struct ctl_table
*table
,
1659 void __user
*oldval
, size_t __user
*oldlenp
,
1660 void __user
*newval
, size_t newlen
)
1668 if (sysctl_perm(root
, table
, op
))
1671 if (table
->strategy
) {
1672 rc
= table
->strategy(table
, oldval
, oldlenp
, newval
, newlen
);
1679 /* If there is no strategy routine, or if the strategy returns
1680 * zero, proceed with automatic r/w */
1681 if (table
->data
&& table
->maxlen
) {
1682 rc
= sysctl_data(table
, oldval
, oldlenp
, newval
, newlen
);
1689 static int parse_table(int __user
*name
, int nlen
,
1690 void __user
*oldval
, size_t __user
*oldlenp
,
1691 void __user
*newval
, size_t newlen
,
1692 struct ctl_table_root
*root
,
1693 struct ctl_table
*table
)
1699 if (get_user(n
, name
))
1701 for ( ; table
->ctl_name
|| table
->procname
; table
++) {
1702 if (!table
->ctl_name
)
1704 if (n
== table
->ctl_name
) {
1707 if (sysctl_perm(root
, table
, MAY_EXEC
))
1711 table
= table
->child
;
1714 error
= do_sysctl_strategy(root
, table
,
1723 int do_sysctl(int __user
*name
, int nlen
, void __user
*oldval
, size_t __user
*oldlenp
,
1724 void __user
*newval
, size_t newlen
)
1726 struct ctl_table_header
*head
;
1727 int error
= -ENOTDIR
;
1729 if (nlen
<= 0 || nlen
>= CTL_MAXNAME
)
1733 if (!oldlenp
|| get_user(old_len
, oldlenp
))
1737 for (head
= sysctl_head_next(NULL
); head
;
1738 head
= sysctl_head_next(head
)) {
1739 error
= parse_table(name
, nlen
, oldval
, oldlenp
,
1741 head
->root
, head
->ctl_table
);
1742 if (error
!= -ENOTDIR
) {
1743 sysctl_head_finish(head
);
1750 SYSCALL_DEFINE1(sysctl
, struct __sysctl_args __user
*, args
)
1752 struct __sysctl_args tmp
;
1755 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
1758 error
= deprecated_sysctl_warning(&tmp
);
1763 error
= do_sysctl(tmp
.name
, tmp
.nlen
, tmp
.oldval
, tmp
.oldlenp
,
1764 tmp
.newval
, tmp
.newlen
);
1769 #endif /* CONFIG_SYSCTL_SYSCALL */
1772 * sysctl_perm does NOT grant the superuser all rights automatically, because
1773 * some sysctl variables are readonly even to root.
1776 static int test_perm(int mode
, int op
)
1778 if (!current_euid())
1780 else if (in_egroup_p(0))
1782 if ((op
& ~mode
& (MAY_READ
|MAY_WRITE
|MAY_EXEC
)) == 0)
1787 int sysctl_perm(struct ctl_table_root
*root
, struct ctl_table
*table
, int op
)
1792 error
= security_sysctl(table
, op
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
));
1796 if (root
->permissions
)
1797 mode
= root
->permissions(root
, current
->nsproxy
, table
);
1801 return test_perm(mode
, op
);
1804 static void sysctl_set_parent(struct ctl_table
*parent
, struct ctl_table
*table
)
1806 for (; table
->ctl_name
|| table
->procname
; table
++) {
1807 table
->parent
= parent
;
1809 sysctl_set_parent(table
, table
->child
);
1813 static __init
int sysctl_init(void)
1815 sysctl_set_parent(NULL
, root_table
);
1816 #ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1819 err
= sysctl_check_table(current
->nsproxy
, root_table
);
1825 core_initcall(sysctl_init
);
1827 static struct ctl_table
*is_branch_in(struct ctl_table
*branch
,
1828 struct ctl_table
*table
)
1830 struct ctl_table
*p
;
1831 const char *s
= branch
->procname
;
1833 /* branch should have named subdirectory as its first element */
1834 if (!s
|| !branch
->child
)
1837 /* ... and nothing else */
1838 if (branch
[1].procname
|| branch
[1].ctl_name
)
1841 /* table should contain subdirectory with the same name */
1842 for (p
= table
; p
->procname
|| p
->ctl_name
; p
++) {
1845 if (p
->procname
&& strcmp(p
->procname
, s
) == 0)
1851 /* see if attaching q to p would be an improvement */
1852 static void try_attach(struct ctl_table_header
*p
, struct ctl_table_header
*q
)
1854 struct ctl_table
*to
= p
->ctl_table
, *by
= q
->ctl_table
;
1855 struct ctl_table
*next
;
1857 int not_in_parent
= !p
->attached_by
;
1859 while ((next
= is_branch_in(by
, to
)) != NULL
) {
1860 if (by
== q
->attached_by
)
1862 if (to
== p
->attached_by
)
1868 if (is_better
&& not_in_parent
) {
1869 q
->attached_by
= by
;
1870 q
->attached_to
= to
;
1876 * __register_sysctl_paths - register a sysctl hierarchy
1877 * @root: List of sysctl headers to register on
1878 * @namespaces: Data to compute which lists of sysctl entries are visible
1879 * @path: The path to the directory the sysctl table is in.
1880 * @table: the top-level table structure
1882 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1883 * array. A completely 0 filled entry terminates the table.
1885 * The members of the &struct ctl_table structure are used as follows:
1887 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1888 * must be unique within that level of sysctl
1890 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1891 * enter a sysctl file
1893 * data - a pointer to data for use by proc_handler
1895 * maxlen - the maximum size in bytes of the data
1897 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1899 * child - a pointer to the child sysctl table if this entry is a directory, or
1902 * proc_handler - the text handler routine (described below)
1904 * strategy - the strategy routine (described below)
1906 * de - for internal use by the sysctl routines
1908 * extra1, extra2 - extra pointers usable by the proc handler routines
1910 * Leaf nodes in the sysctl tree will be represented by a single file
1911 * under /proc; non-leaf nodes will be represented by directories.
1913 * sysctl(2) can automatically manage read and write requests through
1914 * the sysctl table. The data and maxlen fields of the ctl_table
1915 * struct enable minimal validation of the values being written to be
1916 * performed, and the mode field allows minimal authentication.
1918 * More sophisticated management can be enabled by the provision of a
1919 * strategy routine with the table entry. This will be called before
1920 * any automatic read or write of the data is performed.
1922 * The strategy routine may return
1924 * < 0 - Error occurred (error is passed to user process)
1926 * 0 - OK - proceed with automatic read or write.
1928 * > 0 - OK - read or write has been done by the strategy routine, so
1929 * return immediately.
1931 * There must be a proc_handler routine for any terminal nodes
1932 * mirrored under /proc/sys (non-terminals are handled by a built-in
1933 * directory handler). Several default handlers are available to
1934 * cover common cases -
1936 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1937 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1938 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1940 * It is the handler's job to read the input buffer from user memory
1941 * and process it. The handler should return 0 on success.
1943 * This routine returns %NULL on a failure to register, and a pointer
1944 * to the table header on success.
1946 struct ctl_table_header
*__register_sysctl_paths(
1947 struct ctl_table_root
*root
,
1948 struct nsproxy
*namespaces
,
1949 const struct ctl_path
*path
, struct ctl_table
*table
)
1951 struct ctl_table_header
*header
;
1952 struct ctl_table
*new, **prevp
;
1953 unsigned int n
, npath
;
1954 struct ctl_table_set
*set
;
1956 /* Count the path components */
1957 for (npath
= 0; path
[npath
].ctl_name
|| path
[npath
].procname
; ++npath
)
1961 * For each path component, allocate a 2-element ctl_table array.
1962 * The first array element will be filled with the sysctl entry
1963 * for this, the second will be the sentinel (ctl_name == 0).
1965 * We allocate everything in one go so that we don't have to
1966 * worry about freeing additional memory in unregister_sysctl_table.
1968 header
= kzalloc(sizeof(struct ctl_table_header
) +
1969 (2 * npath
* sizeof(struct ctl_table
)), GFP_KERNEL
);
1973 new = (struct ctl_table
*) (header
+ 1);
1975 /* Now connect the dots */
1976 prevp
= &header
->ctl_table
;
1977 for (n
= 0; n
< npath
; ++n
, ++path
) {
1978 /* Copy the procname */
1979 new->procname
= path
->procname
;
1980 new->ctl_name
= path
->ctl_name
;
1984 prevp
= &new->child
;
1989 header
->ctl_table_arg
= table
;
1991 INIT_LIST_HEAD(&header
->ctl_entry
);
1993 header
->unregistering
= NULL
;
1994 header
->root
= root
;
1995 sysctl_set_parent(NULL
, header
->ctl_table
);
1997 #ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1998 if (sysctl_check_table(namespaces
, header
->ctl_table
)) {
2003 spin_lock(&sysctl_lock
);
2004 header
->set
= lookup_header_set(root
, namespaces
);
2005 header
->attached_by
= header
->ctl_table
;
2006 header
->attached_to
= root_table
;
2007 header
->parent
= &root_table_header
;
2008 for (set
= header
->set
; set
; set
= set
->parent
) {
2009 struct ctl_table_header
*p
;
2010 list_for_each_entry(p
, &set
->list
, ctl_entry
) {
2011 if (p
->unregistering
)
2013 try_attach(p
, header
);
2016 header
->parent
->count
++;
2017 list_add_tail(&header
->ctl_entry
, &header
->set
->list
);
2018 spin_unlock(&sysctl_lock
);
2024 * register_sysctl_table_path - register a sysctl table hierarchy
2025 * @path: The path to the directory the sysctl table is in.
2026 * @table: the top-level table structure
2028 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
2029 * array. A completely 0 filled entry terminates the table.
2031 * See __register_sysctl_paths for more details.
2033 struct ctl_table_header
*register_sysctl_paths(const struct ctl_path
*path
,
2034 struct ctl_table
*table
)
2036 return __register_sysctl_paths(&sysctl_table_root
, current
->nsproxy
,
2041 * register_sysctl_table - register a sysctl table hierarchy
2042 * @table: the top-level table structure
2044 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
2045 * array. A completely 0 filled entry terminates the table.
2047 * See register_sysctl_paths for more details.
2049 struct ctl_table_header
*register_sysctl_table(struct ctl_table
*table
)
2051 static const struct ctl_path null_path
[] = { {} };
2053 return register_sysctl_paths(null_path
, table
);
2057 * unregister_sysctl_table - unregister a sysctl table hierarchy
2058 * @header: the header returned from register_sysctl_table
2060 * Unregisters the sysctl table and all children. proc entries may not
2061 * actually be removed until they are no longer used by anyone.
2063 void unregister_sysctl_table(struct ctl_table_header
* header
)
2070 spin_lock(&sysctl_lock
);
2071 start_unregistering(header
);
2072 if (!--header
->parent
->count
) {
2074 kfree(header
->parent
);
2076 if (!--header
->count
)
2078 spin_unlock(&sysctl_lock
);
2081 int sysctl_is_seen(struct ctl_table_header
*p
)
2083 struct ctl_table_set
*set
= p
->set
;
2085 spin_lock(&sysctl_lock
);
2086 if (p
->unregistering
)
2088 else if (!set
->is_seen
)
2091 res
= set
->is_seen(set
);
2092 spin_unlock(&sysctl_lock
);
2096 void setup_sysctl_set(struct ctl_table_set
*p
,
2097 struct ctl_table_set
*parent
,
2098 int (*is_seen
)(struct ctl_table_set
*))
2100 INIT_LIST_HEAD(&p
->list
);
2101 p
->parent
= parent
? parent
: &sysctl_table_root
.default_set
;
2102 p
->is_seen
= is_seen
;
2105 #else /* !CONFIG_SYSCTL */
2106 struct ctl_table_header
*register_sysctl_table(struct ctl_table
* table
)
2111 struct ctl_table_header
*register_sysctl_paths(const struct ctl_path
*path
,
2112 struct ctl_table
*table
)
2117 void unregister_sysctl_table(struct ctl_table_header
* table
)
2121 void setup_sysctl_set(struct ctl_table_set
*p
,
2122 struct ctl_table_set
*parent
,
2123 int (*is_seen
)(struct ctl_table_set
*))
2127 void sysctl_head_put(struct ctl_table_header
*head
)
2131 #endif /* CONFIG_SYSCTL */
2137 #ifdef CONFIG_PROC_SYSCTL
2139 static int _proc_do_string(void* data
, int maxlen
, int write
,
2140 struct file
*filp
, void __user
*buffer
,
2141 size_t *lenp
, loff_t
*ppos
)
2147 if (!data
|| !maxlen
|| !*lenp
) {
2155 while (len
< *lenp
) {
2156 if (get_user(c
, p
++))
2158 if (c
== 0 || c
== '\n')
2164 if(copy_from_user(data
, buffer
, len
))
2166 ((char *) data
)[len
] = 0;
2184 if(copy_to_user(buffer
, data
, len
))
2187 if(put_user('\n', ((char __user
*) buffer
) + len
))
2198 * proc_dostring - read a string sysctl
2199 * @table: the sysctl table
2200 * @write: %TRUE if this is a write to the sysctl file
2201 * @filp: the file structure
2202 * @buffer: the user buffer
2203 * @lenp: the size of the user buffer
2204 * @ppos: file position
2206 * Reads/writes a string from/to the user buffer. If the kernel
2207 * buffer provided is not large enough to hold the string, the
2208 * string is truncated. The copied string is %NULL-terminated.
2209 * If the string is being read by the user process, it is copied
2210 * and a newline '\n' is added. It is truncated if the buffer is
2213 * Returns 0 on success.
2215 int proc_dostring(struct ctl_table
*table
, int write
, struct file
*filp
,
2216 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2218 return _proc_do_string(table
->data
, table
->maxlen
, write
, filp
,
2219 buffer
, lenp
, ppos
);
2223 static int do_proc_dointvec_conv(int *negp
, unsigned long *lvalp
,
2225 int write
, void *data
)
2228 *valp
= *negp
? -*lvalp
: *lvalp
;
2233 *lvalp
= (unsigned long)-val
;
2236 *lvalp
= (unsigned long)val
;
2242 static int __do_proc_dointvec(void *tbl_data
, struct ctl_table
*table
,
2243 int write
, struct file
*filp
, void __user
*buffer
,
2244 size_t *lenp
, loff_t
*ppos
,
2245 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
2246 int write
, void *data
),
2249 #define TMPBUFLEN 21
2250 int *i
, vleft
, first
=1, neg
, val
;
2254 char buf
[TMPBUFLEN
], *p
;
2255 char __user
*s
= buffer
;
2257 if (!tbl_data
|| !table
->maxlen
|| !*lenp
||
2258 (*ppos
&& !write
)) {
2263 i
= (int *) tbl_data
;
2264 vleft
= table
->maxlen
/ sizeof(*i
);
2268 conv
= do_proc_dointvec_conv
;
2270 for (; left
&& vleft
--; i
++, first
=0) {
2285 if (len
> sizeof(buf
) - 1)
2286 len
= sizeof(buf
) - 1;
2287 if (copy_from_user(buf
, s
, len
))
2291 if (*p
== '-' && left
> 1) {
2295 if (*p
< '0' || *p
> '9')
2298 lval
= simple_strtoul(p
, &p
, 0);
2301 if ((len
< left
) && *p
&& !isspace(*p
))
2308 if (conv(&neg
, &lval
, i
, 1, data
))
2315 if (conv(&neg
, &lval
, i
, 0, data
))
2318 sprintf(p
, "%s%lu", neg
? "-" : "", lval
);
2322 if(copy_to_user(s
, buf
, len
))
2329 if (!write
&& !first
&& left
) {
2330 if(put_user('\n', s
))
2337 if (get_user(c
, s
++))
2352 static int do_proc_dointvec(struct ctl_table
*table
, int write
, struct file
*filp
,
2353 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
,
2354 int (*conv
)(int *negp
, unsigned long *lvalp
, int *valp
,
2355 int write
, void *data
),
2358 return __do_proc_dointvec(table
->data
, table
, write
, filp
,
2359 buffer
, lenp
, ppos
, conv
, data
);
2363 * proc_dointvec - read a vector of integers
2364 * @table: the sysctl table
2365 * @write: %TRUE if this is a write to the sysctl file
2366 * @filp: the file structure
2367 * @buffer: the user buffer
2368 * @lenp: the size of the user buffer
2369 * @ppos: file position
2371 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2372 * values from/to the user buffer, treated as an ASCII string.
2374 * Returns 0 on success.
2376 int proc_dointvec(struct ctl_table
*table
, int write
, struct file
*filp
,
2377 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2379 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2384 * Taint values can only be increased
2385 * This means we can safely use a temporary.
2387 static int proc_taint(struct ctl_table
*table
, int write
, struct file
*filp
,
2388 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2391 unsigned long tmptaint
= get_taint();
2394 if (write
&& !capable(CAP_SYS_ADMIN
))
2399 err
= proc_doulongvec_minmax(&t
, write
, filp
, buffer
, lenp
, ppos
);
2405 * Poor man's atomic or. Not worth adding a primitive
2406 * to everyone's atomic.h for this
2409 for (i
= 0; i
< BITS_PER_LONG
&& tmptaint
>> i
; i
++) {
2410 if ((tmptaint
>> i
) & 1)
2418 struct do_proc_dointvec_minmax_conv_param
{
2423 static int do_proc_dointvec_minmax_conv(int *negp
, unsigned long *lvalp
,
2425 int write
, void *data
)
2427 struct do_proc_dointvec_minmax_conv_param
*param
= data
;
2429 int val
= *negp
? -*lvalp
: *lvalp
;
2430 if ((param
->min
&& *param
->min
> val
) ||
2431 (param
->max
&& *param
->max
< val
))
2438 *lvalp
= (unsigned long)-val
;
2441 *lvalp
= (unsigned long)val
;
2448 * proc_dointvec_minmax - read a vector of integers with min/max values
2449 * @table: the sysctl table
2450 * @write: %TRUE if this is a write to the sysctl file
2451 * @filp: the file structure
2452 * @buffer: the user buffer
2453 * @lenp: the size of the user buffer
2454 * @ppos: file position
2456 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2457 * values from/to the user buffer, treated as an ASCII string.
2459 * This routine will ensure the values are within the range specified by
2460 * table->extra1 (min) and table->extra2 (max).
2462 * Returns 0 on success.
2464 int proc_dointvec_minmax(struct ctl_table
*table
, int write
, struct file
*filp
,
2465 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2467 struct do_proc_dointvec_minmax_conv_param param
= {
2468 .min
= (int *) table
->extra1
,
2469 .max
= (int *) table
->extra2
,
2471 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2472 do_proc_dointvec_minmax_conv
, ¶m
);
2475 static int __do_proc_doulongvec_minmax(void *data
, struct ctl_table
*table
, int write
,
2477 void __user
*buffer
,
2478 size_t *lenp
, loff_t
*ppos
,
2479 unsigned long convmul
,
2480 unsigned long convdiv
)
2482 #define TMPBUFLEN 21
2483 unsigned long *i
, *min
, *max
, val
;
2484 int vleft
, first
=1, neg
;
2486 char buf
[TMPBUFLEN
], *p
;
2487 char __user
*s
= buffer
;
2489 if (!data
|| !table
->maxlen
|| !*lenp
||
2490 (*ppos
&& !write
)) {
2495 i
= (unsigned long *) data
;
2496 min
= (unsigned long *) table
->extra1
;
2497 max
= (unsigned long *) table
->extra2
;
2498 vleft
= table
->maxlen
/ sizeof(unsigned long);
2501 for (; left
&& vleft
--; i
++, min
++, max
++, first
=0) {
2516 if (len
> TMPBUFLEN
-1)
2518 if (copy_from_user(buf
, s
, len
))
2522 if (*p
== '-' && left
> 1) {
2526 if (*p
< '0' || *p
> '9')
2528 val
= simple_strtoul(p
, &p
, 0) * convmul
/ convdiv
;
2530 if ((len
< left
) && *p
&& !isspace(*p
))
2539 if ((min
&& val
< *min
) || (max
&& val
> *max
))
2546 sprintf(p
, "%lu", convdiv
* (*i
) / convmul
);
2550 if(copy_to_user(s
, buf
, len
))
2557 if (!write
&& !first
&& left
) {
2558 if(put_user('\n', s
))
2565 if (get_user(c
, s
++))
2580 static int do_proc_doulongvec_minmax(struct ctl_table
*table
, int write
,
2582 void __user
*buffer
,
2583 size_t *lenp
, loff_t
*ppos
,
2584 unsigned long convmul
,
2585 unsigned long convdiv
)
2587 return __do_proc_doulongvec_minmax(table
->data
, table
, write
,
2588 filp
, buffer
, lenp
, ppos
, convmul
, convdiv
);
2592 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2593 * @table: the sysctl table
2594 * @write: %TRUE if this is a write to the sysctl file
2595 * @filp: the file structure
2596 * @buffer: the user buffer
2597 * @lenp: the size of the user buffer
2598 * @ppos: file position
2600 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2601 * values from/to the user buffer, treated as an ASCII string.
2603 * This routine will ensure the values are within the range specified by
2604 * table->extra1 (min) and table->extra2 (max).
2606 * Returns 0 on success.
2608 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
, struct file
*filp
,
2609 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2611 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
, lenp
, ppos
, 1l, 1l);
2615 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2616 * @table: the sysctl table
2617 * @write: %TRUE if this is a write to the sysctl file
2618 * @filp: the file structure
2619 * @buffer: the user buffer
2620 * @lenp: the size of the user buffer
2621 * @ppos: file position
2623 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2624 * values from/to the user buffer, treated as an ASCII string. The values
2625 * are treated as milliseconds, and converted to jiffies when they are stored.
2627 * This routine will ensure the values are within the range specified by
2628 * table->extra1 (min) and table->extra2 (max).
2630 * Returns 0 on success.
2632 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2634 void __user
*buffer
,
2635 size_t *lenp
, loff_t
*ppos
)
2637 return do_proc_doulongvec_minmax(table
, write
, filp
, buffer
,
2638 lenp
, ppos
, HZ
, 1000l);
2642 static int do_proc_dointvec_jiffies_conv(int *negp
, unsigned long *lvalp
,
2644 int write
, void *data
)
2647 if (*lvalp
> LONG_MAX
/ HZ
)
2649 *valp
= *negp
? -(*lvalp
*HZ
) : (*lvalp
*HZ
);
2655 lval
= (unsigned long)-val
;
2658 lval
= (unsigned long)val
;
2665 static int do_proc_dointvec_userhz_jiffies_conv(int *negp
, unsigned long *lvalp
,
2667 int write
, void *data
)
2670 if (USER_HZ
< HZ
&& *lvalp
> (LONG_MAX
/ HZ
) * USER_HZ
)
2672 *valp
= clock_t_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2678 lval
= (unsigned long)-val
;
2681 lval
= (unsigned long)val
;
2683 *lvalp
= jiffies_to_clock_t(lval
);
2688 static int do_proc_dointvec_ms_jiffies_conv(int *negp
, unsigned long *lvalp
,
2690 int write
, void *data
)
2693 *valp
= msecs_to_jiffies(*negp
? -*lvalp
: *lvalp
);
2699 lval
= (unsigned long)-val
;
2702 lval
= (unsigned long)val
;
2704 *lvalp
= jiffies_to_msecs(lval
);
2710 * proc_dointvec_jiffies - read a vector of integers as seconds
2711 * @table: the sysctl table
2712 * @write: %TRUE if this is a write to the sysctl file
2713 * @filp: the file structure
2714 * @buffer: the user buffer
2715 * @lenp: the size of the user buffer
2716 * @ppos: file position
2718 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2719 * values from/to the user buffer, treated as an ASCII string.
2720 * The values read are assumed to be in seconds, and are converted into
2723 * Returns 0 on success.
2725 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2726 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2728 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2729 do_proc_dointvec_jiffies_conv
,NULL
);
2733 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2734 * @table: the sysctl table
2735 * @write: %TRUE if this is a write to the sysctl file
2736 * @filp: the file structure
2737 * @buffer: the user buffer
2738 * @lenp: the size of the user buffer
2739 * @ppos: pointer to the file position
2741 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2742 * values from/to the user buffer, treated as an ASCII string.
2743 * The values read are assumed to be in 1/USER_HZ seconds, and
2744 * are converted into jiffies.
2746 * Returns 0 on success.
2748 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2749 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2751 return do_proc_dointvec(table
,write
,filp
,buffer
,lenp
,ppos
,
2752 do_proc_dointvec_userhz_jiffies_conv
,NULL
);
2756 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2757 * @table: the sysctl table
2758 * @write: %TRUE if this is a write to the sysctl file
2759 * @filp: the file structure
2760 * @buffer: the user buffer
2761 * @lenp: the size of the user buffer
2762 * @ppos: file position
2763 * @ppos: the current position in the file
2765 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2766 * values from/to the user buffer, treated as an ASCII string.
2767 * The values read are assumed to be in 1/1000 seconds, and
2768 * are converted into jiffies.
2770 * Returns 0 on success.
2772 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2773 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2775 return do_proc_dointvec(table
, write
, filp
, buffer
, lenp
, ppos
,
2776 do_proc_dointvec_ms_jiffies_conv
, NULL
);
2779 static int proc_do_cad_pid(struct ctl_table
*table
, int write
, struct file
*filp
,
2780 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2782 struct pid
*new_pid
;
2786 tmp
= pid_vnr(cad_pid
);
2788 r
= __do_proc_dointvec(&tmp
, table
, write
, filp
, buffer
,
2789 lenp
, ppos
, NULL
, NULL
);
2793 new_pid
= find_get_pid(tmp
);
2797 put_pid(xchg(&cad_pid
, new_pid
));
2801 #else /* CONFIG_PROC_FS */
2803 int proc_dostring(struct ctl_table
*table
, int write
, struct file
*filp
,
2804 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2809 int proc_dointvec(struct ctl_table
*table
, int write
, struct file
*filp
,
2810 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2815 int proc_dointvec_minmax(struct ctl_table
*table
, int write
, struct file
*filp
,
2816 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2821 int proc_dointvec_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2822 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2827 int proc_dointvec_userhz_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2828 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2833 int proc_dointvec_ms_jiffies(struct ctl_table
*table
, int write
, struct file
*filp
,
2834 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2839 int proc_doulongvec_minmax(struct ctl_table
*table
, int write
, struct file
*filp
,
2840 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2845 int proc_doulongvec_ms_jiffies_minmax(struct ctl_table
*table
, int write
,
2847 void __user
*buffer
,
2848 size_t *lenp
, loff_t
*ppos
)
2854 #endif /* CONFIG_PROC_FS */
2857 #ifdef CONFIG_SYSCTL_SYSCALL
2859 * General sysctl support routines
2862 /* The generic sysctl data routine (used if no strategy routine supplied) */
2863 int sysctl_data(struct ctl_table
*table
,
2864 void __user
*oldval
, size_t __user
*oldlenp
,
2865 void __user
*newval
, size_t newlen
)
2869 /* Get out of I don't have a variable */
2870 if (!table
->data
|| !table
->maxlen
)
2873 if (oldval
&& oldlenp
) {
2874 if (get_user(len
, oldlenp
))
2877 if (len
> table
->maxlen
)
2878 len
= table
->maxlen
;
2879 if (copy_to_user(oldval
, table
->data
, len
))
2881 if (put_user(len
, oldlenp
))
2886 if (newval
&& newlen
) {
2887 if (newlen
> table
->maxlen
)
2888 newlen
= table
->maxlen
;
2890 if (copy_from_user(table
->data
, newval
, newlen
))
2896 /* The generic string strategy routine: */
2897 int sysctl_string(struct ctl_table
*table
,
2898 void __user
*oldval
, size_t __user
*oldlenp
,
2899 void __user
*newval
, size_t newlen
)
2901 if (!table
->data
|| !table
->maxlen
)
2904 if (oldval
&& oldlenp
) {
2906 if (get_user(bufsize
, oldlenp
))
2909 size_t len
= strlen(table
->data
), copied
;
2911 /* This shouldn't trigger for a well-formed sysctl */
2912 if (len
> table
->maxlen
)
2913 len
= table
->maxlen
;
2915 /* Copy up to a max of bufsize-1 bytes of the string */
2916 copied
= (len
>= bufsize
) ? bufsize
- 1 : len
;
2918 if (copy_to_user(oldval
, table
->data
, copied
) ||
2919 put_user(0, (char __user
*)(oldval
+ copied
)))
2921 if (put_user(len
, oldlenp
))
2925 if (newval
&& newlen
) {
2926 size_t len
= newlen
;
2927 if (len
> table
->maxlen
)
2928 len
= table
->maxlen
;
2929 if(copy_from_user(table
->data
, newval
, len
))
2931 if (len
== table
->maxlen
)
2933 ((char *) table
->data
)[len
] = 0;
2939 * This function makes sure that all of the integers in the vector
2940 * are between the minimum and maximum values given in the arrays
2941 * table->extra1 and table->extra2, respectively.
2943 int sysctl_intvec(struct ctl_table
*table
,
2944 void __user
*oldval
, size_t __user
*oldlenp
,
2945 void __user
*newval
, size_t newlen
)
2948 if (newval
&& newlen
) {
2949 int __user
*vec
= (int __user
*) newval
;
2950 int *min
= (int *) table
->extra1
;
2951 int *max
= (int *) table
->extra2
;
2955 if (newlen
% sizeof(int) != 0)
2958 if (!table
->extra1
&& !table
->extra2
)
2961 if (newlen
> table
->maxlen
)
2962 newlen
= table
->maxlen
;
2963 length
= newlen
/ sizeof(int);
2965 for (i
= 0; i
< length
; i
++) {
2967 if (get_user(value
, vec
+ i
))
2969 if (min
&& value
< min
[i
])
2971 if (max
&& value
> max
[i
])
2978 /* Strategy function to convert jiffies to seconds */
2979 int sysctl_jiffies(struct ctl_table
*table
,
2980 void __user
*oldval
, size_t __user
*oldlenp
,
2981 void __user
*newval
, size_t newlen
)
2983 if (oldval
&& oldlenp
) {
2986 if (get_user(olen
, oldlenp
))
2991 if (olen
< sizeof(int))
2994 val
= *(int *)(table
->data
) / HZ
;
2995 if (put_user(val
, (int __user
*)oldval
))
2997 if (put_user(sizeof(int), oldlenp
))
3001 if (newval
&& newlen
) {
3003 if (newlen
!= sizeof(int))
3005 if (get_user(new, (int __user
*)newval
))
3007 *(int *)(table
->data
) = new*HZ
;
3012 /* Strategy function to convert jiffies to seconds */
3013 int sysctl_ms_jiffies(struct ctl_table
*table
,
3014 void __user
*oldval
, size_t __user
*oldlenp
,
3015 void __user
*newval
, size_t newlen
)
3017 if (oldval
&& oldlenp
) {
3020 if (get_user(olen
, oldlenp
))
3025 if (olen
< sizeof(int))
3028 val
= jiffies_to_msecs(*(int *)(table
->data
));
3029 if (put_user(val
, (int __user
*)oldval
))
3031 if (put_user(sizeof(int), oldlenp
))
3035 if (newval
&& newlen
) {
3037 if (newlen
!= sizeof(int))
3039 if (get_user(new, (int __user
*)newval
))
3041 *(int *)(table
->data
) = msecs_to_jiffies(new);
3048 #else /* CONFIG_SYSCTL_SYSCALL */
3051 SYSCALL_DEFINE1(sysctl
, struct __sysctl_args __user
*, args
)
3053 struct __sysctl_args tmp
;
3056 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
3059 error
= deprecated_sysctl_warning(&tmp
);
3061 /* If no error reading the parameters then just -ENOSYS ... */
3068 int sysctl_data(struct ctl_table
*table
,
3069 void __user
*oldval
, size_t __user
*oldlenp
,
3070 void __user
*newval
, size_t newlen
)
3075 int sysctl_string(struct ctl_table
*table
,
3076 void __user
*oldval
, size_t __user
*oldlenp
,
3077 void __user
*newval
, size_t newlen
)
3082 int sysctl_intvec(struct ctl_table
*table
,
3083 void __user
*oldval
, size_t __user
*oldlenp
,
3084 void __user
*newval
, size_t newlen
)
3089 int sysctl_jiffies(struct ctl_table
*table
,
3090 void __user
*oldval
, size_t __user
*oldlenp
,
3091 void __user
*newval
, size_t newlen
)
3096 int sysctl_ms_jiffies(struct ctl_table
*table
,
3097 void __user
*oldval
, size_t __user
*oldlenp
,
3098 void __user
*newval
, size_t newlen
)
3103 #endif /* CONFIG_SYSCTL_SYSCALL */
3105 static int deprecated_sysctl_warning(struct __sysctl_args
*args
)
3107 static int msg_count
;
3108 int name
[CTL_MAXNAME
];
3111 /* Check args->nlen. */
3112 if (args
->nlen
< 0 || args
->nlen
> CTL_MAXNAME
)
3115 /* Read in the sysctl name for better debug message logging */
3116 for (i
= 0; i
< args
->nlen
; i
++)
3117 if (get_user(name
[i
], args
->name
+ i
))
3120 /* Ignore accesses to kernel.version */
3121 if ((args
->nlen
== 2) && (name
[0] == CTL_KERN
) && (name
[1] == KERN_VERSION
))
3124 if (msg_count
< 5) {
3127 "warning: process `%s' used the deprecated sysctl "
3128 "system call with ", current
->comm
);
3129 for (i
= 0; i
< args
->nlen
; i
++)
3130 printk("%d.", name
[i
]);
3137 * No sense putting this after each symbol definition, twice,
3138 * exception granted :-)
3140 EXPORT_SYMBOL(proc_dointvec
);
3141 EXPORT_SYMBOL(proc_dointvec_jiffies
);
3142 EXPORT_SYMBOL(proc_dointvec_minmax
);
3143 EXPORT_SYMBOL(proc_dointvec_userhz_jiffies
);
3144 EXPORT_SYMBOL(proc_dointvec_ms_jiffies
);
3145 EXPORT_SYMBOL(proc_dostring
);
3146 EXPORT_SYMBOL(proc_doulongvec_minmax
);
3147 EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax
);
3148 EXPORT_SYMBOL(register_sysctl_table
);
3149 EXPORT_SYMBOL(register_sysctl_paths
);
3150 EXPORT_SYMBOL(sysctl_intvec
);
3151 EXPORT_SYMBOL(sysctl_jiffies
);
3152 EXPORT_SYMBOL(sysctl_ms_jiffies
);
3153 EXPORT_SYMBOL(sysctl_string
);
3154 EXPORT_SYMBOL(sysctl_data
);
3155 EXPORT_SYMBOL(unregister_sysctl_table
);