blob: 0ec6907a16b317409c56a14ca1a53f706b4a1af9 [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;
Johannes Weiner795ae7a2016-03-17 14:19:14 -0700129static int one_thousand = 1000;
Dave Youngaf913222009-09-22 16:43:33 -0700130#ifdef CONFIG_PRINTK
131static int ten_thousand = 10000;
132#endif
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -0300133#ifdef CONFIG_PERF_EVENTS
134static int six_hundred_forty_kb = 640 * 1024;
135#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700136
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700137/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
138static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
141static int maxolduid = 65535;
142static int minolduid;
143
144static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700145static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Liu Hua80df2842014-04-07 15:38:57 -0700147/*this is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs */
148#ifdef CONFIG_DETECT_HUNG_TASK
149static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
150#endif
151
Dave Youngd14f1722010-02-25 20:28:57 -0500152#ifdef CONFIG_INOTIFY_USER
153#include <linux/inotify.h>
154#endif
David S. Miller72c57ed2008-09-11 23:29:54 -0700155#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif
157
158#ifdef __hppa__
159extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530160#endif
161
162#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163extern int unaligned_enabled;
164#endif
165
Jes Sorensend2b176e2006-02-28 09:42:23 -0800166#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800167extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800168#endif
169
Vineet Guptab6fca722013-01-09 20:06:28 +0530170#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
171extern int no_unaligned_warning;
172#endif
173
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700174#ifdef CONFIG_PROC_SYSCTL
Kees Cookf4aacea2014-06-06 14:37:19 -0700175
176#define SYSCTL_WRITES_LEGACY -1
177#define SYSCTL_WRITES_WARN 0
178#define SYSCTL_WRITES_STRICT 1
179
Kees Cook41662f52016-01-20 15:00:45 -0800180static int sysctl_writes_strict = SYSCTL_WRITES_STRICT;
Kees Cookf4aacea2014-06-06 14:37:19 -0700181
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700182static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700183 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700184static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800185 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700186#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700187
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700188#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700189static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700190 void __user *buffer, size_t *lenp, loff_t *ppos);
191#endif
192
Kees Cook54b50192012-07-30 14:39:18 -0700193static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
194 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700195#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700196static int proc_dostring_coredump(struct ctl_table *table, int write,
197 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700198#endif
Kees Cook54b50192012-07-30 14:39:18 -0700199
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700200#ifdef CONFIG_MAGIC_SYSRQ
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -0800201/* Note: sysrq code uses it's own private copy */
Ben Hutchings8eaede42013-10-07 01:05:46 +0100202static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700203
Joe Perches6f8fd1d2014-06-06 14:38:08 -0700204static int sysrq_sysctl_handler(struct ctl_table *table, int write,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700205 void __user *buffer, size_t *lenp,
206 loff_t *ppos)
207{
208 int error;
209
210 error = proc_dointvec(table, write, buffer, lenp, ppos);
211 if (error)
212 return error;
213
214 if (write)
215 sysrq_toggle_support(__sysrq_enabled);
216
217 return 0;
218}
219
220#endif
221
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700222static struct ctl_table kern_table[];
223static struct ctl_table vm_table[];
224static struct ctl_table fs_table[];
225static struct ctl_table debug_table[];
226static struct ctl_table dev_table[];
227extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800228#ifdef CONFIG_EPOLL
229extern struct ctl_table epoll_table[];
230#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
233int sysctl_legacy_va_layout;
234#endif
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/* The default sysctl tables: */
237
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800238static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 .procname = "kernel",
241 .mode = 0555,
242 .child = kern_table,
243 },
244 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .procname = "vm",
246 .mode = 0555,
247 .child = vm_table,
248 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .procname = "fs",
251 .mode = 0555,
252 .child = fs_table,
253 },
254 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 .procname = "debug",
256 .mode = 0555,
257 .child = debug_table,
258 },
259 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .procname = "dev",
261 .mode = 0555,
262 .child = dev_table,
263 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700264 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
Ingo Molnar77e54a12007-07-09 18:52:00 +0200267#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100268static int min_sched_granularity_ns = 100000; /* 100 usecs */
269static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
270static int min_wakeup_granularity_ns; /* 0 usecs */
271static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200272#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100273static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
274static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200275#endif /* CONFIG_SMP */
276#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200277
Mel Gorman5e771902010-05-24 14:32:31 -0700278#ifdef CONFIG_COMPACTION
279static int min_extfrag_threshold;
280static int max_extfrag_threshold = 1000;
281#endif
282
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700283static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200284 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200285 .procname = "sched_child_runs_first",
286 .data = &sysctl_sched_child_runs_first,
287 .maxlen = sizeof(unsigned int),
288 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800289 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200290 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200291#ifdef CONFIG_SCHED_DEBUG
292 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100293 .procname = "sched_min_granularity_ns",
294 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200295 .maxlen = sizeof(unsigned int),
296 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800297 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100298 .extra1 = &min_sched_granularity_ns,
299 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200300 },
301 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200302 .procname = "sched_latency_ns",
303 .data = &sysctl_sched_latency,
304 .maxlen = sizeof(unsigned int),
305 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800306 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200307 .extra1 = &min_sched_granularity_ns,
308 .extra2 = &max_sched_granularity_ns,
309 },
310 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200311 .procname = "sched_wakeup_granularity_ns",
312 .data = &sysctl_sched_wakeup_granularity,
313 .maxlen = sizeof(unsigned int),
314 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800315 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200316 .extra1 = &min_wakeup_granularity_ns,
317 .extra2 = &max_wakeup_granularity_ns,
318 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200319#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200320 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100321 .procname = "sched_tunable_scaling",
322 .data = &sysctl_sched_tunable_scaling,
323 .maxlen = sizeof(enum sched_tunable_scaling),
324 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800325 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100326 .extra1 = &min_sched_tunable_scaling,
327 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200328 },
329 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900330 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200331 .data = &sysctl_sched_migration_cost,
332 .maxlen = sizeof(unsigned int),
333 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800334 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200335 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100336 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100337 .procname = "sched_nr_migrate",
338 .data = &sysctl_sched_nr_migrate,
339 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100340 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800341 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100342 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530343 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900344 .procname = "sched_time_avg_ms",
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200345 .data = &sysctl_sched_time_avg,
346 .maxlen = sizeof(unsigned int),
347 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800348 .proc_handler = proc_dointvec,
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200349 },
350 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900351 .procname = "sched_shares_window_ns",
Paul Turnera7a4f8a2010-11-15 15:47:06 -0800352 .data = &sysctl_sched_shares_window,
353 .maxlen = sizeof(unsigned int),
354 .mode = 0644,
355 .proc_handler = proc_dointvec,
356 },
Mel Gormancb251762016-02-05 09:08:36 +0000357#ifdef CONFIG_SCHEDSTATS
358 {
359 .procname = "sched_schedstats",
360 .data = NULL,
361 .maxlen = sizeof(unsigned int),
362 .mode = 0644,
363 .proc_handler = sysctl_schedstats,
364 .extra1 = &zero,
365 .extra2 = &one,
366 },
367#endif /* CONFIG_SCHEDSTATS */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200368#endif /* CONFIG_SMP */
369#ifdef CONFIG_NUMA_BALANCING
370 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200371 .procname = "numa_balancing_scan_delay_ms",
372 .data = &sysctl_numa_balancing_scan_delay,
373 .maxlen = sizeof(unsigned int),
374 .mode = 0644,
375 .proc_handler = proc_dointvec,
376 },
377 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200378 .procname = "numa_balancing_scan_period_min_ms",
379 .data = &sysctl_numa_balancing_scan_period_min,
380 .maxlen = sizeof(unsigned int),
381 .mode = 0644,
382 .proc_handler = proc_dointvec,
383 },
384 {
385 .procname = "numa_balancing_scan_period_max_ms",
386 .data = &sysctl_numa_balancing_scan_period_max,
387 .maxlen = sizeof(unsigned int),
388 .mode = 0644,
389 .proc_handler = proc_dointvec,
390 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200391 {
392 .procname = "numa_balancing_scan_size_mb",
393 .data = &sysctl_numa_balancing_scan_size,
394 .maxlen = sizeof(unsigned int),
395 .mode = 0644,
Kirill Tkhai64192652014-10-16 14:39:37 +0400396 .proc_handler = proc_dointvec_minmax,
397 .extra1 = &one,
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200398 },
Mel Gorman3a7053b2013-10-07 11:29:00 +0100399 {
Andi Kleen54a43d52014-01-23 15:53:13 -0800400 .procname = "numa_balancing",
401 .data = NULL, /* filled in by handler */
402 .maxlen = sizeof(unsigned int),
403 .mode = 0644,
404 .proc_handler = sysctl_numa_balancing,
405 .extra1 = &zero,
406 .extra2 = &one,
407 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200408#endif /* CONFIG_NUMA_BALANCING */
409#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200410 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100411 .procname = "sched_rt_period_us",
412 .data = &sysctl_sched_rt_period,
413 .maxlen = sizeof(unsigned int),
414 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800415 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100416 },
417 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100418 .procname = "sched_rt_runtime_us",
419 .data = &sysctl_sched_rt_runtime,
420 .maxlen = sizeof(int),
421 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800422 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100423 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600424 {
425 .procname = "sched_rr_timeslice_ms",
426 .data = &sched_rr_timeslice,
427 .maxlen = sizeof(int),
428 .mode = 0644,
429 .proc_handler = sched_rr_handler,
430 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100431#ifdef CONFIG_SCHED_AUTOGROUP
432 {
433 .procname = "sched_autogroup_enabled",
434 .data = &sysctl_sched_autogroup_enabled,
435 .maxlen = sizeof(unsigned int),
436 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800437 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100438 .extra1 = &zero,
439 .extra2 = &one,
440 },
441#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700442#ifdef CONFIG_CFS_BANDWIDTH
443 {
444 .procname = "sched_cfs_bandwidth_slice_us",
445 .data = &sysctl_sched_cfs_bandwidth_slice,
446 .maxlen = sizeof(unsigned int),
447 .mode = 0644,
448 .proc_handler = proc_dointvec_minmax,
449 .extra1 = &one,
450 },
451#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700452#ifdef CONFIG_PROVE_LOCKING
453 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700454 .procname = "prove_locking",
455 .data = &prove_locking,
456 .maxlen = sizeof(int),
457 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800458 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700459 },
460#endif
461#ifdef CONFIG_LOCK_STAT
462 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700463 .procname = "lock_stat",
464 .data = &lock_stat,
465 .maxlen = sizeof(int),
466 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800467 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700468 },
469#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200470 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .procname = "panic",
472 .data = &panic_timeout,
473 .maxlen = sizeof(int),
474 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800475 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 },
Alex Kelly046d6622012-10-04 17:15:23 -0700477#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .procname = "core_uses_pid",
480 .data = &core_uses_pid,
481 .maxlen = sizeof(int),
482 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800483 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 },
485 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 .procname = "core_pattern",
487 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700488 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700490 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 },
Neil Hormana2939802009-09-23 15:56:56 -0700492 {
Neil Hormana2939802009-09-23 15:56:56 -0700493 .procname = "core_pipe_limit",
494 .data = &core_pipe_limit,
495 .maxlen = sizeof(unsigned int),
496 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800497 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700498 },
Alex Kelly046d6622012-10-04 17:15:23 -0700499#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800500#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700503 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800504 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800505 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 },
Kees Cookf4aacea2014-06-06 14:37:19 -0700507 {
508 .procname = "sysctl_writes_strict",
509 .data = &sysctl_writes_strict,
510 .maxlen = sizeof(int),
511 .mode = 0644,
512 .proc_handler = proc_dointvec_minmax,
513 .extra1 = &neg_one,
514 .extra2 = &one,
515 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800516#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100517#ifdef CONFIG_LATENCYTOP
518 {
519 .procname = "latencytop",
520 .data = &latencytop_enabled,
521 .maxlen = sizeof(int),
522 .mode = 0644,
Mel Gormancb251762016-02-05 09:08:36 +0000523 .proc_handler = sysctl_latencytop,
Arjan van de Ven97455122008-01-25 21:08:34 +0100524 },
525#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#ifdef CONFIG_BLK_DEV_INITRD
527 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 .procname = "real-root-dev",
529 .data = &real_root_dev,
530 .maxlen = sizeof(int),
531 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800532 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 },
534#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700535 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700536 .procname = "print-fatal-signals",
537 .data = &print_fatal_signals,
538 .maxlen = sizeof(int),
539 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800540 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700541 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700542#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 .procname = "reboot-cmd",
545 .data = reboot_command,
546 .maxlen = 256,
547 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800548 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 },
550 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 .procname = "stop-a",
552 .data = &stop_a_enabled,
553 .maxlen = sizeof (int),
554 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800555 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 },
557 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 .procname = "scons-poweroff",
559 .data = &scons_pwroff,
560 .maxlen = sizeof (int),
561 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800562 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 },
564#endif
David S. Miller08714202008-11-16 23:49:24 -0800565#ifdef CONFIG_SPARC64
566 {
David S. Miller08714202008-11-16 23:49:24 -0800567 .procname = "tsb-ratio",
568 .data = &sysctl_tsb_ratio,
569 .maxlen = sizeof (int),
570 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800571 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800572 },
573#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574#ifdef __hppa__
575 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 .procname = "soft-power",
577 .data = &pwrsw_enabled,
578 .maxlen = sizeof (int),
579 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800580 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530582#endif
583#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 .procname = "unaligned-trap",
586 .data = &unaligned_enabled,
587 .maxlen = sizeof (int),
588 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800589 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 },
591#endif
592 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 .procname = "ctrl-alt-del",
594 .data = &C_A_D,
595 .maxlen = sizeof(int),
596 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800597 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400599#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200600 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200601 .procname = "ftrace_enabled",
602 .data = &ftrace_enabled,
603 .maxlen = sizeof(int),
604 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800605 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200606 },
607#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500608#ifdef CONFIG_STACK_TRACER
609 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500610 .procname = "stack_tracer_enabled",
611 .data = &stack_tracer_enabled,
612 .maxlen = sizeof(int),
613 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800614 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500615 },
616#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400617#ifdef CONFIG_TRACING
618 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100619 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400620 .data = &ftrace_dump_on_oops,
621 .maxlen = sizeof(int),
622 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800623 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400624 },
Steven Rostedt (Red Hat)de7edd32013-06-14 16:21:43 -0400625 {
626 .procname = "traceoff_on_warning",
627 .data = &__disable_trace_on_warning,
628 .maxlen = sizeof(__disable_trace_on_warning),
629 .mode = 0644,
630 .proc_handler = proc_dointvec,
631 },
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500632 {
633 .procname = "tracepoint_printk",
634 .data = &tracepoint_printk,
635 .maxlen = sizeof(tracepoint_printk),
636 .mode = 0644,
637 .proc_handler = proc_dointvec,
638 },
Steven Rostedt944ac422008-10-23 19:26:08 -0400639#endif
Dave Young2965faa2015-09-09 15:38:55 -0700640#ifdef CONFIG_KEXEC_CORE
Kees Cook79847542014-01-23 15:55:59 -0800641 {
642 .procname = "kexec_load_disabled",
643 .data = &kexec_load_disabled,
644 .maxlen = sizeof(int),
645 .mode = 0644,
646 /* only handle a transition from default "0" to "1" */
647 .proc_handler = proc_dointvec_minmax,
648 .extra1 = &one,
649 .extra2 = &one,
650 },
651#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200652#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 .procname = "modprobe",
655 .data = &modprobe_path,
656 .maxlen = KMOD_PATH_LEN,
657 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800658 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 },
Kees Cook3d433212009-04-02 15:49:29 -0700660 {
Kees Cook3d433212009-04-02 15:49:29 -0700661 .procname = "modules_disabled",
662 .data = &modules_disabled,
663 .maxlen = sizeof(int),
664 .mode = 0644,
665 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800666 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700667 .extra1 = &one,
668 .extra2 = &one,
669 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#endif
Michael Marineau86d56132014-04-10 14:09:31 -0700671#ifdef CONFIG_UEVENT_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100674 .data = &uevent_helper,
675 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800677 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 },
Michael Marineau86d56132014-04-10 14:09:31 -0700679#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#ifdef CONFIG_CHR_DEV_SG
681 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 .procname = "sg-big-buff",
683 .data = &sg_big_buff,
684 .maxlen = sizeof (int),
685 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800686 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 },
688#endif
689#ifdef CONFIG_BSD_PROCESS_ACCT
690 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 .procname = "acct",
692 .data = &acct_parm,
693 .maxlen = 3*sizeof(int),
694 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800695 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 },
697#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#ifdef CONFIG_MAGIC_SYSRQ
699 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800701 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .maxlen = sizeof (int),
703 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700704 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 },
706#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700707#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700710 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 .maxlen = sizeof (int),
712 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800713 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700715#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 .procname = "threads-max",
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700718 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .maxlen = sizeof(int),
720 .mode = 0644,
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700721 .proc_handler = sysctl_max_threads,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 },
723 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .procname = "random",
725 .mode = 0555,
726 .child = random_table,
727 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 {
Eric Paris17f60a72011-04-01 17:07:50 -0400729 .procname = "usermodehelper",
730 .mode = 0555,
731 .child = usermodehelper_table,
732 },
733 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 .procname = "overflowuid",
735 .data = &overflowuid,
736 .maxlen = sizeof(int),
737 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800738 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .extra1 = &minolduid,
740 .extra2 = &maxolduid,
741 },
742 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 .procname = "overflowgid",
744 .data = &overflowgid,
745 .maxlen = sizeof(int),
746 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800747 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 .extra1 = &minolduid,
749 .extra2 = &maxolduid,
750 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800751#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#ifdef CONFIG_MATHEMU
753 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .procname = "ieee_emulation_warnings",
755 .data = &sysctl_ieee_emulation_warnings,
756 .maxlen = sizeof(int),
757 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800758 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 },
760#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200763 .data = &show_unhandled_signals,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 .maxlen = sizeof(int),
765 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800766 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 },
768#endif
769 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .procname = "pid_max",
771 .data = &pid_max,
772 .maxlen = sizeof (int),
773 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800774 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 .extra1 = &pid_max_min,
776 .extra2 = &pid_max_max,
777 },
778 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .procname = "panic_on_oops",
780 .data = &panic_on_oops,
781 .maxlen = sizeof(int),
782 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800783 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800785#if defined CONFIG_PRINTK
786 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800787 .procname = "printk",
788 .data = &console_loglevel,
789 .maxlen = 4*sizeof(int),
790 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800791 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800792 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700795 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 .maxlen = sizeof(int),
797 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800798 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 },
800 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700802 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 .maxlen = sizeof(int),
804 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800805 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 },
Dave Youngaf913222009-09-22 16:43:33 -0700807 {
Dave Youngaf913222009-09-22 16:43:33 -0700808 .procname = "printk_delay",
809 .data = &printk_delay_msec,
810 .maxlen = sizeof(int),
811 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800812 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700813 .extra1 = &zero,
814 .extra2 = &ten_thousand,
815 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800817 .procname = "dmesg_restrict",
818 .data = &dmesg_restrict,
819 .maxlen = sizeof(int),
820 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700821 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800822 .extra1 = &zero,
823 .extra2 = &one,
824 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800825 {
826 .procname = "kptr_restrict",
827 .data = &kptr_restrict,
828 .maxlen = sizeof(int),
829 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700830 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800831 .extra1 = &zero,
832 .extra2 = &two,
833 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800834#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800835 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 .procname = "ngroups_max",
837 .data = &ngroups_max,
838 .maxlen = sizeof (int),
839 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800840 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 },
Dan Ballard73efc032011-10-31 17:11:20 -0700842 {
843 .procname = "cap_last_cap",
844 .data = (void *)&cap_last_cap,
845 .maxlen = sizeof(int),
846 .mode = 0444,
847 .proc_handler = proc_dointvec,
848 },
Don Zickus58687ac2010-05-07 17:11:44 -0400849#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500850 {
Don Zickus58687ac2010-05-07 17:11:44 -0400851 .procname = "watchdog",
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200852 .data = &watchdog_user_enabled,
Don Zickus504d7cf2010-02-12 17:19:19 -0500853 .maxlen = sizeof (int),
854 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700855 .proc_handler = proc_watchdog,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700856 .extra1 = &zero,
857 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400858 },
859 {
860 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700861 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400862 .maxlen = sizeof(int),
863 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700864 .proc_handler = proc_watchdog_thresh,
Li Zefana6572f82013-05-17 10:31:04 +0800865 .extra1 = &zero,
Don Zickus58687ac2010-05-07 17:11:44 -0400866 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500867 },
Don Zickus2508ce12010-05-07 17:11:46 -0400868 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700869 .procname = "nmi_watchdog",
870 .data = &nmi_watchdog_enabled,
871 .maxlen = sizeof (int),
872 .mode = 0644,
873 .proc_handler = proc_nmi_watchdog,
874 .extra1 = &zero,
875#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
876 .extra2 = &one,
877#else
878 .extra2 = &zero,
879#endif
880 },
881 {
882 .procname = "soft_watchdog",
883 .data = &soft_watchdog_enabled,
884 .maxlen = sizeof (int),
885 .mode = 0644,
886 .proc_handler = proc_soft_watchdog,
887 .extra1 = &zero,
888 .extra2 = &one,
889 },
890 {
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700891 .procname = "watchdog_cpumask",
892 .data = &watchdog_cpumask_bits,
893 .maxlen = NR_CPUS,
894 .mode = 0644,
895 .proc_handler = proc_watchdog_cpumask,
896 },
897 {
Don Zickus2508ce12010-05-07 17:11:46 -0400898 .procname = "softlockup_panic",
899 .data = &softlockup_panic,
900 .maxlen = sizeof(int),
901 .mode = 0644,
902 .proc_handler = proc_dointvec_minmax,
903 .extra1 = &zero,
904 .extra2 = &one,
905 },
Don Zickusac1f5912015-11-05 18:44:44 -0800906#ifdef CONFIG_HARDLOCKUP_DETECTOR
907 {
908 .procname = "hardlockup_panic",
909 .data = &hardlockup_panic,
910 .maxlen = sizeof(int),
911 .mode = 0644,
912 .proc_handler = proc_dointvec_minmax,
913 .extra1 = &zero,
914 .extra2 = &one,
915 },
916#endif
Aaron Tomlined235872014-06-23 13:22:05 -0700917#ifdef CONFIG_SMP
918 {
919 .procname = "softlockup_all_cpu_backtrace",
920 .data = &sysctl_softlockup_all_cpu_backtrace,
921 .maxlen = sizeof(int),
922 .mode = 0644,
923 .proc_handler = proc_dointvec_minmax,
924 .extra1 = &zero,
925 .extra2 = &one,
926 },
Jiri Kosina55537872015-11-05 18:44:41 -0800927 {
928 .procname = "hardlockup_all_cpu_backtrace",
929 .data = &sysctl_hardlockup_all_cpu_backtrace,
930 .maxlen = sizeof(int),
931 .mode = 0644,
932 .proc_handler = proc_dointvec_minmax,
933 .extra1 = &zero,
934 .extra2 = &one,
935 },
Aaron Tomlined235872014-06-23 13:22:05 -0700936#endif /* CONFIG_SMP */
Don Zickus5dc30552010-11-29 17:07:17 -0500937#endif
938#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
939 {
940 .procname = "unknown_nmi_panic",
941 .data = &unknown_nmi_panic,
942 .maxlen = sizeof (int),
943 .mode = 0644,
944 .proc_handler = proc_dointvec,
945 },
Don Zickus504d7cf2010-02-12 17:19:19 -0500946#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947#if defined(CONFIG_X86)
948 {
Don Zickus8da5add2006-09-26 10:52:27 +0200949 .procname = "panic_on_unrecovered_nmi",
950 .data = &panic_on_unrecovered_nmi,
951 .maxlen = sizeof(int),
952 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800953 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200954 },
955 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700956 .procname = "panic_on_io_nmi",
957 .data = &panic_on_io_nmi,
958 .maxlen = sizeof(int),
959 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800960 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700961 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +0900962#ifdef CONFIG_DEBUG_STACKOVERFLOW
963 {
964 .procname = "panic_on_stackoverflow",
965 .data = &sysctl_panic_on_stackoverflow,
966 .maxlen = sizeof(int),
967 .mode = 0644,
968 .proc_handler = proc_dointvec,
969 },
970#endif
Kurt Garloff5211a242009-06-24 14:32:11 -0700971 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 .procname = "bootloader_type",
973 .data = &bootloader_type,
974 .maxlen = sizeof (int),
975 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800976 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100978 {
H. Peter Anvin50312962009-05-07 16:54:11 -0700979 .procname = "bootloader_version",
980 .data = &bootloader_version,
981 .maxlen = sizeof (int),
982 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800983 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -0700984 },
985 {
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100986 .procname = "kstack_depth_to_print",
987 .data = &kstack_depth_to_print,
988 .maxlen = sizeof(int),
989 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800990 .proc_handler = proc_dointvec,
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100991 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100992 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100993 .procname = "io_delay_type",
994 .data = &io_delay_type,
995 .maxlen = sizeof(int),
996 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800997 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100998 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999#endif
Luke Yang7a9166e2006-02-20 18:28:07 -08001000#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 .procname = "randomize_va_space",
1003 .data = &randomize_va_space,
1004 .maxlen = sizeof(int),
1005 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001006 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 },
Luke Yang7a9166e2006-02-20 18:28:07 -08001008#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -08001009#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001010 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001011 .procname = "spin_retry",
1012 .data = &spin_retry,
1013 .maxlen = sizeof (int),
1014 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001015 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001016 },
1017#endif
Len Brown673d5b42007-07-28 03:33:16 -04001018#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -08001019 {
Pavel Machekc255d842006-02-20 18:27:58 -08001020 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -07001021 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -08001022 .maxlen = sizeof (unsigned long),
1023 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001024 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -08001025 },
1026#endif
Vineet Guptab6fca722013-01-09 20:06:28 +05301027#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -08001028 {
Jes Sorensend2b176e2006-02-28 09:42:23 -08001029 .procname = "ignore-unaligned-usertrap",
1030 .data = &no_unaligned_warning,
1031 .maxlen = sizeof (int),
1032 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001033 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -08001034 },
Vineet Guptab6fca722013-01-09 20:06:28 +05301035#endif
1036#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -08001037 {
Doug Chapman88fc2412009-01-15 10:38:56 -08001038 .procname = "unaligned-dump-stack",
1039 .data = &unaligned_dump_stack,
1040 .maxlen = sizeof (int),
1041 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001042 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -08001043 },
Jes Sorensend2b176e2006-02-28 09:42:23 -08001044#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001045#ifdef CONFIG_DETECT_HUNG_TASK
1046 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001047 .procname = "hung_task_panic",
1048 .data = &sysctl_hung_task_panic,
1049 .maxlen = sizeof(int),
1050 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001051 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001052 .extra1 = &zero,
1053 .extra2 = &one,
1054 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001055 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001056 .procname = "hung_task_check_count",
1057 .data = &sysctl_hung_task_check_count,
Li Zefancd646472013-09-23 16:43:58 +08001058 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001059 .mode = 0644,
Li Zefancd646472013-09-23 16:43:58 +08001060 .proc_handler = proc_dointvec_minmax,
1061 .extra1 = &zero,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001062 },
1063 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001064 .procname = "hung_task_timeout_secs",
1065 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +01001066 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001067 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001068 .proc_handler = proc_dohung_task_timeout_secs,
Liu Hua80df2842014-04-07 15:38:57 -07001069 .extra2 = &hung_task_timeout_max,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001070 },
1071 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001072 .procname = "hung_task_warnings",
1073 .data = &sysctl_hung_task_warnings,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001074 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001075 .mode = 0644,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001076 .proc_handler = proc_dointvec_minmax,
1077 .extra1 = &neg_one,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001078 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -07001079#endif
Andi Kleenbebfa102006-06-26 13:56:52 +02001080#ifdef CONFIG_COMPAT
1081 {
Andi Kleenbebfa102006-06-26 13:56:52 +02001082 .procname = "compat-log",
1083 .data = &compat_log,
1084 .maxlen = sizeof (int),
1085 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001086 .proc_handler = proc_dointvec,
Andi Kleenbebfa102006-06-26 13:56:52 +02001087 },
1088#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001089#ifdef CONFIG_RT_MUTEXES
1090 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001091 .procname = "max_lock_depth",
1092 .data = &max_lock_depth,
1093 .maxlen = sizeof(int),
1094 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001095 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001096 },
1097#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001098 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001099 .procname = "poweroff_cmd",
1100 .data = &poweroff_cmd,
1101 .maxlen = POWEROFF_CMD_PATH_LEN,
1102 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001103 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001104 },
David Howells0b77f5b2008-04-29 01:01:32 -07001105#ifdef CONFIG_KEYS
1106 {
David Howells0b77f5b2008-04-29 01:01:32 -07001107 .procname = "keys",
1108 .mode = 0555,
1109 .child = key_sysctls,
1110 },
1111#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001112#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001113 /*
1114 * User-space scripts rely on the existence of this file
1115 * as a feature check for perf_events being enabled.
1116 *
1117 * So it's an ABI, do not remove!
1118 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001119 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001120 .procname = "perf_event_paranoid",
1121 .data = &sysctl_perf_event_paranoid,
1122 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001123 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001124 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001125 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001126 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001127 .procname = "perf_event_mlock_kb",
1128 .data = &sysctl_perf_event_mlock,
1129 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001130 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001131 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001132 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001133 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001134 .procname = "perf_event_max_sample_rate",
1135 .data = &sysctl_perf_event_sample_rate,
1136 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001137 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001138 .proc_handler = perf_proc_update_handler,
Knut Petersen723478c2013-09-25 14:29:37 +02001139 .extra1 = &one,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001140 },
Dave Hansen14c63f12013-06-21 08:51:36 -07001141 {
1142 .procname = "perf_cpu_time_max_percent",
1143 .data = &sysctl_perf_cpu_time_max_percent,
1144 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1145 .mode = 0644,
1146 .proc_handler = perf_cpu_time_max_percent_handler,
1147 .extra1 = &zero,
1148 .extra2 = &one_hundred,
1149 },
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001150 {
1151 .procname = "perf_event_max_stack",
Arnaldo Carvalho de Meloa8311002016-05-10 16:34:53 -03001152 .data = &sysctl_perf_event_max_stack,
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001153 .maxlen = sizeof(sysctl_perf_event_max_stack),
1154 .mode = 0644,
1155 .proc_handler = perf_event_max_stack_handler,
1156 .extra1 = &zero,
1157 .extra2 = &six_hundred_forty_kb,
1158 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001159#endif
Vegard Nossumdfec0722008-04-04 00:51:41 +02001160#ifdef CONFIG_KMEMCHECK
1161 {
Vegard Nossumdfec0722008-04-04 00:51:41 +02001162 .procname = "kmemcheck",
1163 .data = &kmemcheck_enabled,
1164 .maxlen = sizeof(int),
1165 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001166 .proc_handler = proc_dointvec,
Vegard Nossumdfec0722008-04-04 00:51:41 +02001167 },
1168#endif
Prarit Bhargava9e3961a2014-12-10 15:45:50 -08001169 {
1170 .procname = "panic_on_warn",
1171 .data = &panic_on_warn,
1172 .maxlen = sizeof(int),
1173 .mode = 0644,
1174 .proc_handler = proc_dointvec_minmax,
1175 .extra1 = &zero,
1176 .extra2 = &one,
1177 },
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001178#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1179 {
1180 .procname = "timer_migration",
1181 .data = &sysctl_timer_migration,
1182 .maxlen = sizeof(unsigned int),
1183 .mode = 0644,
1184 .proc_handler = timer_migration_handler,
1185 },
1186#endif
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001187#ifdef CONFIG_BPF_SYSCALL
1188 {
1189 .procname = "unprivileged_bpf_disabled",
1190 .data = &sysctl_unprivileged_bpf_disabled,
1191 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1192 .mode = 0644,
1193 /* only handle a transition from default "0" to "1" */
1194 .proc_handler = proc_dointvec_minmax,
1195 .extra1 = &one,
1196 .extra2 = &one,
1197 },
1198#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001199 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200};
1201
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001202static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .procname = "overcommit_memory",
1205 .data = &sysctl_overcommit_memory,
1206 .maxlen = sizeof(sysctl_overcommit_memory),
1207 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001208 .proc_handler = proc_dointvec_minmax,
1209 .extra1 = &zero,
1210 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 },
1212 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001213 .procname = "panic_on_oom",
1214 .data = &sysctl_panic_on_oom,
1215 .maxlen = sizeof(sysctl_panic_on_oom),
1216 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001217 .proc_handler = proc_dointvec_minmax,
1218 .extra1 = &zero,
1219 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001220 },
1221 {
David Rientjesfe071d72007-10-16 23:25:56 -07001222 .procname = "oom_kill_allocating_task",
1223 .data = &sysctl_oom_kill_allocating_task,
1224 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1225 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001226 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001227 },
1228 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001229 .procname = "oom_dump_tasks",
1230 .data = &sysctl_oom_dump_tasks,
1231 .maxlen = sizeof(sysctl_oom_dump_tasks),
1232 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001233 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001234 },
1235 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .procname = "overcommit_ratio",
1237 .data = &sysctl_overcommit_ratio,
1238 .maxlen = sizeof(sysctl_overcommit_ratio),
1239 .mode = 0644,
Jerome Marchand49f0ce52014-01-21 15:49:14 -08001240 .proc_handler = overcommit_ratio_handler,
1241 },
1242 {
1243 .procname = "overcommit_kbytes",
1244 .data = &sysctl_overcommit_kbytes,
1245 .maxlen = sizeof(sysctl_overcommit_kbytes),
1246 .mode = 0644,
1247 .proc_handler = overcommit_kbytes_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 },
1249 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 .procname = "page-cluster",
1251 .data = &page_cluster,
1252 .maxlen = sizeof(int),
1253 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001254 .proc_handler = proc_dointvec_minmax,
1255 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 },
1257 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 .procname = "dirty_background_ratio",
1259 .data = &dirty_background_ratio,
1260 .maxlen = sizeof(dirty_background_ratio),
1261 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001262 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 .extra1 = &zero,
1264 .extra2 = &one_hundred,
1265 },
1266 {
David Rientjes2da02992009-01-06 14:39:31 -08001267 .procname = "dirty_background_bytes",
1268 .data = &dirty_background_bytes,
1269 .maxlen = sizeof(dirty_background_bytes),
1270 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001271 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001272 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001273 },
1274 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 .procname = "dirty_ratio",
1276 .data = &vm_dirty_ratio,
1277 .maxlen = sizeof(vm_dirty_ratio),
1278 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001279 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .extra1 = &zero,
1281 .extra2 = &one_hundred,
1282 },
1283 {
David Rientjes2da02992009-01-06 14:39:31 -08001284 .procname = "dirty_bytes",
1285 .data = &vm_dirty_bytes,
1286 .maxlen = sizeof(vm_dirty_bytes),
1287 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001288 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001289 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001290 },
1291 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001293 .data = &dirty_writeback_interval,
1294 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001296 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 },
1298 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001300 .data = &dirty_expire_interval,
1301 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001303 .proc_handler = proc_dointvec_minmax,
1304 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 },
1306 {
Theodore Ts'o1efff912015-03-17 12:23:32 -04001307 .procname = "dirtytime_expire_seconds",
1308 .data = &dirtytime_expire_interval,
1309 .maxlen = sizeof(dirty_expire_interval),
1310 .mode = 0644,
1311 .proc_handler = dirtytime_interval_handler,
1312 .extra1 = &zero,
1313 },
1314 {
Wanpeng Li3965c9a2012-07-31 16:41:52 -07001315 .procname = "nr_pdflush_threads",
1316 .mode = 0444 /* read-only */,
1317 .proc_handler = pdflush_proc_obsolete,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 },
1319 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .procname = "swappiness",
1321 .data = &vm_swappiness,
1322 .maxlen = sizeof(vm_swappiness),
1323 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001324 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 .extra1 = &zero,
1326 .extra2 = &one_hundred,
1327 },
1328#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001329 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001331 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 .maxlen = sizeof(unsigned long),
1333 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001334 .proc_handler = hugetlb_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001335 },
1336#ifdef CONFIG_NUMA
1337 {
1338 .procname = "nr_hugepages_mempolicy",
1339 .data = NULL,
1340 .maxlen = sizeof(unsigned long),
1341 .mode = 0644,
1342 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001343 },
1344#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 .procname = "hugetlb_shm_group",
1347 .data = &sysctl_hugetlb_shm_group,
1348 .maxlen = sizeof(gid_t),
1349 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001350 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 },
Mel Gorman396faf02007-07-17 04:03:13 -07001352 {
Mel Gorman396faf02007-07-17 04:03:13 -07001353 .procname = "hugepages_treat_as_movable",
1354 .data = &hugepages_treat_as_movable,
1355 .maxlen = sizeof(int),
1356 .mode = 0644,
Naoya Horiguchi86cdb462013-09-11 14:22:13 -07001357 .proc_handler = proc_dointvec,
Mel Gorman396faf02007-07-17 04:03:13 -07001358 },
Adam Litke54f9f802007-10-16 01:26:20 -07001359 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001360 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001361 .data = NULL,
1362 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001363 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001364 .proc_handler = hugetlb_overcommit_handler,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001365 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366#endif
1367 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 .procname = "lowmem_reserve_ratio",
1369 .data = &sysctl_lowmem_reserve_ratio,
1370 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1371 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001372 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 },
1374 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001375 .procname = "drop_caches",
1376 .data = &sysctl_drop_caches,
1377 .maxlen = sizeof(int),
1378 .mode = 0644,
1379 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001380 .extra1 = &one,
Dave Hansen5509a5d2014-04-03 14:48:19 -07001381 .extra2 = &four,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001382 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001383#ifdef CONFIG_COMPACTION
1384 {
1385 .procname = "compact_memory",
1386 .data = &sysctl_compact_memory,
1387 .maxlen = sizeof(int),
1388 .mode = 0200,
1389 .proc_handler = sysctl_compaction_handler,
1390 },
Mel Gorman5e771902010-05-24 14:32:31 -07001391 {
1392 .procname = "extfrag_threshold",
1393 .data = &sysctl_extfrag_threshold,
1394 .maxlen = sizeof(int),
1395 .mode = 0644,
1396 .proc_handler = sysctl_extfrag_handler,
1397 .extra1 = &min_extfrag_threshold,
1398 .extra2 = &max_extfrag_threshold,
1399 },
Eric B Munson5bbe3542015-04-15 16:13:20 -07001400 {
1401 .procname = "compact_unevictable_allowed",
1402 .data = &sysctl_compact_unevictable_allowed,
1403 .maxlen = sizeof(int),
1404 .mode = 0644,
1405 .proc_handler = proc_dointvec,
1406 .extra1 = &zero,
1407 .extra2 = &one,
1408 },
Mel Gorman5e771902010-05-24 14:32:31 -07001409
Mel Gorman76ab0f52010-05-24 14:32:28 -07001410#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001411 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 .procname = "min_free_kbytes",
1413 .data = &min_free_kbytes,
1414 .maxlen = sizeof(min_free_kbytes),
1415 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001416 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 .extra1 = &zero,
1418 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001419 {
Johannes Weiner795ae7a2016-03-17 14:19:14 -07001420 .procname = "watermark_scale_factor",
1421 .data = &watermark_scale_factor,
1422 .maxlen = sizeof(watermark_scale_factor),
1423 .mode = 0644,
1424 .proc_handler = watermark_scale_factor_sysctl_handler,
1425 .extra1 = &one,
1426 .extra2 = &one_thousand,
1427 },
1428 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001429 .procname = "percpu_pagelist_fraction",
1430 .data = &percpu_pagelist_fraction,
1431 .maxlen = sizeof(percpu_pagelist_fraction),
1432 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001433 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
David Rientjes7cd2b0a2014-06-23 13:22:04 -07001434 .extra1 = &zero,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001435 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436#ifdef CONFIG_MMU
1437 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 .procname = "max_map_count",
1439 .data = &sysctl_max_map_count,
1440 .maxlen = sizeof(sysctl_max_map_count),
1441 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001442 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001443 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001445#else
1446 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001447 .procname = "nr_trim_pages",
1448 .data = &sysctl_nr_trim_pages,
1449 .maxlen = sizeof(sysctl_nr_trim_pages),
1450 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001451 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001452 .extra1 = &zero,
1453 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454#endif
1455 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 .procname = "laptop_mode",
1457 .data = &laptop_mode,
1458 .maxlen = sizeof(laptop_mode),
1459 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001460 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 },
1462 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 .procname = "block_dump",
1464 .data = &block_dump,
1465 .maxlen = sizeof(block_dump),
1466 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001467 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 .extra1 = &zero,
1469 },
1470 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .procname = "vfs_cache_pressure",
1472 .data = &sysctl_vfs_cache_pressure,
1473 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1474 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001475 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 .extra1 = &zero,
1477 },
1478#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1479 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 .procname = "legacy_va_layout",
1481 .data = &sysctl_legacy_va_layout,
1482 .maxlen = sizeof(sysctl_legacy_va_layout),
1483 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001484 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 .extra1 = &zero,
1486 },
1487#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001488#ifdef CONFIG_NUMA
1489 {
Christoph Lameter17436602006-01-18 17:42:32 -08001490 .procname = "zone_reclaim_mode",
1491 .data = &zone_reclaim_mode,
1492 .maxlen = sizeof(zone_reclaim_mode),
1493 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001494 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001495 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001496 },
Christoph Lameter96146342006-07-03 00:24:13 -07001497 {
Christoph Lameter96146342006-07-03 00:24:13 -07001498 .procname = "min_unmapped_ratio",
1499 .data = &sysctl_min_unmapped_ratio,
1500 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1501 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001502 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001503 .extra1 = &zero,
1504 .extra2 = &one_hundred,
1505 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001506 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001507 .procname = "min_slab_ratio",
1508 .data = &sysctl_min_slab_ratio,
1509 .maxlen = sizeof(sysctl_min_slab_ratio),
1510 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001511 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001512 .extra1 = &zero,
1513 .extra2 = &one_hundred,
1514 },
Christoph Lameter17436602006-01-18 17:42:32 -08001515#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001516#ifdef CONFIG_SMP
1517 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001518 .procname = "stat_interval",
1519 .data = &sysctl_stat_interval,
1520 .maxlen = sizeof(sysctl_stat_interval),
1521 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001522 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001523 },
1524#endif
David Howells6e141542009-12-15 19:27:45 +00001525#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001526 {
Eric Parised032182007-06-28 15:55:21 -04001527 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001528 .data = &dac_mmap_min_addr,
1529 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001530 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001531 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001532 },
David Howells6e141542009-12-15 19:27:45 +00001533#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001534#ifdef CONFIG_NUMA
1535 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001536 .procname = "numa_zonelist_order",
1537 .data = &numa_zonelist_order,
1538 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1539 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001540 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001541 },
1542#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001543#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001544 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001545 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001546 .procname = "vdso_enabled",
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001547#ifdef CONFIG_X86_32
1548 .data = &vdso32_enabled,
1549 .maxlen = sizeof(vdso32_enabled),
1550#else
Ingo Molnare6e54942006-06-27 02:53:50 -07001551 .data = &vdso_enabled,
1552 .maxlen = sizeof(vdso_enabled),
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001553#endif
Ingo Molnare6e54942006-06-27 02:53:50 -07001554 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001555 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001556 .extra1 = &zero,
1557 },
1558#endif
Bron Gondwana195cf452008-02-04 22:29:20 -08001559#ifdef CONFIG_HIGHMEM
1560 {
Bron Gondwana195cf452008-02-04 22:29:20 -08001561 .procname = "highmem_is_dirtyable",
1562 .data = &vm_highmem_is_dirtyable,
1563 .maxlen = sizeof(vm_highmem_is_dirtyable),
1564 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001565 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf452008-02-04 22:29:20 -08001566 .extra1 = &zero,
1567 .extra2 = &one,
1568 },
1569#endif
Andi Kleen6a460792009-09-16 11:50:15 +02001570#ifdef CONFIG_MEMORY_FAILURE
1571 {
Andi Kleen6a460792009-09-16 11:50:15 +02001572 .procname = "memory_failure_early_kill",
1573 .data = &sysctl_memory_failure_early_kill,
1574 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1575 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001576 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001577 .extra1 = &zero,
1578 .extra2 = &one,
1579 },
1580 {
Andi Kleen6a460792009-09-16 11:50:15 +02001581 .procname = "memory_failure_recovery",
1582 .data = &sysctl_memory_failure_recovery,
1583 .maxlen = sizeof(sysctl_memory_failure_recovery),
1584 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001585 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001586 .extra1 = &zero,
1587 .extra2 = &one,
1588 },
1589#endif
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001590 {
1591 .procname = "user_reserve_kbytes",
1592 .data = &sysctl_user_reserve_kbytes,
1593 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1594 .mode = 0644,
1595 .proc_handler = proc_doulongvec_minmax,
1596 },
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001597 {
1598 .procname = "admin_reserve_kbytes",
1599 .data = &sysctl_admin_reserve_kbytes,
1600 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1601 .mode = 0644,
1602 .proc_handler = proc_doulongvec_minmax,
1603 },
Daniel Cashmand07e2252016-01-14 15:19:53 -08001604#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1605 {
1606 .procname = "mmap_rnd_bits",
1607 .data = &mmap_rnd_bits,
1608 .maxlen = sizeof(mmap_rnd_bits),
1609 .mode = 0600,
1610 .proc_handler = proc_dointvec_minmax,
1611 .extra1 = (void *)&mmap_rnd_bits_min,
1612 .extra2 = (void *)&mmap_rnd_bits_max,
1613 },
1614#endif
1615#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1616 {
1617 .procname = "mmap_rnd_compat_bits",
1618 .data = &mmap_rnd_compat_bits,
1619 .maxlen = sizeof(mmap_rnd_compat_bits),
1620 .mode = 0600,
1621 .proc_handler = proc_dointvec_minmax,
1622 .extra1 = (void *)&mmap_rnd_compat_bits_min,
1623 .extra2 = (void *)&mmap_rnd_compat_bits_max,
1624 },
1625#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001626 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627};
1628
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001629static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 .procname = "inode-nr",
1632 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001633 .maxlen = 2*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001635 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 },
1637 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 .procname = "inode-state",
1639 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001640 .maxlen = 7*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001642 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 },
1644 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 .procname = "file-nr",
1646 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001647 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001649 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 },
1651 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 .procname = "file-max",
1653 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001654 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001656 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 },
1658 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001659 .procname = "nr_open",
1660 .data = &sysctl_nr_open,
1661 .maxlen = sizeof(int),
1662 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001663 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001664 .extra1 = &sysctl_nr_open_min,
1665 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001666 },
1667 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 .procname = "dentry-state",
1669 .data = &dentry_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001670 .maxlen = 6*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001672 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 },
1674 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 .procname = "overflowuid",
1676 .data = &fs_overflowuid,
1677 .maxlen = sizeof(int),
1678 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001679 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 .extra1 = &minolduid,
1681 .extra2 = &maxolduid,
1682 },
1683 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 .procname = "overflowgid",
1685 .data = &fs_overflowgid,
1686 .maxlen = sizeof(int),
1687 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001688 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 .extra1 = &minolduid,
1690 .extra2 = &maxolduid,
1691 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001692#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 .procname = "leases-enable",
1695 .data = &leases_enable,
1696 .maxlen = sizeof(int),
1697 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001698 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701#ifdef CONFIG_DNOTIFY
1702 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 .procname = "dir-notify-enable",
1704 .data = &dir_notify_enable,
1705 .maxlen = sizeof(int),
1706 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001707 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 },
1709#endif
1710#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001711#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 .procname = "lease-break-time",
1714 .data = &lease_break_time,
1715 .maxlen = sizeof(int),
1716 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001717 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001719#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001720#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .procname = "aio-nr",
1723 .data = &aio_nr,
1724 .maxlen = sizeof(aio_nr),
1725 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001726 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 },
1728 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 .procname = "aio-max-nr",
1730 .data = &aio_max_nr,
1731 .maxlen = sizeof(aio_max_nr),
1732 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001733 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001735#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001736#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001737 {
Robert Love0399cb02005-07-13 12:38:18 -04001738 .procname = "inotify",
1739 .mode = 0555,
1740 .child = inotify_table,
1741 },
1742#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001743#ifdef CONFIG_EPOLL
1744 {
1745 .procname = "epoll",
1746 .mode = 0555,
1747 .child = epoll_table,
1748 },
1749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001751 {
Kees Cook800179c2012-07-25 17:29:07 -07001752 .procname = "protected_symlinks",
1753 .data = &sysctl_protected_symlinks,
1754 .maxlen = sizeof(int),
1755 .mode = 0600,
1756 .proc_handler = proc_dointvec_minmax,
1757 .extra1 = &zero,
1758 .extra2 = &one,
1759 },
1760 {
1761 .procname = "protected_hardlinks",
1762 .data = &sysctl_protected_hardlinks,
1763 .maxlen = sizeof(int),
1764 .mode = 0600,
1765 .proc_handler = proc_dointvec_minmax,
1766 .extra1 = &zero,
1767 .extra2 = &one,
1768 },
1769 {
Alan Coxd6e71142005-06-23 00:09:43 -07001770 .procname = "suid_dumpable",
1771 .data = &suid_dumpable,
1772 .maxlen = sizeof(int),
1773 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001774 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001775 .extra1 = &zero,
1776 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001777 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001778#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1779 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001780 .procname = "binfmt_misc",
1781 .mode = 0555,
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -05001782 .child = sysctl_mount_point,
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001783 },
1784#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001785 {
Jens Axboeff9da692010-06-03 14:54:39 +02001786 .procname = "pipe-max-size",
1787 .data = &pipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001788 .maxlen = sizeof(int),
1789 .mode = 0644,
Jens Axboeff9da692010-06-03 14:54:39 +02001790 .proc_handler = &pipe_proc_fn,
1791 .extra1 = &pipe_min_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001792 },
Willy Tarreau759c0112016-01-18 16:36:09 +01001793 {
1794 .procname = "pipe-user-pages-hard",
1795 .data = &pipe_user_pages_hard,
1796 .maxlen = sizeof(pipe_user_pages_hard),
1797 .mode = 0644,
1798 .proc_handler = proc_doulongvec_minmax,
1799 },
1800 {
1801 .procname = "pipe-user-pages-soft",
1802 .data = &pipe_user_pages_soft,
1803 .maxlen = sizeof(pipe_user_pages_soft),
1804 .mode = 0644,
1805 .proc_handler = proc_doulongvec_minmax,
1806 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001807 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808};
1809
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001810static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001811#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001812 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001813 .procname = "exception-trace",
1814 .data = &show_unhandled_signals,
1815 .maxlen = sizeof(int),
1816 .mode = 0644,
1817 .proc_handler = proc_dointvec
1818 },
1819#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001820#if defined(CONFIG_OPTPROBES)
1821 {
1822 .procname = "kprobes-optimization",
1823 .data = &sysctl_kprobes_optimization,
1824 .maxlen = sizeof(int),
1825 .mode = 0644,
1826 .proc_handler = proc_kprobes_optimization_handler,
1827 .extra1 = &zero,
1828 .extra2 = &one,
1829 },
1830#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001831 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832};
1833
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001834static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001835 { }
Robert Love0eeca282005-07-12 17:06:03 -04001836};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001838int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001839{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001840 struct ctl_table_header *hdr;
1841
1842 hdr = register_sysctl_table(sysctl_base_table);
1843 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001844 return 0;
1845}
1846
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001847#endif /* CONFIG_SYSCTL */
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849/*
1850 * /proc/sys support
1851 */
1852
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001853#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Kees Cookf8808302014-06-06 14:37:17 -07001855static int _proc_do_string(char *data, int maxlen, int write,
1856 char __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001857 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001858{
1859 size_t len;
1860 char __user *p;
1861 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001862
1863 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001864 *lenp = 0;
1865 return 0;
1866 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001867
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001868 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07001869 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
1870 /* Only continue writes not past the end of buffer. */
1871 len = strlen(data);
1872 if (len > maxlen - 1)
1873 len = maxlen - 1;
1874
1875 if (*ppos > len)
1876 return 0;
1877 len = *ppos;
1878 } else {
1879 /* Start writing from beginning of buffer. */
1880 len = 0;
1881 }
1882
Kees Cook2ca9bb42014-06-06 14:37:18 -07001883 *ppos += *lenp;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001884 p = buffer;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001885 while ((p - buffer) < *lenp && len < maxlen - 1) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001886 if (get_user(c, p++))
1887 return -EFAULT;
1888 if (c == 0 || c == '\n')
1889 break;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001890 data[len++] = c;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001891 }
Kees Cookf8808302014-06-06 14:37:17 -07001892 data[len] = 0;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001893 } else {
1894 len = strlen(data);
1895 if (len > maxlen)
1896 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001897
1898 if (*ppos > len) {
1899 *lenp = 0;
1900 return 0;
1901 }
1902
1903 data += *ppos;
1904 len -= *ppos;
1905
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001906 if (len > *lenp)
1907 len = *lenp;
1908 if (len)
Kees Cookf8808302014-06-06 14:37:17 -07001909 if (copy_to_user(buffer, data, len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001910 return -EFAULT;
1911 if (len < *lenp) {
Kees Cookf8808302014-06-06 14:37:17 -07001912 if (put_user('\n', buffer + len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001913 return -EFAULT;
1914 len++;
1915 }
1916 *lenp = len;
1917 *ppos += len;
1918 }
1919 return 0;
1920}
1921
Kees Cookf4aacea2014-06-06 14:37:19 -07001922static void warn_sysctl_write(struct ctl_table *table)
1923{
1924 pr_warn_once("%s wrote to %s when file position was not 0!\n"
1925 "This will not be supported in the future. To silence this\n"
1926 "warning, set kernel.sysctl_writes_strict = -1\n",
1927 current->comm, table->procname);
1928}
1929
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930/**
1931 * proc_dostring - read a string sysctl
1932 * @table: the sysctl table
1933 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 * @buffer: the user buffer
1935 * @lenp: the size of the user buffer
1936 * @ppos: file position
1937 *
1938 * Reads/writes a string from/to the user buffer. If the kernel
1939 * buffer provided is not large enough to hold the string, the
1940 * string is truncated. The copied string is %NULL-terminated.
1941 * If the string is being read by the user process, it is copied
1942 * and a newline '\n' is added. It is truncated if the buffer is
1943 * not large enough.
1944 *
1945 * Returns 0 on success.
1946 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001947int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 void __user *buffer, size_t *lenp, loff_t *ppos)
1949{
Kees Cookf4aacea2014-06-06 14:37:19 -07001950 if (write && *ppos && sysctl_writes_strict == SYSCTL_WRITES_WARN)
1951 warn_sysctl_write(table);
1952
Kees Cookf8808302014-06-06 14:37:17 -07001953 return _proc_do_string((char *)(table->data), table->maxlen, write,
1954 (char __user *)buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Amerigo Wang00b7c332010-05-05 00:26:45 +00001957static size_t proc_skip_spaces(char **buf)
1958{
1959 size_t ret;
1960 char *tmp = skip_spaces(*buf);
1961 ret = tmp - *buf;
1962 *buf = tmp;
1963 return ret;
1964}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Octavian Purdila9f977fb2010-05-05 00:26:55 +00001966static void proc_skip_char(char **buf, size_t *size, const char v)
1967{
1968 while (*size) {
1969 if (**buf != v)
1970 break;
1971 (*size)--;
1972 (*buf)++;
1973 }
1974}
1975
Amerigo Wang00b7c332010-05-05 00:26:45 +00001976#define TMPBUFLEN 22
1977/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001978 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00001979 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001980 * @buf: a kernel buffer
1981 * @size: size of the kernel buffer
1982 * @val: this is where the number will be stored
1983 * @neg: set to %TRUE if number is negative
1984 * @perm_tr: a vector which contains the allowed trailers
1985 * @perm_tr_len: size of the perm_tr vector
1986 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00001987 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07001988 * In case of success %0 is returned and @buf and @size are updated with
1989 * the amount of bytes read. If @tr is non-NULL and a trailing
1990 * character exists (size is non-zero after returning from this
1991 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00001992 */
1993static int proc_get_long(char **buf, size_t *size,
1994 unsigned long *val, bool *neg,
1995 const char *perm_tr, unsigned perm_tr_len, char *tr)
1996{
1997 int len;
1998 char *p, tmp[TMPBUFLEN];
1999
2000 if (!*size)
2001 return -EINVAL;
2002
2003 len = *size;
2004 if (len > TMPBUFLEN - 1)
2005 len = TMPBUFLEN - 1;
2006
2007 memcpy(tmp, *buf, len);
2008
2009 tmp[len] = 0;
2010 p = tmp;
2011 if (*p == '-' && *size > 1) {
2012 *neg = true;
2013 p++;
2014 } else
2015 *neg = false;
2016 if (!isdigit(*p))
2017 return -EINVAL;
2018
2019 *val = simple_strtoul(p, &p, 0);
2020
2021 len = p - tmp;
2022
2023 /* We don't know if the next char is whitespace thus we may accept
2024 * invalid integers (e.g. 1234...a) or two integers instead of one
2025 * (e.g. 123...1). So lets not allow such large numbers. */
2026 if (len == TMPBUFLEN - 1)
2027 return -EINVAL;
2028
2029 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
2030 return -EINVAL;
2031
2032 if (tr && (len < *size))
2033 *tr = *p;
2034
2035 *buf += len;
2036 *size -= len;
2037
2038 return 0;
2039}
2040
2041/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002042 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00002043 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002044 * @buf: the user buffer
2045 * @size: the size of the user buffer
2046 * @val: the integer to be converted
2047 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00002048 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002049 * In case of success %0 is returned and @buf and @size are updated with
2050 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002051 */
2052static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
2053 bool neg)
2054{
2055 int len;
2056 char tmp[TMPBUFLEN], *p = tmp;
2057
2058 sprintf(p, "%s%lu", neg ? "-" : "", val);
2059 len = strlen(tmp);
2060 if (len > *size)
2061 len = *size;
2062 if (copy_to_user(*buf, tmp, len))
2063 return -EFAULT;
2064 *size -= len;
2065 *buf += len;
2066 return 0;
2067}
2068#undef TMPBUFLEN
2069
2070static int proc_put_char(void __user **buf, size_t *size, char c)
2071{
2072 if (*size) {
2073 char __user **buffer = (char __user **)buf;
2074 if (put_user(c, *buffer))
2075 return -EFAULT;
2076 (*size)--, (*buffer)++;
2077 *buf = *buffer;
2078 }
2079 return 0;
2080}
2081
2082static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 int *valp,
2084 int write, void *data)
2085{
2086 if (write) {
Heinrich Schuchardt230633d2015-04-16 12:48:07 -07002087 if (*negp) {
2088 if (*lvalp > (unsigned long) INT_MAX + 1)
2089 return -EINVAL;
2090 *valp = -*lvalp;
2091 } else {
2092 if (*lvalp > (unsigned long) INT_MAX)
2093 return -EINVAL;
2094 *valp = *lvalp;
2095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 } else {
2097 int val = *valp;
2098 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002099 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002100 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002102 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 *lvalp = (unsigned long)val;
2104 }
2105 }
2106 return 0;
2107}
2108
Amerigo Wang00b7c332010-05-05 00:26:45 +00002109static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2110
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002111static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002112 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002113 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002114 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int write, void *data),
2116 void *data)
2117{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002118 int *i, vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002119 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002120 char *kbuf = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Amerigo Wang00b7c332010-05-05 00:26:45 +00002122 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 *lenp = 0;
2124 return 0;
2125 }
2126
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002127 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 vleft = table->maxlen / sizeof(*i);
2129 left = *lenp;
2130
2131 if (!conv)
2132 conv = do_proc_dointvec_conv;
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07002135 if (*ppos) {
2136 switch (sysctl_writes_strict) {
2137 case SYSCTL_WRITES_STRICT:
2138 goto out;
2139 case SYSCTL_WRITES_WARN:
2140 warn_sysctl_write(table);
2141 break;
2142 default:
2143 break;
2144 }
2145 }
2146
Amerigo Wang00b7c332010-05-05 00:26:45 +00002147 if (left > PAGE_SIZE - 1)
2148 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002149 p = kbuf = memdup_user_nul(buffer, left);
2150 if (IS_ERR(kbuf))
2151 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002152 }
2153
2154 for (; left && vleft--; i++, first=0) {
2155 unsigned long lval;
2156 bool neg;
2157
2158 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002159 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002160
J. R. Okajima563b0462010-05-25 16:10:14 -07002161 if (!left)
2162 break;
Al Viro70f6cbb2015-12-24 00:13:10 -05002163 err = proc_get_long(&p, &left, &lval, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002164 proc_wspace_sep,
2165 sizeof(proc_wspace_sep), NULL);
2166 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002168 if (conv(&neg, &lval, i, 1, data)) {
2169 err = -EINVAL;
2170 break;
2171 }
2172 } else {
2173 if (conv(&neg, &lval, i, 0, data)) {
2174 err = -EINVAL;
2175 break;
2176 }
2177 if (!first)
2178 err = proc_put_char(&buffer, &left, '\t');
2179 if (err)
2180 break;
2181 err = proc_put_long(&buffer, &left, lval, neg);
2182 if (err)
2183 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
2185 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002186
2187 if (!write && !first && left && !err)
2188 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07002189 if (write && !err && left)
Al Viro70f6cbb2015-12-24 00:13:10 -05002190 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002191 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002192 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002193 if (first)
2194 return err ? : -EINVAL;
2195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002197out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002199 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200}
2201
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002202static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002203 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002204 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002205 int write, void *data),
2206 void *data)
2207{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002208 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002209 buffer, lenp, ppos, conv, data);
2210}
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212/**
2213 * proc_dointvec - read a vector of integers
2214 * @table: the sysctl table
2215 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 * @buffer: the user buffer
2217 * @lenp: the size of the user buffer
2218 * @ppos: file position
2219 *
2220 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2221 * values from/to the user buffer, treated as an ASCII string.
2222 *
2223 * Returns 0 on success.
2224 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002225int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 void __user *buffer, size_t *lenp, loff_t *ppos)
2227{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002228 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 NULL,NULL);
2230}
2231
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002232/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002233 * Taint values can only be increased
2234 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002235 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002236static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002237 void __user *buffer, size_t *lenp, loff_t *ppos)
2238{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002239 struct ctl_table t;
2240 unsigned long tmptaint = get_taint();
2241 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002242
Bastian Blank91fcd412007-04-23 14:41:14 -07002243 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002244 return -EPERM;
2245
Andi Kleen25ddbb12008-10-15 22:01:41 -07002246 t = *table;
2247 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002248 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002249 if (err < 0)
2250 return err;
2251
2252 if (write) {
2253 /*
2254 * Poor man's atomic or. Not worth adding a primitive
2255 * to everyone's atomic.h for this
2256 */
2257 int i;
2258 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2259 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302260 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002261 }
2262 }
2263
2264 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002265}
2266
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002267#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002268static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002269 void __user *buffer, size_t *lenp, loff_t *ppos)
2270{
2271 if (write && !capable(CAP_SYS_ADMIN))
2272 return -EPERM;
2273
2274 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2275}
2276#endif
2277
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278struct do_proc_dointvec_minmax_conv_param {
2279 int *min;
2280 int *max;
2281};
2282
Amerigo Wang00b7c332010-05-05 00:26:45 +00002283static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2284 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 int write, void *data)
2286{
2287 struct do_proc_dointvec_minmax_conv_param *param = data;
2288 if (write) {
2289 int val = *negp ? -*lvalp : *lvalp;
2290 if ((param->min && *param->min > val) ||
2291 (param->max && *param->max < val))
2292 return -EINVAL;
2293 *valp = val;
2294 } else {
2295 int val = *valp;
2296 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002297 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002298 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002300 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 *lvalp = (unsigned long)val;
2302 }
2303 }
2304 return 0;
2305}
2306
2307/**
2308 * proc_dointvec_minmax - read a vector of integers with min/max values
2309 * @table: the sysctl table
2310 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 * @buffer: the user buffer
2312 * @lenp: the size of the user buffer
2313 * @ppos: file position
2314 *
2315 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2316 * values from/to the user buffer, treated as an ASCII string.
2317 *
2318 * This routine will ensure the values are within the range specified by
2319 * table->extra1 (min) and table->extra2 (max).
2320 *
2321 * Returns 0 on success.
2322 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002323int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 void __user *buffer, size_t *lenp, loff_t *ppos)
2325{
2326 struct do_proc_dointvec_minmax_conv_param param = {
2327 .min = (int *) table->extra1,
2328 .max = (int *) table->extra2,
2329 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002330 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 do_proc_dointvec_minmax_conv, &param);
2332}
2333
Kees Cook54b50192012-07-30 14:39:18 -07002334static void validate_coredump_safety(void)
2335{
Alex Kelly046d6622012-10-04 17:15:23 -07002336#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002337 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002338 core_pattern[0] != '/' && core_pattern[0] != '|') {
2339 printk(KERN_WARNING "Unsafe core_pattern used with "\
2340 "suid_dumpable=2. Pipe handler or fully qualified "\
2341 "core dump path required.\n");
2342 }
Alex Kelly046d6622012-10-04 17:15:23 -07002343#endif
Kees Cook54b50192012-07-30 14:39:18 -07002344}
2345
2346static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2347 void __user *buffer, size_t *lenp, loff_t *ppos)
2348{
2349 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2350 if (!error)
2351 validate_coredump_safety();
2352 return error;
2353}
2354
Alex Kelly046d6622012-10-04 17:15:23 -07002355#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002356static int proc_dostring_coredump(struct ctl_table *table, int write,
2357 void __user *buffer, size_t *lenp, loff_t *ppos)
2358{
2359 int error = proc_dostring(table, write, buffer, lenp, ppos);
2360 if (!error)
2361 validate_coredump_safety();
2362 return error;
2363}
Alex Kelly046d6622012-10-04 17:15:23 -07002364#endif
Kees Cook54b50192012-07-30 14:39:18 -07002365
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002366static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 void __user *buffer,
2368 size_t *lenp, loff_t *ppos,
2369 unsigned long convmul,
2370 unsigned long convdiv)
2371{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002372 unsigned long *i, *min, *max;
2373 int vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002374 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002375 char *kbuf = NULL, *p;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002376
2377 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 *lenp = 0;
2379 return 0;
2380 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002381
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002382 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 min = (unsigned long *) table->extra1;
2384 max = (unsigned long *) table->extra2;
2385 vleft = table->maxlen / sizeof(unsigned long);
2386 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002387
2388 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07002389 if (*ppos) {
2390 switch (sysctl_writes_strict) {
2391 case SYSCTL_WRITES_STRICT:
2392 goto out;
2393 case SYSCTL_WRITES_WARN:
2394 warn_sysctl_write(table);
2395 break;
2396 default:
2397 break;
2398 }
2399 }
2400
Amerigo Wang00b7c332010-05-05 00:26:45 +00002401 if (left > PAGE_SIZE - 1)
2402 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002403 p = kbuf = memdup_user_nul(buffer, left);
2404 if (IS_ERR(kbuf))
2405 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002406 }
2407
Eric Dumazet27b3d802010-10-07 12:59:29 -07002408 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002409 unsigned long val;
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002412 bool neg;
2413
Al Viro70f6cbb2015-12-24 00:13:10 -05002414 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002415
Al Viro70f6cbb2015-12-24 00:13:10 -05002416 err = proc_get_long(&p, &left, &val, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002417 proc_wspace_sep,
2418 sizeof(proc_wspace_sep), NULL);
2419 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 break;
2421 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 continue;
2423 if ((min && val < *min) || (max && val > *max))
2424 continue;
2425 *i = val;
2426 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002427 val = convdiv * (*i) / convmul;
Chen Gang78338192013-11-12 15:11:21 -08002428 if (!first) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002429 err = proc_put_char(&buffer, &left, '\t');
Chen Gang78338192013-11-12 15:11:21 -08002430 if (err)
2431 break;
2432 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002433 err = proc_put_long(&buffer, &left, val, false);
2434 if (err)
2435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
2437 }
2438
Amerigo Wang00b7c332010-05-05 00:26:45 +00002439 if (!write && !first && left && !err)
2440 err = proc_put_char(&buffer, &left, '\n');
2441 if (write && !err)
Al Viro70f6cbb2015-12-24 00:13:10 -05002442 left -= proc_skip_spaces(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002444 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002445 if (first)
2446 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002449out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002451 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
2453
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002454static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002455 void __user *buffer,
2456 size_t *lenp, loff_t *ppos,
2457 unsigned long convmul,
2458 unsigned long convdiv)
2459{
2460 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002461 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002462}
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464/**
2465 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2466 * @table: the sysctl table
2467 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 * @buffer: the user buffer
2469 * @lenp: the size of the user buffer
2470 * @ppos: file position
2471 *
2472 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2473 * values from/to the user buffer, treated as an ASCII string.
2474 *
2475 * This routine will ensure the values are within the range specified by
2476 * table->extra1 (min) and table->extra2 (max).
2477 *
2478 * Returns 0 on success.
2479 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002480int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 void __user *buffer, size_t *lenp, loff_t *ppos)
2482{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002483 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
2486/**
2487 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2488 * @table: the sysctl table
2489 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 * @buffer: the user buffer
2491 * @lenp: the size of the user buffer
2492 * @ppos: file position
2493 *
2494 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2495 * values from/to the user buffer, treated as an ASCII string. The values
2496 * are treated as milliseconds, and converted to jiffies when they are stored.
2497 *
2498 * This routine will ensure the values are within the range specified by
2499 * table->extra1 (min) and table->extra2 (max).
2500 *
2501 * Returns 0 on success.
2502 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002503int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 void __user *buffer,
2505 size_t *lenp, loff_t *ppos)
2506{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002507 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 lenp, ppos, HZ, 1000l);
2509}
2510
2511
Amerigo Wang00b7c332010-05-05 00:26:45 +00002512static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 int *valp,
2514 int write, void *data)
2515{
2516 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002517 if (*lvalp > LONG_MAX / HZ)
2518 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2520 } else {
2521 int val = *valp;
2522 unsigned long lval;
2523 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002524 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002525 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002527 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 lval = (unsigned long)val;
2529 }
2530 *lvalp = lval / HZ;
2531 }
2532 return 0;
2533}
2534
Amerigo Wang00b7c332010-05-05 00:26:45 +00002535static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 int *valp,
2537 int write, void *data)
2538{
2539 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002540 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2541 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2543 } else {
2544 int val = *valp;
2545 unsigned long lval;
2546 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002547 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002548 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002550 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 lval = (unsigned long)val;
2552 }
2553 *lvalp = jiffies_to_clock_t(lval);
2554 }
2555 return 0;
2556}
2557
Amerigo Wang00b7c332010-05-05 00:26:45 +00002558static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 int *valp,
2560 int write, void *data)
2561{
2562 if (write) {
Francesco Fuscod738ce82013-07-24 10:39:07 +02002563 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2564
2565 if (jif > INT_MAX)
2566 return 1;
2567 *valp = (int)jif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 } else {
2569 int val = *valp;
2570 unsigned long lval;
2571 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002572 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002573 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002575 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 lval = (unsigned long)val;
2577 }
2578 *lvalp = jiffies_to_msecs(lval);
2579 }
2580 return 0;
2581}
2582
2583/**
2584 * proc_dointvec_jiffies - read a vector of integers as seconds
2585 * @table: the sysctl table
2586 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 * @buffer: the user buffer
2588 * @lenp: the size of the user buffer
2589 * @ppos: file position
2590 *
2591 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2592 * values from/to the user buffer, treated as an ASCII string.
2593 * The values read are assumed to be in seconds, and are converted into
2594 * jiffies.
2595 *
2596 * Returns 0 on success.
2597 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002598int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 void __user *buffer, size_t *lenp, loff_t *ppos)
2600{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002601 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 do_proc_dointvec_jiffies_conv,NULL);
2603}
2604
2605/**
2606 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2607 * @table: the sysctl table
2608 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 * @buffer: the user buffer
2610 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002611 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 *
2613 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2614 * values from/to the user buffer, treated as an ASCII string.
2615 * The values read are assumed to be in 1/USER_HZ seconds, and
2616 * are converted into jiffies.
2617 *
2618 * Returns 0 on success.
2619 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002620int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 void __user *buffer, size_t *lenp, loff_t *ppos)
2622{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002623 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 do_proc_dointvec_userhz_jiffies_conv,NULL);
2625}
2626
2627/**
2628 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2629 * @table: the sysctl table
2630 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 * @buffer: the user buffer
2632 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002633 * @ppos: file position
2634 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 *
2636 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2637 * values from/to the user buffer, treated as an ASCII string.
2638 * The values read are assumed to be in 1/1000 seconds, and
2639 * are converted into jiffies.
2640 *
2641 * Returns 0 on success.
2642 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002643int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 void __user *buffer, size_t *lenp, loff_t *ppos)
2645{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002646 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 do_proc_dointvec_ms_jiffies_conv, NULL);
2648}
2649
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002650static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002651 void __user *buffer, size_t *lenp, loff_t *ppos)
2652{
2653 struct pid *new_pid;
2654 pid_t tmp;
2655 int r;
2656
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002657 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002658
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002659 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002660 lenp, ppos, NULL, NULL);
2661 if (r || !write)
2662 return r;
2663
2664 new_pid = find_get_pid(tmp);
2665 if (!new_pid)
2666 return -ESRCH;
2667
2668 put_pid(xchg(&cad_pid, new_pid));
2669 return 0;
2670}
2671
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002672/**
2673 * proc_do_large_bitmap - read/write from/to a large bitmap
2674 * @table: the sysctl table
2675 * @write: %TRUE if this is a write to the sysctl file
2676 * @buffer: the user buffer
2677 * @lenp: the size of the user buffer
2678 * @ppos: file position
2679 *
2680 * The bitmap is stored at table->data and the bitmap length (in bits)
2681 * in table->maxlen.
2682 *
2683 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2684 * large bitmaps may be represented in a compact manner. Writing into
2685 * the file will clear the bitmap then update it with the given input.
2686 *
2687 * Returns 0 on success.
2688 */
2689int proc_do_large_bitmap(struct ctl_table *table, int write,
2690 void __user *buffer, size_t *lenp, loff_t *ppos)
2691{
2692 int err = 0;
2693 bool first = 1;
2694 size_t left = *lenp;
2695 unsigned long bitmap_len = table->maxlen;
WANG Cong122ff242014-05-12 16:04:53 -07002696 unsigned long *bitmap = *(unsigned long **) table->data;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002697 unsigned long *tmp_bitmap = NULL;
2698 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
2699
WANG Cong122ff242014-05-12 16:04:53 -07002700 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002701 *lenp = 0;
2702 return 0;
2703 }
2704
2705 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002706 char *kbuf, *p;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002707
2708 if (left > PAGE_SIZE - 1)
2709 left = PAGE_SIZE - 1;
2710
Al Viro70f6cbb2015-12-24 00:13:10 -05002711 p = kbuf = memdup_user_nul(buffer, left);
2712 if (IS_ERR(kbuf))
2713 return PTR_ERR(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002714
2715 tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
2716 GFP_KERNEL);
2717 if (!tmp_bitmap) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002718 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002719 return -ENOMEM;
2720 }
Al Viro70f6cbb2015-12-24 00:13:10 -05002721 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002722 while (!err && left) {
2723 unsigned long val_a, val_b;
2724 bool neg;
2725
Al Viro70f6cbb2015-12-24 00:13:10 -05002726 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002727 sizeof(tr_a), &c);
2728 if (err)
2729 break;
2730 if (val_a >= bitmap_len || neg) {
2731 err = -EINVAL;
2732 break;
2733 }
2734
2735 val_b = val_a;
2736 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002737 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002738 left--;
2739 }
2740
2741 if (c == '-') {
Al Viro70f6cbb2015-12-24 00:13:10 -05002742 err = proc_get_long(&p, &left, &val_b,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002743 &neg, tr_b, sizeof(tr_b),
2744 &c);
2745 if (err)
2746 break;
2747 if (val_b >= bitmap_len || neg ||
2748 val_a > val_b) {
2749 err = -EINVAL;
2750 break;
2751 }
2752 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002753 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002754 left--;
2755 }
2756 }
2757
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002758 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002759 first = 0;
Al Viro70f6cbb2015-12-24 00:13:10 -05002760 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002761 }
Al Viro70f6cbb2015-12-24 00:13:10 -05002762 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002763 } else {
2764 unsigned long bit_a, bit_b = 0;
2765
2766 while (left) {
2767 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
2768 if (bit_a >= bitmap_len)
2769 break;
2770 bit_b = find_next_zero_bit(bitmap, bitmap_len,
2771 bit_a + 1) - 1;
2772
2773 if (!first) {
2774 err = proc_put_char(&buffer, &left, ',');
2775 if (err)
2776 break;
2777 }
2778 err = proc_put_long(&buffer, &left, bit_a, false);
2779 if (err)
2780 break;
2781 if (bit_a != bit_b) {
2782 err = proc_put_char(&buffer, &left, '-');
2783 if (err)
2784 break;
2785 err = proc_put_long(&buffer, &left, bit_b, false);
2786 if (err)
2787 break;
2788 }
2789
2790 first = 0; bit_b++;
2791 }
2792 if (!err)
2793 err = proc_put_char(&buffer, &left, '\n');
2794 }
2795
2796 if (!err) {
2797 if (write) {
2798 if (*ppos)
2799 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
2800 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07002801 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002802 }
2803 kfree(tmp_bitmap);
2804 *lenp -= left;
2805 *ppos += *lenp;
2806 return 0;
2807 } else {
2808 kfree(tmp_bitmap);
2809 return err;
2810 }
2811}
2812
Jovi Zhang55610502011-01-12 17:00:45 -08002813#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002815int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 void __user *buffer, size_t *lenp, loff_t *ppos)
2817{
2818 return -ENOSYS;
2819}
2820
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002821int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 void __user *buffer, size_t *lenp, loff_t *ppos)
2823{
2824 return -ENOSYS;
2825}
2826
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002827int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 void __user *buffer, size_t *lenp, loff_t *ppos)
2829{
2830 return -ENOSYS;
2831}
2832
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002833int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 void __user *buffer, size_t *lenp, loff_t *ppos)
2835{
2836 return -ENOSYS;
2837}
2838
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002839int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 void __user *buffer, size_t *lenp, loff_t *ppos)
2841{
2842 return -ENOSYS;
2843}
2844
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002845int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 void __user *buffer, size_t *lenp, loff_t *ppos)
2847{
2848 return -ENOSYS;
2849}
2850
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002851int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 void __user *buffer, size_t *lenp, loff_t *ppos)
2853{
2854 return -ENOSYS;
2855}
2856
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002857int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 void __user *buffer,
2859 size_t *lenp, loff_t *ppos)
2860{
2861 return -ENOSYS;
2862}
2863
2864
Jovi Zhang55610502011-01-12 17:00:45 -08002865#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867/*
2868 * No sense putting this after each symbol definition, twice,
2869 * exception granted :-)
2870 */
2871EXPORT_SYMBOL(proc_dointvec);
2872EXPORT_SYMBOL(proc_dointvec_jiffies);
2873EXPORT_SYMBOL(proc_dointvec_minmax);
2874EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2875EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2876EXPORT_SYMBOL(proc_dostring);
2877EXPORT_SYMBOL(proc_doulongvec_minmax);
2878EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);