blob: 3ae223f7b5dfabaf929c66941fc0b6693e9b063a [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>
Joe Lawrence7a8d1812017-11-17 15:29:24 -080069#include <linux/pipe_fs_i.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/processor.h>
73
Andi Kleen29cbc782006-09-30 01:47:55 +020074#ifdef CONFIG_X86
75#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010076#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010077#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020078#endif
David Howellsd550bbd2012-03-28 18:30:03 +010079#ifdef CONFIG_SPARC
80#include <asm/setup.h>
81#endif
Dave Youngc55b7c32010-03-10 15:24:08 -080082#ifdef CONFIG_BSD_PROCESS_ACCT
83#include <linux/acct.h>
84#endif
Dave Young4f0e0562010-03-10 15:24:09 -080085#ifdef CONFIG_RT_MUTEXES
86#include <linux/rtmutex.h>
87#endif
Dave Young2edf5e42010-03-10 15:24:10 -080088#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
89#include <linux/lockdep.h>
90#endif
Dave Young15485a42010-03-10 15:24:07 -080091#ifdef CONFIG_CHR_DEV_SG
92#include <scsi/sg.h>
93#endif
Alexander Popov964c9df2018-08-17 01:17:03 +030094#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
95#include <linux/stackleak.h>
96#endif
Don Zickus58687ac2010-05-07 17:11:44 -040097#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050098#include <linux/nmi.h>
99#endif
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#if defined(CONFIG_SYSCTL)
102
103/* External variables not in a header file. */
Alan Coxd6e71142005-06-23 00:09:43 -0700104extern int suid_dumpable;
Alex Kelly046d6622012-10-04 17:15:23 -0700105#ifdef CONFIG_COREDUMP
106extern int core_uses_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -0700108extern unsigned int core_pipe_limit;
Alex Kelly046d6622012-10-04 17:15:23 -0700109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110extern int pid_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111extern int pid_max_min, pid_max_max;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800112extern int percpu_pagelist_fraction;
Arjan van de Ven97455122008-01-25 21:08:34 +0100113extern int latencytop_enabled;
Alexey Dobriyan9b80a182016-09-02 00:38:52 +0300114extern unsigned int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000115#ifndef CONFIG_MMU
116extern int sysctl_nr_trim_pages;
117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700119/* Constants used for minimum and maximum */
Don Zickus2508ce12010-05-07 17:11:46 -0400120#ifdef CONFIG_LOCKUP_DETECTOR
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700121static int sixty = 60;
122#endif
123
Aaron Tomlin270750db2014-01-20 17:34:13 +0000124static int __maybe_unused neg_one = -1;
125
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700126static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700127static int __maybe_unused one = 1;
128static int __maybe_unused two = 2;
Dave Hansen5509a5d2014-04-03 14:48:19 -0700129static int __maybe_unused four = 4;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800130static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700131static int one_hundred = 100;
Johannes Weiner795ae7a2016-03-17 14:19:14 -0700132static int one_thousand = 1000;
Dave Youngaf913222009-09-22 16:43:33 -0700133#ifdef CONFIG_PRINTK
134static int ten_thousand = 10000;
135#endif
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -0300136#ifdef CONFIG_PERF_EVENTS
137static int six_hundred_forty_kb = 640 * 1024;
138#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700139
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700140/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
141static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
144static int maxolduid = 65535;
145static int minolduid;
146
147static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700148static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Dmitry Vyukova2e51442018-08-21 21:55:52 -0700150/*
151 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
152 * and hung_task_check_interval_secs
153 */
Liu Hua80df2842014-04-07 15:38:57 -0700154#ifdef CONFIG_DETECT_HUNG_TASK
155static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
156#endif
157
Dave Youngd14f1722010-02-25 20:28:57 -0500158#ifdef CONFIG_INOTIFY_USER
159#include <linux/inotify.h>
160#endif
David S. Miller72c57ed2008-09-11 23:29:54 -0700161#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#endif
163
164#ifdef __hppa__
165extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530166#endif
167
168#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169extern int unaligned_enabled;
170#endif
171
Jes Sorensend2b176e2006-02-28 09:42:23 -0800172#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800173extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800174#endif
175
Vineet Guptab6fca722013-01-09 20:06:28 +0530176#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
177extern int no_unaligned_warning;
178#endif
179
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700180#ifdef CONFIG_PROC_SYSCTL
Kees Cookf4aacea2014-06-06 14:37:19 -0700181
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700182/**
183 * enum sysctl_writes_mode - supported sysctl write modes
184 *
185 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
186 * to be written, and multiple writes on the same sysctl file descriptor
187 * will rewrite the sysctl value, regardless of file position. No warning
188 * is issued when the initial position is not 0.
189 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
190 * not 0.
191 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
192 * file position 0 and the value must be fully contained in the buffer
193 * sent to the write syscall. If dealing with strings respect the file
194 * position, but restrict this to the max length of the buffer, anything
195 * passed the max lenght will be ignored. Multiple writes will append
196 * to the buffer.
197 *
198 * These write modes control how current file position affects the behavior of
199 * updating sysctl values through the proc interface on each write.
200 */
201enum sysctl_writes_mode {
202 SYSCTL_WRITES_LEGACY = -1,
203 SYSCTL_WRITES_WARN = 0,
204 SYSCTL_WRITES_STRICT = 1,
205};
Kees Cookf4aacea2014-06-06 14:37:19 -0700206
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700207static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
Kees Cookf4aacea2014-06-06 14:37:19 -0700208
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700209static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700210 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700211static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800212 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700213#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700214
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700215#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700216static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700217 void __user *buffer, size_t *lenp, loff_t *ppos);
218#endif
219
Kees Cook54b50192012-07-30 14:39:18 -0700220static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
221 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700222#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700223static int proc_dostring_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#endif
Eric Biggers319e0a22018-02-06 15:41:49 -0800226static int proc_dopipe_max_size(struct ctl_table *table, int write,
227 void __user *buffer, size_t *lenp, loff_t *ppos);
Kees Cook54b50192012-07-30 14:39:18 -0700228
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700229#ifdef CONFIG_MAGIC_SYSRQ
Randy Dunlap5f733e82018-08-21 22:01:06 -0700230/* Note: sysrq code uses its own private copy */
Ben Hutchings8eaede42013-10-07 01:05:46 +0100231static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700232
Joe Perches6f8fd1d2014-06-06 14:38:08 -0700233static int sysrq_sysctl_handler(struct ctl_table *table, int write,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700234 void __user *buffer, size_t *lenp,
235 loff_t *ppos)
236{
237 int error;
238
239 error = proc_dointvec(table, write, buffer, lenp, ppos);
240 if (error)
241 return error;
242
243 if (write)
244 sysrq_toggle_support(__sysrq_enabled);
245
246 return 0;
247}
248
249#endif
250
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700251static struct ctl_table kern_table[];
252static struct ctl_table vm_table[];
253static struct ctl_table fs_table[];
254static struct ctl_table debug_table[];
255static struct ctl_table dev_table[];
256extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800257#ifdef CONFIG_EPOLL
258extern struct ctl_table epoll_table[];
259#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Luis R. Rodriguezceb18132018-03-10 06:14:51 -0800261#ifdef CONFIG_FW_LOADER_USER_HELPER
262extern struct ctl_table firmware_config_table[];
263#endif
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
266int sysctl_legacy_va_layout;
267#endif
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/* The default sysctl tables: */
270
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800271static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 .procname = "kernel",
274 .mode = 0555,
275 .child = kern_table,
276 },
277 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .procname = "vm",
279 .mode = 0555,
280 .child = vm_table,
281 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .procname = "fs",
284 .mode = 0555,
285 .child = fs_table,
286 },
287 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .procname = "debug",
289 .mode = 0555,
290 .child = debug_table,
291 },
292 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 .procname = "dev",
294 .mode = 0555,
295 .child = dev_table,
296 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700297 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298};
299
Ingo Molnar77e54a12007-07-09 18:52:00 +0200300#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100301static int min_sched_granularity_ns = 100000; /* 100 usecs */
302static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
303static int min_wakeup_granularity_ns; /* 0 usecs */
304static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200305#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100306static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
307static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200308#endif /* CONFIG_SMP */
309#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200310
Mel Gorman5e771902010-05-24 14:32:31 -0700311#ifdef CONFIG_COMPACTION
312static int min_extfrag_threshold;
313static int max_extfrag_threshold = 1000;
314#endif
315
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700316static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200317 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200318 .procname = "sched_child_runs_first",
319 .data = &sysctl_sched_child_runs_first,
320 .maxlen = sizeof(unsigned int),
321 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800322 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200323 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200324#ifdef CONFIG_SCHED_DEBUG
325 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100326 .procname = "sched_min_granularity_ns",
327 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200328 .maxlen = sizeof(unsigned int),
329 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800330 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100331 .extra1 = &min_sched_granularity_ns,
332 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200333 },
334 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200335 .procname = "sched_latency_ns",
336 .data = &sysctl_sched_latency,
337 .maxlen = sizeof(unsigned int),
338 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800339 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200340 .extra1 = &min_sched_granularity_ns,
341 .extra2 = &max_sched_granularity_ns,
342 },
343 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200344 .procname = "sched_wakeup_granularity_ns",
345 .data = &sysctl_sched_wakeup_granularity,
346 .maxlen = sizeof(unsigned int),
347 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800348 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200349 .extra1 = &min_wakeup_granularity_ns,
350 .extra2 = &max_wakeup_granularity_ns,
351 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200352#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200353 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100354 .procname = "sched_tunable_scaling",
355 .data = &sysctl_sched_tunable_scaling,
356 .maxlen = sizeof(enum sched_tunable_scaling),
357 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800358 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100359 .extra1 = &min_sched_tunable_scaling,
360 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200361 },
362 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900363 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200364 .data = &sysctl_sched_migration_cost,
365 .maxlen = sizeof(unsigned int),
366 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800367 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200368 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100369 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100370 .procname = "sched_nr_migrate",
371 .data = &sysctl_sched_nr_migrate,
372 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100373 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800374 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100375 },
Mel Gormancb251762016-02-05 09:08:36 +0000376#ifdef CONFIG_SCHEDSTATS
377 {
378 .procname = "sched_schedstats",
379 .data = NULL,
380 .maxlen = sizeof(unsigned int),
381 .mode = 0644,
382 .proc_handler = sysctl_schedstats,
383 .extra1 = &zero,
384 .extra2 = &one,
385 },
386#endif /* CONFIG_SCHEDSTATS */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200387#endif /* CONFIG_SMP */
388#ifdef CONFIG_NUMA_BALANCING
389 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200390 .procname = "numa_balancing_scan_delay_ms",
391 .data = &sysctl_numa_balancing_scan_delay,
392 .maxlen = sizeof(unsigned int),
393 .mode = 0644,
394 .proc_handler = proc_dointvec,
395 },
396 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200397 .procname = "numa_balancing_scan_period_min_ms",
398 .data = &sysctl_numa_balancing_scan_period_min,
399 .maxlen = sizeof(unsigned int),
400 .mode = 0644,
401 .proc_handler = proc_dointvec,
402 },
403 {
404 .procname = "numa_balancing_scan_period_max_ms",
405 .data = &sysctl_numa_balancing_scan_period_max,
406 .maxlen = sizeof(unsigned int),
407 .mode = 0644,
408 .proc_handler = proc_dointvec,
409 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200410 {
411 .procname = "numa_balancing_scan_size_mb",
412 .data = &sysctl_numa_balancing_scan_size,
413 .maxlen = sizeof(unsigned int),
414 .mode = 0644,
Kirill Tkhai64192652014-10-16 14:39:37 +0400415 .proc_handler = proc_dointvec_minmax,
416 .extra1 = &one,
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200417 },
Mel Gorman3a7053b2013-10-07 11:29:00 +0100418 {
Andi Kleen54a43d52014-01-23 15:53:13 -0800419 .procname = "numa_balancing",
420 .data = NULL, /* filled in by handler */
421 .maxlen = sizeof(unsigned int),
422 .mode = 0644,
423 .proc_handler = sysctl_numa_balancing,
424 .extra1 = &zero,
425 .extra2 = &one,
426 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200427#endif /* CONFIG_NUMA_BALANCING */
428#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200429 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100430 .procname = "sched_rt_period_us",
431 .data = &sysctl_sched_rt_period,
432 .maxlen = sizeof(unsigned int),
433 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800434 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100435 },
436 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100437 .procname = "sched_rt_runtime_us",
438 .data = &sysctl_sched_rt_runtime,
439 .maxlen = sizeof(int),
440 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800441 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100442 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600443 {
444 .procname = "sched_rr_timeslice_ms",
Shile Zhang975e1552017-01-28 22:00:49 +0800445 .data = &sysctl_sched_rr_timeslice,
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600446 .maxlen = sizeof(int),
447 .mode = 0644,
448 .proc_handler = sched_rr_handler,
449 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100450#ifdef CONFIG_SCHED_AUTOGROUP
451 {
452 .procname = "sched_autogroup_enabled",
453 .data = &sysctl_sched_autogroup_enabled,
454 .maxlen = sizeof(unsigned int),
455 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800456 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100457 .extra1 = &zero,
458 .extra2 = &one,
459 },
460#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700461#ifdef CONFIG_CFS_BANDWIDTH
462 {
463 .procname = "sched_cfs_bandwidth_slice_us",
464 .data = &sysctl_sched_cfs_bandwidth_slice,
465 .maxlen = sizeof(unsigned int),
466 .mode = 0644,
467 .proc_handler = proc_dointvec_minmax,
468 .extra1 = &one,
469 },
470#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700471#ifdef CONFIG_PROVE_LOCKING
472 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700473 .procname = "prove_locking",
474 .data = &prove_locking,
475 .maxlen = sizeof(int),
476 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800477 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700478 },
479#endif
480#ifdef CONFIG_LOCK_STAT
481 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700482 .procname = "lock_stat",
483 .data = &lock_stat,
484 .maxlen = sizeof(int),
485 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800486 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700487 },
488#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200489 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 .procname = "panic",
491 .data = &panic_timeout,
492 .maxlen = sizeof(int),
493 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800494 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 },
Alex Kelly046d6622012-10-04 17:15:23 -0700496#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .procname = "core_uses_pid",
499 .data = &core_uses_pid,
500 .maxlen = sizeof(int),
501 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800502 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 },
504 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .procname = "core_pattern",
506 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700507 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700509 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 },
Neil Hormana2939802009-09-23 15:56:56 -0700511 {
Neil Hormana2939802009-09-23 15:56:56 -0700512 .procname = "core_pipe_limit",
513 .data = &core_pipe_limit,
514 .maxlen = sizeof(unsigned int),
515 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800516 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700517 },
Alex Kelly046d6622012-10-04 17:15:23 -0700518#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800519#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700522 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800523 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800524 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 },
Kees Cookf4aacea2014-06-06 14:37:19 -0700526 {
527 .procname = "sysctl_writes_strict",
528 .data = &sysctl_writes_strict,
529 .maxlen = sizeof(int),
530 .mode = 0644,
531 .proc_handler = proc_dointvec_minmax,
532 .extra1 = &neg_one,
533 .extra2 = &one,
534 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800535#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100536#ifdef CONFIG_LATENCYTOP
537 {
538 .procname = "latencytop",
539 .data = &latencytop_enabled,
540 .maxlen = sizeof(int),
541 .mode = 0644,
Mel Gormancb251762016-02-05 09:08:36 +0000542 .proc_handler = sysctl_latencytop,
Arjan van de Ven97455122008-01-25 21:08:34 +0100543 },
544#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#ifdef CONFIG_BLK_DEV_INITRD
546 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 .procname = "real-root-dev",
548 .data = &real_root_dev,
549 .maxlen = sizeof(int),
550 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800551 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 },
553#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700554 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700555 .procname = "print-fatal-signals",
556 .data = &print_fatal_signals,
557 .maxlen = sizeof(int),
558 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800559 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700560 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700561#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 .procname = "reboot-cmd",
564 .data = reboot_command,
565 .maxlen = 256,
566 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800567 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 },
569 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 .procname = "stop-a",
571 .data = &stop_a_enabled,
572 .maxlen = sizeof (int),
573 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800574 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 },
576 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 .procname = "scons-poweroff",
578 .data = &scons_pwroff,
579 .maxlen = sizeof (int),
580 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800581 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 },
583#endif
David S. Miller08714202008-11-16 23:49:24 -0800584#ifdef CONFIG_SPARC64
585 {
David S. Miller08714202008-11-16 23:49:24 -0800586 .procname = "tsb-ratio",
587 .data = &sysctl_tsb_ratio,
588 .maxlen = sizeof (int),
589 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800590 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800591 },
592#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593#ifdef __hppa__
594 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 .procname = "soft-power",
596 .data = &pwrsw_enabled,
597 .maxlen = sizeof (int),
598 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800599 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530601#endif
602#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .procname = "unaligned-trap",
605 .data = &unaligned_enabled,
606 .maxlen = sizeof (int),
607 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800608 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 },
610#endif
611 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 .procname = "ctrl-alt-del",
613 .data = &C_A_D,
614 .maxlen = sizeof(int),
615 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800616 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400618#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200619 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200620 .procname = "ftrace_enabled",
621 .data = &ftrace_enabled,
622 .maxlen = sizeof(int),
623 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800624 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200625 },
626#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500627#ifdef CONFIG_STACK_TRACER
628 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500629 .procname = "stack_tracer_enabled",
630 .data = &stack_tracer_enabled,
631 .maxlen = sizeof(int),
632 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800633 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500634 },
635#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400636#ifdef CONFIG_TRACING
637 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100638 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400639 .data = &ftrace_dump_on_oops,
640 .maxlen = sizeof(int),
641 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800642 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400643 },
Steven Rostedt (Red Hat)de7edd32013-06-14 16:21:43 -0400644 {
645 .procname = "traceoff_on_warning",
646 .data = &__disable_trace_on_warning,
647 .maxlen = sizeof(__disable_trace_on_warning),
648 .mode = 0644,
649 .proc_handler = proc_dointvec,
650 },
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500651 {
652 .procname = "tracepoint_printk",
653 .data = &tracepoint_printk,
654 .maxlen = sizeof(tracepoint_printk),
655 .mode = 0644,
Steven Rostedt (Red Hat)423917452016-11-23 15:52:45 -0500656 .proc_handler = tracepoint_printk_sysctl,
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500657 },
Steven Rostedt944ac422008-10-23 19:26:08 -0400658#endif
Dave Young2965faa2015-09-09 15:38:55 -0700659#ifdef CONFIG_KEXEC_CORE
Kees Cook79847542014-01-23 15:55:59 -0800660 {
661 .procname = "kexec_load_disabled",
662 .data = &kexec_load_disabled,
663 .maxlen = sizeof(int),
664 .mode = 0644,
665 /* only handle a transition from default "0" to "1" */
666 .proc_handler = proc_dointvec_minmax,
667 .extra1 = &one,
668 .extra2 = &one,
669 },
670#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200671#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 .procname = "modprobe",
674 .data = &modprobe_path,
675 .maxlen = KMOD_PATH_LEN,
676 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800677 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 },
Kees Cook3d433212009-04-02 15:49:29 -0700679 {
Kees Cook3d433212009-04-02 15:49:29 -0700680 .procname = "modules_disabled",
681 .data = &modules_disabled,
682 .maxlen = sizeof(int),
683 .mode = 0644,
684 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800685 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700686 .extra1 = &one,
687 .extra2 = &one,
688 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#endif
Michael Marineau86d56132014-04-10 14:09:31 -0700690#ifdef CONFIG_UEVENT_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100693 .data = &uevent_helper,
694 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800696 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 },
Michael Marineau86d56132014-04-10 14:09:31 -0700698#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#ifdef CONFIG_CHR_DEV_SG
700 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 .procname = "sg-big-buff",
702 .data = &sg_big_buff,
703 .maxlen = sizeof (int),
704 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800705 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 },
707#endif
708#ifdef CONFIG_BSD_PROCESS_ACCT
709 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 .procname = "acct",
711 .data = &acct_parm,
712 .maxlen = 3*sizeof(int),
713 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800714 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 },
716#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717#ifdef CONFIG_MAGIC_SYSRQ
718 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800720 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 .maxlen = sizeof (int),
722 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700723 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 },
725#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700726#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700729 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 .maxlen = sizeof (int),
731 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800732 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700734#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .procname = "threads-max",
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700737 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 .maxlen = sizeof(int),
739 .mode = 0644,
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700740 .proc_handler = sysctl_max_threads,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 },
742 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 .procname = "random",
744 .mode = 0555,
745 .child = random_table,
746 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 {
Eric Paris17f60a72011-04-01 17:07:50 -0400748 .procname = "usermodehelper",
749 .mode = 0555,
750 .child = usermodehelper_table,
751 },
Luis R. Rodriguezceb18132018-03-10 06:14:51 -0800752#ifdef CONFIG_FW_LOADER_USER_HELPER
753 {
754 .procname = "firmware_config",
755 .mode = 0555,
756 .child = firmware_config_table,
757 },
758#endif
Eric Paris17f60a72011-04-01 17:07:50 -0400759 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 .procname = "overflowuid",
761 .data = &overflowuid,
762 .maxlen = sizeof(int),
763 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800764 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 .extra1 = &minolduid,
766 .extra2 = &maxolduid,
767 },
768 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 .procname = "overflowgid",
770 .data = &overflowgid,
771 .maxlen = sizeof(int),
772 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800773 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 .extra1 = &minolduid,
775 .extra2 = &maxolduid,
776 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800777#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778#ifdef CONFIG_MATHEMU
779 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .procname = "ieee_emulation_warnings",
781 .data = &sysctl_ieee_emulation_warnings,
782 .maxlen = sizeof(int),
783 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800784 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 },
786#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200789 .data = &show_unhandled_signals,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 .maxlen = sizeof(int),
791 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800792 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 },
794#endif
795 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 .procname = "pid_max",
797 .data = &pid_max,
798 .maxlen = sizeof (int),
799 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800800 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 .extra1 = &pid_max_min,
802 .extra2 = &pid_max_max,
803 },
804 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 .procname = "panic_on_oops",
806 .data = &panic_on_oops,
807 .maxlen = sizeof(int),
808 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800809 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800811#if defined CONFIG_PRINTK
812 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800813 .procname = "printk",
814 .data = &console_loglevel,
815 .maxlen = 4*sizeof(int),
816 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800817 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800818 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700821 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .maxlen = sizeof(int),
823 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800824 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 },
826 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700828 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 .maxlen = sizeof(int),
830 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800831 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 },
Dave Youngaf913222009-09-22 16:43:33 -0700833 {
Dave Youngaf913222009-09-22 16:43:33 -0700834 .procname = "printk_delay",
835 .data = &printk_delay_msec,
836 .maxlen = sizeof(int),
837 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800838 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700839 .extra1 = &zero,
840 .extra2 = &ten_thousand,
841 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 {
Borislav Petkov750afe72016-08-02 14:04:07 -0700843 .procname = "printk_devkmsg",
844 .data = devkmsg_log_str,
845 .maxlen = DEVKMSG_STR_MAX_SIZE,
846 .mode = 0644,
847 .proc_handler = devkmsg_sysctl_set_loglvl,
848 },
849 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800850 .procname = "dmesg_restrict",
851 .data = &dmesg_restrict,
852 .maxlen = sizeof(int),
853 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700854 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800855 .extra1 = &zero,
856 .extra2 = &one,
857 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800858 {
859 .procname = "kptr_restrict",
860 .data = &kptr_restrict,
861 .maxlen = sizeof(int),
862 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700863 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800864 .extra1 = &zero,
865 .extra2 = &two,
866 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800867#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800868 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 .procname = "ngroups_max",
870 .data = &ngroups_max,
871 .maxlen = sizeof (int),
872 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800873 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 },
Dan Ballard73efc032011-10-31 17:11:20 -0700875 {
876 .procname = "cap_last_cap",
877 .data = (void *)&cap_last_cap,
878 .maxlen = sizeof(int),
879 .mode = 0444,
880 .proc_handler = proc_dointvec,
881 },
Don Zickus58687ac2010-05-07 17:11:44 -0400882#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500883 {
Don Zickus58687ac2010-05-07 17:11:44 -0400884 .procname = "watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200885 .data = &watchdog_user_enabled,
886 .maxlen = sizeof(int),
887 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700888 .proc_handler = proc_watchdog,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700889 .extra1 = &zero,
890 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400891 },
892 {
893 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700894 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400895 .maxlen = sizeof(int),
896 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700897 .proc_handler = proc_watchdog_thresh,
Li Zefana6572f82013-05-17 10:31:04 +0800898 .extra1 = &zero,
Don Zickus58687ac2010-05-07 17:11:44 -0400899 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500900 },
Don Zickus2508ce12010-05-07 17:11:46 -0400901 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700902 .procname = "nmi_watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200903 .data = &nmi_watchdog_user_enabled,
904 .maxlen = sizeof(int),
Thomas Gleixner51d40522017-09-12 21:37:14 +0200905 .mode = NMI_WATCHDOG_SYSCTL_PERM,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700906 .proc_handler = proc_nmi_watchdog,
907 .extra1 = &zero,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700908 .extra2 = &one,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700909 },
910 {
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700911 .procname = "watchdog_cpumask",
912 .data = &watchdog_cpumask_bits,
913 .maxlen = NR_CPUS,
914 .mode = 0644,
915 .proc_handler = proc_watchdog_cpumask,
916 },
917#ifdef CONFIG_SOFTLOCKUP_DETECTOR
918 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700919 .procname = "soft_watchdog",
Thomas Gleixner7feeb9c2017-09-12 21:37:15 +0200920 .data = &soft_watchdog_user_enabled,
921 .maxlen = sizeof(int),
922 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700923 .proc_handler = proc_soft_watchdog,
924 .extra1 = &zero,
925 .extra2 = &one,
926 },
927 {
Don Zickus2508ce12010-05-07 17:11:46 -0400928 .procname = "softlockup_panic",
929 .data = &softlockup_panic,
930 .maxlen = sizeof(int),
931 .mode = 0644,
932 .proc_handler = proc_dointvec_minmax,
933 .extra1 = &zero,
934 .extra2 = &one,
935 },
Aaron Tomlined235872014-06-23 13:22:05 -0700936#ifdef CONFIG_SMP
937 {
938 .procname = "softlockup_all_cpu_backtrace",
939 .data = &sysctl_softlockup_all_cpu_backtrace,
940 .maxlen = sizeof(int),
941 .mode = 0644,
942 .proc_handler = proc_dointvec_minmax,
943 .extra1 = &zero,
944 .extra2 = &one,
945 },
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700946#endif /* CONFIG_SMP */
947#endif
948#ifdef CONFIG_HARDLOCKUP_DETECTOR
949 {
950 .procname = "hardlockup_panic",
951 .data = &hardlockup_panic,
952 .maxlen = sizeof(int),
953 .mode = 0644,
954 .proc_handler = proc_dointvec_minmax,
955 .extra1 = &zero,
956 .extra2 = &one,
957 },
958#ifdef CONFIG_SMP
Jiri Kosina55537872015-11-05 18:44:41 -0800959 {
960 .procname = "hardlockup_all_cpu_backtrace",
961 .data = &sysctl_hardlockup_all_cpu_backtrace,
962 .maxlen = sizeof(int),
963 .mode = 0644,
964 .proc_handler = proc_dointvec_minmax,
965 .extra1 = &zero,
966 .extra2 = &one,
967 },
Aaron Tomlined235872014-06-23 13:22:05 -0700968#endif /* CONFIG_SMP */
Don Zickus5dc30552010-11-29 17:07:17 -0500969#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700970#endif
971
Don Zickus5dc30552010-11-29 17:07:17 -0500972#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
973 {
974 .procname = "unknown_nmi_panic",
975 .data = &unknown_nmi_panic,
976 .maxlen = sizeof (int),
977 .mode = 0644,
978 .proc_handler = proc_dointvec,
979 },
Don Zickus504d7cf2010-02-12 17:19:19 -0500980#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981#if defined(CONFIG_X86)
982 {
Don Zickus8da5add2006-09-26 10:52:27 +0200983 .procname = "panic_on_unrecovered_nmi",
984 .data = &panic_on_unrecovered_nmi,
985 .maxlen = sizeof(int),
986 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800987 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200988 },
989 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700990 .procname = "panic_on_io_nmi",
991 .data = &panic_on_io_nmi,
992 .maxlen = sizeof(int),
993 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800994 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700995 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +0900996#ifdef CONFIG_DEBUG_STACKOVERFLOW
997 {
998 .procname = "panic_on_stackoverflow",
999 .data = &sysctl_panic_on_stackoverflow,
1000 .maxlen = sizeof(int),
1001 .mode = 0644,
1002 .proc_handler = proc_dointvec,
1003 },
1004#endif
Kurt Garloff5211a242009-06-24 14:32:11 -07001005 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 .procname = "bootloader_type",
1007 .data = &bootloader_type,
1008 .maxlen = sizeof (int),
1009 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001010 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +01001012 {
H. Peter Anvin50312962009-05-07 16:54:11 -07001013 .procname = "bootloader_version",
1014 .data = &bootloader_version,
1015 .maxlen = sizeof (int),
1016 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001017 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -07001018 },
1019 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001020 .procname = "io_delay_type",
1021 .data = &io_delay_type,
1022 .maxlen = sizeof(int),
1023 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001024 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001025 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026#endif
Luke Yang7a9166e2006-02-20 18:28:07 -08001027#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 .procname = "randomize_va_space",
1030 .data = &randomize_va_space,
1031 .maxlen = sizeof(int),
1032 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001033 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 },
Luke Yang7a9166e2006-02-20 18:28:07 -08001035#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -08001036#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001037 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001038 .procname = "spin_retry",
1039 .data = &spin_retry,
1040 .maxlen = sizeof (int),
1041 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001042 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001043 },
1044#endif
Len Brown673d5b42007-07-28 03:33:16 -04001045#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -08001046 {
Pavel Machekc255d842006-02-20 18:27:58 -08001047 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -07001048 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -08001049 .maxlen = sizeof (unsigned long),
1050 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001051 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -08001052 },
1053#endif
Vineet Guptab6fca722013-01-09 20:06:28 +05301054#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -08001055 {
Jes Sorensend2b176e2006-02-28 09:42:23 -08001056 .procname = "ignore-unaligned-usertrap",
1057 .data = &no_unaligned_warning,
1058 .maxlen = sizeof (int),
1059 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001060 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -08001061 },
Vineet Guptab6fca722013-01-09 20:06:28 +05301062#endif
1063#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -08001064 {
Doug Chapman88fc2412009-01-15 10:38:56 -08001065 .procname = "unaligned-dump-stack",
1066 .data = &unaligned_dump_stack,
1067 .maxlen = sizeof (int),
1068 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001069 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -08001070 },
Jes Sorensend2b176e2006-02-28 09:42:23 -08001071#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001072#ifdef CONFIG_DETECT_HUNG_TASK
1073 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001074 .procname = "hung_task_panic",
1075 .data = &sysctl_hung_task_panic,
1076 .maxlen = sizeof(int),
1077 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001078 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001079 .extra1 = &zero,
1080 .extra2 = &one,
1081 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001082 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001083 .procname = "hung_task_check_count",
1084 .data = &sysctl_hung_task_check_count,
Li Zefancd646472013-09-23 16:43:58 +08001085 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001086 .mode = 0644,
Li Zefancd646472013-09-23 16:43:58 +08001087 .proc_handler = proc_dointvec_minmax,
1088 .extra1 = &zero,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001089 },
1090 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001091 .procname = "hung_task_timeout_secs",
1092 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +01001093 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001094 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001095 .proc_handler = proc_dohung_task_timeout_secs,
Liu Hua80df2842014-04-07 15:38:57 -07001096 .extra2 = &hung_task_timeout_max,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001097 },
1098 {
Dmitry Vyukova2e51442018-08-21 21:55:52 -07001099 .procname = "hung_task_check_interval_secs",
1100 .data = &sysctl_hung_task_check_interval_secs,
1101 .maxlen = sizeof(unsigned long),
1102 .mode = 0644,
1103 .proc_handler = proc_dohung_task_timeout_secs,
1104 .extra2 = &hung_task_timeout_max,
1105 },
1106 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001107 .procname = "hung_task_warnings",
1108 .data = &sysctl_hung_task_warnings,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001109 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001110 .mode = 0644,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001111 .proc_handler = proc_dointvec_minmax,
1112 .extra1 = &neg_one,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001113 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -07001114#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001115#ifdef CONFIG_RT_MUTEXES
1116 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001117 .procname = "max_lock_depth",
1118 .data = &max_lock_depth,
1119 .maxlen = sizeof(int),
1120 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001121 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001122 },
1123#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001124 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001125 .procname = "poweroff_cmd",
1126 .data = &poweroff_cmd,
1127 .maxlen = POWEROFF_CMD_PATH_LEN,
1128 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001129 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001130 },
David Howells0b77f5b2008-04-29 01:01:32 -07001131#ifdef CONFIG_KEYS
1132 {
David Howells0b77f5b2008-04-29 01:01:32 -07001133 .procname = "keys",
1134 .mode = 0555,
1135 .child = key_sysctls,
1136 },
1137#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001138#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001139 /*
1140 * User-space scripts rely on the existence of this file
1141 * as a feature check for perf_events being enabled.
1142 *
1143 * So it's an ABI, do not remove!
1144 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001145 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001146 .procname = "perf_event_paranoid",
1147 .data = &sysctl_perf_event_paranoid,
1148 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001149 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001150 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001151 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001152 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001153 .procname = "perf_event_mlock_kb",
1154 .data = &sysctl_perf_event_mlock,
1155 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001156 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001157 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001158 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001159 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001160 .procname = "perf_event_max_sample_rate",
1161 .data = &sysctl_perf_event_sample_rate,
1162 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001163 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001164 .proc_handler = perf_proc_update_handler,
Knut Petersen723478c2013-09-25 14:29:37 +02001165 .extra1 = &one,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001166 },
Dave Hansen14c63f12013-06-21 08:51:36 -07001167 {
1168 .procname = "perf_cpu_time_max_percent",
1169 .data = &sysctl_perf_cpu_time_max_percent,
1170 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1171 .mode = 0644,
1172 .proc_handler = perf_cpu_time_max_percent_handler,
1173 .extra1 = &zero,
1174 .extra2 = &one_hundred,
1175 },
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001176 {
1177 .procname = "perf_event_max_stack",
Arnaldo Carvalho de Meloa8311002016-05-10 16:34:53 -03001178 .data = &sysctl_perf_event_max_stack,
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001179 .maxlen = sizeof(sysctl_perf_event_max_stack),
1180 .mode = 0644,
1181 .proc_handler = perf_event_max_stack_handler,
1182 .extra1 = &zero,
1183 .extra2 = &six_hundred_forty_kb,
1184 },
Arnaldo Carvalho de Meloc85b0332016-05-12 13:06:21 -03001185 {
1186 .procname = "perf_event_max_contexts_per_stack",
1187 .data = &sysctl_perf_event_max_contexts_per_stack,
1188 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
1189 .mode = 0644,
1190 .proc_handler = perf_event_max_stack_handler,
1191 .extra1 = &zero,
1192 .extra2 = &one_thousand,
1193 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001194#endif
Prarit Bhargava9e3961a2014-12-10 15:45:50 -08001195 {
1196 .procname = "panic_on_warn",
1197 .data = &panic_on_warn,
1198 .maxlen = sizeof(int),
1199 .mode = 0644,
1200 .proc_handler = proc_dointvec_minmax,
1201 .extra1 = &zero,
1202 .extra2 = &one,
1203 },
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001204#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1205 {
1206 .procname = "timer_migration",
1207 .data = &sysctl_timer_migration,
1208 .maxlen = sizeof(unsigned int),
1209 .mode = 0644,
1210 .proc_handler = timer_migration_handler,
Myungho Jungb94bf592017-04-19 15:24:50 -07001211 .extra1 = &zero,
1212 .extra2 = &one,
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001213 },
1214#endif
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001215#ifdef CONFIG_BPF_SYSCALL
1216 {
1217 .procname = "unprivileged_bpf_disabled",
1218 .data = &sysctl_unprivileged_bpf_disabled,
1219 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1220 .mode = 0644,
1221 /* only handle a transition from default "0" to "1" */
1222 .proc_handler = proc_dointvec_minmax,
1223 .extra1 = &one,
1224 .extra2 = &one,
1225 },
1226#endif
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001227#if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1228 {
1229 .procname = "panic_on_rcu_stall",
1230 .data = &sysctl_panic_on_rcu_stall,
1231 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
1232 .mode = 0644,
1233 .proc_handler = proc_dointvec_minmax,
1234 .extra1 = &zero,
1235 .extra2 = &one,
1236 },
1237#endif
Alexander Popov964c9df2018-08-17 01:17:03 +03001238#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
1239 {
1240 .procname = "stack_erasing",
1241 .data = NULL,
1242 .maxlen = sizeof(int),
1243 .mode = 0600,
1244 .proc_handler = stack_erasing_sysctl,
1245 .extra1 = &zero,
1246 .extra2 = &one,
1247 },
1248#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001249 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250};
1251
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001252static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 .procname = "overcommit_memory",
1255 .data = &sysctl_overcommit_memory,
1256 .maxlen = sizeof(sysctl_overcommit_memory),
1257 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001258 .proc_handler = proc_dointvec_minmax,
1259 .extra1 = &zero,
1260 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 },
1262 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001263 .procname = "panic_on_oom",
1264 .data = &sysctl_panic_on_oom,
1265 .maxlen = sizeof(sysctl_panic_on_oom),
1266 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001267 .proc_handler = proc_dointvec_minmax,
1268 .extra1 = &zero,
1269 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001270 },
1271 {
David Rientjesfe071d72007-10-16 23:25:56 -07001272 .procname = "oom_kill_allocating_task",
1273 .data = &sysctl_oom_kill_allocating_task,
1274 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1275 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001276 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001277 },
1278 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001279 .procname = "oom_dump_tasks",
1280 .data = &sysctl_oom_dump_tasks,
1281 .maxlen = sizeof(sysctl_oom_dump_tasks),
1282 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001283 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001284 },
1285 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 .procname = "overcommit_ratio",
1287 .data = &sysctl_overcommit_ratio,
1288 .maxlen = sizeof(sysctl_overcommit_ratio),
1289 .mode = 0644,
Jerome Marchand49f0ce52014-01-21 15:49:14 -08001290 .proc_handler = overcommit_ratio_handler,
1291 },
1292 {
1293 .procname = "overcommit_kbytes",
1294 .data = &sysctl_overcommit_kbytes,
1295 .maxlen = sizeof(sysctl_overcommit_kbytes),
1296 .mode = 0644,
1297 .proc_handler = overcommit_kbytes_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 },
1299 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 .procname = "page-cluster",
1301 .data = &page_cluster,
1302 .maxlen = sizeof(int),
1303 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001304 .proc_handler = proc_dointvec_minmax,
1305 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 },
1307 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 .procname = "dirty_background_ratio",
1309 .data = &dirty_background_ratio,
1310 .maxlen = sizeof(dirty_background_ratio),
1311 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001312 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 .extra1 = &zero,
1314 .extra2 = &one_hundred,
1315 },
1316 {
David Rientjes2da02992009-01-06 14:39:31 -08001317 .procname = "dirty_background_bytes",
1318 .data = &dirty_background_bytes,
1319 .maxlen = sizeof(dirty_background_bytes),
1320 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001321 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001322 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001323 },
1324 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 .procname = "dirty_ratio",
1326 .data = &vm_dirty_ratio,
1327 .maxlen = sizeof(vm_dirty_ratio),
1328 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001329 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .extra1 = &zero,
1331 .extra2 = &one_hundred,
1332 },
1333 {
David Rientjes2da02992009-01-06 14:39:31 -08001334 .procname = "dirty_bytes",
1335 .data = &vm_dirty_bytes,
1336 .maxlen = sizeof(vm_dirty_bytes),
1337 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001338 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001339 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001340 },
1341 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001343 .data = &dirty_writeback_interval,
1344 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001346 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 },
1348 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001350 .data = &dirty_expire_interval,
1351 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001353 .proc_handler = proc_dointvec_minmax,
1354 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 },
1356 {
Theodore Ts'o1efff912015-03-17 12:23:32 -04001357 .procname = "dirtytime_expire_seconds",
1358 .data = &dirtytime_expire_interval,
Randy Dunlap2d87b302018-04-10 16:35:14 -07001359 .maxlen = sizeof(dirtytime_expire_interval),
Theodore Ts'o1efff912015-03-17 12:23:32 -04001360 .mode = 0644,
1361 .proc_handler = dirtytime_interval_handler,
1362 .extra1 = &zero,
1363 },
1364 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 .procname = "swappiness",
1366 .data = &vm_swappiness,
1367 .maxlen = sizeof(vm_swappiness),
1368 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001369 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .extra1 = &zero,
1371 .extra2 = &one_hundred,
1372 },
1373#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001374 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001376 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 .maxlen = sizeof(unsigned long),
1378 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001379 .proc_handler = hugetlb_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001380 },
1381#ifdef CONFIG_NUMA
1382 {
1383 .procname = "nr_hugepages_mempolicy",
1384 .data = NULL,
1385 .maxlen = sizeof(unsigned long),
1386 .mode = 0644,
1387 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001388 },
Kemi Wang45180852017-11-15 17:38:22 -08001389 {
1390 .procname = "numa_stat",
1391 .data = &sysctl_vm_numa_stat,
1392 .maxlen = sizeof(int),
1393 .mode = 0644,
1394 .proc_handler = sysctl_vm_numa_stat_handler,
1395 .extra1 = &zero,
1396 .extra2 = &one,
1397 },
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .procname = "hugetlb_shm_group",
1401 .data = &sysctl_hugetlb_shm_group,
1402 .maxlen = sizeof(gid_t),
1403 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001404 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 },
Adam Litke54f9f802007-10-16 01:26:20 -07001406 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001407 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001408 .data = NULL,
1409 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001410 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001411 .proc_handler = hugetlb_overcommit_handler,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001412 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413#endif
1414 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .procname = "lowmem_reserve_ratio",
1416 .data = &sysctl_lowmem_reserve_ratio,
1417 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1418 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001419 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 },
1421 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001422 .procname = "drop_caches",
1423 .data = &sysctl_drop_caches,
1424 .maxlen = sizeof(int),
1425 .mode = 0644,
1426 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001427 .extra1 = &one,
Dave Hansen5509a5d2014-04-03 14:48:19 -07001428 .extra2 = &four,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001429 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001430#ifdef CONFIG_COMPACTION
1431 {
1432 .procname = "compact_memory",
1433 .data = &sysctl_compact_memory,
1434 .maxlen = sizeof(int),
1435 .mode = 0200,
1436 .proc_handler = sysctl_compaction_handler,
1437 },
Mel Gorman5e771902010-05-24 14:32:31 -07001438 {
1439 .procname = "extfrag_threshold",
1440 .data = &sysctl_extfrag_threshold,
1441 .maxlen = sizeof(int),
1442 .mode = 0644,
1443 .proc_handler = sysctl_extfrag_handler,
1444 .extra1 = &min_extfrag_threshold,
1445 .extra2 = &max_extfrag_threshold,
1446 },
Eric B Munson5bbe3542015-04-15 16:13:20 -07001447 {
1448 .procname = "compact_unevictable_allowed",
1449 .data = &sysctl_compact_unevictable_allowed,
1450 .maxlen = sizeof(int),
1451 .mode = 0644,
1452 .proc_handler = proc_dointvec,
1453 .extra1 = &zero,
1454 .extra2 = &one,
1455 },
Mel Gorman5e771902010-05-24 14:32:31 -07001456
Mel Gorman76ab0f52010-05-24 14:32:28 -07001457#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001458 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 .procname = "min_free_kbytes",
1460 .data = &min_free_kbytes,
1461 .maxlen = sizeof(min_free_kbytes),
1462 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001463 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 .extra1 = &zero,
1465 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001466 {
Johannes Weiner795ae7a2016-03-17 14:19:14 -07001467 .procname = "watermark_scale_factor",
1468 .data = &watermark_scale_factor,
1469 .maxlen = sizeof(watermark_scale_factor),
1470 .mode = 0644,
1471 .proc_handler = watermark_scale_factor_sysctl_handler,
1472 .extra1 = &one,
1473 .extra2 = &one_thousand,
1474 },
1475 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001476 .procname = "percpu_pagelist_fraction",
1477 .data = &percpu_pagelist_fraction,
1478 .maxlen = sizeof(percpu_pagelist_fraction),
1479 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001480 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
David Rientjes7cd2b0a2014-06-23 13:22:04 -07001481 .extra1 = &zero,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001482 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483#ifdef CONFIG_MMU
1484 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 .procname = "max_map_count",
1486 .data = &sysctl_max_map_count,
1487 .maxlen = sizeof(sysctl_max_map_count),
1488 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001489 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001490 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001492#else
1493 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001494 .procname = "nr_trim_pages",
1495 .data = &sysctl_nr_trim_pages,
1496 .maxlen = sizeof(sysctl_nr_trim_pages),
1497 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001498 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001499 .extra1 = &zero,
1500 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501#endif
1502 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .procname = "laptop_mode",
1504 .data = &laptop_mode,
1505 .maxlen = sizeof(laptop_mode),
1506 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001507 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 },
1509 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 .procname = "block_dump",
1511 .data = &block_dump,
1512 .maxlen = sizeof(block_dump),
1513 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001514 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 .extra1 = &zero,
1516 },
1517 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 .procname = "vfs_cache_pressure",
1519 .data = &sysctl_vfs_cache_pressure,
1520 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1521 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001522 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 .extra1 = &zero,
1524 },
1525#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1526 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 .procname = "legacy_va_layout",
1528 .data = &sysctl_legacy_va_layout,
1529 .maxlen = sizeof(sysctl_legacy_va_layout),
1530 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001531 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .extra1 = &zero,
1533 },
1534#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001535#ifdef CONFIG_NUMA
1536 {
Christoph Lameter17436602006-01-18 17:42:32 -08001537 .procname = "zone_reclaim_mode",
Mel Gormana5f5f912016-07-28 15:46:32 -07001538 .data = &node_reclaim_mode,
1539 .maxlen = sizeof(node_reclaim_mode),
Christoph Lameter17436602006-01-18 17:42:32 -08001540 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001541 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001542 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001543 },
Christoph Lameter96146342006-07-03 00:24:13 -07001544 {
Christoph Lameter96146342006-07-03 00:24:13 -07001545 .procname = "min_unmapped_ratio",
1546 .data = &sysctl_min_unmapped_ratio,
1547 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1548 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001549 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001550 .extra1 = &zero,
1551 .extra2 = &one_hundred,
1552 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001553 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001554 .procname = "min_slab_ratio",
1555 .data = &sysctl_min_slab_ratio,
1556 .maxlen = sizeof(sysctl_min_slab_ratio),
1557 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001558 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001559 .extra1 = &zero,
1560 .extra2 = &one_hundred,
1561 },
Christoph Lameter17436602006-01-18 17:42:32 -08001562#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001563#ifdef CONFIG_SMP
1564 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001565 .procname = "stat_interval",
1566 .data = &sysctl_stat_interval,
1567 .maxlen = sizeof(sysctl_stat_interval),
1568 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001569 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001570 },
Hugh Dickins52b6f462016-05-19 17:12:50 -07001571 {
1572 .procname = "stat_refresh",
1573 .data = NULL,
1574 .maxlen = 0,
1575 .mode = 0600,
1576 .proc_handler = vmstat_refresh,
1577 },
Christoph Lameter77461ab2007-05-09 02:35:13 -07001578#endif
David Howells6e141542009-12-15 19:27:45 +00001579#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001580 {
Eric Parised032182007-06-28 15:55:21 -04001581 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001582 .data = &dac_mmap_min_addr,
1583 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001584 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001585 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001586 },
David Howells6e141542009-12-15 19:27:45 +00001587#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001588#ifdef CONFIG_NUMA
1589 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001590 .procname = "numa_zonelist_order",
1591 .data = &numa_zonelist_order,
1592 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1593 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001594 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001595 },
1596#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001597#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001598 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001599 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001600 .procname = "vdso_enabled",
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001601#ifdef CONFIG_X86_32
1602 .data = &vdso32_enabled,
1603 .maxlen = sizeof(vdso32_enabled),
1604#else
Ingo Molnare6e54942006-06-27 02:53:50 -07001605 .data = &vdso_enabled,
1606 .maxlen = sizeof(vdso_enabled),
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001607#endif
Ingo Molnare6e54942006-06-27 02:53:50 -07001608 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001609 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001610 .extra1 = &zero,
1611 },
1612#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001613#ifdef CONFIG_HIGHMEM
1614 {
Bron Gondwana195cf4532008-02-04 22:29:20 -08001615 .procname = "highmem_is_dirtyable",
1616 .data = &vm_highmem_is_dirtyable,
1617 .maxlen = sizeof(vm_highmem_is_dirtyable),
1618 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001619 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf4532008-02-04 22:29:20 -08001620 .extra1 = &zero,
1621 .extra2 = &one,
1622 },
1623#endif
Andi Kleen6a460792009-09-16 11:50:15 +02001624#ifdef CONFIG_MEMORY_FAILURE
1625 {
Andi Kleen6a460792009-09-16 11:50:15 +02001626 .procname = "memory_failure_early_kill",
1627 .data = &sysctl_memory_failure_early_kill,
1628 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1629 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001630 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001631 .extra1 = &zero,
1632 .extra2 = &one,
1633 },
1634 {
Andi Kleen6a460792009-09-16 11:50:15 +02001635 .procname = "memory_failure_recovery",
1636 .data = &sysctl_memory_failure_recovery,
1637 .maxlen = sizeof(sysctl_memory_failure_recovery),
1638 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001639 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001640 .extra1 = &zero,
1641 .extra2 = &one,
1642 },
1643#endif
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001644 {
1645 .procname = "user_reserve_kbytes",
1646 .data = &sysctl_user_reserve_kbytes,
1647 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1648 .mode = 0644,
1649 .proc_handler = proc_doulongvec_minmax,
1650 },
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001651 {
1652 .procname = "admin_reserve_kbytes",
1653 .data = &sysctl_admin_reserve_kbytes,
1654 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1655 .mode = 0644,
1656 .proc_handler = proc_doulongvec_minmax,
1657 },
Daniel Cashmand07e2252016-01-14 15:19:53 -08001658#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1659 {
1660 .procname = "mmap_rnd_bits",
1661 .data = &mmap_rnd_bits,
1662 .maxlen = sizeof(mmap_rnd_bits),
1663 .mode = 0600,
1664 .proc_handler = proc_dointvec_minmax,
1665 .extra1 = (void *)&mmap_rnd_bits_min,
1666 .extra2 = (void *)&mmap_rnd_bits_max,
1667 },
1668#endif
1669#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1670 {
1671 .procname = "mmap_rnd_compat_bits",
1672 .data = &mmap_rnd_compat_bits,
1673 .maxlen = sizeof(mmap_rnd_compat_bits),
1674 .mode = 0600,
1675 .proc_handler = proc_dointvec_minmax,
1676 .extra1 = (void *)&mmap_rnd_compat_bits_min,
1677 .extra2 = (void *)&mmap_rnd_compat_bits_max,
1678 },
1679#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001680 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681};
1682
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001683static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 .procname = "inode-nr",
1686 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001687 .maxlen = 2*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001689 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 },
1691 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 .procname = "inode-state",
1693 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001694 .maxlen = 7*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001696 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 },
1698 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 .procname = "file-nr",
1700 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001701 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001703 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 },
1705 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 .procname = "file-max",
1707 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001708 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001710 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 },
1712 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001713 .procname = "nr_open",
1714 .data = &sysctl_nr_open,
Alexey Dobriyan9b80a182016-09-02 00:38:52 +03001715 .maxlen = sizeof(unsigned int),
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001716 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001717 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001718 .extra1 = &sysctl_nr_open_min,
1719 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001720 },
1721 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .procname = "dentry-state",
1723 .data = &dentry_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001724 .maxlen = 6*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001726 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 },
1728 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 .procname = "overflowuid",
1730 .data = &fs_overflowuid,
1731 .maxlen = sizeof(int),
1732 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001733 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .extra1 = &minolduid,
1735 .extra2 = &maxolduid,
1736 },
1737 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 .procname = "overflowgid",
1739 .data = &fs_overflowgid,
1740 .maxlen = sizeof(int),
1741 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001742 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 .extra1 = &minolduid,
1744 .extra2 = &maxolduid,
1745 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001746#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 .procname = "leases-enable",
1749 .data = &leases_enable,
1750 .maxlen = sizeof(int),
1751 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001752 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755#ifdef CONFIG_DNOTIFY
1756 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 .procname = "dir-notify-enable",
1758 .data = &dir_notify_enable,
1759 .maxlen = sizeof(int),
1760 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001761 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 },
1763#endif
1764#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001765#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 .procname = "lease-break-time",
1768 .data = &lease_break_time,
1769 .maxlen = sizeof(int),
1770 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001771 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001773#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001774#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 .procname = "aio-nr",
1777 .data = &aio_nr,
1778 .maxlen = sizeof(aio_nr),
1779 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001780 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 },
1782 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 .procname = "aio-max-nr",
1784 .data = &aio_max_nr,
1785 .maxlen = sizeof(aio_max_nr),
1786 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001787 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001789#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001790#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001791 {
Robert Love0399cb02005-07-13 12:38:18 -04001792 .procname = "inotify",
1793 .mode = 0555,
1794 .child = inotify_table,
1795 },
1796#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001797#ifdef CONFIG_EPOLL
1798 {
1799 .procname = "epoll",
1800 .mode = 0555,
1801 .child = epoll_table,
1802 },
1803#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001805 {
Kees Cook800179c2012-07-25 17:29:07 -07001806 .procname = "protected_symlinks",
1807 .data = &sysctl_protected_symlinks,
1808 .maxlen = sizeof(int),
1809 .mode = 0600,
1810 .proc_handler = proc_dointvec_minmax,
1811 .extra1 = &zero,
1812 .extra2 = &one,
1813 },
1814 {
1815 .procname = "protected_hardlinks",
1816 .data = &sysctl_protected_hardlinks,
1817 .maxlen = sizeof(int),
1818 .mode = 0600,
1819 .proc_handler = proc_dointvec_minmax,
1820 .extra1 = &zero,
1821 .extra2 = &one,
1822 },
1823 {
Salvatore Mesoraca30aba662018-08-23 17:00:35 -07001824 .procname = "protected_fifos",
1825 .data = &sysctl_protected_fifos,
1826 .maxlen = sizeof(int),
1827 .mode = 0600,
1828 .proc_handler = proc_dointvec_minmax,
1829 .extra1 = &zero,
1830 .extra2 = &two,
1831 },
1832 {
1833 .procname = "protected_regular",
1834 .data = &sysctl_protected_regular,
1835 .maxlen = sizeof(int),
1836 .mode = 0600,
1837 .proc_handler = proc_dointvec_minmax,
1838 .extra1 = &zero,
1839 .extra2 = &two,
1840 },
1841 {
Alan Coxd6e71142005-06-23 00:09:43 -07001842 .procname = "suid_dumpable",
1843 .data = &suid_dumpable,
1844 .maxlen = sizeof(int),
1845 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001846 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001847 .extra1 = &zero,
1848 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001849 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001850#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1851 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001852 .procname = "binfmt_misc",
1853 .mode = 0555,
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -05001854 .child = sysctl_mount_point,
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001855 },
1856#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001857 {
Jens Axboeff9da692010-06-03 14:54:39 +02001858 .procname = "pipe-max-size",
1859 .data = &pipe_max_size,
Joe Lawrence98159d92017-11-17 15:29:17 -08001860 .maxlen = sizeof(pipe_max_size),
Jens Axboeb492e952010-05-19 21:03:16 +02001861 .mode = 0644,
Eric Biggers319e0a22018-02-06 15:41:49 -08001862 .proc_handler = proc_dopipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001863 },
Willy Tarreau759c0112016-01-18 16:36:09 +01001864 {
1865 .procname = "pipe-user-pages-hard",
1866 .data = &pipe_user_pages_hard,
1867 .maxlen = sizeof(pipe_user_pages_hard),
1868 .mode = 0644,
1869 .proc_handler = proc_doulongvec_minmax,
1870 },
1871 {
1872 .procname = "pipe-user-pages-soft",
1873 .data = &pipe_user_pages_soft,
1874 .maxlen = sizeof(pipe_user_pages_soft),
1875 .mode = 0644,
1876 .proc_handler = proc_doulongvec_minmax,
1877 },
Eric W. Biedermand2921682016-09-28 00:27:17 -05001878 {
1879 .procname = "mount-max",
1880 .data = &sysctl_mount_max,
1881 .maxlen = sizeof(unsigned int),
1882 .mode = 0644,
1883 .proc_handler = proc_dointvec_minmax,
1884 .extra1 = &one,
1885 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001886 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887};
1888
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001889static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001890#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001891 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001892 .procname = "exception-trace",
1893 .data = &show_unhandled_signals,
1894 .maxlen = sizeof(int),
1895 .mode = 0644,
1896 .proc_handler = proc_dointvec
1897 },
1898#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001899#if defined(CONFIG_OPTPROBES)
1900 {
1901 .procname = "kprobes-optimization",
1902 .data = &sysctl_kprobes_optimization,
1903 .maxlen = sizeof(int),
1904 .mode = 0644,
1905 .proc_handler = proc_kprobes_optimization_handler,
1906 .extra1 = &zero,
1907 .extra2 = &one,
1908 },
1909#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001910 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911};
1912
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001913static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001914 { }
Robert Love0eeca282005-07-12 17:06:03 -04001915};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001917int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001918{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001919 struct ctl_table_header *hdr;
1920
1921 hdr = register_sysctl_table(sysctl_base_table);
1922 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001923 return 0;
1924}
1925
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001926#endif /* CONFIG_SYSCTL */
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928/*
1929 * /proc/sys support
1930 */
1931
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001932#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Kees Cookf8808302014-06-06 14:37:17 -07001934static int _proc_do_string(char *data, int maxlen, int write,
1935 char __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001936 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001937{
1938 size_t len;
1939 char __user *p;
1940 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001941
1942 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001943 *lenp = 0;
1944 return 0;
1945 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001946
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001947 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07001948 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
1949 /* Only continue writes not past the end of buffer. */
1950 len = strlen(data);
1951 if (len > maxlen - 1)
1952 len = maxlen - 1;
1953
1954 if (*ppos > len)
1955 return 0;
1956 len = *ppos;
1957 } else {
1958 /* Start writing from beginning of buffer. */
1959 len = 0;
1960 }
1961
Kees Cook2ca9bb42014-06-06 14:37:18 -07001962 *ppos += *lenp;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001963 p = buffer;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001964 while ((p - buffer) < *lenp && len < maxlen - 1) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001965 if (get_user(c, p++))
1966 return -EFAULT;
1967 if (c == 0 || c == '\n')
1968 break;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001969 data[len++] = c;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001970 }
Kees Cookf8808302014-06-06 14:37:17 -07001971 data[len] = 0;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001972 } else {
1973 len = strlen(data);
1974 if (len > maxlen)
1975 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001976
1977 if (*ppos > len) {
1978 *lenp = 0;
1979 return 0;
1980 }
1981
1982 data += *ppos;
1983 len -= *ppos;
1984
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001985 if (len > *lenp)
1986 len = *lenp;
1987 if (len)
Kees Cookf8808302014-06-06 14:37:17 -07001988 if (copy_to_user(buffer, data, len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001989 return -EFAULT;
1990 if (len < *lenp) {
Kees Cookf8808302014-06-06 14:37:17 -07001991 if (put_user('\n', buffer + len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001992 return -EFAULT;
1993 len++;
1994 }
1995 *lenp = len;
1996 *ppos += len;
1997 }
1998 return 0;
1999}
2000
Kees Cookf4aacea2014-06-06 14:37:19 -07002001static void warn_sysctl_write(struct ctl_table *table)
2002{
2003 pr_warn_once("%s wrote to %s when file position was not 0!\n"
2004 "This will not be supported in the future. To silence this\n"
2005 "warning, set kernel.sysctl_writes_strict = -1\n",
2006 current->comm, table->procname);
2007}
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009/**
Randy Dunlap5f733e82018-08-21 22:01:06 -07002010 * proc_first_pos_non_zero_ignore - check if first position is allowed
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002011 * @ppos: file position
2012 * @table: the sysctl table
2013 *
2014 * Returns true if the first position is non-zero and the sysctl_writes_strict
2015 * mode indicates this is not allowed for numeric input types. String proc
Randy Dunlap5f733e82018-08-21 22:01:06 -07002016 * handlers can ignore the return value.
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002017 */
2018static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
2019 struct ctl_table *table)
2020{
2021 if (!*ppos)
2022 return false;
2023
2024 switch (sysctl_writes_strict) {
2025 case SYSCTL_WRITES_STRICT:
2026 return true;
2027 case SYSCTL_WRITES_WARN:
2028 warn_sysctl_write(table);
2029 return false;
2030 default:
2031 return false;
2032 }
2033}
2034
2035/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 * proc_dostring - read a string sysctl
2037 * @table: the sysctl table
2038 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 * @buffer: the user buffer
2040 * @lenp: the size of the user buffer
2041 * @ppos: file position
2042 *
2043 * Reads/writes a string from/to the user buffer. If the kernel
2044 * buffer provided is not large enough to hold the string, the
2045 * string is truncated. The copied string is %NULL-terminated.
2046 * If the string is being read by the user process, it is copied
2047 * and a newline '\n' is added. It is truncated if the buffer is
2048 * not large enough.
2049 *
2050 * Returns 0 on success.
2051 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002052int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 void __user *buffer, size_t *lenp, loff_t *ppos)
2054{
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002055 if (write)
2056 proc_first_pos_non_zero_ignore(ppos, table);
Kees Cookf4aacea2014-06-06 14:37:19 -07002057
Kees Cookf8808302014-06-06 14:37:17 -07002058 return _proc_do_string((char *)(table->data), table->maxlen, write,
2059 (char __user *)buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060}
2061
Amerigo Wang00b7c332010-05-05 00:26:45 +00002062static size_t proc_skip_spaces(char **buf)
2063{
2064 size_t ret;
2065 char *tmp = skip_spaces(*buf);
2066 ret = tmp - *buf;
2067 *buf = tmp;
2068 return ret;
2069}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002071static void proc_skip_char(char **buf, size_t *size, const char v)
2072{
2073 while (*size) {
2074 if (**buf != v)
2075 break;
2076 (*size)--;
2077 (*buf)++;
2078 }
2079}
2080
Amerigo Wang00b7c332010-05-05 00:26:45 +00002081#define TMPBUFLEN 22
2082/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002083 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00002084 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002085 * @buf: a kernel buffer
2086 * @size: size of the kernel buffer
2087 * @val: this is where the number will be stored
2088 * @neg: set to %TRUE if number is negative
2089 * @perm_tr: a vector which contains the allowed trailers
2090 * @perm_tr_len: size of the perm_tr vector
2091 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00002092 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002093 * In case of success %0 is returned and @buf and @size are updated with
2094 * the amount of bytes read. If @tr is non-NULL and a trailing
2095 * character exists (size is non-zero after returning from this
2096 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002097 */
2098static int proc_get_long(char **buf, size_t *size,
2099 unsigned long *val, bool *neg,
2100 const char *perm_tr, unsigned perm_tr_len, char *tr)
2101{
2102 int len;
2103 char *p, tmp[TMPBUFLEN];
2104
2105 if (!*size)
2106 return -EINVAL;
2107
2108 len = *size;
2109 if (len > TMPBUFLEN - 1)
2110 len = TMPBUFLEN - 1;
2111
2112 memcpy(tmp, *buf, len);
2113
2114 tmp[len] = 0;
2115 p = tmp;
2116 if (*p == '-' && *size > 1) {
2117 *neg = true;
2118 p++;
2119 } else
2120 *neg = false;
2121 if (!isdigit(*p))
2122 return -EINVAL;
2123
2124 *val = simple_strtoul(p, &p, 0);
2125
2126 len = p - tmp;
2127
2128 /* We don't know if the next char is whitespace thus we may accept
2129 * invalid integers (e.g. 1234...a) or two integers instead of one
2130 * (e.g. 123...1). So lets not allow such large numbers. */
2131 if (len == TMPBUFLEN - 1)
2132 return -EINVAL;
2133
2134 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
2135 return -EINVAL;
2136
2137 if (tr && (len < *size))
2138 *tr = *p;
2139
2140 *buf += len;
2141 *size -= len;
2142
2143 return 0;
2144}
2145
2146/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002147 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00002148 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002149 * @buf: the user buffer
2150 * @size: the size of the user buffer
2151 * @val: the integer to be converted
2152 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00002153 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002154 * In case of success %0 is returned and @buf and @size are updated with
2155 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002156 */
2157static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
2158 bool neg)
2159{
2160 int len;
2161 char tmp[TMPBUFLEN], *p = tmp;
2162
2163 sprintf(p, "%s%lu", neg ? "-" : "", val);
2164 len = strlen(tmp);
2165 if (len > *size)
2166 len = *size;
2167 if (copy_to_user(*buf, tmp, len))
2168 return -EFAULT;
2169 *size -= len;
2170 *buf += len;
2171 return 0;
2172}
2173#undef TMPBUFLEN
2174
2175static int proc_put_char(void __user **buf, size_t *size, char c)
2176{
2177 if (*size) {
2178 char __user **buffer = (char __user **)buf;
2179 if (put_user(c, *buffer))
2180 return -EFAULT;
2181 (*size)--, (*buffer)++;
2182 *buf = *buffer;
2183 }
2184 return 0;
2185}
2186
2187static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 int *valp,
2189 int write, void *data)
2190{
2191 if (write) {
Heinrich Schuchardt230633d2015-04-16 12:48:07 -07002192 if (*negp) {
2193 if (*lvalp > (unsigned long) INT_MAX + 1)
2194 return -EINVAL;
2195 *valp = -*lvalp;
2196 } else {
2197 if (*lvalp > (unsigned long) INT_MAX)
2198 return -EINVAL;
2199 *valp = *lvalp;
2200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 } else {
2202 int val = *valp;
2203 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002204 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002205 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002207 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 *lvalp = (unsigned long)val;
2209 }
2210 }
2211 return 0;
2212}
2213
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002214static int do_proc_douintvec_conv(unsigned long *lvalp,
2215 unsigned int *valp,
2216 int write, void *data)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002217{
2218 if (write) {
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002219 if (*lvalp > UINT_MAX)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002220 return -EINVAL;
2221 *valp = *lvalp;
2222 } else {
2223 unsigned int val = *valp;
2224 *lvalp = (unsigned long)val;
2225 }
2226 return 0;
2227}
2228
Amerigo Wang00b7c332010-05-05 00:26:45 +00002229static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2230
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002231static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002232 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002233 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002234 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 int write, void *data),
2236 void *data)
2237{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002238 int *i, vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002239 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002240 char *kbuf = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Amerigo Wang00b7c332010-05-05 00:26:45 +00002242 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 *lenp = 0;
2244 return 0;
2245 }
2246
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002247 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 vleft = table->maxlen / sizeof(*i);
2249 left = *lenp;
2250
2251 if (!conv)
2252 conv = do_proc_dointvec_conv;
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002255 if (proc_first_pos_non_zero_ignore(ppos, table))
2256 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002257
Amerigo Wang00b7c332010-05-05 00:26:45 +00002258 if (left > PAGE_SIZE - 1)
2259 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002260 p = kbuf = memdup_user_nul(buffer, left);
2261 if (IS_ERR(kbuf))
2262 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002263 }
2264
2265 for (; left && vleft--; i++, first=0) {
2266 unsigned long lval;
2267 bool neg;
2268
2269 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002270 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002271
J. R. Okajima563b0462010-05-25 16:10:14 -07002272 if (!left)
2273 break;
Al Viro70f6cbb2015-12-24 00:13:10 -05002274 err = proc_get_long(&p, &left, &lval, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002275 proc_wspace_sep,
2276 sizeof(proc_wspace_sep), NULL);
2277 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002279 if (conv(&neg, &lval, i, 1, data)) {
2280 err = -EINVAL;
2281 break;
2282 }
2283 } else {
2284 if (conv(&neg, &lval, i, 0, data)) {
2285 err = -EINVAL;
2286 break;
2287 }
2288 if (!first)
2289 err = proc_put_char(&buffer, &left, '\t');
2290 if (err)
2291 break;
2292 err = proc_put_long(&buffer, &left, lval, neg);
2293 if (err)
2294 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002297
2298 if (!write && !first && left && !err)
2299 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07002300 if (write && !err && left)
Al Viro70f6cbb2015-12-24 00:13:10 -05002301 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002302 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002303 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002304 if (first)
2305 return err ? : -EINVAL;
2306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002308out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002310 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311}
2312
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002313static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002314 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002315 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002316 int write, void *data),
2317 void *data)
2318{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002319 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002320 buffer, lenp, ppos, conv, data);
2321}
2322
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002323static int do_proc_douintvec_w(unsigned int *tbl_data,
2324 struct ctl_table *table,
2325 void __user *buffer,
2326 size_t *lenp, loff_t *ppos,
2327 int (*conv)(unsigned long *lvalp,
2328 unsigned int *valp,
2329 int write, void *data),
2330 void *data)
2331{
2332 unsigned long lval;
2333 int err = 0;
2334 size_t left;
2335 bool neg;
2336 char *kbuf = NULL, *p;
2337
2338 left = *lenp;
2339
2340 if (proc_first_pos_non_zero_ignore(ppos, table))
2341 goto bail_early;
2342
2343 if (left > PAGE_SIZE - 1)
2344 left = PAGE_SIZE - 1;
2345
2346 p = kbuf = memdup_user_nul(buffer, left);
2347 if (IS_ERR(kbuf))
2348 return -EINVAL;
2349
2350 left -= proc_skip_spaces(&p);
2351 if (!left) {
2352 err = -EINVAL;
2353 goto out_free;
2354 }
2355
2356 err = proc_get_long(&p, &left, &lval, &neg,
2357 proc_wspace_sep,
2358 sizeof(proc_wspace_sep), NULL);
2359 if (err || neg) {
2360 err = -EINVAL;
2361 goto out_free;
2362 }
2363
2364 if (conv(&lval, tbl_data, 1, data)) {
2365 err = -EINVAL;
2366 goto out_free;
2367 }
2368
2369 if (!err && left)
2370 left -= proc_skip_spaces(&p);
2371
2372out_free:
2373 kfree(kbuf);
2374 if (err)
2375 return -EINVAL;
2376
2377 return 0;
2378
2379 /* This is in keeping with old __do_proc_dointvec() */
2380bail_early:
2381 *ppos += *lenp;
2382 return err;
2383}
2384
2385static int do_proc_douintvec_r(unsigned int *tbl_data, void __user *buffer,
2386 size_t *lenp, loff_t *ppos,
2387 int (*conv)(unsigned long *lvalp,
2388 unsigned int *valp,
2389 int write, void *data),
2390 void *data)
2391{
2392 unsigned long lval;
2393 int err = 0;
2394 size_t left;
2395
2396 left = *lenp;
2397
2398 if (conv(&lval, tbl_data, 0, data)) {
2399 err = -EINVAL;
2400 goto out;
2401 }
2402
2403 err = proc_put_long(&buffer, &left, lval, false);
2404 if (err || !left)
2405 goto out;
2406
2407 err = proc_put_char(&buffer, &left, '\n');
2408
2409out:
2410 *lenp -= left;
2411 *ppos += *lenp;
2412
2413 return err;
2414}
2415
2416static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
2417 int write, void __user *buffer,
2418 size_t *lenp, loff_t *ppos,
2419 int (*conv)(unsigned long *lvalp,
2420 unsigned int *valp,
2421 int write, void *data),
2422 void *data)
2423{
2424 unsigned int *i, vleft;
2425
2426 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
2427 *lenp = 0;
2428 return 0;
2429 }
2430
2431 i = (unsigned int *) tbl_data;
2432 vleft = table->maxlen / sizeof(*i);
2433
2434 /*
2435 * Arrays are not supported, keep this simple. *Do not* add
2436 * support for them.
2437 */
2438 if (vleft != 1) {
2439 *lenp = 0;
2440 return -EINVAL;
2441 }
2442
2443 if (!conv)
2444 conv = do_proc_douintvec_conv;
2445
2446 if (write)
2447 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
2448 conv, data);
2449 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
2450}
2451
2452static int do_proc_douintvec(struct ctl_table *table, int write,
2453 void __user *buffer, size_t *lenp, loff_t *ppos,
2454 int (*conv)(unsigned long *lvalp,
2455 unsigned int *valp,
2456 int write, void *data),
2457 void *data)
2458{
2459 return __do_proc_douintvec(table->data, table, write,
2460 buffer, lenp, ppos, conv, data);
2461}
2462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463/**
2464 * proc_dointvec - read a vector of integers
2465 * @table: the sysctl table
2466 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 * @buffer: the user buffer
2468 * @lenp: the size of the user buffer
2469 * @ppos: file position
2470 *
2471 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2472 * values from/to the user buffer, treated as an ASCII string.
2473 *
2474 * Returns 0 on success.
2475 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002476int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 void __user *buffer, size_t *lenp, loff_t *ppos)
2478{
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002479 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
2480}
2481
2482/**
2483 * proc_douintvec - read a vector of unsigned integers
2484 * @table: the sysctl table
2485 * @write: %TRUE if this is a write to the sysctl file
2486 * @buffer: the user buffer
2487 * @lenp: the size of the user buffer
2488 * @ppos: file position
2489 *
2490 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2491 * values from/to the user buffer, treated as an ASCII string.
2492 *
2493 * Returns 0 on success.
2494 */
2495int proc_douintvec(struct ctl_table *table, int write,
2496 void __user *buffer, size_t *lenp, loff_t *ppos)
2497{
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002498 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2499 do_proc_douintvec_conv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002502/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002503 * Taint values can only be increased
2504 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002505 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002506static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002507 void __user *buffer, size_t *lenp, loff_t *ppos)
2508{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002509 struct ctl_table t;
2510 unsigned long tmptaint = get_taint();
2511 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002512
Bastian Blank91fcd412007-04-23 14:41:14 -07002513 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002514 return -EPERM;
2515
Andi Kleen25ddbb12008-10-15 22:01:41 -07002516 t = *table;
2517 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002518 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002519 if (err < 0)
2520 return err;
2521
2522 if (write) {
2523 /*
2524 * Poor man's atomic or. Not worth adding a primitive
2525 * to everyone's atomic.h for this
2526 */
2527 int i;
2528 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2529 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302530 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002531 }
2532 }
2533
2534 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002535}
2536
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002537#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002538static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002539 void __user *buffer, size_t *lenp, loff_t *ppos)
2540{
2541 if (write && !capable(CAP_SYS_ADMIN))
2542 return -EPERM;
2543
2544 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2545}
2546#endif
2547
Waiman Long24704f32018-04-10 16:35:38 -07002548/**
2549 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
2550 * @min: pointer to minimum allowable value
2551 * @max: pointer to maximum allowable value
2552 *
2553 * The do_proc_dointvec_minmax_conv_param structure provides the
2554 * minimum and maximum values for doing range checking for those sysctl
2555 * parameters that use the proc_dointvec_minmax() handler.
2556 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557struct do_proc_dointvec_minmax_conv_param {
2558 int *min;
2559 int *max;
2560};
2561
Amerigo Wang00b7c332010-05-05 00:26:45 +00002562static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2563 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 int write, void *data)
2565{
2566 struct do_proc_dointvec_minmax_conv_param *param = data;
2567 if (write) {
2568 int val = *negp ? -*lvalp : *lvalp;
2569 if ((param->min && *param->min > val) ||
2570 (param->max && *param->max < val))
2571 return -EINVAL;
2572 *valp = val;
2573 } else {
2574 int val = *valp;
2575 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002576 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002577 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002579 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 *lvalp = (unsigned long)val;
2581 }
2582 }
2583 return 0;
2584}
2585
2586/**
2587 * proc_dointvec_minmax - read a vector of integers with min/max values
2588 * @table: the sysctl table
2589 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 * @buffer: the user buffer
2591 * @lenp: the size of the user buffer
2592 * @ppos: file position
2593 *
2594 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2595 * values from/to the user buffer, treated as an ASCII string.
2596 *
2597 * This routine will ensure the values are within the range specified by
2598 * table->extra1 (min) and table->extra2 (max).
2599 *
Waiman Long24704f32018-04-10 16:35:38 -07002600 * Returns 0 on success or -EINVAL on write when the range check fails.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002602int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 void __user *buffer, size_t *lenp, loff_t *ppos)
2604{
2605 struct do_proc_dointvec_minmax_conv_param param = {
2606 .min = (int *) table->extra1,
2607 .max = (int *) table->extra2,
2608 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002609 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 do_proc_dointvec_minmax_conv, &param);
2611}
2612
Waiman Long24704f32018-04-10 16:35:38 -07002613/**
2614 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
2615 * @min: pointer to minimum allowable value
2616 * @max: pointer to maximum allowable value
2617 *
2618 * The do_proc_douintvec_minmax_conv_param structure provides the
2619 * minimum and maximum values for doing range checking for those sysctl
2620 * parameters that use the proc_douintvec_minmax() handler.
2621 */
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002622struct do_proc_douintvec_minmax_conv_param {
2623 unsigned int *min;
2624 unsigned int *max;
2625};
2626
2627static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
2628 unsigned int *valp,
2629 int write, void *data)
2630{
2631 struct do_proc_douintvec_minmax_conv_param *param = data;
2632
2633 if (write) {
2634 unsigned int val = *lvalp;
2635
Joe Lawrencefb910c42017-11-17 15:29:28 -08002636 if (*lvalp > UINT_MAX)
2637 return -EINVAL;
2638
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002639 if ((param->min && *param->min > val) ||
2640 (param->max && *param->max < val))
2641 return -ERANGE;
2642
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002643 *valp = val;
2644 } else {
2645 unsigned int val = *valp;
2646 *lvalp = (unsigned long) val;
2647 }
2648
2649 return 0;
2650}
2651
2652/**
2653 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2654 * @table: the sysctl table
2655 * @write: %TRUE if this is a write to the sysctl file
2656 * @buffer: the user buffer
2657 * @lenp: the size of the user buffer
2658 * @ppos: file position
2659 *
2660 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2661 * values from/to the user buffer, treated as an ASCII string. Negative
2662 * strings are not allowed.
2663 *
2664 * This routine will ensure the values are within the range specified by
2665 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2666 * check for UINT_MAX to avoid having to support wrap around uses from
2667 * userspace.
2668 *
Waiman Long24704f32018-04-10 16:35:38 -07002669 * Returns 0 on success or -ERANGE on write when the range check fails.
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002670 */
2671int proc_douintvec_minmax(struct ctl_table *table, int write,
2672 void __user *buffer, size_t *lenp, loff_t *ppos)
2673{
2674 struct do_proc_douintvec_minmax_conv_param param = {
2675 .min = (unsigned int *) table->extra1,
2676 .max = (unsigned int *) table->extra2,
2677 };
2678 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2679 do_proc_douintvec_minmax_conv, &param);
2680}
2681
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002682static int do_proc_dopipe_max_size_conv(unsigned long *lvalp,
2683 unsigned int *valp,
2684 int write, void *data)
2685{
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002686 if (write) {
Joe Lawrencefb910c42017-11-17 15:29:28 -08002687 unsigned int val;
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002688
Joe Lawrencefb910c42017-11-17 15:29:28 -08002689 val = round_pipe_size(*lvalp);
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002690 if (val == 0)
2691 return -EINVAL;
2692
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002693 *valp = val;
2694 } else {
2695 unsigned int val = *valp;
2696 *lvalp = (unsigned long) val;
2697 }
2698
2699 return 0;
2700}
2701
Eric Biggers319e0a22018-02-06 15:41:49 -08002702static int proc_dopipe_max_size(struct ctl_table *table, int write,
2703 void __user *buffer, size_t *lenp, loff_t *ppos)
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002704{
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002705 return do_proc_douintvec(table, write, buffer, lenp, ppos,
Eric Biggers4c2e4be2018-02-06 15:41:45 -08002706 do_proc_dopipe_max_size_conv, NULL);
Joe Lawrence7a8d1812017-11-17 15:29:24 -08002707}
2708
Kees Cook54b50192012-07-30 14:39:18 -07002709static void validate_coredump_safety(void)
2710{
Alex Kelly046d6622012-10-04 17:15:23 -07002711#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002712 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002713 core_pattern[0] != '/' && core_pattern[0] != '|') {
Alexey Dobriyan760c6a92016-12-14 15:04:14 -08002714 printk(KERN_WARNING
2715"Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2716"Pipe handler or fully qualified core dump path required.\n"
2717"Set kernel.core_pattern before fs.suid_dumpable.\n"
2718 );
Kees Cook54b50192012-07-30 14:39:18 -07002719 }
Alex Kelly046d6622012-10-04 17:15:23 -07002720#endif
Kees Cook54b50192012-07-30 14:39:18 -07002721}
2722
2723static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2724 void __user *buffer, size_t *lenp, loff_t *ppos)
2725{
2726 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2727 if (!error)
2728 validate_coredump_safety();
2729 return error;
2730}
2731
Alex Kelly046d6622012-10-04 17:15:23 -07002732#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002733static int proc_dostring_coredump(struct ctl_table *table, int write,
2734 void __user *buffer, size_t *lenp, loff_t *ppos)
2735{
2736 int error = proc_dostring(table, write, buffer, lenp, ppos);
2737 if (!error)
2738 validate_coredump_safety();
2739 return error;
2740}
Alex Kelly046d6622012-10-04 17:15:23 -07002741#endif
Kees Cook54b50192012-07-30 14:39:18 -07002742
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002743static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 void __user *buffer,
2745 size_t *lenp, loff_t *ppos,
2746 unsigned long convmul,
2747 unsigned long convdiv)
2748{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002749 unsigned long *i, *min, *max;
2750 int vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002751 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002752 char *kbuf = NULL, *p;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002753
2754 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 *lenp = 0;
2756 return 0;
2757 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002758
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002759 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 min = (unsigned long *) table->extra1;
2761 max = (unsigned long *) table->extra2;
2762 vleft = table->maxlen / sizeof(unsigned long);
2763 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002764
2765 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002766 if (proc_first_pos_non_zero_ignore(ppos, table))
2767 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002768
Amerigo Wang00b7c332010-05-05 00:26:45 +00002769 if (left > PAGE_SIZE - 1)
2770 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002771 p = kbuf = memdup_user_nul(buffer, left);
2772 if (IS_ERR(kbuf))
2773 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002774 }
2775
Eric Dumazet27b3d802010-10-07 12:59:29 -07002776 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002777 unsigned long val;
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002780 bool neg;
2781
Al Viro70f6cbb2015-12-24 00:13:10 -05002782 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002783
Al Viro70f6cbb2015-12-24 00:13:10 -05002784 err = proc_get_long(&p, &left, &val, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002785 proc_wspace_sep,
2786 sizeof(proc_wspace_sep), NULL);
2787 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 break;
2789 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 continue;
Eric Dumazetff9f8a72017-01-25 18:20:55 -08002791 val = convmul * val / convdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 if ((min && val < *min) || (max && val > *max))
2793 continue;
2794 *i = val;
2795 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002796 val = convdiv * (*i) / convmul;
Chen Gang78338192013-11-12 15:11:21 -08002797 if (!first) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002798 err = proc_put_char(&buffer, &left, '\t');
Chen Gang78338192013-11-12 15:11:21 -08002799 if (err)
2800 break;
2801 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002802 err = proc_put_long(&buffer, &left, val, false);
2803 if (err)
2804 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 }
2806 }
2807
Amerigo Wang00b7c332010-05-05 00:26:45 +00002808 if (!write && !first && left && !err)
2809 err = proc_put_char(&buffer, &left, '\n');
2810 if (write && !err)
Al Viro70f6cbb2015-12-24 00:13:10 -05002811 left -= proc_skip_spaces(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002813 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002814 if (first)
2815 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002818out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002820 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002823static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002824 void __user *buffer,
2825 size_t *lenp, loff_t *ppos,
2826 unsigned long convmul,
2827 unsigned long convdiv)
2828{
2829 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002830 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002831}
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833/**
2834 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2835 * @table: the sysctl table
2836 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 * @buffer: the user buffer
2838 * @lenp: the size of the user buffer
2839 * @ppos: file position
2840 *
2841 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2842 * values from/to the user buffer, treated as an ASCII string.
2843 *
2844 * This routine will ensure the values are within the range specified by
2845 * table->extra1 (min) and table->extra2 (max).
2846 *
2847 * Returns 0 on success.
2848 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002849int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 void __user *buffer, size_t *lenp, loff_t *ppos)
2851{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002852 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853}
2854
2855/**
2856 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2857 * @table: the sysctl table
2858 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 * @buffer: the user buffer
2860 * @lenp: the size of the user buffer
2861 * @ppos: file position
2862 *
2863 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2864 * values from/to the user buffer, treated as an ASCII string. The values
2865 * are treated as milliseconds, and converted to jiffies when they are stored.
2866 *
2867 * This routine will ensure the values are within the range specified by
2868 * table->extra1 (min) and table->extra2 (max).
2869 *
2870 * Returns 0 on success.
2871 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002872int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 void __user *buffer,
2874 size_t *lenp, loff_t *ppos)
2875{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002876 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 lenp, ppos, HZ, 1000l);
2878}
2879
2880
Amerigo Wang00b7c332010-05-05 00:26:45 +00002881static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 int *valp,
2883 int write, void *data)
2884{
2885 if (write) {
Gao Feng63259452017-05-08 15:54:58 -07002886 if (*lvalp > INT_MAX / HZ)
Bart Samwelcba9f332006-03-24 03:15:50 -08002887 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2889 } else {
2890 int val = *valp;
2891 unsigned long lval;
2892 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002893 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002894 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002896 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 lval = (unsigned long)val;
2898 }
2899 *lvalp = lval / HZ;
2900 }
2901 return 0;
2902}
2903
Amerigo Wang00b7c332010-05-05 00:26:45 +00002904static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 int *valp,
2906 int write, void *data)
2907{
2908 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002909 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2910 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2912 } else {
2913 int val = *valp;
2914 unsigned long lval;
2915 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002916 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002917 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002919 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 lval = (unsigned long)val;
2921 }
2922 *lvalp = jiffies_to_clock_t(lval);
2923 }
2924 return 0;
2925}
2926
Amerigo Wang00b7c332010-05-05 00:26:45 +00002927static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 int *valp,
2929 int write, void *data)
2930{
2931 if (write) {
Francesco Fuscod738ce82013-07-24 10:39:07 +02002932 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2933
2934 if (jif > INT_MAX)
2935 return 1;
2936 *valp = (int)jif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 } else {
2938 int val = *valp;
2939 unsigned long lval;
2940 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002941 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002942 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002944 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 lval = (unsigned long)val;
2946 }
2947 *lvalp = jiffies_to_msecs(lval);
2948 }
2949 return 0;
2950}
2951
2952/**
2953 * proc_dointvec_jiffies - read a vector of integers as seconds
2954 * @table: the sysctl table
2955 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 * @buffer: the user buffer
2957 * @lenp: the size of the user buffer
2958 * @ppos: file position
2959 *
2960 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2961 * values from/to the user buffer, treated as an ASCII string.
2962 * The values read are assumed to be in seconds, and are converted into
2963 * jiffies.
2964 *
2965 * Returns 0 on success.
2966 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002967int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 void __user *buffer, size_t *lenp, loff_t *ppos)
2969{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002970 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 do_proc_dointvec_jiffies_conv,NULL);
2972}
2973
2974/**
2975 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2976 * @table: the sysctl table
2977 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 * @buffer: the user buffer
2979 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002980 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 *
2982 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2983 * values from/to the user buffer, treated as an ASCII string.
2984 * The values read are assumed to be in 1/USER_HZ seconds, and
2985 * are converted into jiffies.
2986 *
2987 * Returns 0 on success.
2988 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002989int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 void __user *buffer, size_t *lenp, loff_t *ppos)
2991{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002992 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 do_proc_dointvec_userhz_jiffies_conv,NULL);
2994}
2995
2996/**
2997 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2998 * @table: the sysctl table
2999 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 * @buffer: the user buffer
3001 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07003002 * @ppos: file position
3003 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 *
3005 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3006 * values from/to the user buffer, treated as an ASCII string.
3007 * The values read are assumed to be in 1/1000 seconds, and
3008 * are converted into jiffies.
3009 *
3010 * Returns 0 on success.
3011 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003012int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 void __user *buffer, size_t *lenp, loff_t *ppos)
3014{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003015 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 do_proc_dointvec_ms_jiffies_conv, NULL);
3017}
3018
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003019static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003020 void __user *buffer, size_t *lenp, loff_t *ppos)
3021{
3022 struct pid *new_pid;
3023 pid_t tmp;
3024 int r;
3025
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08003026 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003027
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003028 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07003029 lenp, ppos, NULL, NULL);
3030 if (r || !write)
3031 return r;
3032
3033 new_pid = find_get_pid(tmp);
3034 if (!new_pid)
3035 return -ESRCH;
3036
3037 put_pid(xchg(&cad_pid, new_pid));
3038 return 0;
3039}
3040
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003041/**
3042 * proc_do_large_bitmap - read/write from/to a large bitmap
3043 * @table: the sysctl table
3044 * @write: %TRUE if this is a write to the sysctl file
3045 * @buffer: the user buffer
3046 * @lenp: the size of the user buffer
3047 * @ppos: file position
3048 *
3049 * The bitmap is stored at table->data and the bitmap length (in bits)
3050 * in table->maxlen.
3051 *
3052 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
3053 * large bitmaps may be represented in a compact manner. Writing into
3054 * the file will clear the bitmap then update it with the given input.
3055 *
3056 * Returns 0 on success.
3057 */
3058int proc_do_large_bitmap(struct ctl_table *table, int write,
3059 void __user *buffer, size_t *lenp, loff_t *ppos)
3060{
3061 int err = 0;
3062 bool first = 1;
3063 size_t left = *lenp;
3064 unsigned long bitmap_len = table->maxlen;
WANG Cong122ff242014-05-12 16:04:53 -07003065 unsigned long *bitmap = *(unsigned long **) table->data;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003066 unsigned long *tmp_bitmap = NULL;
3067 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
3068
WANG Cong122ff242014-05-12 16:04:53 -07003069 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003070 *lenp = 0;
3071 return 0;
3072 }
3073
3074 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003075 char *kbuf, *p;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003076
3077 if (left > PAGE_SIZE - 1)
3078 left = PAGE_SIZE - 1;
3079
Al Viro70f6cbb2015-12-24 00:13:10 -05003080 p = kbuf = memdup_user_nul(buffer, left);
3081 if (IS_ERR(kbuf))
3082 return PTR_ERR(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003083
Kees Cook6396bb22018-06-12 14:03:40 -07003084 tmp_bitmap = kcalloc(BITS_TO_LONGS(bitmap_len),
3085 sizeof(unsigned long),
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003086 GFP_KERNEL);
3087 if (!tmp_bitmap) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003088 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003089 return -ENOMEM;
3090 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003091 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003092 while (!err && left) {
3093 unsigned long val_a, val_b;
3094 bool neg;
3095
Al Viro70f6cbb2015-12-24 00:13:10 -05003096 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003097 sizeof(tr_a), &c);
3098 if (err)
3099 break;
3100 if (val_a >= bitmap_len || neg) {
3101 err = -EINVAL;
3102 break;
3103 }
3104
3105 val_b = val_a;
3106 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003107 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003108 left--;
3109 }
3110
3111 if (c == '-') {
Al Viro70f6cbb2015-12-24 00:13:10 -05003112 err = proc_get_long(&p, &left, &val_b,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003113 &neg, tr_b, sizeof(tr_b),
3114 &c);
3115 if (err)
3116 break;
3117 if (val_b >= bitmap_len || neg ||
3118 val_a > val_b) {
3119 err = -EINVAL;
3120 break;
3121 }
3122 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003123 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003124 left--;
3125 }
3126 }
3127
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003128 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003129 first = 0;
Al Viro70f6cbb2015-12-24 00:13:10 -05003130 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003131 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003132 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003133 } else {
3134 unsigned long bit_a, bit_b = 0;
3135
3136 while (left) {
3137 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
3138 if (bit_a >= bitmap_len)
3139 break;
3140 bit_b = find_next_zero_bit(bitmap, bitmap_len,
3141 bit_a + 1) - 1;
3142
3143 if (!first) {
3144 err = proc_put_char(&buffer, &left, ',');
3145 if (err)
3146 break;
3147 }
3148 err = proc_put_long(&buffer, &left, bit_a, false);
3149 if (err)
3150 break;
3151 if (bit_a != bit_b) {
3152 err = proc_put_char(&buffer, &left, '-');
3153 if (err)
3154 break;
3155 err = proc_put_long(&buffer, &left, bit_b, false);
3156 if (err)
3157 break;
3158 }
3159
3160 first = 0; bit_b++;
3161 }
3162 if (!err)
3163 err = proc_put_char(&buffer, &left, '\n');
3164 }
3165
3166 if (!err) {
3167 if (write) {
3168 if (*ppos)
3169 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
3170 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003171 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003172 }
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003173 *lenp -= left;
3174 *ppos += *lenp;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003175 }
Ola N. Kaldestadf9eb2fd2017-11-17 15:30:26 -08003176
3177 kfree(tmp_bitmap);
3178 return err;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003179}
3180
Jovi Zhang55610502011-01-12 17:00:45 -08003181#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003183int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 void __user *buffer, size_t *lenp, loff_t *ppos)
3185{
3186 return -ENOSYS;
3187}
3188
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003189int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 void __user *buffer, size_t *lenp, loff_t *ppos)
3191{
3192 return -ENOSYS;
3193}
3194
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003195int proc_douintvec(struct ctl_table *table, int write,
3196 void __user *buffer, size_t *lenp, loff_t *ppos)
3197{
3198 return -ENOSYS;
3199}
3200
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003201int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 void __user *buffer, size_t *lenp, loff_t *ppos)
3203{
3204 return -ENOSYS;
3205}
3206
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003207int proc_douintvec_minmax(struct ctl_table *table, int write,
3208 void __user *buffer, size_t *lenp, loff_t *ppos)
3209{
3210 return -ENOSYS;
3211}
3212
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003213int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 void __user *buffer, size_t *lenp, loff_t *ppos)
3215{
3216 return -ENOSYS;
3217}
3218
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003219int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 void __user *buffer, size_t *lenp, loff_t *ppos)
3221{
3222 return -ENOSYS;
3223}
3224
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003225int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 void __user *buffer, size_t *lenp, loff_t *ppos)
3227{
3228 return -ENOSYS;
3229}
3230
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003231int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 void __user *buffer, size_t *lenp, loff_t *ppos)
3233{
3234 return -ENOSYS;
3235}
3236
Eric W. Biedermand8217f02007-10-18 03:05:22 -07003237int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 void __user *buffer,
3239 size_t *lenp, loff_t *ppos)
3240{
3241 return -ENOSYS;
3242}
3243
3244
Jovi Zhang55610502011-01-12 17:00:45 -08003245#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247/*
3248 * No sense putting this after each symbol definition, twice,
3249 * exception granted :-)
3250 */
3251EXPORT_SYMBOL(proc_dointvec);
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003252EXPORT_SYMBOL(proc_douintvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253EXPORT_SYMBOL(proc_dointvec_jiffies);
3254EXPORT_SYMBOL(proc_dointvec_minmax);
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003255EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3257EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3258EXPORT_SYMBOL(proc_dostring);
3259EXPORT_SYMBOL(proc_doulongvec_minmax);
3260EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);