xref: /openbmc/linux/kernel/sysctl.c (revision 73efc0394e148d0e15583e13712637831f926720)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * sysctl.c: General linux system control interface
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Begun 24 March 1995, Stephen Tweedie
51da177e4SLinus Torvalds  * Added /proc support, Dec 1995
61da177e4SLinus Torvalds  * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
71da177e4SLinus Torvalds  * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
81da177e4SLinus Torvalds  * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
91da177e4SLinus Torvalds  * Dynamic registration fixes, Stephen Tweedie.
101da177e4SLinus Torvalds  * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
111da177e4SLinus Torvalds  * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
121da177e4SLinus Torvalds  *  Horn.
131da177e4SLinus Torvalds  * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
141da177e4SLinus Torvalds  * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
151da177e4SLinus Torvalds  * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
161da177e4SLinus Torvalds  *  Wendling.
171da177e4SLinus Torvalds  * The list_for_each() macro wasn't appropriate for the sysctl loop.
181da177e4SLinus Torvalds  *  Removed it and replaced it with older style, 03/23/00, Bill Wendling
191da177e4SLinus Torvalds  */
201da177e4SLinus Torvalds 
211da177e4SLinus Torvalds #include <linux/module.h>
221da177e4SLinus Torvalds #include <linux/mm.h>
231da177e4SLinus Torvalds #include <linux/swap.h>
241da177e4SLinus Torvalds #include <linux/slab.h>
251da177e4SLinus Torvalds #include <linux/sysctl.h>
26d33ed52dSDave Young #include <linux/signal.h>
27455cd5abSDan Rosenberg #include <linux/printk.h>
281da177e4SLinus Torvalds #include <linux/proc_fs.h>
2972c2d582SAndrew Morgan #include <linux/security.h>
301da177e4SLinus Torvalds #include <linux/ctype.h>
31dfec072eSVegard Nossum #include <linux/kmemcheck.h>
3262239ac2SAdrian Bunk #include <linux/fs.h>
331da177e4SLinus Torvalds #include <linux/init.h>
341da177e4SLinus Torvalds #include <linux/kernel.h>
350296b228SKay Sievers #include <linux/kobject.h>
3620380731SArnaldo Carvalho de Melo #include <linux/net.h>
371da177e4SLinus Torvalds #include <linux/sysrq.h>
381da177e4SLinus Torvalds #include <linux/highuid.h>
391da177e4SLinus Torvalds #include <linux/writeback.h>
403fff4c42SIngo Molnar #include <linux/ratelimit.h>
4176ab0f53SMel Gorman #include <linux/compaction.h>
421da177e4SLinus Torvalds #include <linux/hugetlb.h>
431da177e4SLinus Torvalds #include <linux/initrd.h>
440b77f5bfSDavid Howells #include <linux/key.h>
451da177e4SLinus Torvalds #include <linux/times.h>
461da177e4SLinus Torvalds #include <linux/limits.h>
471da177e4SLinus Torvalds #include <linux/dcache.h>
486e006701SAlexey Dobriyan #include <linux/dnotify.h>
491da177e4SLinus Torvalds #include <linux/syscalls.h>
50c748e134SAdrian Bunk #include <linux/vmstat.h>
51c255d844SPavel Machek #include <linux/nfs_fs.h>
52c255d844SPavel Machek #include <linux/acpi.h>
5310a0a8d4SJeremy Fitzhardinge #include <linux/reboot.h>
54b0fc494fSSteven Rostedt #include <linux/ftrace.h>
55cdd6c482SIngo Molnar #include <linux/perf_event.h>
56b2be84dfSMasami Hiramatsu #include <linux/kprobes.h>
57b492e95bSJens Axboe #include <linux/pipe_fs_i.h>
588e4228e1SDavid Rientjes #include <linux/oom.h>
5917f60a7dSEric Paris #include <linux/kmod.h>
60*73efc039SDan Ballard #include <linux/capability.h>
611da177e4SLinus Torvalds 
621da177e4SLinus Torvalds #include <asm/uaccess.h>
631da177e4SLinus Torvalds #include <asm/processor.h>
641da177e4SLinus Torvalds 
6529cbc78bSAndi Kleen #ifdef CONFIG_X86
6629cbc78bSAndi Kleen #include <asm/nmi.h>
670741f4d2SChuck Ebbert #include <asm/stacktrace.h>
686e7c4025SIngo Molnar #include <asm/io.h>
6929cbc78bSAndi Kleen #endif
70c55b7c3eSDave Young #ifdef CONFIG_BSD_PROCESS_ACCT
71c55b7c3eSDave Young #include <linux/acct.h>
72c55b7c3eSDave Young #endif
734f0e056fSDave Young #ifdef CONFIG_RT_MUTEXES
744f0e056fSDave Young #include <linux/rtmutex.h>
754f0e056fSDave Young #endif
762edf5e49SDave Young #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
772edf5e49SDave Young #include <linux/lockdep.h>
782edf5e49SDave Young #endif
7915485a46SDave Young #ifdef CONFIG_CHR_DEV_SG
8015485a46SDave Young #include <scsi/sg.h>
8115485a46SDave Young #endif
8229cbc78bSAndi Kleen 
8358687acbSDon Zickus #ifdef CONFIG_LOCKUP_DETECTOR
84504d7cf1SDon Zickus #include <linux/nmi.h>
85504d7cf1SDon Zickus #endif
86504d7cf1SDon Zickus 
877058cb02SEric W. Biederman 
881da177e4SLinus Torvalds #if defined(CONFIG_SYSCTL)
891da177e4SLinus Torvalds 
901da177e4SLinus Torvalds /* External variables not in a header file. */
911da177e4SLinus Torvalds extern int sysctl_overcommit_memory;
921da177e4SLinus Torvalds extern int sysctl_overcommit_ratio;
931da177e4SLinus Torvalds extern int max_threads;
941da177e4SLinus Torvalds extern int core_uses_pid;
95d6e71144SAlan Cox extern int suid_dumpable;
961da177e4SLinus Torvalds extern char core_pattern[];
97a293980cSNeil Horman extern unsigned int core_pipe_limit;
981da177e4SLinus Torvalds extern int pid_max;
991da177e4SLinus Torvalds extern int min_free_kbytes;
1001da177e4SLinus Torvalds extern int pid_max_min, pid_max_max;
1019d0243bcSAndrew Morton extern int sysctl_drop_caches;
1028ad4b1fbSRohit Seth extern int percpu_pagelist_fraction;
103bebfa101SAndi Kleen extern int compat_log;
1049745512cSArjan van de Ven extern int latencytop_enabled;
105eceea0b3SAl Viro extern int sysctl_nr_open_min, sysctl_nr_open_max;
106dd8632a1SPaul Mundt #ifndef CONFIG_MMU
107dd8632a1SPaul Mundt extern int sysctl_nr_trim_pages;
108dd8632a1SPaul Mundt #endif
109cb684b5bSJens Axboe #ifdef CONFIG_BLOCK
1105e605b64SJens Axboe extern int blk_iopoll_enabled;
111cb684b5bSJens Axboe #endif
1121da177e4SLinus Torvalds 
113c4f3b63fSRavikiran G Thirumalai /* Constants used for minimum and  maximum */
1142508ce18SDon Zickus #ifdef CONFIG_LOCKUP_DETECTOR
115c4f3b63fSRavikiran G Thirumalai static int sixty = 60;
1169383d967SDimitri Sivanich static int neg_one = -1;
117c4f3b63fSRavikiran G Thirumalai #endif
118c4f3b63fSRavikiran G Thirumalai 
119c4f3b63fSRavikiran G Thirumalai static int zero;
120cd5f9a4cSLinus Torvalds static int __maybe_unused one = 1;
121cd5f9a4cSLinus Torvalds static int __maybe_unused two = 2;
122cb16e95fSPetr Holasek static int __maybe_unused three = 3;
123fc3501d4SSven Wegener static unsigned long one_ul = 1;
124c4f3b63fSRavikiran G Thirumalai static int one_hundred = 100;
125af91322eSDave Young #ifdef CONFIG_PRINTK
126af91322eSDave Young static int ten_thousand = 10000;
127af91322eSDave Young #endif
128c4f3b63fSRavikiran G Thirumalai 
1299e4a5bdaSAndrea Righi /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
1309e4a5bdaSAndrea Righi static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
1319e4a5bdaSAndrea Righi 
1321da177e4SLinus Torvalds /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
1331da177e4SLinus Torvalds static int maxolduid = 65535;
1341da177e4SLinus Torvalds static int minolduid;
1358ad4b1fbSRohit Seth static int min_percpu_pagelist_fract = 8;
1361da177e4SLinus Torvalds 
1371da177e4SLinus Torvalds static int ngroups_max = NGROUPS_MAX;
138*73efc039SDan Ballard static const int cap_last_cap = CAP_LAST_CAP;
1391da177e4SLinus Torvalds 
140d14f1729SDave Young #ifdef CONFIG_INOTIFY_USER
141d14f1729SDave Young #include <linux/inotify.h>
142d14f1729SDave Young #endif
14372c57ed5SDavid S. Miller #ifdef CONFIG_SPARC
14417f04fbbSDavid S. Miller #include <asm/system.h>
1451da177e4SLinus Torvalds #endif
1461da177e4SLinus Torvalds 
1470871420fSDavid S. Miller #ifdef CONFIG_SPARC64
1480871420fSDavid S. Miller extern int sysctl_tsb_ratio;
1490871420fSDavid S. Miller #endif
1500871420fSDavid S. Miller 
1511da177e4SLinus Torvalds #ifdef __hppa__
1521da177e4SLinus Torvalds extern int pwrsw_enabled;
1531da177e4SLinus Torvalds extern int unaligned_enabled;
1541da177e4SLinus Torvalds #endif
1551da177e4SLinus Torvalds 
156347a8dc3SMartin Schwidefsky #ifdef CONFIG_S390
1571da177e4SLinus Torvalds #ifdef CONFIG_MATHEMU
1581da177e4SLinus Torvalds extern int sysctl_ieee_emulation_warnings;
1591da177e4SLinus Torvalds #endif
1601da177e4SLinus Torvalds extern int sysctl_userprocess_debug;
161951f22d5SMartin Schwidefsky extern int spin_retry;
1621da177e4SLinus Torvalds #endif
1631da177e4SLinus Torvalds 
164d2b176edSJes Sorensen #ifdef CONFIG_IA64
165d2b176edSJes Sorensen extern int no_unaligned_warning;
16688fc241fSDoug Chapman extern int unaligned_dump_stack;
167d2b176edSJes Sorensen #endif
168d2b176edSJes Sorensen 
169d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL
1708d65af78SAlexey Dobriyan static int proc_do_cad_pid(struct ctl_table *table, int write,
1719ec52099SCedric Le Goater 		  void __user *buffer, size_t *lenp, loff_t *ppos);
1728d65af78SAlexey Dobriyan static int proc_taint(struct ctl_table *table, int write,
17334f5a398STheodore Ts'o 			       void __user *buffer, size_t *lenp, loff_t *ppos);
174d6f8ff73SRandy Dunlap #endif
1759ec52099SCedric Le Goater 
176bfdc0b49SRichard Weinberger #ifdef CONFIG_PRINTK
177bfdc0b49SRichard Weinberger static int proc_dmesg_restrict(struct ctl_table *table, int write,
178bfdc0b49SRichard Weinberger 				void __user *buffer, size_t *lenp, loff_t *ppos);
179bfdc0b49SRichard Weinberger #endif
180bfdc0b49SRichard Weinberger 
18197f5f0cdSDmitry Torokhov #ifdef CONFIG_MAGIC_SYSRQ
1828c6a98b2SAndy Whitcroft /* Note: sysrq code uses it's own private copy */
1838c6a98b2SAndy Whitcroft static int __sysrq_enabled = SYSRQ_DEFAULT_ENABLE;
18497f5f0cdSDmitry Torokhov 
18597f5f0cdSDmitry Torokhov static int sysrq_sysctl_handler(ctl_table *table, int write,
18697f5f0cdSDmitry Torokhov 				void __user *buffer, size_t *lenp,
18797f5f0cdSDmitry Torokhov 				loff_t *ppos)
18897f5f0cdSDmitry Torokhov {
18997f5f0cdSDmitry Torokhov 	int error;
19097f5f0cdSDmitry Torokhov 
19197f5f0cdSDmitry Torokhov 	error = proc_dointvec(table, write, buffer, lenp, ppos);
19297f5f0cdSDmitry Torokhov 	if (error)
19397f5f0cdSDmitry Torokhov 		return error;
19497f5f0cdSDmitry Torokhov 
19597f5f0cdSDmitry Torokhov 	if (write)
19697f5f0cdSDmitry Torokhov 		sysrq_toggle_support(__sysrq_enabled);
19797f5f0cdSDmitry Torokhov 
19897f5f0cdSDmitry Torokhov 	return 0;
19997f5f0cdSDmitry Torokhov }
20097f5f0cdSDmitry Torokhov 
20197f5f0cdSDmitry Torokhov #endif
20297f5f0cdSDmitry Torokhov 
203d8217f07SEric W. Biederman static struct ctl_table root_table[];
204e51b6ba0SEric W. Biederman static struct ctl_table_root sysctl_table_root;
205e51b6ba0SEric W. Biederman static struct ctl_table_header root_table_header = {
206dfef6dcdSAl Viro 	{{.count = 1,
207e51b6ba0SEric W. Biederman 	.ctl_table = root_table,
208dfef6dcdSAl Viro 	.ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),}},
209e51b6ba0SEric W. Biederman 	.root = &sysctl_table_root,
21073455092SAl Viro 	.set = &sysctl_table_root.default_set,
211e51b6ba0SEric W. Biederman };
212e51b6ba0SEric W. Biederman static struct ctl_table_root sysctl_table_root = {
213e51b6ba0SEric W. Biederman 	.root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
21473455092SAl Viro 	.default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
215e51b6ba0SEric W. Biederman };
2161da177e4SLinus Torvalds 
217d8217f07SEric W. Biederman static struct ctl_table kern_table[];
218d8217f07SEric W. Biederman static struct ctl_table vm_table[];
219d8217f07SEric W. Biederman static struct ctl_table fs_table[];
220d8217f07SEric W. Biederman static struct ctl_table debug_table[];
221d8217f07SEric W. Biederman static struct ctl_table dev_table[];
222d8217f07SEric W. Biederman extern struct ctl_table random_table[];
2237ef9964eSDavide Libenzi #ifdef CONFIG_EPOLL
2247ef9964eSDavide Libenzi extern struct ctl_table epoll_table[];
2257ef9964eSDavide Libenzi #endif
2261da177e4SLinus Torvalds 
2271da177e4SLinus Torvalds #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
2281da177e4SLinus Torvalds int sysctl_legacy_va_layout;
2291da177e4SLinus Torvalds #endif
2301da177e4SLinus Torvalds 
2311da177e4SLinus Torvalds /* The default sysctl tables: */
2321da177e4SLinus Torvalds 
233d8217f07SEric W. Biederman static struct ctl_table root_table[] = {
2341da177e4SLinus Torvalds 	{
2351da177e4SLinus Torvalds 		.procname	= "kernel",
2361da177e4SLinus Torvalds 		.mode		= 0555,
2371da177e4SLinus Torvalds 		.child		= kern_table,
2381da177e4SLinus Torvalds 	},
2391da177e4SLinus Torvalds 	{
2401da177e4SLinus Torvalds 		.procname	= "vm",
2411da177e4SLinus Torvalds 		.mode		= 0555,
2421da177e4SLinus Torvalds 		.child		= vm_table,
2431da177e4SLinus Torvalds 	},
2441da177e4SLinus Torvalds 	{
2451da177e4SLinus Torvalds 		.procname	= "fs",
2461da177e4SLinus Torvalds 		.mode		= 0555,
2471da177e4SLinus Torvalds 		.child		= fs_table,
2481da177e4SLinus Torvalds 	},
2491da177e4SLinus Torvalds 	{
2501da177e4SLinus Torvalds 		.procname	= "debug",
2511da177e4SLinus Torvalds 		.mode		= 0555,
2521da177e4SLinus Torvalds 		.child		= debug_table,
2531da177e4SLinus Torvalds 	},
2541da177e4SLinus Torvalds 	{
2551da177e4SLinus Torvalds 		.procname	= "dev",
2561da177e4SLinus Torvalds 		.mode		= 0555,
2571da177e4SLinus Torvalds 		.child		= dev_table,
2581da177e4SLinus Torvalds 	},
2596fce56ecSEric W. Biederman 	{ }
2601da177e4SLinus Torvalds };
2611da177e4SLinus Torvalds 
26277e54a1fSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
26373c4efd2SEric Dumazet static int min_sched_granularity_ns = 100000;		/* 100 usecs */
26473c4efd2SEric Dumazet static int max_sched_granularity_ns = NSEC_PER_SEC;	/* 1 second */
26573c4efd2SEric Dumazet static int min_wakeup_granularity_ns;			/* 0 usecs */
26673c4efd2SEric Dumazet static int max_wakeup_granularity_ns = NSEC_PER_SEC;	/* 1 second */
2671983a922SChristian Ehrhardt static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
2681983a922SChristian Ehrhardt static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
26977e54a1fSIngo Molnar #endif
27077e54a1fSIngo Molnar 
2715e771905SMel Gorman #ifdef CONFIG_COMPACTION
2725e771905SMel Gorman static int min_extfrag_threshold;
2735e771905SMel Gorman static int max_extfrag_threshold = 1000;
2745e771905SMel Gorman #endif
2755e771905SMel Gorman 
276d8217f07SEric W. Biederman static struct ctl_table kern_table[] = {
2772bba22c5SMike Galbraith 	{
2782bba22c5SMike Galbraith 		.procname	= "sched_child_runs_first",
2792bba22c5SMike Galbraith 		.data		= &sysctl_sched_child_runs_first,
2802bba22c5SMike Galbraith 		.maxlen		= sizeof(unsigned int),
2812bba22c5SMike Galbraith 		.mode		= 0644,
2826d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
2832bba22c5SMike Galbraith 	},
28477e54a1fSIngo Molnar #ifdef CONFIG_SCHED_DEBUG
28577e54a1fSIngo Molnar 	{
286b2be5e96SPeter Zijlstra 		.procname	= "sched_min_granularity_ns",
287b2be5e96SPeter Zijlstra 		.data		= &sysctl_sched_min_granularity,
28877e54a1fSIngo Molnar 		.maxlen		= sizeof(unsigned int),
28977e54a1fSIngo Molnar 		.mode		= 0644,
290702a7c76SLinus Torvalds 		.proc_handler	= sched_proc_update_handler,
291b2be5e96SPeter Zijlstra 		.extra1		= &min_sched_granularity_ns,
292b2be5e96SPeter Zijlstra 		.extra2		= &max_sched_granularity_ns,
29377e54a1fSIngo Molnar 	},
29477e54a1fSIngo Molnar 	{
29521805085SPeter Zijlstra 		.procname	= "sched_latency_ns",
29621805085SPeter Zijlstra 		.data		= &sysctl_sched_latency,
29721805085SPeter Zijlstra 		.maxlen		= sizeof(unsigned int),
29821805085SPeter Zijlstra 		.mode		= 0644,
299702a7c76SLinus Torvalds 		.proc_handler	= sched_proc_update_handler,
30021805085SPeter Zijlstra 		.extra1		= &min_sched_granularity_ns,
30121805085SPeter Zijlstra 		.extra2		= &max_sched_granularity_ns,
30221805085SPeter Zijlstra 	},
30321805085SPeter Zijlstra 	{
30477e54a1fSIngo Molnar 		.procname	= "sched_wakeup_granularity_ns",
30577e54a1fSIngo Molnar 		.data		= &sysctl_sched_wakeup_granularity,
30677e54a1fSIngo Molnar 		.maxlen		= sizeof(unsigned int),
30777e54a1fSIngo Molnar 		.mode		= 0644,
308702a7c76SLinus Torvalds 		.proc_handler	= sched_proc_update_handler,
30977e54a1fSIngo Molnar 		.extra1		= &min_wakeup_granularity_ns,
31077e54a1fSIngo Molnar 		.extra2		= &max_wakeup_granularity_ns,
31177e54a1fSIngo Molnar 	},
31277e54a1fSIngo Molnar 	{
3131983a922SChristian Ehrhardt 		.procname	= "sched_tunable_scaling",
3141983a922SChristian Ehrhardt 		.data		= &sysctl_sched_tunable_scaling,
3151983a922SChristian Ehrhardt 		.maxlen		= sizeof(enum sched_tunable_scaling),
3161983a922SChristian Ehrhardt 		.mode		= 0644,
317702a7c76SLinus Torvalds 		.proc_handler	= sched_proc_update_handler,
3181983a922SChristian Ehrhardt 		.extra1		= &min_sched_tunable_scaling,
3191983a922SChristian Ehrhardt 		.extra2		= &max_sched_tunable_scaling,
3202398f2c6SPeter Zijlstra 	},
3212398f2c6SPeter Zijlstra 	{
322da84d961SIngo Molnar 		.procname	= "sched_migration_cost",
323da84d961SIngo Molnar 		.data		= &sysctl_sched_migration_cost,
324da84d961SIngo Molnar 		.maxlen		= sizeof(unsigned int),
325da84d961SIngo Molnar 		.mode		= 0644,
3266d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
327da84d961SIngo Molnar 	},
328b82d9fddSPeter Zijlstra 	{
329b82d9fddSPeter Zijlstra 		.procname	= "sched_nr_migrate",
330b82d9fddSPeter Zijlstra 		.data		= &sysctl_sched_nr_migrate,
331b82d9fddSPeter Zijlstra 		.maxlen		= sizeof(unsigned int),
332fa85ae24SPeter Zijlstra 		.mode		= 0644,
3336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
334fa85ae24SPeter Zijlstra 	},
335cd1bb94bSArun R Bharadwaj 	{
336e9e9250bSPeter Zijlstra 		.procname	= "sched_time_avg",
337e9e9250bSPeter Zijlstra 		.data		= &sysctl_sched_time_avg,
338e9e9250bSPeter Zijlstra 		.maxlen		= sizeof(unsigned int),
339e9e9250bSPeter Zijlstra 		.mode		= 0644,
3406d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
341e9e9250bSPeter Zijlstra 	},
342e9e9250bSPeter Zijlstra 	{
343a7a4f8a7SPaul Turner 		.procname	= "sched_shares_window",
344a7a4f8a7SPaul Turner 		.data		= &sysctl_sched_shares_window,
345a7a4f8a7SPaul Turner 		.maxlen		= sizeof(unsigned int),
346a7a4f8a7SPaul Turner 		.mode		= 0644,
347a7a4f8a7SPaul Turner 		.proc_handler	= proc_dointvec,
348a7a4f8a7SPaul Turner 	},
349a7a4f8a7SPaul Turner 	{
350cd1bb94bSArun R Bharadwaj 		.procname	= "timer_migration",
351cd1bb94bSArun R Bharadwaj 		.data		= &sysctl_timer_migration,
352cd1bb94bSArun R Bharadwaj 		.maxlen		= sizeof(unsigned int),
353cd1bb94bSArun R Bharadwaj 		.mode		= 0644,
3546d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
355bfdb4d9fSArun R Bharadwaj 		.extra1		= &zero,
356bfdb4d9fSArun R Bharadwaj 		.extra2		= &one,
357cd1bb94bSArun R Bharadwaj 	},
3581fc84aaaSPeter Zijlstra #endif
3591799e35dSIngo Molnar 	{
3609f0c1e56SPeter Zijlstra 		.procname	= "sched_rt_period_us",
3619f0c1e56SPeter Zijlstra 		.data		= &sysctl_sched_rt_period,
3629f0c1e56SPeter Zijlstra 		.maxlen		= sizeof(unsigned int),
3639f0c1e56SPeter Zijlstra 		.mode		= 0644,
3646d456111SEric W. Biederman 		.proc_handler	= sched_rt_handler,
3659f0c1e56SPeter Zijlstra 	},
3669f0c1e56SPeter Zijlstra 	{
3679f0c1e56SPeter Zijlstra 		.procname	= "sched_rt_runtime_us",
3689f0c1e56SPeter Zijlstra 		.data		= &sysctl_sched_rt_runtime,
3699f0c1e56SPeter Zijlstra 		.maxlen		= sizeof(int),
3709f0c1e56SPeter Zijlstra 		.mode		= 0644,
3716d456111SEric W. Biederman 		.proc_handler	= sched_rt_handler,
3729f0c1e56SPeter Zijlstra 	},
3735091faa4SMike Galbraith #ifdef CONFIG_SCHED_AUTOGROUP
3745091faa4SMike Galbraith 	{
3755091faa4SMike Galbraith 		.procname	= "sched_autogroup_enabled",
3765091faa4SMike Galbraith 		.data		= &sysctl_sched_autogroup_enabled,
3775091faa4SMike Galbraith 		.maxlen		= sizeof(unsigned int),
3785091faa4SMike Galbraith 		.mode		= 0644,
3791747b21fSYong Zhang 		.proc_handler	= proc_dointvec_minmax,
3805091faa4SMike Galbraith 		.extra1		= &zero,
3815091faa4SMike Galbraith 		.extra2		= &one,
3825091faa4SMike Galbraith 	},
3835091faa4SMike Galbraith #endif
384ec12cb7fSPaul Turner #ifdef CONFIG_CFS_BANDWIDTH
385ec12cb7fSPaul Turner 	{
386ec12cb7fSPaul Turner 		.procname	= "sched_cfs_bandwidth_slice_us",
387ec12cb7fSPaul Turner 		.data		= &sysctl_sched_cfs_bandwidth_slice,
388ec12cb7fSPaul Turner 		.maxlen		= sizeof(unsigned int),
389ec12cb7fSPaul Turner 		.mode		= 0644,
390ec12cb7fSPaul Turner 		.proc_handler	= proc_dointvec_minmax,
391ec12cb7fSPaul Turner 		.extra1		= &one,
392ec12cb7fSPaul Turner 	},
393ec12cb7fSPaul Turner #endif
394f20786ffSPeter Zijlstra #ifdef CONFIG_PROVE_LOCKING
395f20786ffSPeter Zijlstra 	{
396f20786ffSPeter Zijlstra 		.procname	= "prove_locking",
397f20786ffSPeter Zijlstra 		.data		= &prove_locking,
398f20786ffSPeter Zijlstra 		.maxlen		= sizeof(int),
399f20786ffSPeter Zijlstra 		.mode		= 0644,
4006d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
401f20786ffSPeter Zijlstra 	},
402f20786ffSPeter Zijlstra #endif
403f20786ffSPeter Zijlstra #ifdef CONFIG_LOCK_STAT
404f20786ffSPeter Zijlstra 	{
405f20786ffSPeter Zijlstra 		.procname	= "lock_stat",
406f20786ffSPeter Zijlstra 		.data		= &lock_stat,
407f20786ffSPeter Zijlstra 		.maxlen		= sizeof(int),
408f20786ffSPeter Zijlstra 		.mode		= 0644,
4096d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
410f20786ffSPeter Zijlstra 	},
411f20786ffSPeter Zijlstra #endif
41277e54a1fSIngo Molnar 	{
4131da177e4SLinus Torvalds 		.procname	= "panic",
4141da177e4SLinus Torvalds 		.data		= &panic_timeout,
4151da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
4161da177e4SLinus Torvalds 		.mode		= 0644,
4176d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4181da177e4SLinus Torvalds 	},
4191da177e4SLinus Torvalds 	{
4201da177e4SLinus Torvalds 		.procname	= "core_uses_pid",
4211da177e4SLinus Torvalds 		.data		= &core_uses_pid,
4221da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
4231da177e4SLinus Torvalds 		.mode		= 0644,
4246d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4251da177e4SLinus Torvalds 	},
4261da177e4SLinus Torvalds 	{
4271da177e4SLinus Torvalds 		.procname	= "core_pattern",
4281da177e4SLinus Torvalds 		.data		= core_pattern,
42971ce92f3SDan Aloni 		.maxlen		= CORENAME_MAX_SIZE,
4301da177e4SLinus Torvalds 		.mode		= 0644,
4316d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
4321da177e4SLinus Torvalds 	},
433a293980cSNeil Horman 	{
434a293980cSNeil Horman 		.procname	= "core_pipe_limit",
435a293980cSNeil Horman 		.data		= &core_pipe_limit,
436a293980cSNeil Horman 		.maxlen		= sizeof(unsigned int),
437a293980cSNeil Horman 		.mode		= 0644,
4386d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
439a293980cSNeil Horman 	},
44034f5a398STheodore Ts'o #ifdef CONFIG_PROC_SYSCTL
4411da177e4SLinus Torvalds 	{
4421da177e4SLinus Torvalds 		.procname	= "tainted",
44325ddbb18SAndi Kleen 		.maxlen 	= sizeof(long),
44434f5a398STheodore Ts'o 		.mode		= 0644,
4456d456111SEric W. Biederman 		.proc_handler	= proc_taint,
4461da177e4SLinus Torvalds 	},
44734f5a398STheodore Ts'o #endif
4489745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP
4499745512cSArjan van de Ven 	{
4509745512cSArjan van de Ven 		.procname	= "latencytop",
4519745512cSArjan van de Ven 		.data		= &latencytop_enabled,
4529745512cSArjan van de Ven 		.maxlen		= sizeof(int),
4539745512cSArjan van de Ven 		.mode		= 0644,
4546d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4559745512cSArjan van de Ven 	},
4569745512cSArjan van de Ven #endif
4571da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_INITRD
4581da177e4SLinus Torvalds 	{
4591da177e4SLinus Torvalds 		.procname	= "real-root-dev",
4601da177e4SLinus Torvalds 		.data		= &real_root_dev,
4611da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
4621da177e4SLinus Torvalds 		.mode		= 0644,
4636d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4641da177e4SLinus Torvalds 	},
4651da177e4SLinus Torvalds #endif
46645807a1dSIngo Molnar 	{
46745807a1dSIngo Molnar 		.procname	= "print-fatal-signals",
46845807a1dSIngo Molnar 		.data		= &print_fatal_signals,
46945807a1dSIngo Molnar 		.maxlen		= sizeof(int),
47045807a1dSIngo Molnar 		.mode		= 0644,
4716d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
47245807a1dSIngo Molnar 	},
47372c57ed5SDavid S. Miller #ifdef CONFIG_SPARC
4741da177e4SLinus Torvalds 	{
4751da177e4SLinus Torvalds 		.procname	= "reboot-cmd",
4761da177e4SLinus Torvalds 		.data		= reboot_command,
4771da177e4SLinus Torvalds 		.maxlen		= 256,
4781da177e4SLinus Torvalds 		.mode		= 0644,
4796d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
4801da177e4SLinus Torvalds 	},
4811da177e4SLinus Torvalds 	{
4821da177e4SLinus Torvalds 		.procname	= "stop-a",
4831da177e4SLinus Torvalds 		.data		= &stop_a_enabled,
4841da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
4851da177e4SLinus Torvalds 		.mode		= 0644,
4866d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4871da177e4SLinus Torvalds 	},
4881da177e4SLinus Torvalds 	{
4891da177e4SLinus Torvalds 		.procname	= "scons-poweroff",
4901da177e4SLinus Torvalds 		.data		= &scons_pwroff,
4911da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
4921da177e4SLinus Torvalds 		.mode		= 0644,
4936d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
4941da177e4SLinus Torvalds 	},
4951da177e4SLinus Torvalds #endif
4960871420fSDavid S. Miller #ifdef CONFIG_SPARC64
4970871420fSDavid S. Miller 	{
4980871420fSDavid S. Miller 		.procname	= "tsb-ratio",
4990871420fSDavid S. Miller 		.data		= &sysctl_tsb_ratio,
5000871420fSDavid S. Miller 		.maxlen		= sizeof (int),
5010871420fSDavid S. Miller 		.mode		= 0644,
5026d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5030871420fSDavid S. Miller 	},
5040871420fSDavid S. Miller #endif
5051da177e4SLinus Torvalds #ifdef __hppa__
5061da177e4SLinus Torvalds 	{
5071da177e4SLinus Torvalds 		.procname	= "soft-power",
5081da177e4SLinus Torvalds 		.data		= &pwrsw_enabled,
5091da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
5101da177e4SLinus Torvalds 	 	.mode		= 0644,
5116d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5121da177e4SLinus Torvalds 	},
5131da177e4SLinus Torvalds 	{
5141da177e4SLinus Torvalds 		.procname	= "unaligned-trap",
5151da177e4SLinus Torvalds 		.data		= &unaligned_enabled,
5161da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
5171da177e4SLinus Torvalds 		.mode		= 0644,
5186d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5191da177e4SLinus Torvalds 	},
5201da177e4SLinus Torvalds #endif
5211da177e4SLinus Torvalds 	{
5221da177e4SLinus Torvalds 		.procname	= "ctrl-alt-del",
5231da177e4SLinus Torvalds 		.data		= &C_A_D,
5241da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
5251da177e4SLinus Torvalds 		.mode		= 0644,
5266d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5271da177e4SLinus Torvalds 	},
528606576ceSSteven Rostedt #ifdef CONFIG_FUNCTION_TRACER
529b0fc494fSSteven Rostedt 	{
530b0fc494fSSteven Rostedt 		.procname	= "ftrace_enabled",
531b0fc494fSSteven Rostedt 		.data		= &ftrace_enabled,
532b0fc494fSSteven Rostedt 		.maxlen		= sizeof(int),
533b0fc494fSSteven Rostedt 		.mode		= 0644,
5346d456111SEric W. Biederman 		.proc_handler	= ftrace_enable_sysctl,
535b0fc494fSSteven Rostedt 	},
536b0fc494fSSteven Rostedt #endif
537f38f1d2aSSteven Rostedt #ifdef CONFIG_STACK_TRACER
538f38f1d2aSSteven Rostedt 	{
539f38f1d2aSSteven Rostedt 		.procname	= "stack_tracer_enabled",
540f38f1d2aSSteven Rostedt 		.data		= &stack_tracer_enabled,
541f38f1d2aSSteven Rostedt 		.maxlen		= sizeof(int),
542f38f1d2aSSteven Rostedt 		.mode		= 0644,
5436d456111SEric W. Biederman 		.proc_handler	= stack_trace_sysctl,
544f38f1d2aSSteven Rostedt 	},
545f38f1d2aSSteven Rostedt #endif
546944ac425SSteven Rostedt #ifdef CONFIG_TRACING
547944ac425SSteven Rostedt 	{
5483299b4ddSPeter Zijlstra 		.procname	= "ftrace_dump_on_oops",
549944ac425SSteven Rostedt 		.data		= &ftrace_dump_on_oops,
550944ac425SSteven Rostedt 		.maxlen		= sizeof(int),
551944ac425SSteven Rostedt 		.mode		= 0644,
5526d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
553944ac425SSteven Rostedt 	},
554944ac425SSteven Rostedt #endif
555a1ef5adbSJohannes Berg #ifdef CONFIG_MODULES
5561da177e4SLinus Torvalds 	{
5571da177e4SLinus Torvalds 		.procname	= "modprobe",
5581da177e4SLinus Torvalds 		.data		= &modprobe_path,
5591da177e4SLinus Torvalds 		.maxlen		= KMOD_PATH_LEN,
5601da177e4SLinus Torvalds 		.mode		= 0644,
5616d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
5621da177e4SLinus Torvalds 	},
5633d43321bSKees Cook 	{
5643d43321bSKees Cook 		.procname	= "modules_disabled",
5653d43321bSKees Cook 		.data		= &modules_disabled,
5663d43321bSKees Cook 		.maxlen		= sizeof(int),
5673d43321bSKees Cook 		.mode		= 0644,
5683d43321bSKees Cook 		/* only handle a transition from default "0" to "1" */
5696d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
5703d43321bSKees Cook 		.extra1		= &one,
5713d43321bSKees Cook 		.extra2		= &one,
5723d43321bSKees Cook 	},
5731da177e4SLinus Torvalds #endif
57494f17cd7SIan Abbott #ifdef CONFIG_HOTPLUG
5751da177e4SLinus Torvalds 	{
5761da177e4SLinus Torvalds 		.procname	= "hotplug",
577312c004dSKay Sievers 		.data		= &uevent_helper,
578312c004dSKay Sievers 		.maxlen		= UEVENT_HELPER_PATH_LEN,
5791da177e4SLinus Torvalds 		.mode		= 0644,
5806d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
5811da177e4SLinus Torvalds 	},
5821da177e4SLinus Torvalds #endif
5831da177e4SLinus Torvalds #ifdef CONFIG_CHR_DEV_SG
5841da177e4SLinus Torvalds 	{
5851da177e4SLinus Torvalds 		.procname	= "sg-big-buff",
5861da177e4SLinus Torvalds 		.data		= &sg_big_buff,
5871da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
5881da177e4SLinus Torvalds 		.mode		= 0444,
5896d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5901da177e4SLinus Torvalds 	},
5911da177e4SLinus Torvalds #endif
5921da177e4SLinus Torvalds #ifdef CONFIG_BSD_PROCESS_ACCT
5931da177e4SLinus Torvalds 	{
5941da177e4SLinus Torvalds 		.procname	= "acct",
5951da177e4SLinus Torvalds 		.data		= &acct_parm,
5961da177e4SLinus Torvalds 		.maxlen		= 3*sizeof(int),
5971da177e4SLinus Torvalds 		.mode		= 0644,
5986d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
5991da177e4SLinus Torvalds 	},
6001da177e4SLinus Torvalds #endif
6011da177e4SLinus Torvalds #ifdef CONFIG_MAGIC_SYSRQ
6021da177e4SLinus Torvalds 	{
6031da177e4SLinus Torvalds 		.procname	= "sysrq",
6045d6f647fSIngo Molnar 		.data		= &__sysrq_enabled,
6051da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
6061da177e4SLinus Torvalds 		.mode		= 0644,
60797f5f0cdSDmitry Torokhov 		.proc_handler	= sysrq_sysctl_handler,
6081da177e4SLinus Torvalds 	},
6091da177e4SLinus Torvalds #endif
610d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL
6111da177e4SLinus Torvalds 	{
6121da177e4SLinus Torvalds 		.procname	= "cad_pid",
6139ec52099SCedric Le Goater 		.data		= NULL,
6141da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
6151da177e4SLinus Torvalds 		.mode		= 0600,
6166d456111SEric W. Biederman 		.proc_handler	= proc_do_cad_pid,
6171da177e4SLinus Torvalds 	},
618d6f8ff73SRandy Dunlap #endif
6191da177e4SLinus Torvalds 	{
6201da177e4SLinus Torvalds 		.procname	= "threads-max",
6211da177e4SLinus Torvalds 		.data		= &max_threads,
6221da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6231da177e4SLinus Torvalds 		.mode		= 0644,
6246d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
6251da177e4SLinus Torvalds 	},
6261da177e4SLinus Torvalds 	{
6271da177e4SLinus Torvalds 		.procname	= "random",
6281da177e4SLinus Torvalds 		.mode		= 0555,
6291da177e4SLinus Torvalds 		.child		= random_table,
6301da177e4SLinus Torvalds 	},
6311da177e4SLinus Torvalds 	{
63217f60a7dSEric Paris 		.procname	= "usermodehelper",
63317f60a7dSEric Paris 		.mode		= 0555,
63417f60a7dSEric Paris 		.child		= usermodehelper_table,
63517f60a7dSEric Paris 	},
63617f60a7dSEric Paris 	{
6371da177e4SLinus Torvalds 		.procname	= "overflowuid",
6381da177e4SLinus Torvalds 		.data		= &overflowuid,
6391da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6401da177e4SLinus Torvalds 		.mode		= 0644,
6416d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
6421da177e4SLinus Torvalds 		.extra1		= &minolduid,
6431da177e4SLinus Torvalds 		.extra2		= &maxolduid,
6441da177e4SLinus Torvalds 	},
6451da177e4SLinus Torvalds 	{
6461da177e4SLinus Torvalds 		.procname	= "overflowgid",
6471da177e4SLinus Torvalds 		.data		= &overflowgid,
6481da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6491da177e4SLinus Torvalds 		.mode		= 0644,
6506d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
6511da177e4SLinus Torvalds 		.extra1		= &minolduid,
6521da177e4SLinus Torvalds 		.extra2		= &maxolduid,
6531da177e4SLinus Torvalds 	},
654347a8dc3SMartin Schwidefsky #ifdef CONFIG_S390
6551da177e4SLinus Torvalds #ifdef CONFIG_MATHEMU
6561da177e4SLinus Torvalds 	{
6571da177e4SLinus Torvalds 		.procname	= "ieee_emulation_warnings",
6581da177e4SLinus Torvalds 		.data		= &sysctl_ieee_emulation_warnings,
6591da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6601da177e4SLinus Torvalds 		.mode		= 0644,
6616d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
6621da177e4SLinus Torvalds 	},
6631da177e4SLinus Torvalds #endif
6641da177e4SLinus Torvalds 	{
6651da177e4SLinus Torvalds 		.procname	= "userprocess_debug",
666ab3c68eeSHeiko Carstens 		.data		= &show_unhandled_signals,
6671da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6681da177e4SLinus Torvalds 		.mode		= 0644,
6696d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
6701da177e4SLinus Torvalds 	},
6711da177e4SLinus Torvalds #endif
6721da177e4SLinus Torvalds 	{
6731da177e4SLinus Torvalds 		.procname	= "pid_max",
6741da177e4SLinus Torvalds 		.data		= &pid_max,
6751da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
6761da177e4SLinus Torvalds 		.mode		= 0644,
6776d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
6781da177e4SLinus Torvalds 		.extra1		= &pid_max_min,
6791da177e4SLinus Torvalds 		.extra2		= &pid_max_max,
6801da177e4SLinus Torvalds 	},
6811da177e4SLinus Torvalds 	{
6821da177e4SLinus Torvalds 		.procname	= "panic_on_oops",
6831da177e4SLinus Torvalds 		.data		= &panic_on_oops,
6841da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
6851da177e4SLinus Torvalds 		.mode		= 0644,
6866d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
6871da177e4SLinus Torvalds 	},
6887ef3d2fdSJoe Perches #if defined CONFIG_PRINTK
6897ef3d2fdSJoe Perches 	{
6907ef3d2fdSJoe Perches 		.procname	= "printk",
6917ef3d2fdSJoe Perches 		.data		= &console_loglevel,
6927ef3d2fdSJoe Perches 		.maxlen		= 4*sizeof(int),
6937ef3d2fdSJoe Perches 		.mode		= 0644,
6946d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
6957ef3d2fdSJoe Perches 	},
6961da177e4SLinus Torvalds 	{
6971da177e4SLinus Torvalds 		.procname	= "printk_ratelimit",
698717115e1SDave Young 		.data		= &printk_ratelimit_state.interval,
6991da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
7001da177e4SLinus Torvalds 		.mode		= 0644,
7016d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_jiffies,
7021da177e4SLinus Torvalds 	},
7031da177e4SLinus Torvalds 	{
7041da177e4SLinus Torvalds 		.procname	= "printk_ratelimit_burst",
705717115e1SDave Young 		.data		= &printk_ratelimit_state.burst,
7061da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
7071da177e4SLinus Torvalds 		.mode		= 0644,
7086d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
7091da177e4SLinus Torvalds 	},
710af91322eSDave Young 	{
711af91322eSDave Young 		.procname	= "printk_delay",
712af91322eSDave Young 		.data		= &printk_delay_msec,
713af91322eSDave Young 		.maxlen		= sizeof(int),
714af91322eSDave Young 		.mode		= 0644,
7156d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
716af91322eSDave Young 		.extra1		= &zero,
717af91322eSDave Young 		.extra2		= &ten_thousand,
718af91322eSDave Young 	},
7191da177e4SLinus Torvalds 	{
720eaf06b24SDan Rosenberg 		.procname	= "dmesg_restrict",
721eaf06b24SDan Rosenberg 		.data		= &dmesg_restrict,
722eaf06b24SDan Rosenberg 		.maxlen		= sizeof(int),
723eaf06b24SDan Rosenberg 		.mode		= 0644,
724eaf06b24SDan Rosenberg 		.proc_handler	= proc_dointvec_minmax,
725eaf06b24SDan Rosenberg 		.extra1		= &zero,
726eaf06b24SDan Rosenberg 		.extra2		= &one,
727eaf06b24SDan Rosenberg 	},
728455cd5abSDan Rosenberg 	{
729455cd5abSDan Rosenberg 		.procname	= "kptr_restrict",
730455cd5abSDan Rosenberg 		.data		= &kptr_restrict,
731455cd5abSDan Rosenberg 		.maxlen		= sizeof(int),
732455cd5abSDan Rosenberg 		.mode		= 0644,
733bfdc0b49SRichard Weinberger 		.proc_handler	= proc_dmesg_restrict,
734455cd5abSDan Rosenberg 		.extra1		= &zero,
735455cd5abSDan Rosenberg 		.extra2		= &two,
736455cd5abSDan Rosenberg 	},
737df6e61d4SJoe Perches #endif
738eaf06b24SDan Rosenberg 	{
7391da177e4SLinus Torvalds 		.procname	= "ngroups_max",
7401da177e4SLinus Torvalds 		.data		= &ngroups_max,
7411da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
7421da177e4SLinus Torvalds 		.mode		= 0444,
7436d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
7441da177e4SLinus Torvalds 	},
745*73efc039SDan Ballard 	{
746*73efc039SDan Ballard 		.procname	= "cap_last_cap",
747*73efc039SDan Ballard 		.data		= (void *)&cap_last_cap,
748*73efc039SDan Ballard 		.maxlen		= sizeof(int),
749*73efc039SDan Ballard 		.mode		= 0444,
750*73efc039SDan Ballard 		.proc_handler	= proc_dointvec,
751*73efc039SDan Ballard 	},
75258687acbSDon Zickus #if defined(CONFIG_LOCKUP_DETECTOR)
753504d7cf1SDon Zickus 	{
75458687acbSDon Zickus 		.procname       = "watchdog",
75558687acbSDon Zickus 		.data           = &watchdog_enabled,
756504d7cf1SDon Zickus 		.maxlen         = sizeof (int),
757504d7cf1SDon Zickus 		.mode           = 0644,
758586692a5SMandeep Singh Baines 		.proc_handler   = proc_dowatchdog,
759586692a5SMandeep Singh Baines 		.extra1		= &zero,
760586692a5SMandeep Singh Baines 		.extra2		= &one,
76158687acbSDon Zickus 	},
76258687acbSDon Zickus 	{
76358687acbSDon Zickus 		.procname	= "watchdog_thresh",
764586692a5SMandeep Singh Baines 		.data		= &watchdog_thresh,
76558687acbSDon Zickus 		.maxlen		= sizeof(int),
76658687acbSDon Zickus 		.mode		= 0644,
767586692a5SMandeep Singh Baines 		.proc_handler	= proc_dowatchdog,
76858687acbSDon Zickus 		.extra1		= &neg_one,
76958687acbSDon Zickus 		.extra2		= &sixty,
770504d7cf1SDon Zickus 	},
7712508ce18SDon Zickus 	{
7722508ce18SDon Zickus 		.procname	= "softlockup_panic",
7732508ce18SDon Zickus 		.data		= &softlockup_panic,
7742508ce18SDon Zickus 		.maxlen		= sizeof(int),
7752508ce18SDon Zickus 		.mode		= 0644,
7762508ce18SDon Zickus 		.proc_handler	= proc_dointvec_minmax,
7772508ce18SDon Zickus 		.extra1		= &zero,
7782508ce18SDon Zickus 		.extra2		= &one,
7792508ce18SDon Zickus 	},
7805dc30558SDon Zickus 	{
7815dc30558SDon Zickus 		.procname       = "nmi_watchdog",
7825dc30558SDon Zickus 		.data           = &watchdog_enabled,
7835dc30558SDon Zickus 		.maxlen         = sizeof (int),
7845dc30558SDon Zickus 		.mode           = 0644,
785586692a5SMandeep Singh Baines 		.proc_handler   = proc_dowatchdog,
786586692a5SMandeep Singh Baines 		.extra1		= &zero,
787586692a5SMandeep Singh Baines 		.extra2		= &one,
7885dc30558SDon Zickus 	},
7895dc30558SDon Zickus #endif
7905dc30558SDon Zickus #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
7915dc30558SDon Zickus 	{
7925dc30558SDon Zickus 		.procname       = "unknown_nmi_panic",
7935dc30558SDon Zickus 		.data           = &unknown_nmi_panic,
7945dc30558SDon Zickus 		.maxlen         = sizeof (int),
7955dc30558SDon Zickus 		.mode           = 0644,
7965dc30558SDon Zickus 		.proc_handler   = proc_dointvec,
7975dc30558SDon Zickus 	},
798504d7cf1SDon Zickus #endif
7991da177e4SLinus Torvalds #if defined(CONFIG_X86)
8001da177e4SLinus Torvalds 	{
8018da5addaSDon Zickus 		.procname	= "panic_on_unrecovered_nmi",
8028da5addaSDon Zickus 		.data		= &panic_on_unrecovered_nmi,
8038da5addaSDon Zickus 		.maxlen		= sizeof(int),
8048da5addaSDon Zickus 		.mode		= 0644,
8056d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8068da5addaSDon Zickus 	},
8078da5addaSDon Zickus 	{
8085211a242SKurt Garloff 		.procname	= "panic_on_io_nmi",
8095211a242SKurt Garloff 		.data		= &panic_on_io_nmi,
8105211a242SKurt Garloff 		.maxlen		= sizeof(int),
8115211a242SKurt Garloff 		.mode		= 0644,
8126d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8135211a242SKurt Garloff 	},
8145211a242SKurt Garloff 	{
8151da177e4SLinus Torvalds 		.procname	= "bootloader_type",
8161da177e4SLinus Torvalds 		.data		= &bootloader_type,
8171da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
8181da177e4SLinus Torvalds 		.mode		= 0444,
8196d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8201da177e4SLinus Torvalds 	},
8210741f4d2SChuck Ebbert 	{
8225031296cSH. Peter Anvin 		.procname	= "bootloader_version",
8235031296cSH. Peter Anvin 		.data		= &bootloader_version,
8245031296cSH. Peter Anvin 		.maxlen		= sizeof (int),
8255031296cSH. Peter Anvin 		.mode		= 0444,
8266d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8275031296cSH. Peter Anvin 	},
8285031296cSH. Peter Anvin 	{
8290741f4d2SChuck Ebbert 		.procname	= "kstack_depth_to_print",
8300741f4d2SChuck Ebbert 		.data		= &kstack_depth_to_print,
8310741f4d2SChuck Ebbert 		.maxlen		= sizeof(int),
8320741f4d2SChuck Ebbert 		.mode		= 0644,
8336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8340741f4d2SChuck Ebbert 	},
8356e7c4025SIngo Molnar 	{
8366e7c4025SIngo Molnar 		.procname	= "io_delay_type",
8376e7c4025SIngo Molnar 		.data		= &io_delay_type,
8386e7c4025SIngo Molnar 		.maxlen		= sizeof(int),
8396e7c4025SIngo Molnar 		.mode		= 0644,
8406d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8416e7c4025SIngo Molnar 	},
8421da177e4SLinus Torvalds #endif
8437a9166e3SLuke Yang #if defined(CONFIG_MMU)
8441da177e4SLinus Torvalds 	{
8451da177e4SLinus Torvalds 		.procname	= "randomize_va_space",
8461da177e4SLinus Torvalds 		.data		= &randomize_va_space,
8471da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
8481da177e4SLinus Torvalds 		.mode		= 0644,
8496d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
8501da177e4SLinus Torvalds 	},
8517a9166e3SLuke Yang #endif
8520152fb37SMartin Schwidefsky #if defined(CONFIG_S390) && defined(CONFIG_SMP)
853951f22d5SMartin Schwidefsky 	{
854951f22d5SMartin Schwidefsky 		.procname	= "spin_retry",
855951f22d5SMartin Schwidefsky 		.data		= &spin_retry,
856951f22d5SMartin Schwidefsky 		.maxlen		= sizeof (int),
857951f22d5SMartin Schwidefsky 		.mode		= 0644,
8586d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
859951f22d5SMartin Schwidefsky 	},
860951f22d5SMartin Schwidefsky #endif
861673d5b43SLen Brown #if	defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
862c255d844SPavel Machek 	{
863c255d844SPavel Machek 		.procname	= "acpi_video_flags",
86477afcf78SPavel Machek 		.data		= &acpi_realmode_flags,
865c255d844SPavel Machek 		.maxlen		= sizeof (unsigned long),
866c255d844SPavel Machek 		.mode		= 0644,
8676d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
868c255d844SPavel Machek 	},
869c255d844SPavel Machek #endif
870d2b176edSJes Sorensen #ifdef CONFIG_IA64
871d2b176edSJes Sorensen 	{
872d2b176edSJes Sorensen 		.procname	= "ignore-unaligned-usertrap",
873d2b176edSJes Sorensen 		.data		= &no_unaligned_warning,
874d2b176edSJes Sorensen 		.maxlen		= sizeof (int),
875d2b176edSJes Sorensen 	 	.mode		= 0644,
8766d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
877d2b176edSJes Sorensen 	},
87888fc241fSDoug Chapman 	{
87988fc241fSDoug Chapman 		.procname	= "unaligned-dump-stack",
88088fc241fSDoug Chapman 		.data		= &unaligned_dump_stack,
88188fc241fSDoug Chapman 		.maxlen		= sizeof (int),
88288fc241fSDoug Chapman 		.mode		= 0644,
8836d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
88488fc241fSDoug Chapman 	},
885d2b176edSJes Sorensen #endif
886e162b39aSMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK
887e162b39aSMandeep Singh Baines 	{
888e162b39aSMandeep Singh Baines 		.procname	= "hung_task_panic",
889e162b39aSMandeep Singh Baines 		.data		= &sysctl_hung_task_panic,
890e162b39aSMandeep Singh Baines 		.maxlen		= sizeof(int),
891e162b39aSMandeep Singh Baines 		.mode		= 0644,
8926d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
893e162b39aSMandeep Singh Baines 		.extra1		= &zero,
894e162b39aSMandeep Singh Baines 		.extra2		= &one,
895e162b39aSMandeep Singh Baines 	},
89682a1fcb9SIngo Molnar 	{
89782a1fcb9SIngo Molnar 		.procname	= "hung_task_check_count",
89882a1fcb9SIngo Molnar 		.data		= &sysctl_hung_task_check_count,
89990739081SIngo Molnar 		.maxlen		= sizeof(unsigned long),
90082a1fcb9SIngo Molnar 		.mode		= 0644,
9016d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
90282a1fcb9SIngo Molnar 	},
90382a1fcb9SIngo Molnar 	{
90482a1fcb9SIngo Molnar 		.procname	= "hung_task_timeout_secs",
90582a1fcb9SIngo Molnar 		.data		= &sysctl_hung_task_timeout_secs,
90690739081SIngo Molnar 		.maxlen		= sizeof(unsigned long),
90782a1fcb9SIngo Molnar 		.mode		= 0644,
9086d456111SEric W. Biederman 		.proc_handler	= proc_dohung_task_timeout_secs,
90982a1fcb9SIngo Molnar 	},
91082a1fcb9SIngo Molnar 	{
91182a1fcb9SIngo Molnar 		.procname	= "hung_task_warnings",
91282a1fcb9SIngo Molnar 		.data		= &sysctl_hung_task_warnings,
91390739081SIngo Molnar 		.maxlen		= sizeof(unsigned long),
91482a1fcb9SIngo Molnar 		.mode		= 0644,
9156d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
91682a1fcb9SIngo Molnar 	},
917c4f3b63fSRavikiran G Thirumalai #endif
918bebfa101SAndi Kleen #ifdef CONFIG_COMPAT
919bebfa101SAndi Kleen 	{
920bebfa101SAndi Kleen 		.procname	= "compat-log",
921bebfa101SAndi Kleen 		.data		= &compat_log,
922bebfa101SAndi Kleen 		.maxlen		= sizeof (int),
923bebfa101SAndi Kleen 	 	.mode		= 0644,
9246d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
925bebfa101SAndi Kleen 	},
926bebfa101SAndi Kleen #endif
92723f78d4aSIngo Molnar #ifdef CONFIG_RT_MUTEXES
92823f78d4aSIngo Molnar 	{
92923f78d4aSIngo Molnar 		.procname	= "max_lock_depth",
93023f78d4aSIngo Molnar 		.data		= &max_lock_depth,
93123f78d4aSIngo Molnar 		.maxlen		= sizeof(int),
93223f78d4aSIngo Molnar 		.mode		= 0644,
9336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
93423f78d4aSIngo Molnar 	},
93523f78d4aSIngo Molnar #endif
93610a0a8d4SJeremy Fitzhardinge 	{
93710a0a8d4SJeremy Fitzhardinge 		.procname	= "poweroff_cmd",
93810a0a8d4SJeremy Fitzhardinge 		.data		= &poweroff_cmd,
93910a0a8d4SJeremy Fitzhardinge 		.maxlen		= POWEROFF_CMD_PATH_LEN,
94010a0a8d4SJeremy Fitzhardinge 		.mode		= 0644,
9416d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
94210a0a8d4SJeremy Fitzhardinge 	},
9430b77f5bfSDavid Howells #ifdef CONFIG_KEYS
9440b77f5bfSDavid Howells 	{
9450b77f5bfSDavid Howells 		.procname	= "keys",
9460b77f5bfSDavid Howells 		.mode		= 0555,
9470b77f5bfSDavid Howells 		.child		= key_sysctls,
9480b77f5bfSDavid Howells 	},
9490b77f5bfSDavid Howells #endif
95031a72bceSPaul E. McKenney #ifdef CONFIG_RCU_TORTURE_TEST
95131a72bceSPaul E. McKenney 	{
95231a72bceSPaul E. McKenney 		.procname       = "rcutorture_runnable",
95331a72bceSPaul E. McKenney 		.data           = &rcutorture_runnable,
95431a72bceSPaul E. McKenney 		.maxlen         = sizeof(int),
95531a72bceSPaul E. McKenney 		.mode           = 0644,
9566d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
95731a72bceSPaul E. McKenney 	},
95831a72bceSPaul E. McKenney #endif
959cdd6c482SIngo Molnar #ifdef CONFIG_PERF_EVENTS
960aa4a2218SVince Weaver 	/*
961aa4a2218SVince Weaver 	 * User-space scripts rely on the existence of this file
962aa4a2218SVince Weaver 	 * as a feature check for perf_events being enabled.
963aa4a2218SVince Weaver 	 *
964aa4a2218SVince Weaver 	 * So it's an ABI, do not remove!
965aa4a2218SVince Weaver 	 */
9661ccd1549SPeter Zijlstra 	{
967cdd6c482SIngo Molnar 		.procname	= "perf_event_paranoid",
968cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_paranoid,
969cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_paranoid),
9701ccd1549SPeter Zijlstra 		.mode		= 0644,
9716d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
9721ccd1549SPeter Zijlstra 	},
973c5078f78SPeter Zijlstra 	{
974cdd6c482SIngo Molnar 		.procname	= "perf_event_mlock_kb",
975cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_mlock,
976cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_mlock),
977c5078f78SPeter Zijlstra 		.mode		= 0644,
9786d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
979c5078f78SPeter Zijlstra 	},
980a78ac325SPeter Zijlstra 	{
981cdd6c482SIngo Molnar 		.procname	= "perf_event_max_sample_rate",
982cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_sample_rate,
983cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_sample_rate),
984a78ac325SPeter Zijlstra 		.mode		= 0644,
985163ec435SPeter Zijlstra 		.proc_handler	= perf_proc_update_handler,
986a78ac325SPeter Zijlstra 	},
9871ccd1549SPeter Zijlstra #endif
988dfec072eSVegard Nossum #ifdef CONFIG_KMEMCHECK
989dfec072eSVegard Nossum 	{
990dfec072eSVegard Nossum 		.procname	= "kmemcheck",
991dfec072eSVegard Nossum 		.data		= &kmemcheck_enabled,
992dfec072eSVegard Nossum 		.maxlen		= sizeof(int),
993dfec072eSVegard Nossum 		.mode		= 0644,
9946d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
995dfec072eSVegard Nossum 	},
996dfec072eSVegard Nossum #endif
997cb684b5bSJens Axboe #ifdef CONFIG_BLOCK
9985e605b64SJens Axboe 	{
9995e605b64SJens Axboe 		.procname	= "blk_iopoll",
10005e605b64SJens Axboe 		.data		= &blk_iopoll_enabled,
10015e605b64SJens Axboe 		.maxlen		= sizeof(int),
10025e605b64SJens Axboe 		.mode		= 0644,
10036d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
10045e605b64SJens Axboe 	},
1005cb684b5bSJens Axboe #endif
10066fce56ecSEric W. Biederman 	{ }
10071da177e4SLinus Torvalds };
10081da177e4SLinus Torvalds 
1009d8217f07SEric W. Biederman static struct ctl_table vm_table[] = {
10101da177e4SLinus Torvalds 	{
10111da177e4SLinus Torvalds 		.procname	= "overcommit_memory",
10121da177e4SLinus Torvalds 		.data		= &sysctl_overcommit_memory,
10131da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_overcommit_memory),
10141da177e4SLinus Torvalds 		.mode		= 0644,
1015cb16e95fSPetr Holasek 		.proc_handler	= proc_dointvec_minmax,
1016cb16e95fSPetr Holasek 		.extra1		= &zero,
1017cb16e95fSPetr Holasek 		.extra2		= &two,
10181da177e4SLinus Torvalds 	},
10191da177e4SLinus Torvalds 	{
1020fadd8fbdSKAMEZAWA Hiroyuki 		.procname	= "panic_on_oom",
1021fadd8fbdSKAMEZAWA Hiroyuki 		.data		= &sysctl_panic_on_oom,
1022fadd8fbdSKAMEZAWA Hiroyuki 		.maxlen		= sizeof(sysctl_panic_on_oom),
1023fadd8fbdSKAMEZAWA Hiroyuki 		.mode		= 0644,
1024cb16e95fSPetr Holasek 		.proc_handler	= proc_dointvec_minmax,
1025cb16e95fSPetr Holasek 		.extra1		= &zero,
1026cb16e95fSPetr Holasek 		.extra2		= &two,
1027fadd8fbdSKAMEZAWA Hiroyuki 	},
1028fadd8fbdSKAMEZAWA Hiroyuki 	{
1029fe071d7eSDavid Rientjes 		.procname	= "oom_kill_allocating_task",
1030fe071d7eSDavid Rientjes 		.data		= &sysctl_oom_kill_allocating_task,
1031fe071d7eSDavid Rientjes 		.maxlen		= sizeof(sysctl_oom_kill_allocating_task),
1032fe071d7eSDavid Rientjes 		.mode		= 0644,
10336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1034fe071d7eSDavid Rientjes 	},
1035fe071d7eSDavid Rientjes 	{
1036fef1bdd6SDavid Rientjes 		.procname	= "oom_dump_tasks",
1037fef1bdd6SDavid Rientjes 		.data		= &sysctl_oom_dump_tasks,
1038fef1bdd6SDavid Rientjes 		.maxlen		= sizeof(sysctl_oom_dump_tasks),
1039fef1bdd6SDavid Rientjes 		.mode		= 0644,
10406d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1041fef1bdd6SDavid Rientjes 	},
1042fef1bdd6SDavid Rientjes 	{
10431da177e4SLinus Torvalds 		.procname	= "overcommit_ratio",
10441da177e4SLinus Torvalds 		.data		= &sysctl_overcommit_ratio,
10451da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_overcommit_ratio),
10461da177e4SLinus Torvalds 		.mode		= 0644,
10476d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
10481da177e4SLinus Torvalds 	},
10491da177e4SLinus Torvalds 	{
10501da177e4SLinus Torvalds 		.procname	= "page-cluster",
10511da177e4SLinus Torvalds 		.data		= &page_cluster,
10521da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
10531da177e4SLinus Torvalds 		.mode		= 0644,
1054cb16e95fSPetr Holasek 		.proc_handler	= proc_dointvec_minmax,
1055cb16e95fSPetr Holasek 		.extra1		= &zero,
10561da177e4SLinus Torvalds 	},
10571da177e4SLinus Torvalds 	{
10581da177e4SLinus Torvalds 		.procname	= "dirty_background_ratio",
10591da177e4SLinus Torvalds 		.data		= &dirty_background_ratio,
10601da177e4SLinus Torvalds 		.maxlen		= sizeof(dirty_background_ratio),
10611da177e4SLinus Torvalds 		.mode		= 0644,
10626d456111SEric W. Biederman 		.proc_handler	= dirty_background_ratio_handler,
10631da177e4SLinus Torvalds 		.extra1		= &zero,
10641da177e4SLinus Torvalds 		.extra2		= &one_hundred,
10651da177e4SLinus Torvalds 	},
10661da177e4SLinus Torvalds 	{
10672da02997SDavid Rientjes 		.procname	= "dirty_background_bytes",
10682da02997SDavid Rientjes 		.data		= &dirty_background_bytes,
10692da02997SDavid Rientjes 		.maxlen		= sizeof(dirty_background_bytes),
10702da02997SDavid Rientjes 		.mode		= 0644,
10716d456111SEric W. Biederman 		.proc_handler	= dirty_background_bytes_handler,
1072fc3501d4SSven Wegener 		.extra1		= &one_ul,
10732da02997SDavid Rientjes 	},
10742da02997SDavid Rientjes 	{
10751da177e4SLinus Torvalds 		.procname	= "dirty_ratio",
10761da177e4SLinus Torvalds 		.data		= &vm_dirty_ratio,
10771da177e4SLinus Torvalds 		.maxlen		= sizeof(vm_dirty_ratio),
10781da177e4SLinus Torvalds 		.mode		= 0644,
10796d456111SEric W. Biederman 		.proc_handler	= dirty_ratio_handler,
10801da177e4SLinus Torvalds 		.extra1		= &zero,
10811da177e4SLinus Torvalds 		.extra2		= &one_hundred,
10821da177e4SLinus Torvalds 	},
10831da177e4SLinus Torvalds 	{
10842da02997SDavid Rientjes 		.procname	= "dirty_bytes",
10852da02997SDavid Rientjes 		.data		= &vm_dirty_bytes,
10862da02997SDavid Rientjes 		.maxlen		= sizeof(vm_dirty_bytes),
10872da02997SDavid Rientjes 		.mode		= 0644,
10886d456111SEric W. Biederman 		.proc_handler	= dirty_bytes_handler,
10899e4a5bdaSAndrea Righi 		.extra1		= &dirty_bytes_min,
10902da02997SDavid Rientjes 	},
10912da02997SDavid Rientjes 	{
10921da177e4SLinus Torvalds 		.procname	= "dirty_writeback_centisecs",
1093f6ef9438SBart Samwel 		.data		= &dirty_writeback_interval,
1094f6ef9438SBart Samwel 		.maxlen		= sizeof(dirty_writeback_interval),
10951da177e4SLinus Torvalds 		.mode		= 0644,
10966d456111SEric W. Biederman 		.proc_handler	= dirty_writeback_centisecs_handler,
10971da177e4SLinus Torvalds 	},
10981da177e4SLinus Torvalds 	{
10991da177e4SLinus Torvalds 		.procname	= "dirty_expire_centisecs",
1100f6ef9438SBart Samwel 		.data		= &dirty_expire_interval,
1101f6ef9438SBart Samwel 		.maxlen		= sizeof(dirty_expire_interval),
11021da177e4SLinus Torvalds 		.mode		= 0644,
1103cb16e95fSPetr Holasek 		.proc_handler	= proc_dointvec_minmax,
1104cb16e95fSPetr Holasek 		.extra1		= &zero,
11051da177e4SLinus Torvalds 	},
11061da177e4SLinus Torvalds 	{
11071da177e4SLinus Torvalds 		.procname	= "nr_pdflush_threads",
11081da177e4SLinus Torvalds 		.data		= &nr_pdflush_threads,
11091da177e4SLinus Torvalds 		.maxlen		= sizeof nr_pdflush_threads,
11101da177e4SLinus Torvalds 		.mode		= 0444 /* read-only*/,
11116d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
11121da177e4SLinus Torvalds 	},
11131da177e4SLinus Torvalds 	{
11141da177e4SLinus Torvalds 		.procname	= "swappiness",
11151da177e4SLinus Torvalds 		.data		= &vm_swappiness,
11161da177e4SLinus Torvalds 		.maxlen		= sizeof(vm_swappiness),
11171da177e4SLinus Torvalds 		.mode		= 0644,
11186d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
11191da177e4SLinus Torvalds 		.extra1		= &zero,
11201da177e4SLinus Torvalds 		.extra2		= &one_hundred,
11211da177e4SLinus Torvalds 	},
11221da177e4SLinus Torvalds #ifdef CONFIG_HUGETLB_PAGE
11231da177e4SLinus Torvalds 	{
11241da177e4SLinus Torvalds 		.procname	= "nr_hugepages",
1125e5ff2159SAndi Kleen 		.data		= NULL,
11261da177e4SLinus Torvalds 		.maxlen		= sizeof(unsigned long),
11271da177e4SLinus Torvalds 		.mode		= 0644,
11286d456111SEric W. Biederman 		.proc_handler	= hugetlb_sysctl_handler,
11291da177e4SLinus Torvalds 		.extra1		= (void *)&hugetlb_zero,
11301da177e4SLinus Torvalds 		.extra2		= (void *)&hugetlb_infinity,
11311da177e4SLinus Torvalds 	},
113206808b08SLee Schermerhorn #ifdef CONFIG_NUMA
113306808b08SLee Schermerhorn 	{
113406808b08SLee Schermerhorn 		.procname       = "nr_hugepages_mempolicy",
113506808b08SLee Schermerhorn 		.data           = NULL,
113606808b08SLee Schermerhorn 		.maxlen         = sizeof(unsigned long),
113706808b08SLee Schermerhorn 		.mode           = 0644,
113806808b08SLee Schermerhorn 		.proc_handler   = &hugetlb_mempolicy_sysctl_handler,
113906808b08SLee Schermerhorn 		.extra1		= (void *)&hugetlb_zero,
114006808b08SLee Schermerhorn 		.extra2		= (void *)&hugetlb_infinity,
114106808b08SLee Schermerhorn 	},
114206808b08SLee Schermerhorn #endif
11431da177e4SLinus Torvalds 	 {
11441da177e4SLinus Torvalds 		.procname	= "hugetlb_shm_group",
11451da177e4SLinus Torvalds 		.data		= &sysctl_hugetlb_shm_group,
11461da177e4SLinus Torvalds 		.maxlen		= sizeof(gid_t),
11471da177e4SLinus Torvalds 		.mode		= 0644,
11486d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
11491da177e4SLinus Torvalds 	 },
1150396faf03SMel Gorman 	 {
1151396faf03SMel Gorman 		.procname	= "hugepages_treat_as_movable",
1152396faf03SMel Gorman 		.data		= &hugepages_treat_as_movable,
1153396faf03SMel Gorman 		.maxlen		= sizeof(int),
1154396faf03SMel Gorman 		.mode		= 0644,
11556d456111SEric W. Biederman 		.proc_handler	= hugetlb_treat_movable_handler,
1156396faf03SMel Gorman 	},
115754f9f80dSAdam Litke 	{
1158d1c3fb1fSNishanth Aravamudan 		.procname	= "nr_overcommit_hugepages",
1159e5ff2159SAndi Kleen 		.data		= NULL,
1160e5ff2159SAndi Kleen 		.maxlen		= sizeof(unsigned long),
1161d1c3fb1fSNishanth Aravamudan 		.mode		= 0644,
11626d456111SEric W. Biederman 		.proc_handler	= hugetlb_overcommit_handler,
1163e5ff2159SAndi Kleen 		.extra1		= (void *)&hugetlb_zero,
1164e5ff2159SAndi Kleen 		.extra2		= (void *)&hugetlb_infinity,
1165d1c3fb1fSNishanth Aravamudan 	},
11661da177e4SLinus Torvalds #endif
11671da177e4SLinus Torvalds 	{
11681da177e4SLinus Torvalds 		.procname	= "lowmem_reserve_ratio",
11691da177e4SLinus Torvalds 		.data		= &sysctl_lowmem_reserve_ratio,
11701da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_lowmem_reserve_ratio),
11711da177e4SLinus Torvalds 		.mode		= 0644,
11726d456111SEric W. Biederman 		.proc_handler	= lowmem_reserve_ratio_sysctl_handler,
11731da177e4SLinus Torvalds 	},
11741da177e4SLinus Torvalds 	{
11759d0243bcSAndrew Morton 		.procname	= "drop_caches",
11769d0243bcSAndrew Morton 		.data		= &sysctl_drop_caches,
11779d0243bcSAndrew Morton 		.maxlen		= sizeof(int),
11789d0243bcSAndrew Morton 		.mode		= 0644,
11799d0243bcSAndrew Morton 		.proc_handler	= drop_caches_sysctl_handler,
1180cb16e95fSPetr Holasek 		.extra1		= &one,
1181cb16e95fSPetr Holasek 		.extra2		= &three,
11829d0243bcSAndrew Morton 	},
118376ab0f53SMel Gorman #ifdef CONFIG_COMPACTION
118476ab0f53SMel Gorman 	{
118576ab0f53SMel Gorman 		.procname	= "compact_memory",
118676ab0f53SMel Gorman 		.data		= &sysctl_compact_memory,
118776ab0f53SMel Gorman 		.maxlen		= sizeof(int),
118876ab0f53SMel Gorman 		.mode		= 0200,
118976ab0f53SMel Gorman 		.proc_handler	= sysctl_compaction_handler,
119076ab0f53SMel Gorman 	},
11915e771905SMel Gorman 	{
11925e771905SMel Gorman 		.procname	= "extfrag_threshold",
11935e771905SMel Gorman 		.data		= &sysctl_extfrag_threshold,
11945e771905SMel Gorman 		.maxlen		= sizeof(int),
11955e771905SMel Gorman 		.mode		= 0644,
11965e771905SMel Gorman 		.proc_handler	= sysctl_extfrag_handler,
11975e771905SMel Gorman 		.extra1		= &min_extfrag_threshold,
11985e771905SMel Gorman 		.extra2		= &max_extfrag_threshold,
11995e771905SMel Gorman 	},
12005e771905SMel Gorman 
120176ab0f53SMel Gorman #endif /* CONFIG_COMPACTION */
12029d0243bcSAndrew Morton 	{
12031da177e4SLinus Torvalds 		.procname	= "min_free_kbytes",
12041da177e4SLinus Torvalds 		.data		= &min_free_kbytes,
12051da177e4SLinus Torvalds 		.maxlen		= sizeof(min_free_kbytes),
12061da177e4SLinus Torvalds 		.mode		= 0644,
12076d456111SEric W. Biederman 		.proc_handler	= min_free_kbytes_sysctl_handler,
12081da177e4SLinus Torvalds 		.extra1		= &zero,
12091da177e4SLinus Torvalds 	},
12108ad4b1fbSRohit Seth 	{
12118ad4b1fbSRohit Seth 		.procname	= "percpu_pagelist_fraction",
12128ad4b1fbSRohit Seth 		.data		= &percpu_pagelist_fraction,
12138ad4b1fbSRohit Seth 		.maxlen		= sizeof(percpu_pagelist_fraction),
12148ad4b1fbSRohit Seth 		.mode		= 0644,
12156d456111SEric W. Biederman 		.proc_handler	= percpu_pagelist_fraction_sysctl_handler,
12168ad4b1fbSRohit Seth 		.extra1		= &min_percpu_pagelist_fract,
12178ad4b1fbSRohit Seth 	},
12181da177e4SLinus Torvalds #ifdef CONFIG_MMU
12191da177e4SLinus Torvalds 	{
12201da177e4SLinus Torvalds 		.procname	= "max_map_count",
12211da177e4SLinus Torvalds 		.data		= &sysctl_max_map_count,
12221da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_max_map_count),
12231da177e4SLinus Torvalds 		.mode		= 0644,
12243e26120cSWANG Cong 		.proc_handler	= proc_dointvec_minmax,
122570da2340SAmerigo Wang 		.extra1		= &zero,
12261da177e4SLinus Torvalds 	},
1227dd8632a1SPaul Mundt #else
1228dd8632a1SPaul Mundt 	{
1229dd8632a1SPaul Mundt 		.procname	= "nr_trim_pages",
1230dd8632a1SPaul Mundt 		.data		= &sysctl_nr_trim_pages,
1231dd8632a1SPaul Mundt 		.maxlen		= sizeof(sysctl_nr_trim_pages),
1232dd8632a1SPaul Mundt 		.mode		= 0644,
12336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
1234dd8632a1SPaul Mundt 		.extra1		= &zero,
1235dd8632a1SPaul Mundt 	},
12361da177e4SLinus Torvalds #endif
12371da177e4SLinus Torvalds 	{
12381da177e4SLinus Torvalds 		.procname	= "laptop_mode",
12391da177e4SLinus Torvalds 		.data		= &laptop_mode,
12401da177e4SLinus Torvalds 		.maxlen		= sizeof(laptop_mode),
12411da177e4SLinus Torvalds 		.mode		= 0644,
12426d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_jiffies,
12431da177e4SLinus Torvalds 	},
12441da177e4SLinus Torvalds 	{
12451da177e4SLinus Torvalds 		.procname	= "block_dump",
12461da177e4SLinus Torvalds 		.data		= &block_dump,
12471da177e4SLinus Torvalds 		.maxlen		= sizeof(block_dump),
12481da177e4SLinus Torvalds 		.mode		= 0644,
12496d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
12501da177e4SLinus Torvalds 		.extra1		= &zero,
12511da177e4SLinus Torvalds 	},
12521da177e4SLinus Torvalds 	{
12531da177e4SLinus Torvalds 		.procname	= "vfs_cache_pressure",
12541da177e4SLinus Torvalds 		.data		= &sysctl_vfs_cache_pressure,
12551da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_vfs_cache_pressure),
12561da177e4SLinus Torvalds 		.mode		= 0644,
12576d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
12581da177e4SLinus Torvalds 		.extra1		= &zero,
12591da177e4SLinus Torvalds 	},
12601da177e4SLinus Torvalds #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
12611da177e4SLinus Torvalds 	{
12621da177e4SLinus Torvalds 		.procname	= "legacy_va_layout",
12631da177e4SLinus Torvalds 		.data		= &sysctl_legacy_va_layout,
12641da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_legacy_va_layout),
12651da177e4SLinus Torvalds 		.mode		= 0644,
12666d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
12671da177e4SLinus Torvalds 		.extra1		= &zero,
12681da177e4SLinus Torvalds 	},
12691da177e4SLinus Torvalds #endif
12701743660bSChristoph Lameter #ifdef CONFIG_NUMA
12711743660bSChristoph Lameter 	{
12721743660bSChristoph Lameter 		.procname	= "zone_reclaim_mode",
12731743660bSChristoph Lameter 		.data		= &zone_reclaim_mode,
12741743660bSChristoph Lameter 		.maxlen		= sizeof(zone_reclaim_mode),
12751743660bSChristoph Lameter 		.mode		= 0644,
12766d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1277c84db23cSChristoph Lameter 		.extra1		= &zero,
12781743660bSChristoph Lameter 	},
12799614634fSChristoph Lameter 	{
12809614634fSChristoph Lameter 		.procname	= "min_unmapped_ratio",
12819614634fSChristoph Lameter 		.data		= &sysctl_min_unmapped_ratio,
12829614634fSChristoph Lameter 		.maxlen		= sizeof(sysctl_min_unmapped_ratio),
12839614634fSChristoph Lameter 		.mode		= 0644,
12846d456111SEric W. Biederman 		.proc_handler	= sysctl_min_unmapped_ratio_sysctl_handler,
12859614634fSChristoph Lameter 		.extra1		= &zero,
12869614634fSChristoph Lameter 		.extra2		= &one_hundred,
12879614634fSChristoph Lameter 	},
12880ff38490SChristoph Lameter 	{
12890ff38490SChristoph Lameter 		.procname	= "min_slab_ratio",
12900ff38490SChristoph Lameter 		.data		= &sysctl_min_slab_ratio,
12910ff38490SChristoph Lameter 		.maxlen		= sizeof(sysctl_min_slab_ratio),
12920ff38490SChristoph Lameter 		.mode		= 0644,
12936d456111SEric W. Biederman 		.proc_handler	= sysctl_min_slab_ratio_sysctl_handler,
12940ff38490SChristoph Lameter 		.extra1		= &zero,
12950ff38490SChristoph Lameter 		.extra2		= &one_hundred,
12960ff38490SChristoph Lameter 	},
12971743660bSChristoph Lameter #endif
129877461ab3SChristoph Lameter #ifdef CONFIG_SMP
129977461ab3SChristoph Lameter 	{
130077461ab3SChristoph Lameter 		.procname	= "stat_interval",
130177461ab3SChristoph Lameter 		.data		= &sysctl_stat_interval,
130277461ab3SChristoph Lameter 		.maxlen		= sizeof(sysctl_stat_interval),
130377461ab3SChristoph Lameter 		.mode		= 0644,
13046d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_jiffies,
130577461ab3SChristoph Lameter 	},
130677461ab3SChristoph Lameter #endif
13076e141546SDavid Howells #ifdef CONFIG_MMU
1308ed032189SEric Paris 	{
1309ed032189SEric Paris 		.procname	= "mmap_min_addr",
1310788084abSEric Paris 		.data		= &dac_mmap_min_addr,
1311ed032189SEric Paris 		.maxlen		= sizeof(unsigned long),
1312ed032189SEric Paris 		.mode		= 0644,
13136d456111SEric W. Biederman 		.proc_handler	= mmap_min_addr_handler,
1314ed032189SEric Paris 	},
13156e141546SDavid Howells #endif
1316f0c0b2b8SKAMEZAWA Hiroyuki #ifdef CONFIG_NUMA
1317f0c0b2b8SKAMEZAWA Hiroyuki 	{
1318f0c0b2b8SKAMEZAWA Hiroyuki 		.procname	= "numa_zonelist_order",
1319f0c0b2b8SKAMEZAWA Hiroyuki 		.data		= &numa_zonelist_order,
1320f0c0b2b8SKAMEZAWA Hiroyuki 		.maxlen		= NUMA_ZONELIST_ORDER_LEN,
1321f0c0b2b8SKAMEZAWA Hiroyuki 		.mode		= 0644,
13226d456111SEric W. Biederman 		.proc_handler	= numa_zonelist_order_handler,
1323f0c0b2b8SKAMEZAWA Hiroyuki 	},
1324f0c0b2b8SKAMEZAWA Hiroyuki #endif
13252b8232ceSAl Viro #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
13265c36e657SPaul Mundt    (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
1327e6e5494cSIngo Molnar 	{
1328e6e5494cSIngo Molnar 		.procname	= "vdso_enabled",
1329e6e5494cSIngo Molnar 		.data		= &vdso_enabled,
1330e6e5494cSIngo Molnar 		.maxlen		= sizeof(vdso_enabled),
1331e6e5494cSIngo Molnar 		.mode		= 0644,
13326d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1333e6e5494cSIngo Molnar 		.extra1		= &zero,
1334e6e5494cSIngo Molnar 	},
1335e6e5494cSIngo Molnar #endif
1336195cf453SBron Gondwana #ifdef CONFIG_HIGHMEM
1337195cf453SBron Gondwana 	{
1338195cf453SBron Gondwana 		.procname	= "highmem_is_dirtyable",
1339195cf453SBron Gondwana 		.data		= &vm_highmem_is_dirtyable,
1340195cf453SBron Gondwana 		.maxlen		= sizeof(vm_highmem_is_dirtyable),
1341195cf453SBron Gondwana 		.mode		= 0644,
13426d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
1343195cf453SBron Gondwana 		.extra1		= &zero,
1344195cf453SBron Gondwana 		.extra2		= &one,
1345195cf453SBron Gondwana 	},
1346195cf453SBron Gondwana #endif
13474be6f6bbSPeter Zijlstra 	{
13484be6f6bbSPeter Zijlstra 		.procname	= "scan_unevictable_pages",
13494be6f6bbSPeter Zijlstra 		.data		= &scan_unevictable_pages,
13504be6f6bbSPeter Zijlstra 		.maxlen		= sizeof(scan_unevictable_pages),
13514be6f6bbSPeter Zijlstra 		.mode		= 0644,
13526d456111SEric W. Biederman 		.proc_handler	= scan_unevictable_handler,
13534be6f6bbSPeter Zijlstra 	},
13546a46079cSAndi Kleen #ifdef CONFIG_MEMORY_FAILURE
13556a46079cSAndi Kleen 	{
13566a46079cSAndi Kleen 		.procname	= "memory_failure_early_kill",
13576a46079cSAndi Kleen 		.data		= &sysctl_memory_failure_early_kill,
13586a46079cSAndi Kleen 		.maxlen		= sizeof(sysctl_memory_failure_early_kill),
13596a46079cSAndi Kleen 		.mode		= 0644,
13606d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
13616a46079cSAndi Kleen 		.extra1		= &zero,
13626a46079cSAndi Kleen 		.extra2		= &one,
13636a46079cSAndi Kleen 	},
13646a46079cSAndi Kleen 	{
13656a46079cSAndi Kleen 		.procname	= "memory_failure_recovery",
13666a46079cSAndi Kleen 		.data		= &sysctl_memory_failure_recovery,
13676a46079cSAndi Kleen 		.maxlen		= sizeof(sysctl_memory_failure_recovery),
13686a46079cSAndi Kleen 		.mode		= 0644,
13696d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
13706a46079cSAndi Kleen 		.extra1		= &zero,
13716a46079cSAndi Kleen 		.extra2		= &one,
13726a46079cSAndi Kleen 	},
13736a46079cSAndi Kleen #endif
13746fce56ecSEric W. Biederman 	{ }
13751da177e4SLinus Torvalds };
13761da177e4SLinus Torvalds 
13772abc26fcSEric W. Biederman #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1378d8217f07SEric W. Biederman static struct ctl_table binfmt_misc_table[] = {
13796fce56ecSEric W. Biederman 	{ }
13802abc26fcSEric W. Biederman };
13812abc26fcSEric W. Biederman #endif
13822abc26fcSEric W. Biederman 
1383d8217f07SEric W. Biederman static struct ctl_table fs_table[] = {
13841da177e4SLinus Torvalds 	{
13851da177e4SLinus Torvalds 		.procname	= "inode-nr",
13861da177e4SLinus Torvalds 		.data		= &inodes_stat,
13871da177e4SLinus Torvalds 		.maxlen		= 2*sizeof(int),
13881da177e4SLinus Torvalds 		.mode		= 0444,
1389cffbc8aaSDave Chinner 		.proc_handler	= proc_nr_inodes,
13901da177e4SLinus Torvalds 	},
13911da177e4SLinus Torvalds 	{
13921da177e4SLinus Torvalds 		.procname	= "inode-state",
13931da177e4SLinus Torvalds 		.data		= &inodes_stat,
13941da177e4SLinus Torvalds 		.maxlen		= 7*sizeof(int),
13951da177e4SLinus Torvalds 		.mode		= 0444,
1396cffbc8aaSDave Chinner 		.proc_handler	= proc_nr_inodes,
13971da177e4SLinus Torvalds 	},
13981da177e4SLinus Torvalds 	{
13991da177e4SLinus Torvalds 		.procname	= "file-nr",
14001da177e4SLinus Torvalds 		.data		= &files_stat,
1401518de9b3SEric Dumazet 		.maxlen		= sizeof(files_stat),
14021da177e4SLinus Torvalds 		.mode		= 0444,
14036d456111SEric W. Biederman 		.proc_handler	= proc_nr_files,
14041da177e4SLinus Torvalds 	},
14051da177e4SLinus Torvalds 	{
14061da177e4SLinus Torvalds 		.procname	= "file-max",
14071da177e4SLinus Torvalds 		.data		= &files_stat.max_files,
1408518de9b3SEric Dumazet 		.maxlen		= sizeof(files_stat.max_files),
14091da177e4SLinus Torvalds 		.mode		= 0644,
1410518de9b3SEric Dumazet 		.proc_handler	= proc_doulongvec_minmax,
14111da177e4SLinus Torvalds 	},
14121da177e4SLinus Torvalds 	{
14139cfe015aSEric Dumazet 		.procname	= "nr_open",
14149cfe015aSEric Dumazet 		.data		= &sysctl_nr_open,
14159cfe015aSEric Dumazet 		.maxlen		= sizeof(int),
14169cfe015aSEric Dumazet 		.mode		= 0644,
14176d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
1418eceea0b3SAl Viro 		.extra1		= &sysctl_nr_open_min,
1419eceea0b3SAl Viro 		.extra2		= &sysctl_nr_open_max,
14209cfe015aSEric Dumazet 	},
14219cfe015aSEric Dumazet 	{
14221da177e4SLinus Torvalds 		.procname	= "dentry-state",
14231da177e4SLinus Torvalds 		.data		= &dentry_stat,
14241da177e4SLinus Torvalds 		.maxlen		= 6*sizeof(int),
14251da177e4SLinus Torvalds 		.mode		= 0444,
1426312d3ca8SChristoph Hellwig 		.proc_handler	= proc_nr_dentry,
14271da177e4SLinus Torvalds 	},
14281da177e4SLinus Torvalds 	{
14291da177e4SLinus Torvalds 		.procname	= "overflowuid",
14301da177e4SLinus Torvalds 		.data		= &fs_overflowuid,
14311da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
14321da177e4SLinus Torvalds 		.mode		= 0644,
14336d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
14341da177e4SLinus Torvalds 		.extra1		= &minolduid,
14351da177e4SLinus Torvalds 		.extra2		= &maxolduid,
14361da177e4SLinus Torvalds 	},
14371da177e4SLinus Torvalds 	{
14381da177e4SLinus Torvalds 		.procname	= "overflowgid",
14391da177e4SLinus Torvalds 		.data		= &fs_overflowgid,
14401da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
14411da177e4SLinus Torvalds 		.mode		= 0644,
14426d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
14431da177e4SLinus Torvalds 		.extra1		= &minolduid,
14441da177e4SLinus Torvalds 		.extra2		= &maxolduid,
14451da177e4SLinus Torvalds 	},
1446bfcd17a6SThomas Petazzoni #ifdef CONFIG_FILE_LOCKING
14471da177e4SLinus Torvalds 	{
14481da177e4SLinus Torvalds 		.procname	= "leases-enable",
14491da177e4SLinus Torvalds 		.data		= &leases_enable,
14501da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
14511da177e4SLinus Torvalds 		.mode		= 0644,
14526d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
14531da177e4SLinus Torvalds 	},
1454bfcd17a6SThomas Petazzoni #endif
14551da177e4SLinus Torvalds #ifdef CONFIG_DNOTIFY
14561da177e4SLinus Torvalds 	{
14571da177e4SLinus Torvalds 		.procname	= "dir-notify-enable",
14581da177e4SLinus Torvalds 		.data		= &dir_notify_enable,
14591da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
14601da177e4SLinus Torvalds 		.mode		= 0644,
14616d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
14621da177e4SLinus Torvalds 	},
14631da177e4SLinus Torvalds #endif
14641da177e4SLinus Torvalds #ifdef CONFIG_MMU
1465bfcd17a6SThomas Petazzoni #ifdef CONFIG_FILE_LOCKING
14661da177e4SLinus Torvalds 	{
14671da177e4SLinus Torvalds 		.procname	= "lease-break-time",
14681da177e4SLinus Torvalds 		.data		= &lease_break_time,
14691da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
14701da177e4SLinus Torvalds 		.mode		= 0644,
14716d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
14721da177e4SLinus Torvalds 	},
1473bfcd17a6SThomas Petazzoni #endif
1474ebf3f09cSThomas Petazzoni #ifdef CONFIG_AIO
14751da177e4SLinus Torvalds 	{
14761da177e4SLinus Torvalds 		.procname	= "aio-nr",
14771da177e4SLinus Torvalds 		.data		= &aio_nr,
14781da177e4SLinus Torvalds 		.maxlen		= sizeof(aio_nr),
14791da177e4SLinus Torvalds 		.mode		= 0444,
14806d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
14811da177e4SLinus Torvalds 	},
14821da177e4SLinus Torvalds 	{
14831da177e4SLinus Torvalds 		.procname	= "aio-max-nr",
14841da177e4SLinus Torvalds 		.data		= &aio_max_nr,
14851da177e4SLinus Torvalds 		.maxlen		= sizeof(aio_max_nr),
14861da177e4SLinus Torvalds 		.mode		= 0644,
14876d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
14881da177e4SLinus Torvalds 	},
1489ebf3f09cSThomas Petazzoni #endif /* CONFIG_AIO */
14902d9048e2SAmy Griffis #ifdef CONFIG_INOTIFY_USER
14910399cb08SRobert Love 	{
14920399cb08SRobert Love 		.procname	= "inotify",
14930399cb08SRobert Love 		.mode		= 0555,
14940399cb08SRobert Love 		.child		= inotify_table,
14950399cb08SRobert Love 	},
14960399cb08SRobert Love #endif
14977ef9964eSDavide Libenzi #ifdef CONFIG_EPOLL
14987ef9964eSDavide Libenzi 	{
14997ef9964eSDavide Libenzi 		.procname	= "epoll",
15007ef9964eSDavide Libenzi 		.mode		= 0555,
15017ef9964eSDavide Libenzi 		.child		= epoll_table,
15027ef9964eSDavide Libenzi 	},
15037ef9964eSDavide Libenzi #endif
15041da177e4SLinus Torvalds #endif
1505d6e71144SAlan Cox 	{
1506d6e71144SAlan Cox 		.procname	= "suid_dumpable",
1507d6e71144SAlan Cox 		.data		= &suid_dumpable,
1508d6e71144SAlan Cox 		.maxlen		= sizeof(int),
1509d6e71144SAlan Cox 		.mode		= 0644,
15106d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
15118e654fbaSMatthew Wilcox 		.extra1		= &zero,
15128e654fbaSMatthew Wilcox 		.extra2		= &two,
1513d6e71144SAlan Cox 	},
15142abc26fcSEric W. Biederman #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
15152abc26fcSEric W. Biederman 	{
15162abc26fcSEric W. Biederman 		.procname	= "binfmt_misc",
15172abc26fcSEric W. Biederman 		.mode		= 0555,
15182abc26fcSEric W. Biederman 		.child		= binfmt_misc_table,
15192abc26fcSEric W. Biederman 	},
15202abc26fcSEric W. Biederman #endif
1521b492e95bSJens Axboe 	{
1522ff9da691SJens Axboe 		.procname	= "pipe-max-size",
1523ff9da691SJens Axboe 		.data		= &pipe_max_size,
1524b492e95bSJens Axboe 		.maxlen		= sizeof(int),
1525b492e95bSJens Axboe 		.mode		= 0644,
1526ff9da691SJens Axboe 		.proc_handler	= &pipe_proc_fn,
1527ff9da691SJens Axboe 		.extra1		= &pipe_min_size,
1528b492e95bSJens Axboe 	},
15296fce56ecSEric W. Biederman 	{ }
15301da177e4SLinus Torvalds };
15311da177e4SLinus Torvalds 
1532d8217f07SEric W. Biederman static struct ctl_table debug_table[] = {
1533ab3c68eeSHeiko Carstens #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \
1534571d76acSChris Metcalf     defined(CONFIG_S390) || defined(CONFIG_TILE)
1535abd4f750SMasoud Asgharifard Sharbiani 	{
1536abd4f750SMasoud Asgharifard Sharbiani 		.procname	= "exception-trace",
1537abd4f750SMasoud Asgharifard Sharbiani 		.data		= &show_unhandled_signals,
1538abd4f750SMasoud Asgharifard Sharbiani 		.maxlen		= sizeof(int),
1539abd4f750SMasoud Asgharifard Sharbiani 		.mode		= 0644,
1540abd4f750SMasoud Asgharifard Sharbiani 		.proc_handler	= proc_dointvec
1541abd4f750SMasoud Asgharifard Sharbiani 	},
1542abd4f750SMasoud Asgharifard Sharbiani #endif
1543b2be84dfSMasami Hiramatsu #if defined(CONFIG_OPTPROBES)
1544b2be84dfSMasami Hiramatsu 	{
1545b2be84dfSMasami Hiramatsu 		.procname	= "kprobes-optimization",
1546b2be84dfSMasami Hiramatsu 		.data		= &sysctl_kprobes_optimization,
1547b2be84dfSMasami Hiramatsu 		.maxlen		= sizeof(int),
1548b2be84dfSMasami Hiramatsu 		.mode		= 0644,
1549b2be84dfSMasami Hiramatsu 		.proc_handler	= proc_kprobes_optimization_handler,
1550b2be84dfSMasami Hiramatsu 		.extra1		= &zero,
1551b2be84dfSMasami Hiramatsu 		.extra2		= &one,
1552b2be84dfSMasami Hiramatsu 	},
1553b2be84dfSMasami Hiramatsu #endif
15546fce56ecSEric W. Biederman 	{ }
15551da177e4SLinus Torvalds };
15561da177e4SLinus Torvalds 
1557d8217f07SEric W. Biederman static struct ctl_table dev_table[] = {
15586fce56ecSEric W. Biederman 	{ }
15591da177e4SLinus Torvalds };
15601da177e4SLinus Torvalds 
1561330d57fbSAl Viro static DEFINE_SPINLOCK(sysctl_lock);
1562330d57fbSAl Viro 
1563330d57fbSAl Viro /* called under sysctl_lock */
1564330d57fbSAl Viro static int use_table(struct ctl_table_header *p)
1565330d57fbSAl Viro {
1566330d57fbSAl Viro 	if (unlikely(p->unregistering))
1567330d57fbSAl Viro 		return 0;
1568330d57fbSAl Viro 	p->used++;
1569330d57fbSAl Viro 	return 1;
1570330d57fbSAl Viro }
1571330d57fbSAl Viro 
1572330d57fbSAl Viro /* called under sysctl_lock */
1573330d57fbSAl Viro static void unuse_table(struct ctl_table_header *p)
1574330d57fbSAl Viro {
1575330d57fbSAl Viro 	if (!--p->used)
1576330d57fbSAl Viro 		if (unlikely(p->unregistering))
1577330d57fbSAl Viro 			complete(p->unregistering);
1578330d57fbSAl Viro }
1579330d57fbSAl Viro 
1580330d57fbSAl Viro /* called under sysctl_lock, will reacquire if has to wait */
1581330d57fbSAl Viro static void start_unregistering(struct ctl_table_header *p)
1582330d57fbSAl Viro {
1583330d57fbSAl Viro 	/*
1584330d57fbSAl Viro 	 * if p->used is 0, nobody will ever touch that entry again;
1585330d57fbSAl Viro 	 * we'll eliminate all paths to it before dropping sysctl_lock
1586330d57fbSAl Viro 	 */
1587330d57fbSAl Viro 	if (unlikely(p->used)) {
1588330d57fbSAl Viro 		struct completion wait;
1589330d57fbSAl Viro 		init_completion(&wait);
1590330d57fbSAl Viro 		p->unregistering = &wait;
1591330d57fbSAl Viro 		spin_unlock(&sysctl_lock);
1592330d57fbSAl Viro 		wait_for_completion(&wait);
1593330d57fbSAl Viro 		spin_lock(&sysctl_lock);
1594f7e6ced4SAl Viro 	} else {
1595f7e6ced4SAl Viro 		/* anything non-NULL; we'll never dereference it */
1596f7e6ced4SAl Viro 		p->unregistering = ERR_PTR(-EINVAL);
1597330d57fbSAl Viro 	}
1598330d57fbSAl Viro 	/*
1599330d57fbSAl Viro 	 * do not remove from the list until nobody holds it; walking the
1600330d57fbSAl Viro 	 * list in do_sysctl() relies on that.
1601330d57fbSAl Viro 	 */
1602330d57fbSAl Viro 	list_del_init(&p->ctl_entry);
1603330d57fbSAl Viro }
1604330d57fbSAl Viro 
1605f7e6ced4SAl Viro void sysctl_head_get(struct ctl_table_header *head)
1606f7e6ced4SAl Viro {
1607f7e6ced4SAl Viro 	spin_lock(&sysctl_lock);
1608f7e6ced4SAl Viro 	head->count++;
1609f7e6ced4SAl Viro 	spin_unlock(&sysctl_lock);
1610f7e6ced4SAl Viro }
1611f7e6ced4SAl Viro 
1612f7e6ced4SAl Viro void sysctl_head_put(struct ctl_table_header *head)
1613f7e6ced4SAl Viro {
1614f7e6ced4SAl Viro 	spin_lock(&sysctl_lock);
1615f7e6ced4SAl Viro 	if (!--head->count)
1616a95cded3SPaul E. McKenney 		kfree_rcu(head, rcu);
1617f7e6ced4SAl Viro 	spin_unlock(&sysctl_lock);
1618f7e6ced4SAl Viro }
1619f7e6ced4SAl Viro 
1620f7e6ced4SAl Viro struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1621f7e6ced4SAl Viro {
1622f7e6ced4SAl Viro 	if (!head)
1623f7e6ced4SAl Viro 		BUG();
1624f7e6ced4SAl Viro 	spin_lock(&sysctl_lock);
1625f7e6ced4SAl Viro 	if (!use_table(head))
1626f7e6ced4SAl Viro 		head = ERR_PTR(-ENOENT);
1627f7e6ced4SAl Viro 	spin_unlock(&sysctl_lock);
1628f7e6ced4SAl Viro 	return head;
1629f7e6ced4SAl Viro }
1630f7e6ced4SAl Viro 
1631805b5d5eSEric W. Biederman void sysctl_head_finish(struct ctl_table_header *head)
1632805b5d5eSEric W. Biederman {
1633805b5d5eSEric W. Biederman 	if (!head)
1634805b5d5eSEric W. Biederman 		return;
1635805b5d5eSEric W. Biederman 	spin_lock(&sysctl_lock);
1636805b5d5eSEric W. Biederman 	unuse_table(head);
1637805b5d5eSEric W. Biederman 	spin_unlock(&sysctl_lock);
1638805b5d5eSEric W. Biederman }
1639805b5d5eSEric W. Biederman 
164073455092SAl Viro static struct ctl_table_set *
164173455092SAl Viro lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
164273455092SAl Viro {
164373455092SAl Viro 	struct ctl_table_set *set = &root->default_set;
164473455092SAl Viro 	if (root->lookup)
164573455092SAl Viro 		set = root->lookup(root, namespaces);
164673455092SAl Viro 	return set;
164773455092SAl Viro }
164873455092SAl Viro 
1649e51b6ba0SEric W. Biederman static struct list_head *
1650e51b6ba0SEric W. Biederman lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
1651805b5d5eSEric W. Biederman {
165273455092SAl Viro 	struct ctl_table_set *set = lookup_header_set(root, namespaces);
165373455092SAl Viro 	return &set->list;
1654e51b6ba0SEric W. Biederman }
1655e51b6ba0SEric W. Biederman 
1656e51b6ba0SEric W. Biederman struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1657e51b6ba0SEric W. Biederman 					    struct ctl_table_header *prev)
1658e51b6ba0SEric W. Biederman {
1659e51b6ba0SEric W. Biederman 	struct ctl_table_root *root;
1660e51b6ba0SEric W. Biederman 	struct list_head *header_list;
1661805b5d5eSEric W. Biederman 	struct ctl_table_header *head;
1662805b5d5eSEric W. Biederman 	struct list_head *tmp;
1663e51b6ba0SEric W. Biederman 
1664805b5d5eSEric W. Biederman 	spin_lock(&sysctl_lock);
1665805b5d5eSEric W. Biederman 	if (prev) {
1666e51b6ba0SEric W. Biederman 		head = prev;
1667805b5d5eSEric W. Biederman 		tmp = &prev->ctl_entry;
1668805b5d5eSEric W. Biederman 		unuse_table(prev);
1669805b5d5eSEric W. Biederman 		goto next;
1670805b5d5eSEric W. Biederman 	}
1671805b5d5eSEric W. Biederman 	tmp = &root_table_header.ctl_entry;
1672805b5d5eSEric W. Biederman 	for (;;) {
1673805b5d5eSEric W. Biederman 		head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1674805b5d5eSEric W. Biederman 
1675805b5d5eSEric W. Biederman 		if (!use_table(head))
1676805b5d5eSEric W. Biederman 			goto next;
1677805b5d5eSEric W. Biederman 		spin_unlock(&sysctl_lock);
1678805b5d5eSEric W. Biederman 		return head;
1679805b5d5eSEric W. Biederman 	next:
1680e51b6ba0SEric W. Biederman 		root = head->root;
1681805b5d5eSEric W. Biederman 		tmp = tmp->next;
1682e51b6ba0SEric W. Biederman 		header_list = lookup_header_list(root, namespaces);
1683e51b6ba0SEric W. Biederman 		if (tmp != header_list)
1684e51b6ba0SEric W. Biederman 			continue;
1685e51b6ba0SEric W. Biederman 
1686e51b6ba0SEric W. Biederman 		do {
1687e51b6ba0SEric W. Biederman 			root = list_entry(root->root_list.next,
1688e51b6ba0SEric W. Biederman 					struct ctl_table_root, root_list);
1689e51b6ba0SEric W. Biederman 			if (root == &sysctl_table_root)
1690e51b6ba0SEric W. Biederman 				goto out;
1691e51b6ba0SEric W. Biederman 			header_list = lookup_header_list(root, namespaces);
1692e51b6ba0SEric W. Biederman 		} while (list_empty(header_list));
1693e51b6ba0SEric W. Biederman 		tmp = header_list->next;
1694805b5d5eSEric W. Biederman 	}
1695e51b6ba0SEric W. Biederman out:
1696805b5d5eSEric W. Biederman 	spin_unlock(&sysctl_lock);
1697805b5d5eSEric W. Biederman 	return NULL;
1698805b5d5eSEric W. Biederman }
1699805b5d5eSEric W. Biederman 
1700e51b6ba0SEric W. Biederman struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1701e51b6ba0SEric W. Biederman {
1702e51b6ba0SEric W. Biederman 	return __sysctl_head_next(current->nsproxy, prev);
1703e51b6ba0SEric W. Biederman }
1704e51b6ba0SEric W. Biederman 
1705e51b6ba0SEric W. Biederman void register_sysctl_root(struct ctl_table_root *root)
1706e51b6ba0SEric W. Biederman {
1707e51b6ba0SEric W. Biederman 	spin_lock(&sysctl_lock);
1708e51b6ba0SEric W. Biederman 	list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1709e51b6ba0SEric W. Biederman 	spin_unlock(&sysctl_lock);
1710e51b6ba0SEric W. Biederman }
1711e51b6ba0SEric W. Biederman 
17121da177e4SLinus Torvalds /*
17131ff007ebSEric W. Biederman  * sysctl_perm does NOT grant the superuser all rights automatically, because
17141da177e4SLinus Torvalds  * some sysctl variables are readonly even to root.
17151da177e4SLinus Torvalds  */
17161da177e4SLinus Torvalds 
17171da177e4SLinus Torvalds static int test_perm(int mode, int op)
17181da177e4SLinus Torvalds {
171976aac0e9SDavid Howells 	if (!current_euid())
17201da177e4SLinus Torvalds 		mode >>= 6;
17211da177e4SLinus Torvalds 	else if (in_egroup_p(0))
17221da177e4SLinus Torvalds 		mode >>= 3;
1723e6305c43SAl Viro 	if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
17241da177e4SLinus Torvalds 		return 0;
17251da177e4SLinus Torvalds 	return -EACCES;
17261da177e4SLinus Torvalds }
17271da177e4SLinus Torvalds 
1728d7321cd6SPavel Emelyanov int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
17291da177e4SLinus Torvalds {
1730d7321cd6SPavel Emelyanov 	int mode;
1731d7321cd6SPavel Emelyanov 
1732d7321cd6SPavel Emelyanov 	if (root->permissions)
1733d7321cd6SPavel Emelyanov 		mode = root->permissions(root, current->nsproxy, table);
1734d7321cd6SPavel Emelyanov 	else
1735d7321cd6SPavel Emelyanov 		mode = table->mode;
1736d7321cd6SPavel Emelyanov 
1737d7321cd6SPavel Emelyanov 	return test_perm(mode, op);
17381da177e4SLinus Torvalds }
17391da177e4SLinus Torvalds 
1740d912b0ccSEric W. Biederman static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1741d912b0ccSEric W. Biederman {
17422315ffa0SEric W. Biederman 	for (; table->procname; table++) {
1743d912b0ccSEric W. Biederman 		table->parent = parent;
1744d912b0ccSEric W. Biederman 		if (table->child)
1745d912b0ccSEric W. Biederman 			sysctl_set_parent(table, table->child);
1746d912b0ccSEric W. Biederman 	}
1747d912b0ccSEric W. Biederman }
1748d912b0ccSEric W. Biederman 
1749d912b0ccSEric W. Biederman static __init int sysctl_init(void)
1750d912b0ccSEric W. Biederman {
1751d912b0ccSEric W. Biederman 	sysctl_set_parent(NULL, root_table);
175288f458e4SHolger Schurig #ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1753b3bd3de6SAndi Kleen 	sysctl_check_table(current->nsproxy, root_table);
175488f458e4SHolger Schurig #endif
1755d912b0ccSEric W. Biederman 	return 0;
1756d912b0ccSEric W. Biederman }
1757d912b0ccSEric W. Biederman 
1758d912b0ccSEric W. Biederman core_initcall(sysctl_init);
1759d912b0ccSEric W. Biederman 
1760bfbcf034SAl Viro static struct ctl_table *is_branch_in(struct ctl_table *branch,
1761bfbcf034SAl Viro 				      struct ctl_table *table)
1762ae7edeccSAl Viro {
1763ae7edeccSAl Viro 	struct ctl_table *p;
1764ae7edeccSAl Viro 	const char *s = branch->procname;
1765ae7edeccSAl Viro 
1766ae7edeccSAl Viro 	/* branch should have named subdirectory as its first element */
1767ae7edeccSAl Viro 	if (!s || !branch->child)
1768bfbcf034SAl Viro 		return NULL;
1769ae7edeccSAl Viro 
1770ae7edeccSAl Viro 	/* ... and nothing else */
17712315ffa0SEric W. Biederman 	if (branch[1].procname)
1772bfbcf034SAl Viro 		return NULL;
1773ae7edeccSAl Viro 
1774ae7edeccSAl Viro 	/* table should contain subdirectory with the same name */
17752315ffa0SEric W. Biederman 	for (p = table; p->procname; p++) {
1776ae7edeccSAl Viro 		if (!p->child)
1777ae7edeccSAl Viro 			continue;
1778ae7edeccSAl Viro 		if (p->procname && strcmp(p->procname, s) == 0)
1779bfbcf034SAl Viro 			return p;
1780ae7edeccSAl Viro 	}
1781bfbcf034SAl Viro 	return NULL;
1782ae7edeccSAl Viro }
1783ae7edeccSAl Viro 
1784ae7edeccSAl Viro /* see if attaching q to p would be an improvement */
1785ae7edeccSAl Viro static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1786ae7edeccSAl Viro {
1787ae7edeccSAl Viro 	struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
1788bfbcf034SAl Viro 	struct ctl_table *next;
1789ae7edeccSAl Viro 	int is_better = 0;
1790ae7edeccSAl Viro 	int not_in_parent = !p->attached_by;
1791ae7edeccSAl Viro 
1792bfbcf034SAl Viro 	while ((next = is_branch_in(by, to)) != NULL) {
1793ae7edeccSAl Viro 		if (by == q->attached_by)
1794ae7edeccSAl Viro 			is_better = 1;
1795ae7edeccSAl Viro 		if (to == p->attached_by)
1796ae7edeccSAl Viro 			not_in_parent = 1;
1797ae7edeccSAl Viro 		by = by->child;
1798bfbcf034SAl Viro 		to = next->child;
1799ae7edeccSAl Viro 	}
1800ae7edeccSAl Viro 
1801ae7edeccSAl Viro 	if (is_better && not_in_parent) {
1802ae7edeccSAl Viro 		q->attached_by = by;
1803ae7edeccSAl Viro 		q->attached_to = to;
1804ae7edeccSAl Viro 		q->parent = p;
1805ae7edeccSAl Viro 	}
1806ae7edeccSAl Viro }
1807ae7edeccSAl Viro 
18081da177e4SLinus Torvalds /**
1809e51b6ba0SEric W. Biederman  * __register_sysctl_paths - register a sysctl hierarchy
1810e51b6ba0SEric W. Biederman  * @root: List of sysctl headers to register on
1811e51b6ba0SEric W. Biederman  * @namespaces: Data to compute which lists of sysctl entries are visible
181229e796fdSEric W. Biederman  * @path: The path to the directory the sysctl table is in.
18131da177e4SLinus Torvalds  * @table: the top-level table structure
18141da177e4SLinus Torvalds  *
18151da177e4SLinus Torvalds  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
181629e796fdSEric W. Biederman  * array. A completely 0 filled entry terminates the table.
18171da177e4SLinus Torvalds  *
1818d8217f07SEric W. Biederman  * The members of the &struct ctl_table structure are used as follows:
18191da177e4SLinus Torvalds  *
18201da177e4SLinus Torvalds  * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
18211da177e4SLinus Torvalds  *            enter a sysctl file
18221da177e4SLinus Torvalds  *
18231da177e4SLinus Torvalds  * data - a pointer to data for use by proc_handler
18241da177e4SLinus Torvalds  *
18251da177e4SLinus Torvalds  * maxlen - the maximum size in bytes of the data
18261da177e4SLinus Torvalds  *
18271da177e4SLinus Torvalds  * mode - the file permissions for the /proc/sys file, and for sysctl(2)
18281da177e4SLinus Torvalds  *
18291da177e4SLinus Torvalds  * child - a pointer to the child sysctl table if this entry is a directory, or
18301da177e4SLinus Torvalds  *         %NULL.
18311da177e4SLinus Torvalds  *
18321da177e4SLinus Torvalds  * proc_handler - the text handler routine (described below)
18331da177e4SLinus Torvalds  *
18341da177e4SLinus Torvalds  * de - for internal use by the sysctl routines
18351da177e4SLinus Torvalds  *
18361da177e4SLinus Torvalds  * extra1, extra2 - extra pointers usable by the proc handler routines
18371da177e4SLinus Torvalds  *
18381da177e4SLinus Torvalds  * Leaf nodes in the sysctl tree will be represented by a single file
18391da177e4SLinus Torvalds  * under /proc; non-leaf nodes will be represented by directories.
18401da177e4SLinus Torvalds  *
18411da177e4SLinus Torvalds  * sysctl(2) can automatically manage read and write requests through
18421da177e4SLinus Torvalds  * the sysctl table.  The data and maxlen fields of the ctl_table
18431da177e4SLinus Torvalds  * struct enable minimal validation of the values being written to be
18441da177e4SLinus Torvalds  * performed, and the mode field allows minimal authentication.
18451da177e4SLinus Torvalds  *
18461da177e4SLinus Torvalds  * There must be a proc_handler routine for any terminal nodes
18471da177e4SLinus Torvalds  * mirrored under /proc/sys (non-terminals are handled by a built-in
18481da177e4SLinus Torvalds  * directory handler).  Several default handlers are available to
18491da177e4SLinus Torvalds  * cover common cases -
18501da177e4SLinus Torvalds  *
18511da177e4SLinus Torvalds  * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
18521da177e4SLinus Torvalds  * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
18531da177e4SLinus Torvalds  * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
18541da177e4SLinus Torvalds  *
18551da177e4SLinus Torvalds  * It is the handler's job to read the input buffer from user memory
18561da177e4SLinus Torvalds  * and process it. The handler should return 0 on success.
18571da177e4SLinus Torvalds  *
18581da177e4SLinus Torvalds  * This routine returns %NULL on a failure to register, and a pointer
18591da177e4SLinus Torvalds  * to the table header on success.
18601da177e4SLinus Torvalds  */
1861e51b6ba0SEric W. Biederman struct ctl_table_header *__register_sysctl_paths(
1862e51b6ba0SEric W. Biederman 	struct ctl_table_root *root,
1863e51b6ba0SEric W. Biederman 	struct nsproxy *namespaces,
1864e51b6ba0SEric W. Biederman 	const struct ctl_path *path, struct ctl_table *table)
18651da177e4SLinus Torvalds {
186629e796fdSEric W. Biederman 	struct ctl_table_header *header;
186729e796fdSEric W. Biederman 	struct ctl_table *new, **prevp;
186829e796fdSEric W. Biederman 	unsigned int n, npath;
1869ae7edeccSAl Viro 	struct ctl_table_set *set;
187029e796fdSEric W. Biederman 
187129e796fdSEric W. Biederman 	/* Count the path components */
18722315ffa0SEric W. Biederman 	for (npath = 0; path[npath].procname; ++npath)
187329e796fdSEric W. Biederman 		;
187429e796fdSEric W. Biederman 
187529e796fdSEric W. Biederman 	/*
187629e796fdSEric W. Biederman 	 * For each path component, allocate a 2-element ctl_table array.
187729e796fdSEric W. Biederman 	 * The first array element will be filled with the sysctl entry
18782315ffa0SEric W. Biederman 	 * for this, the second will be the sentinel (procname == 0).
187929e796fdSEric W. Biederman 	 *
188029e796fdSEric W. Biederman 	 * We allocate everything in one go so that we don't have to
188129e796fdSEric W. Biederman 	 * worry about freeing additional memory in unregister_sysctl_table.
188229e796fdSEric W. Biederman 	 */
188329e796fdSEric W. Biederman 	header = kzalloc(sizeof(struct ctl_table_header) +
188429e796fdSEric W. Biederman 			 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
188529e796fdSEric W. Biederman 	if (!header)
18861da177e4SLinus Torvalds 		return NULL;
188729e796fdSEric W. Biederman 
188829e796fdSEric W. Biederman 	new = (struct ctl_table *) (header + 1);
188929e796fdSEric W. Biederman 
189029e796fdSEric W. Biederman 	/* Now connect the dots */
189129e796fdSEric W. Biederman 	prevp = &header->ctl_table;
189229e796fdSEric W. Biederman 	for (n = 0; n < npath; ++n, ++path) {
189329e796fdSEric W. Biederman 		/* Copy the procname */
189429e796fdSEric W. Biederman 		new->procname = path->procname;
189529e796fdSEric W. Biederman 		new->mode     = 0555;
189629e796fdSEric W. Biederman 
189729e796fdSEric W. Biederman 		*prevp = new;
189829e796fdSEric W. Biederman 		prevp = &new->child;
189929e796fdSEric W. Biederman 
190029e796fdSEric W. Biederman 		new += 2;
190129e796fdSEric W. Biederman 	}
190229e796fdSEric W. Biederman 	*prevp = table;
190323eb06deSEric W. Biederman 	header->ctl_table_arg = table;
190429e796fdSEric W. Biederman 
190529e796fdSEric W. Biederman 	INIT_LIST_HEAD(&header->ctl_entry);
190629e796fdSEric W. Biederman 	header->used = 0;
190729e796fdSEric W. Biederman 	header->unregistering = NULL;
1908e51b6ba0SEric W. Biederman 	header->root = root;
190929e796fdSEric W. Biederman 	sysctl_set_parent(NULL, header->ctl_table);
1910f7e6ced4SAl Viro 	header->count = 1;
191188f458e4SHolger Schurig #ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1912e51b6ba0SEric W. Biederman 	if (sysctl_check_table(namespaces, header->ctl_table)) {
191329e796fdSEric W. Biederman 		kfree(header);
1914fc6cd25bSEric W. Biederman 		return NULL;
1915fc6cd25bSEric W. Biederman 	}
191688f458e4SHolger Schurig #endif
1917330d57fbSAl Viro 	spin_lock(&sysctl_lock);
191873455092SAl Viro 	header->set = lookup_header_set(root, namespaces);
1919ae7edeccSAl Viro 	header->attached_by = header->ctl_table;
1920ae7edeccSAl Viro 	header->attached_to = root_table;
1921ae7edeccSAl Viro 	header->parent = &root_table_header;
1922ae7edeccSAl Viro 	for (set = header->set; set; set = set->parent) {
1923ae7edeccSAl Viro 		struct ctl_table_header *p;
1924ae7edeccSAl Viro 		list_for_each_entry(p, &set->list, ctl_entry) {
1925ae7edeccSAl Viro 			if (p->unregistering)
1926ae7edeccSAl Viro 				continue;
1927ae7edeccSAl Viro 			try_attach(p, header);
1928ae7edeccSAl Viro 		}
1929ae7edeccSAl Viro 	}
1930ae7edeccSAl Viro 	header->parent->count++;
193173455092SAl Viro 	list_add_tail(&header->ctl_entry, &header->set->list);
1932330d57fbSAl Viro 	spin_unlock(&sysctl_lock);
193329e796fdSEric W. Biederman 
193429e796fdSEric W. Biederman 	return header;
193529e796fdSEric W. Biederman }
193629e796fdSEric W. Biederman 
193729e796fdSEric W. Biederman /**
1938e51b6ba0SEric W. Biederman  * register_sysctl_table_path - register a sysctl table hierarchy
1939e51b6ba0SEric W. Biederman  * @path: The path to the directory the sysctl table is in.
1940e51b6ba0SEric W. Biederman  * @table: the top-level table structure
1941e51b6ba0SEric W. Biederman  *
1942e51b6ba0SEric W. Biederman  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1943e51b6ba0SEric W. Biederman  * array. A completely 0 filled entry terminates the table.
1944e51b6ba0SEric W. Biederman  *
1945e51b6ba0SEric W. Biederman  * See __register_sysctl_paths for more details.
1946e51b6ba0SEric W. Biederman  */
1947e51b6ba0SEric W. Biederman struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1948e51b6ba0SEric W. Biederman 						struct ctl_table *table)
1949e51b6ba0SEric W. Biederman {
1950e51b6ba0SEric W. Biederman 	return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1951e51b6ba0SEric W. Biederman 					path, table);
1952e51b6ba0SEric W. Biederman }
1953e51b6ba0SEric W. Biederman 
1954e51b6ba0SEric W. Biederman /**
195529e796fdSEric W. Biederman  * register_sysctl_table - register a sysctl table hierarchy
195629e796fdSEric W. Biederman  * @table: the top-level table structure
195729e796fdSEric W. Biederman  *
195829e796fdSEric W. Biederman  * Register a sysctl table hierarchy. @table should be a filled in ctl_table
195929e796fdSEric W. Biederman  * array. A completely 0 filled entry terminates the table.
196029e796fdSEric W. Biederman  *
196129e796fdSEric W. Biederman  * See register_sysctl_paths for more details.
196229e796fdSEric W. Biederman  */
196329e796fdSEric W. Biederman struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
196429e796fdSEric W. Biederman {
196529e796fdSEric W. Biederman 	static const struct ctl_path null_path[] = { {} };
196629e796fdSEric W. Biederman 
196729e796fdSEric W. Biederman 	return register_sysctl_paths(null_path, table);
19681da177e4SLinus Torvalds }
19691da177e4SLinus Torvalds 
19701da177e4SLinus Torvalds /**
19711da177e4SLinus Torvalds  * unregister_sysctl_table - unregister a sysctl table hierarchy
19721da177e4SLinus Torvalds  * @header: the header returned from register_sysctl_table
19731da177e4SLinus Torvalds  *
19741da177e4SLinus Torvalds  * Unregisters the sysctl table and all children. proc entries may not
19751da177e4SLinus Torvalds  * actually be removed until they are no longer used by anyone.
19761da177e4SLinus Torvalds  */
19771da177e4SLinus Torvalds void unregister_sysctl_table(struct ctl_table_header * header)
19781da177e4SLinus Torvalds {
1979330d57fbSAl Viro 	might_sleep();
1980f1dad166SPavel Emelyanov 
1981f1dad166SPavel Emelyanov 	if (header == NULL)
1982f1dad166SPavel Emelyanov 		return;
1983f1dad166SPavel Emelyanov 
1984330d57fbSAl Viro 	spin_lock(&sysctl_lock);
1985330d57fbSAl Viro 	start_unregistering(header);
1986ae7edeccSAl Viro 	if (!--header->parent->count) {
1987ae7edeccSAl Viro 		WARN_ON(1);
1988a95cded3SPaul E. McKenney 		kfree_rcu(header->parent, rcu);
1989ae7edeccSAl Viro 	}
1990f7e6ced4SAl Viro 	if (!--header->count)
1991a95cded3SPaul E. McKenney 		kfree_rcu(header, rcu);
1992f7e6ced4SAl Viro 	spin_unlock(&sysctl_lock);
19931da177e4SLinus Torvalds }
19941da177e4SLinus Torvalds 
19959043476fSAl Viro int sysctl_is_seen(struct ctl_table_header *p)
19969043476fSAl Viro {
19979043476fSAl Viro 	struct ctl_table_set *set = p->set;
19989043476fSAl Viro 	int res;
19999043476fSAl Viro 	spin_lock(&sysctl_lock);
20009043476fSAl Viro 	if (p->unregistering)
20019043476fSAl Viro 		res = 0;
20029043476fSAl Viro 	else if (!set->is_seen)
20039043476fSAl Viro 		res = 1;
20049043476fSAl Viro 	else
20059043476fSAl Viro 		res = set->is_seen(set);
20069043476fSAl Viro 	spin_unlock(&sysctl_lock);
20079043476fSAl Viro 	return res;
20089043476fSAl Viro }
20099043476fSAl Viro 
201073455092SAl Viro void setup_sysctl_set(struct ctl_table_set *p,
201173455092SAl Viro 	struct ctl_table_set *parent,
201273455092SAl Viro 	int (*is_seen)(struct ctl_table_set *))
201373455092SAl Viro {
201473455092SAl Viro 	INIT_LIST_HEAD(&p->list);
201573455092SAl Viro 	p->parent = parent ? parent : &sysctl_table_root.default_set;
201673455092SAl Viro 	p->is_seen = is_seen;
201773455092SAl Viro }
201873455092SAl Viro 
2019b89a8171SEric W. Biederman #else /* !CONFIG_SYSCTL */
2020d8217f07SEric W. Biederman struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
2021b89a8171SEric W. Biederman {
2022b89a8171SEric W. Biederman 	return NULL;
2023b89a8171SEric W. Biederman }
2024b89a8171SEric W. Biederman 
202529e796fdSEric W. Biederman struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
202629e796fdSEric W. Biederman 						    struct ctl_table *table)
202729e796fdSEric W. Biederman {
202829e796fdSEric W. Biederman 	return NULL;
202929e796fdSEric W. Biederman }
203029e796fdSEric W. Biederman 
2031b89a8171SEric W. Biederman void unregister_sysctl_table(struct ctl_table_header * table)
2032b89a8171SEric W. Biederman {
2033b89a8171SEric W. Biederman }
2034b89a8171SEric W. Biederman 
203573455092SAl Viro void setup_sysctl_set(struct ctl_table_set *p,
203673455092SAl Viro 	struct ctl_table_set *parent,
203773455092SAl Viro 	int (*is_seen)(struct ctl_table_set *))
203873455092SAl Viro {
203973455092SAl Viro }
204073455092SAl Viro 
2041f7e6ced4SAl Viro void sysctl_head_put(struct ctl_table_header *head)
2042f7e6ced4SAl Viro {
2043f7e6ced4SAl Viro }
2044f7e6ced4SAl Viro 
2045b89a8171SEric W. Biederman #endif /* CONFIG_SYSCTL */
2046b89a8171SEric W. Biederman 
20471da177e4SLinus Torvalds /*
20481da177e4SLinus Torvalds  * /proc/sys support
20491da177e4SLinus Torvalds  */
20501da177e4SLinus Torvalds 
2051b89a8171SEric W. Biederman #ifdef CONFIG_PROC_SYSCTL
20521da177e4SLinus Torvalds 
2053b1ba4dddSAdrian Bunk static int _proc_do_string(void* data, int maxlen, int write,
20548d65af78SAlexey Dobriyan 			   void __user *buffer,
2055b1ba4dddSAdrian Bunk 			   size_t *lenp, loff_t *ppos)
2056f5dd3d6fSSam Vilain {
2057f5dd3d6fSSam Vilain 	size_t len;
2058f5dd3d6fSSam Vilain 	char __user *p;
2059f5dd3d6fSSam Vilain 	char c;
2060f5dd3d6fSSam Vilain 
20618d060877SOleg Nesterov 	if (!data || !maxlen || !*lenp) {
2062f5dd3d6fSSam Vilain 		*lenp = 0;
2063f5dd3d6fSSam Vilain 		return 0;
2064f5dd3d6fSSam Vilain 	}
2065f5dd3d6fSSam Vilain 
2066f5dd3d6fSSam Vilain 	if (write) {
2067f5dd3d6fSSam Vilain 		len = 0;
2068f5dd3d6fSSam Vilain 		p = buffer;
2069f5dd3d6fSSam Vilain 		while (len < *lenp) {
2070f5dd3d6fSSam Vilain 			if (get_user(c, p++))
2071f5dd3d6fSSam Vilain 				return -EFAULT;
2072f5dd3d6fSSam Vilain 			if (c == 0 || c == '\n')
2073f5dd3d6fSSam Vilain 				break;
2074f5dd3d6fSSam Vilain 			len++;
2075f5dd3d6fSSam Vilain 		}
2076f5dd3d6fSSam Vilain 		if (len >= maxlen)
2077f5dd3d6fSSam Vilain 			len = maxlen-1;
2078f5dd3d6fSSam Vilain 		if(copy_from_user(data, buffer, len))
2079f5dd3d6fSSam Vilain 			return -EFAULT;
2080f5dd3d6fSSam Vilain 		((char *) data)[len] = 0;
2081f5dd3d6fSSam Vilain 		*ppos += *lenp;
2082f5dd3d6fSSam Vilain 	} else {
2083f5dd3d6fSSam Vilain 		len = strlen(data);
2084f5dd3d6fSSam Vilain 		if (len > maxlen)
2085f5dd3d6fSSam Vilain 			len = maxlen;
20868d060877SOleg Nesterov 
20878d060877SOleg Nesterov 		if (*ppos > len) {
20888d060877SOleg Nesterov 			*lenp = 0;
20898d060877SOleg Nesterov 			return 0;
20908d060877SOleg Nesterov 		}
20918d060877SOleg Nesterov 
20928d060877SOleg Nesterov 		data += *ppos;
20938d060877SOleg Nesterov 		len  -= *ppos;
20948d060877SOleg Nesterov 
2095f5dd3d6fSSam Vilain 		if (len > *lenp)
2096f5dd3d6fSSam Vilain 			len = *lenp;
2097f5dd3d6fSSam Vilain 		if (len)
2098f5dd3d6fSSam Vilain 			if(copy_to_user(buffer, data, len))
2099f5dd3d6fSSam Vilain 				return -EFAULT;
2100f5dd3d6fSSam Vilain 		if (len < *lenp) {
2101f5dd3d6fSSam Vilain 			if(put_user('\n', ((char __user *) buffer) + len))
2102f5dd3d6fSSam Vilain 				return -EFAULT;
2103f5dd3d6fSSam Vilain 			len++;
2104f5dd3d6fSSam Vilain 		}
2105f5dd3d6fSSam Vilain 		*lenp = len;
2106f5dd3d6fSSam Vilain 		*ppos += len;
2107f5dd3d6fSSam Vilain 	}
2108f5dd3d6fSSam Vilain 	return 0;
2109f5dd3d6fSSam Vilain }
2110f5dd3d6fSSam Vilain 
21111da177e4SLinus Torvalds /**
21121da177e4SLinus Torvalds  * proc_dostring - read a string sysctl
21131da177e4SLinus Torvalds  * @table: the sysctl table
21141da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
21151da177e4SLinus Torvalds  * @buffer: the user buffer
21161da177e4SLinus Torvalds  * @lenp: the size of the user buffer
21171da177e4SLinus Torvalds  * @ppos: file position
21181da177e4SLinus Torvalds  *
21191da177e4SLinus Torvalds  * Reads/writes a string from/to the user buffer. If the kernel
21201da177e4SLinus Torvalds  * buffer provided is not large enough to hold the string, the
21211da177e4SLinus Torvalds  * string is truncated. The copied string is %NULL-terminated.
21221da177e4SLinus Torvalds  * If the string is being read by the user process, it is copied
21231da177e4SLinus Torvalds  * and a newline '\n' is added. It is truncated if the buffer is
21241da177e4SLinus Torvalds  * not large enough.
21251da177e4SLinus Torvalds  *
21261da177e4SLinus Torvalds  * Returns 0 on success.
21271da177e4SLinus Torvalds  */
21288d65af78SAlexey Dobriyan int proc_dostring(struct ctl_table *table, int write,
21291da177e4SLinus Torvalds 		  void __user *buffer, size_t *lenp, loff_t *ppos)
21301da177e4SLinus Torvalds {
21318d65af78SAlexey Dobriyan 	return _proc_do_string(table->data, table->maxlen, write,
2132f5dd3d6fSSam Vilain 			       buffer, lenp, ppos);
21331da177e4SLinus Torvalds }
21341da177e4SLinus Torvalds 
213500b7c339SAmerigo Wang static size_t proc_skip_spaces(char **buf)
213600b7c339SAmerigo Wang {
213700b7c339SAmerigo Wang 	size_t ret;
213800b7c339SAmerigo Wang 	char *tmp = skip_spaces(*buf);
213900b7c339SAmerigo Wang 	ret = tmp - *buf;
214000b7c339SAmerigo Wang 	*buf = tmp;
214100b7c339SAmerigo Wang 	return ret;
214200b7c339SAmerigo Wang }
21431da177e4SLinus Torvalds 
21449f977fb7SOctavian Purdila static void proc_skip_char(char **buf, size_t *size, const char v)
21459f977fb7SOctavian Purdila {
21469f977fb7SOctavian Purdila 	while (*size) {
21479f977fb7SOctavian Purdila 		if (**buf != v)
21489f977fb7SOctavian Purdila 			break;
21499f977fb7SOctavian Purdila 		(*size)--;
21509f977fb7SOctavian Purdila 		(*buf)++;
21519f977fb7SOctavian Purdila 	}
21529f977fb7SOctavian Purdila }
21539f977fb7SOctavian Purdila 
215400b7c339SAmerigo Wang #define TMPBUFLEN 22
215500b7c339SAmerigo Wang /**
21560fc377bdSRandy Dunlap  * proc_get_long - reads an ASCII formatted integer from a user buffer
215700b7c339SAmerigo Wang  *
21580fc377bdSRandy Dunlap  * @buf: a kernel buffer
21590fc377bdSRandy Dunlap  * @size: size of the kernel buffer
21600fc377bdSRandy Dunlap  * @val: this is where the number will be stored
21610fc377bdSRandy Dunlap  * @neg: set to %TRUE if number is negative
21620fc377bdSRandy Dunlap  * @perm_tr: a vector which contains the allowed trailers
21630fc377bdSRandy Dunlap  * @perm_tr_len: size of the perm_tr vector
21640fc377bdSRandy Dunlap  * @tr: pointer to store the trailer character
216500b7c339SAmerigo Wang  *
21660fc377bdSRandy Dunlap  * In case of success %0 is returned and @buf and @size are updated with
21670fc377bdSRandy Dunlap  * the amount of bytes read. If @tr is non-NULL and a trailing
21680fc377bdSRandy Dunlap  * character exists (size is non-zero after returning from this
21690fc377bdSRandy Dunlap  * function), @tr is updated with the trailing character.
217000b7c339SAmerigo Wang  */
217100b7c339SAmerigo Wang static int proc_get_long(char **buf, size_t *size,
217200b7c339SAmerigo Wang 			  unsigned long *val, bool *neg,
217300b7c339SAmerigo Wang 			  const char *perm_tr, unsigned perm_tr_len, char *tr)
217400b7c339SAmerigo Wang {
217500b7c339SAmerigo Wang 	int len;
217600b7c339SAmerigo Wang 	char *p, tmp[TMPBUFLEN];
217700b7c339SAmerigo Wang 
217800b7c339SAmerigo Wang 	if (!*size)
217900b7c339SAmerigo Wang 		return -EINVAL;
218000b7c339SAmerigo Wang 
218100b7c339SAmerigo Wang 	len = *size;
218200b7c339SAmerigo Wang 	if (len > TMPBUFLEN - 1)
218300b7c339SAmerigo Wang 		len = TMPBUFLEN - 1;
218400b7c339SAmerigo Wang 
218500b7c339SAmerigo Wang 	memcpy(tmp, *buf, len);
218600b7c339SAmerigo Wang 
218700b7c339SAmerigo Wang 	tmp[len] = 0;
218800b7c339SAmerigo Wang 	p = tmp;
218900b7c339SAmerigo Wang 	if (*p == '-' && *size > 1) {
219000b7c339SAmerigo Wang 		*neg = true;
219100b7c339SAmerigo Wang 		p++;
219200b7c339SAmerigo Wang 	} else
219300b7c339SAmerigo Wang 		*neg = false;
219400b7c339SAmerigo Wang 	if (!isdigit(*p))
219500b7c339SAmerigo Wang 		return -EINVAL;
219600b7c339SAmerigo Wang 
219700b7c339SAmerigo Wang 	*val = simple_strtoul(p, &p, 0);
219800b7c339SAmerigo Wang 
219900b7c339SAmerigo Wang 	len = p - tmp;
220000b7c339SAmerigo Wang 
220100b7c339SAmerigo Wang 	/* We don't know if the next char is whitespace thus we may accept
220200b7c339SAmerigo Wang 	 * invalid integers (e.g. 1234...a) or two integers instead of one
220300b7c339SAmerigo Wang 	 * (e.g. 123...1). So lets not allow such large numbers. */
220400b7c339SAmerigo Wang 	if (len == TMPBUFLEN - 1)
220500b7c339SAmerigo Wang 		return -EINVAL;
220600b7c339SAmerigo Wang 
220700b7c339SAmerigo Wang 	if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
220800b7c339SAmerigo Wang 		return -EINVAL;
220900b7c339SAmerigo Wang 
221000b7c339SAmerigo Wang 	if (tr && (len < *size))
221100b7c339SAmerigo Wang 		*tr = *p;
221200b7c339SAmerigo Wang 
221300b7c339SAmerigo Wang 	*buf += len;
221400b7c339SAmerigo Wang 	*size -= len;
221500b7c339SAmerigo Wang 
221600b7c339SAmerigo Wang 	return 0;
221700b7c339SAmerigo Wang }
221800b7c339SAmerigo Wang 
221900b7c339SAmerigo Wang /**
22200fc377bdSRandy Dunlap  * proc_put_long - converts an integer to a decimal ASCII formatted string
222100b7c339SAmerigo Wang  *
22220fc377bdSRandy Dunlap  * @buf: the user buffer
22230fc377bdSRandy Dunlap  * @size: the size of the user buffer
22240fc377bdSRandy Dunlap  * @val: the integer to be converted
22250fc377bdSRandy Dunlap  * @neg: sign of the number, %TRUE for negative
222600b7c339SAmerigo Wang  *
22270fc377bdSRandy Dunlap  * In case of success %0 is returned and @buf and @size are updated with
22280fc377bdSRandy Dunlap  * the amount of bytes written.
222900b7c339SAmerigo Wang  */
223000b7c339SAmerigo Wang static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
223100b7c339SAmerigo Wang 			  bool neg)
223200b7c339SAmerigo Wang {
223300b7c339SAmerigo Wang 	int len;
223400b7c339SAmerigo Wang 	char tmp[TMPBUFLEN], *p = tmp;
223500b7c339SAmerigo Wang 
223600b7c339SAmerigo Wang 	sprintf(p, "%s%lu", neg ? "-" : "", val);
223700b7c339SAmerigo Wang 	len = strlen(tmp);
223800b7c339SAmerigo Wang 	if (len > *size)
223900b7c339SAmerigo Wang 		len = *size;
224000b7c339SAmerigo Wang 	if (copy_to_user(*buf, tmp, len))
224100b7c339SAmerigo Wang 		return -EFAULT;
224200b7c339SAmerigo Wang 	*size -= len;
224300b7c339SAmerigo Wang 	*buf += len;
224400b7c339SAmerigo Wang 	return 0;
224500b7c339SAmerigo Wang }
224600b7c339SAmerigo Wang #undef TMPBUFLEN
224700b7c339SAmerigo Wang 
224800b7c339SAmerigo Wang static int proc_put_char(void __user **buf, size_t *size, char c)
224900b7c339SAmerigo Wang {
225000b7c339SAmerigo Wang 	if (*size) {
225100b7c339SAmerigo Wang 		char __user **buffer = (char __user **)buf;
225200b7c339SAmerigo Wang 		if (put_user(c, *buffer))
225300b7c339SAmerigo Wang 			return -EFAULT;
225400b7c339SAmerigo Wang 		(*size)--, (*buffer)++;
225500b7c339SAmerigo Wang 		*buf = *buffer;
225600b7c339SAmerigo Wang 	}
225700b7c339SAmerigo Wang 	return 0;
225800b7c339SAmerigo Wang }
225900b7c339SAmerigo Wang 
226000b7c339SAmerigo Wang static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
22611da177e4SLinus Torvalds 				 int *valp,
22621da177e4SLinus Torvalds 				 int write, void *data)
22631da177e4SLinus Torvalds {
22641da177e4SLinus Torvalds 	if (write) {
22651da177e4SLinus Torvalds 		*valp = *negp ? -*lvalp : *lvalp;
22661da177e4SLinus Torvalds 	} else {
22671da177e4SLinus Torvalds 		int val = *valp;
22681da177e4SLinus Torvalds 		if (val < 0) {
226900b7c339SAmerigo Wang 			*negp = true;
22701da177e4SLinus Torvalds 			*lvalp = (unsigned long)-val;
22711da177e4SLinus Torvalds 		} else {
227200b7c339SAmerigo Wang 			*negp = false;
22731da177e4SLinus Torvalds 			*lvalp = (unsigned long)val;
22741da177e4SLinus Torvalds 		}
22751da177e4SLinus Torvalds 	}
22761da177e4SLinus Torvalds 	return 0;
22771da177e4SLinus Torvalds }
22781da177e4SLinus Torvalds 
227900b7c339SAmerigo Wang static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
228000b7c339SAmerigo Wang 
2281d8217f07SEric W. Biederman static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
22828d65af78SAlexey Dobriyan 		  int write, void __user *buffer,
2283fcfbd547SKirill Korotaev 		  size_t *lenp, loff_t *ppos,
228400b7c339SAmerigo Wang 		  int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
22851da177e4SLinus Torvalds 			      int write, void *data),
22861da177e4SLinus Torvalds 		  void *data)
22871da177e4SLinus Torvalds {
228800b7c339SAmerigo Wang 	int *i, vleft, first = 1, err = 0;
228900b7c339SAmerigo Wang 	unsigned long page = 0;
229000b7c339SAmerigo Wang 	size_t left;
229100b7c339SAmerigo Wang 	char *kbuf;
22921da177e4SLinus Torvalds 
229300b7c339SAmerigo Wang 	if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
22941da177e4SLinus Torvalds 		*lenp = 0;
22951da177e4SLinus Torvalds 		return 0;
22961da177e4SLinus Torvalds 	}
22971da177e4SLinus Torvalds 
2298fcfbd547SKirill Korotaev 	i = (int *) tbl_data;
22991da177e4SLinus Torvalds 	vleft = table->maxlen / sizeof(*i);
23001da177e4SLinus Torvalds 	left = *lenp;
23011da177e4SLinus Torvalds 
23021da177e4SLinus Torvalds 	if (!conv)
23031da177e4SLinus Torvalds 		conv = do_proc_dointvec_conv;
23041da177e4SLinus Torvalds 
230500b7c339SAmerigo Wang 	if (write) {
230600b7c339SAmerigo Wang 		if (left > PAGE_SIZE - 1)
230700b7c339SAmerigo Wang 			left = PAGE_SIZE - 1;
230800b7c339SAmerigo Wang 		page = __get_free_page(GFP_TEMPORARY);
230900b7c339SAmerigo Wang 		kbuf = (char *) page;
231000b7c339SAmerigo Wang 		if (!kbuf)
231100b7c339SAmerigo Wang 			return -ENOMEM;
231200b7c339SAmerigo Wang 		if (copy_from_user(kbuf, buffer, left)) {
231300b7c339SAmerigo Wang 			err = -EFAULT;
231400b7c339SAmerigo Wang 			goto free;
231500b7c339SAmerigo Wang 		}
231600b7c339SAmerigo Wang 		kbuf[left] = 0;
231700b7c339SAmerigo Wang 	}
231800b7c339SAmerigo Wang 
23191da177e4SLinus Torvalds 	for (; left && vleft--; i++, first=0) {
232000b7c339SAmerigo Wang 		unsigned long lval;
232100b7c339SAmerigo Wang 		bool neg;
232200b7c339SAmerigo Wang 
23231da177e4SLinus Torvalds 		if (write) {
232400b7c339SAmerigo Wang 			left -= proc_skip_spaces(&kbuf);
232500b7c339SAmerigo Wang 
2326563b0467SJ. R. Okajima 			if (!left)
2327563b0467SJ. R. Okajima 				break;
232800b7c339SAmerigo Wang 			err = proc_get_long(&kbuf, &left, &lval, &neg,
232900b7c339SAmerigo Wang 					     proc_wspace_sep,
233000b7c339SAmerigo Wang 					     sizeof(proc_wspace_sep), NULL);
233100b7c339SAmerigo Wang 			if (err)
23321da177e4SLinus Torvalds 				break;
233300b7c339SAmerigo Wang 			if (conv(&neg, &lval, i, 1, data)) {
233400b7c339SAmerigo Wang 				err = -EINVAL;
233500b7c339SAmerigo Wang 				break;
23361da177e4SLinus Torvalds 			}
23371da177e4SLinus Torvalds 		} else {
233800b7c339SAmerigo Wang 			if (conv(&neg, &lval, i, 0, data)) {
233900b7c339SAmerigo Wang 				err = -EINVAL;
234000b7c339SAmerigo Wang 				break;
234100b7c339SAmerigo Wang 			}
23421da177e4SLinus Torvalds 			if (!first)
234300b7c339SAmerigo Wang 				err = proc_put_char(&buffer, &left, '\t');
234400b7c339SAmerigo Wang 			if (err)
23451da177e4SLinus Torvalds 				break;
234600b7c339SAmerigo Wang 			err = proc_put_long(&buffer, &left, lval, neg);
234700b7c339SAmerigo Wang 			if (err)
234800b7c339SAmerigo Wang 				break;
23491da177e4SLinus Torvalds 		}
23501da177e4SLinus Torvalds 	}
23511da177e4SLinus Torvalds 
235200b7c339SAmerigo Wang 	if (!write && !first && left && !err)
235300b7c339SAmerigo Wang 		err = proc_put_char(&buffer, &left, '\n');
2354563b0467SJ. R. Okajima 	if (write && !err && left)
235500b7c339SAmerigo Wang 		left -= proc_skip_spaces(&kbuf);
235600b7c339SAmerigo Wang free:
23571da177e4SLinus Torvalds 	if (write) {
235800b7c339SAmerigo Wang 		free_page(page);
235900b7c339SAmerigo Wang 		if (first)
236000b7c339SAmerigo Wang 			return err ? : -EINVAL;
23611da177e4SLinus Torvalds 	}
23621da177e4SLinus Torvalds 	*lenp -= left;
23631da177e4SLinus Torvalds 	*ppos += *lenp;
236400b7c339SAmerigo Wang 	return err;
23651da177e4SLinus Torvalds }
23661da177e4SLinus Torvalds 
23678d65af78SAlexey Dobriyan static int do_proc_dointvec(struct ctl_table *table, int write,
2368fcfbd547SKirill Korotaev 		  void __user *buffer, size_t *lenp, loff_t *ppos,
236900b7c339SAmerigo Wang 		  int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
2370fcfbd547SKirill Korotaev 			      int write, void *data),
2371fcfbd547SKirill Korotaev 		  void *data)
2372fcfbd547SKirill Korotaev {
23738d65af78SAlexey Dobriyan 	return __do_proc_dointvec(table->data, table, write,
2374fcfbd547SKirill Korotaev 			buffer, lenp, ppos, conv, data);
2375fcfbd547SKirill Korotaev }
2376fcfbd547SKirill Korotaev 
23771da177e4SLinus Torvalds /**
23781da177e4SLinus Torvalds  * proc_dointvec - read a vector of integers
23791da177e4SLinus Torvalds  * @table: the sysctl table
23801da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
23811da177e4SLinus Torvalds  * @buffer: the user buffer
23821da177e4SLinus Torvalds  * @lenp: the size of the user buffer
23831da177e4SLinus Torvalds  * @ppos: file position
23841da177e4SLinus Torvalds  *
23851da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
23861da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
23871da177e4SLinus Torvalds  *
23881da177e4SLinus Torvalds  * Returns 0 on success.
23891da177e4SLinus Torvalds  */
23908d65af78SAlexey Dobriyan int proc_dointvec(struct ctl_table *table, int write,
23911da177e4SLinus Torvalds 		     void __user *buffer, size_t *lenp, loff_t *ppos)
23921da177e4SLinus Torvalds {
23938d65af78SAlexey Dobriyan     return do_proc_dointvec(table,write,buffer,lenp,ppos,
23941da177e4SLinus Torvalds 		    	    NULL,NULL);
23951da177e4SLinus Torvalds }
23961da177e4SLinus Torvalds 
239734f5a398STheodore Ts'o /*
239834f5a398STheodore Ts'o  * Taint values can only be increased
239925ddbb18SAndi Kleen  * This means we can safely use a temporary.
240034f5a398STheodore Ts'o  */
24018d65af78SAlexey Dobriyan static int proc_taint(struct ctl_table *table, int write,
240234f5a398STheodore Ts'o 			       void __user *buffer, size_t *lenp, loff_t *ppos)
240334f5a398STheodore Ts'o {
240425ddbb18SAndi Kleen 	struct ctl_table t;
240525ddbb18SAndi Kleen 	unsigned long tmptaint = get_taint();
240625ddbb18SAndi Kleen 	int err;
240734f5a398STheodore Ts'o 
240891fcd412SBastian Blank 	if (write && !capable(CAP_SYS_ADMIN))
240934f5a398STheodore Ts'o 		return -EPERM;
241034f5a398STheodore Ts'o 
241125ddbb18SAndi Kleen 	t = *table;
241225ddbb18SAndi Kleen 	t.data = &tmptaint;
24138d65af78SAlexey Dobriyan 	err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
241425ddbb18SAndi Kleen 	if (err < 0)
241525ddbb18SAndi Kleen 		return err;
241625ddbb18SAndi Kleen 
241725ddbb18SAndi Kleen 	if (write) {
241825ddbb18SAndi Kleen 		/*
241925ddbb18SAndi Kleen 		 * Poor man's atomic or. Not worth adding a primitive
242025ddbb18SAndi Kleen 		 * to everyone's atomic.h for this
242125ddbb18SAndi Kleen 		 */
242225ddbb18SAndi Kleen 		int i;
242325ddbb18SAndi Kleen 		for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
242425ddbb18SAndi Kleen 			if ((tmptaint >> i) & 1)
242525ddbb18SAndi Kleen 				add_taint(i);
242625ddbb18SAndi Kleen 		}
242725ddbb18SAndi Kleen 	}
242825ddbb18SAndi Kleen 
242925ddbb18SAndi Kleen 	return err;
243034f5a398STheodore Ts'o }
243134f5a398STheodore Ts'o 
2432bfdc0b49SRichard Weinberger #ifdef CONFIG_PRINTK
2433bfdc0b49SRichard Weinberger static int proc_dmesg_restrict(struct ctl_table *table, int write,
2434bfdc0b49SRichard Weinberger 				void __user *buffer, size_t *lenp, loff_t *ppos)
2435bfdc0b49SRichard Weinberger {
2436bfdc0b49SRichard Weinberger 	if (write && !capable(CAP_SYS_ADMIN))
2437bfdc0b49SRichard Weinberger 		return -EPERM;
2438bfdc0b49SRichard Weinberger 
2439bfdc0b49SRichard Weinberger 	return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2440bfdc0b49SRichard Weinberger }
2441bfdc0b49SRichard Weinberger #endif
2442bfdc0b49SRichard Weinberger 
24431da177e4SLinus Torvalds struct do_proc_dointvec_minmax_conv_param {
24441da177e4SLinus Torvalds 	int *min;
24451da177e4SLinus Torvalds 	int *max;
24461da177e4SLinus Torvalds };
24471da177e4SLinus Torvalds 
244800b7c339SAmerigo Wang static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
24491da177e4SLinus Torvalds 					int *valp,
24501da177e4SLinus Torvalds 					int write, void *data)
24511da177e4SLinus Torvalds {
24521da177e4SLinus Torvalds 	struct do_proc_dointvec_minmax_conv_param *param = data;
24531da177e4SLinus Torvalds 	if (write) {
24541da177e4SLinus Torvalds 		int val = *negp ? -*lvalp : *lvalp;
24551da177e4SLinus Torvalds 		if ((param->min && *param->min > val) ||
24561da177e4SLinus Torvalds 		    (param->max && *param->max < val))
24571da177e4SLinus Torvalds 			return -EINVAL;
24581da177e4SLinus Torvalds 		*valp = val;
24591da177e4SLinus Torvalds 	} else {
24601da177e4SLinus Torvalds 		int val = *valp;
24611da177e4SLinus Torvalds 		if (val < 0) {
246200b7c339SAmerigo Wang 			*negp = true;
24631da177e4SLinus Torvalds 			*lvalp = (unsigned long)-val;
24641da177e4SLinus Torvalds 		} else {
246500b7c339SAmerigo Wang 			*negp = false;
24661da177e4SLinus Torvalds 			*lvalp = (unsigned long)val;
24671da177e4SLinus Torvalds 		}
24681da177e4SLinus Torvalds 	}
24691da177e4SLinus Torvalds 	return 0;
24701da177e4SLinus Torvalds }
24711da177e4SLinus Torvalds 
24721da177e4SLinus Torvalds /**
24731da177e4SLinus Torvalds  * proc_dointvec_minmax - read a vector of integers with min/max values
24741da177e4SLinus Torvalds  * @table: the sysctl table
24751da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
24761da177e4SLinus Torvalds  * @buffer: the user buffer
24771da177e4SLinus Torvalds  * @lenp: the size of the user buffer
24781da177e4SLinus Torvalds  * @ppos: file position
24791da177e4SLinus Torvalds  *
24801da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
24811da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
24821da177e4SLinus Torvalds  *
24831da177e4SLinus Torvalds  * This routine will ensure the values are within the range specified by
24841da177e4SLinus Torvalds  * table->extra1 (min) and table->extra2 (max).
24851da177e4SLinus Torvalds  *
24861da177e4SLinus Torvalds  * Returns 0 on success.
24871da177e4SLinus Torvalds  */
24888d65af78SAlexey Dobriyan int proc_dointvec_minmax(struct ctl_table *table, int write,
24891da177e4SLinus Torvalds 		  void __user *buffer, size_t *lenp, loff_t *ppos)
24901da177e4SLinus Torvalds {
24911da177e4SLinus Torvalds 	struct do_proc_dointvec_minmax_conv_param param = {
24921da177e4SLinus Torvalds 		.min = (int *) table->extra1,
24931da177e4SLinus Torvalds 		.max = (int *) table->extra2,
24941da177e4SLinus Torvalds 	};
24958d65af78SAlexey Dobriyan 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
24961da177e4SLinus Torvalds 				do_proc_dointvec_minmax_conv, &param);
24971da177e4SLinus Torvalds }
24981da177e4SLinus Torvalds 
2499d8217f07SEric W. Biederman static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
25001da177e4SLinus Torvalds 				     void __user *buffer,
25011da177e4SLinus Torvalds 				     size_t *lenp, loff_t *ppos,
25021da177e4SLinus Torvalds 				     unsigned long convmul,
25031da177e4SLinus Torvalds 				     unsigned long convdiv)
25041da177e4SLinus Torvalds {
250500b7c339SAmerigo Wang 	unsigned long *i, *min, *max;
250600b7c339SAmerigo Wang 	int vleft, first = 1, err = 0;
250700b7c339SAmerigo Wang 	unsigned long page = 0;
250800b7c339SAmerigo Wang 	size_t left;
250900b7c339SAmerigo Wang 	char *kbuf;
25101da177e4SLinus Torvalds 
251100b7c339SAmerigo Wang 	if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
25121da177e4SLinus Torvalds 		*lenp = 0;
25131da177e4SLinus Torvalds 		return 0;
25141da177e4SLinus Torvalds 	}
25151da177e4SLinus Torvalds 
2516fcfbd547SKirill Korotaev 	i = (unsigned long *) data;
25171da177e4SLinus Torvalds 	min = (unsigned long *) table->extra1;
25181da177e4SLinus Torvalds 	max = (unsigned long *) table->extra2;
25191da177e4SLinus Torvalds 	vleft = table->maxlen / sizeof(unsigned long);
25201da177e4SLinus Torvalds 	left = *lenp;
25211da177e4SLinus Torvalds 
25221da177e4SLinus Torvalds 	if (write) {
252300b7c339SAmerigo Wang 		if (left > PAGE_SIZE - 1)
252400b7c339SAmerigo Wang 			left = PAGE_SIZE - 1;
252500b7c339SAmerigo Wang 		page = __get_free_page(GFP_TEMPORARY);
252600b7c339SAmerigo Wang 		kbuf = (char *) page;
252700b7c339SAmerigo Wang 		if (!kbuf)
252800b7c339SAmerigo Wang 			return -ENOMEM;
252900b7c339SAmerigo Wang 		if (copy_from_user(kbuf, buffer, left)) {
253000b7c339SAmerigo Wang 			err = -EFAULT;
253100b7c339SAmerigo Wang 			goto free;
25321da177e4SLinus Torvalds 		}
253300b7c339SAmerigo Wang 		kbuf[left] = 0;
25341da177e4SLinus Torvalds 	}
25351da177e4SLinus Torvalds 
253627b3d80aSEric Dumazet 	for (; left && vleft--; i++, first = 0) {
253700b7c339SAmerigo Wang 		unsigned long val;
253800b7c339SAmerigo Wang 
253900b7c339SAmerigo Wang 		if (write) {
254000b7c339SAmerigo Wang 			bool neg;
254100b7c339SAmerigo Wang 
254200b7c339SAmerigo Wang 			left -= proc_skip_spaces(&kbuf);
254300b7c339SAmerigo Wang 
254400b7c339SAmerigo Wang 			err = proc_get_long(&kbuf, &left, &val, &neg,
254500b7c339SAmerigo Wang 					     proc_wspace_sep,
254600b7c339SAmerigo Wang 					     sizeof(proc_wspace_sep), NULL);
254700b7c339SAmerigo Wang 			if (err)
254800b7c339SAmerigo Wang 				break;
25491da177e4SLinus Torvalds 			if (neg)
25501da177e4SLinus Torvalds 				continue;
25511da177e4SLinus Torvalds 			if ((min && val < *min) || (max && val > *max))
25521da177e4SLinus Torvalds 				continue;
25531da177e4SLinus Torvalds 			*i = val;
25541da177e4SLinus Torvalds 		} else {
255500b7c339SAmerigo Wang 			val = convdiv * (*i) / convmul;
25561da177e4SLinus Torvalds 			if (!first)
255700b7c339SAmerigo Wang 				err = proc_put_char(&buffer, &left, '\t');
255800b7c339SAmerigo Wang 			err = proc_put_long(&buffer, &left, val, false);
255900b7c339SAmerigo Wang 			if (err)
256000b7c339SAmerigo Wang 				break;
25611da177e4SLinus Torvalds 		}
25621da177e4SLinus Torvalds 	}
25631da177e4SLinus Torvalds 
256400b7c339SAmerigo Wang 	if (!write && !first && left && !err)
256500b7c339SAmerigo Wang 		err = proc_put_char(&buffer, &left, '\n');
256600b7c339SAmerigo Wang 	if (write && !err)
256700b7c339SAmerigo Wang 		left -= proc_skip_spaces(&kbuf);
256800b7c339SAmerigo Wang free:
25691da177e4SLinus Torvalds 	if (write) {
257000b7c339SAmerigo Wang 		free_page(page);
257100b7c339SAmerigo Wang 		if (first)
257200b7c339SAmerigo Wang 			return err ? : -EINVAL;
25731da177e4SLinus Torvalds 	}
25741da177e4SLinus Torvalds 	*lenp -= left;
25751da177e4SLinus Torvalds 	*ppos += *lenp;
257600b7c339SAmerigo Wang 	return err;
25771da177e4SLinus Torvalds }
25781da177e4SLinus Torvalds 
2579d8217f07SEric W. Biederman static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
2580fcfbd547SKirill Korotaev 				     void __user *buffer,
2581fcfbd547SKirill Korotaev 				     size_t *lenp, loff_t *ppos,
2582fcfbd547SKirill Korotaev 				     unsigned long convmul,
2583fcfbd547SKirill Korotaev 				     unsigned long convdiv)
2584fcfbd547SKirill Korotaev {
2585fcfbd547SKirill Korotaev 	return __do_proc_doulongvec_minmax(table->data, table, write,
25868d65af78SAlexey Dobriyan 			buffer, lenp, ppos, convmul, convdiv);
2587fcfbd547SKirill Korotaev }
2588fcfbd547SKirill Korotaev 
25891da177e4SLinus Torvalds /**
25901da177e4SLinus Torvalds  * proc_doulongvec_minmax - read a vector of long integers with min/max values
25911da177e4SLinus Torvalds  * @table: the sysctl table
25921da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
25931da177e4SLinus Torvalds  * @buffer: the user buffer
25941da177e4SLinus Torvalds  * @lenp: the size of the user buffer
25951da177e4SLinus Torvalds  * @ppos: file position
25961da177e4SLinus Torvalds  *
25971da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
25981da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
25991da177e4SLinus Torvalds  *
26001da177e4SLinus Torvalds  * This routine will ensure the values are within the range specified by
26011da177e4SLinus Torvalds  * table->extra1 (min) and table->extra2 (max).
26021da177e4SLinus Torvalds  *
26031da177e4SLinus Torvalds  * Returns 0 on success.
26041da177e4SLinus Torvalds  */
26058d65af78SAlexey Dobriyan int proc_doulongvec_minmax(struct ctl_table *table, int write,
26061da177e4SLinus Torvalds 			   void __user *buffer, size_t *lenp, loff_t *ppos)
26071da177e4SLinus Torvalds {
26088d65af78SAlexey Dobriyan     return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
26091da177e4SLinus Torvalds }
26101da177e4SLinus Torvalds 
26111da177e4SLinus Torvalds /**
26121da177e4SLinus Torvalds  * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
26131da177e4SLinus Torvalds  * @table: the sysctl table
26141da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
26151da177e4SLinus Torvalds  * @buffer: the user buffer
26161da177e4SLinus Torvalds  * @lenp: the size of the user buffer
26171da177e4SLinus Torvalds  * @ppos: file position
26181da177e4SLinus Torvalds  *
26191da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
26201da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string. The values
26211da177e4SLinus Torvalds  * are treated as milliseconds, and converted to jiffies when they are stored.
26221da177e4SLinus Torvalds  *
26231da177e4SLinus Torvalds  * This routine will ensure the values are within the range specified by
26241da177e4SLinus Torvalds  * table->extra1 (min) and table->extra2 (max).
26251da177e4SLinus Torvalds  *
26261da177e4SLinus Torvalds  * Returns 0 on success.
26271da177e4SLinus Torvalds  */
2628d8217f07SEric W. Biederman int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
26291da177e4SLinus Torvalds 				      void __user *buffer,
26301da177e4SLinus Torvalds 				      size_t *lenp, loff_t *ppos)
26311da177e4SLinus Torvalds {
26328d65af78SAlexey Dobriyan     return do_proc_doulongvec_minmax(table, write, buffer,
26331da177e4SLinus Torvalds 				     lenp, ppos, HZ, 1000l);
26341da177e4SLinus Torvalds }
26351da177e4SLinus Torvalds 
26361da177e4SLinus Torvalds 
263700b7c339SAmerigo Wang static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
26381da177e4SLinus Torvalds 					 int *valp,
26391da177e4SLinus Torvalds 					 int write, void *data)
26401da177e4SLinus Torvalds {
26411da177e4SLinus Torvalds 	if (write) {
2642cba9f33dSBart Samwel 		if (*lvalp > LONG_MAX / HZ)
2643cba9f33dSBart Samwel 			return 1;
26441da177e4SLinus Torvalds 		*valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
26451da177e4SLinus Torvalds 	} else {
26461da177e4SLinus Torvalds 		int val = *valp;
26471da177e4SLinus Torvalds 		unsigned long lval;
26481da177e4SLinus Torvalds 		if (val < 0) {
264900b7c339SAmerigo Wang 			*negp = true;
26501da177e4SLinus Torvalds 			lval = (unsigned long)-val;
26511da177e4SLinus Torvalds 		} else {
265200b7c339SAmerigo Wang 			*negp = false;
26531da177e4SLinus Torvalds 			lval = (unsigned long)val;
26541da177e4SLinus Torvalds 		}
26551da177e4SLinus Torvalds 		*lvalp = lval / HZ;
26561da177e4SLinus Torvalds 	}
26571da177e4SLinus Torvalds 	return 0;
26581da177e4SLinus Torvalds }
26591da177e4SLinus Torvalds 
266000b7c339SAmerigo Wang static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
26611da177e4SLinus Torvalds 						int *valp,
26621da177e4SLinus Torvalds 						int write, void *data)
26631da177e4SLinus Torvalds {
26641da177e4SLinus Torvalds 	if (write) {
2665cba9f33dSBart Samwel 		if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2666cba9f33dSBart Samwel 			return 1;
26671da177e4SLinus Torvalds 		*valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
26681da177e4SLinus Torvalds 	} else {
26691da177e4SLinus Torvalds 		int val = *valp;
26701da177e4SLinus Torvalds 		unsigned long lval;
26711da177e4SLinus Torvalds 		if (val < 0) {
267200b7c339SAmerigo Wang 			*negp = true;
26731da177e4SLinus Torvalds 			lval = (unsigned long)-val;
26741da177e4SLinus Torvalds 		} else {
267500b7c339SAmerigo Wang 			*negp = false;
26761da177e4SLinus Torvalds 			lval = (unsigned long)val;
26771da177e4SLinus Torvalds 		}
26781da177e4SLinus Torvalds 		*lvalp = jiffies_to_clock_t(lval);
26791da177e4SLinus Torvalds 	}
26801da177e4SLinus Torvalds 	return 0;
26811da177e4SLinus Torvalds }
26821da177e4SLinus Torvalds 
268300b7c339SAmerigo Wang static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
26841da177e4SLinus Torvalds 					    int *valp,
26851da177e4SLinus Torvalds 					    int write, void *data)
26861da177e4SLinus Torvalds {
26871da177e4SLinus Torvalds 	if (write) {
26881da177e4SLinus Torvalds 		*valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
26891da177e4SLinus Torvalds 	} else {
26901da177e4SLinus Torvalds 		int val = *valp;
26911da177e4SLinus Torvalds 		unsigned long lval;
26921da177e4SLinus Torvalds 		if (val < 0) {
269300b7c339SAmerigo Wang 			*negp = true;
26941da177e4SLinus Torvalds 			lval = (unsigned long)-val;
26951da177e4SLinus Torvalds 		} else {
269600b7c339SAmerigo Wang 			*negp = false;
26971da177e4SLinus Torvalds 			lval = (unsigned long)val;
26981da177e4SLinus Torvalds 		}
26991da177e4SLinus Torvalds 		*lvalp = jiffies_to_msecs(lval);
27001da177e4SLinus Torvalds 	}
27011da177e4SLinus Torvalds 	return 0;
27021da177e4SLinus Torvalds }
27031da177e4SLinus Torvalds 
27041da177e4SLinus Torvalds /**
27051da177e4SLinus Torvalds  * proc_dointvec_jiffies - read a vector of integers as seconds
27061da177e4SLinus Torvalds  * @table: the sysctl table
27071da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
27081da177e4SLinus Torvalds  * @buffer: the user buffer
27091da177e4SLinus Torvalds  * @lenp: the size of the user buffer
27101da177e4SLinus Torvalds  * @ppos: file position
27111da177e4SLinus Torvalds  *
27121da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
27131da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
27141da177e4SLinus Torvalds  * The values read are assumed to be in seconds, and are converted into
27151da177e4SLinus Torvalds  * jiffies.
27161da177e4SLinus Torvalds  *
27171da177e4SLinus Torvalds  * Returns 0 on success.
27181da177e4SLinus Torvalds  */
27198d65af78SAlexey Dobriyan int proc_dointvec_jiffies(struct ctl_table *table, int write,
27201da177e4SLinus Torvalds 			  void __user *buffer, size_t *lenp, loff_t *ppos)
27211da177e4SLinus Torvalds {
27228d65af78SAlexey Dobriyan     return do_proc_dointvec(table,write,buffer,lenp,ppos,
27231da177e4SLinus Torvalds 		    	    do_proc_dointvec_jiffies_conv,NULL);
27241da177e4SLinus Torvalds }
27251da177e4SLinus Torvalds 
27261da177e4SLinus Torvalds /**
27271da177e4SLinus Torvalds  * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
27281da177e4SLinus Torvalds  * @table: the sysctl table
27291da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
27301da177e4SLinus Torvalds  * @buffer: the user buffer
27311da177e4SLinus Torvalds  * @lenp: the size of the user buffer
27321e5d5331SRandy Dunlap  * @ppos: pointer to the file position
27331da177e4SLinus Torvalds  *
27341da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
27351da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
27361da177e4SLinus Torvalds  * The values read are assumed to be in 1/USER_HZ seconds, and
27371da177e4SLinus Torvalds  * are converted into jiffies.
27381da177e4SLinus Torvalds  *
27391da177e4SLinus Torvalds  * Returns 0 on success.
27401da177e4SLinus Torvalds  */
27418d65af78SAlexey Dobriyan int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
27421da177e4SLinus Torvalds 				 void __user *buffer, size_t *lenp, loff_t *ppos)
27431da177e4SLinus Torvalds {
27448d65af78SAlexey Dobriyan     return do_proc_dointvec(table,write,buffer,lenp,ppos,
27451da177e4SLinus Torvalds 		    	    do_proc_dointvec_userhz_jiffies_conv,NULL);
27461da177e4SLinus Torvalds }
27471da177e4SLinus Torvalds 
27481da177e4SLinus Torvalds /**
27491da177e4SLinus Torvalds  * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
27501da177e4SLinus Torvalds  * @table: the sysctl table
27511da177e4SLinus Torvalds  * @write: %TRUE if this is a write to the sysctl file
27521da177e4SLinus Torvalds  * @buffer: the user buffer
27531da177e4SLinus Torvalds  * @lenp: the size of the user buffer
275467be2dd1SMartin Waitz  * @ppos: file position
275567be2dd1SMartin Waitz  * @ppos: the current position in the file
27561da177e4SLinus Torvalds  *
27571da177e4SLinus Torvalds  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
27581da177e4SLinus Torvalds  * values from/to the user buffer, treated as an ASCII string.
27591da177e4SLinus Torvalds  * The values read are assumed to be in 1/1000 seconds, and
27601da177e4SLinus Torvalds  * are converted into jiffies.
27611da177e4SLinus Torvalds  *
27621da177e4SLinus Torvalds  * Returns 0 on success.
27631da177e4SLinus Torvalds  */
27648d65af78SAlexey Dobriyan int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
27651da177e4SLinus Torvalds 			     void __user *buffer, size_t *lenp, loff_t *ppos)
27661da177e4SLinus Torvalds {
27678d65af78SAlexey Dobriyan 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
27681da177e4SLinus Torvalds 				do_proc_dointvec_ms_jiffies_conv, NULL);
27691da177e4SLinus Torvalds }
27701da177e4SLinus Torvalds 
27718d65af78SAlexey Dobriyan static int proc_do_cad_pid(struct ctl_table *table, int write,
27729ec52099SCedric Le Goater 			   void __user *buffer, size_t *lenp, loff_t *ppos)
27739ec52099SCedric Le Goater {
27749ec52099SCedric Le Goater 	struct pid *new_pid;
27759ec52099SCedric Le Goater 	pid_t tmp;
27769ec52099SCedric Le Goater 	int r;
27779ec52099SCedric Le Goater 
27786c5f3e7bSPavel Emelyanov 	tmp = pid_vnr(cad_pid);
27799ec52099SCedric Le Goater 
27808d65af78SAlexey Dobriyan 	r = __do_proc_dointvec(&tmp, table, write, buffer,
27819ec52099SCedric Le Goater 			       lenp, ppos, NULL, NULL);
27829ec52099SCedric Le Goater 	if (r || !write)
27839ec52099SCedric Le Goater 		return r;
27849ec52099SCedric Le Goater 
27859ec52099SCedric Le Goater 	new_pid = find_get_pid(tmp);
27869ec52099SCedric Le Goater 	if (!new_pid)
27879ec52099SCedric Le Goater 		return -ESRCH;
27889ec52099SCedric Le Goater 
27899ec52099SCedric Le Goater 	put_pid(xchg(&cad_pid, new_pid));
27909ec52099SCedric Le Goater 	return 0;
27919ec52099SCedric Le Goater }
27929ec52099SCedric Le Goater 
27939f977fb7SOctavian Purdila /**
27949f977fb7SOctavian Purdila  * proc_do_large_bitmap - read/write from/to a large bitmap
27959f977fb7SOctavian Purdila  * @table: the sysctl table
27969f977fb7SOctavian Purdila  * @write: %TRUE if this is a write to the sysctl file
27979f977fb7SOctavian Purdila  * @buffer: the user buffer
27989f977fb7SOctavian Purdila  * @lenp: the size of the user buffer
27999f977fb7SOctavian Purdila  * @ppos: file position
28009f977fb7SOctavian Purdila  *
28019f977fb7SOctavian Purdila  * The bitmap is stored at table->data and the bitmap length (in bits)
28029f977fb7SOctavian Purdila  * in table->maxlen.
28039f977fb7SOctavian Purdila  *
28049f977fb7SOctavian Purdila  * We use a range comma separated format (e.g. 1,3-4,10-10) so that
28059f977fb7SOctavian Purdila  * large bitmaps may be represented in a compact manner. Writing into
28069f977fb7SOctavian Purdila  * the file will clear the bitmap then update it with the given input.
28079f977fb7SOctavian Purdila  *
28089f977fb7SOctavian Purdila  * Returns 0 on success.
28099f977fb7SOctavian Purdila  */
28109f977fb7SOctavian Purdila int proc_do_large_bitmap(struct ctl_table *table, int write,
28119f977fb7SOctavian Purdila 			 void __user *buffer, size_t *lenp, loff_t *ppos)
28129f977fb7SOctavian Purdila {
28139f977fb7SOctavian Purdila 	int err = 0;
28149f977fb7SOctavian Purdila 	bool first = 1;
28159f977fb7SOctavian Purdila 	size_t left = *lenp;
28169f977fb7SOctavian Purdila 	unsigned long bitmap_len = table->maxlen;
28179f977fb7SOctavian Purdila 	unsigned long *bitmap = (unsigned long *) table->data;
28189f977fb7SOctavian Purdila 	unsigned long *tmp_bitmap = NULL;
28199f977fb7SOctavian Purdila 	char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
28209f977fb7SOctavian Purdila 
28219f977fb7SOctavian Purdila 	if (!bitmap_len || !left || (*ppos && !write)) {
28229f977fb7SOctavian Purdila 		*lenp = 0;
28239f977fb7SOctavian Purdila 		return 0;
28249f977fb7SOctavian Purdila 	}
28259f977fb7SOctavian Purdila 
28269f977fb7SOctavian Purdila 	if (write) {
28279f977fb7SOctavian Purdila 		unsigned long page = 0;
28289f977fb7SOctavian Purdila 		char *kbuf;
28299f977fb7SOctavian Purdila 
28309f977fb7SOctavian Purdila 		if (left > PAGE_SIZE - 1)
28319f977fb7SOctavian Purdila 			left = PAGE_SIZE - 1;
28329f977fb7SOctavian Purdila 
28339f977fb7SOctavian Purdila 		page = __get_free_page(GFP_TEMPORARY);
28349f977fb7SOctavian Purdila 		kbuf = (char *) page;
28359f977fb7SOctavian Purdila 		if (!kbuf)
28369f977fb7SOctavian Purdila 			return -ENOMEM;
28379f977fb7SOctavian Purdila 		if (copy_from_user(kbuf, buffer, left)) {
28389f977fb7SOctavian Purdila 			free_page(page);
28399f977fb7SOctavian Purdila 			return -EFAULT;
28409f977fb7SOctavian Purdila                 }
28419f977fb7SOctavian Purdila 		kbuf[left] = 0;
28429f977fb7SOctavian Purdila 
28439f977fb7SOctavian Purdila 		tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
28449f977fb7SOctavian Purdila 				     GFP_KERNEL);
28459f977fb7SOctavian Purdila 		if (!tmp_bitmap) {
28469f977fb7SOctavian Purdila 			free_page(page);
28479f977fb7SOctavian Purdila 			return -ENOMEM;
28489f977fb7SOctavian Purdila 		}
28499f977fb7SOctavian Purdila 		proc_skip_char(&kbuf, &left, '\n');
28509f977fb7SOctavian Purdila 		while (!err && left) {
28519f977fb7SOctavian Purdila 			unsigned long val_a, val_b;
28529f977fb7SOctavian Purdila 			bool neg;
28539f977fb7SOctavian Purdila 
28549f977fb7SOctavian Purdila 			err = proc_get_long(&kbuf, &left, &val_a, &neg, tr_a,
28559f977fb7SOctavian Purdila 					     sizeof(tr_a), &c);
28569f977fb7SOctavian Purdila 			if (err)
28579f977fb7SOctavian Purdila 				break;
28589f977fb7SOctavian Purdila 			if (val_a >= bitmap_len || neg) {
28599f977fb7SOctavian Purdila 				err = -EINVAL;
28609f977fb7SOctavian Purdila 				break;
28619f977fb7SOctavian Purdila 			}
28629f977fb7SOctavian Purdila 
28639f977fb7SOctavian Purdila 			val_b = val_a;
28649f977fb7SOctavian Purdila 			if (left) {
28659f977fb7SOctavian Purdila 				kbuf++;
28669f977fb7SOctavian Purdila 				left--;
28679f977fb7SOctavian Purdila 			}
28689f977fb7SOctavian Purdila 
28699f977fb7SOctavian Purdila 			if (c == '-') {
28709f977fb7SOctavian Purdila 				err = proc_get_long(&kbuf, &left, &val_b,
28719f977fb7SOctavian Purdila 						     &neg, tr_b, sizeof(tr_b),
28729f977fb7SOctavian Purdila 						     &c);
28739f977fb7SOctavian Purdila 				if (err)
28749f977fb7SOctavian Purdila 					break;
28759f977fb7SOctavian Purdila 				if (val_b >= bitmap_len || neg ||
28769f977fb7SOctavian Purdila 				    val_a > val_b) {
28779f977fb7SOctavian Purdila 					err = -EINVAL;
28789f977fb7SOctavian Purdila 					break;
28799f977fb7SOctavian Purdila 				}
28809f977fb7SOctavian Purdila 				if (left) {
28819f977fb7SOctavian Purdila 					kbuf++;
28829f977fb7SOctavian Purdila 					left--;
28839f977fb7SOctavian Purdila 				}
28849f977fb7SOctavian Purdila 			}
28859f977fb7SOctavian Purdila 
28869f977fb7SOctavian Purdila 			while (val_a <= val_b)
28879f977fb7SOctavian Purdila 				set_bit(val_a++, tmp_bitmap);
28889f977fb7SOctavian Purdila 
28899f977fb7SOctavian Purdila 			first = 0;
28909f977fb7SOctavian Purdila 			proc_skip_char(&kbuf, &left, '\n');
28919f977fb7SOctavian Purdila 		}
28929f977fb7SOctavian Purdila 		free_page(page);
28939f977fb7SOctavian Purdila 	} else {
28949f977fb7SOctavian Purdila 		unsigned long bit_a, bit_b = 0;
28959f977fb7SOctavian Purdila 
28969f977fb7SOctavian Purdila 		while (left) {
28979f977fb7SOctavian Purdila 			bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
28989f977fb7SOctavian Purdila 			if (bit_a >= bitmap_len)
28999f977fb7SOctavian Purdila 				break;
29009f977fb7SOctavian Purdila 			bit_b = find_next_zero_bit(bitmap, bitmap_len,
29019f977fb7SOctavian Purdila 						   bit_a + 1) - 1;
29029f977fb7SOctavian Purdila 
29039f977fb7SOctavian Purdila 			if (!first) {
29049f977fb7SOctavian Purdila 				err = proc_put_char(&buffer, &left, ',');
29059f977fb7SOctavian Purdila 				if (err)
29069f977fb7SOctavian Purdila 					break;
29079f977fb7SOctavian Purdila 			}
29089f977fb7SOctavian Purdila 			err = proc_put_long(&buffer, &left, bit_a, false);
29099f977fb7SOctavian Purdila 			if (err)
29109f977fb7SOctavian Purdila 				break;
29119f977fb7SOctavian Purdila 			if (bit_a != bit_b) {
29129f977fb7SOctavian Purdila 				err = proc_put_char(&buffer, &left, '-');
29139f977fb7SOctavian Purdila 				if (err)
29149f977fb7SOctavian Purdila 					break;
29159f977fb7SOctavian Purdila 				err = proc_put_long(&buffer, &left, bit_b, false);
29169f977fb7SOctavian Purdila 				if (err)
29179f977fb7SOctavian Purdila 					break;
29189f977fb7SOctavian Purdila 			}
29199f977fb7SOctavian Purdila 
29209f977fb7SOctavian Purdila 			first = 0; bit_b++;
29219f977fb7SOctavian Purdila 		}
29229f977fb7SOctavian Purdila 		if (!err)
29239f977fb7SOctavian Purdila 			err = proc_put_char(&buffer, &left, '\n');
29249f977fb7SOctavian Purdila 	}
29259f977fb7SOctavian Purdila 
29269f977fb7SOctavian Purdila 	if (!err) {
29279f977fb7SOctavian Purdila 		if (write) {
29289f977fb7SOctavian Purdila 			if (*ppos)
29299f977fb7SOctavian Purdila 				bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
29309f977fb7SOctavian Purdila 			else
29319f977fb7SOctavian Purdila 				memcpy(bitmap, tmp_bitmap,
29329f977fb7SOctavian Purdila 					BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long));
29339f977fb7SOctavian Purdila 		}
29349f977fb7SOctavian Purdila 		kfree(tmp_bitmap);
29359f977fb7SOctavian Purdila 		*lenp -= left;
29369f977fb7SOctavian Purdila 		*ppos += *lenp;
29379f977fb7SOctavian Purdila 		return 0;
29389f977fb7SOctavian Purdila 	} else {
29399f977fb7SOctavian Purdila 		kfree(tmp_bitmap);
29409f977fb7SOctavian Purdila 		return err;
29419f977fb7SOctavian Purdila 	}
29429f977fb7SOctavian Purdila }
29439f977fb7SOctavian Purdila 
294455610500SJovi Zhang #else /* CONFIG_PROC_SYSCTL */
29451da177e4SLinus Torvalds 
29468d65af78SAlexey Dobriyan int proc_dostring(struct ctl_table *table, int write,
29471da177e4SLinus Torvalds 		  void __user *buffer, size_t *lenp, loff_t *ppos)
29481da177e4SLinus Torvalds {
29491da177e4SLinus Torvalds 	return -ENOSYS;
29501da177e4SLinus Torvalds }
29511da177e4SLinus Torvalds 
29528d65af78SAlexey Dobriyan int proc_dointvec(struct ctl_table *table, int write,
29531da177e4SLinus Torvalds 		  void __user *buffer, size_t *lenp, loff_t *ppos)
29541da177e4SLinus Torvalds {
29551da177e4SLinus Torvalds 	return -ENOSYS;
29561da177e4SLinus Torvalds }
29571da177e4SLinus Torvalds 
29588d65af78SAlexey Dobriyan int proc_dointvec_minmax(struct ctl_table *table, int write,
29591da177e4SLinus Torvalds 		    void __user *buffer, size_t *lenp, loff_t *ppos)
29601da177e4SLinus Torvalds {
29611da177e4SLinus Torvalds 	return -ENOSYS;
29621da177e4SLinus Torvalds }
29631da177e4SLinus Torvalds 
29648d65af78SAlexey Dobriyan int proc_dointvec_jiffies(struct ctl_table *table, int write,
29651da177e4SLinus Torvalds 		    void __user *buffer, size_t *lenp, loff_t *ppos)
29661da177e4SLinus Torvalds {
29671da177e4SLinus Torvalds 	return -ENOSYS;
29681da177e4SLinus Torvalds }
29691da177e4SLinus Torvalds 
29708d65af78SAlexey Dobriyan int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
29711da177e4SLinus Torvalds 		    void __user *buffer, size_t *lenp, loff_t *ppos)
29721da177e4SLinus Torvalds {
29731da177e4SLinus Torvalds 	return -ENOSYS;
29741da177e4SLinus Torvalds }
29751da177e4SLinus Torvalds 
29768d65af78SAlexey Dobriyan int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
29771da177e4SLinus Torvalds 			     void __user *buffer, size_t *lenp, loff_t *ppos)
29781da177e4SLinus Torvalds {
29791da177e4SLinus Torvalds 	return -ENOSYS;
29801da177e4SLinus Torvalds }
29811da177e4SLinus Torvalds 
29828d65af78SAlexey Dobriyan int proc_doulongvec_minmax(struct ctl_table *table, int write,
29831da177e4SLinus Torvalds 		    void __user *buffer, size_t *lenp, loff_t *ppos)
29841da177e4SLinus Torvalds {
29851da177e4SLinus Torvalds 	return -ENOSYS;
29861da177e4SLinus Torvalds }
29871da177e4SLinus Torvalds 
2988d8217f07SEric W. Biederman int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
29891da177e4SLinus Torvalds 				      void __user *buffer,
29901da177e4SLinus Torvalds 				      size_t *lenp, loff_t *ppos)
29911da177e4SLinus Torvalds {
29921da177e4SLinus Torvalds     return -ENOSYS;
29931da177e4SLinus Torvalds }
29941da177e4SLinus Torvalds 
29951da177e4SLinus Torvalds 
299655610500SJovi Zhang #endif /* CONFIG_PROC_SYSCTL */
29971da177e4SLinus Torvalds 
29981da177e4SLinus Torvalds /*
29991da177e4SLinus Torvalds  * No sense putting this after each symbol definition, twice,
30001da177e4SLinus Torvalds  * exception granted :-)
30011da177e4SLinus Torvalds  */
30021da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec);
30031da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_jiffies);
30041da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_minmax);
30051da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
30061da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
30071da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dostring);
30081da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_minmax);
30091da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
30101da177e4SLinus Torvalds EXPORT_SYMBOL(register_sysctl_table);
301129e796fdSEric W. Biederman EXPORT_SYMBOL(register_sysctl_paths);
30121da177e4SLinus Torvalds EXPORT_SYMBOL(unregister_sysctl_table);
3013