blob: 1a5faa3e15218ddc1e6684c101eb1370546f6e13 [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>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080022#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mm.h>
24#include <linux/swap.h>
25#include <linux/slab.h>
26#include <linux/sysctl.h>
Akinobu Mita5a04cca2012-03-28 14:42:50 -070027#include <linux/bitmap.h>
Dave Youngd33ed522010-03-10 15:23:59 -080028#include <linux/signal.h>
Dan Rosenberg455cd5a2011-01-12 16:59:41 -080029#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/proc_fs.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070031#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/ctype.h>
Vegard Nossumdfec0722008-04-04 00:51:41 +020033#include <linux/kmemcheck.h>
Steven Rostedtfd4b6162012-07-30 14:42:48 -070034#include <linux/kmemleak.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070035#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/init.h>
37#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010038#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030039#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/sysrq.h>
41#include <linux/highuid.h>
42#include <linux/writeback.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020043#include <linux/ratelimit.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070044#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070047#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/times.h>
49#include <linux/limits.h>
50#include <linux/dcache.h>
Alexey Dobriyan6e006702010-01-20 22:27:56 +020051#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070053#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080054#include <linux/nfs_fs.h>
55#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070056#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020057#include <linux/ftrace.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020058#include <linux/perf_event.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050059#include <linux/kprobes.h>
Jens Axboeb492e952010-05-19 21:03:16 +020060#include <linux/pipe_fs_i.h>
David Rientjes8e4228e2010-08-09 17:18:56 -070061#include <linux/oom.h>
Eric Paris17f60a72011-04-01 17:07:50 -040062#include <linux/kmod.h>
Dan Ballard73efc032011-10-31 17:11:20 -070063#include <linux/capability.h>
Al Viro40401532012-02-13 03:58:52 +000064#include <linux/binfmts.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060065#include <linux/sched/sysctl.h>
Kees Cook79847542014-01-23 15:55:59 -080066#include <linux/kexec.h>
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070067#include <linux/bpf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#include <asm/uaccess.h>
70#include <asm/processor.h>
71
Andi Kleen29cbc782006-09-30 01:47:55 +020072#ifdef CONFIG_X86
73#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010074#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010075#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020076#endif
David Howellsd550bbd2012-03-28 18:30:03 +010077#ifdef CONFIG_SPARC
78#include <asm/setup.h>
79#endif
Dave Youngc55b7c32010-03-10 15:24:08 -080080#ifdef CONFIG_BSD_PROCESS_ACCT
81#include <linux/acct.h>
82#endif
Dave Young4f0e0562010-03-10 15:24:09 -080083#ifdef CONFIG_RT_MUTEXES
84#include <linux/rtmutex.h>
85#endif
Dave Young2edf5e42010-03-10 15:24:10 -080086#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
87#include <linux/lockdep.h>
88#endif
Dave Young15485a42010-03-10 15:24:07 -080089#ifdef CONFIG_CHR_DEV_SG
90#include <scsi/sg.h>
91#endif
Andi Kleen29cbc782006-09-30 01:47:55 +020092
Don Zickus58687ac2010-05-07 17:11:44 -040093#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050094#include <linux/nmi.h>
95#endif
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#if defined(CONFIG_SYSCTL)
98
99/* External variables not in a header file. */
Alan Coxd6e71142005-06-23 00:09:43 -0700100extern int suid_dumpable;
Alex Kelly046d6622012-10-04 17:15:23 -0700101#ifdef CONFIG_COREDUMP
102extern int core_uses_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -0700104extern unsigned int core_pipe_limit;
Alex Kelly046d6622012-10-04 17:15:23 -0700105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106extern int pid_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107extern int pid_max_min, pid_max_max;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800108extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +0200109extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +0100110extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -0400111extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000112#ifndef CONFIG_MMU
113extern int sysctl_nr_trim_pages;
114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700116/* Constants used for minimum and maximum */
Don Zickus2508ce12010-05-07 17:11:46 -0400117#ifdef CONFIG_LOCKUP_DETECTOR
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700118static int sixty = 60;
119#endif
120
Aaron Tomlin270750db2014-01-20 17:34:13 +0000121static int __maybe_unused neg_one = -1;
122
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700123static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700124static int __maybe_unused one = 1;
125static int __maybe_unused two = 2;
Dave Hansen5509a5d2014-04-03 14:48:19 -0700126static int __maybe_unused four = 4;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800127static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700128static int one_hundred = 100;
Dave Youngaf913222009-09-22 16:43:33 -0700129#ifdef CONFIG_PRINTK
130static int ten_thousand = 10000;
131#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700132
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700133/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
134static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
137static int maxolduid = 65535;
138static int minolduid;
139
140static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700141static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Liu Hua80df2842014-04-07 15:38:57 -0700143/*this is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs */
144#ifdef CONFIG_DETECT_HUNG_TASK
145static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
146#endif
147
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
154#ifdef __hppa__
155extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530156#endif
157
158#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159extern int unaligned_enabled;
160#endif
161
Jes Sorensend2b176e2006-02-28 09:42:23 -0800162#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800163extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800164#endif
165
Vineet Guptab6fca722013-01-09 20:06:28 +0530166#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
167extern int no_unaligned_warning;
168#endif
169
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700170#ifdef CONFIG_PROC_SYSCTL
Kees Cookf4aacea2014-06-06 14:37:19 -0700171
172#define SYSCTL_WRITES_LEGACY -1
173#define SYSCTL_WRITES_WARN 0
174#define SYSCTL_WRITES_STRICT 1
175
176static int sysctl_writes_strict = SYSCTL_WRITES_WARN;
177
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700178static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700179 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700180static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800181 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700182#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700183
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700184#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700185static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700186 void __user *buffer, size_t *lenp, loff_t *ppos);
187#endif
188
Kees Cook54b50192012-07-30 14:39:18 -0700189static int proc_dointvec_minmax_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#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700192static int proc_dostring_coredump(struct ctl_table *table, int write,
193 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700194#endif
Kees Cook54b50192012-07-30 14:39:18 -0700195
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700196#ifdef CONFIG_MAGIC_SYSRQ
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -0800197/* Note: sysrq code uses it's own private copy */
Ben Hutchings8eaede42013-10-07 01:05:46 +0100198static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700199
Joe Perches6f8fd1d2014-06-06 14:38:08 -0700200static int sysrq_sysctl_handler(struct ctl_table *table, int write,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700201 void __user *buffer, size_t *lenp,
202 loff_t *ppos)
203{
204 int error;
205
206 error = proc_dointvec(table, write, buffer, lenp, ppos);
207 if (error)
208 return error;
209
210 if (write)
211 sysrq_toggle_support(__sysrq_enabled);
212
213 return 0;
214}
215
216#endif
217
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700218static struct ctl_table kern_table[];
219static struct ctl_table vm_table[];
220static struct ctl_table fs_table[];
221static struct ctl_table debug_table[];
222static struct ctl_table dev_table[];
223extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800224#ifdef CONFIG_EPOLL
225extern struct ctl_table epoll_table[];
226#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
229int sysctl_legacy_va_layout;
230#endif
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/* The default sysctl tables: */
233
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800234static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 .procname = "kernel",
237 .mode = 0555,
238 .child = kern_table,
239 },
240 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .procname = "vm",
242 .mode = 0555,
243 .child = vm_table,
244 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 .procname = "fs",
247 .mode = 0555,
248 .child = fs_table,
249 },
250 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 .procname = "debug",
252 .mode = 0555,
253 .child = debug_table,
254 },
255 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 .procname = "dev",
257 .mode = 0555,
258 .child = dev_table,
259 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700260 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Ingo Molnar77e54a12007-07-09 18:52:00 +0200263#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100264static int min_sched_granularity_ns = 100000; /* 100 usecs */
265static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
266static int min_wakeup_granularity_ns; /* 0 usecs */
267static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200268#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100269static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
270static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200271#endif /* CONFIG_SMP */
272#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200273
Mel Gorman5e771902010-05-24 14:32:31 -0700274#ifdef CONFIG_COMPACTION
275static int min_extfrag_threshold;
276static int max_extfrag_threshold = 1000;
277#endif
278
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700279static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200280 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200281 .procname = "sched_child_runs_first",
282 .data = &sysctl_sched_child_runs_first,
283 .maxlen = sizeof(unsigned int),
284 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800285 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200286 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200287#ifdef CONFIG_SCHED_DEBUG
288 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100289 .procname = "sched_min_granularity_ns",
290 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200291 .maxlen = sizeof(unsigned int),
292 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800293 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100294 .extra1 = &min_sched_granularity_ns,
295 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200296 },
297 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200298 .procname = "sched_latency_ns",
299 .data = &sysctl_sched_latency,
300 .maxlen = sizeof(unsigned int),
301 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800302 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200303 .extra1 = &min_sched_granularity_ns,
304 .extra2 = &max_sched_granularity_ns,
305 },
306 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200307 .procname = "sched_wakeup_granularity_ns",
308 .data = &sysctl_sched_wakeup_granularity,
309 .maxlen = sizeof(unsigned int),
310 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800311 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200312 .extra1 = &min_wakeup_granularity_ns,
313 .extra2 = &max_wakeup_granularity_ns,
314 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200315#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200316 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100317 .procname = "sched_tunable_scaling",
318 .data = &sysctl_sched_tunable_scaling,
319 .maxlen = sizeof(enum sched_tunable_scaling),
320 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800321 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100322 .extra1 = &min_sched_tunable_scaling,
323 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200324 },
325 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900326 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200327 .data = &sysctl_sched_migration_cost,
328 .maxlen = sizeof(unsigned int),
329 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800330 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200331 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100332 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100333 .procname = "sched_nr_migrate",
334 .data = &sysctl_sched_nr_migrate,
335 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100336 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800337 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100338 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530339 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900340 .procname = "sched_time_avg_ms",
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200341 .data = &sysctl_sched_time_avg,
342 .maxlen = sizeof(unsigned int),
343 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800344 .proc_handler = proc_dointvec,
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200345 },
346 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900347 .procname = "sched_shares_window_ns",
Paul Turnera7a4f8a2010-11-15 15:47:06 -0800348 .data = &sysctl_sched_shares_window,
349 .maxlen = sizeof(unsigned int),
350 .mode = 0644,
351 .proc_handler = proc_dointvec,
352 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200353#endif /* CONFIG_SMP */
354#ifdef CONFIG_NUMA_BALANCING
355 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200356 .procname = "numa_balancing_scan_delay_ms",
357 .data = &sysctl_numa_balancing_scan_delay,
358 .maxlen = sizeof(unsigned int),
359 .mode = 0644,
360 .proc_handler = proc_dointvec,
361 },
362 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200363 .procname = "numa_balancing_scan_period_min_ms",
364 .data = &sysctl_numa_balancing_scan_period_min,
365 .maxlen = sizeof(unsigned int),
366 .mode = 0644,
367 .proc_handler = proc_dointvec,
368 },
369 {
370 .procname = "numa_balancing_scan_period_max_ms",
371 .data = &sysctl_numa_balancing_scan_period_max,
372 .maxlen = sizeof(unsigned int),
373 .mode = 0644,
374 .proc_handler = proc_dointvec,
375 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200376 {
377 .procname = "numa_balancing_scan_size_mb",
378 .data = &sysctl_numa_balancing_scan_size,
379 .maxlen = sizeof(unsigned int),
380 .mode = 0644,
Kirill Tkhai64192652014-10-16 14:39:37 +0400381 .proc_handler = proc_dointvec_minmax,
382 .extra1 = &one,
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200383 },
Mel Gorman3a7053b2013-10-07 11:29:00 +0100384 {
Andi Kleen54a43d52014-01-23 15:53:13 -0800385 .procname = "numa_balancing",
386 .data = NULL, /* filled in by handler */
387 .maxlen = sizeof(unsigned int),
388 .mode = 0644,
389 .proc_handler = sysctl_numa_balancing,
390 .extra1 = &zero,
391 .extra2 = &one,
392 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200393#endif /* CONFIG_NUMA_BALANCING */
394#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200395 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100396 .procname = "sched_rt_period_us",
397 .data = &sysctl_sched_rt_period,
398 .maxlen = sizeof(unsigned int),
399 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800400 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100401 },
402 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100403 .procname = "sched_rt_runtime_us",
404 .data = &sysctl_sched_rt_runtime,
405 .maxlen = sizeof(int),
406 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800407 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100408 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600409 {
410 .procname = "sched_rr_timeslice_ms",
411 .data = &sched_rr_timeslice,
412 .maxlen = sizeof(int),
413 .mode = 0644,
414 .proc_handler = sched_rr_handler,
415 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100416#ifdef CONFIG_SCHED_AUTOGROUP
417 {
418 .procname = "sched_autogroup_enabled",
419 .data = &sysctl_sched_autogroup_enabled,
420 .maxlen = sizeof(unsigned int),
421 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800422 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100423 .extra1 = &zero,
424 .extra2 = &one,
425 },
426#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700427#ifdef CONFIG_CFS_BANDWIDTH
428 {
429 .procname = "sched_cfs_bandwidth_slice_us",
430 .data = &sysctl_sched_cfs_bandwidth_slice,
431 .maxlen = sizeof(unsigned int),
432 .mode = 0644,
433 .proc_handler = proc_dointvec_minmax,
434 .extra1 = &one,
435 },
436#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700437#ifdef CONFIG_PROVE_LOCKING
438 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700439 .procname = "prove_locking",
440 .data = &prove_locking,
441 .maxlen = sizeof(int),
442 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800443 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700444 },
445#endif
446#ifdef CONFIG_LOCK_STAT
447 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700448 .procname = "lock_stat",
449 .data = &lock_stat,
450 .maxlen = sizeof(int),
451 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800452 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700453 },
454#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200455 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .procname = "panic",
457 .data = &panic_timeout,
458 .maxlen = sizeof(int),
459 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800460 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 },
Alex Kelly046d6622012-10-04 17:15:23 -0700462#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 .procname = "core_uses_pid",
465 .data = &core_uses_pid,
466 .maxlen = sizeof(int),
467 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800468 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 },
470 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .procname = "core_pattern",
472 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700473 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700475 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 },
Neil Hormana2939802009-09-23 15:56:56 -0700477 {
Neil Hormana2939802009-09-23 15:56:56 -0700478 .procname = "core_pipe_limit",
479 .data = &core_pipe_limit,
480 .maxlen = sizeof(unsigned int),
481 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800482 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700483 },
Alex Kelly046d6622012-10-04 17:15:23 -0700484#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800485#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700488 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800489 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800490 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 },
Kees Cookf4aacea2014-06-06 14:37:19 -0700492 {
493 .procname = "sysctl_writes_strict",
494 .data = &sysctl_writes_strict,
495 .maxlen = sizeof(int),
496 .mode = 0644,
497 .proc_handler = proc_dointvec_minmax,
498 .extra1 = &neg_one,
499 .extra2 = &one,
500 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800501#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100502#ifdef CONFIG_LATENCYTOP
503 {
504 .procname = "latencytop",
505 .data = &latencytop_enabled,
506 .maxlen = sizeof(int),
507 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800508 .proc_handler = proc_dointvec,
Arjan van de Ven97455122008-01-25 21:08:34 +0100509 },
510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511#ifdef CONFIG_BLK_DEV_INITRD
512 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .procname = "real-root-dev",
514 .data = &real_root_dev,
515 .maxlen = sizeof(int),
516 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800517 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 },
519#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700520 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700521 .procname = "print-fatal-signals",
522 .data = &print_fatal_signals,
523 .maxlen = sizeof(int),
524 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800525 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700526 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700527#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 .procname = "reboot-cmd",
530 .data = reboot_command,
531 .maxlen = 256,
532 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800533 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 },
535 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 .procname = "stop-a",
537 .data = &stop_a_enabled,
538 .maxlen = sizeof (int),
539 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800540 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 },
542 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .procname = "scons-poweroff",
544 .data = &scons_pwroff,
545 .maxlen = sizeof (int),
546 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800547 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 },
549#endif
David S. Miller08714202008-11-16 23:49:24 -0800550#ifdef CONFIG_SPARC64
551 {
David S. Miller08714202008-11-16 23:49:24 -0800552 .procname = "tsb-ratio",
553 .data = &sysctl_tsb_ratio,
554 .maxlen = sizeof (int),
555 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800556 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800557 },
558#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559#ifdef __hppa__
560 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .procname = "soft-power",
562 .data = &pwrsw_enabled,
563 .maxlen = sizeof (int),
564 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800565 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530567#endif
568#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 .procname = "unaligned-trap",
571 .data = &unaligned_enabled,
572 .maxlen = sizeof (int),
573 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800574 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 },
576#endif
577 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 .procname = "ctrl-alt-del",
579 .data = &C_A_D,
580 .maxlen = sizeof(int),
581 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800582 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400584#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200585 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200586 .procname = "ftrace_enabled",
587 .data = &ftrace_enabled,
588 .maxlen = sizeof(int),
589 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800590 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200591 },
592#endif
Steven Rostedtf38f1d2a2008-12-16 23:06:40 -0500593#ifdef CONFIG_STACK_TRACER
594 {
Steven Rostedtf38f1d2a2008-12-16 23:06:40 -0500595 .procname = "stack_tracer_enabled",
596 .data = &stack_tracer_enabled,
597 .maxlen = sizeof(int),
598 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800599 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d2a2008-12-16 23:06:40 -0500600 },
601#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400602#ifdef CONFIG_TRACING
603 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100604 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400605 .data = &ftrace_dump_on_oops,
606 .maxlen = sizeof(int),
607 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800608 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400609 },
Steven Rostedt (Red Hat)de7edd32013-06-14 16:21:43 -0400610 {
611 .procname = "traceoff_on_warning",
612 .data = &__disable_trace_on_warning,
613 .maxlen = sizeof(__disable_trace_on_warning),
614 .mode = 0644,
615 .proc_handler = proc_dointvec,
616 },
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500617 {
618 .procname = "tracepoint_printk",
619 .data = &tracepoint_printk,
620 .maxlen = sizeof(tracepoint_printk),
621 .mode = 0644,
622 .proc_handler = proc_dointvec,
623 },
Steven Rostedt944ac422008-10-23 19:26:08 -0400624#endif
Dave Young2965faa2015-09-09 15:38:55 -0700625#ifdef CONFIG_KEXEC_CORE
Kees Cook79847542014-01-23 15:55:59 -0800626 {
627 .procname = "kexec_load_disabled",
628 .data = &kexec_load_disabled,
629 .maxlen = sizeof(int),
630 .mode = 0644,
631 /* only handle a transition from default "0" to "1" */
632 .proc_handler = proc_dointvec_minmax,
633 .extra1 = &one,
634 .extra2 = &one,
635 },
636#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200637#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 .procname = "modprobe",
640 .data = &modprobe_path,
641 .maxlen = KMOD_PATH_LEN,
642 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800643 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 },
Kees Cook3d433212009-04-02 15:49:29 -0700645 {
Kees Cook3d433212009-04-02 15:49:29 -0700646 .procname = "modules_disabled",
647 .data = &modules_disabled,
648 .maxlen = sizeof(int),
649 .mode = 0644,
650 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800651 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700652 .extra1 = &one,
653 .extra2 = &one,
654 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#endif
Michael Marineau86d56132014-04-10 14:09:31 -0700656#ifdef CONFIG_UEVENT_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100659 .data = &uevent_helper,
660 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800662 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 },
Michael Marineau86d56132014-04-10 14:09:31 -0700664#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#ifdef CONFIG_CHR_DEV_SG
666 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .procname = "sg-big-buff",
668 .data = &sg_big_buff,
669 .maxlen = sizeof (int),
670 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800671 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 },
673#endif
674#ifdef CONFIG_BSD_PROCESS_ACCT
675 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .procname = "acct",
677 .data = &acct_parm,
678 .maxlen = 3*sizeof(int),
679 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800680 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 },
682#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#ifdef CONFIG_MAGIC_SYSRQ
684 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800686 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 .maxlen = sizeof (int),
688 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700689 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 },
691#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700692#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700695 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 .maxlen = sizeof (int),
697 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800698 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .procname = "threads-max",
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700703 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 .maxlen = sizeof(int),
705 .mode = 0644,
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700706 .proc_handler = sysctl_max_threads,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 },
708 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .procname = "random",
710 .mode = 0555,
711 .child = random_table,
712 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 {
Eric Paris17f60a72011-04-01 17:07:50 -0400714 .procname = "usermodehelper",
715 .mode = 0555,
716 .child = usermodehelper_table,
717 },
718 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .procname = "overflowuid",
720 .data = &overflowuid,
721 .maxlen = sizeof(int),
722 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800723 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .extra1 = &minolduid,
725 .extra2 = &maxolduid,
726 },
727 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .procname = "overflowgid",
729 .data = &overflowgid,
730 .maxlen = sizeof(int),
731 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800732 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 .extra1 = &minolduid,
734 .extra2 = &maxolduid,
735 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800736#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#ifdef CONFIG_MATHEMU
738 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .procname = "ieee_emulation_warnings",
740 .data = &sysctl_ieee_emulation_warnings,
741 .maxlen = sizeof(int),
742 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800743 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 },
745#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200748 .data = &show_unhandled_signals,
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 },
753#endif
754 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 .procname = "pid_max",
756 .data = &pid_max,
757 .maxlen = sizeof (int),
758 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800759 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 .extra1 = &pid_max_min,
761 .extra2 = &pid_max_max,
762 },
763 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 .procname = "panic_on_oops",
765 .data = &panic_on_oops,
766 .maxlen = sizeof(int),
767 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800768 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800770#if defined CONFIG_PRINTK
771 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800772 .procname = "printk",
773 .data = &console_loglevel,
774 .maxlen = 4*sizeof(int),
775 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800776 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800777 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700780 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 .maxlen = sizeof(int),
782 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800783 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 },
785 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700787 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .maxlen = sizeof(int),
789 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800790 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 },
Dave Youngaf913222009-09-22 16:43:33 -0700792 {
Dave Youngaf913222009-09-22 16:43:33 -0700793 .procname = "printk_delay",
794 .data = &printk_delay_msec,
795 .maxlen = sizeof(int),
796 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800797 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700798 .extra1 = &zero,
799 .extra2 = &ten_thousand,
800 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800802 .procname = "dmesg_restrict",
803 .data = &dmesg_restrict,
804 .maxlen = sizeof(int),
805 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700806 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800807 .extra1 = &zero,
808 .extra2 = &one,
809 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800810 {
811 .procname = "kptr_restrict",
812 .data = &kptr_restrict,
813 .maxlen = sizeof(int),
814 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700815 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800816 .extra1 = &zero,
817 .extra2 = &two,
818 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800819#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800820 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 .procname = "ngroups_max",
822 .data = &ngroups_max,
823 .maxlen = sizeof (int),
824 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800825 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 },
Dan Ballard73efc032011-10-31 17:11:20 -0700827 {
828 .procname = "cap_last_cap",
829 .data = (void *)&cap_last_cap,
830 .maxlen = sizeof(int),
831 .mode = 0444,
832 .proc_handler = proc_dointvec,
833 },
Don Zickus58687ac2010-05-07 17:11:44 -0400834#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500835 {
Don Zickus58687ac2010-05-07 17:11:44 -0400836 .procname = "watchdog",
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200837 .data = &watchdog_user_enabled,
Don Zickus504d7cf2010-02-12 17:19:19 -0500838 .maxlen = sizeof (int),
839 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700840 .proc_handler = proc_watchdog,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700841 .extra1 = &zero,
842 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400843 },
844 {
845 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700846 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400847 .maxlen = sizeof(int),
848 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700849 .proc_handler = proc_watchdog_thresh,
Li Zefana6572f82013-05-17 10:31:04 +0800850 .extra1 = &zero,
Don Zickus58687ac2010-05-07 17:11:44 -0400851 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500852 },
Don Zickus2508ce12010-05-07 17:11:46 -0400853 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700854 .procname = "nmi_watchdog",
855 .data = &nmi_watchdog_enabled,
856 .maxlen = sizeof (int),
857 .mode = 0644,
858 .proc_handler = proc_nmi_watchdog,
859 .extra1 = &zero,
860#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
861 .extra2 = &one,
862#else
863 .extra2 = &zero,
864#endif
865 },
866 {
867 .procname = "soft_watchdog",
868 .data = &soft_watchdog_enabled,
869 .maxlen = sizeof (int),
870 .mode = 0644,
871 .proc_handler = proc_soft_watchdog,
872 .extra1 = &zero,
873 .extra2 = &one,
874 },
875 {
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700876 .procname = "watchdog_cpumask",
877 .data = &watchdog_cpumask_bits,
878 .maxlen = NR_CPUS,
879 .mode = 0644,
880 .proc_handler = proc_watchdog_cpumask,
881 },
882 {
Don Zickus2508ce12010-05-07 17:11:46 -0400883 .procname = "softlockup_panic",
884 .data = &softlockup_panic,
885 .maxlen = sizeof(int),
886 .mode = 0644,
887 .proc_handler = proc_dointvec_minmax,
888 .extra1 = &zero,
889 .extra2 = &one,
890 },
Aaron Tomlined235872014-06-23 13:22:05 -0700891#ifdef CONFIG_SMP
892 {
893 .procname = "softlockup_all_cpu_backtrace",
894 .data = &sysctl_softlockup_all_cpu_backtrace,
895 .maxlen = sizeof(int),
896 .mode = 0644,
897 .proc_handler = proc_dointvec_minmax,
898 .extra1 = &zero,
899 .extra2 = &one,
900 },
Jiri Kosina55537872015-11-05 18:44:41 -0800901 {
902 .procname = "hardlockup_all_cpu_backtrace",
903 .data = &sysctl_hardlockup_all_cpu_backtrace,
904 .maxlen = sizeof(int),
905 .mode = 0644,
906 .proc_handler = proc_dointvec_minmax,
907 .extra1 = &zero,
908 .extra2 = &one,
909 },
Aaron Tomlined235872014-06-23 13:22:05 -0700910#endif /* CONFIG_SMP */
Don Zickus5dc30552010-11-29 17:07:17 -0500911#endif
912#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
913 {
914 .procname = "unknown_nmi_panic",
915 .data = &unknown_nmi_panic,
916 .maxlen = sizeof (int),
917 .mode = 0644,
918 .proc_handler = proc_dointvec,
919 },
Don Zickus504d7cf2010-02-12 17:19:19 -0500920#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921#if defined(CONFIG_X86)
922 {
Don Zickus8da5add2006-09-26 10:52:27 +0200923 .procname = "panic_on_unrecovered_nmi",
924 .data = &panic_on_unrecovered_nmi,
925 .maxlen = sizeof(int),
926 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800927 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200928 },
929 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700930 .procname = "panic_on_io_nmi",
931 .data = &panic_on_io_nmi,
932 .maxlen = sizeof(int),
933 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800934 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700935 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +0900936#ifdef CONFIG_DEBUG_STACKOVERFLOW
937 {
938 .procname = "panic_on_stackoverflow",
939 .data = &sysctl_panic_on_stackoverflow,
940 .maxlen = sizeof(int),
941 .mode = 0644,
942 .proc_handler = proc_dointvec,
943 },
944#endif
Kurt Garloff5211a242009-06-24 14:32:11 -0700945 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 .procname = "bootloader_type",
947 .data = &bootloader_type,
948 .maxlen = sizeof (int),
949 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800950 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100952 {
H. Peter Anvin50312962009-05-07 16:54:11 -0700953 .procname = "bootloader_version",
954 .data = &bootloader_version,
955 .maxlen = sizeof (int),
956 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800957 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -0700958 },
959 {
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100960 .procname = "kstack_depth_to_print",
961 .data = &kstack_depth_to_print,
962 .maxlen = sizeof(int),
963 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800964 .proc_handler = proc_dointvec,
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100965 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100966 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100967 .procname = "io_delay_type",
968 .data = &io_delay_type,
969 .maxlen = sizeof(int),
970 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800971 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100972 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800974#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 .procname = "randomize_va_space",
977 .data = &randomize_va_space,
978 .maxlen = sizeof(int),
979 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800980 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800982#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800983#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700984 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700985 .procname = "spin_retry",
986 .data = &spin_retry,
987 .maxlen = sizeof (int),
988 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800989 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700990 },
991#endif
Len Brown673d5b42007-07-28 03:33:16 -0400992#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800993 {
Pavel Machekc255d842006-02-20 18:27:58 -0800994 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700995 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800996 .maxlen = sizeof (unsigned long),
997 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800998 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800999 },
1000#endif
Vineet Guptab6fca722013-01-09 20:06:28 +05301001#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -08001002 {
Jes Sorensend2b176e2006-02-28 09:42:23 -08001003 .procname = "ignore-unaligned-usertrap",
1004 .data = &no_unaligned_warning,
1005 .maxlen = sizeof (int),
1006 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001007 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -08001008 },
Vineet Guptab6fca722013-01-09 20:06:28 +05301009#endif
1010#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -08001011 {
Doug Chapman88fc2412009-01-15 10:38:56 -08001012 .procname = "unaligned-dump-stack",
1013 .data = &unaligned_dump_stack,
1014 .maxlen = sizeof (int),
1015 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001016 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -08001017 },
Jes Sorensend2b176e2006-02-28 09:42:23 -08001018#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001019#ifdef CONFIG_DETECT_HUNG_TASK
1020 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001021 .procname = "hung_task_panic",
1022 .data = &sysctl_hung_task_panic,
1023 .maxlen = sizeof(int),
1024 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001025 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001026 .extra1 = &zero,
1027 .extra2 = &one,
1028 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001029 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001030 .procname = "hung_task_check_count",
1031 .data = &sysctl_hung_task_check_count,
Li Zefancd646472013-09-23 16:43:58 +08001032 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001033 .mode = 0644,
Li Zefancd646472013-09-23 16:43:58 +08001034 .proc_handler = proc_dointvec_minmax,
1035 .extra1 = &zero,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001036 },
1037 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001038 .procname = "hung_task_timeout_secs",
1039 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +01001040 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001041 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001042 .proc_handler = proc_dohung_task_timeout_secs,
Liu Hua80df2842014-04-07 15:38:57 -07001043 .extra2 = &hung_task_timeout_max,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001044 },
1045 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001046 .procname = "hung_task_warnings",
1047 .data = &sysctl_hung_task_warnings,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001048 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001049 .mode = 0644,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001050 .proc_handler = proc_dointvec_minmax,
1051 .extra1 = &neg_one,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001052 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -07001053#endif
Andi Kleenbebfa102006-06-26 13:56:52 +02001054#ifdef CONFIG_COMPAT
1055 {
Andi Kleenbebfa102006-06-26 13:56:52 +02001056 .procname = "compat-log",
1057 .data = &compat_log,
1058 .maxlen = sizeof (int),
1059 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001060 .proc_handler = proc_dointvec,
Andi Kleenbebfa102006-06-26 13:56:52 +02001061 },
1062#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001063#ifdef CONFIG_RT_MUTEXES
1064 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001065 .procname = "max_lock_depth",
1066 .data = &max_lock_depth,
1067 .maxlen = sizeof(int),
1068 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001069 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001070 },
1071#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001072 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001073 .procname = "poweroff_cmd",
1074 .data = &poweroff_cmd,
1075 .maxlen = POWEROFF_CMD_PATH_LEN,
1076 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001077 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001078 },
David Howells0b77f5b2008-04-29 01:01:32 -07001079#ifdef CONFIG_KEYS
1080 {
David Howells0b77f5b2008-04-29 01:01:32 -07001081 .procname = "keys",
1082 .mode = 0555,
1083 .child = key_sysctls,
1084 },
1085#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001086#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001087 /*
1088 * User-space scripts rely on the existence of this file
1089 * as a feature check for perf_events being enabled.
1090 *
1091 * So it's an ABI, do not remove!
1092 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001093 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001094 .procname = "perf_event_paranoid",
1095 .data = &sysctl_perf_event_paranoid,
1096 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001097 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001098 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001099 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001100 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001101 .procname = "perf_event_mlock_kb",
1102 .data = &sysctl_perf_event_mlock,
1103 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001104 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001105 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001106 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001107 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001108 .procname = "perf_event_max_sample_rate",
1109 .data = &sysctl_perf_event_sample_rate,
1110 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001111 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001112 .proc_handler = perf_proc_update_handler,
Knut Petersen723478c2013-09-25 14:29:37 +02001113 .extra1 = &one,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001114 },
Dave Hansen14c63f12013-06-21 08:51:36 -07001115 {
1116 .procname = "perf_cpu_time_max_percent",
1117 .data = &sysctl_perf_cpu_time_max_percent,
1118 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1119 .mode = 0644,
1120 .proc_handler = perf_cpu_time_max_percent_handler,
1121 .extra1 = &zero,
1122 .extra2 = &one_hundred,
1123 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001124#endif
Vegard Nossumdfec0722008-04-04 00:51:41 +02001125#ifdef CONFIG_KMEMCHECK
1126 {
Vegard Nossumdfec0722008-04-04 00:51:41 +02001127 .procname = "kmemcheck",
1128 .data = &kmemcheck_enabled,
1129 .maxlen = sizeof(int),
1130 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001131 .proc_handler = proc_dointvec,
Vegard Nossumdfec0722008-04-04 00:51:41 +02001132 },
1133#endif
Prarit Bhargava9e3961a2014-12-10 15:45:50 -08001134 {
1135 .procname = "panic_on_warn",
1136 .data = &panic_on_warn,
1137 .maxlen = sizeof(int),
1138 .mode = 0644,
1139 .proc_handler = proc_dointvec_minmax,
1140 .extra1 = &zero,
1141 .extra2 = &one,
1142 },
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001143#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1144 {
1145 .procname = "timer_migration",
1146 .data = &sysctl_timer_migration,
1147 .maxlen = sizeof(unsigned int),
1148 .mode = 0644,
1149 .proc_handler = timer_migration_handler,
1150 },
1151#endif
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001152#ifdef CONFIG_BPF_SYSCALL
1153 {
1154 .procname = "unprivileged_bpf_disabled",
1155 .data = &sysctl_unprivileged_bpf_disabled,
1156 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1157 .mode = 0644,
1158 /* only handle a transition from default "0" to "1" */
1159 .proc_handler = proc_dointvec_minmax,
1160 .extra1 = &one,
1161 .extra2 = &one,
1162 },
1163#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001164 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165};
1166
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001167static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 .procname = "overcommit_memory",
1170 .data = &sysctl_overcommit_memory,
1171 .maxlen = sizeof(sysctl_overcommit_memory),
1172 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001173 .proc_handler = proc_dointvec_minmax,
1174 .extra1 = &zero,
1175 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 },
1177 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001178 .procname = "panic_on_oom",
1179 .data = &sysctl_panic_on_oom,
1180 .maxlen = sizeof(sysctl_panic_on_oom),
1181 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001182 .proc_handler = proc_dointvec_minmax,
1183 .extra1 = &zero,
1184 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001185 },
1186 {
David Rientjesfe071d72007-10-16 23:25:56 -07001187 .procname = "oom_kill_allocating_task",
1188 .data = &sysctl_oom_kill_allocating_task,
1189 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1190 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001191 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001192 },
1193 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001194 .procname = "oom_dump_tasks",
1195 .data = &sysctl_oom_dump_tasks,
1196 .maxlen = sizeof(sysctl_oom_dump_tasks),
1197 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001198 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001199 },
1200 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 .procname = "overcommit_ratio",
1202 .data = &sysctl_overcommit_ratio,
1203 .maxlen = sizeof(sysctl_overcommit_ratio),
1204 .mode = 0644,
Jerome Marchand49f0ce52014-01-21 15:49:14 -08001205 .proc_handler = overcommit_ratio_handler,
1206 },
1207 {
1208 .procname = "overcommit_kbytes",
1209 .data = &sysctl_overcommit_kbytes,
1210 .maxlen = sizeof(sysctl_overcommit_kbytes),
1211 .mode = 0644,
1212 .proc_handler = overcommit_kbytes_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 },
1214 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 .procname = "page-cluster",
1216 .data = &page_cluster,
1217 .maxlen = sizeof(int),
1218 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001219 .proc_handler = proc_dointvec_minmax,
1220 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 },
1222 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 .procname = "dirty_background_ratio",
1224 .data = &dirty_background_ratio,
1225 .maxlen = sizeof(dirty_background_ratio),
1226 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001227 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 .extra1 = &zero,
1229 .extra2 = &one_hundred,
1230 },
1231 {
David Rientjes2da02992009-01-06 14:39:31 -08001232 .procname = "dirty_background_bytes",
1233 .data = &dirty_background_bytes,
1234 .maxlen = sizeof(dirty_background_bytes),
1235 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001236 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001237 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001238 },
1239 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 .procname = "dirty_ratio",
1241 .data = &vm_dirty_ratio,
1242 .maxlen = sizeof(vm_dirty_ratio),
1243 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001244 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 .extra1 = &zero,
1246 .extra2 = &one_hundred,
1247 },
1248 {
David Rientjes2da02992009-01-06 14:39:31 -08001249 .procname = "dirty_bytes",
1250 .data = &vm_dirty_bytes,
1251 .maxlen = sizeof(vm_dirty_bytes),
1252 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001253 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001254 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001255 },
1256 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001258 .data = &dirty_writeback_interval,
1259 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001261 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 },
1263 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001265 .data = &dirty_expire_interval,
1266 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001268 .proc_handler = proc_dointvec_minmax,
1269 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 },
1271 {
Theodore Ts'o1efff912015-03-17 12:23:32 -04001272 .procname = "dirtytime_expire_seconds",
1273 .data = &dirtytime_expire_interval,
1274 .maxlen = sizeof(dirty_expire_interval),
1275 .mode = 0644,
1276 .proc_handler = dirtytime_interval_handler,
1277 .extra1 = &zero,
1278 },
1279 {
Wanpeng Li3965c9a2012-07-31 16:41:52 -07001280 .procname = "nr_pdflush_threads",
1281 .mode = 0444 /* read-only */,
1282 .proc_handler = pdflush_proc_obsolete,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 },
1284 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 .procname = "swappiness",
1286 .data = &vm_swappiness,
1287 .maxlen = sizeof(vm_swappiness),
1288 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001289 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 .extra1 = &zero,
1291 .extra2 = &one_hundred,
1292 },
1293#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001294 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001296 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 .maxlen = sizeof(unsigned long),
1298 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001299 .proc_handler = hugetlb_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001300 },
1301#ifdef CONFIG_NUMA
1302 {
1303 .procname = "nr_hugepages_mempolicy",
1304 .data = NULL,
1305 .maxlen = sizeof(unsigned long),
1306 .mode = 0644,
1307 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001308 },
1309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 .procname = "hugetlb_shm_group",
1312 .data = &sysctl_hugetlb_shm_group,
1313 .maxlen = sizeof(gid_t),
1314 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001315 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 },
Mel Gorman396faf02007-07-17 04:03:13 -07001317 {
Mel Gorman396faf02007-07-17 04:03:13 -07001318 .procname = "hugepages_treat_as_movable",
1319 .data = &hugepages_treat_as_movable,
1320 .maxlen = sizeof(int),
1321 .mode = 0644,
Naoya Horiguchi86cdb462013-09-11 14:22:13 -07001322 .proc_handler = proc_dointvec,
Mel Gorman396faf02007-07-17 04:03:13 -07001323 },
Adam Litke54f9f802007-10-16 01:26:20 -07001324 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001325 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001326 .data = NULL,
1327 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001328 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001329 .proc_handler = hugetlb_overcommit_handler,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001330 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331#endif
1332 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 .procname = "lowmem_reserve_ratio",
1334 .data = &sysctl_lowmem_reserve_ratio,
1335 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1336 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001337 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 },
1339 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001340 .procname = "drop_caches",
1341 .data = &sysctl_drop_caches,
1342 .maxlen = sizeof(int),
1343 .mode = 0644,
1344 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001345 .extra1 = &one,
Dave Hansen5509a5d2014-04-03 14:48:19 -07001346 .extra2 = &four,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001347 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001348#ifdef CONFIG_COMPACTION
1349 {
1350 .procname = "compact_memory",
1351 .data = &sysctl_compact_memory,
1352 .maxlen = sizeof(int),
1353 .mode = 0200,
1354 .proc_handler = sysctl_compaction_handler,
1355 },
Mel Gorman5e771902010-05-24 14:32:31 -07001356 {
1357 .procname = "extfrag_threshold",
1358 .data = &sysctl_extfrag_threshold,
1359 .maxlen = sizeof(int),
1360 .mode = 0644,
1361 .proc_handler = sysctl_extfrag_handler,
1362 .extra1 = &min_extfrag_threshold,
1363 .extra2 = &max_extfrag_threshold,
1364 },
Eric B Munson5bbe3542015-04-15 16:13:20 -07001365 {
1366 .procname = "compact_unevictable_allowed",
1367 .data = &sysctl_compact_unevictable_allowed,
1368 .maxlen = sizeof(int),
1369 .mode = 0644,
1370 .proc_handler = proc_dointvec,
1371 .extra1 = &zero,
1372 .extra2 = &one,
1373 },
Mel Gorman5e771902010-05-24 14:32:31 -07001374
Mel Gorman76ab0f52010-05-24 14:32:28 -07001375#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001376 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .procname = "min_free_kbytes",
1378 .data = &min_free_kbytes,
1379 .maxlen = sizeof(min_free_kbytes),
1380 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001381 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 .extra1 = &zero,
1383 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001384 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001385 .procname = "percpu_pagelist_fraction",
1386 .data = &percpu_pagelist_fraction,
1387 .maxlen = sizeof(percpu_pagelist_fraction),
1388 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001389 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
David Rientjes7cd2b0a2014-06-23 13:22:04 -07001390 .extra1 = &zero,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001391 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392#ifdef CONFIG_MMU
1393 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .procname = "max_map_count",
1395 .data = &sysctl_max_map_count,
1396 .maxlen = sizeof(sysctl_max_map_count),
1397 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001398 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001399 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001401#else
1402 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001403 .procname = "nr_trim_pages",
1404 .data = &sysctl_nr_trim_pages,
1405 .maxlen = sizeof(sysctl_nr_trim_pages),
1406 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001407 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001408 .extra1 = &zero,
1409 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410#endif
1411 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 .procname = "laptop_mode",
1413 .data = &laptop_mode,
1414 .maxlen = sizeof(laptop_mode),
1415 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001416 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 },
1418 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .procname = "block_dump",
1420 .data = &block_dump,
1421 .maxlen = sizeof(block_dump),
1422 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001423 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 .extra1 = &zero,
1425 },
1426 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 .procname = "vfs_cache_pressure",
1428 .data = &sysctl_vfs_cache_pressure,
1429 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1430 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001431 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 .extra1 = &zero,
1433 },
1434#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1435 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 .procname = "legacy_va_layout",
1437 .data = &sysctl_legacy_va_layout,
1438 .maxlen = sizeof(sysctl_legacy_va_layout),
1439 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001440 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .extra1 = &zero,
1442 },
1443#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001444#ifdef CONFIG_NUMA
1445 {
Christoph Lameter17436602006-01-18 17:42:32 -08001446 .procname = "zone_reclaim_mode",
1447 .data = &zone_reclaim_mode,
1448 .maxlen = sizeof(zone_reclaim_mode),
1449 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001450 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001451 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001452 },
Christoph Lameter96146342006-07-03 00:24:13 -07001453 {
Christoph Lameter96146342006-07-03 00:24:13 -07001454 .procname = "min_unmapped_ratio",
1455 .data = &sysctl_min_unmapped_ratio,
1456 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1457 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001458 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001459 .extra1 = &zero,
1460 .extra2 = &one_hundred,
1461 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001462 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001463 .procname = "min_slab_ratio",
1464 .data = &sysctl_min_slab_ratio,
1465 .maxlen = sizeof(sysctl_min_slab_ratio),
1466 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001467 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001468 .extra1 = &zero,
1469 .extra2 = &one_hundred,
1470 },
Christoph Lameter17436602006-01-18 17:42:32 -08001471#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001472#ifdef CONFIG_SMP
1473 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001474 .procname = "stat_interval",
1475 .data = &sysctl_stat_interval,
1476 .maxlen = sizeof(sysctl_stat_interval),
1477 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001478 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001479 },
1480#endif
David Howells6e141542009-12-15 19:27:45 +00001481#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001482 {
Eric Parised032182007-06-28 15:55:21 -04001483 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001484 .data = &dac_mmap_min_addr,
1485 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001486 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001487 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001488 },
David Howells6e141542009-12-15 19:27:45 +00001489#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001490#ifdef CONFIG_NUMA
1491 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001492 .procname = "numa_zonelist_order",
1493 .data = &numa_zonelist_order,
1494 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1495 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001496 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001497 },
1498#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001499#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001500 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001501 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001502 .procname = "vdso_enabled",
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001503#ifdef CONFIG_X86_32
1504 .data = &vdso32_enabled,
1505 .maxlen = sizeof(vdso32_enabled),
1506#else
Ingo Molnare6e54942006-06-27 02:53:50 -07001507 .data = &vdso_enabled,
1508 .maxlen = sizeof(vdso_enabled),
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001509#endif
Ingo Molnare6e54942006-06-27 02:53:50 -07001510 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001511 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001512 .extra1 = &zero,
1513 },
1514#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001515#ifdef CONFIG_HIGHMEM
1516 {
Bron Gondwana195cf4532008-02-04 22:29:20 -08001517 .procname = "highmem_is_dirtyable",
1518 .data = &vm_highmem_is_dirtyable,
1519 .maxlen = sizeof(vm_highmem_is_dirtyable),
1520 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001521 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf4532008-02-04 22:29:20 -08001522 .extra1 = &zero,
1523 .extra2 = &one,
1524 },
1525#endif
Andi Kleen6a460792009-09-16 11:50:15 +02001526#ifdef CONFIG_MEMORY_FAILURE
1527 {
Andi Kleen6a460792009-09-16 11:50:15 +02001528 .procname = "memory_failure_early_kill",
1529 .data = &sysctl_memory_failure_early_kill,
1530 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1531 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001532 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001533 .extra1 = &zero,
1534 .extra2 = &one,
1535 },
1536 {
Andi Kleen6a460792009-09-16 11:50:15 +02001537 .procname = "memory_failure_recovery",
1538 .data = &sysctl_memory_failure_recovery,
1539 .maxlen = sizeof(sysctl_memory_failure_recovery),
1540 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001541 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001542 .extra1 = &zero,
1543 .extra2 = &one,
1544 },
1545#endif
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001546 {
1547 .procname = "user_reserve_kbytes",
1548 .data = &sysctl_user_reserve_kbytes,
1549 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1550 .mode = 0644,
1551 .proc_handler = proc_doulongvec_minmax,
1552 },
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001553 {
1554 .procname = "admin_reserve_kbytes",
1555 .data = &sysctl_admin_reserve_kbytes,
1556 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1557 .mode = 0644,
1558 .proc_handler = proc_doulongvec_minmax,
1559 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001560 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561};
1562
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001563static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 .procname = "inode-nr",
1566 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001567 .maxlen = 2*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001569 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 },
1571 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 .procname = "inode-state",
1573 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001574 .maxlen = 7*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001576 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 },
1578 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 .procname = "file-nr",
1580 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001581 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001583 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 },
1585 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 .procname = "file-max",
1587 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001588 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001590 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 },
1592 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001593 .procname = "nr_open",
1594 .data = &sysctl_nr_open,
1595 .maxlen = sizeof(int),
1596 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001597 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001598 .extra1 = &sysctl_nr_open_min,
1599 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001600 },
1601 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 .procname = "dentry-state",
1603 .data = &dentry_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001604 .maxlen = 6*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001606 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 },
1608 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 .procname = "overflowuid",
1610 .data = &fs_overflowuid,
1611 .maxlen = sizeof(int),
1612 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001613 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 .extra1 = &minolduid,
1615 .extra2 = &maxolduid,
1616 },
1617 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 .procname = "overflowgid",
1619 .data = &fs_overflowgid,
1620 .maxlen = sizeof(int),
1621 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001622 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 .extra1 = &minolduid,
1624 .extra2 = &maxolduid,
1625 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001626#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .procname = "leases-enable",
1629 .data = &leases_enable,
1630 .maxlen = sizeof(int),
1631 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001632 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001634#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635#ifdef CONFIG_DNOTIFY
1636 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 .procname = "dir-notify-enable",
1638 .data = &dir_notify_enable,
1639 .maxlen = sizeof(int),
1640 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001641 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 },
1643#endif
1644#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001645#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 .procname = "lease-break-time",
1648 .data = &lease_break_time,
1649 .maxlen = sizeof(int),
1650 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001651 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001653#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001654#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .procname = "aio-nr",
1657 .data = &aio_nr,
1658 .maxlen = sizeof(aio_nr),
1659 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001660 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 },
1662 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 .procname = "aio-max-nr",
1664 .data = &aio_max_nr,
1665 .maxlen = sizeof(aio_max_nr),
1666 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001667 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001669#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001670#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001671 {
Robert Love0399cb02005-07-13 12:38:18 -04001672 .procname = "inotify",
1673 .mode = 0555,
1674 .child = inotify_table,
1675 },
1676#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001677#ifdef CONFIG_EPOLL
1678 {
1679 .procname = "epoll",
1680 .mode = 0555,
1681 .child = epoll_table,
1682 },
1683#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001685 {
Kees Cook800179c2012-07-25 17:29:07 -07001686 .procname = "protected_symlinks",
1687 .data = &sysctl_protected_symlinks,
1688 .maxlen = sizeof(int),
1689 .mode = 0600,
1690 .proc_handler = proc_dointvec_minmax,
1691 .extra1 = &zero,
1692 .extra2 = &one,
1693 },
1694 {
1695 .procname = "protected_hardlinks",
1696 .data = &sysctl_protected_hardlinks,
1697 .maxlen = sizeof(int),
1698 .mode = 0600,
1699 .proc_handler = proc_dointvec_minmax,
1700 .extra1 = &zero,
1701 .extra2 = &one,
1702 },
1703 {
Alan Coxd6e71142005-06-23 00:09:43 -07001704 .procname = "suid_dumpable",
1705 .data = &suid_dumpable,
1706 .maxlen = sizeof(int),
1707 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001708 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001709 .extra1 = &zero,
1710 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001711 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001712#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1713 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001714 .procname = "binfmt_misc",
1715 .mode = 0555,
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -05001716 .child = sysctl_mount_point,
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001717 },
1718#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001719 {
Jens Axboeff9da692010-06-03 14:54:39 +02001720 .procname = "pipe-max-size",
1721 .data = &pipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001722 .maxlen = sizeof(int),
1723 .mode = 0644,
Jens Axboeff9da692010-06-03 14:54:39 +02001724 .proc_handler = &pipe_proc_fn,
1725 .extra1 = &pipe_min_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001726 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001727 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728};
1729
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001730static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001731#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001732 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001733 .procname = "exception-trace",
1734 .data = &show_unhandled_signals,
1735 .maxlen = sizeof(int),
1736 .mode = 0644,
1737 .proc_handler = proc_dointvec
1738 },
1739#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001740#if defined(CONFIG_OPTPROBES)
1741 {
1742 .procname = "kprobes-optimization",
1743 .data = &sysctl_kprobes_optimization,
1744 .maxlen = sizeof(int),
1745 .mode = 0644,
1746 .proc_handler = proc_kprobes_optimization_handler,
1747 .extra1 = &zero,
1748 .extra2 = &one,
1749 },
1750#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001751 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752};
1753
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001754static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001755 { }
Robert Love0eeca282005-07-12 17:06:03 -04001756};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001758int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001759{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001760 struct ctl_table_header *hdr;
1761
1762 hdr = register_sysctl_table(sysctl_base_table);
1763 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001764 return 0;
1765}
1766
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001767#endif /* CONFIG_SYSCTL */
1768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769/*
1770 * /proc/sys support
1771 */
1772
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001773#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Kees Cookf8808302014-06-06 14:37:17 -07001775static int _proc_do_string(char *data, int maxlen, int write,
1776 char __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001777 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001778{
1779 size_t len;
1780 char __user *p;
1781 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001782
1783 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001784 *lenp = 0;
1785 return 0;
1786 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001787
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001788 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07001789 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
1790 /* Only continue writes not past the end of buffer. */
1791 len = strlen(data);
1792 if (len > maxlen - 1)
1793 len = maxlen - 1;
1794
1795 if (*ppos > len)
1796 return 0;
1797 len = *ppos;
1798 } else {
1799 /* Start writing from beginning of buffer. */
1800 len = 0;
1801 }
1802
Kees Cook2ca9bb42014-06-06 14:37:18 -07001803 *ppos += *lenp;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001804 p = buffer;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001805 while ((p - buffer) < *lenp && len < maxlen - 1) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001806 if (get_user(c, p++))
1807 return -EFAULT;
1808 if (c == 0 || c == '\n')
1809 break;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001810 data[len++] = c;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001811 }
Kees Cookf8808302014-06-06 14:37:17 -07001812 data[len] = 0;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001813 } else {
1814 len = strlen(data);
1815 if (len > maxlen)
1816 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001817
1818 if (*ppos > len) {
1819 *lenp = 0;
1820 return 0;
1821 }
1822
1823 data += *ppos;
1824 len -= *ppos;
1825
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001826 if (len > *lenp)
1827 len = *lenp;
1828 if (len)
Kees Cookf8808302014-06-06 14:37:17 -07001829 if (copy_to_user(buffer, data, len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001830 return -EFAULT;
1831 if (len < *lenp) {
Kees Cookf8808302014-06-06 14:37:17 -07001832 if (put_user('\n', buffer + len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001833 return -EFAULT;
1834 len++;
1835 }
1836 *lenp = len;
1837 *ppos += len;
1838 }
1839 return 0;
1840}
1841
Kees Cookf4aacea2014-06-06 14:37:19 -07001842static void warn_sysctl_write(struct ctl_table *table)
1843{
1844 pr_warn_once("%s wrote to %s when file position was not 0!\n"
1845 "This will not be supported in the future. To silence this\n"
1846 "warning, set kernel.sysctl_writes_strict = -1\n",
1847 current->comm, table->procname);
1848}
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850/**
1851 * proc_dostring - read a string sysctl
1852 * @table: the sysctl table
1853 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 * @buffer: the user buffer
1855 * @lenp: the size of the user buffer
1856 * @ppos: file position
1857 *
1858 * Reads/writes a string from/to the user buffer. If the kernel
1859 * buffer provided is not large enough to hold the string, the
1860 * string is truncated. The copied string is %NULL-terminated.
1861 * If the string is being read by the user process, it is copied
1862 * and a newline '\n' is added. It is truncated if the buffer is
1863 * not large enough.
1864 *
1865 * Returns 0 on success.
1866 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001867int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 void __user *buffer, size_t *lenp, loff_t *ppos)
1869{
Kees Cookf4aacea2014-06-06 14:37:19 -07001870 if (write && *ppos && sysctl_writes_strict == SYSCTL_WRITES_WARN)
1871 warn_sysctl_write(table);
1872
Kees Cookf8808302014-06-06 14:37:17 -07001873 return _proc_do_string((char *)(table->data), table->maxlen, write,
1874 (char __user *)buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875}
1876
Amerigo Wang00b7c332010-05-05 00:26:45 +00001877static size_t proc_skip_spaces(char **buf)
1878{
1879 size_t ret;
1880 char *tmp = skip_spaces(*buf);
1881 ret = tmp - *buf;
1882 *buf = tmp;
1883 return ret;
1884}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Octavian Purdila9f977fb2010-05-05 00:26:55 +00001886static void proc_skip_char(char **buf, size_t *size, const char v)
1887{
1888 while (*size) {
1889 if (**buf != v)
1890 break;
1891 (*size)--;
1892 (*buf)++;
1893 }
1894}
1895
Amerigo Wang00b7c332010-05-05 00:26:45 +00001896#define TMPBUFLEN 22
1897/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001898 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00001899 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001900 * @buf: a kernel buffer
1901 * @size: size of the kernel buffer
1902 * @val: this is where the number will be stored
1903 * @neg: set to %TRUE if number is negative
1904 * @perm_tr: a vector which contains the allowed trailers
1905 * @perm_tr_len: size of the perm_tr vector
1906 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00001907 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001908 * In case of success %0 is returned and @buf and @size are updated with
1909 * the amount of bytes read. If @tr is non-NULL and a trailing
1910 * character exists (size is non-zero after returning from this
1911 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00001912 */
1913static int proc_get_long(char **buf, size_t *size,
1914 unsigned long *val, bool *neg,
1915 const char *perm_tr, unsigned perm_tr_len, char *tr)
1916{
1917 int len;
1918 char *p, tmp[TMPBUFLEN];
1919
1920 if (!*size)
1921 return -EINVAL;
1922
1923 len = *size;
1924 if (len > TMPBUFLEN - 1)
1925 len = TMPBUFLEN - 1;
1926
1927 memcpy(tmp, *buf, len);
1928
1929 tmp[len] = 0;
1930 p = tmp;
1931 if (*p == '-' && *size > 1) {
1932 *neg = true;
1933 p++;
1934 } else
1935 *neg = false;
1936 if (!isdigit(*p))
1937 return -EINVAL;
1938
1939 *val = simple_strtoul(p, &p, 0);
1940
1941 len = p - tmp;
1942
1943 /* We don't know if the next char is whitespace thus we may accept
1944 * invalid integers (e.g. 1234...a) or two integers instead of one
1945 * (e.g. 123...1). So lets not allow such large numbers. */
1946 if (len == TMPBUFLEN - 1)
1947 return -EINVAL;
1948
1949 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
1950 return -EINVAL;
1951
1952 if (tr && (len < *size))
1953 *tr = *p;
1954
1955 *buf += len;
1956 *size -= len;
1957
1958 return 0;
1959}
1960
1961/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001962 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00001963 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001964 * @buf: the user buffer
1965 * @size: the size of the user buffer
1966 * @val: the integer to be converted
1967 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00001968 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001969 * In case of success %0 is returned and @buf and @size are updated with
1970 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00001971 */
1972static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
1973 bool neg)
1974{
1975 int len;
1976 char tmp[TMPBUFLEN], *p = tmp;
1977
1978 sprintf(p, "%s%lu", neg ? "-" : "", val);
1979 len = strlen(tmp);
1980 if (len > *size)
1981 len = *size;
1982 if (copy_to_user(*buf, tmp, len))
1983 return -EFAULT;
1984 *size -= len;
1985 *buf += len;
1986 return 0;
1987}
1988#undef TMPBUFLEN
1989
1990static int proc_put_char(void __user **buf, size_t *size, char c)
1991{
1992 if (*size) {
1993 char __user **buffer = (char __user **)buf;
1994 if (put_user(c, *buffer))
1995 return -EFAULT;
1996 (*size)--, (*buffer)++;
1997 *buf = *buffer;
1998 }
1999 return 0;
2000}
2001
2002static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int *valp,
2004 int write, void *data)
2005{
2006 if (write) {
Heinrich Schuchardt230633d2015-04-16 12:48:07 -07002007 if (*negp) {
2008 if (*lvalp > (unsigned long) INT_MAX + 1)
2009 return -EINVAL;
2010 *valp = -*lvalp;
2011 } else {
2012 if (*lvalp > (unsigned long) INT_MAX)
2013 return -EINVAL;
2014 *valp = *lvalp;
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 } else {
2017 int val = *valp;
2018 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002019 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002020 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002022 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 *lvalp = (unsigned long)val;
2024 }
2025 }
2026 return 0;
2027}
2028
Amerigo Wang00b7c332010-05-05 00:26:45 +00002029static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2030
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002031static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002032 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002033 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002034 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 int write, void *data),
2036 void *data)
2037{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002038 int *i, vleft, first = 1, err = 0;
2039 unsigned long page = 0;
2040 size_t left;
2041 char *kbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Amerigo Wang00b7c332010-05-05 00:26:45 +00002043 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 *lenp = 0;
2045 return 0;
2046 }
2047
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002048 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 vleft = table->maxlen / sizeof(*i);
2050 left = *lenp;
2051
2052 if (!conv)
2053 conv = do_proc_dointvec_conv;
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07002056 if (*ppos) {
2057 switch (sysctl_writes_strict) {
2058 case SYSCTL_WRITES_STRICT:
2059 goto out;
2060 case SYSCTL_WRITES_WARN:
2061 warn_sysctl_write(table);
2062 break;
2063 default:
2064 break;
2065 }
2066 }
2067
Amerigo Wang00b7c332010-05-05 00:26:45 +00002068 if (left > PAGE_SIZE - 1)
2069 left = PAGE_SIZE - 1;
2070 page = __get_free_page(GFP_TEMPORARY);
2071 kbuf = (char *) page;
2072 if (!kbuf)
2073 return -ENOMEM;
2074 if (copy_from_user(kbuf, buffer, left)) {
2075 err = -EFAULT;
2076 goto free;
2077 }
2078 kbuf[left] = 0;
2079 }
2080
2081 for (; left && vleft--; i++, first=0) {
2082 unsigned long lval;
2083 bool neg;
2084
2085 if (write) {
2086 left -= proc_skip_spaces(&kbuf);
2087
J. R. Okajima563b0462010-05-25 16:10:14 -07002088 if (!left)
2089 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002090 err = proc_get_long(&kbuf, &left, &lval, &neg,
2091 proc_wspace_sep,
2092 sizeof(proc_wspace_sep), NULL);
2093 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002095 if (conv(&neg, &lval, i, 1, data)) {
2096 err = -EINVAL;
2097 break;
2098 }
2099 } else {
2100 if (conv(&neg, &lval, i, 0, data)) {
2101 err = -EINVAL;
2102 break;
2103 }
2104 if (!first)
2105 err = proc_put_char(&buffer, &left, '\t');
2106 if (err)
2107 break;
2108 err = proc_put_long(&buffer, &left, lval, neg);
2109 if (err)
2110 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002113
2114 if (!write && !first && left && !err)
2115 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07002116 if (write && !err && left)
Amerigo Wang00b7c332010-05-05 00:26:45 +00002117 left -= proc_skip_spaces(&kbuf);
2118free:
2119 if (write) {
2120 free_page(page);
2121 if (first)
2122 return err ? : -EINVAL;
2123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002125out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002127 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002130static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002131 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002132 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002133 int write, void *data),
2134 void *data)
2135{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002136 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002137 buffer, lenp, ppos, conv, data);
2138}
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140/**
2141 * proc_dointvec - read a vector of integers
2142 * @table: the sysctl table
2143 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 * @buffer: the user buffer
2145 * @lenp: the size of the user buffer
2146 * @ppos: file position
2147 *
2148 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2149 * values from/to the user buffer, treated as an ASCII string.
2150 *
2151 * Returns 0 on success.
2152 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002153int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 void __user *buffer, size_t *lenp, loff_t *ppos)
2155{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002156 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 NULL,NULL);
2158}
2159
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002160/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002161 * Taint values can only be increased
2162 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002163 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002164static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002165 void __user *buffer, size_t *lenp, loff_t *ppos)
2166{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002167 struct ctl_table t;
2168 unsigned long tmptaint = get_taint();
2169 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002170
Bastian Blank91fcd412007-04-23 14:41:14 -07002171 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002172 return -EPERM;
2173
Andi Kleen25ddbb12008-10-15 22:01:41 -07002174 t = *table;
2175 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002176 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002177 if (err < 0)
2178 return err;
2179
2180 if (write) {
2181 /*
2182 * Poor man's atomic or. Not worth adding a primitive
2183 * to everyone's atomic.h for this
2184 */
2185 int i;
2186 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2187 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302188 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002189 }
2190 }
2191
2192 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002193}
2194
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002195#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002196static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002197 void __user *buffer, size_t *lenp, loff_t *ppos)
2198{
2199 if (write && !capable(CAP_SYS_ADMIN))
2200 return -EPERM;
2201
2202 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2203}
2204#endif
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206struct do_proc_dointvec_minmax_conv_param {
2207 int *min;
2208 int *max;
2209};
2210
Amerigo Wang00b7c332010-05-05 00:26:45 +00002211static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2212 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 int write, void *data)
2214{
2215 struct do_proc_dointvec_minmax_conv_param *param = data;
2216 if (write) {
2217 int val = *negp ? -*lvalp : *lvalp;
2218 if ((param->min && *param->min > val) ||
2219 (param->max && *param->max < val))
2220 return -EINVAL;
2221 *valp = val;
2222 } else {
2223 int val = *valp;
2224 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002225 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002226 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002228 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 *lvalp = (unsigned long)val;
2230 }
2231 }
2232 return 0;
2233}
2234
2235/**
2236 * proc_dointvec_minmax - read a vector of integers with min/max values
2237 * @table: the sysctl table
2238 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 * @buffer: the user buffer
2240 * @lenp: the size of the user buffer
2241 * @ppos: file position
2242 *
2243 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2244 * values from/to the user buffer, treated as an ASCII string.
2245 *
2246 * This routine will ensure the values are within the range specified by
2247 * table->extra1 (min) and table->extra2 (max).
2248 *
2249 * Returns 0 on success.
2250 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002251int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 void __user *buffer, size_t *lenp, loff_t *ppos)
2253{
2254 struct do_proc_dointvec_minmax_conv_param param = {
2255 .min = (int *) table->extra1,
2256 .max = (int *) table->extra2,
2257 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002258 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 do_proc_dointvec_minmax_conv, &param);
2260}
2261
Kees Cook54b50192012-07-30 14:39:18 -07002262static void validate_coredump_safety(void)
2263{
Alex Kelly046d6622012-10-04 17:15:23 -07002264#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002265 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002266 core_pattern[0] != '/' && core_pattern[0] != '|') {
2267 printk(KERN_WARNING "Unsafe core_pattern used with "\
2268 "suid_dumpable=2. Pipe handler or fully qualified "\
2269 "core dump path required.\n");
2270 }
Alex Kelly046d6622012-10-04 17:15:23 -07002271#endif
Kees Cook54b50192012-07-30 14:39:18 -07002272}
2273
2274static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2275 void __user *buffer, size_t *lenp, loff_t *ppos)
2276{
2277 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2278 if (!error)
2279 validate_coredump_safety();
2280 return error;
2281}
2282
Alex Kelly046d6622012-10-04 17:15:23 -07002283#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002284static int proc_dostring_coredump(struct ctl_table *table, int write,
2285 void __user *buffer, size_t *lenp, loff_t *ppos)
2286{
2287 int error = proc_dostring(table, write, buffer, lenp, ppos);
2288 if (!error)
2289 validate_coredump_safety();
2290 return error;
2291}
Alex Kelly046d6622012-10-04 17:15:23 -07002292#endif
Kees Cook54b50192012-07-30 14:39:18 -07002293
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002294static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 void __user *buffer,
2296 size_t *lenp, loff_t *ppos,
2297 unsigned long convmul,
2298 unsigned long convdiv)
2299{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002300 unsigned long *i, *min, *max;
2301 int vleft, first = 1, err = 0;
2302 unsigned long page = 0;
2303 size_t left;
2304 char *kbuf;
2305
2306 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 *lenp = 0;
2308 return 0;
2309 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002310
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002311 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 min = (unsigned long *) table->extra1;
2313 max = (unsigned long *) table->extra2;
2314 vleft = table->maxlen / sizeof(unsigned long);
2315 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002316
2317 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07002318 if (*ppos) {
2319 switch (sysctl_writes_strict) {
2320 case SYSCTL_WRITES_STRICT:
2321 goto out;
2322 case SYSCTL_WRITES_WARN:
2323 warn_sysctl_write(table);
2324 break;
2325 default:
2326 break;
2327 }
2328 }
2329
Amerigo Wang00b7c332010-05-05 00:26:45 +00002330 if (left > PAGE_SIZE - 1)
2331 left = PAGE_SIZE - 1;
2332 page = __get_free_page(GFP_TEMPORARY);
2333 kbuf = (char *) page;
2334 if (!kbuf)
2335 return -ENOMEM;
2336 if (copy_from_user(kbuf, buffer, left)) {
2337 err = -EFAULT;
2338 goto free;
2339 }
2340 kbuf[left] = 0;
2341 }
2342
Eric Dumazet27b3d802010-10-07 12:59:29 -07002343 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002344 unsigned long val;
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002347 bool neg;
2348
2349 left -= proc_skip_spaces(&kbuf);
2350
2351 err = proc_get_long(&kbuf, &left, &val, &neg,
2352 proc_wspace_sep,
2353 sizeof(proc_wspace_sep), NULL);
2354 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 break;
2356 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 continue;
2358 if ((min && val < *min) || (max && val > *max))
2359 continue;
2360 *i = val;
2361 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002362 val = convdiv * (*i) / convmul;
Chen Gang78338192013-11-12 15:11:21 -08002363 if (!first) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002364 err = proc_put_char(&buffer, &left, '\t');
Chen Gang78338192013-11-12 15:11:21 -08002365 if (err)
2366 break;
2367 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002368 err = proc_put_long(&buffer, &left, val, false);
2369 if (err)
2370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 }
2372 }
2373
Amerigo Wang00b7c332010-05-05 00:26:45 +00002374 if (!write && !first && left && !err)
2375 err = proc_put_char(&buffer, &left, '\n');
2376 if (write && !err)
2377 left -= proc_skip_spaces(&kbuf);
2378free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002380 free_page(page);
2381 if (first)
2382 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002385out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002387 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002390static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002391 void __user *buffer,
2392 size_t *lenp, loff_t *ppos,
2393 unsigned long convmul,
2394 unsigned long convdiv)
2395{
2396 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002397 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002398}
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400/**
2401 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2402 * @table: the sysctl table
2403 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 * @buffer: the user buffer
2405 * @lenp: the size of the user buffer
2406 * @ppos: file position
2407 *
2408 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2409 * values from/to the user buffer, treated as an ASCII string.
2410 *
2411 * This routine will ensure the values are within the range specified by
2412 * table->extra1 (min) and table->extra2 (max).
2413 *
2414 * Returns 0 on success.
2415 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002416int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 void __user *buffer, size_t *lenp, loff_t *ppos)
2418{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002419 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
2422/**
2423 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2424 * @table: the sysctl table
2425 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 * @buffer: the user buffer
2427 * @lenp: the size of the user buffer
2428 * @ppos: file position
2429 *
2430 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2431 * values from/to the user buffer, treated as an ASCII string. The values
2432 * are treated as milliseconds, and converted to jiffies when they are stored.
2433 *
2434 * This routine will ensure the values are within the range specified by
2435 * table->extra1 (min) and table->extra2 (max).
2436 *
2437 * Returns 0 on success.
2438 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002439int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 void __user *buffer,
2441 size_t *lenp, loff_t *ppos)
2442{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002443 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 lenp, ppos, HZ, 1000l);
2445}
2446
2447
Amerigo Wang00b7c332010-05-05 00:26:45 +00002448static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int *valp,
2450 int write, void *data)
2451{
2452 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002453 if (*lvalp > LONG_MAX / HZ)
2454 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2456 } else {
2457 int val = *valp;
2458 unsigned long lval;
2459 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002460 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002461 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002463 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 lval = (unsigned long)val;
2465 }
2466 *lvalp = lval / HZ;
2467 }
2468 return 0;
2469}
2470
Amerigo Wang00b7c332010-05-05 00:26:45 +00002471static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 int *valp,
2473 int write, void *data)
2474{
2475 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002476 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2477 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2479 } else {
2480 int val = *valp;
2481 unsigned long lval;
2482 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002483 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002484 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002486 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 lval = (unsigned long)val;
2488 }
2489 *lvalp = jiffies_to_clock_t(lval);
2490 }
2491 return 0;
2492}
2493
Amerigo Wang00b7c332010-05-05 00:26:45 +00002494static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 int *valp,
2496 int write, void *data)
2497{
2498 if (write) {
Francesco Fuscod738ce82013-07-24 10:39:07 +02002499 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2500
2501 if (jif > INT_MAX)
2502 return 1;
2503 *valp = (int)jif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 } else {
2505 int val = *valp;
2506 unsigned long lval;
2507 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002508 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002509 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002511 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 lval = (unsigned long)val;
2513 }
2514 *lvalp = jiffies_to_msecs(lval);
2515 }
2516 return 0;
2517}
2518
2519/**
2520 * proc_dointvec_jiffies - read a vector of integers as seconds
2521 * @table: the sysctl table
2522 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 * @buffer: the user buffer
2524 * @lenp: the size of the user buffer
2525 * @ppos: file position
2526 *
2527 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2528 * values from/to the user buffer, treated as an ASCII string.
2529 * The values read are assumed to be in seconds, and are converted into
2530 * jiffies.
2531 *
2532 * Returns 0 on success.
2533 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002534int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 void __user *buffer, size_t *lenp, loff_t *ppos)
2536{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002537 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 do_proc_dointvec_jiffies_conv,NULL);
2539}
2540
2541/**
2542 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2543 * @table: the sysctl table
2544 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 * @buffer: the user buffer
2546 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002547 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 *
2549 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2550 * values from/to the user buffer, treated as an ASCII string.
2551 * The values read are assumed to be in 1/USER_HZ seconds, and
2552 * are converted into jiffies.
2553 *
2554 * Returns 0 on success.
2555 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002556int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 void __user *buffer, size_t *lenp, loff_t *ppos)
2558{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002559 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 do_proc_dointvec_userhz_jiffies_conv,NULL);
2561}
2562
2563/**
2564 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2565 * @table: the sysctl table
2566 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 * @buffer: the user buffer
2568 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002569 * @ppos: file position
2570 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 *
2572 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2573 * values from/to the user buffer, treated as an ASCII string.
2574 * The values read are assumed to be in 1/1000 seconds, and
2575 * are converted into jiffies.
2576 *
2577 * Returns 0 on success.
2578 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002579int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 void __user *buffer, size_t *lenp, loff_t *ppos)
2581{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002582 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 do_proc_dointvec_ms_jiffies_conv, NULL);
2584}
2585
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002586static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002587 void __user *buffer, size_t *lenp, loff_t *ppos)
2588{
2589 struct pid *new_pid;
2590 pid_t tmp;
2591 int r;
2592
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002593 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002594
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002595 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002596 lenp, ppos, NULL, NULL);
2597 if (r || !write)
2598 return r;
2599
2600 new_pid = find_get_pid(tmp);
2601 if (!new_pid)
2602 return -ESRCH;
2603
2604 put_pid(xchg(&cad_pid, new_pid));
2605 return 0;
2606}
2607
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002608/**
2609 * proc_do_large_bitmap - read/write from/to a large bitmap
2610 * @table: the sysctl table
2611 * @write: %TRUE if this is a write to the sysctl file
2612 * @buffer: the user buffer
2613 * @lenp: the size of the user buffer
2614 * @ppos: file position
2615 *
2616 * The bitmap is stored at table->data and the bitmap length (in bits)
2617 * in table->maxlen.
2618 *
2619 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2620 * large bitmaps may be represented in a compact manner. Writing into
2621 * the file will clear the bitmap then update it with the given input.
2622 *
2623 * Returns 0 on success.
2624 */
2625int proc_do_large_bitmap(struct ctl_table *table, int write,
2626 void __user *buffer, size_t *lenp, loff_t *ppos)
2627{
2628 int err = 0;
2629 bool first = 1;
2630 size_t left = *lenp;
2631 unsigned long bitmap_len = table->maxlen;
WANG Cong122ff242014-05-12 16:04:53 -07002632 unsigned long *bitmap = *(unsigned long **) table->data;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002633 unsigned long *tmp_bitmap = NULL;
2634 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
2635
WANG Cong122ff242014-05-12 16:04:53 -07002636 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002637 *lenp = 0;
2638 return 0;
2639 }
2640
2641 if (write) {
2642 unsigned long page = 0;
2643 char *kbuf;
2644
2645 if (left > PAGE_SIZE - 1)
2646 left = PAGE_SIZE - 1;
2647
2648 page = __get_free_page(GFP_TEMPORARY);
2649 kbuf = (char *) page;
2650 if (!kbuf)
2651 return -ENOMEM;
2652 if (copy_from_user(kbuf, buffer, left)) {
2653 free_page(page);
2654 return -EFAULT;
2655 }
2656 kbuf[left] = 0;
2657
2658 tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
2659 GFP_KERNEL);
2660 if (!tmp_bitmap) {
2661 free_page(page);
2662 return -ENOMEM;
2663 }
2664 proc_skip_char(&kbuf, &left, '\n');
2665 while (!err && left) {
2666 unsigned long val_a, val_b;
2667 bool neg;
2668
2669 err = proc_get_long(&kbuf, &left, &val_a, &neg, tr_a,
2670 sizeof(tr_a), &c);
2671 if (err)
2672 break;
2673 if (val_a >= bitmap_len || neg) {
2674 err = -EINVAL;
2675 break;
2676 }
2677
2678 val_b = val_a;
2679 if (left) {
2680 kbuf++;
2681 left--;
2682 }
2683
2684 if (c == '-') {
2685 err = proc_get_long(&kbuf, &left, &val_b,
2686 &neg, tr_b, sizeof(tr_b),
2687 &c);
2688 if (err)
2689 break;
2690 if (val_b >= bitmap_len || neg ||
2691 val_a > val_b) {
2692 err = -EINVAL;
2693 break;
2694 }
2695 if (left) {
2696 kbuf++;
2697 left--;
2698 }
2699 }
2700
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002701 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002702 first = 0;
2703 proc_skip_char(&kbuf, &left, '\n');
2704 }
2705 free_page(page);
2706 } else {
2707 unsigned long bit_a, bit_b = 0;
2708
2709 while (left) {
2710 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
2711 if (bit_a >= bitmap_len)
2712 break;
2713 bit_b = find_next_zero_bit(bitmap, bitmap_len,
2714 bit_a + 1) - 1;
2715
2716 if (!first) {
2717 err = proc_put_char(&buffer, &left, ',');
2718 if (err)
2719 break;
2720 }
2721 err = proc_put_long(&buffer, &left, bit_a, false);
2722 if (err)
2723 break;
2724 if (bit_a != bit_b) {
2725 err = proc_put_char(&buffer, &left, '-');
2726 if (err)
2727 break;
2728 err = proc_put_long(&buffer, &left, bit_b, false);
2729 if (err)
2730 break;
2731 }
2732
2733 first = 0; bit_b++;
2734 }
2735 if (!err)
2736 err = proc_put_char(&buffer, &left, '\n');
2737 }
2738
2739 if (!err) {
2740 if (write) {
2741 if (*ppos)
2742 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
2743 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002744 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002745 }
2746 kfree(tmp_bitmap);
2747 *lenp -= left;
2748 *ppos += *lenp;
2749 return 0;
2750 } else {
2751 kfree(tmp_bitmap);
2752 return err;
2753 }
2754}
2755
Jovi Zhang55610502011-01-12 17:00:45 -08002756#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002758int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 void __user *buffer, size_t *lenp, loff_t *ppos)
2760{
2761 return -ENOSYS;
2762}
2763
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002764int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 void __user *buffer, size_t *lenp, loff_t *ppos)
2766{
2767 return -ENOSYS;
2768}
2769
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002770int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 void __user *buffer, size_t *lenp, loff_t *ppos)
2772{
2773 return -ENOSYS;
2774}
2775
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002776int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 void __user *buffer, size_t *lenp, loff_t *ppos)
2778{
2779 return -ENOSYS;
2780}
2781
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002782int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 void __user *buffer, size_t *lenp, loff_t *ppos)
2784{
2785 return -ENOSYS;
2786}
2787
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002788int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 void __user *buffer, size_t *lenp, loff_t *ppos)
2790{
2791 return -ENOSYS;
2792}
2793
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002794int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 void __user *buffer, size_t *lenp, loff_t *ppos)
2796{
2797 return -ENOSYS;
2798}
2799
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002800int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 void __user *buffer,
2802 size_t *lenp, loff_t *ppos)
2803{
2804 return -ENOSYS;
2805}
2806
2807
Jovi Zhang55610502011-01-12 17:00:45 -08002808#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810/*
2811 * No sense putting this after each symbol definition, twice,
2812 * exception granted :-)
2813 */
2814EXPORT_SYMBOL(proc_dointvec);
2815EXPORT_SYMBOL(proc_dointvec_jiffies);
2816EXPORT_SYMBOL(proc_dointvec_minmax);
2817EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2818EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2819EXPORT_SYMBOL(proc_dostring);
2820EXPORT_SYMBOL(proc_doulongvec_minmax);
2821EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);