blob: afc1dc60f3f87e3d885362fae5903aea1df8a79c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
12 * Horn.
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
16 * Wendling.
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/mm.h>
23#include <linux/swap.h>
24#include <linux/slab.h>
25#include <linux/sysctl.h>
Akinobu Mita5a04cca2012-03-28 14:42:50 -070026#include <linux/bitmap.h>
Dave Youngd33ed522010-03-10 15:23:59 -080027#include <linux/signal.h>
Dan Rosenberg455cd5a2011-01-12 16:59:41 -080028#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/proc_fs.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070030#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/ctype.h>
Vegard Nossumdfec0722008-04-04 00:51:41 +020032#include <linux/kmemcheck.h>
Steven Rostedtfd4b6162012-07-30 14:42:48 -070033#include <linux/kmemleak.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070034#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/init.h>
36#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010037#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030038#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sysrq.h>
40#include <linux/highuid.h>
41#include <linux/writeback.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020042#include <linux/ratelimit.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070043#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070046#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/times.h>
48#include <linux/limits.h>
49#include <linux/dcache.h>
Alexey Dobriyan6e006702010-01-20 22:27:56 +020050#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070052#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080053#include <linux/nfs_fs.h>
54#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070055#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020056#include <linux/ftrace.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020057#include <linux/perf_event.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050058#include <linux/kprobes.h>
Jens Axboeb492e952010-05-19 21:03:16 +020059#include <linux/pipe_fs_i.h>
David Rientjes8e4228e2010-08-09 17:18:56 -070060#include <linux/oom.h>
Eric Paris17f60a72011-04-01 17:07:50 -040061#include <linux/kmod.h>
Dan Ballard73efc032011-10-31 17:11:20 -070062#include <linux/capability.h>
Al Viro40401532012-02-13 03:58:52 +000063#include <linux/binfmts.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060064#include <linux/sched/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#include <asm/uaccess.h>
67#include <asm/processor.h>
68
Andi Kleen29cbc782006-09-30 01:47:55 +020069#ifdef CONFIG_X86
70#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010071#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010072#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020073#endif
David Howellsd550bbd2012-03-28 18:30:03 +010074#ifdef CONFIG_SPARC
75#include <asm/setup.h>
76#endif
Dave Youngc55b7c32010-03-10 15:24:08 -080077#ifdef CONFIG_BSD_PROCESS_ACCT
78#include <linux/acct.h>
79#endif
Dave Young4f0e0562010-03-10 15:24:09 -080080#ifdef CONFIG_RT_MUTEXES
81#include <linux/rtmutex.h>
82#endif
Dave Young2edf5e42010-03-10 15:24:10 -080083#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
84#include <linux/lockdep.h>
85#endif
Dave Young15485a42010-03-10 15:24:07 -080086#ifdef CONFIG_CHR_DEV_SG
87#include <scsi/sg.h>
88#endif
Andi Kleen29cbc782006-09-30 01:47:55 +020089
Don Zickus58687ac2010-05-07 17:11:44 -040090#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050091#include <linux/nmi.h>
92#endif
93
Eric W. Biederman7058cb02007-10-18 03:05:58 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#if defined(CONFIG_SYSCTL)
96
97/* External variables not in a header file. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098extern int sysctl_overcommit_memory;
99extern int sysctl_overcommit_ratio;
100extern int max_threads;
Alan Coxd6e71142005-06-23 00:09:43 -0700101extern int suid_dumpable;
Alex Kelly046d6622012-10-04 17:15:23 -0700102#ifdef CONFIG_COREDUMP
103extern int core_uses_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -0700105extern unsigned int core_pipe_limit;
Alex Kelly046d6622012-10-04 17:15:23 -0700106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107extern int pid_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108extern int pid_max_min, pid_max_max;
Andrew Morton9d0243b2006-01-08 01:00:39 -0800109extern int sysctl_drop_caches;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800110extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +0200111extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +0100112extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -0400113extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000114#ifndef CONFIG_MMU
115extern int sysctl_nr_trim_pages;
116#endif
Jens Axboecb684b52009-09-15 21:53:11 +0200117#ifdef CONFIG_BLOCK
Jens Axboe5e605b62009-08-05 09:07:21 +0200118extern int blk_iopoll_enabled;
Jens Axboecb684b52009-09-15 21:53:11 +0200119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700121/* Constants used for minimum and maximum */
Don Zickus2508ce12010-05-07 17:11:46 -0400122#ifdef CONFIG_LOCKUP_DETECTOR
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700123static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200124static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700125#endif
126
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700127static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700128static int __maybe_unused one = 1;
129static int __maybe_unused two = 2;
Petr Holasekcb16e952011-03-23 16:43:09 -0700130static int __maybe_unused three = 3;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800131static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700132static int one_hundred = 100;
Dave Youngaf913222009-09-22 16:43:33 -0700133#ifdef CONFIG_PRINTK
134static int ten_thousand = 10000;
135#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700136
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700137/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
138static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
141static int maxolduid = 65535;
142static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800143static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700146static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dave Youngd14f1722010-02-25 20:28:57 -0500148#ifdef CONFIG_INOTIFY_USER
149#include <linux/inotify.h>
150#endif
David S. Miller72c57ed2008-09-11 23:29:54 -0700151#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif
153
David S. Miller08714202008-11-16 23:49:24 -0800154#ifdef CONFIG_SPARC64
155extern int sysctl_tsb_ratio;
156#endif
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#ifdef __hppa__
159extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530160#endif
161
162#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163extern int unaligned_enabled;
164#endif
165
Jes Sorensend2b176e2006-02-28 09:42:23 -0800166#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800167extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800168#endif
169
Vineet Guptab6fca722013-01-09 20:06:28 +0530170#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
171extern int no_unaligned_warning;
172#endif
173
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700174#ifdef CONFIG_PROC_SYSCTL
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700175static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700176 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700177static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800178 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700179#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700180
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700181#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700182static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700183 void __user *buffer, size_t *lenp, loff_t *ppos);
184#endif
185
Kees Cook54b50192012-07-30 14:39:18 -0700186static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
187 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700188#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700189static int proc_dostring_coredump(struct ctl_table *table, int write,
190 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700191#endif
Kees Cook54b50192012-07-30 14:39:18 -0700192
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700193#ifdef CONFIG_MAGIC_SYSRQ
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -0800194/* Note: sysrq code uses it's own private copy */
195static int __sysrq_enabled = SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700196
197static int sysrq_sysctl_handler(ctl_table *table, int write,
198 void __user *buffer, size_t *lenp,
199 loff_t *ppos)
200{
201 int error;
202
203 error = proc_dointvec(table, write, buffer, lenp, ppos);
204 if (error)
205 return error;
206
207 if (write)
208 sysrq_toggle_support(__sysrq_enabled);
209
210 return 0;
211}
212
213#endif
214
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700215static struct ctl_table kern_table[];
216static struct ctl_table vm_table[];
217static struct ctl_table fs_table[];
218static struct ctl_table debug_table[];
219static struct ctl_table dev_table[];
220extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800221#ifdef CONFIG_EPOLL
222extern struct ctl_table epoll_table[];
223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
226int sysctl_legacy_va_layout;
227#endif
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/* The default sysctl tables: */
230
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800231static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .procname = "kernel",
234 .mode = 0555,
235 .child = kern_table,
236 },
237 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .procname = "vm",
239 .mode = 0555,
240 .child = vm_table,
241 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .procname = "fs",
244 .mode = 0555,
245 .child = fs_table,
246 },
247 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .procname = "debug",
249 .mode = 0555,
250 .child = debug_table,
251 },
252 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .procname = "dev",
254 .mode = 0555,
255 .child = dev_table,
256 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700257 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Ingo Molnar77e54a12007-07-09 18:52:00 +0200260#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100261static int min_sched_granularity_ns = 100000; /* 100 usecs */
262static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
263static int min_wakeup_granularity_ns; /* 0 usecs */
264static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200265#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100266static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
267static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200268#endif /* CONFIG_SMP */
269#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200270
Mel Gorman5e771902010-05-24 14:32:31 -0700271#ifdef CONFIG_COMPACTION
272static int min_extfrag_threshold;
273static int max_extfrag_threshold = 1000;
274#endif
275
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700276static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200277 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200278 .procname = "sched_child_runs_first",
279 .data = &sysctl_sched_child_runs_first,
280 .maxlen = sizeof(unsigned int),
281 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800282 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200283 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200284#ifdef CONFIG_SCHED_DEBUG
285 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100286 .procname = "sched_min_granularity_ns",
287 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200288 .maxlen = sizeof(unsigned int),
289 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800290 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100291 .extra1 = &min_sched_granularity_ns,
292 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200293 },
294 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200295 .procname = "sched_latency_ns",
296 .data = &sysctl_sched_latency,
297 .maxlen = sizeof(unsigned int),
298 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800299 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200300 .extra1 = &min_sched_granularity_ns,
301 .extra2 = &max_sched_granularity_ns,
302 },
303 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200304 .procname = "sched_wakeup_granularity_ns",
305 .data = &sysctl_sched_wakeup_granularity,
306 .maxlen = sizeof(unsigned int),
307 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800308 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200309 .extra1 = &min_wakeup_granularity_ns,
310 .extra2 = &max_wakeup_granularity_ns,
311 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200312#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200313 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100314 .procname = "sched_tunable_scaling",
315 .data = &sysctl_sched_tunable_scaling,
316 .maxlen = sizeof(enum sched_tunable_scaling),
317 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800318 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100319 .extra1 = &min_sched_tunable_scaling,
320 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200321 },
322 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900323 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200324 .data = &sysctl_sched_migration_cost,
325 .maxlen = sizeof(unsigned int),
326 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800327 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200328 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100329 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100330 .procname = "sched_nr_migrate",
331 .data = &sysctl_sched_nr_migrate,
332 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100333 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800334 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100335 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530336 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900337 .procname = "sched_time_avg_ms",
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200338 .data = &sysctl_sched_time_avg,
339 .maxlen = sizeof(unsigned int),
340 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800341 .proc_handler = proc_dointvec,
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200342 },
343 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900344 .procname = "sched_shares_window_ns",
Paul Turnera7a4f8a2010-11-15 15:47:06 -0800345 .data = &sysctl_sched_shares_window,
346 .maxlen = sizeof(unsigned int),
347 .mode = 0644,
348 .proc_handler = proc_dointvec,
349 },
350 {
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530351 .procname = "timer_migration",
352 .data = &sysctl_timer_migration,
353 .maxlen = sizeof(unsigned int),
354 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800355 .proc_handler = proc_dointvec_minmax,
Arun R Bharadwajbfdb4d92009-06-23 10:00:58 +0530356 .extra1 = &zero,
357 .extra2 = &one,
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530358 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200359#endif /* CONFIG_SMP */
360#ifdef CONFIG_NUMA_BALANCING
361 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200362 .procname = "numa_balancing_scan_delay_ms",
363 .data = &sysctl_numa_balancing_scan_delay,
364 .maxlen = sizeof(unsigned int),
365 .mode = 0644,
366 .proc_handler = proc_dointvec,
367 },
368 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200369 .procname = "numa_balancing_scan_period_min_ms",
370 .data = &sysctl_numa_balancing_scan_period_min,
371 .maxlen = sizeof(unsigned int),
372 .mode = 0644,
373 .proc_handler = proc_dointvec,
374 },
375 {
Mel Gormanb8593bf2012-11-21 01:18:23 +0000376 .procname = "numa_balancing_scan_period_reset",
377 .data = &sysctl_numa_balancing_scan_period_reset,
378 .maxlen = sizeof(unsigned int),
379 .mode = 0644,
380 .proc_handler = proc_dointvec,
381 },
382 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200383 .procname = "numa_balancing_scan_period_max_ms",
384 .data = &sysctl_numa_balancing_scan_period_max,
385 .maxlen = sizeof(unsigned int),
386 .mode = 0644,
387 .proc_handler = proc_dointvec,
388 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200389 {
390 .procname = "numa_balancing_scan_size_mb",
391 .data = &sysctl_numa_balancing_scan_size,
392 .maxlen = sizeof(unsigned int),
393 .mode = 0644,
394 .proc_handler = proc_dointvec,
395 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200396#endif /* CONFIG_NUMA_BALANCING */
397#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200398 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100399 .procname = "sched_rt_period_us",
400 .data = &sysctl_sched_rt_period,
401 .maxlen = sizeof(unsigned int),
402 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800403 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100404 },
405 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100406 .procname = "sched_rt_runtime_us",
407 .data = &sysctl_sched_rt_runtime,
408 .maxlen = sizeof(int),
409 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800410 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100411 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600412 {
413 .procname = "sched_rr_timeslice_ms",
414 .data = &sched_rr_timeslice,
415 .maxlen = sizeof(int),
416 .mode = 0644,
417 .proc_handler = sched_rr_handler,
418 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100419#ifdef CONFIG_SCHED_AUTOGROUP
420 {
421 .procname = "sched_autogroup_enabled",
422 .data = &sysctl_sched_autogroup_enabled,
423 .maxlen = sizeof(unsigned int),
424 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800425 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100426 .extra1 = &zero,
427 .extra2 = &one,
428 },
429#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700430#ifdef CONFIG_CFS_BANDWIDTH
431 {
432 .procname = "sched_cfs_bandwidth_slice_us",
433 .data = &sysctl_sched_cfs_bandwidth_slice,
434 .maxlen = sizeof(unsigned int),
435 .mode = 0644,
436 .proc_handler = proc_dointvec_minmax,
437 .extra1 = &one,
438 },
439#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700440#ifdef CONFIG_PROVE_LOCKING
441 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700442 .procname = "prove_locking",
443 .data = &prove_locking,
444 .maxlen = sizeof(int),
445 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800446 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700447 },
448#endif
449#ifdef CONFIG_LOCK_STAT
450 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700451 .procname = "lock_stat",
452 .data = &lock_stat,
453 .maxlen = sizeof(int),
454 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800455 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700456 },
457#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200458 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 .procname = "panic",
460 .data = &panic_timeout,
461 .maxlen = sizeof(int),
462 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800463 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 },
Alex Kelly046d6622012-10-04 17:15:23 -0700465#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 .procname = "core_uses_pid",
468 .data = &core_uses_pid,
469 .maxlen = sizeof(int),
470 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800471 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 },
473 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 .procname = "core_pattern",
475 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700476 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700478 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 },
Neil Hormana2939802009-09-23 15:56:56 -0700480 {
Neil Hormana2939802009-09-23 15:56:56 -0700481 .procname = "core_pipe_limit",
482 .data = &core_pipe_limit,
483 .maxlen = sizeof(unsigned int),
484 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800485 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700486 },
Alex Kelly046d6622012-10-04 17:15:23 -0700487#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800488#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700491 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800492 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800493 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800495#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100496#ifdef CONFIG_LATENCYTOP
497 {
498 .procname = "latencytop",
499 .data = &latencytop_enabled,
500 .maxlen = sizeof(int),
501 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800502 .proc_handler = proc_dointvec,
Arjan van de Ven97455122008-01-25 21:08:34 +0100503 },
504#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505#ifdef CONFIG_BLK_DEV_INITRD
506 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 .procname = "real-root-dev",
508 .data = &real_root_dev,
509 .maxlen = sizeof(int),
510 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800511 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 },
513#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700514 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700515 .procname = "print-fatal-signals",
516 .data = &print_fatal_signals,
517 .maxlen = sizeof(int),
518 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800519 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700520 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700521#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 .procname = "reboot-cmd",
524 .data = reboot_command,
525 .maxlen = 256,
526 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800527 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 },
529 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 .procname = "stop-a",
531 .data = &stop_a_enabled,
532 .maxlen = sizeof (int),
533 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800534 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 },
536 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 .procname = "scons-poweroff",
538 .data = &scons_pwroff,
539 .maxlen = sizeof (int),
540 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800541 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 },
543#endif
David S. Miller08714202008-11-16 23:49:24 -0800544#ifdef CONFIG_SPARC64
545 {
David S. Miller08714202008-11-16 23:49:24 -0800546 .procname = "tsb-ratio",
547 .data = &sysctl_tsb_ratio,
548 .maxlen = sizeof (int),
549 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800550 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800551 },
552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#ifdef __hppa__
554 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 .procname = "soft-power",
556 .data = &pwrsw_enabled,
557 .maxlen = sizeof (int),
558 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800559 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530561#endif
562#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .procname = "unaligned-trap",
565 .data = &unaligned_enabled,
566 .maxlen = sizeof (int),
567 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800568 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 },
570#endif
571 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 .procname = "ctrl-alt-del",
573 .data = &C_A_D,
574 .maxlen = sizeof(int),
575 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800576 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400578#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200579 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200580 .procname = "ftrace_enabled",
581 .data = &ftrace_enabled,
582 .maxlen = sizeof(int),
583 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800584 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200585 },
586#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500587#ifdef CONFIG_STACK_TRACER
588 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500589 .procname = "stack_tracer_enabled",
590 .data = &stack_tracer_enabled,
591 .maxlen = sizeof(int),
592 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800593 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500594 },
595#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400596#ifdef CONFIG_TRACING
597 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100598 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400599 .data = &ftrace_dump_on_oops,
600 .maxlen = sizeof(int),
601 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800602 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400603 },
604#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200605#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .procname = "modprobe",
608 .data = &modprobe_path,
609 .maxlen = KMOD_PATH_LEN,
610 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800611 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 },
Kees Cook3d433212009-04-02 15:49:29 -0700613 {
Kees Cook3d433212009-04-02 15:49:29 -0700614 .procname = "modules_disabled",
615 .data = &modules_disabled,
616 .maxlen = sizeof(int),
617 .mode = 0644,
618 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800619 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700620 .extra1 = &one,
621 .extra2 = &one,
622 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#endif
Bill Pemberton3b572b52012-11-19 13:19:29 -0500624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100627 .data = &uevent_helper,
628 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800630 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 },
Bill Pemberton3b572b52012-11-19 13:19:29 -0500632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633#ifdef CONFIG_CHR_DEV_SG
634 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 .procname = "sg-big-buff",
636 .data = &sg_big_buff,
637 .maxlen = sizeof (int),
638 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800639 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 },
641#endif
642#ifdef CONFIG_BSD_PROCESS_ACCT
643 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 .procname = "acct",
645 .data = &acct_parm,
646 .maxlen = 3*sizeof(int),
647 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800648 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 },
650#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#ifdef CONFIG_MAGIC_SYSRQ
652 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800654 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 .maxlen = sizeof (int),
656 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700657 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 },
659#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700660#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700663 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 .maxlen = sizeof (int),
665 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800666 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700668#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 .procname = "threads-max",
671 .data = &max_threads,
672 .maxlen = sizeof(int),
673 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800674 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 },
676 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 .procname = "random",
678 .mode = 0555,
679 .child = random_table,
680 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 {
Eric Paris17f60a72011-04-01 17:07:50 -0400682 .procname = "usermodehelper",
683 .mode = 0555,
684 .child = usermodehelper_table,
685 },
686 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 .procname = "overflowuid",
688 .data = &overflowuid,
689 .maxlen = sizeof(int),
690 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800691 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 .extra1 = &minolduid,
693 .extra2 = &maxolduid,
694 },
695 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 .procname = "overflowgid",
697 .data = &overflowgid,
698 .maxlen = sizeof(int),
699 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800700 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 .extra1 = &minolduid,
702 .extra2 = &maxolduid,
703 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800704#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#ifdef CONFIG_MATHEMU
706 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 .procname = "ieee_emulation_warnings",
708 .data = &sysctl_ieee_emulation_warnings,
709 .maxlen = sizeof(int),
710 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800711 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 },
713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200716 .data = &show_unhandled_signals,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 .maxlen = sizeof(int),
718 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800719 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 },
721#endif
722 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .procname = "pid_max",
724 .data = &pid_max,
725 .maxlen = sizeof (int),
726 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800727 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .extra1 = &pid_max_min,
729 .extra2 = &pid_max_max,
730 },
731 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 .procname = "panic_on_oops",
733 .data = &panic_on_oops,
734 .maxlen = sizeof(int),
735 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800736 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800738#if defined CONFIG_PRINTK
739 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800740 .procname = "printk",
741 .data = &console_loglevel,
742 .maxlen = 4*sizeof(int),
743 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800744 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800745 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700748 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 .maxlen = sizeof(int),
750 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800751 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 },
753 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700755 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 .maxlen = sizeof(int),
757 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800758 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 },
Dave Youngaf913222009-09-22 16:43:33 -0700760 {
Dave Youngaf913222009-09-22 16:43:33 -0700761 .procname = "printk_delay",
762 .data = &printk_delay_msec,
763 .maxlen = sizeof(int),
764 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800765 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700766 .extra1 = &zero,
767 .extra2 = &ten_thousand,
768 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800770 .procname = "dmesg_restrict",
771 .data = &dmesg_restrict,
772 .maxlen = sizeof(int),
773 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700774 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800775 .extra1 = &zero,
776 .extra2 = &one,
777 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800778 {
779 .procname = "kptr_restrict",
780 .data = &kptr_restrict,
781 .maxlen = sizeof(int),
782 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700783 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800784 .extra1 = &zero,
785 .extra2 = &two,
786 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800787#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800788 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 .procname = "ngroups_max",
790 .data = &ngroups_max,
791 .maxlen = sizeof (int),
792 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800793 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 },
Dan Ballard73efc032011-10-31 17:11:20 -0700795 {
796 .procname = "cap_last_cap",
797 .data = (void *)&cap_last_cap,
798 .maxlen = sizeof(int),
799 .mode = 0444,
800 .proc_handler = proc_dointvec,
801 },
Don Zickus58687ac2010-05-07 17:11:44 -0400802#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500803 {
Don Zickus58687ac2010-05-07 17:11:44 -0400804 .procname = "watchdog",
805 .data = &watchdog_enabled,
Don Zickus504d7cf2010-02-12 17:19:19 -0500806 .maxlen = sizeof (int),
807 .mode = 0644,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700808 .proc_handler = proc_dowatchdog,
809 .extra1 = &zero,
810 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400811 },
812 {
813 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700814 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400815 .maxlen = sizeof(int),
816 .mode = 0644,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700817 .proc_handler = proc_dowatchdog,
Don Zickus58687ac2010-05-07 17:11:44 -0400818 .extra1 = &neg_one,
819 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500820 },
Don Zickus2508ce12010-05-07 17:11:46 -0400821 {
822 .procname = "softlockup_panic",
823 .data = &softlockup_panic,
824 .maxlen = sizeof(int),
825 .mode = 0644,
826 .proc_handler = proc_dointvec_minmax,
827 .extra1 = &zero,
828 .extra2 = &one,
829 },
Don Zickus5dc30552010-11-29 17:07:17 -0500830 {
831 .procname = "nmi_watchdog",
832 .data = &watchdog_enabled,
833 .maxlen = sizeof (int),
834 .mode = 0644,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700835 .proc_handler = proc_dowatchdog,
836 .extra1 = &zero,
837 .extra2 = &one,
Don Zickus5dc30552010-11-29 17:07:17 -0500838 },
839#endif
840#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
841 {
842 .procname = "unknown_nmi_panic",
843 .data = &unknown_nmi_panic,
844 .maxlen = sizeof (int),
845 .mode = 0644,
846 .proc_handler = proc_dointvec,
847 },
Don Zickus504d7cf2010-02-12 17:19:19 -0500848#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#if defined(CONFIG_X86)
850 {
Don Zickus8da5add2006-09-26 10:52:27 +0200851 .procname = "panic_on_unrecovered_nmi",
852 .data = &panic_on_unrecovered_nmi,
853 .maxlen = sizeof(int),
854 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800855 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200856 },
857 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700858 .procname = "panic_on_io_nmi",
859 .data = &panic_on_io_nmi,
860 .maxlen = sizeof(int),
861 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800862 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700863 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +0900864#ifdef CONFIG_DEBUG_STACKOVERFLOW
865 {
866 .procname = "panic_on_stackoverflow",
867 .data = &sysctl_panic_on_stackoverflow,
868 .maxlen = sizeof(int),
869 .mode = 0644,
870 .proc_handler = proc_dointvec,
871 },
872#endif
Kurt Garloff5211a242009-06-24 14:32:11 -0700873 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 .procname = "bootloader_type",
875 .data = &bootloader_type,
876 .maxlen = sizeof (int),
877 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800878 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100880 {
H. Peter Anvin50312962009-05-07 16:54:11 -0700881 .procname = "bootloader_version",
882 .data = &bootloader_version,
883 .maxlen = sizeof (int),
884 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800885 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -0700886 },
887 {
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100888 .procname = "kstack_depth_to_print",
889 .data = &kstack_depth_to_print,
890 .maxlen = sizeof(int),
891 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800892 .proc_handler = proc_dointvec,
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100893 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100894 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100895 .procname = "io_delay_type",
896 .data = &io_delay_type,
897 .maxlen = sizeof(int),
898 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800899 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100900 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800902#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 .procname = "randomize_va_space",
905 .data = &randomize_va_space,
906 .maxlen = sizeof(int),
907 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800908 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800910#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800911#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700912 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700913 .procname = "spin_retry",
914 .data = &spin_retry,
915 .maxlen = sizeof (int),
916 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800917 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700918 },
919#endif
Len Brown673d5b42007-07-28 03:33:16 -0400920#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800921 {
Pavel Machekc255d842006-02-20 18:27:58 -0800922 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700923 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800924 .maxlen = sizeof (unsigned long),
925 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800926 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800927 },
928#endif
Vineet Guptab6fca722013-01-09 20:06:28 +0530929#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -0800930 {
Jes Sorensend2b176e2006-02-28 09:42:23 -0800931 .procname = "ignore-unaligned-usertrap",
932 .data = &no_unaligned_warning,
933 .maxlen = sizeof (int),
934 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800935 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -0800936 },
Vineet Guptab6fca722013-01-09 20:06:28 +0530937#endif
938#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800939 {
Doug Chapman88fc2412009-01-15 10:38:56 -0800940 .procname = "unaligned-dump-stack",
941 .data = &unaligned_dump_stack,
942 .maxlen = sizeof (int),
943 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800944 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -0800945 },
Jes Sorensend2b176e2006-02-28 09:42:23 -0800946#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800947#ifdef CONFIG_DETECT_HUNG_TASK
948 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800949 .procname = "hung_task_panic",
950 .data = &sysctl_hung_task_panic,
951 .maxlen = sizeof(int),
952 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800953 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800954 .extra1 = &zero,
955 .extra2 = &one,
956 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100957 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100958 .procname = "hung_task_check_count",
959 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100960 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100961 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800962 .proc_handler = proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100963 },
964 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100965 .procname = "hung_task_timeout_secs",
966 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100967 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100968 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800969 .proc_handler = proc_dohung_task_timeout_secs,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100970 },
971 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100972 .procname = "hung_task_warnings",
973 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100974 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100975 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800976 .proc_handler = proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100977 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700978#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200979#ifdef CONFIG_COMPAT
980 {
Andi Kleenbebfa102006-06-26 13:56:52 +0200981 .procname = "compat-log",
982 .data = &compat_log,
983 .maxlen = sizeof (int),
984 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800985 .proc_handler = proc_dointvec,
Andi Kleenbebfa102006-06-26 13:56:52 +0200986 },
987#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700988#ifdef CONFIG_RT_MUTEXES
989 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700990 .procname = "max_lock_depth",
991 .data = &max_lock_depth,
992 .maxlen = sizeof(int),
993 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800994 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700995 },
996#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700997 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700998 .procname = "poweroff_cmd",
999 .data = &poweroff_cmd,
1000 .maxlen = POWEROFF_CMD_PATH_LEN,
1001 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001002 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001003 },
David Howells0b77f5b2008-04-29 01:01:32 -07001004#ifdef CONFIG_KEYS
1005 {
David Howells0b77f5b2008-04-29 01:01:32 -07001006 .procname = "keys",
1007 .mode = 0555,
1008 .child = key_sysctls,
1009 },
1010#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -07001011#ifdef CONFIG_RCU_TORTURE_TEST
1012 {
Paul E. McKenney31a72bc2008-06-18 09:26:49 -07001013 .procname = "rcutorture_runnable",
1014 .data = &rcutorture_runnable,
1015 .maxlen = sizeof(int),
1016 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001017 .proc_handler = proc_dointvec,
Paul E. McKenney31a72bc2008-06-18 09:26:49 -07001018 },
1019#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001020#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001021 /*
1022 * User-space scripts rely on the existence of this file
1023 * as a feature check for perf_events being enabled.
1024 *
1025 * So it's an ABI, do not remove!
1026 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001027 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001028 .procname = "perf_event_paranoid",
1029 .data = &sysctl_perf_event_paranoid,
1030 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001031 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001032 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001033 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001034 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001035 .procname = "perf_event_mlock_kb",
1036 .data = &sysctl_perf_event_mlock,
1037 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001038 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001039 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001040 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001041 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001042 .procname = "perf_event_max_sample_rate",
1043 .data = &sysctl_perf_event_sample_rate,
1044 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001045 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001046 .proc_handler = perf_proc_update_handler,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001047 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001048#endif
Vegard Nossumdfec0722008-04-04 00:51:41 +02001049#ifdef CONFIG_KMEMCHECK
1050 {
Vegard Nossumdfec0722008-04-04 00:51:41 +02001051 .procname = "kmemcheck",
1052 .data = &kmemcheck_enabled,
1053 .maxlen = sizeof(int),
1054 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001055 .proc_handler = proc_dointvec,
Vegard Nossumdfec0722008-04-04 00:51:41 +02001056 },
1057#endif
Jens Axboecb684b52009-09-15 21:53:11 +02001058#ifdef CONFIG_BLOCK
Jens Axboe5e605b62009-08-05 09:07:21 +02001059 {
Jens Axboe5e605b62009-08-05 09:07:21 +02001060 .procname = "blk_iopoll",
1061 .data = &blk_iopoll_enabled,
1062 .maxlen = sizeof(int),
1063 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001064 .proc_handler = proc_dointvec,
Jens Axboe5e605b62009-08-05 09:07:21 +02001065 },
Jens Axboecb684b52009-09-15 21:53:11 +02001066#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001067 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068};
1069
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001070static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .procname = "overcommit_memory",
1073 .data = &sysctl_overcommit_memory,
1074 .maxlen = sizeof(sysctl_overcommit_memory),
1075 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001076 .proc_handler = proc_dointvec_minmax,
1077 .extra1 = &zero,
1078 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 },
1080 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001081 .procname = "panic_on_oom",
1082 .data = &sysctl_panic_on_oom,
1083 .maxlen = sizeof(sysctl_panic_on_oom),
1084 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001085 .proc_handler = proc_dointvec_minmax,
1086 .extra1 = &zero,
1087 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001088 },
1089 {
David Rientjesfe071d72007-10-16 23:25:56 -07001090 .procname = "oom_kill_allocating_task",
1091 .data = &sysctl_oom_kill_allocating_task,
1092 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1093 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001094 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001095 },
1096 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001097 .procname = "oom_dump_tasks",
1098 .data = &sysctl_oom_dump_tasks,
1099 .maxlen = sizeof(sysctl_oom_dump_tasks),
1100 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001101 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001102 },
1103 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 .procname = "overcommit_ratio",
1105 .data = &sysctl_overcommit_ratio,
1106 .maxlen = sizeof(sysctl_overcommit_ratio),
1107 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001108 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 },
1110 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 .procname = "page-cluster",
1112 .data = &page_cluster,
1113 .maxlen = sizeof(int),
1114 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001115 .proc_handler = proc_dointvec_minmax,
1116 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 },
1118 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 .procname = "dirty_background_ratio",
1120 .data = &dirty_background_ratio,
1121 .maxlen = sizeof(dirty_background_ratio),
1122 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001123 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 .extra1 = &zero,
1125 .extra2 = &one_hundred,
1126 },
1127 {
David Rientjes2da02992009-01-06 14:39:31 -08001128 .procname = "dirty_background_bytes",
1129 .data = &dirty_background_bytes,
1130 .maxlen = sizeof(dirty_background_bytes),
1131 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001132 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001133 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001134 },
1135 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 .procname = "dirty_ratio",
1137 .data = &vm_dirty_ratio,
1138 .maxlen = sizeof(vm_dirty_ratio),
1139 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001140 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 .extra1 = &zero,
1142 .extra2 = &one_hundred,
1143 },
1144 {
David Rientjes2da02992009-01-06 14:39:31 -08001145 .procname = "dirty_bytes",
1146 .data = &vm_dirty_bytes,
1147 .maxlen = sizeof(vm_dirty_bytes),
1148 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001149 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001150 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001151 },
1152 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001154 .data = &dirty_writeback_interval,
1155 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001157 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 },
1159 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001161 .data = &dirty_expire_interval,
1162 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001164 .proc_handler = proc_dointvec_minmax,
1165 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 },
1167 {
Wanpeng Li3965c9a2012-07-31 16:41:52 -07001168 .procname = "nr_pdflush_threads",
1169 .mode = 0444 /* read-only */,
1170 .proc_handler = pdflush_proc_obsolete,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 },
1172 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 .procname = "swappiness",
1174 .data = &vm_swappiness,
1175 .maxlen = sizeof(vm_swappiness),
1176 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001177 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 .extra1 = &zero,
1179 .extra2 = &one_hundred,
1180 },
1181#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001182 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001184 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 .maxlen = sizeof(unsigned long),
1186 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001187 .proc_handler = hugetlb_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 .extra1 = (void *)&hugetlb_zero,
1189 .extra2 = (void *)&hugetlb_infinity,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001190 },
1191#ifdef CONFIG_NUMA
1192 {
1193 .procname = "nr_hugepages_mempolicy",
1194 .data = NULL,
1195 .maxlen = sizeof(unsigned long),
1196 .mode = 0644,
1197 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
1198 .extra1 = (void *)&hugetlb_zero,
1199 .extra2 = (void *)&hugetlb_infinity,
1200 },
1201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 .procname = "hugetlb_shm_group",
1204 .data = &sysctl_hugetlb_shm_group,
1205 .maxlen = sizeof(gid_t),
1206 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001207 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 },
Mel Gorman396faf02007-07-17 04:03:13 -07001209 {
Mel Gorman396faf02007-07-17 04:03:13 -07001210 .procname = "hugepages_treat_as_movable",
1211 .data = &hugepages_treat_as_movable,
1212 .maxlen = sizeof(int),
1213 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001214 .proc_handler = hugetlb_treat_movable_handler,
Mel Gorman396faf02007-07-17 04:03:13 -07001215 },
Adam Litke54f9f802007-10-16 01:26:20 -07001216 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001217 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001218 .data = NULL,
1219 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001220 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001221 .proc_handler = hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -07001222 .extra1 = (void *)&hugetlb_zero,
1223 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001224 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225#endif
1226 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 .procname = "lowmem_reserve_ratio",
1228 .data = &sysctl_lowmem_reserve_ratio,
1229 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1230 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001231 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 },
1233 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001234 .procname = "drop_caches",
1235 .data = &sysctl_drop_caches,
1236 .maxlen = sizeof(int),
1237 .mode = 0644,
1238 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001239 .extra1 = &one,
1240 .extra2 = &three,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001241 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001242#ifdef CONFIG_COMPACTION
1243 {
1244 .procname = "compact_memory",
1245 .data = &sysctl_compact_memory,
1246 .maxlen = sizeof(int),
1247 .mode = 0200,
1248 .proc_handler = sysctl_compaction_handler,
1249 },
Mel Gorman5e771902010-05-24 14:32:31 -07001250 {
1251 .procname = "extfrag_threshold",
1252 .data = &sysctl_extfrag_threshold,
1253 .maxlen = sizeof(int),
1254 .mode = 0644,
1255 .proc_handler = sysctl_extfrag_handler,
1256 .extra1 = &min_extfrag_threshold,
1257 .extra2 = &max_extfrag_threshold,
1258 },
1259
Mel Gorman76ab0f52010-05-24 14:32:28 -07001260#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001261 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 .procname = "min_free_kbytes",
1263 .data = &min_free_kbytes,
1264 .maxlen = sizeof(min_free_kbytes),
1265 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001266 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .extra1 = &zero,
1268 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001269 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001270 .procname = "percpu_pagelist_fraction",
1271 .data = &percpu_pagelist_fraction,
1272 .maxlen = sizeof(percpu_pagelist_fraction),
1273 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001274 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001275 .extra1 = &min_percpu_pagelist_fract,
1276 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277#ifdef CONFIG_MMU
1278 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 .procname = "max_map_count",
1280 .data = &sysctl_max_map_count,
1281 .maxlen = sizeof(sysctl_max_map_count),
1282 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001283 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001284 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001286#else
1287 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001288 .procname = "nr_trim_pages",
1289 .data = &sysctl_nr_trim_pages,
1290 .maxlen = sizeof(sysctl_nr_trim_pages),
1291 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001292 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001293 .extra1 = &zero,
1294 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295#endif
1296 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 .procname = "laptop_mode",
1298 .data = &laptop_mode,
1299 .maxlen = sizeof(laptop_mode),
1300 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001301 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 },
1303 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 .procname = "block_dump",
1305 .data = &block_dump,
1306 .maxlen = sizeof(block_dump),
1307 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001308 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .extra1 = &zero,
1310 },
1311 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 .procname = "vfs_cache_pressure",
1313 .data = &sysctl_vfs_cache_pressure,
1314 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1315 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001316 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 .extra1 = &zero,
1318 },
1319#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1320 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 .procname = "legacy_va_layout",
1322 .data = &sysctl_legacy_va_layout,
1323 .maxlen = sizeof(sysctl_legacy_va_layout),
1324 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001325 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .extra1 = &zero,
1327 },
1328#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001329#ifdef CONFIG_NUMA
1330 {
Christoph Lameter17436602006-01-18 17:42:32 -08001331 .procname = "zone_reclaim_mode",
1332 .data = &zone_reclaim_mode,
1333 .maxlen = sizeof(zone_reclaim_mode),
1334 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001335 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001336 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001337 },
Christoph Lameter96146342006-07-03 00:24:13 -07001338 {
Christoph Lameter96146342006-07-03 00:24:13 -07001339 .procname = "min_unmapped_ratio",
1340 .data = &sysctl_min_unmapped_ratio,
1341 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1342 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001343 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001344 .extra1 = &zero,
1345 .extra2 = &one_hundred,
1346 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001347 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001348 .procname = "min_slab_ratio",
1349 .data = &sysctl_min_slab_ratio,
1350 .maxlen = sizeof(sysctl_min_slab_ratio),
1351 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001352 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001353 .extra1 = &zero,
1354 .extra2 = &one_hundred,
1355 },
Christoph Lameter17436602006-01-18 17:42:32 -08001356#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001357#ifdef CONFIG_SMP
1358 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001359 .procname = "stat_interval",
1360 .data = &sysctl_stat_interval,
1361 .maxlen = sizeof(sysctl_stat_interval),
1362 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001363 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001364 },
1365#endif
David Howells6e141542009-12-15 19:27:45 +00001366#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001367 {
Eric Parised032182007-06-28 15:55:21 -04001368 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001369 .data = &dac_mmap_min_addr,
1370 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001371 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001372 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001373 },
David Howells6e141542009-12-15 19:27:45 +00001374#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001375#ifdef CONFIG_NUMA
1376 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001377 .procname = "numa_zonelist_order",
1378 .data = &numa_zonelist_order,
1379 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1380 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001381 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001382 },
1383#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001384#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001385 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001386 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001387 .procname = "vdso_enabled",
1388 .data = &vdso_enabled,
1389 .maxlen = sizeof(vdso_enabled),
1390 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001391 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001392 .extra1 = &zero,
1393 },
1394#endif
Bron Gondwana195cf452008-02-04 22:29:20 -08001395#ifdef CONFIG_HIGHMEM
1396 {
Bron Gondwana195cf452008-02-04 22:29:20 -08001397 .procname = "highmem_is_dirtyable",
1398 .data = &vm_highmem_is_dirtyable,
1399 .maxlen = sizeof(vm_highmem_is_dirtyable),
1400 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001401 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf452008-02-04 22:29:20 -08001402 .extra1 = &zero,
1403 .extra2 = &one,
1404 },
1405#endif
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001406 {
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001407 .procname = "scan_unevictable_pages",
1408 .data = &scan_unevictable_pages,
1409 .maxlen = sizeof(scan_unevictable_pages),
1410 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001411 .proc_handler = scan_unevictable_handler,
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001412 },
Andi Kleen6a460792009-09-16 11:50:15 +02001413#ifdef CONFIG_MEMORY_FAILURE
1414 {
Andi Kleen6a460792009-09-16 11:50:15 +02001415 .procname = "memory_failure_early_kill",
1416 .data = &sysctl_memory_failure_early_kill,
1417 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1418 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001419 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001420 .extra1 = &zero,
1421 .extra2 = &one,
1422 },
1423 {
Andi Kleen6a460792009-09-16 11:50:15 +02001424 .procname = "memory_failure_recovery",
1425 .data = &sysctl_memory_failure_recovery,
1426 .maxlen = sizeof(sysctl_memory_failure_recovery),
1427 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001428 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001429 .extra1 = &zero,
1430 .extra2 = &one,
1431 },
1432#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001433 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434};
1435
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001436#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001437static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001438 { }
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001439};
1440#endif
1441
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001442static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 .procname = "inode-nr",
1445 .data = &inodes_stat,
1446 .maxlen = 2*sizeof(int),
1447 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001448 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 },
1450 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .procname = "inode-state",
1452 .data = &inodes_stat,
1453 .maxlen = 7*sizeof(int),
1454 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001455 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 },
1457 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 .procname = "file-nr",
1459 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001460 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001462 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 },
1464 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 .procname = "file-max",
1466 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001467 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001469 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 },
1471 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001472 .procname = "nr_open",
1473 .data = &sysctl_nr_open,
1474 .maxlen = sizeof(int),
1475 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001476 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001477 .extra1 = &sysctl_nr_open_min,
1478 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001479 },
1480 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 .procname = "dentry-state",
1482 .data = &dentry_stat,
1483 .maxlen = 6*sizeof(int),
1484 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001485 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 },
1487 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 .procname = "overflowuid",
1489 .data = &fs_overflowuid,
1490 .maxlen = sizeof(int),
1491 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001492 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 .extra1 = &minolduid,
1494 .extra2 = &maxolduid,
1495 },
1496 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .procname = "overflowgid",
1498 .data = &fs_overflowgid,
1499 .maxlen = sizeof(int),
1500 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001501 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .extra1 = &minolduid,
1503 .extra2 = &maxolduid,
1504 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001505#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 .procname = "leases-enable",
1508 .data = &leases_enable,
1509 .maxlen = sizeof(int),
1510 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001511 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001513#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514#ifdef CONFIG_DNOTIFY
1515 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 .procname = "dir-notify-enable",
1517 .data = &dir_notify_enable,
1518 .maxlen = sizeof(int),
1519 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001520 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 },
1522#endif
1523#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001524#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 .procname = "lease-break-time",
1527 .data = &lease_break_time,
1528 .maxlen = sizeof(int),
1529 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001530 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001532#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001533#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 .procname = "aio-nr",
1536 .data = &aio_nr,
1537 .maxlen = sizeof(aio_nr),
1538 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001539 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 },
1541 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 .procname = "aio-max-nr",
1543 .data = &aio_max_nr,
1544 .maxlen = sizeof(aio_max_nr),
1545 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001546 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001548#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001549#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001550 {
Robert Love0399cb02005-07-13 12:38:18 -04001551 .procname = "inotify",
1552 .mode = 0555,
1553 .child = inotify_table,
1554 },
1555#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001556#ifdef CONFIG_EPOLL
1557 {
1558 .procname = "epoll",
1559 .mode = 0555,
1560 .child = epoll_table,
1561 },
1562#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001564 {
Kees Cook800179c2012-07-25 17:29:07 -07001565 .procname = "protected_symlinks",
1566 .data = &sysctl_protected_symlinks,
1567 .maxlen = sizeof(int),
1568 .mode = 0600,
1569 .proc_handler = proc_dointvec_minmax,
1570 .extra1 = &zero,
1571 .extra2 = &one,
1572 },
1573 {
1574 .procname = "protected_hardlinks",
1575 .data = &sysctl_protected_hardlinks,
1576 .maxlen = sizeof(int),
1577 .mode = 0600,
1578 .proc_handler = proc_dointvec_minmax,
1579 .extra1 = &zero,
1580 .extra2 = &one,
1581 },
1582 {
Alan Coxd6e71142005-06-23 00:09:43 -07001583 .procname = "suid_dumpable",
1584 .data = &suid_dumpable,
1585 .maxlen = sizeof(int),
1586 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001587 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001588 .extra1 = &zero,
1589 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001590 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001591#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1592 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001593 .procname = "binfmt_misc",
1594 .mode = 0555,
1595 .child = binfmt_misc_table,
1596 },
1597#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001598 {
Jens Axboeff9da692010-06-03 14:54:39 +02001599 .procname = "pipe-max-size",
1600 .data = &pipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001601 .maxlen = sizeof(int),
1602 .mode = 0644,
Jens Axboeff9da692010-06-03 14:54:39 +02001603 .proc_handler = &pipe_proc_fn,
1604 .extra1 = &pipe_min_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001605 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001606 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607};
1608
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001609static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001610#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001611 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001612 .procname = "exception-trace",
1613 .data = &show_unhandled_signals,
1614 .maxlen = sizeof(int),
1615 .mode = 0644,
1616 .proc_handler = proc_dointvec
1617 },
1618#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001619#if defined(CONFIG_OPTPROBES)
1620 {
1621 .procname = "kprobes-optimization",
1622 .data = &sysctl_kprobes_optimization,
1623 .maxlen = sizeof(int),
1624 .mode = 0644,
1625 .proc_handler = proc_kprobes_optimization_handler,
1626 .extra1 = &zero,
1627 .extra2 = &one,
1628 },
1629#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001630 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631};
1632
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001633static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001634 { }
Robert Love0eeca282005-07-12 17:06:03 -04001635};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001637int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001638{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001639 struct ctl_table_header *hdr;
1640
1641 hdr = register_sysctl_table(sysctl_base_table);
1642 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001643 return 0;
1644}
1645
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001646#endif /* CONFIG_SYSCTL */
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648/*
1649 * /proc/sys support
1650 */
1651
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001652#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001654static int _proc_do_string(void* data, int maxlen, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001655 void __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001656 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001657{
1658 size_t len;
1659 char __user *p;
1660 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001661
1662 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001663 *lenp = 0;
1664 return 0;
1665 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001666
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001667 if (write) {
1668 len = 0;
1669 p = buffer;
1670 while (len < *lenp) {
1671 if (get_user(c, p++))
1672 return -EFAULT;
1673 if (c == 0 || c == '\n')
1674 break;
1675 len++;
1676 }
1677 if (len >= maxlen)
1678 len = maxlen-1;
1679 if(copy_from_user(data, buffer, len))
1680 return -EFAULT;
1681 ((char *) data)[len] = 0;
1682 *ppos += *lenp;
1683 } else {
1684 len = strlen(data);
1685 if (len > maxlen)
1686 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001687
1688 if (*ppos > len) {
1689 *lenp = 0;
1690 return 0;
1691 }
1692
1693 data += *ppos;
1694 len -= *ppos;
1695
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001696 if (len > *lenp)
1697 len = *lenp;
1698 if (len)
1699 if(copy_to_user(buffer, data, len))
1700 return -EFAULT;
1701 if (len < *lenp) {
1702 if(put_user('\n', ((char __user *) buffer) + len))
1703 return -EFAULT;
1704 len++;
1705 }
1706 *lenp = len;
1707 *ppos += len;
1708 }
1709 return 0;
1710}
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712/**
1713 * proc_dostring - read a string sysctl
1714 * @table: the sysctl table
1715 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 * @buffer: the user buffer
1717 * @lenp: the size of the user buffer
1718 * @ppos: file position
1719 *
1720 * Reads/writes a string from/to the user buffer. If the kernel
1721 * buffer provided is not large enough to hold the string, the
1722 * string is truncated. The copied string is %NULL-terminated.
1723 * If the string is being read by the user process, it is copied
1724 * and a newline '\n' is added. It is truncated if the buffer is
1725 * not large enough.
1726 *
1727 * Returns 0 on success.
1728 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001729int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 void __user *buffer, size_t *lenp, loff_t *ppos)
1731{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001732 return _proc_do_string(table->data, table->maxlen, write,
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001733 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734}
1735
Amerigo Wang00b7c332010-05-05 00:26:45 +00001736static size_t proc_skip_spaces(char **buf)
1737{
1738 size_t ret;
1739 char *tmp = skip_spaces(*buf);
1740 ret = tmp - *buf;
1741 *buf = tmp;
1742 return ret;
1743}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Octavian Purdila9f977fb2010-05-05 00:26:55 +00001745static void proc_skip_char(char **buf, size_t *size, const char v)
1746{
1747 while (*size) {
1748 if (**buf != v)
1749 break;
1750 (*size)--;
1751 (*buf)++;
1752 }
1753}
1754
Amerigo Wang00b7c332010-05-05 00:26:45 +00001755#define TMPBUFLEN 22
1756/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001757 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00001758 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001759 * @buf: a kernel buffer
1760 * @size: size of the kernel buffer
1761 * @val: this is where the number will be stored
1762 * @neg: set to %TRUE if number is negative
1763 * @perm_tr: a vector which contains the allowed trailers
1764 * @perm_tr_len: size of the perm_tr vector
1765 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00001766 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001767 * In case of success %0 is returned and @buf and @size are updated with
1768 * the amount of bytes read. If @tr is non-NULL and a trailing
1769 * character exists (size is non-zero after returning from this
1770 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00001771 */
1772static int proc_get_long(char **buf, size_t *size,
1773 unsigned long *val, bool *neg,
1774 const char *perm_tr, unsigned perm_tr_len, char *tr)
1775{
1776 int len;
1777 char *p, tmp[TMPBUFLEN];
1778
1779 if (!*size)
1780 return -EINVAL;
1781
1782 len = *size;
1783 if (len > TMPBUFLEN - 1)
1784 len = TMPBUFLEN - 1;
1785
1786 memcpy(tmp, *buf, len);
1787
1788 tmp[len] = 0;
1789 p = tmp;
1790 if (*p == '-' && *size > 1) {
1791 *neg = true;
1792 p++;
1793 } else
1794 *neg = false;
1795 if (!isdigit(*p))
1796 return -EINVAL;
1797
1798 *val = simple_strtoul(p, &p, 0);
1799
1800 len = p - tmp;
1801
1802 /* We don't know if the next char is whitespace thus we may accept
1803 * invalid integers (e.g. 1234...a) or two integers instead of one
1804 * (e.g. 123...1). So lets not allow such large numbers. */
1805 if (len == TMPBUFLEN - 1)
1806 return -EINVAL;
1807
1808 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
1809 return -EINVAL;
1810
1811 if (tr && (len < *size))
1812 *tr = *p;
1813
1814 *buf += len;
1815 *size -= len;
1816
1817 return 0;
1818}
1819
1820/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001821 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00001822 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001823 * @buf: the user buffer
1824 * @size: the size of the user buffer
1825 * @val: the integer to be converted
1826 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00001827 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001828 * In case of success %0 is returned and @buf and @size are updated with
1829 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00001830 */
1831static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
1832 bool neg)
1833{
1834 int len;
1835 char tmp[TMPBUFLEN], *p = tmp;
1836
1837 sprintf(p, "%s%lu", neg ? "-" : "", val);
1838 len = strlen(tmp);
1839 if (len > *size)
1840 len = *size;
1841 if (copy_to_user(*buf, tmp, len))
1842 return -EFAULT;
1843 *size -= len;
1844 *buf += len;
1845 return 0;
1846}
1847#undef TMPBUFLEN
1848
1849static int proc_put_char(void __user **buf, size_t *size, char c)
1850{
1851 if (*size) {
1852 char __user **buffer = (char __user **)buf;
1853 if (put_user(c, *buffer))
1854 return -EFAULT;
1855 (*size)--, (*buffer)++;
1856 *buf = *buffer;
1857 }
1858 return 0;
1859}
1860
1861static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 int *valp,
1863 int write, void *data)
1864{
1865 if (write) {
1866 *valp = *negp ? -*lvalp : *lvalp;
1867 } else {
1868 int val = *valp;
1869 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00001870 *negp = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 *lvalp = (unsigned long)-val;
1872 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00001873 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 *lvalp = (unsigned long)val;
1875 }
1876 }
1877 return 0;
1878}
1879
Amerigo Wang00b7c332010-05-05 00:26:45 +00001880static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
1881
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001882static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001883 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07001884 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00001885 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 int write, void *data),
1887 void *data)
1888{
Amerigo Wang00b7c332010-05-05 00:26:45 +00001889 int *i, vleft, first = 1, err = 0;
1890 unsigned long page = 0;
1891 size_t left;
1892 char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Amerigo Wang00b7c332010-05-05 00:26:45 +00001894 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 *lenp = 0;
1896 return 0;
1897 }
1898
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07001899 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 vleft = table->maxlen / sizeof(*i);
1901 left = *lenp;
1902
1903 if (!conv)
1904 conv = do_proc_dointvec_conv;
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00001907 if (left > PAGE_SIZE - 1)
1908 left = PAGE_SIZE - 1;
1909 page = __get_free_page(GFP_TEMPORARY);
1910 kbuf = (char *) page;
1911 if (!kbuf)
1912 return -ENOMEM;
1913 if (copy_from_user(kbuf, buffer, left)) {
1914 err = -EFAULT;
1915 goto free;
1916 }
1917 kbuf[left] = 0;
1918 }
1919
1920 for (; left && vleft--; i++, first=0) {
1921 unsigned long lval;
1922 bool neg;
1923
1924 if (write) {
1925 left -= proc_skip_spaces(&kbuf);
1926
J. R. Okajima563b0462010-05-25 16:10:14 -07001927 if (!left)
1928 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00001929 err = proc_get_long(&kbuf, &left, &lval, &neg,
1930 proc_wspace_sep,
1931 sizeof(proc_wspace_sep), NULL);
1932 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00001934 if (conv(&neg, &lval, i, 1, data)) {
1935 err = -EINVAL;
1936 break;
1937 }
1938 } else {
1939 if (conv(&neg, &lval, i, 0, data)) {
1940 err = -EINVAL;
1941 break;
1942 }
1943 if (!first)
1944 err = proc_put_char(&buffer, &left, '\t');
1945 if (err)
1946 break;
1947 err = proc_put_long(&buffer, &left, lval, neg);
1948 if (err)
1949 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00001952
1953 if (!write && !first && left && !err)
1954 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07001955 if (write && !err && left)
Amerigo Wang00b7c332010-05-05 00:26:45 +00001956 left -= proc_skip_spaces(&kbuf);
1957free:
1958 if (write) {
1959 free_page(page);
1960 if (first)
1961 return err ? : -EINVAL;
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 *lenp -= left;
1964 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00001965 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001968static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07001969 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00001970 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07001971 int write, void *data),
1972 void *data)
1973{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001974 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07001975 buffer, lenp, ppos, conv, data);
1976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/**
1979 * proc_dointvec - read a vector of integers
1980 * @table: the sysctl table
1981 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 * @buffer: the user buffer
1983 * @lenp: the size of the user buffer
1984 * @ppos: file position
1985 *
1986 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1987 * values from/to the user buffer, treated as an ASCII string.
1988 *
1989 * Returns 0 on success.
1990 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001991int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 void __user *buffer, size_t *lenp, loff_t *ppos)
1993{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001994 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 NULL,NULL);
1996}
1997
Theodore Ts'o34f5a392007-02-10 01:45:24 -08001998/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07001999 * Taint values can only be increased
2000 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002001 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002002static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002003 void __user *buffer, size_t *lenp, loff_t *ppos)
2004{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002005 struct ctl_table t;
2006 unsigned long tmptaint = get_taint();
2007 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002008
Bastian Blank91fcd412007-04-23 14:41:14 -07002009 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002010 return -EPERM;
2011
Andi Kleen25ddbb12008-10-15 22:01:41 -07002012 t = *table;
2013 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002014 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002015 if (err < 0)
2016 return err;
2017
2018 if (write) {
2019 /*
2020 * Poor man's atomic or. Not worth adding a primitive
2021 * to everyone's atomic.h for this
2022 */
2023 int i;
2024 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2025 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302026 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002027 }
2028 }
2029
2030 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002031}
2032
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002033#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002034static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002035 void __user *buffer, size_t *lenp, loff_t *ppos)
2036{
2037 if (write && !capable(CAP_SYS_ADMIN))
2038 return -EPERM;
2039
2040 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2041}
2042#endif
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044struct do_proc_dointvec_minmax_conv_param {
2045 int *min;
2046 int *max;
2047};
2048
Amerigo Wang00b7c332010-05-05 00:26:45 +00002049static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2050 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 int write, void *data)
2052{
2053 struct do_proc_dointvec_minmax_conv_param *param = data;
2054 if (write) {
2055 int val = *negp ? -*lvalp : *lvalp;
2056 if ((param->min && *param->min > val) ||
2057 (param->max && *param->max < val))
2058 return -EINVAL;
2059 *valp = val;
2060 } else {
2061 int val = *valp;
2062 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002063 *negp = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 *lvalp = (unsigned long)-val;
2065 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002066 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 *lvalp = (unsigned long)val;
2068 }
2069 }
2070 return 0;
2071}
2072
2073/**
2074 * proc_dointvec_minmax - read a vector of integers with min/max values
2075 * @table: the sysctl table
2076 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 * @buffer: the user buffer
2078 * @lenp: the size of the user buffer
2079 * @ppos: file position
2080 *
2081 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2082 * values from/to the user buffer, treated as an ASCII string.
2083 *
2084 * This routine will ensure the values are within the range specified by
2085 * table->extra1 (min) and table->extra2 (max).
2086 *
2087 * Returns 0 on success.
2088 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002089int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 void __user *buffer, size_t *lenp, loff_t *ppos)
2091{
2092 struct do_proc_dointvec_minmax_conv_param param = {
2093 .min = (int *) table->extra1,
2094 .max = (int *) table->extra2,
2095 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002096 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 do_proc_dointvec_minmax_conv, &param);
2098}
2099
Kees Cook54b50192012-07-30 14:39:18 -07002100static void validate_coredump_safety(void)
2101{
Alex Kelly046d6622012-10-04 17:15:23 -07002102#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002103 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002104 core_pattern[0] != '/' && core_pattern[0] != '|') {
2105 printk(KERN_WARNING "Unsafe core_pattern used with "\
2106 "suid_dumpable=2. Pipe handler or fully qualified "\
2107 "core dump path required.\n");
2108 }
Alex Kelly046d6622012-10-04 17:15:23 -07002109#endif
Kees Cook54b50192012-07-30 14:39:18 -07002110}
2111
2112static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2113 void __user *buffer, size_t *lenp, loff_t *ppos)
2114{
2115 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2116 if (!error)
2117 validate_coredump_safety();
2118 return error;
2119}
2120
Alex Kelly046d6622012-10-04 17:15:23 -07002121#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002122static int proc_dostring_coredump(struct ctl_table *table, int write,
2123 void __user *buffer, size_t *lenp, loff_t *ppos)
2124{
2125 int error = proc_dostring(table, write, buffer, lenp, ppos);
2126 if (!error)
2127 validate_coredump_safety();
2128 return error;
2129}
Alex Kelly046d6622012-10-04 17:15:23 -07002130#endif
Kees Cook54b50192012-07-30 14:39:18 -07002131
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002132static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 void __user *buffer,
2134 size_t *lenp, loff_t *ppos,
2135 unsigned long convmul,
2136 unsigned long convdiv)
2137{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002138 unsigned long *i, *min, *max;
2139 int vleft, first = 1, err = 0;
2140 unsigned long page = 0;
2141 size_t left;
2142 char *kbuf;
2143
2144 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 *lenp = 0;
2146 return 0;
2147 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002148
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002149 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 min = (unsigned long *) table->extra1;
2151 max = (unsigned long *) table->extra2;
2152 vleft = table->maxlen / sizeof(unsigned long);
2153 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002154
2155 if (write) {
2156 if (left > PAGE_SIZE - 1)
2157 left = PAGE_SIZE - 1;
2158 page = __get_free_page(GFP_TEMPORARY);
2159 kbuf = (char *) page;
2160 if (!kbuf)
2161 return -ENOMEM;
2162 if (copy_from_user(kbuf, buffer, left)) {
2163 err = -EFAULT;
2164 goto free;
2165 }
2166 kbuf[left] = 0;
2167 }
2168
Eric Dumazet27b3d802010-10-07 12:59:29 -07002169 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002170 unsigned long val;
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002173 bool neg;
2174
2175 left -= proc_skip_spaces(&kbuf);
2176
2177 err = proc_get_long(&kbuf, &left, &val, &neg,
2178 proc_wspace_sep,
2179 sizeof(proc_wspace_sep), NULL);
2180 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 break;
2182 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 continue;
2184 if ((min && val < *min) || (max && val > *max))
2185 continue;
2186 *i = val;
2187 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002188 val = convdiv * (*i) / convmul;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (!first)
Amerigo Wang00b7c332010-05-05 00:26:45 +00002190 err = proc_put_char(&buffer, &left, '\t');
2191 err = proc_put_long(&buffer, &left, val, false);
2192 if (err)
2193 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
2195 }
2196
Amerigo Wang00b7c332010-05-05 00:26:45 +00002197 if (!write && !first && left && !err)
2198 err = proc_put_char(&buffer, &left, '\n');
2199 if (write && !err)
2200 left -= proc_skip_spaces(&kbuf);
2201free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002203 free_page(page);
2204 if (first)
2205 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 *lenp -= left;
2208 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002209 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
2211
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002212static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002213 void __user *buffer,
2214 size_t *lenp, loff_t *ppos,
2215 unsigned long convmul,
2216 unsigned long convdiv)
2217{
2218 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002219 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002220}
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/**
2223 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2224 * @table: the sysctl table
2225 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 * @buffer: the user buffer
2227 * @lenp: the size of the user buffer
2228 * @ppos: file position
2229 *
2230 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2231 * values from/to the user buffer, treated as an ASCII string.
2232 *
2233 * This routine will ensure the values are within the range specified by
2234 * table->extra1 (min) and table->extra2 (max).
2235 *
2236 * Returns 0 on success.
2237 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002238int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 void __user *buffer, size_t *lenp, loff_t *ppos)
2240{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002241 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
2243
2244/**
2245 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2246 * @table: the sysctl table
2247 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 * @buffer: the user buffer
2249 * @lenp: the size of the user buffer
2250 * @ppos: file position
2251 *
2252 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2253 * values from/to the user buffer, treated as an ASCII string. The values
2254 * are treated as milliseconds, and converted to jiffies when they are stored.
2255 *
2256 * This routine will ensure the values are within the range specified by
2257 * table->extra1 (min) and table->extra2 (max).
2258 *
2259 * Returns 0 on success.
2260 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002261int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 void __user *buffer,
2263 size_t *lenp, loff_t *ppos)
2264{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002265 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 lenp, ppos, HZ, 1000l);
2267}
2268
2269
Amerigo Wang00b7c332010-05-05 00:26:45 +00002270static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 int *valp,
2272 int write, void *data)
2273{
2274 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002275 if (*lvalp > LONG_MAX / HZ)
2276 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2278 } else {
2279 int val = *valp;
2280 unsigned long lval;
2281 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002282 *negp = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 lval = (unsigned long)-val;
2284 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002285 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 lval = (unsigned long)val;
2287 }
2288 *lvalp = lval / HZ;
2289 }
2290 return 0;
2291}
2292
Amerigo Wang00b7c332010-05-05 00:26:45 +00002293static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 int *valp,
2295 int write, void *data)
2296{
2297 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002298 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2299 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2301 } else {
2302 int val = *valp;
2303 unsigned long lval;
2304 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002305 *negp = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 lval = (unsigned long)-val;
2307 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002308 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 lval = (unsigned long)val;
2310 }
2311 *lvalp = jiffies_to_clock_t(lval);
2312 }
2313 return 0;
2314}
2315
Amerigo Wang00b7c332010-05-05 00:26:45 +00002316static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 int *valp,
2318 int write, void *data)
2319{
2320 if (write) {
2321 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2322 } else {
2323 int val = *valp;
2324 unsigned long lval;
2325 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002326 *negp = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 lval = (unsigned long)-val;
2328 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002329 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 lval = (unsigned long)val;
2331 }
2332 *lvalp = jiffies_to_msecs(lval);
2333 }
2334 return 0;
2335}
2336
2337/**
2338 * proc_dointvec_jiffies - read a vector of integers as seconds
2339 * @table: the sysctl table
2340 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 * @buffer: the user buffer
2342 * @lenp: the size of the user buffer
2343 * @ppos: file position
2344 *
2345 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2346 * values from/to the user buffer, treated as an ASCII string.
2347 * The values read are assumed to be in seconds, and are converted into
2348 * jiffies.
2349 *
2350 * Returns 0 on success.
2351 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002352int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 void __user *buffer, size_t *lenp, loff_t *ppos)
2354{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002355 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 do_proc_dointvec_jiffies_conv,NULL);
2357}
2358
2359/**
2360 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2361 * @table: the sysctl table
2362 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 * @buffer: the user buffer
2364 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002365 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 *
2367 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2368 * values from/to the user buffer, treated as an ASCII string.
2369 * The values read are assumed to be in 1/USER_HZ seconds, and
2370 * are converted into jiffies.
2371 *
2372 * Returns 0 on success.
2373 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002374int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 void __user *buffer, size_t *lenp, loff_t *ppos)
2376{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002377 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 do_proc_dointvec_userhz_jiffies_conv,NULL);
2379}
2380
2381/**
2382 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2383 * @table: the sysctl table
2384 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 * @buffer: the user buffer
2386 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002387 * @ppos: file position
2388 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 *
2390 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2391 * values from/to the user buffer, treated as an ASCII string.
2392 * The values read are assumed to be in 1/1000 seconds, and
2393 * are converted into jiffies.
2394 *
2395 * Returns 0 on success.
2396 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002397int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 void __user *buffer, size_t *lenp, loff_t *ppos)
2399{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002400 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 do_proc_dointvec_ms_jiffies_conv, NULL);
2402}
2403
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002404static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002405 void __user *buffer, size_t *lenp, loff_t *ppos)
2406{
2407 struct pid *new_pid;
2408 pid_t tmp;
2409 int r;
2410
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002411 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002412
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002413 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002414 lenp, ppos, NULL, NULL);
2415 if (r || !write)
2416 return r;
2417
2418 new_pid = find_get_pid(tmp);
2419 if (!new_pid)
2420 return -ESRCH;
2421
2422 put_pid(xchg(&cad_pid, new_pid));
2423 return 0;
2424}
2425
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002426/**
2427 * proc_do_large_bitmap - read/write from/to a large bitmap
2428 * @table: the sysctl table
2429 * @write: %TRUE if this is a write to the sysctl file
2430 * @buffer: the user buffer
2431 * @lenp: the size of the user buffer
2432 * @ppos: file position
2433 *
2434 * The bitmap is stored at table->data and the bitmap length (in bits)
2435 * in table->maxlen.
2436 *
2437 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2438 * large bitmaps may be represented in a compact manner. Writing into
2439 * the file will clear the bitmap then update it with the given input.
2440 *
2441 * Returns 0 on success.
2442 */
2443int proc_do_large_bitmap(struct ctl_table *table, int write,
2444 void __user *buffer, size_t *lenp, loff_t *ppos)
2445{
2446 int err = 0;
2447 bool first = 1;
2448 size_t left = *lenp;
2449 unsigned long bitmap_len = table->maxlen;
2450 unsigned long *bitmap = (unsigned long *) table->data;
2451 unsigned long *tmp_bitmap = NULL;
2452 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
2453
2454 if (!bitmap_len || !left || (*ppos && !write)) {
2455 *lenp = 0;
2456 return 0;
2457 }
2458
2459 if (write) {
2460 unsigned long page = 0;
2461 char *kbuf;
2462
2463 if (left > PAGE_SIZE - 1)
2464 left = PAGE_SIZE - 1;
2465
2466 page = __get_free_page(GFP_TEMPORARY);
2467 kbuf = (char *) page;
2468 if (!kbuf)
2469 return -ENOMEM;
2470 if (copy_from_user(kbuf, buffer, left)) {
2471 free_page(page);
2472 return -EFAULT;
2473 }
2474 kbuf[left] = 0;
2475
2476 tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
2477 GFP_KERNEL);
2478 if (!tmp_bitmap) {
2479 free_page(page);
2480 return -ENOMEM;
2481 }
2482 proc_skip_char(&kbuf, &left, '\n');
2483 while (!err && left) {
2484 unsigned long val_a, val_b;
2485 bool neg;
2486
2487 err = proc_get_long(&kbuf, &left, &val_a, &neg, tr_a,
2488 sizeof(tr_a), &c);
2489 if (err)
2490 break;
2491 if (val_a >= bitmap_len || neg) {
2492 err = -EINVAL;
2493 break;
2494 }
2495
2496 val_b = val_a;
2497 if (left) {
2498 kbuf++;
2499 left--;
2500 }
2501
2502 if (c == '-') {
2503 err = proc_get_long(&kbuf, &left, &val_b,
2504 &neg, tr_b, sizeof(tr_b),
2505 &c);
2506 if (err)
2507 break;
2508 if (val_b >= bitmap_len || neg ||
2509 val_a > val_b) {
2510 err = -EINVAL;
2511 break;
2512 }
2513 if (left) {
2514 kbuf++;
2515 left--;
2516 }
2517 }
2518
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002519 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002520 first = 0;
2521 proc_skip_char(&kbuf, &left, '\n');
2522 }
2523 free_page(page);
2524 } else {
2525 unsigned long bit_a, bit_b = 0;
2526
2527 while (left) {
2528 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
2529 if (bit_a >= bitmap_len)
2530 break;
2531 bit_b = find_next_zero_bit(bitmap, bitmap_len,
2532 bit_a + 1) - 1;
2533
2534 if (!first) {
2535 err = proc_put_char(&buffer, &left, ',');
2536 if (err)
2537 break;
2538 }
2539 err = proc_put_long(&buffer, &left, bit_a, false);
2540 if (err)
2541 break;
2542 if (bit_a != bit_b) {
2543 err = proc_put_char(&buffer, &left, '-');
2544 if (err)
2545 break;
2546 err = proc_put_long(&buffer, &left, bit_b, false);
2547 if (err)
2548 break;
2549 }
2550
2551 first = 0; bit_b++;
2552 }
2553 if (!err)
2554 err = proc_put_char(&buffer, &left, '\n');
2555 }
2556
2557 if (!err) {
2558 if (write) {
2559 if (*ppos)
2560 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
2561 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002562 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002563 }
2564 kfree(tmp_bitmap);
2565 *lenp -= left;
2566 *ppos += *lenp;
2567 return 0;
2568 } else {
2569 kfree(tmp_bitmap);
2570 return err;
2571 }
2572}
2573
Jovi Zhang55610502011-01-12 17:00:45 -08002574#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002576int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 void __user *buffer, size_t *lenp, loff_t *ppos)
2578{
2579 return -ENOSYS;
2580}
2581
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002582int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 void __user *buffer, size_t *lenp, loff_t *ppos)
2584{
2585 return -ENOSYS;
2586}
2587
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002588int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 void __user *buffer, size_t *lenp, loff_t *ppos)
2590{
2591 return -ENOSYS;
2592}
2593
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002594int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 void __user *buffer, size_t *lenp, loff_t *ppos)
2596{
2597 return -ENOSYS;
2598}
2599
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002600int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 void __user *buffer, size_t *lenp, loff_t *ppos)
2602{
2603 return -ENOSYS;
2604}
2605
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002606int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 void __user *buffer, size_t *lenp, loff_t *ppos)
2608{
2609 return -ENOSYS;
2610}
2611
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002612int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 void __user *buffer, size_t *lenp, loff_t *ppos)
2614{
2615 return -ENOSYS;
2616}
2617
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002618int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 void __user *buffer,
2620 size_t *lenp, loff_t *ppos)
2621{
2622 return -ENOSYS;
2623}
2624
2625
Jovi Zhang55610502011-01-12 17:00:45 -08002626#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628/*
2629 * No sense putting this after each symbol definition, twice,
2630 * exception granted :-)
2631 */
2632EXPORT_SYMBOL(proc_dointvec);
2633EXPORT_SYMBOL(proc_dointvec_jiffies);
2634EXPORT_SYMBOL(proc_dointvec_minmax);
2635EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2636EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2637EXPORT_SYMBOL(proc_dostring);
2638EXPORT_SYMBOL(proc_doulongvec_minmax);
2639EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);