Skip to content
Snippets Groups Projects
sysctl.c 61.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • Linus Torvalds's avatar
    Linus Torvalds committed
    /*
     * sysctl.c: General linux system control interface
     *
     * Begun 24 March 1995, Stephen Tweedie
     * Added /proc support, Dec 1995
     * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
     * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
     * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
     * Dynamic registration fixes, Stephen Tweedie.
     * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
     * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
     *  Horn.
     * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
     * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
     * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
     *  Wendling.
     * The list_for_each() macro wasn't appropriate for the sysctl loop.
     *  Removed it and replaced it with older style, 03/23/00, Bill Wendling
     */
    
    #include <linux/module.h>
    #include <linux/mm.h>
    #include <linux/swap.h>
    #include <linux/slab.h>
    #include <linux/sysctl.h>
    #include <linux/proc_fs.h>
    
    #include <linux/security.h>
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #include <linux/ctype.h>
    #include <linux/utsname.h>
    #include <linux/smp_lock.h>
    
    #include <linux/fs.h>
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #include <linux/init.h>
    #include <linux/kernel.h>
    
    #include <linux/kobject.h>
    
    #include <linux/net.h>
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #include <linux/sysrq.h>
    #include <linux/highuid.h>
    #include <linux/writeback.h>
    #include <linux/hugetlb.h>
    #include <linux/security.h>
    #include <linux/initrd.h>
    #include <linux/times.h>
    #include <linux/limits.h>
    #include <linux/dcache.h>
    #include <linux/syscalls.h>
    
    #include <linux/nfs_fs.h>
    #include <linux/acpi.h>
    
    #include <linux/reboot.h>
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    #include <asm/uaccess.h>
    #include <asm/processor.h>
    
    
    #ifdef CONFIG_X86
    #include <asm/nmi.h>
    
    #include <asm/stacktrace.h>
    
    static int deprecated_sysctl_warning(struct __sysctl_args *args);
    
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #if defined(CONFIG_SYSCTL)
    
    /* External variables not in a header file. */
    extern int C_A_D;
    
    Ingo Molnar's avatar
    Ingo Molnar committed
    extern int print_fatal_signals;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    extern int sysctl_overcommit_memory;
    extern int sysctl_overcommit_ratio;
    
    extern int sysctl_panic_on_oom;
    
    extern int sysctl_oom_kill_allocating_task;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    extern int max_threads;
    extern int core_uses_pid;
    
    Alan Cox's avatar
    Alan Cox committed
    extern int suid_dumpable;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    extern char core_pattern[];
    extern int pid_max;
    extern int min_free_kbytes;
    extern int printk_ratelimit_jiffies;
    extern int printk_ratelimit_burst;
    extern int pid_max_min, pid_max_max;
    
    Andrew Morton's avatar
    Andrew Morton committed
    extern int sysctl_drop_caches;
    
    extern int percpu_pagelist_fraction;
    
    Kees Cook's avatar
    Kees Cook committed
    extern int maps_protect;
    
    extern int sysctl_stat_interval;
    
    extern int audit_argv_kb;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    
    /* Constants used for minimum and  maximum */
    #ifdef CONFIG_DETECT_SOFTLOCKUP
    static int one = 1;
    static int sixty = 60;
    #endif
    
    #ifdef CONFIG_MMU
    static int two = 2;
    #endif
    
    static int zero;
    static int one_hundred = 100;
    
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
    static int maxolduid = 65535;
    static int minolduid;
    
    static int min_percpu_pagelist_fract = 8;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    static int ngroups_max = NGROUPS_MAX;
    
    #ifdef CONFIG_KMOD
    extern char modprobe_path[];
    #endif
    #ifdef CONFIG_CHR_DEV_SG
    extern int sg_big_buff;
    #endif
    
    #ifdef __sparc__
    extern char reboot_command [];
    extern int stop_a_enabled;
    extern int scons_pwroff;
    #endif
    
    #ifdef __hppa__
    extern int pwrsw_enabled;
    extern int unaligned_enabled;
    #endif
    
    
    #ifdef CONFIG_S390
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #ifdef CONFIG_MATHEMU
    extern int sysctl_ieee_emulation_warnings;
    #endif
    extern int sysctl_userprocess_debug;
    
    extern int spin_retry;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #endif
    
    extern int sysctl_hz_timer;
    
    #ifdef CONFIG_BSD_PROCESS_ACCT
    extern int acct_parm[];
    #endif
    
    
    #ifdef CONFIG_IA64
    extern int no_unaligned_warning;
    #endif
    
    
    #ifdef CONFIG_RT_MUTEXES
    extern int max_lock_depth;
    #endif
    
    
    #ifdef CONFIG_SYSCTL_SYSCALL
    static int parse_table(int __user *, int, void __user *, size_t __user *,
    
    		void __user *, size_t, struct ctl_table *);
    
    #ifdef CONFIG_PROC_SYSCTL
    
    static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
    
    		  void __user *buffer, size_t *lenp, loff_t *ppos);
    
    static int proc_dointvec_taint(struct ctl_table *table, int write, struct file *filp,
    
    			       void __user *buffer, size_t *lenp, loff_t *ppos);
    
    static struct ctl_table root_table[];
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    static struct ctl_table_header root_table_header =
    	{ root_table, LIST_HEAD_INIT(root_table_header.ctl_entry) };
    
    
    static struct ctl_table kern_table[];
    static struct ctl_table vm_table[];
    static struct ctl_table fs_table[];
    static struct ctl_table debug_table[];
    static struct ctl_table dev_table[];
    extern struct ctl_table random_table[];
    
    extern struct ctl_table inotify_table[];
    
    #endif
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    
    #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
    int sysctl_legacy_va_layout;
    #endif
    
    
    extern int prove_locking;
    extern int lock_stat;
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    /* The default sysctl tables: */
    
    
    static struct ctl_table root_table[] = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= CTL_KERN,
    		.procname	= "kernel",
    		.mode		= 0555,
    		.child		= kern_table,
    	},
    	{
    		.ctl_name	= CTL_VM,
    		.procname	= "vm",
    		.mode		= 0555,
    		.child		= vm_table,
    	},
    #ifdef CONFIG_NET
    	{
    		.ctl_name	= CTL_NET,
    		.procname	= "net",
    		.mode		= 0555,
    		.child		= net_table,
    	},
    #endif
    	{
    		.ctl_name	= CTL_FS,
    		.procname	= "fs",
    		.mode		= 0555,
    		.child		= fs_table,
    	},
    	{
    		.ctl_name	= CTL_DEBUG,
    		.procname	= "debug",
    		.mode		= 0555,
    		.child		= debug_table,
    	},
    	{
    		.ctl_name	= CTL_DEV,
    		.procname	= "dev",
    		.mode		= 0555,
    		.child		= dev_table,
    	},
    
    /*
     * NOTE: do not add new entries to this table unless you have read
     * Documentation/sysctl/ctl_unnumbered.txt
     */
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{ .ctl_name = 0 }
    };
    
    
    #ifdef CONFIG_SCHED_DEBUG
    static unsigned long min_sched_granularity_ns = 100000;		/* 100 usecs */
    static unsigned long max_sched_granularity_ns = 1000000000;	/* 1 second */
    static unsigned long min_wakeup_granularity_ns;			/* 0 usecs */
    static unsigned long max_wakeup_granularity_ns = 1000000000;	/* 1 second */
    #endif
    
    
    static struct ctl_table kern_table[] = {
    
    #ifdef CONFIG_SCHED_DEBUG
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    
    		.procname	= "sched_nr_latency",
    		.data		= &sysctl_sched_nr_latency,
    
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    
    		.proc_handler	= &proc_dointvec,
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_latency_ns",
    		.data		= &sysctl_sched_latency,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &min_sched_granularity_ns,
    		.extra2		= &max_sched_granularity_ns,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_wakeup_granularity_ns",
    		.data		= &sysctl_sched_wakeup_granularity,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &min_wakeup_granularity_ns,
    		.extra2		= &max_wakeup_granularity_ns,
    	},
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_batch_wakeup_granularity_ns",
    		.data		= &sysctl_sched_batch_wakeup_granularity,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &min_wakeup_granularity_ns,
    		.extra2		= &max_wakeup_granularity_ns,
    	},
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_child_runs_first",
    		.data		= &sysctl_sched_child_runs_first,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_features",
    		.data		= &sysctl_sched_features,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_migration_cost",
    		.data		= &sysctl_sched_migration_cost,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "sched_compat_yield",
    		.data		= &sysctl_sched_compat_yield,
    		.maxlen		= sizeof(unsigned int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #ifdef CONFIG_PROVE_LOCKING
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "prove_locking",
    		.data		= &prove_locking,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    #ifdef CONFIG_LOCK_STAT
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "lock_stat",
    		.data		= &lock_stat,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #endif
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_PANIC,
    		.procname	= "panic",
    		.data		= &panic_timeout,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_CORE_USES_PID,
    		.procname	= "core_uses_pid",
    		.data		= &core_uses_pid,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #ifdef CONFIG_AUDITSYSCALL
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "audit_argv_kb",
    		.data		= &audit_argv_kb,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_CORE_PATTERN,
    		.procname	= "core_pattern",
    		.data		= core_pattern,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.mode		= 0644,
    		.proc_handler	= &proc_dostring,
    		.strategy	= &sysctl_string,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.procname	= "tainted",
    		.data		= &tainted,
    		.maxlen		= sizeof(int),
    
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_taint,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    
    #ifdef CONFIG_SECURITY_CAPABILITIES
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.procname	= "cap-bound",
    		.data		= &cap_bset,
    		.maxlen		= sizeof(kernel_cap_t),
    		.mode		= 0600,
    		.proc_handler	= &proc_dointvec_bset,
    	},
    
    #endif /* def CONFIG_SECURITY_CAPABILITIES */
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #ifdef CONFIG_BLK_DEV_INITRD
    	{
    		.ctl_name	= KERN_REALROOTDEV,
    		.procname	= "real-root-dev",
    		.data		= &real_root_dev,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    
    Ingo Molnar's avatar
    Ingo Molnar committed
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "print-fatal-signals",
    		.data		= &print_fatal_signals,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #ifdef __sparc__
    	{
    		.ctl_name	= KERN_SPARC_REBOOT,
    		.procname	= "reboot-cmd",
    		.data		= reboot_command,
    		.maxlen		= 256,
    		.mode		= 0644,
    		.proc_handler	= &proc_dostring,
    		.strategy	= &sysctl_string,
    	},
    	{
    		.ctl_name	= KERN_SPARC_STOP_A,
    		.procname	= "stop-a",
    		.data		= &stop_a_enabled,
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_SPARC_SCONS_PWROFF,
    		.procname	= "scons-poweroff",
    		.data		= &scons_pwroff,
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    #ifdef __hppa__
    	{
    		.ctl_name	= KERN_HPPA_PWRSW,
    		.procname	= "soft-power",
    		.data		= &pwrsw_enabled,
    		.maxlen		= sizeof (int),
    	 	.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_HPPA_UNALIGNED,
    		.procname	= "unaligned-trap",
    		.data		= &unaligned_enabled,
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    	{
    		.ctl_name	= KERN_CTLALTDEL,
    		.procname	= "ctrl-alt-del",
    		.data		= &C_A_D,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_PRINTK,
    		.procname	= "printk",
    		.data		= &console_loglevel,
    		.maxlen		= 4*sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #ifdef CONFIG_KMOD
    	{
    		.ctl_name	= KERN_MODPROBE,
    		.procname	= "modprobe",
    		.data		= &modprobe_path,
    		.maxlen		= KMOD_PATH_LEN,
    		.mode		= 0644,
    		.proc_handler	= &proc_dostring,
    		.strategy	= &sysctl_string,
    	},
    #endif
    
    #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_HOTPLUG,
    		.procname	= "hotplug",
    
    		.data		= &uevent_helper,
    		.maxlen		= UEVENT_HELPER_PATH_LEN,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.mode		= 0644,
    		.proc_handler	= &proc_dostring,
    		.strategy	= &sysctl_string,
    	},
    #endif
    #ifdef CONFIG_CHR_DEV_SG
    	{
    		.ctl_name	= KERN_SG_BIG_BUFF,
    		.procname	= "sg-big-buff",
    		.data		= &sg_big_buff,
    		.maxlen		= sizeof (int),
    		.mode		= 0444,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    #ifdef CONFIG_BSD_PROCESS_ACCT
    	{
    		.ctl_name	= KERN_ACCT,
    		.procname	= "acct",
    		.data		= &acct_parm,
    		.maxlen		= 3*sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    #ifdef CONFIG_MAGIC_SYSRQ
    	{
    		.ctl_name	= KERN_SYSRQ,
    		.procname	= "sysrq",
    
    		.data		= &__sysrq_enabled,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    
    #ifdef CONFIG_PROC_SYSCTL
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.procname	= "cad_pid",
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.maxlen		= sizeof (int),
    		.mode		= 0600,
    
    		.proc_handler	= &proc_do_cad_pid,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_MAX_THREADS,
    		.procname	= "threads-max",
    		.data		= &max_threads,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_RANDOM,
    		.procname	= "random",
    		.mode		= 0555,
    		.child		= random_table,
    	},
    	{
    		.ctl_name	= KERN_OVERFLOWUID,
    		.procname	= "overflowuid",
    		.data		= &overflowuid,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &minolduid,
    		.extra2		= &maxolduid,
    	},
    	{
    		.ctl_name	= KERN_OVERFLOWGID,
    		.procname	= "overflowgid",
    		.data		= &overflowgid,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &minolduid,
    		.extra2		= &maxolduid,
    	},
    
    #ifdef CONFIG_S390
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #ifdef CONFIG_MATHEMU
    	{
    		.ctl_name	= KERN_IEEE_EMULATION_WARNINGS,
    		.procname	= "ieee_emulation_warnings",
    		.data		= &sysctl_ieee_emulation_warnings,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    #ifdef CONFIG_NO_IDLE_HZ
    	{
    		.ctl_name       = KERN_HZ_TIMER,
    		.procname       = "hz_timer",
    		.data           = &sysctl_hz_timer,
    		.maxlen         = sizeof(int),
    		.mode           = 0644,
    		.proc_handler   = &proc_dointvec,
    	},
    #endif
    	{
    		.ctl_name	= KERN_S390_USER_DEBUG_LOGGING,
    		.procname	= "userprocess_debug",
    		.data		= &sysctl_userprocess_debug,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    	{
    		.ctl_name	= KERN_PIDMAX,
    		.procname	= "pid_max",
    		.data		= &pid_max,
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= sysctl_intvec,
    		.extra1		= &pid_max_min,
    		.extra2		= &pid_max_max,
    	},
    	{
    		.ctl_name	= KERN_PANIC_ON_OOPS,
    		.procname	= "panic_on_oops",
    		.data		= &panic_on_oops,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_PRINTK_RATELIMIT,
    		.procname	= "printk_ratelimit",
    		.data		= &printk_ratelimit_jiffies,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_jiffies,
    		.strategy	= &sysctl_jiffies,
    	},
    	{
    		.ctl_name	= KERN_PRINTK_RATELIMIT_BURST,
    		.procname	= "printk_ratelimit_burst",
    		.data		= &printk_ratelimit_burst,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= KERN_NGROUPS_MAX,
    		.procname	= "ngroups_max",
    		.data		= &ngroups_max,
    		.maxlen		= sizeof (int),
    		.mode		= 0444,
    		.proc_handler	= &proc_dointvec,
    	},
    #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
    	{
    		.ctl_name       = KERN_UNKNOWN_NMI_PANIC,
    		.procname       = "unknown_nmi_panic",
    		.data           = &unknown_nmi_panic,
    		.maxlen         = sizeof (int),
    		.mode           = 0644,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    
    	{
    		.procname       = "nmi_watchdog",
    		.data           = &nmi_watchdog_enabled,
    		.maxlen         = sizeof (int),
    		.mode           = 0644,
    		.proc_handler   = &proc_nmi_enabled,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    #endif
    #if defined(CONFIG_X86)
    
    	{
    		.ctl_name	= KERN_PANIC_ON_NMI,
    		.procname	= "panic_on_unrecovered_nmi",
    		.data		= &panic_on_unrecovered_nmi,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_BOOTLOADER_TYPE,
    		.procname	= "bootloader_type",
    		.data		= &bootloader_type,
    		.maxlen		= sizeof (int),
    		.mode		= 0444,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "kstack_depth_to_print",
    		.data		= &kstack_depth_to_print,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #endif
    
    #if defined(CONFIG_MMU)
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= KERN_RANDOMIZE,
    		.procname	= "randomize_va_space",
    		.data		= &randomize_va_space,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #if defined(CONFIG_S390) && defined(CONFIG_SMP)
    
    	{
    		.ctl_name	= KERN_SPIN_RETRY,
    		.procname	= "spin_retry",
    		.data		= &spin_retry,
    		.maxlen		= sizeof (int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #if	defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
    
    	{
    		.procname	= "acpi_video_flags",
    
    		.data		= &acpi_realmode_flags,
    
    		.maxlen		= sizeof (unsigned long),
    		.mode		= 0644,
    
    		.proc_handler	= &proc_doulongvec_minmax,
    
    #endif
    #ifdef CONFIG_IA64
    	{
    		.ctl_name	= KERN_IA64_UNALIGNED,
    		.procname	= "ignore-unaligned-usertrap",
    		.data		= &no_unaligned_warning,
    		.maxlen		= sizeof (int),
    	 	.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #ifdef CONFIG_DETECT_SOFTLOCKUP
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "softlockup_thresh",
    		.data		= &softlockup_thresh,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &one,
    		.extra2		= &sixty,
    	},
    #endif
    
    #ifdef CONFIG_COMPAT
    	{
    		.ctl_name	= KERN_COMPAT_LOG,
    		.procname	= "compat-log",
    		.data		= &compat_log,
    		.maxlen		= sizeof (int),
    	 	.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    #ifdef CONFIG_RT_MUTEXES
    	{
    		.ctl_name	= KERN_MAX_LOCK_DEPTH,
    		.procname	= "max_lock_depth",
    		.data		= &max_lock_depth,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    #endif
    
    Kees Cook's avatar
    Kees Cook committed
    #ifdef CONFIG_PROC_FS
    	{
    		.ctl_name       = CTL_UNNUMBERED,
    		.procname       = "maps_protect",
    		.data           = &maps_protect,
    		.maxlen         = sizeof(int),
    		.mode           = 0644,
    		.proc_handler   = &proc_dointvec,
    	},
    #endif
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "poweroff_cmd",
    		.data		= &poweroff_cmd,
    		.maxlen		= POWEROFF_CMD_PATH_LEN,
    		.mode		= 0644,
    		.proc_handler	= &proc_dostring,
    		.strategy	= &sysctl_string,
    	},
    
    /*
     * NOTE: do not add new entries to this table unless you have read
     * Documentation/sysctl/ctl_unnumbered.txt
     */
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{ .ctl_name = 0 }
    };
    
    
    static struct ctl_table vm_table[] = {
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= VM_OVERCOMMIT_MEMORY,
    		.procname	= "overcommit_memory",
    		.data		= &sysctl_overcommit_memory,
    		.maxlen		= sizeof(sysctl_overcommit_memory),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= VM_PANIC_ON_OOM,
    		.procname	= "panic_on_oom",
    		.data		= &sysctl_panic_on_oom,
    		.maxlen		= sizeof(sysctl_panic_on_oom),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "oom_kill_allocating_task",
    		.data		= &sysctl_oom_kill_allocating_task,
    		.maxlen		= sizeof(sysctl_oom_kill_allocating_task),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= VM_OVERCOMMIT_RATIO,
    		.procname	= "overcommit_ratio",
    		.data		= &sysctl_overcommit_ratio,
    		.maxlen		= sizeof(sysctl_overcommit_ratio),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= VM_PAGE_CLUSTER,
    		.procname	= "page-cluster", 
    		.data		= &page_cluster,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= VM_DIRTY_BACKGROUND,
    		.procname	= "dirty_background_ratio",
    		.data		= &dirty_background_ratio,
    		.maxlen		= sizeof(dirty_background_ratio),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    		.extra2		= &one_hundred,
    	},
    	{
    		.ctl_name	= VM_DIRTY_RATIO,
    		.procname	= "dirty_ratio",
    		.data		= &vm_dirty_ratio,
    		.maxlen		= sizeof(vm_dirty_ratio),
    		.mode		= 0644,
    
    		.proc_handler	= &dirty_ratio_handler,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    		.extra2		= &one_hundred,
    	},
    	{
    		.procname	= "dirty_writeback_centisecs",
    
    		.data		= &dirty_writeback_interval,
    		.maxlen		= sizeof(dirty_writeback_interval),
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.mode		= 0644,
    		.proc_handler	= &dirty_writeback_centisecs_handler,
    	},
    	{
    		.procname	= "dirty_expire_centisecs",
    
    		.data		= &dirty_expire_interval,
    		.maxlen		= sizeof(dirty_expire_interval),
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    		.mode		= 0644,
    
    		.proc_handler	= &proc_dointvec_userhz_jiffies,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    	{
    		.ctl_name	= VM_NR_PDFLUSH_THREADS,
    		.procname	= "nr_pdflush_threads",
    		.data		= &nr_pdflush_threads,
    		.maxlen		= sizeof nr_pdflush_threads,
    		.mode		= 0444 /* read-only*/,
    		.proc_handler	= &proc_dointvec,
    	},
    	{
    		.ctl_name	= VM_SWAPPINESS,
    		.procname	= "swappiness",
    		.data		= &vm_swappiness,
    		.maxlen		= sizeof(vm_swappiness),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec_minmax,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    		.extra2		= &one_hundred,
    	},
    #ifdef CONFIG_HUGETLB_PAGE
    	 {
    		.procname	= "nr_hugepages",
    		.data		= &max_huge_pages,
    		.maxlen		= sizeof(unsigned long),
    		.mode		= 0644,
    		.proc_handler	= &hugetlb_sysctl_handler,
    		.extra1		= (void *)&hugetlb_zero,
    		.extra2		= (void *)&hugetlb_infinity,
    	 },
    	 {
    		.ctl_name	= VM_HUGETLB_GROUP,
    		.procname	= "hugetlb_shm_group",
    		.data		= &sysctl_hugetlb_shm_group,
    		.maxlen		= sizeof(gid_t),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	 },
    
    	 {
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "hugepages_treat_as_movable",
    		.data		= &hugepages_treat_as_movable,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= &hugetlb_treat_movable_handler,
    	},
    
    	{
    		.ctl_name	= CTL_UNNUMBERED,
    		.procname	= "hugetlb_dynamic_pool",
    		.data		= &hugetlb_dynamic_pool,
    		.maxlen		= sizeof(hugetlb_dynamic_pool),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #endif
    	{
    		.ctl_name	= VM_LOWMEM_RESERVE_RATIO,
    		.procname	= "lowmem_reserve_ratio",
    		.data		= &sysctl_lowmem_reserve_ratio,
    		.maxlen		= sizeof(sysctl_lowmem_reserve_ratio),
    		.mode		= 0644,
    		.proc_handler	= &lowmem_reserve_ratio_sysctl_handler,
    		.strategy	= &sysctl_intvec,
    	},
    
    Andrew Morton's avatar
    Andrew Morton committed
    	{
    		.ctl_name	= VM_DROP_PAGECACHE,
    		.procname	= "drop_caches",
    		.data		= &sysctl_drop_caches,
    		.maxlen		= sizeof(int),
    		.mode		= 0644,
    		.proc_handler	= drop_caches_sysctl_handler,
    		.strategy	= &sysctl_intvec,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	{
    		.ctl_name	= VM_MIN_FREE_KBYTES,
    		.procname	= "min_free_kbytes",
    		.data		= &min_free_kbytes,
    		.maxlen		= sizeof(min_free_kbytes),
    		.mode		= 0644,
    		.proc_handler	= &min_free_kbytes_sysctl_handler,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    	},
    
    	{
    		.ctl_name	= VM_PERCPU_PAGELIST_FRACTION,
    		.procname	= "percpu_pagelist_fraction",
    		.data		= &percpu_pagelist_fraction,
    		.maxlen		= sizeof(percpu_pagelist_fraction),
    		.mode		= 0644,
    		.proc_handler	= &percpu_pagelist_fraction_sysctl_handler,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &min_percpu_pagelist_fract,
    	},
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    #ifdef CONFIG_MMU
    	{
    		.ctl_name	= VM_MAX_MAP_COUNT,
    		.procname	= "max_map_count",
    		.data		= &sysctl_max_map_count,
    		.maxlen		= sizeof(sysctl_max_map_count),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec
    	},
    #endif
    	{
    		.ctl_name	= VM_LAPTOP_MODE,
    		.procname	= "laptop_mode",
    		.data		= &laptop_mode,
    		.maxlen		= sizeof(laptop_mode),
    		.mode		= 0644,
    
    		.proc_handler	= &proc_dointvec_jiffies,
    		.strategy	= &sysctl_jiffies,
    
    Linus Torvalds's avatar
    Linus Torvalds committed
    	},
    	{
    		.ctl_name	= VM_BLOCK_DUMP,
    		.procname	= "block_dump",
    		.data		= &block_dump,
    		.maxlen		= sizeof(block_dump),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    	},
    	{
    		.ctl_name	= VM_VFS_CACHE_PRESSURE,
    		.procname	= "vfs_cache_pressure",
    		.data		= &sysctl_vfs_cache_pressure,
    		.maxlen		= sizeof(sysctl_vfs_cache_pressure),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    	},
    #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
    	{
    		.ctl_name	= VM_LEGACY_VA_LAYOUT,
    		.procname	= "legacy_va_layout",
    		.data		= &sysctl_legacy_va_layout,
    		.maxlen		= sizeof(sysctl_legacy_va_layout),
    		.mode		= 0644,
    		.proc_handler	= &proc_dointvec,
    		.strategy	= &sysctl_intvec,
    		.extra1		= &zero,
    	},
    #endif
    
    #ifdef CONFIG_NUMA
    	{
    		.ctl_name	= VM_ZONE_RECLAIM_MODE,
    		.procname	= "zone_reclaim_mode",
    		.data		= &zone_reclaim_mode,
    		.maxlen		= sizeof(zone_reclaim_mode),
    		.mode		= 0644,