blob: 599510a3355e1336609c4237e1a566905c7a117d [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>
Steven Rostedtfd4b6162012-07-30 14:42:48 -070033#include <linux/kmemleak.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070034#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/init.h>
36#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010037#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030038#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/sysrq.h>
40#include <linux/highuid.h>
41#include <linux/writeback.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020042#include <linux/ratelimit.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070043#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070046#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/times.h>
48#include <linux/limits.h>
49#include <linux/dcache.h>
Alexey Dobriyan6e006702010-01-20 22:27:56 +020050#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070052#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080053#include <linux/nfs_fs.h>
54#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070055#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020056#include <linux/ftrace.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020057#include <linux/perf_event.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050058#include <linux/kprobes.h>
Jens Axboeb492e952010-05-19 21:03:16 +020059#include <linux/pipe_fs_i.h>
David Rientjes8e4228e2010-08-09 17:18:56 -070060#include <linux/oom.h>
Eric Paris17f60a72011-04-01 17:07:50 -040061#include <linux/kmod.h>
Dan Ballard73efc032011-10-31 17:11:20 -070062#include <linux/capability.h>
Al Viro40401532012-02-13 03:58:52 +000063#include <linux/binfmts.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060064#include <linux/sched/sysctl.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010065#include <linux/sched/coredump.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>
Eric W. Biedermand2921682016-09-28 00:27:17 -050068#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Christian Brauner7f2923c2019-03-07 16:29:40 -080070#include "../lib/kstrtox.h"
71
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080072#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <asm/processor.h>
74
Andi Kleen29cbc782006-09-30 01:47:55 +020075#ifdef CONFIG_X86
76#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010077#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010078#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020079#endif
David Howellsd550bbd2012-03-28 18:30:03 +010080#ifdef CONFIG_SPARC
81#include <asm/setup.h>
82#endif
Dave Youngc55b7c32010-03-10 15:24:08 -080083#ifdef CONFIG_BSD_PROCESS_ACCT
84#include <linux/acct.h>
85#endif
Dave Young4f0e0562010-03-10 15:24:09 -080086#ifdef CONFIG_RT_MUTEXES
87#include <linux/rtmutex.h>
88#endif
Dave Young2edf5e42010-03-10 15:24:10 -080089#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
90#include <linux/lockdep.h>
91#endif
Dave Young15485a42010-03-10 15:24:07 -080092#ifdef CONFIG_CHR_DEV_SG
93#include <scsi/sg.h>
94#endif
Alexander Popov964c9df2018-08-17 01:17:03 +030095#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
96#include <linux/stackleak.h>
97#endif
Don Zickus58687ac2010-05-07 17:11:44 -040098#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050099#include <linux/nmi.h>
100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#if defined(CONFIG_SYSCTL)
103
104/* External variables not in a header file. */
Alan Coxd6e71142005-06-23 00:09:43 -0700105extern int suid_dumpable;
Alex Kelly046d6622012-10-04 17:15:23 -0700106#ifdef CONFIG_COREDUMP
107extern int core_uses_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -0700109extern unsigned int core_pipe_limit;
Alex Kelly046d6622012-10-04 17:15:23 -0700110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111extern int pid_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112extern int pid_max_min, pid_max_max;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800113extern int percpu_pagelist_fraction;
Arjan van de Ven97455122008-01-25 21:08:34 +0100114extern int latencytop_enabled;
Alexey Dobriyan9b80a182016-09-02 00:38:52 +0300115extern unsigned int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000116#ifndef CONFIG_MMU
117extern int sysctl_nr_trim_pages;
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700120/* Constants used for minimum and maximum */
Don Zickus2508ce12010-05-07 17:11:46 -0400121#ifdef CONFIG_LOCKUP_DETECTOR
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700122static int sixty = 60;
123#endif
124
Aaron Tomlin270750db2014-01-20 17:34:13 +0000125static int __maybe_unused neg_one = -1;
126
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700127static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700128static int __maybe_unused one = 1;
129static int __maybe_unused two = 2;
Dave Hansen5509a5d2014-04-03 14:48:19 -0700130static int __maybe_unused four = 4;
Will Deacon9002b212019-04-05 18:39:38 -0700131static unsigned long zero_ul;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800132static unsigned long one_ul = 1;
Christian Brauner32a5ad92019-03-07 16:29:43 -0800133static unsigned long long_max = LONG_MAX;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700134static int one_hundred = 100;
Johannes Weiner795ae7a2016-03-17 14:19:14 -0700135static int one_thousand = 1000;
Dave Youngaf913222009-09-22 16:43:33 -0700136#ifdef CONFIG_PRINTK
137static int ten_thousand = 10000;
138#endif
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -0300139#ifdef CONFIG_PERF_EVENTS
140static int six_hundred_forty_kb = 640 * 1024;
141#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700142
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700143/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
144static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
147static int maxolduid = 65535;
148static int minolduid;
149
150static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700151static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Dmitry Vyukova2e51442018-08-21 21:55:52 -0700153/*
154 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
155 * and hung_task_check_interval_secs
156 */
Liu Hua80df2842014-04-07 15:38:57 -0700157#ifdef CONFIG_DETECT_HUNG_TASK
158static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
159#endif
160
Dave Youngd14f1722010-02-25 20:28:57 -0500161#ifdef CONFIG_INOTIFY_USER
162#include <linux/inotify.h>
163#endif
David S. Miller72c57ed2008-09-11 23:29:54 -0700164#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#endif
166
167#ifdef __hppa__
168extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530169#endif
170
171#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172extern int unaligned_enabled;
173#endif
174
Jes Sorensend2b176e2006-02-28 09:42:23 -0800175#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800176extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800177#endif
178
Vineet Guptab6fca722013-01-09 20:06:28 +0530179#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
180extern int no_unaligned_warning;
181#endif
182
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700183#ifdef CONFIG_PROC_SYSCTL
Kees Cookf4aacea2014-06-06 14:37:19 -0700184
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700185/**
186 * enum sysctl_writes_mode - supported sysctl write modes
187 *
188 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
189 * to be written, and multiple writes on the same sysctl file descriptor
190 * will rewrite the sysctl value, regardless of file position. No warning
191 * is issued when the initial position is not 0.
192 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
193 * not 0.
194 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
195 * file position 0 and the value must be fully contained in the buffer
196 * sent to the write syscall. If dealing with strings respect the file
197 * position, but restrict this to the max length of the buffer, anything
198 * passed the max lenght will be ignored. Multiple writes will append
199 * to the buffer.
200 *
201 * These write modes control how current file position affects the behavior of
202 * updating sysctl values through the proc interface on each write.
203 */
204enum sysctl_writes_mode {
205 SYSCTL_WRITES_LEGACY = -1,
206 SYSCTL_WRITES_WARN = 0,
207 SYSCTL_WRITES_STRICT = 1,
208};
Kees Cookf4aacea2014-06-06 14:37:19 -0700209
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700210static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
Kees Cookf4aacea2014-06-06 14:37:19 -0700211
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700212static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700213 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700214static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800215 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700216#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700217
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700218#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700219static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700220 void __user *buffer, size_t *lenp, loff_t *ppos);
221#endif
222
Kees Cook54b50192012-07-30 14:39:18 -0700223static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
224 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700225#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700226static int proc_dostring_coredump(struct ctl_table *table, int write,
227 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700228#endif
Eric Biggers319e0a22018-02-06 15:41:49 -0800229static int proc_dopipe_max_size(struct ctl_table *table, int write,
230 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexei Starovoitov3fcc5532019-02-27 18:30:44 -0800231#ifdef CONFIG_BPF_SYSCALL
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800232static int proc_dointvec_minmax_bpf_stats(struct ctl_table *table, int write,
233 void __user *buffer, size_t *lenp,
234 loff_t *ppos);
Alexei Starovoitov3fcc5532019-02-27 18:30:44 -0800235#endif
Kees Cook54b50192012-07-30 14:39:18 -0700236
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700237#ifdef CONFIG_MAGIC_SYSRQ
Randy Dunlap5f733e82018-08-21 22:01:06 -0700238/* Note: sysrq code uses its own private copy */
Ben Hutchings8eaede42013-10-07 01:05:46 +0100239static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700240
Joe Perches6f8fd1d2014-06-06 14:38:08 -0700241static int sysrq_sysctl_handler(struct ctl_table *table, int write,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700242 void __user *buffer, size_t *lenp,
243 loff_t *ppos)
244{
245 int error;
246
247 error = proc_dointvec(table, write, buffer, lenp, ppos);
248 if (error)
249 return error;
250
251 if (write)
252 sysrq_toggle_support(__sysrq_enabled);
253
254 return 0;
255}
256
257#endif
258
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700259static struct ctl_table kern_table[];
260static struct ctl_table vm_table[];
261static struct ctl_table fs_table[];
262static struct ctl_table debug_table[];
263static struct ctl_table dev_table[];
264extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800265#ifdef CONFIG_EPOLL
266extern struct ctl_table epoll_table[];
267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Luis R. Rodriguezceb18132018-03-10 06:14:51 -0800269#ifdef CONFIG_FW_LOADER_USER_HELPER
270extern struct ctl_table firmware_config_table[];
271#endif
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
274int sysctl_legacy_va_layout;
275#endif
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/* The default sysctl tables: */
278
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800279static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .procname = "kernel",
282 .mode = 0555,
283 .child = kern_table,
284 },
285 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .procname = "vm",
287 .mode = 0555,
288 .child = vm_table,
289 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .procname = "fs",
292 .mode = 0555,
293 .child = fs_table,
294 },
295 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .procname = "debug",
297 .mode = 0555,
298 .child = debug_table,
299 },
300 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 .procname = "dev",
302 .mode = 0555,
303 .child = dev_table,
304 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700305 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306};
307
Ingo Molnar77e54a12007-07-09 18:52:00 +0200308#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100309static int min_sched_granularity_ns = 100000; /* 100 usecs */
310static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
311static int min_wakeup_granularity_ns; /* 0 usecs */
312static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200313#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100314static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
315static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200316#endif /* CONFIG_SMP */
317#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200318
Mel Gorman5e771902010-05-24 14:32:31 -0700319#ifdef CONFIG_COMPACTION
320static int min_extfrag_threshold;
321static int max_extfrag_threshold = 1000;
322#endif
323
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700324static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200325 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200326 .procname = "sched_child_runs_first",
327 .data = &sysctl_sched_child_runs_first,
328 .maxlen = sizeof(unsigned int),
329 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800330 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200331 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200332#ifdef CONFIG_SCHED_DEBUG
333 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100334 .procname = "sched_min_granularity_ns",
335 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200336 .maxlen = sizeof(unsigned int),
337 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800338 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100339 .extra1 = &min_sched_granularity_ns,
340 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200341 },
342 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200343 .procname = "sched_latency_ns",
344 .data = &sysctl_sched_latency,
345 .maxlen = sizeof(unsigned int),
346 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800347 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200348 .extra1 = &min_sched_granularity_ns,
349 .extra2 = &max_sched_granularity_ns,
350 },
351 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200352 .procname = "sched_wakeup_granularity_ns",
353 .data = &sysctl_sched_wakeup_granularity,
354 .maxlen = sizeof(unsigned int),
355 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800356 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200357 .extra1 = &min_wakeup_granularity_ns,
358 .extra2 = &max_wakeup_granularity_ns,
359 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200360#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200361 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100362 .procname = "sched_tunable_scaling",
363 .data = &sysctl_sched_tunable_scaling,
364 .maxlen = sizeof(enum sched_tunable_scaling),
365 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800366 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100367 .extra1 = &min_sched_tunable_scaling,
368 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200369 },
370 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900371 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200372 .data = &sysctl_sched_migration_cost,
373 .maxlen = sizeof(unsigned int),
374 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800375 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200376 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100377 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100378 .procname = "sched_nr_migrate",
379 .data = &sysctl_sched_nr_migrate,
380 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100381 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800382 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100383 },
Mel Gormancb251762016-02-05 09:08:36 +0000384#ifdef CONFIG_SCHEDSTATS
385 {
386 .procname = "sched_schedstats",
387 .data = NULL,
388 .maxlen = sizeof(unsigned int),
389 .mode = 0644,
390 .proc_handler = sysctl_schedstats,
391 .extra1 = &zero,
392 .extra2 = &one,
393 },
394#endif /* CONFIG_SCHEDSTATS */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200395#endif /* CONFIG_SMP */
396#ifdef CONFIG_NUMA_BALANCING
397 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200398 .procname = "numa_balancing_scan_delay_ms",
399 .data = &sysctl_numa_balancing_scan_delay,
400 .maxlen = sizeof(unsigned int),
401 .mode = 0644,
402 .proc_handler = proc_dointvec,
403 },
404 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200405 .procname = "numa_balancing_scan_period_min_ms",
406 .data = &sysctl_numa_balancing_scan_period_min,
407 .maxlen = sizeof(unsigned int),
408 .mode = 0644,
409 .proc_handler = proc_dointvec,
410 },
411 {
412 .procname = "numa_balancing_scan_period_max_ms",
413 .data = &sysctl_numa_balancing_scan_period_max,
414 .maxlen = sizeof(unsigned int),
415 .mode = 0644,
416 .proc_handler = proc_dointvec,
417 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200418 {
419 .procname = "numa_balancing_scan_size_mb",
420 .data = &sysctl_numa_balancing_scan_size,
421 .maxlen = sizeof(unsigned int),
422 .mode = 0644,
Kirill Tkhai64192652014-10-16 14:39:37 +0400423 .proc_handler = proc_dointvec_minmax,
424 .extra1 = &one,
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200425 },
Mel Gorman3a7053b2013-10-07 11:29:00 +0100426 {
Andi Kleen54a43d52014-01-23 15:53:13 -0800427 .procname = "numa_balancing",
428 .data = NULL, /* filled in by handler */
429 .maxlen = sizeof(unsigned int),
430 .mode = 0644,
431 .proc_handler = sysctl_numa_balancing,
432 .extra1 = &zero,
433 .extra2 = &one,
434 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200435#endif /* CONFIG_NUMA_BALANCING */
436#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200437 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100438 .procname = "sched_rt_period_us",
439 .data = &sysctl_sched_rt_period,
440 .maxlen = sizeof(unsigned int),
441 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800442 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100443 },
444 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100445 .procname = "sched_rt_runtime_us",
446 .data = &sysctl_sched_rt_runtime,
447 .maxlen = sizeof(int),
448 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800449 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100450 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600451 {
452 .procname = "sched_rr_timeslice_ms",
Shile Zhang975e1552017-01-28 22:00:49 +0800453 .data = &sysctl_sched_rr_timeslice,
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600454 .maxlen = sizeof(int),
455 .mode = 0644,
456 .proc_handler = sched_rr_handler,
457 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100458#ifdef CONFIG_SCHED_AUTOGROUP
459 {
460 .procname = "sched_autogroup_enabled",
461 .data = &sysctl_sched_autogroup_enabled,
462 .maxlen = sizeof(unsigned int),
463 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800464 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100465 .extra1 = &zero,
466 .extra2 = &one,
467 },
468#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700469#ifdef CONFIG_CFS_BANDWIDTH
470 {
471 .procname = "sched_cfs_bandwidth_slice_us",
472 .data = &sysctl_sched_cfs_bandwidth_slice,
473 .maxlen = sizeof(unsigned int),
474 .mode = 0644,
475 .proc_handler = proc_dointvec_minmax,
476 .extra1 = &one,
477 },
478#endif
Quentin Perret8d5d0cf2018-12-03 09:56:23 +0000479#if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
480 {
481 .procname = "sched_energy_aware",
482 .data = &sysctl_sched_energy_aware,
483 .maxlen = sizeof(unsigned int),
484 .mode = 0644,
485 .proc_handler = sched_energy_aware_handler,
486 .extra1 = &zero,
487 .extra2 = &one,
488 },
489#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700490#ifdef CONFIG_PROVE_LOCKING
491 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700492 .procname = "prove_locking",
493 .data = &prove_locking,
494 .maxlen = sizeof(int),
495 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800496 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700497 },
498#endif
499#ifdef CONFIG_LOCK_STAT
500 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700501 .procname = "lock_stat",
502 .data = &lock_stat,
503 .maxlen = sizeof(int),
504 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800505 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700506 },
507#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200508 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 .procname = "panic",
510 .data = &panic_timeout,
511 .maxlen = sizeof(int),
512 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800513 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 },
Alex Kelly046d6622012-10-04 17:15:23 -0700515#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 .procname = "core_uses_pid",
518 .data = &core_uses_pid,
519 .maxlen = sizeof(int),
520 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800521 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 },
523 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .procname = "core_pattern",
525 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700526 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700528 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 },
Neil Hormana2939802009-09-23 15:56:56 -0700530 {
Neil Hormana2939802009-09-23 15:56:56 -0700531 .procname = "core_pipe_limit",
532 .data = &core_pipe_limit,
533 .maxlen = sizeof(unsigned int),
534 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800535 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700536 },
Alex Kelly046d6622012-10-04 17:15:23 -0700537#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800538#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700541 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800542 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800543 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 },
Kees Cookf4aacea2014-06-06 14:37:19 -0700545 {
546 .procname = "sysctl_writes_strict",
547 .data = &sysctl_writes_strict,
548 .maxlen = sizeof(int),
549 .mode = 0644,
550 .proc_handler = proc_dointvec_minmax,
551 .extra1 = &neg_one,
552 .extra2 = &one,
553 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800554#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100555#ifdef CONFIG_LATENCYTOP
556 {
557 .procname = "latencytop",
558 .data = &latencytop_enabled,
559 .maxlen = sizeof(int),
560 .mode = 0644,
Mel Gormancb251762016-02-05 09:08:36 +0000561 .proc_handler = sysctl_latencytop,
Arjan van de Ven97455122008-01-25 21:08:34 +0100562 },
563#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#ifdef CONFIG_BLK_DEV_INITRD
565 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .procname = "real-root-dev",
567 .data = &real_root_dev,
568 .maxlen = sizeof(int),
569 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800570 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 },
572#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700573 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700574 .procname = "print-fatal-signals",
575 .data = &print_fatal_signals,
576 .maxlen = sizeof(int),
577 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800578 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700579 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700580#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .procname = "reboot-cmd",
583 .data = reboot_command,
584 .maxlen = 256,
585 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800586 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 },
588 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 .procname = "stop-a",
590 .data = &stop_a_enabled,
591 .maxlen = sizeof (int),
592 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800593 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 },
595 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 .procname = "scons-poweroff",
597 .data = &scons_pwroff,
598 .maxlen = sizeof (int),
599 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800600 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 },
602#endif
David S. Miller08714202008-11-16 23:49:24 -0800603#ifdef CONFIG_SPARC64
604 {
David S. Miller08714202008-11-16 23:49:24 -0800605 .procname = "tsb-ratio",
606 .data = &sysctl_tsb_ratio,
607 .maxlen = sizeof (int),
608 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800609 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800610 },
611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#ifdef __hppa__
613 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 .procname = "soft-power",
615 .data = &pwrsw_enabled,
616 .maxlen = sizeof (int),
617 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800618 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530620#endif
621#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 .procname = "unaligned-trap",
624 .data = &unaligned_enabled,
625 .maxlen = sizeof (int),
626 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800627 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 },
629#endif
630 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 .procname = "ctrl-alt-del",
632 .data = &C_A_D,
633 .maxlen = sizeof(int),
634 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800635 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400637#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200638 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200639 .procname = "ftrace_enabled",
640 .data = &ftrace_enabled,
641 .maxlen = sizeof(int),
642 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800643 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200644 },
645#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500646#ifdef CONFIG_STACK_TRACER
647 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500648 .procname = "stack_tracer_enabled",
649 .data = &stack_tracer_enabled,
650 .maxlen = sizeof(int),
651 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800652 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500653 },
654#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400655#ifdef CONFIG_TRACING
656 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100657 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400658 .data = &ftrace_dump_on_oops,
659 .maxlen = sizeof(int),
660 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800661 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400662 },
Steven Rostedt (Red Hat)de7edd32013-06-14 16:21:43 -0400663 {
664 .procname = "traceoff_on_warning",
665 .data = &__disable_trace_on_warning,
666 .maxlen = sizeof(__disable_trace_on_warning),
667 .mode = 0644,
668 .proc_handler = proc_dointvec,
669 },
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500670 {
671 .procname = "tracepoint_printk",
672 .data = &tracepoint_printk,
673 .maxlen = sizeof(tracepoint_printk),
674 .mode = 0644,
Steven Rostedt (Red Hat)423917452016-11-23 15:52:45 -0500675 .proc_handler = tracepoint_printk_sysctl,
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500676 },
Steven Rostedt944ac422008-10-23 19:26:08 -0400677#endif
Dave Young2965faa2015-09-09 15:38:55 -0700678#ifdef CONFIG_KEXEC_CORE
Kees Cook79847542014-01-23 15:55:59 -0800679 {
680 .procname = "kexec_load_disabled",
681 .data = &kexec_load_disabled,
682 .maxlen = sizeof(int),
683 .mode = 0644,
684 /* only handle a transition from default "0" to "1" */
685 .proc_handler = proc_dointvec_minmax,
686 .extra1 = &one,
687 .extra2 = &one,
688 },
689#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200690#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 .procname = "modprobe",
693 .data = &modprobe_path,
694 .maxlen = KMOD_PATH_LEN,
695 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800696 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 },
Kees Cook3d433212009-04-02 15:49:29 -0700698 {
Kees Cook3d433212009-04-02 15:49:29 -0700699 .procname = "modules_disabled",
700 .data = &modules_disabled,
701 .maxlen = sizeof(int),
702 .mode = 0644,
703 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800704 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700705 .extra1 = &one,
706 .extra2 = &one,
707 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708#endif
Michael Marineau86d56132014-04-10 14:09:31 -0700709#ifdef CONFIG_UEVENT_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100712 .data = &uevent_helper,
713 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800715 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 },
Michael Marineau86d56132014-04-10 14:09:31 -0700717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#ifdef CONFIG_CHR_DEV_SG
719 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 .procname = "sg-big-buff",
721 .data = &sg_big_buff,
722 .maxlen = sizeof (int),
723 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800724 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 },
726#endif
727#ifdef CONFIG_BSD_PROCESS_ACCT
728 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 .procname = "acct",
730 .data = &acct_parm,
731 .maxlen = 3*sizeof(int),
732 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800733 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 },
735#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736#ifdef CONFIG_MAGIC_SYSRQ
737 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800739 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 .maxlen = sizeof (int),
741 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700742 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 },
744#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700745#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700748 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 .maxlen = sizeof (int),
750 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800751 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700753#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 .procname = "threads-max",
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700756 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 .maxlen = sizeof(int),
758 .mode = 0644,
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700759 .proc_handler = sysctl_max_threads,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 },
761 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 .procname = "random",
763 .mode = 0555,
764 .child = random_table,
765 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 {
Eric Paris17f60a72011-04-01 17:07:50 -0400767 .procname = "usermodehelper",
768 .mode = 0555,
769 .child = usermodehelper_table,
770 },
Luis R. Rodriguezceb18132018-03-10 06:14:51 -0800771#ifdef CONFIG_FW_LOADER_USER_HELPER
772 {
773 .procname = "firmware_config",
774 .mode = 0555,
775 .child = firmware_config_table,
776 },
777#endif
Eric Paris17f60a72011-04-01 17:07:50 -0400778 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .procname = "overflowuid",
780 .data = &overflowuid,
781 .maxlen = sizeof(int),
782 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800783 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 .extra1 = &minolduid,
785 .extra2 = &maxolduid,
786 },
787 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .procname = "overflowgid",
789 .data = &overflowgid,
790 .maxlen = sizeof(int),
791 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800792 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 .extra1 = &minolduid,
794 .extra2 = &maxolduid,
795 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800796#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797#ifdef CONFIG_MATHEMU
798 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 .procname = "ieee_emulation_warnings",
800 .data = &sysctl_ieee_emulation_warnings,
801 .maxlen = sizeof(int),
802 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800803 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 },
805#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200808 .data = &show_unhandled_signals,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 .maxlen = sizeof(int),
810 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800811 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 },
813#endif
814 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .procname = "pid_max",
816 .data = &pid_max,
817 .maxlen = sizeof (int),
818 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800819 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .extra1 = &pid_max_min,
821 .extra2 = &pid_max_max,
822 },
823 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .procname = "panic_on_oops",
825 .data = &panic_on_oops,
826 .maxlen = sizeof(int),
827 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800828 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 },
Feng Tang81c9d432019-01-03 15:28:20 -0800830 {
831 .procname = "panic_print",
832 .data = &panic_print,
833 .maxlen = sizeof(unsigned long),
834 .mode = 0644,
835 .proc_handler = proc_doulongvec_minmax,
836 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800837#if defined CONFIG_PRINTK
838 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800839 .procname = "printk",
840 .data = &console_loglevel,
841 .maxlen = 4*sizeof(int),
842 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800843 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800844 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700847 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 .maxlen = sizeof(int),
849 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800850 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 },
852 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700854 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 .maxlen = sizeof(int),
856 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800857 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 },
Dave Youngaf913222009-09-22 16:43:33 -0700859 {
Dave Youngaf913222009-09-22 16:43:33 -0700860 .procname = "printk_delay",
861 .data = &printk_delay_msec,
862 .maxlen = sizeof(int),
863 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800864 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700865 .extra1 = &zero,
866 .extra2 = &ten_thousand,
867 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 {
Borislav Petkov750afe72016-08-02 14:04:07 -0700869 .procname = "printk_devkmsg",
870 .data = devkmsg_log_str,
871 .maxlen = DEVKMSG_STR_MAX_SIZE,
872 .mode = 0644,
873 .proc_handler = devkmsg_sysctl_set_loglvl,
874 },
875 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800876 .procname = "dmesg_restrict",
877 .data = &dmesg_restrict,
878 .maxlen = sizeof(int),
879 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700880 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800881 .extra1 = &zero,
882 .extra2 = &one,
883 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800884 {
885 .procname = "kptr_restrict",
886 .data = &kptr_restrict,
887 .maxlen = sizeof(int),
888 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700889 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800890 .extra1 = &zero,
891 .extra2 = &two,
892 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800893#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800894 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 .procname = "ngroups_max",
896 .data = &ngroups_max,
897 .maxlen = sizeof (int),
898 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800899 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 },
Dan Ballard73efc032011-10-31 17:11:20 -0700901 {
902 .procname = "cap_last_cap",
903 .data = (void *)&cap_last_cap,
904 .maxlen = sizeof(int),
905 .mode = 0444,
906 .proc_handler = proc_dointvec,
907 },
Don Zickus58687ac2010-05-07 17:11:44 -0400908#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500909 {
Don Zickus58687ac2010-05-07 17:11:44 -0400910 .procname = "watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200911 .data = &watchdog_user_enabled,
912 .maxlen = sizeof(int),
913 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700914 .proc_handler = proc_watchdog,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700915 .extra1 = &zero,
916 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400917 },
918 {
919 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700920 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400921 .maxlen = sizeof(int),
922 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700923 .proc_handler = proc_watchdog_thresh,
Li Zefana6572f82013-05-17 10:31:04 +0800924 .extra1 = &zero,
Don Zickus58687ac2010-05-07 17:11:44 -0400925 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500926 },
Don Zickus2508ce12010-05-07 17:11:46 -0400927 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700928 .procname = "nmi_watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200929 .data = &nmi_watchdog_user_enabled,
930 .maxlen = sizeof(int),
Thomas Gleixner51d40522017-09-12 21:37:14 +0200931 .mode = NMI_WATCHDOG_SYSCTL_PERM,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700932 .proc_handler = proc_nmi_watchdog,
933 .extra1 = &zero,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700934 .extra2 = &one,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700935 },
936 {
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700937 .procname = "watchdog_cpumask",
938 .data = &watchdog_cpumask_bits,
939 .maxlen = NR_CPUS,
940 .mode = 0644,
941 .proc_handler = proc_watchdog_cpumask,
942 },
943#ifdef CONFIG_SOFTLOCKUP_DETECTOR
944 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700945 .procname = "soft_watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200946 .data = &soft_watchdog_user_enabled,
947 .maxlen = sizeof(int),
948 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700949 .proc_handler = proc_soft_watchdog,
950 .extra1 = &zero,
951 .extra2 = &one,
952 },
953 {
Don Zickus2508ce12010-05-07 17:11:46 -0400954 .procname = "softlockup_panic",
955 .data = &softlockup_panic,
956 .maxlen = sizeof(int),
957 .mode = 0644,
958 .proc_handler = proc_dointvec_minmax,
959 .extra1 = &zero,
960 .extra2 = &one,
961 },
Aaron Tomlined235872014-06-23 13:22:05 -0700962#ifdef CONFIG_SMP
963 {
964 .procname = "softlockup_all_cpu_backtrace",
965 .data = &sysctl_softlockup_all_cpu_backtrace,
966 .maxlen = sizeof(int),
967 .mode = 0644,
968 .proc_handler = proc_dointvec_minmax,
969 .extra1 = &zero,
970 .extra2 = &one,
971 },
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700972#endif /* CONFIG_SMP */
973#endif
974#ifdef CONFIG_HARDLOCKUP_DETECTOR
975 {
976 .procname = "hardlockup_panic",
977 .data = &hardlockup_panic,
978 .maxlen = sizeof(int),
979 .mode = 0644,
980 .proc_handler = proc_dointvec_minmax,
981 .extra1 = &zero,
982 .extra2 = &one,
983 },
984#ifdef CONFIG_SMP
Jiri Kosina55537872015-11-05 18:44:41 -0800985 {
986 .procname = "hardlockup_all_cpu_backtrace",
987 .data = &sysctl_hardlockup_all_cpu_backtrace,
988 .maxlen = sizeof(int),
989 .mode = 0644,
990 .proc_handler = proc_dointvec_minmax,
991 .extra1 = &zero,
992 .extra2 = &one,
993 },
Aaron Tomlined235872014-06-23 13:22:05 -0700994#endif /* CONFIG_SMP */
Don Zickus5dc30552010-11-29 17:07:17 -0500995#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700996#endif
997
Don Zickus5dc30552010-11-29 17:07:17 -0500998#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
999 {
1000 .procname = "unknown_nmi_panic",
1001 .data = &unknown_nmi_panic,
1002 .maxlen = sizeof (int),
1003 .mode = 0644,
1004 .proc_handler = proc_dointvec,
1005 },
Don Zickus504d7cf2010-02-12 17:19:19 -05001006#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007#if defined(CONFIG_X86)
1008 {
Don Zickus8da5add2006-09-26 10:52:27 +02001009 .procname = "panic_on_unrecovered_nmi",
1010 .data = &panic_on_unrecovered_nmi,
1011 .maxlen = sizeof(int),
1012 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001013 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +02001014 },
1015 {
Kurt Garloff5211a242009-06-24 14:32:11 -07001016 .procname = "panic_on_io_nmi",
1017 .data = &panic_on_io_nmi,
1018 .maxlen = sizeof(int),
1019 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001020 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -07001021 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +09001022#ifdef CONFIG_DEBUG_STACKOVERFLOW
1023 {
1024 .procname = "panic_on_stackoverflow",
1025 .data = &sysctl_panic_on_stackoverflow,
1026 .maxlen = sizeof(int),
1027 .mode = 0644,
1028 .proc_handler = proc_dointvec,
1029 },
1030#endif
Kurt Garloff5211a242009-06-24 14:32:11 -07001031 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 .procname = "bootloader_type",
1033 .data = &bootloader_type,
1034 .maxlen = sizeof (int),
1035 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001036 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +01001038 {
H. Peter Anvin50312962009-05-07 16:54:11 -07001039 .procname = "bootloader_version",
1040 .data = &bootloader_version,
1041 .maxlen = sizeof (int),
1042 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001043 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -07001044 },
1045 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001046 .procname = "io_delay_type",
1047 .data = &io_delay_type,
1048 .maxlen = sizeof(int),
1049 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001050 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001051 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052#endif
Luke Yang7a9166e2006-02-20 18:28:07 -08001053#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 .procname = "randomize_va_space",
1056 .data = &randomize_va_space,
1057 .maxlen = sizeof(int),
1058 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001059 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 },
Luke Yang7a9166e2006-02-20 18:28:07 -08001061#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -08001062#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001063 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001064 .procname = "spin_retry",
1065 .data = &spin_retry,
1066 .maxlen = sizeof (int),
1067 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001068 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001069 },
1070#endif
Len Brown673d5b42007-07-28 03:33:16 -04001071#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -08001072 {
Pavel Machekc255d842006-02-20 18:27:58 -08001073 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -07001074 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -08001075 .maxlen = sizeof (unsigned long),
1076 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001077 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -08001078 },
1079#endif
Vineet Guptab6fca722013-01-09 20:06:28 +05301080#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -08001081 {
Jes Sorensend2b176e2006-02-28 09:42:23 -08001082 .procname = "ignore-unaligned-usertrap",
1083 .data = &no_unaligned_warning,
1084 .maxlen = sizeof (int),
1085 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001086 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -08001087 },
Vineet Guptab6fca722013-01-09 20:06:28 +05301088#endif
1089#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -08001090 {
Doug Chapman88fc2412009-01-15 10:38:56 -08001091 .procname = "unaligned-dump-stack",
1092 .data = &unaligned_dump_stack,
1093 .maxlen = sizeof (int),
1094 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001095 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -08001096 },
Jes Sorensend2b176e2006-02-28 09:42:23 -08001097#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001098#ifdef CONFIG_DETECT_HUNG_TASK
1099 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001100 .procname = "hung_task_panic",
1101 .data = &sysctl_hung_task_panic,
1102 .maxlen = sizeof(int),
1103 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001104 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001105 .extra1 = &zero,
1106 .extra2 = &one,
1107 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001108 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001109 .procname = "hung_task_check_count",
1110 .data = &sysctl_hung_task_check_count,
Li Zefancd646472013-09-23 16:43:58 +08001111 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001112 .mode = 0644,
Li Zefancd646472013-09-23 16:43:58 +08001113 .proc_handler = proc_dointvec_minmax,
1114 .extra1 = &zero,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001115 },
1116 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001117 .procname = "hung_task_timeout_secs",
1118 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +01001119 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001120 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001121 .proc_handler = proc_dohung_task_timeout_secs,
Liu Hua80df2842014-04-07 15:38:57 -07001122 .extra2 = &hung_task_timeout_max,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001123 },
1124 {
Dmitry Vyukova2e51442018-08-21 21:55:52 -07001125 .procname = "hung_task_check_interval_secs",
1126 .data = &sysctl_hung_task_check_interval_secs,
1127 .maxlen = sizeof(unsigned long),
1128 .mode = 0644,
1129 .proc_handler = proc_dohung_task_timeout_secs,
1130 .extra2 = &hung_task_timeout_max,
1131 },
1132 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001133 .procname = "hung_task_warnings",
1134 .data = &sysctl_hung_task_warnings,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001135 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001136 .mode = 0644,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001137 .proc_handler = proc_dointvec_minmax,
1138 .extra1 = &neg_one,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001139 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -07001140#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001141#ifdef CONFIG_RT_MUTEXES
1142 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001143 .procname = "max_lock_depth",
1144 .data = &max_lock_depth,
1145 .maxlen = sizeof(int),
1146 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001147 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001148 },
1149#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001150 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001151 .procname = "poweroff_cmd",
1152 .data = &poweroff_cmd,
1153 .maxlen = POWEROFF_CMD_PATH_LEN,
1154 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001155 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001156 },
David Howells0b77f5b2008-04-29 01:01:32 -07001157#ifdef CONFIG_KEYS
1158 {
David Howells0b77f5b2008-04-29 01:01:32 -07001159 .procname = "keys",
1160 .mode = 0555,
1161 .child = key_sysctls,
1162 },
1163#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001164#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001165 /*
1166 * User-space scripts rely on the existence of this file
1167 * as a feature check for perf_events being enabled.
1168 *
1169 * So it's an ABI, do not remove!
1170 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001171 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001172 .procname = "perf_event_paranoid",
1173 .data = &sysctl_perf_event_paranoid,
1174 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001175 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001176 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001177 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001178 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001179 .procname = "perf_event_mlock_kb",
1180 .data = &sysctl_perf_event_mlock,
1181 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001182 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001183 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001184 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001185 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001186 .procname = "perf_event_max_sample_rate",
1187 .data = &sysctl_perf_event_sample_rate,
1188 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001189 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001190 .proc_handler = perf_proc_update_handler,
Knut Petersen723478c2013-09-25 14:29:37 +02001191 .extra1 = &one,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001192 },
Dave Hansen14c63f12013-06-21 08:51:36 -07001193 {
1194 .procname = "perf_cpu_time_max_percent",
1195 .data = &sysctl_perf_cpu_time_max_percent,
1196 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1197 .mode = 0644,
1198 .proc_handler = perf_cpu_time_max_percent_handler,
1199 .extra1 = &zero,
1200 .extra2 = &one_hundred,
1201 },
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001202 {
1203 .procname = "perf_event_max_stack",
Arnaldo Carvalho de Meloa8311002016-05-10 16:34:53 -03001204 .data = &sysctl_perf_event_max_stack,
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001205 .maxlen = sizeof(sysctl_perf_event_max_stack),
1206 .mode = 0644,
1207 .proc_handler = perf_event_max_stack_handler,
1208 .extra1 = &zero,
1209 .extra2 = &six_hundred_forty_kb,
1210 },
Arnaldo Carvalho de Meloc85b0332016-05-12 13:06:21 -03001211 {
1212 .procname = "perf_event_max_contexts_per_stack",
1213 .data = &sysctl_perf_event_max_contexts_per_stack,
1214 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
1215 .mode = 0644,
1216 .proc_handler = perf_event_max_stack_handler,
1217 .extra1 = &zero,
1218 .extra2 = &one_thousand,
1219 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001220#endif
Prarit Bhargava9e3961a2014-12-10 15:45:50 -08001221 {
1222 .procname = "panic_on_warn",
1223 .data = &panic_on_warn,
1224 .maxlen = sizeof(int),
1225 .mode = 0644,
1226 .proc_handler = proc_dointvec_minmax,
1227 .extra1 = &zero,
1228 .extra2 = &one,
1229 },
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001230#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1231 {
1232 .procname = "timer_migration",
1233 .data = &sysctl_timer_migration,
1234 .maxlen = sizeof(unsigned int),
1235 .mode = 0644,
1236 .proc_handler = timer_migration_handler,
Myungho Jungb94bf592017-04-19 15:24:50 -07001237 .extra1 = &zero,
1238 .extra2 = &one,
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001239 },
1240#endif
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001241#ifdef CONFIG_BPF_SYSCALL
1242 {
1243 .procname = "unprivileged_bpf_disabled",
1244 .data = &sysctl_unprivileged_bpf_disabled,
1245 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1246 .mode = 0644,
1247 /* only handle a transition from default "0" to "1" */
1248 .proc_handler = proc_dointvec_minmax,
1249 .extra1 = &one,
1250 .extra2 = &one,
1251 },
Alexei Starovoitov492ecee2019-02-25 14:28:39 -08001252 {
1253 .procname = "bpf_stats_enabled",
1254 .data = &sysctl_bpf_stats_enabled,
1255 .maxlen = sizeof(sysctl_bpf_stats_enabled),
1256 .mode = 0644,
1257 .proc_handler = proc_dointvec_minmax_bpf_stats,
1258 .extra1 = &zero,
1259 .extra2 = &one,
1260 },
Alexei Starovoitov3fcc5532019-02-27 18:30:44 -08001261#endif
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001262#if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1263 {
1264 .procname = "panic_on_rcu_stall",
1265 .data = &sysctl_panic_on_rcu_stall,
1266 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
1267 .mode = 0644,
1268 .proc_handler = proc_dointvec_minmax,
1269 .extra1 = &zero,
1270 .extra2 = &one,
1271 },
1272#endif
Alexander Popov964c9df2018-08-17 01:17:03 +03001273#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
1274 {
1275 .procname = "stack_erasing",
1276 .data = NULL,
1277 .maxlen = sizeof(int),
1278 .mode = 0600,
1279 .proc_handler = stack_erasing_sysctl,
1280 .extra1 = &zero,
1281 .extra2 = &one,
1282 },
1283#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001284 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285};
1286
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001287static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 .procname = "overcommit_memory",
1290 .data = &sysctl_overcommit_memory,
1291 .maxlen = sizeof(sysctl_overcommit_memory),
1292 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001293 .proc_handler = proc_dointvec_minmax,
1294 .extra1 = &zero,
1295 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 },
1297 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001298 .procname = "panic_on_oom",
1299 .data = &sysctl_panic_on_oom,
1300 .maxlen = sizeof(sysctl_panic_on_oom),
1301 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001302 .proc_handler = proc_dointvec_minmax,
1303 .extra1 = &zero,
1304 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001305 },
1306 {
David Rientjesfe071d72007-10-16 23:25:56 -07001307 .procname = "oom_kill_allocating_task",
1308 .data = &sysctl_oom_kill_allocating_task,
1309 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1310 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001311 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001312 },
1313 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001314 .procname = "oom_dump_tasks",
1315 .data = &sysctl_oom_dump_tasks,
1316 .maxlen = sizeof(sysctl_oom_dump_tasks),
1317 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001318 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001319 },
1320 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 .procname = "overcommit_ratio",
1322 .data = &sysctl_overcommit_ratio,
1323 .maxlen = sizeof(sysctl_overcommit_ratio),
1324 .mode = 0644,
Jerome Marchand49f0ce52014-01-21 15:49:14 -08001325 .proc_handler = overcommit_ratio_handler,
1326 },
1327 {
1328 .procname = "overcommit_kbytes",
1329 .data = &sysctl_overcommit_kbytes,
1330 .maxlen = sizeof(sysctl_overcommit_kbytes),
1331 .mode = 0644,
1332 .proc_handler = overcommit_kbytes_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 },
1334 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 .procname = "page-cluster",
1336 .data = &page_cluster,
1337 .maxlen = sizeof(int),
1338 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001339 .proc_handler = proc_dointvec_minmax,
1340 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 },
1342 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 .procname = "dirty_background_ratio",
1344 .data = &dirty_background_ratio,
1345 .maxlen = sizeof(dirty_background_ratio),
1346 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001347 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 .extra1 = &zero,
1349 .extra2 = &one_hundred,
1350 },
1351 {
David Rientjes2da02992009-01-06 14:39:31 -08001352 .procname = "dirty_background_bytes",
1353 .data = &dirty_background_bytes,
1354 .maxlen = sizeof(dirty_background_bytes),
1355 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001356 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001357 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001358 },
1359 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 .procname = "dirty_ratio",
1361 .data = &vm_dirty_ratio,
1362 .maxlen = sizeof(vm_dirty_ratio),
1363 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001364 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 .extra1 = &zero,
1366 .extra2 = &one_hundred,
1367 },
1368 {
David Rientjes2da02992009-01-06 14:39:31 -08001369 .procname = "dirty_bytes",
1370 .data = &vm_dirty_bytes,
1371 .maxlen = sizeof(vm_dirty_bytes),
1372 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001373 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001374 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001375 },
1376 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001378 .data = &dirty_writeback_interval,
1379 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001381 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 },
1383 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001385 .data = &dirty_expire_interval,
1386 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001388 .proc_handler = proc_dointvec_minmax,
1389 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 },
1391 {
Theodore Ts'o1efff912015-03-17 12:23:32 -04001392 .procname = "dirtytime_expire_seconds",
1393 .data = &dirtytime_expire_interval,
Randy Dunlap2d87b302018-04-10 16:35:14 -07001394 .maxlen = sizeof(dirtytime_expire_interval),
Theodore Ts'o1efff912015-03-17 12:23:32 -04001395 .mode = 0644,
1396 .proc_handler = dirtytime_interval_handler,
1397 .extra1 = &zero,
1398 },
1399 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .procname = "swappiness",
1401 .data = &vm_swappiness,
1402 .maxlen = sizeof(vm_swappiness),
1403 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001404 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 .extra1 = &zero,
1406 .extra2 = &one_hundred,
1407 },
1408#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001409 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001411 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 .maxlen = sizeof(unsigned long),
1413 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001414 .proc_handler = hugetlb_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001415 },
1416#ifdef CONFIG_NUMA
1417 {
1418 .procname = "nr_hugepages_mempolicy",
1419 .data = NULL,
1420 .maxlen = sizeof(unsigned long),
1421 .mode = 0644,
1422 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001423 },
Kemi Wang45180852017-11-15 17:38:22 -08001424 {
1425 .procname = "numa_stat",
1426 .data = &sysctl_vm_numa_stat,
1427 .maxlen = sizeof(int),
1428 .mode = 0644,
1429 .proc_handler = sysctl_vm_numa_stat_handler,
1430 .extra1 = &zero,
1431 .extra2 = &one,
1432 },
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .procname = "hugetlb_shm_group",
1436 .data = &sysctl_hugetlb_shm_group,
1437 .maxlen = sizeof(gid_t),
1438 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001439 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 },
Adam Litke54f9f802007-10-16 01:26:20 -07001441 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001442 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001443 .data = NULL,
1444 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001445 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001446 .proc_handler = hugetlb_overcommit_handler,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001447 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448#endif
1449 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 .procname = "lowmem_reserve_ratio",
1451 .data = &sysctl_lowmem_reserve_ratio,
1452 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1453 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001454 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 },
1456 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001457 .procname = "drop_caches",
1458 .data = &sysctl_drop_caches,
1459 .maxlen = sizeof(int),
1460 .mode = 0644,
1461 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001462 .extra1 = &one,
Dave Hansen5509a5d2014-04-03 14:48:19 -07001463 .extra2 = &four,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001464 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001465#ifdef CONFIG_COMPACTION
1466 {
1467 .procname = "compact_memory",
1468 .data = &sysctl_compact_memory,
1469 .maxlen = sizeof(int),
1470 .mode = 0200,
1471 .proc_handler = sysctl_compaction_handler,
1472 },
Mel Gorman5e771902010-05-24 14:32:31 -07001473 {
1474 .procname = "extfrag_threshold",
1475 .data = &sysctl_extfrag_threshold,
1476 .maxlen = sizeof(int),
1477 .mode = 0644,
Matthew Wilcox6b7e5ca2019-03-05 15:43:41 -08001478 .proc_handler = proc_dointvec_minmax,
Mel Gorman5e771902010-05-24 14:32:31 -07001479 .extra1 = &min_extfrag_threshold,
1480 .extra2 = &max_extfrag_threshold,
1481 },
Eric B Munson5bbe3542015-04-15 16:13:20 -07001482 {
1483 .procname = "compact_unevictable_allowed",
1484 .data = &sysctl_compact_unevictable_allowed,
1485 .maxlen = sizeof(int),
1486 .mode = 0644,
1487 .proc_handler = proc_dointvec,
1488 .extra1 = &zero,
1489 .extra2 = &one,
1490 },
Mel Gorman5e771902010-05-24 14:32:31 -07001491
Mel Gorman76ab0f52010-05-24 14:32:28 -07001492#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001493 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 .procname = "min_free_kbytes",
1495 .data = &min_free_kbytes,
1496 .maxlen = sizeof(min_free_kbytes),
1497 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001498 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 .extra1 = &zero,
1500 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001501 {
Mel Gorman1c308442018-12-28 00:35:52 -08001502 .procname = "watermark_boost_factor",
1503 .data = &watermark_boost_factor,
1504 .maxlen = sizeof(watermark_boost_factor),
1505 .mode = 0644,
1506 .proc_handler = watermark_boost_factor_sysctl_handler,
1507 .extra1 = &zero,
1508 },
1509 {
Johannes Weiner795ae7a2016-03-17 14:19:14 -07001510 .procname = "watermark_scale_factor",
1511 .data = &watermark_scale_factor,
1512 .maxlen = sizeof(watermark_scale_factor),
1513 .mode = 0644,
1514 .proc_handler = watermark_scale_factor_sysctl_handler,
1515 .extra1 = &one,
1516 .extra2 = &one_thousand,
1517 },
1518 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001519 .procname = "percpu_pagelist_fraction",
1520 .data = &percpu_pagelist_fraction,
1521 .maxlen = sizeof(percpu_pagelist_fraction),
1522 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001523 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
David Rientjes7cd2b0a2014-06-23 13:22:04 -07001524 .extra1 = &zero,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001525 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526#ifdef CONFIG_MMU
1527 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 .procname = "max_map_count",
1529 .data = &sysctl_max_map_count,
1530 .maxlen = sizeof(sysctl_max_map_count),
1531 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001532 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001533 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001535#else
1536 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001537 .procname = "nr_trim_pages",
1538 .data = &sysctl_nr_trim_pages,
1539 .maxlen = sizeof(sysctl_nr_trim_pages),
1540 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001541 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001542 .extra1 = &zero,
1543 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544#endif
1545 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 .procname = "laptop_mode",
1547 .data = &laptop_mode,
1548 .maxlen = sizeof(laptop_mode),
1549 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001550 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 },
1552 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 .procname = "block_dump",
1554 .data = &block_dump,
1555 .maxlen = sizeof(block_dump),
1556 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001557 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .extra1 = &zero,
1559 },
1560 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 .procname = "vfs_cache_pressure",
1562 .data = &sysctl_vfs_cache_pressure,
1563 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1564 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001565 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 .extra1 = &zero,
1567 },
1568#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1569 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 .procname = "legacy_va_layout",
1571 .data = &sysctl_legacy_va_layout,
1572 .maxlen = sizeof(sysctl_legacy_va_layout),
1573 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001574 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 .extra1 = &zero,
1576 },
1577#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001578#ifdef CONFIG_NUMA
1579 {
Christoph Lameter17436602006-01-18 17:42:32 -08001580 .procname = "zone_reclaim_mode",
Mel Gormana5f5f912016-07-28 15:46:32 -07001581 .data = &node_reclaim_mode,
1582 .maxlen = sizeof(node_reclaim_mode),
Christoph Lameter17436602006-01-18 17:42:32 -08001583 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001584 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001585 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001586 },
Christoph Lameter96146342006-07-03 00:24:13 -07001587 {
Christoph Lameter96146342006-07-03 00:24:13 -07001588 .procname = "min_unmapped_ratio",
1589 .data = &sysctl_min_unmapped_ratio,
1590 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1591 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001592 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001593 .extra1 = &zero,
1594 .extra2 = &one_hundred,
1595 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001596 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001597 .procname = "min_slab_ratio",
1598 .data = &sysctl_min_slab_ratio,
1599 .maxlen = sizeof(sysctl_min_slab_ratio),
1600 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001601 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001602 .extra1 = &zero,
1603 .extra2 = &one_hundred,
1604 },
Christoph Lameter17436602006-01-18 17:42:32 -08001605#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001606#ifdef CONFIG_SMP
1607 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001608 .procname = "stat_interval",
1609 .data = &sysctl_stat_interval,
1610 .maxlen = sizeof(sysctl_stat_interval),
1611 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001612 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001613 },
Hugh Dickins52b6f462016-05-19 17:12:50 -07001614 {
1615 .procname = "stat_refresh",
1616 .data = NULL,
1617 .maxlen = 0,
1618 .mode = 0600,
1619 .proc_handler = vmstat_refresh,
1620 },
Christoph Lameter77461ab2007-05-09 02:35:13 -07001621#endif
David Howells6e141542009-12-15 19:27:45 +00001622#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001623 {
Eric Parised032182007-06-28 15:55:21 -04001624 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001625 .data = &dac_mmap_min_addr,
1626 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001627 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001628 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001629 },
David Howells6e141542009-12-15 19:27:45 +00001630#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001631#ifdef CONFIG_NUMA
1632 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001633 .procname = "numa_zonelist_order",
1634 .data = &numa_zonelist_order,
1635 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1636 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001637 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001638 },
1639#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001640#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001641 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001642 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001643 .procname = "vdso_enabled",
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001644#ifdef CONFIG_X86_32
1645 .data = &vdso32_enabled,
1646 .maxlen = sizeof(vdso32_enabled),
1647#else
Ingo Molnare6e54942006-06-27 02:53:50 -07001648 .data = &vdso_enabled,
1649 .maxlen = sizeof(vdso_enabled),
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001650#endif
Ingo Molnare6e54942006-06-27 02:53:50 -07001651 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001652 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001653 .extra1 = &zero,
1654 },
1655#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001656#ifdef CONFIG_HIGHMEM
1657 {
Bron Gondwana195cf4532008-02-04 22:29:20 -08001658 .procname = "highmem_is_dirtyable",
1659 .data = &vm_highmem_is_dirtyable,
1660 .maxlen = sizeof(vm_highmem_is_dirtyable),
1661 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001662 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf4532008-02-04 22:29:20 -08001663 .extra1 = &zero,
1664 .extra2 = &one,
1665 },
1666#endif
Andi Kleen6a460792009-09-16 11:50:15 +02001667#ifdef CONFIG_MEMORY_FAILURE
1668 {
Andi Kleen6a460792009-09-16 11:50:15 +02001669 .procname = "memory_failure_early_kill",
1670 .data = &sysctl_memory_failure_early_kill,
1671 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1672 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001673 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001674 .extra1 = &zero,
1675 .extra2 = &one,
1676 },
1677 {
Andi Kleen6a460792009-09-16 11:50:15 +02001678 .procname = "memory_failure_recovery",
1679 .data = &sysctl_memory_failure_recovery,
1680 .maxlen = sizeof(sysctl_memory_failure_recovery),
1681 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001682 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001683 .extra1 = &zero,
1684 .extra2 = &one,
1685 },
1686#endif
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001687 {
1688 .procname = "user_reserve_kbytes",
1689 .data = &sysctl_user_reserve_kbytes,
1690 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1691 .mode = 0644,
1692 .proc_handler = proc_doulongvec_minmax,
1693 },
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001694 {
1695 .procname = "admin_reserve_kbytes",
1696 .data = &sysctl_admin_reserve_kbytes,
1697 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1698 .mode = 0644,
1699 .proc_handler = proc_doulongvec_minmax,
1700 },
Daniel Cashmand07e2252016-01-14 15:19:53 -08001701#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1702 {
1703 .procname = "mmap_rnd_bits",
1704 .data = &mmap_rnd_bits,
1705 .maxlen = sizeof(mmap_rnd_bits),
1706 .mode = 0600,
1707 .proc_handler = proc_dointvec_minmax,
1708 .extra1 = (void *)&mmap_rnd_bits_min,
1709 .extra2 = (void *)&mmap_rnd_bits_max,
1710 },
1711#endif
1712#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1713 {
1714 .procname = "mmap_rnd_compat_bits",
1715 .data = &mmap_rnd_compat_bits,
1716 .maxlen = sizeof(mmap_rnd_compat_bits),
1717 .mode = 0600,
1718 .proc_handler = proc_dointvec_minmax,
1719 .extra1 = (void *)&mmap_rnd_compat_bits_min,
1720 .extra2 = (void *)&mmap_rnd_compat_bits_max,
1721 },
1722#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001723 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724};
1725
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001726static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .procname = "inode-nr",
1729 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001730 .maxlen = 2*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001732 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 },
1734 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .procname = "inode-state",
1736 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001737 .maxlen = 7*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001739 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 },
1741 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 .procname = "file-nr",
1743 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001744 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001746 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 },
1748 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 .procname = "file-max",
1750 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001751 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001753 .proc_handler = proc_doulongvec_minmax,
Will Deacon9002b212019-04-05 18:39:38 -07001754 .extra1 = &zero_ul,
Christian Brauner32a5ad92019-03-07 16:29:43 -08001755 .extra2 = &long_max,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 },
1757 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001758 .procname = "nr_open",
1759 .data = &sysctl_nr_open,
Alexey Dobriyan9b80a182016-09-02 00:38:52 +03001760 .maxlen = sizeof(unsigned int),
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001761 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001762 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001763 .extra1 = &sysctl_nr_open_min,
1764 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001765 },
1766 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 .procname = "dentry-state",
1768 .data = &dentry_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001769 .maxlen = 6*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001771 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 },
1773 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 .procname = "overflowuid",
1775 .data = &fs_overflowuid,
1776 .maxlen = sizeof(int),
1777 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001778 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 .extra1 = &minolduid,
1780 .extra2 = &maxolduid,
1781 },
1782 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 .procname = "overflowgid",
1784 .data = &fs_overflowgid,
1785 .maxlen = sizeof(int),
1786 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001787 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 .extra1 = &minolduid,
1789 .extra2 = &maxolduid,
1790 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001791#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 .procname = "leases-enable",
1794 .data = &leases_enable,
1795 .maxlen = sizeof(int),
1796 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001797 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001799#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800#ifdef CONFIG_DNOTIFY
1801 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 .procname = "dir-notify-enable",
1803 .data = &dir_notify_enable,
1804 .maxlen = sizeof(int),
1805 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001806 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 },
1808#endif
1809#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001810#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 .procname = "lease-break-time",
1813 .data = &lease_break_time,
1814 .maxlen = sizeof(int),
1815 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001816 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001818#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001819#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 .procname = "aio-nr",
1822 .data = &aio_nr,
1823 .maxlen = sizeof(aio_nr),
1824 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001825 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 },
1827 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 .procname = "aio-max-nr",
1829 .data = &aio_max_nr,
1830 .maxlen = sizeof(aio_max_nr),
1831 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001832 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001834#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001835#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001836 {
Robert Love0399cb02005-07-13 12:38:18 -04001837 .procname = "inotify",
1838 .mode = 0555,
1839 .child = inotify_table,
1840 },
1841#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001842#ifdef CONFIG_EPOLL
1843 {
1844 .procname = "epoll",
1845 .mode = 0555,
1846 .child = epoll_table,
1847 },
1848#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001850 {
Kees Cook800179c2012-07-25 17:29:07 -07001851 .procname = "protected_symlinks",
1852 .data = &sysctl_protected_symlinks,
1853 .maxlen = sizeof(int),
1854 .mode = 0600,
1855 .proc_handler = proc_dointvec_minmax,
1856 .extra1 = &zero,
1857 .extra2 = &one,
1858 },
1859 {
1860 .procname = "protected_hardlinks",
1861 .data = &sysctl_protected_hardlinks,
1862 .maxlen = sizeof(int),
1863 .mode = 0600,
1864 .proc_handler = proc_dointvec_minmax,
1865 .extra1 = &zero,
1866 .extra2 = &one,
1867 },
1868 {
Salvatore Mesoraca30aba662018-08-23 17:00:35 -07001869 .procname = "protected_fifos",
1870 .data = &sysctl_protected_fifos,
1871 .maxlen = sizeof(int),
1872 .mode = 0600,
1873 .proc_handler = proc_dointvec_minmax,
1874 .extra1 = &zero,
1875 .extra2 = &two,
1876 },
1877 {
1878 .procname = "protected_regular",
1879 .data = &sysctl_protected_regular,
1880 .maxlen = sizeof(int),
1881 .mode = 0600,
1882 .proc_handler = proc_dointvec_minmax,
1883 .extra1 = &zero,
1884 .extra2 = &two,
1885 },
1886 {
Alan Coxd6e71142005-06-23 00:09:43 -07001887 .procname = "suid_dumpable",
1888 .data = &suid_dumpable,
1889 .maxlen = sizeof(int),
1890 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001891 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001892 .extra1 = &zero,
1893 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001894 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001895#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1896 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001897 .procname = "binfmt_misc",
1898 .mode = 0555,
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -05001899 .child = sysctl_mount_point,
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001900 },
1901#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001902 {
Jens Axboeff9da692010-06-03 14:54:39 +02001903 .procname = "pipe-max-size",
1904 .data = &pipe_max_size,
Joe Lawrence98159d92017-11-17 15:29:17 -08001905 .maxlen = sizeof(pipe_max_size),
Jens Axboeb492e952010-05-19 21:03:16 +02001906 .mode = 0644,
Eric Biggers319e0a22018-02-06 15:41:49 -08001907 .proc_handler = proc_dopipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001908 },
Willy Tarreau759c0112016-01-18 16:36:09 +01001909 {
1910 .procname = "pipe-user-pages-hard",
1911 .data = &pipe_user_pages_hard,
1912 .maxlen = sizeof(pipe_user_pages_hard),
1913 .mode = 0644,
1914 .proc_handler = proc_doulongvec_minmax,
1915 },
1916 {
1917 .procname = "pipe-user-pages-soft",
1918 .data = &pipe_user_pages_soft,
1919 .maxlen = sizeof(pipe_user_pages_soft),
1920 .mode = 0644,
1921 .proc_handler = proc_doulongvec_minmax,
1922 },
Eric W. Biedermand2921682016-09-28 00:27:17 -05001923 {
1924 .procname = "mount-max",
1925 .data = &sysctl_mount_max,
1926 .maxlen = sizeof(unsigned int),
1927 .mode = 0644,
1928 .proc_handler = proc_dointvec_minmax,
1929 .extra1 = &one,
1930 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001931 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932};
1933
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001934static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001935#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001936 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001937 .procname = "exception-trace",
1938 .data = &show_unhandled_signals,
1939 .maxlen = sizeof(int),
1940 .mode = 0644,
1941 .proc_handler = proc_dointvec
1942 },
1943#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001944#if defined(CONFIG_OPTPROBES)
1945 {
1946 .procname = "kprobes-optimization",
1947 .data = &sysctl_kprobes_optimization,
1948 .maxlen = sizeof(int),
1949 .mode = 0644,
1950 .proc_handler = proc_kprobes_optimization_handler,
1951 .extra1 = &zero,
1952 .extra2 = &one,
1953 },
1954#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001955 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956};
1957
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001958static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001959 { }
Robert Love0eeca282005-07-12 17:06:03 -04001960};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001962int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001963{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001964 struct ctl_table_header *hdr;
1965
1966 hdr = register_sysctl_table(sysctl_base_table);
1967 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001968 return 0;
1969}
1970
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001971#endif /* CONFIG_SYSCTL */
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973/*
1974 * /proc/sys support
1975 */
1976
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001977#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Kees Cookf8808302014-06-06 14:37:17 -07001979static int _proc_do_string(char *data, int maxlen, int write,
1980 char __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001981 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001982{
1983 size_t len;
1984 char __user *p;
1985 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001986
1987 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001988 *lenp = 0;
1989 return 0;
1990 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001991
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001992 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07001993 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
1994 /* Only continue writes not past the end of buffer. */
1995 len = strlen(data);
1996 if (len > maxlen - 1)
1997 len = maxlen - 1;
1998
1999 if (*ppos > len)
2000 return 0;
2001 len = *ppos;
2002 } else {
2003 /* Start writing from beginning of buffer. */
2004 len = 0;
2005 }
2006
Kees Cook2ca9bb42014-06-06 14:37:18 -07002007 *ppos += *lenp;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002008 p = buffer;
Kees Cook2ca9bb42014-06-06 14:37:18 -07002009 while ((p - buffer) < *lenp && len < maxlen - 1) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002010 if (get_user(c, p++))
2011 return -EFAULT;
2012 if (c == 0 || c == '\n')
2013 break;
Kees Cook2ca9bb42014-06-06 14:37:18 -07002014 data[len++] = c;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002015 }
Kees Cookf8808302014-06-06 14:37:17 -07002016 data[len] = 0;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002017 } else {
2018 len = strlen(data);
2019 if (len > maxlen)
2020 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002021
2022 if (*ppos > len) {
2023 *lenp = 0;
2024 return 0;
2025 }
2026
2027 data += *ppos;
2028 len -= *ppos;
2029
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002030 if (len > *lenp)
2031 len = *lenp;
2032 if (len)
Kees Cookf8808302014-06-06 14:37:17 -07002033 if (copy_to_user(buffer, data, len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002034 return -EFAULT;
2035 if (len < *lenp) {
Kees Cookf8808302014-06-06 14:37:17 -07002036 if (put_user('\n', buffer + len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002037 return -EFAULT;
2038 len++;
2039 }
2040 *lenp = len;
2041 *ppos += len;
2042 }
2043 return 0;
2044}
2045
Kees Cookf4aacea2014-06-06 14:37:19 -07002046static void warn_sysctl_write(struct ctl_table *table)
2047{
2048 pr_warn_once("%s wrote to %s when file position was not 0!\n"
2049 "This will not be supported in the future. To silence this\n"
2050 "warning, set kernel.sysctl_writes_strict = -1\n",
2051 current->comm, table->procname);
2052}
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054/**
Randy Dunlap5f733e82018-08-21 22:01:06 -07002055 * proc_first_pos_non_zero_ignore - check if first position is allowed
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002056 * @ppos: file position
2057 * @table: the sysctl table
2058 *
2059 * Returns true if the first position is non-zero and the sysctl_writes_strict
2060 * mode indicates this is not allowed for numeric input types. String proc
Randy Dunlap5f733e82018-08-21 22:01:06 -07002061 * handlers can ignore the return value.
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002062 */
2063static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
2064 struct ctl_table *table)
2065{
2066 if (!*ppos)
2067 return false;
2068
2069 switch (sysctl_writes_strict) {
2070 case SYSCTL_WRITES_STRICT:
2071 return true;
2072 case SYSCTL_WRITES_WARN:
2073 warn_sysctl_write(table);
2074 return false;
2075 default:
2076 return false;
2077 }
2078}
2079
2080/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 * proc_dostring - read a string sysctl
2082 * @table: the sysctl table
2083 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * @buffer: the user buffer
2085 * @lenp: the size of the user buffer
2086 * @ppos: file position
2087 *
2088 * Reads/writes a string from/to the user buffer. If the kernel
2089 * buffer provided is not large enough to hold the string, the
2090 * string is truncated. The copied string is %NULL-terminated.
2091 * If the string is being read by the user process, it is copied
2092 * and a newline '\n' is added. It is truncated if the buffer is
2093 * not large enough.
2094 *
2095 * Returns 0 on success.
2096 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002097int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 void __user *buffer, size_t *lenp, loff_t *ppos)
2099{
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002100 if (write)
2101 proc_first_pos_non_zero_ignore(ppos, table);
Kees Cookf4aacea2014-06-06 14:37:19 -07002102
Kees Cookf8808302014-06-06 14:37:17 -07002103 return _proc_do_string((char *)(table->data), table->maxlen, write,
2104 (char __user *)buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
2106
Amerigo Wang00b7c332010-05-05 00:26:45 +00002107static size_t proc_skip_spaces(char **buf)
2108{
2109 size_t ret;
2110 char *tmp = skip_spaces(*buf);
2111 ret = tmp - *buf;
2112 *buf = tmp;
2113 return ret;
2114}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002116static void proc_skip_char(char **buf, size_t *size, const char v)
2117{
2118 while (*size) {
2119 if (**buf != v)
2120 break;
2121 (*size)--;
2122 (*buf)++;
2123 }
2124}
2125
Christian Brauner7f2923c2019-03-07 16:29:40 -08002126/**
2127 * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
2128 * fail on overflow
2129 *
2130 * @cp: kernel buffer containing the string to parse
2131 * @endp: pointer to store the trailing characters
2132 * @base: the base to use
2133 * @res: where the parsed integer will be stored
2134 *
2135 * In case of success 0 is returned and @res will contain the parsed integer,
2136 * @endp will hold any trailing characters.
2137 * This function will fail the parse on overflow. If there wasn't an overflow
2138 * the function will defer the decision what characters count as invalid to the
2139 * caller.
2140 */
2141static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
2142 unsigned long *res)
2143{
2144 unsigned long long result;
2145 unsigned int rv;
2146
2147 cp = _parse_integer_fixup_radix(cp, &base);
2148 rv = _parse_integer(cp, base, &result);
2149 if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
2150 return -ERANGE;
2151
2152 cp += rv;
2153
2154 if (endp)
2155 *endp = (char *)cp;
2156
2157 *res = (unsigned long)result;
2158 return 0;
2159}
2160
Amerigo Wang00b7c332010-05-05 00:26:45 +00002161#define TMPBUFLEN 22
2162/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002163 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00002164 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002165 * @buf: a kernel buffer
2166 * @size: size of the kernel buffer
2167 * @val: this is where the number will be stored
2168 * @neg: set to %TRUE if number is negative
2169 * @perm_tr: a vector which contains the allowed trailers
2170 * @perm_tr_len: size of the perm_tr vector
2171 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00002172 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002173 * In case of success %0 is returned and @buf and @size are updated with
2174 * the amount of bytes read. If @tr is non-NULL and a trailing
2175 * character exists (size is non-zero after returning from this
2176 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002177 */
2178static int proc_get_long(char **buf, size_t *size,
2179 unsigned long *val, bool *neg,
2180 const char *perm_tr, unsigned perm_tr_len, char *tr)
2181{
2182 int len;
2183 char *p, tmp[TMPBUFLEN];
2184
2185 if (!*size)
2186 return -EINVAL;
2187
2188 len = *size;
2189 if (len > TMPBUFLEN - 1)
2190 len = TMPBUFLEN - 1;
2191
2192 memcpy(tmp, *buf, len);
2193
2194 tmp[len] = 0;
2195 p = tmp;
2196 if (*p == '-' && *size > 1) {
2197 *neg = true;
2198 p++;
2199 } else
2200 *neg = false;
2201 if (!isdigit(*p))
2202 return -EINVAL;
2203
Christian Brauner7f2923c2019-03-07 16:29:40 -08002204 if (strtoul_lenient(p, &p, 0, val))
2205 return -EINVAL;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002206
2207 len = p - tmp;
2208
2209 /* We don't know if the next char is whitespace thus we may accept
2210 * invalid integers (e.g. 1234...a) or two integers instead of one
2211 * (e.g. 123...1). So lets not allow such large numbers. */
2212 if (len == TMPBUFLEN - 1)
2213 return -EINVAL;
2214
2215 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
2216 return -EINVAL;
2217
2218 if (tr && (len < *size))
2219 *tr = *p;
2220
2221 *buf += len;
2222 *size -= len;
2223
2224 return 0;
2225}
2226
2227/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002228 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00002229 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002230 * @buf: the user buffer
2231 * @size: the size of the user buffer
2232 * @val: the integer to be converted
2233 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00002234 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002235 * In case of success %0 is returned and @buf and @size are updated with
2236 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002237 */
2238static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
2239 bool neg)
2240{
2241 int len;
2242 char tmp[TMPBUFLEN], *p = tmp;
2243
2244 sprintf(p, "%s%lu", neg ? "-" : "", val);
2245 len = strlen(tmp);
2246 if (len > *size)
2247 len = *size;
2248 if (copy_to_user(*buf, tmp, len))
2249 return -EFAULT;
2250 *size -= len;
2251 *buf += len;
2252 return 0;
2253}
2254#undef TMPBUFLEN
2255
2256static int proc_put_char(void __user **buf, size_t *size, char c)
2257{
2258 if (*size) {
2259 char __user **buffer = (char __user **)buf;
2260 if (put_user(c, *buffer))
2261 return -EFAULT;
2262 (*size)--, (*buffer)++;
2263 *buf = *buffer;
2264 }
2265 return 0;
2266}
2267
2268static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 int *valp,
2270 int write, void *data)
2271{
2272 if (write) {
Heinrich Schuchardt230633d2015-04-16 12:48:07 -07002273 if (*negp) {
2274 if (*lvalp > (unsigned long) INT_MAX + 1)
2275 return -EINVAL;
2276 *valp = -*lvalp;
2277 } else {
2278 if (*lvalp > (unsigned long) INT_MAX)
2279 return -EINVAL;
2280 *valp = *lvalp;
2281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 } else {
2283 int val = *valp;
2284 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002285 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002286 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002288 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 *lvalp = (unsigned long)val;
2290 }
2291 }
2292 return 0;
2293}
2294
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002295static int do_proc_douintvec_conv(unsigned long *lvalp,
2296 unsigned int *valp,
2297 int write, void *data)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002298{
2299 if (write) {
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002300 if (*lvalp > UINT_MAX)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002301 return -EINVAL;
2302 *valp = *lvalp;
2303 } else {
2304 unsigned int val = *valp;
2305 *lvalp = (unsigned long)val;
2306 }
2307 return 0;
2308}
2309
Amerigo Wang00b7c332010-05-05 00:26:45 +00002310static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2311
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002312static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002313 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002314 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002315 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 int write, void *data),
2317 void *data)
2318{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002319 int *i, vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002320 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002321 char *kbuf = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Amerigo Wang00b7c332010-05-05 00:26:45 +00002323 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 *lenp = 0;
2325 return 0;
2326 }
2327
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002328 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 vleft = table->maxlen / sizeof(*i);
2330 left = *lenp;
2331
2332 if (!conv)
2333 conv = do_proc_dointvec_conv;
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002336 if (proc_first_pos_non_zero_ignore(ppos, table))
2337 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002338
Amerigo Wang00b7c332010-05-05 00:26:45 +00002339 if (left > PAGE_SIZE - 1)
2340 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002341 p = kbuf = memdup_user_nul(buffer, left);
2342 if (IS_ERR(kbuf))
2343 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002344 }
2345
2346 for (; left && vleft--; i++, first=0) {
2347 unsigned long lval;
2348 bool neg;
2349
2350 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002351 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002352
J. R. Okajima563b0462010-05-25 16:10:14 -07002353 if (!left)
2354 break;
Al Viro70f6cbb2015-12-24 00:13:10 -05002355 err = proc_get_long(&p, &left, &lval, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002356 proc_wspace_sep,
2357 sizeof(proc_wspace_sep), NULL);
2358 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002360 if (conv(&neg, &lval, i, 1, data)) {
2361 err = -EINVAL;
2362 break;
2363 }
2364 } else {
2365 if (conv(&neg, &lval, i, 0, data)) {
2366 err = -EINVAL;
2367 break;
2368 }
2369 if (!first)
2370 err = proc_put_char(&buffer, &left, '\t');
2371 if (err)
2372 break;
2373 err = proc_put_long(&buffer, &left, lval, neg);
2374 if (err)
2375 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002378
2379 if (!write && !first && left && !err)
2380 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07002381 if (write && !err && left)
Al Viro70f6cbb2015-12-24 00:13:10 -05002382 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002383 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002384 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002385 if (first)
2386 return err ? : -EINVAL;
2387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002389out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002391 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002394static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002395 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002396 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002397 int write, void *data),
2398 void *data)
2399{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002400 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002401 buffer, lenp, ppos, conv, data);
2402}
2403
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002404static int do_proc_douintvec_w(unsigned int *tbl_data,
2405 struct ctl_table *table,
2406 void __user *buffer,
2407 size_t *lenp, loff_t *ppos,
2408 int (*conv)(unsigned long *lvalp,
2409 unsigned int *valp,
2410 int write, void *data),
2411 void *data)
2412{
2413 unsigned long lval;
2414 int err = 0;
2415 size_t left;
2416 bool neg;
2417 char *kbuf = NULL, *p;
2418
2419 left = *lenp;
2420
2421 if (proc_first_pos_non_zero_ignore(ppos, table))
2422 goto bail_early;
2423
2424 if (left > PAGE_SIZE - 1)
2425 left = PAGE_SIZE - 1;
2426
2427 p = kbuf = memdup_user_nul(buffer, left);
2428 if (IS_ERR(kbuf))
2429 return -EINVAL;
2430
2431 left -= proc_skip_spaces(&p);
2432 if (!left) {
2433 err = -EINVAL;
2434 goto out_free;
2435 }
2436
2437 err = proc_get_long(&p, &left, &lval, &neg,
2438 proc_wspace_sep,
2439 sizeof(proc_wspace_sep), NULL);
2440 if (err || neg) {
2441 err = -EINVAL;
2442 goto out_free;
2443 }
2444
2445 if (conv(&lval, tbl_data, 1, data)) {
2446 err = -EINVAL;
2447 goto out_free;
2448 }
2449
2450 if (!err && left)
2451 left -= proc_skip_spaces(&p);
2452
2453out_free:
2454 kfree(kbuf);
2455 if (err)
2456 return -EINVAL;
2457
2458 return 0;
2459
2460 /* This is in keeping with old __do_proc_dointvec() */
2461bail_early:
2462 *ppos += *lenp;
2463 return err;
2464}
2465
2466static int do_proc_douintvec_r(unsigned int *tbl_data, void __user *buffer,
2467 size_t *lenp, loff_t *ppos,
2468 int (*conv)(unsigned long *lvalp,
2469 unsigned int *valp,
2470 int write, void *data),
2471 void *data)
2472{
2473 unsigned long lval;
2474 int err = 0;
2475 size_t left;
2476
2477 left = *lenp;
2478
2479 if (conv(&lval, tbl_data, 0, data)) {
2480 err = -EINVAL;
2481 goto out;
2482 }
2483
2484 err = proc_put_long(&buffer, &left, lval, false);
2485 if (err || !left)
2486 goto out;
2487
2488 err = proc_put_char(&buffer, &left, '\n');
2489
2490out:
2491 *lenp -= left;
2492 *ppos += *lenp;
2493
2494 return err;
2495}
2496
2497static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
2498 int write, void __user *buffer,
2499 size_t *lenp, loff_t *ppos,
2500 int (*conv)(unsigned long *lvalp,
2501 unsigned int *valp,
2502 int write, void *data),
2503 void *data)
2504{
2505 unsigned int *i, vleft;
2506
2507 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
2508 *lenp = 0;
2509 return 0;
2510 }
2511
2512 i = (unsigned int *) tbl_data;
2513 vleft = table->maxlen / sizeof(*i);
2514
2515 /*
2516 * Arrays are not supported, keep this simple. *Do not* add
2517 * support for them.
2518 */
2519 if (vleft != 1) {
2520 *lenp = 0;
2521 return -EINVAL;
2522 }
2523
2524 if (!conv)
2525 conv = do_proc_douintvec_conv;
2526
2527 if (write)
2528 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
2529 conv, data);
2530 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
2531}
2532
2533static int do_proc_douintvec(struct ctl_table *table, int write,
2534 void __user *buffer, size_t *lenp, loff_t *ppos,
2535 int (*conv)(unsigned long *lvalp,
2536 unsigned int *valp,
2537 int write, void *data),
2538 void *data)
2539{
2540 return __do_proc_douintvec(table->data, table, write,
2541 buffer, lenp, ppos, conv, data);
2542}
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544/**
2545 * proc_dointvec - read a vector of integers
2546 * @table: the sysctl table
2547 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 * @buffer: the user buffer
2549 * @lenp: the size of the user buffer
2550 * @ppos: file position
2551 *
2552 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2553 * values from/to the user buffer, treated as an ASCII string.
2554 *
2555 * Returns 0 on success.
2556 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002557int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 void __user *buffer, size_t *lenp, loff_t *ppos)
2559{
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002560 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
2561}
2562
2563/**
2564 * proc_douintvec - read a vector of unsigned integers
2565 * @table: the sysctl table
2566 * @write: %TRUE if this is a write to the sysctl file
2567 * @buffer: the user buffer
2568 * @lenp: the size of the user buffer
2569 * @ppos: file position
2570 *
2571 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2572 * values from/to the user buffer, treated as an ASCII string.
2573 *
2574 * Returns 0 on success.
2575 */
2576int proc_douintvec(struct ctl_table *table, int write,
2577 void __user *buffer, size_t *lenp, loff_t *ppos)
2578{
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002579 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2580 do_proc_douintvec_conv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002583/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002584 * Taint values can only be increased
2585 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002586 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002587static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002588 void __user *buffer, size_t *lenp, loff_t *ppos)
2589{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002590 struct ctl_table t;
2591 unsigned long tmptaint = get_taint();
2592 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002593
Bastian Blank91fcd412007-04-23 14:41:14 -07002594 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002595 return -EPERM;
2596
Andi Kleen25ddbb12008-10-15 22:01:41 -07002597 t = *table;
2598 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002599 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002600 if (err < 0)
2601 return err;
2602
2603 if (write) {
2604 /*
2605 * Poor man's atomic or. Not worth adding a primitive
2606 * to everyone's atomic.h for this
2607 */
2608 int i;
2609 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2610 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302611 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002612 }
2613 }
2614
2615 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002616}
2617
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002618#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002619static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002620 void __user *buffer, size_t *lenp, loff_t *ppos)
2621{
2622 if (write && !capable(CAP_SYS_ADMIN))
2623 return -EPERM;
2624
2625 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2626}
2627#endif
2628
Waiman Long24704f32018-04-10 16:35:38 -07002629/**
2630 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
2631 * @min: pointer to minimum allowable value
2632 * @max: pointer to maximum allowable value
2633 *
2634 * The do_proc_dointvec_minmax_conv_param structure provides the
2635 * minimum and maximum values for doing range checking for those sysctl
2636 * parameters that use the proc_dointvec_minmax() handler.
2637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638struct do_proc_dointvec_minmax_conv_param {
2639 int *min;
2640 int *max;
2641};
2642
Amerigo Wang00b7c332010-05-05 00:26:45 +00002643static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2644 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 int write, void *data)
2646{
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002647 int tmp, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 struct do_proc_dointvec_minmax_conv_param *param = data;
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002649 /*
2650 * If writing, first do so via a temporary local int so we can
2651 * bounds-check it before touching *valp.
2652 */
2653 int *ip = write ? &tmp : valp;
2654
2655 ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
2656 if (ret)
2657 return ret;
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 if (write) {
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002660 if ((param->min && *param->min > tmp) ||
2661 (param->max && *param->max < tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return -EINVAL;
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002663 *valp = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 return 0;
2667}
2668
2669/**
2670 * proc_dointvec_minmax - read a vector of integers with min/max values
2671 * @table: the sysctl table
2672 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 * @buffer: the user buffer
2674 * @lenp: the size of the user buffer
2675 * @ppos: file position
2676 *
2677 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2678 * values from/to the user buffer, treated as an ASCII string.
2679 *
2680 * This routine will ensure the values are within the range specified by
2681 * table->extra1 (min) and table->extra2 (max).
2682 *
Waiman Long24704f32018-04-10 16:35:38 -07002683 * Returns 0 on success or -EINVAL on write when the range check fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002685int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 void __user *buffer, size_t *lenp, loff_t *ppos)
2687{
2688 struct do_proc_dointvec_minmax_conv_param param = {
2689 .min = (int *) table->extra1,
2690 .max = (int *) table->extra2,
2691 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002692 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 do_proc_dointvec_minmax_conv, &param);
2694}
2695
Waiman Long24704f32018-04-10 16:35:38 -07002696/**
2697 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
2698 * @min: pointer to minimum allowable value
2699 * @max: pointer to maximum allowable value
2700 *
2701 * The do_proc_douintvec_minmax_conv_param structure provides the
2702 * minimum and maximum values for doing range checking for those sysctl
2703 * parameters that use the proc_douintvec_minmax() handler.
2704 */
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002705struct do_proc_douintvec_minmax_conv_param {
2706 unsigned int *min;
2707 unsigned int *max;
2708};
2709
2710static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
2711 unsigned int *valp,
2712 int write, void *data)
2713{
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002714 int ret;
2715 unsigned int tmp;
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002716 struct do_proc_douintvec_minmax_conv_param *param = data;
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002717 /* write via temporary local uint for bounds-checking */
2718 unsigned int *up = write ? &tmp : valp;
2719
2720 ret = do_proc_douintvec_conv(lvalp, up, write, data);
2721 if (ret)
2722 return ret;
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002723
2724 if (write) {
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002725 if ((param->min && *param->min > tmp) ||
2726 (param->max && *param->max < tmp))
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002727 return -ERANGE;
2728
Zev Weiss2bc4fc62019-03-11 23:28:06 -07002729 *valp = tmp;
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002730 }
2731
2732 return 0;
2733}
2734
2735/**
2736 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2737 * @table: the sysctl table
2738 * @write: %TRUE if this is a write to the sysctl file
2739 * @buffer: the user buffer
2740 * @lenp: the size of the user buffer
2741 * @ppos: file position
2742 *
2743 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2744 * values from/to the user buffer, treated as an ASCII string. Negative
2745 * strings are not allowed.
2746 *
2747 * This routine will ensure the values are within the range specified by
2748 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2749 * check for UINT_MAX to avoid having to support wrap around uses from
2750 * userspace.
2751 *
Waiman Long24704f32018-04-10 16:35:38 -07002752 * Returns 0 on success or -ERANGE on write when the range check fails.
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002753 */
2754int proc_douintvec_minmax(struct ctl_table *table, int write,
2755 void __user *buffer, size_t *lenp, loff_t *ppos)
2756{
2757 struct do_proc_douintvec_minmax_conv_param param = {
2758 .min = (unsigned int *) table->extra1,
2759 .max = (unsigned int *) table->extra2,
2760 };
2761 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2762 do_proc_douintvec_minmax_conv, &param);
2763}
2764
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002765static int do_proc_dopipe_max_size_conv(unsigned long *lvalp,
2766 unsigned int *valp,
2767 int write, void *data)
2768{
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002769 if (write) {
Joe Lawrencefb910c42017-11-17 15:29:28 -08002770 unsigned int val;
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002771
Joe Lawrencefb910c42017-11-17 15:29:28 -08002772 val = round_pipe_size(*lvalp);
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002773 if (val == 0)
2774 return -EINVAL;
2775
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002776 *valp = val;
2777 } else {
2778 unsigned int val = *valp;
2779 *lvalp = (unsigned long) val;
2780 }
2781
2782 return 0;
2783}
2784
Eric Biggers319e0a22018-02-06 15:41:49 -08002785static int proc_dopipe_max_size(struct ctl_table *table, int write,
2786 void __user *buffer, size_t *lenp, loff_t *ppos)
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002787{
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002788 return do_proc_douintvec(table, write, buffer, lenp, ppos,
Eric Biggers4c2e4be2018-02-06 15:41:45 -08002789 do_proc_dopipe_max_size_conv, NULL);
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002790}
2791
Kees Cook54b50192012-07-30 14:39:18 -07002792static void validate_coredump_safety(void)
2793{
Alex Kelly046d6622012-10-04 17:15:23 -07002794#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002795 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002796 core_pattern[0] != '/' && core_pattern[0] != '|') {
Alexey Dobriyan760c6a92016-12-14 15:04:14 -08002797 printk(KERN_WARNING
2798"Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2799"Pipe handler or fully qualified core dump path required.\n"
2800"Set kernel.core_pattern before fs.suid_dumpable.\n"
2801 );
Kees Cook54b50192012-07-30 14:39:18 -07002802 }
Alex Kelly046d6622012-10-04 17:15:23 -07002803#endif
Kees Cook54b50192012-07-30 14:39:18 -07002804}
2805
2806static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2807 void __user *buffer, size_t *lenp, loff_t *ppos)
2808{
2809 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2810 if (!error)
2811 validate_coredump_safety();
2812 return error;
2813}
2814
Alex Kelly046d6622012-10-04 17:15:23 -07002815#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002816static int proc_dostring_coredump(struct ctl_table *table, int write,
2817 void __user *buffer, size_t *lenp, loff_t *ppos)
2818{
2819 int error = proc_dostring(table, write, buffer, lenp, ppos);
2820 if (!error)
2821 validate_coredump_safety();
2822 return error;
2823}
Alex Kelly046d6622012-10-04 17:15:23 -07002824#endif
Kees Cook54b50192012-07-30 14:39:18 -07002825
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002826static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 void __user *buffer,
2828 size_t *lenp, loff_t *ppos,
2829 unsigned long convmul,
2830 unsigned long convdiv)
2831{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002832 unsigned long *i, *min, *max;
2833 int vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002834 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002835 char *kbuf = NULL, *p;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002836
2837 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 *lenp = 0;
2839 return 0;
2840 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002841
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002842 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 min = (unsigned long *) table->extra1;
2844 max = (unsigned long *) table->extra2;
2845 vleft = table->maxlen / sizeof(unsigned long);
2846 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002847
2848 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002849 if (proc_first_pos_non_zero_ignore(ppos, table))
2850 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002851
Amerigo Wang00b7c332010-05-05 00:26:45 +00002852 if (left > PAGE_SIZE - 1)
2853 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002854 p = kbuf = memdup_user_nul(buffer, left);
2855 if (IS_ERR(kbuf))
2856 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002857 }
2858
Eric Dumazet27b3d802010-10-07 12:59:29 -07002859 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002860 unsigned long val;
2861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002863 bool neg;
2864
Al Viro70f6cbb2015-12-24 00:13:10 -05002865 left -= proc_skip_spaces(&p);
Cheng Lin09be1782019-01-03 15:26:13 -08002866 if (!left)
2867 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002868
Al Viro70f6cbb2015-12-24 00:13:10 -05002869 err = proc_get_long(&p, &left, &val, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002870 proc_wspace_sep,
2871 sizeof(proc_wspace_sep), NULL);
2872 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 break;
2874 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 continue;
Eric Dumazetff9f8a72017-01-25 18:20:55 -08002876 val = convmul * val / convdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if ((min && val < *min) || (max && val > *max))
2878 continue;
2879 *i = val;
2880 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002881 val = convdiv * (*i) / convmul;
Chen Gang78338192013-11-12 15:11:21 -08002882 if (!first) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002883 err = proc_put_char(&buffer, &left, '\t');
Chen Gang78338192013-11-12 15:11:21 -08002884 if (err)
2885 break;
2886 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002887 err = proc_put_long(&buffer, &left, val, false);
2888 if (err)
2889 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 }
2891 }
2892
Amerigo Wang00b7c332010-05-05 00:26:45 +00002893 if (!write && !first && left && !err)
2894 err = proc_put_char(&buffer, &left, '\n');
2895 if (write && !err)
Al Viro70f6cbb2015-12-24 00:13:10 -05002896 left -= proc_skip_spaces(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002898 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002899 if (first)
2900 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002903out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002905 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906}
2907
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002908static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002909 void __user *buffer,
2910 size_t *lenp, loff_t *ppos,
2911 unsigned long convmul,
2912 unsigned long convdiv)
2913{
2914 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002915 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002916}
2917
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918/**
2919 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2920 * @table: the sysctl table
2921 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 * @buffer: the user buffer
2923 * @lenp: the size of the user buffer
2924 * @ppos: file position
2925 *
2926 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2927 * values from/to the user buffer, treated as an ASCII string.
2928 *
2929 * This routine will ensure the values are within the range specified by
2930 * table->extra1 (min) and table->extra2 (max).
2931 *
2932 * Returns 0 on success.
2933 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002934int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 void __user *buffer, size_t *lenp, loff_t *ppos)
2936{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002937 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938}
2939
2940/**
2941 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2942 * @table: the sysctl table
2943 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 * @buffer: the user buffer
2945 * @lenp: the size of the user buffer
2946 * @ppos: file position
2947 *
2948 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2949 * values from/to the user buffer, treated as an ASCII string. The values
2950 * are treated as milliseconds, and converted to jiffies when they are stored.
2951 *
2952 * This routine will ensure the values are within the range specified by
2953 * table->extra1 (min) and table->extra2 (max).
2954 *
2955 * Returns 0 on success.
2956 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002957int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 void __user *buffer,
2959 size_t *lenp, loff_t *ppos)
2960{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002961 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 lenp, ppos, HZ, 1000l);
2963}
2964
2965
Amerigo Wang00b7c332010-05-05 00:26:45 +00002966static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 int *valp,
2968 int write, void *data)
2969{
2970 if (write) {
Gao Feng63259452017-05-08 15:54:58 -07002971 if (*lvalp > INT_MAX / HZ)
Bart Samwelcba9f332006-03-24 03:15:50 -08002972 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2974 } else {
2975 int val = *valp;
2976 unsigned long lval;
2977 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002978 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002979 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002981 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 lval = (unsigned long)val;
2983 }
2984 *lvalp = lval / HZ;
2985 }
2986 return 0;
2987}
2988
Amerigo Wang00b7c332010-05-05 00:26:45 +00002989static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 int *valp,
2991 int write, void *data)
2992{
2993 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002994 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2995 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2997 } else {
2998 int val = *valp;
2999 unsigned long lval;
3000 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00003001 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07003002 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00003004 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 lval = (unsigned long)val;
3006 }
3007 *lvalp = jiffies_to_clock_t(lval);
3008 }
3009 return 0;
3010}
3011
Amerigo Wang00b7c332010-05-05 00:26:45 +00003012static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 int *valp,
3014 int write, void *data)
3015{
3016 if (write) {
Francesco Fuscod738ce82013-07-24 10:39:07 +02003017 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
3018
3019 if (jif > INT_MAX)
3020 return 1;
3021 *valp = (int)jif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 } else {
3023 int val = *valp;
3024 unsigned long lval;
3025 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00003026 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07003027 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00003029 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 lval = (unsigned long)val;
3031 }
3032 *lvalp = jiffies_to_msecs(lval);
3033 }
3034 return 0;
3035}
3036
3037/**
3038 * proc_dointvec_jiffies - read a vector of integers as seconds
3039 * @table: the sysctl table
3040 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 * @buffer: the user buffer
3042 * @lenp: the size of the user buffer
3043 * @ppos: file position
3044 *
3045 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3046 * values from/to the user buffer, treated as an ASCII string.
3047 * The values read are assumed to be in seconds, and are converted into
3048 * jiffies.
3049 *
3050 * Returns 0 on success.
3051 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003052int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 void __user *buffer, size_t *lenp, loff_t *ppos)
3054{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003055 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 do_proc_dointvec_jiffies_conv,NULL);
3057}
3058
3059/**
3060 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
3061 * @table: the sysctl table
3062 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 * @buffer: the user buffer
3064 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003065 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 *
3067 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3068 * values from/to the user buffer, treated as an ASCII string.
3069 * The values read are assumed to be in 1/USER_HZ seconds, and
3070 * are converted into jiffies.
3071 *
3072 * Returns 0 on success.
3073 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003074int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 void __user *buffer, size_t *lenp, loff_t *ppos)
3076{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003077 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 do_proc_dointvec_userhz_jiffies_conv,NULL);
3079}
3080
3081/**
3082 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
3083 * @table: the sysctl table
3084 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 * @buffer: the user buffer
3086 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07003087 * @ppos: file position
3088 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 *
3090 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3091 * values from/to the user buffer, treated as an ASCII string.
3092 * The values read are assumed to be in 1/1000 seconds, and
3093 * are converted into jiffies.
3094 *
3095 * Returns 0 on success.
3096 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003097int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 void __user *buffer, size_t *lenp, loff_t *ppos)
3099{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003100 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 do_proc_dointvec_ms_jiffies_conv, NULL);
3102}
3103
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003104static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003105 void __user *buffer, size_t *lenp, loff_t *ppos)
3106{
3107 struct pid *new_pid;
3108 pid_t tmp;
3109 int r;
3110
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08003111 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003112
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003113 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003114 lenp, ppos, NULL, NULL);
3115 if (r || !write)
3116 return r;
3117
3118 new_pid = find_get_pid(tmp);
3119 if (!new_pid)
3120 return -ESRCH;
3121
3122 put_pid(xchg(&cad_pid, new_pid));
3123 return 0;
3124}
3125
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003126/**
3127 * proc_do_large_bitmap - read/write from/to a large bitmap
3128 * @table: the sysctl table
3129 * @write: %TRUE if this is a write to the sysctl file
3130 * @buffer: the user buffer
3131 * @lenp: the size of the user buffer
3132 * @ppos: file position
3133 *
3134 * The bitmap is stored at table->data and the bitmap length (in bits)
3135 * in table->maxlen.
3136 *
3137 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
3138 * large bitmaps may be represented in a compact manner. Writing into
3139 * the file will clear the bitmap then update it with the given input.
3140 *
3141 * Returns 0 on success.
3142 */
3143int proc_do_large_bitmap(struct ctl_table *table, int write,
3144 void __user *buffer, size_t *lenp, loff_t *ppos)
3145{
3146 int err = 0;
3147 bool first = 1;
3148 size_t left = *lenp;
3149 unsigned long bitmap_len = table->maxlen;
WANG Cong122ff242014-05-12 16:04:53 -07003150 unsigned long *bitmap = *(unsigned long **) table->data;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003151 unsigned long *tmp_bitmap = NULL;
3152 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
3153
WANG Cong122ff242014-05-12 16:04:53 -07003154 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003155 *lenp = 0;
3156 return 0;
3157 }
3158
3159 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003160 char *kbuf, *p;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003161
3162 if (left > PAGE_SIZE - 1)
3163 left = PAGE_SIZE - 1;
3164
Al Viro70f6cbb2015-12-24 00:13:10 -05003165 p = kbuf = memdup_user_nul(buffer, left);
3166 if (IS_ERR(kbuf))
3167 return PTR_ERR(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003168
Kees Cook6396bb22018-06-12 14:03:40 -07003169 tmp_bitmap = kcalloc(BITS_TO_LONGS(bitmap_len),
3170 sizeof(unsigned long),
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003171 GFP_KERNEL);
3172 if (!tmp_bitmap) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003173 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003174 return -ENOMEM;
3175 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003176 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003177 while (!err && left) {
3178 unsigned long val_a, val_b;
3179 bool neg;
3180
Al Viro70f6cbb2015-12-24 00:13:10 -05003181 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003182 sizeof(tr_a), &c);
3183 if (err)
3184 break;
3185 if (val_a >= bitmap_len || neg) {
3186 err = -EINVAL;
3187 break;
3188 }
3189
3190 val_b = val_a;
3191 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003192 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003193 left--;
3194 }
3195
3196 if (c == '-') {
Al Viro70f6cbb2015-12-24 00:13:10 -05003197 err = proc_get_long(&p, &left, &val_b,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003198 &neg, tr_b, sizeof(tr_b),
3199 &c);
3200 if (err)
3201 break;
3202 if (val_b >= bitmap_len || neg ||
3203 val_a > val_b) {
3204 err = -EINVAL;
3205 break;
3206 }
3207 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003208 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003209 left--;
3210 }
3211 }
3212
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003213 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003214 first = 0;
Al Viro70f6cbb2015-12-24 00:13:10 -05003215 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003216 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003217 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003218 } else {
3219 unsigned long bit_a, bit_b = 0;
3220
3221 while (left) {
3222 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
3223 if (bit_a >= bitmap_len)
3224 break;
3225 bit_b = find_next_zero_bit(bitmap, bitmap_len,
3226 bit_a + 1) - 1;
3227
3228 if (!first) {
3229 err = proc_put_char(&buffer, &left, ',');
3230 if (err)
3231 break;
3232 }
3233 err = proc_put_long(&buffer, &left, bit_a, false);
3234 if (err)
3235 break;
3236 if (bit_a != bit_b) {
3237 err = proc_put_char(&buffer, &left, '-');
3238 if (err)
3239 break;
3240 err = proc_put_long(&buffer, &left, bit_b, false);
3241 if (err)
3242 break;
3243 }
3244
3245 first = 0; bit_b++;
3246 }
3247 if (!err)
3248 err = proc_put_char(&buffer, &left, '\n');
3249 }
3250
3251 if (!err) {
3252 if (write) {
3253 if (*ppos)
3254 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
3255 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003256 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003257 }
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003258 *lenp -= left;
3259 *ppos += *lenp;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003260 }
Ola N. Kaldestadf9eb2fd2017-11-17 15:30:26 -08003261
3262 kfree(tmp_bitmap);
3263 return err;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003264}
3265
Jovi Zhang55610502011-01-12 17:00:45 -08003266#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003268int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 void __user *buffer, size_t *lenp, loff_t *ppos)
3270{
3271 return -ENOSYS;
3272}
3273
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003274int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 void __user *buffer, size_t *lenp, loff_t *ppos)
3276{
3277 return -ENOSYS;
3278}
3279
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003280int proc_douintvec(struct ctl_table *table, int write,
3281 void __user *buffer, size_t *lenp, loff_t *ppos)
3282{
3283 return -ENOSYS;
3284}
3285
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003286int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 void __user *buffer, size_t *lenp, loff_t *ppos)
3288{
3289 return -ENOSYS;
3290}
3291
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003292int proc_douintvec_minmax(struct ctl_table *table, int write,
3293 void __user *buffer, size_t *lenp, loff_t *ppos)
3294{
3295 return -ENOSYS;
3296}
3297
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003298int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 void __user *buffer, size_t *lenp, loff_t *ppos)
3300{
3301 return -ENOSYS;
3302}
3303
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003304int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 void __user *buffer, size_t *lenp, loff_t *ppos)
3306{
3307 return -ENOSYS;
3308}
3309
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003310int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 void __user *buffer, size_t *lenp, loff_t *ppos)
3312{
3313 return -ENOSYS;
3314}
3315
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003316int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 void __user *buffer, size_t *lenp, loff_t *ppos)
3318{
3319 return -ENOSYS;
3320}
3321
Eric W. Biedermand8217f02007-10-18 03:05:22 -07003322int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 void __user *buffer,
3324 size_t *lenp, loff_t *ppos)
3325{
3326 return -ENOSYS;
3327}
3328
Stephen Suryaputra0bc19982019-04-17 16:35:49 -04003329int proc_do_large_bitmap(struct ctl_table *table, int write,
3330 void __user *buffer, size_t *lenp, loff_t *ppos)
3331{
3332 return -ENOSYS;
3333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Jovi Zhang55610502011-01-12 17:00:45 -08003335#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Arnd Bergmann78c3aff2019-03-04 21:34:12 +01003337#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_SYSCTL)
Alexei Starovoitov492ecee2019-02-25 14:28:39 -08003338static int proc_dointvec_minmax_bpf_stats(struct ctl_table *table, int write,
3339 void __user *buffer, size_t *lenp,
3340 loff_t *ppos)
3341{
3342 int ret, bpf_stats = *(int *)table->data;
3343 struct ctl_table tmp = *table;
3344
3345 if (write && !capable(CAP_SYS_ADMIN))
3346 return -EPERM;
3347
3348 tmp.data = &bpf_stats;
3349 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3350 if (write && !ret) {
3351 *(int *)table->data = bpf_stats;
3352 if (bpf_stats)
3353 static_branch_enable(&bpf_stats_enabled_key);
3354 else
3355 static_branch_disable(&bpf_stats_enabled_key);
3356 }
3357 return ret;
3358}
Alexei Starovoitov3fcc5532019-02-27 18:30:44 -08003359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360/*
3361 * No sense putting this after each symbol definition, twice,
3362 * exception granted :-)
3363 */
3364EXPORT_SYMBOL(proc_dointvec);
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003365EXPORT_SYMBOL(proc_douintvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366EXPORT_SYMBOL(proc_dointvec_jiffies);
3367EXPORT_SYMBOL(proc_dointvec_minmax);
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003368EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3370EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3371EXPORT_SYMBOL(proc_dostring);
3372EXPORT_SYMBOL(proc_doulongvec_minmax);
3373EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
Stephen Suryaputra0bc19982019-04-17 16:35:49 -04003374EXPORT_SYMBOL(proc_do_large_bitmap);