blob: 423554ad361020b389b8f9fc296884ae64f74493 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
12 * Horn.
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
16 * Wendling.
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080022#include <linux/aio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mm.h>
24#include <linux/swap.h>
25#include <linux/slab.h>
26#include <linux/sysctl.h>
Akinobu Mita5a04cca2012-03-28 14:42:50 -070027#include <linux/bitmap.h>
Dave Youngd33ed522010-03-10 15:23:59 -080028#include <linux/signal.h>
Dan Rosenberg455cd5a2011-01-12 16:59:41 -080029#include <linux/printk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/proc_fs.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070031#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/ctype.h>
Vegard Nossumdfec0722008-04-04 00:51:41 +020033#include <linux/kmemcheck.h>
Steven Rostedtfd4b6162012-07-30 14:42:48 -070034#include <linux/kmemleak.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070035#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/init.h>
37#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010038#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030039#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/sysrq.h>
41#include <linux/highuid.h>
42#include <linux/writeback.h>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020043#include <linux/ratelimit.h>
Mel Gorman76ab0f52010-05-24 14:32:28 -070044#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070047#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/times.h>
49#include <linux/limits.h>
50#include <linux/dcache.h>
Alexey Dobriyan6e006702010-01-20 22:27:56 +020051#include <linux/dnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070053#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080054#include <linux/nfs_fs.h>
55#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070056#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020057#include <linux/ftrace.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020058#include <linux/perf_event.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050059#include <linux/kprobes.h>
Jens Axboeb492e952010-05-19 21:03:16 +020060#include <linux/pipe_fs_i.h>
David Rientjes8e4228e2010-08-09 17:18:56 -070061#include <linux/oom.h>
Eric Paris17f60a72011-04-01 17:07:50 -040062#include <linux/kmod.h>
Dan Ballard73efc032011-10-31 17:11:20 -070063#include <linux/capability.h>
Al Viro40401532012-02-13 03:58:52 +000064#include <linux/binfmts.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -060065#include <linux/sched/sysctl.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010066#include <linux/sched/coredump.h>
Kees Cook79847542014-01-23 15:55:59 -080067#include <linux/kexec.h>
Alexei Starovoitov1be7f752015-10-07 22:23:21 -070068#include <linux/bpf.h>
Eric W. Biedermand2921682016-09-28 00:27:17 -050069#include <linux/mount.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
Andi Kleen29cbc782006-09-30 01:47:55 +020094
Don Zickus58687ac2010-05-07 17:11:44 -040095#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050096#include <linux/nmi.h>
97#endif
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#if defined(CONFIG_SYSCTL)
100
101/* External variables not in a header file. */
Alan Coxd6e71142005-06-23 00:09:43 -0700102extern int suid_dumpable;
Alex Kelly046d6622012-10-04 17:15:23 -0700103#ifdef CONFIG_COREDUMP
104extern int core_uses_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -0700106extern unsigned int core_pipe_limit;
Alex Kelly046d6622012-10-04 17:15:23 -0700107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108extern int pid_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109extern int pid_max_min, pid_max_max;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800110extern int percpu_pagelist_fraction;
Arjan van de Ven97455122008-01-25 21:08:34 +0100111extern int latencytop_enabled;
Alexey Dobriyan9b80a182016-09-02 00:38:52 +0300112extern unsigned int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000113#ifndef CONFIG_MMU
114extern int sysctl_nr_trim_pages;
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700117/* Constants used for minimum and maximum */
Don Zickus2508ce12010-05-07 17:11:46 -0400118#ifdef CONFIG_LOCKUP_DETECTOR
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700119static int sixty = 60;
120#endif
121
Aaron Tomlin270750db2014-01-20 17:34:13 +0000122static int __maybe_unused neg_one = -1;
123
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700124static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700125static int __maybe_unused one = 1;
126static int __maybe_unused two = 2;
Dave Hansen5509a5d2014-04-03 14:48:19 -0700127static int __maybe_unused four = 4;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800128static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700129static int one_hundred = 100;
Johannes Weiner795ae7a2016-03-17 14:19:14 -0700130static int one_thousand = 1000;
Dave Youngaf913222009-09-22 16:43:33 -0700131#ifdef CONFIG_PRINTK
132static int ten_thousand = 10000;
133#endif
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -0300134#ifdef CONFIG_PERF_EVENTS
135static int six_hundred_forty_kb = 640 * 1024;
136#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700137
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700138/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
139static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
142static int maxolduid = 65535;
143static int minolduid;
144
145static int ngroups_max = NGROUPS_MAX;
Dan Ballard73efc032011-10-31 17:11:20 -0700146static const int cap_last_cap = CAP_LAST_CAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Liu Hua80df2842014-04-07 15:38:57 -0700148/*this is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs */
149#ifdef CONFIG_DETECT_HUNG_TASK
150static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
151#endif
152
Dave Youngd14f1722010-02-25 20:28:57 -0500153#ifdef CONFIG_INOTIFY_USER
154#include <linux/inotify.h>
155#endif
David S. Miller72c57ed2008-09-11 23:29:54 -0700156#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif
158
159#ifdef __hppa__
160extern int pwrsw_enabled;
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530161#endif
162
163#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164extern int unaligned_enabled;
165#endif
166
Jes Sorensend2b176e2006-02-28 09:42:23 -0800167#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -0800168extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800169#endif
170
Vineet Guptab6fca722013-01-09 20:06:28 +0530171#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
172extern int no_unaligned_warning;
173#endif
174
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700175#ifdef CONFIG_PROC_SYSCTL
Kees Cookf4aacea2014-06-06 14:37:19 -0700176
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700177/**
178 * enum sysctl_writes_mode - supported sysctl write modes
179 *
180 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
181 * to be written, and multiple writes on the same sysctl file descriptor
182 * will rewrite the sysctl value, regardless of file position. No warning
183 * is issued when the initial position is not 0.
184 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
185 * not 0.
186 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
187 * file position 0 and the value must be fully contained in the buffer
188 * sent to the write syscall. If dealing with strings respect the file
189 * position, but restrict this to the max length of the buffer, anything
190 * passed the max lenght will be ignored. Multiple writes will append
191 * to the buffer.
192 *
193 * These write modes control how current file position affects the behavior of
194 * updating sysctl values through the proc interface on each write.
195 */
196enum sysctl_writes_mode {
197 SYSCTL_WRITES_LEGACY = -1,
198 SYSCTL_WRITES_WARN = 0,
199 SYSCTL_WRITES_STRICT = 1,
200};
Kees Cookf4aacea2014-06-06 14:37:19 -0700201
Luis R. Rodrigueza19ac332017-07-12 14:33:30 -0700202static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
Kees Cookf4aacea2014-06-06 14:37:19 -0700203
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700204static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700205 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700206static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800207 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700208#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700209
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700210#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -0700211static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -0700212 void __user *buffer, size_t *lenp, loff_t *ppos);
213#endif
214
Kees Cook54b50192012-07-30 14:39:18 -0700215static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
216 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700217#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -0700218static int proc_dostring_coredump(struct ctl_table *table, int write,
219 void __user *buffer, size_t *lenp, loff_t *ppos);
Alex Kelly046d6622012-10-04 17:15:23 -0700220#endif
Kees Cook54b50192012-07-30 14:39:18 -0700221
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700222#ifdef CONFIG_MAGIC_SYSRQ
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -0800223/* Note: sysrq code uses it's own private copy */
Ben Hutchings8eaede42013-10-07 01:05:46 +0100224static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700225
Joe Perches6f8fd1d2014-06-06 14:38:08 -0700226static int sysrq_sysctl_handler(struct ctl_table *table, int write,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700227 void __user *buffer, size_t *lenp,
228 loff_t *ppos)
229{
230 int error;
231
232 error = proc_dointvec(table, write, buffer, lenp, ppos);
233 if (error)
234 return error;
235
236 if (write)
237 sysrq_toggle_support(__sysrq_enabled);
238
239 return 0;
240}
241
242#endif
243
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700244static struct ctl_table kern_table[];
245static struct ctl_table vm_table[];
246static struct ctl_table fs_table[];
247static struct ctl_table debug_table[];
248static struct ctl_table dev_table[];
249extern struct ctl_table random_table[];
Davide Libenzi7ef99642008-12-01 13:13:55 -0800250#ifdef CONFIG_EPOLL
251extern struct ctl_table epoll_table[];
252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
255int sysctl_legacy_va_layout;
256#endif
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* The default sysctl tables: */
259
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -0800260static struct ctl_table sysctl_base_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .procname = "kernel",
263 .mode = 0555,
264 .child = kern_table,
265 },
266 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 .procname = "vm",
268 .mode = 0555,
269 .child = vm_table,
270 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 .procname = "fs",
273 .mode = 0555,
274 .child = fs_table,
275 },
276 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .procname = "debug",
278 .mode = 0555,
279 .child = debug_table,
280 },
281 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .procname = "dev",
283 .mode = 0555,
284 .child = dev_table,
285 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700286 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Ingo Molnar77e54a12007-07-09 18:52:00 +0200289#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100290static int min_sched_granularity_ns = 100000; /* 100 usecs */
291static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
292static int min_wakeup_granularity_ns; /* 0 usecs */
293static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200294#ifdef CONFIG_SMP
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100295static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
296static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200297#endif /* CONFIG_SMP */
298#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200299
Mel Gorman5e771902010-05-24 14:32:31 -0700300#ifdef CONFIG_COMPACTION
301static int min_extfrag_threshold;
302static int max_extfrag_threshold = 1000;
303#endif
304
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700305static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200306 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200307 .procname = "sched_child_runs_first",
308 .data = &sysctl_sched_child_runs_first,
309 .maxlen = sizeof(unsigned int),
310 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800311 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200312 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200313#ifdef CONFIG_SCHED_DEBUG
314 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100315 .procname = "sched_min_granularity_ns",
316 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200317 .maxlen = sizeof(unsigned int),
318 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800319 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100320 .extra1 = &min_sched_granularity_ns,
321 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200322 },
323 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200324 .procname = "sched_latency_ns",
325 .data = &sysctl_sched_latency,
326 .maxlen = sizeof(unsigned int),
327 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800328 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200329 .extra1 = &min_sched_granularity_ns,
330 .extra2 = &max_sched_granularity_ns,
331 },
332 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200333 .procname = "sched_wakeup_granularity_ns",
334 .data = &sysctl_sched_wakeup_granularity,
335 .maxlen = sizeof(unsigned int),
336 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800337 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200338 .extra1 = &min_wakeup_granularity_ns,
339 .extra2 = &max_wakeup_granularity_ns,
340 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200341#ifdef CONFIG_SMP
Ingo Molnar77e54a12007-07-09 18:52:00 +0200342 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100343 .procname = "sched_tunable_scaling",
344 .data = &sysctl_sched_tunable_scaling,
345 .maxlen = sizeof(enum sched_tunable_scaling),
346 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800347 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100348 .extra1 = &min_sched_tunable_scaling,
349 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200350 },
351 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900352 .procname = "sched_migration_cost_ns",
Ingo Molnarda84d962007-10-15 17:00:18 +0200353 .data = &sysctl_sched_migration_cost,
354 .maxlen = sizeof(unsigned int),
355 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800356 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200357 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100358 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100359 .procname = "sched_nr_migrate",
360 .data = &sysctl_sched_nr_migrate,
361 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100362 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800363 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100364 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530365 {
Namhyung Kimd00535d2012-08-16 11:15:30 +0900366 .procname = "sched_time_avg_ms",
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200367 .data = &sysctl_sched_time_avg,
368 .maxlen = sizeof(unsigned int),
369 .mode = 0644,
Ethan Zhao5ccba442017-09-04 13:59:34 +0800370 .proc_handler = proc_dointvec_minmax,
371 .extra1 = &one,
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200372 },
Mel Gormancb251762016-02-05 09:08:36 +0000373#ifdef CONFIG_SCHEDSTATS
374 {
375 .procname = "sched_schedstats",
376 .data = NULL,
377 .maxlen = sizeof(unsigned int),
378 .mode = 0644,
379 .proc_handler = sysctl_schedstats,
380 .extra1 = &zero,
381 .extra2 = &one,
382 },
383#endif /* CONFIG_SCHEDSTATS */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200384#endif /* CONFIG_SMP */
385#ifdef CONFIG_NUMA_BALANCING
386 {
Peter Zijlstra4b96a292012-10-25 14:16:47 +0200387 .procname = "numa_balancing_scan_delay_ms",
388 .data = &sysctl_numa_balancing_scan_delay,
389 .maxlen = sizeof(unsigned int),
390 .mode = 0644,
391 .proc_handler = proc_dointvec,
392 },
393 {
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200394 .procname = "numa_balancing_scan_period_min_ms",
395 .data = &sysctl_numa_balancing_scan_period_min,
396 .maxlen = sizeof(unsigned int),
397 .mode = 0644,
398 .proc_handler = proc_dointvec,
399 },
400 {
401 .procname = "numa_balancing_scan_period_max_ms",
402 .data = &sysctl_numa_balancing_scan_period_max,
403 .maxlen = sizeof(unsigned int),
404 .mode = 0644,
405 .proc_handler = proc_dointvec,
406 },
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200407 {
408 .procname = "numa_balancing_scan_size_mb",
409 .data = &sysctl_numa_balancing_scan_size,
410 .maxlen = sizeof(unsigned int),
411 .mode = 0644,
Kirill Tkhai64192652014-10-16 14:39:37 +0400412 .proc_handler = proc_dointvec_minmax,
413 .extra1 = &one,
Peter Zijlstra6e5fb222012-10-25 14:16:45 +0200414 },
Mel Gorman3a7053b2013-10-07 11:29:00 +0100415 {
Andi Kleen54a43d52014-01-23 15:53:13 -0800416 .procname = "numa_balancing",
417 .data = NULL, /* filled in by handler */
418 .maxlen = sizeof(unsigned int),
419 .mode = 0644,
420 .proc_handler = sysctl_numa_balancing,
421 .extra1 = &zero,
422 .extra2 = &one,
423 },
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200424#endif /* CONFIG_NUMA_BALANCING */
425#endif /* CONFIG_SCHED_DEBUG */
Ingo Molnar1799e352007-09-19 23:34:46 +0200426 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100427 .procname = "sched_rt_period_us",
428 .data = &sysctl_sched_rt_period,
429 .maxlen = sizeof(unsigned int),
430 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800431 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100432 },
433 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100434 .procname = "sched_rt_runtime_us",
435 .data = &sysctl_sched_rt_runtime,
436 .maxlen = sizeof(int),
437 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800438 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100439 },
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600440 {
441 .procname = "sched_rr_timeslice_ms",
Shile Zhang975e1552017-01-28 22:00:49 +0800442 .data = &sysctl_sched_rr_timeslice,
Clark Williamsce0dbbb2013-02-07 09:47:04 -0600443 .maxlen = sizeof(int),
444 .mode = 0644,
445 .proc_handler = sched_rr_handler,
446 },
Mike Galbraith5091faa2010-11-30 14:18:03 +0100447#ifdef CONFIG_SCHED_AUTOGROUP
448 {
449 .procname = "sched_autogroup_enabled",
450 .data = &sysctl_sched_autogroup_enabled,
451 .maxlen = sizeof(unsigned int),
452 .mode = 0644,
Yong Zhang1747b212011-02-20 15:08:12 +0800453 .proc_handler = proc_dointvec_minmax,
Mike Galbraith5091faa2010-11-30 14:18:03 +0100454 .extra1 = &zero,
455 .extra2 = &one,
456 },
457#endif
Paul Turnerec12cb72011-07-21 09:43:30 -0700458#ifdef CONFIG_CFS_BANDWIDTH
459 {
460 .procname = "sched_cfs_bandwidth_slice_us",
461 .data = &sysctl_sched_cfs_bandwidth_slice,
462 .maxlen = sizeof(unsigned int),
463 .mode = 0644,
464 .proc_handler = proc_dointvec_minmax,
465 .extra1 = &one,
466 },
467#endif
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700468#ifdef CONFIG_PROVE_LOCKING
469 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700470 .procname = "prove_locking",
471 .data = &prove_locking,
472 .maxlen = sizeof(int),
473 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800474 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700475 },
476#endif
477#ifdef CONFIG_LOCK_STAT
478 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700479 .procname = "lock_stat",
480 .data = &lock_stat,
481 .maxlen = sizeof(int),
482 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800483 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700484 },
485#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200486 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 .procname = "panic",
488 .data = &panic_timeout,
489 .maxlen = sizeof(int),
490 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800491 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 },
Alex Kelly046d6622012-10-04 17:15:23 -0700493#ifdef CONFIG_COREDUMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .procname = "core_uses_pid",
496 .data = &core_uses_pid,
497 .maxlen = sizeof(int),
498 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800499 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 },
501 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .procname = "core_pattern",
503 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700504 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -0700506 .proc_handler = proc_dostring_coredump,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 },
Neil Hormana2939802009-09-23 15:56:56 -0700508 {
Neil Hormana2939802009-09-23 15:56:56 -0700509 .procname = "core_pipe_limit",
510 .data = &core_pipe_limit,
511 .maxlen = sizeof(unsigned int),
512 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800513 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700514 },
Alex Kelly046d6622012-10-04 17:15:23 -0700515#endif
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800516#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700519 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800520 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800521 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 },
Kees Cookf4aacea2014-06-06 14:37:19 -0700523 {
524 .procname = "sysctl_writes_strict",
525 .data = &sysctl_writes_strict,
526 .maxlen = sizeof(int),
527 .mode = 0644,
528 .proc_handler = proc_dointvec_minmax,
529 .extra1 = &neg_one,
530 .extra2 = &one,
531 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800532#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100533#ifdef CONFIG_LATENCYTOP
534 {
535 .procname = "latencytop",
536 .data = &latencytop_enabled,
537 .maxlen = sizeof(int),
538 .mode = 0644,
Mel Gormancb251762016-02-05 09:08:36 +0000539 .proc_handler = sysctl_latencytop,
Arjan van de Ven97455122008-01-25 21:08:34 +0100540 },
541#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542#ifdef CONFIG_BLK_DEV_INITRD
543 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 .procname = "real-root-dev",
545 .data = &real_root_dev,
546 .maxlen = sizeof(int),
547 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800548 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 },
550#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700551 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700552 .procname = "print-fatal-signals",
553 .data = &print_fatal_signals,
554 .maxlen = sizeof(int),
555 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800556 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700557 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700558#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 .procname = "reboot-cmd",
561 .data = reboot_command,
562 .maxlen = 256,
563 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800564 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 },
566 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 .procname = "stop-a",
568 .data = &stop_a_enabled,
569 .maxlen = sizeof (int),
570 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800571 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 },
573 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 .procname = "scons-poweroff",
575 .data = &scons_pwroff,
576 .maxlen = sizeof (int),
577 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800578 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 },
580#endif
David S. Miller08714202008-11-16 23:49:24 -0800581#ifdef CONFIG_SPARC64
582 {
David S. Miller08714202008-11-16 23:49:24 -0800583 .procname = "tsb-ratio",
584 .data = &sysctl_tsb_ratio,
585 .maxlen = sizeof (int),
586 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800587 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800588 },
589#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#ifdef __hppa__
591 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 .procname = "soft-power",
593 .data = &pwrsw_enabled,
594 .maxlen = sizeof (int),
595 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800596 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 },
Vineet Guptabf14e3b2013-01-18 15:12:24 +0530598#endif
599#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 .procname = "unaligned-trap",
602 .data = &unaligned_enabled,
603 .maxlen = sizeof (int),
604 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800605 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 },
607#endif
608 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 .procname = "ctrl-alt-del",
610 .data = &C_A_D,
611 .maxlen = sizeof(int),
612 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800613 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400615#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200616 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200617 .procname = "ftrace_enabled",
618 .data = &ftrace_enabled,
619 .maxlen = sizeof(int),
620 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800621 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200622 },
623#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500624#ifdef CONFIG_STACK_TRACER
625 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500626 .procname = "stack_tracer_enabled",
627 .data = &stack_tracer_enabled,
628 .maxlen = sizeof(int),
629 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800630 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500631 },
632#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400633#ifdef CONFIG_TRACING
634 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100635 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400636 .data = &ftrace_dump_on_oops,
637 .maxlen = sizeof(int),
638 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800639 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400640 },
Steven Rostedt (Red Hat)de7edd32013-06-14 16:21:43 -0400641 {
642 .procname = "traceoff_on_warning",
643 .data = &__disable_trace_on_warning,
644 .maxlen = sizeof(__disable_trace_on_warning),
645 .mode = 0644,
646 .proc_handler = proc_dointvec,
647 },
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500648 {
649 .procname = "tracepoint_printk",
650 .data = &tracepoint_printk,
651 .maxlen = sizeof(tracepoint_printk),
652 .mode = 0644,
Steven Rostedt (Red Hat)423917452016-11-23 15:52:45 -0500653 .proc_handler = tracepoint_printk_sysctl,
Steven Rostedt (Red Hat)0daa23022014-12-12 22:27:10 -0500654 },
Steven Rostedt944ac422008-10-23 19:26:08 -0400655#endif
Dave Young2965faa2015-09-09 15:38:55 -0700656#ifdef CONFIG_KEXEC_CORE
Kees Cook79847542014-01-23 15:55:59 -0800657 {
658 .procname = "kexec_load_disabled",
659 .data = &kexec_load_disabled,
660 .maxlen = sizeof(int),
661 .mode = 0644,
662 /* only handle a transition from default "0" to "1" */
663 .proc_handler = proc_dointvec_minmax,
664 .extra1 = &one,
665 .extra2 = &one,
666 },
667#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200668#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 .procname = "modprobe",
671 .data = &modprobe_path,
672 .maxlen = KMOD_PATH_LEN,
673 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800674 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 },
Kees Cook3d433212009-04-02 15:49:29 -0700676 {
Kees Cook3d433212009-04-02 15:49:29 -0700677 .procname = "modules_disabled",
678 .data = &modules_disabled,
679 .maxlen = sizeof(int),
680 .mode = 0644,
681 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800682 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700683 .extra1 = &one,
684 .extra2 = &one,
685 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#endif
Michael Marineau86d56132014-04-10 14:09:31 -0700687#ifdef CONFIG_UEVENT_HELPER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100690 .data = &uevent_helper,
691 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800693 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 },
Michael Marineau86d56132014-04-10 14:09:31 -0700695#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#ifdef CONFIG_CHR_DEV_SG
697 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 .procname = "sg-big-buff",
699 .data = &sg_big_buff,
700 .maxlen = sizeof (int),
701 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800702 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 },
704#endif
705#ifdef CONFIG_BSD_PROCESS_ACCT
706 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 .procname = "acct",
708 .data = &acct_parm,
709 .maxlen = 3*sizeof(int),
710 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800711 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 },
713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714#ifdef CONFIG_MAGIC_SYSRQ
715 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800717 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 .maxlen = sizeof (int),
719 .mode = 0644,
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700720 .proc_handler = sysrq_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 },
722#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700723#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700726 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 .maxlen = sizeof (int),
728 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800729 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700731#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 .procname = "threads-max",
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700734 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 .maxlen = sizeof(int),
736 .mode = 0644,
Heinrich Schuchardt16db3d32015-04-16 12:47:50 -0700737 .proc_handler = sysctl_max_threads,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 },
739 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 .procname = "random",
741 .mode = 0555,
742 .child = random_table,
743 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 {
Eric Paris17f60a72011-04-01 17:07:50 -0400745 .procname = "usermodehelper",
746 .mode = 0555,
747 .child = usermodehelper_table,
748 },
749 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 .procname = "overflowuid",
751 .data = &overflowuid,
752 .maxlen = sizeof(int),
753 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800754 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 .extra1 = &minolduid,
756 .extra2 = &maxolduid,
757 },
758 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .procname = "overflowgid",
760 .data = &overflowgid,
761 .maxlen = sizeof(int),
762 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800763 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 .extra1 = &minolduid,
765 .extra2 = &maxolduid,
766 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800767#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768#ifdef CONFIG_MATHEMU
769 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .procname = "ieee_emulation_warnings",
771 .data = &sysctl_ieee_emulation_warnings,
772 .maxlen = sizeof(int),
773 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800774 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 },
776#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 .procname = "userprocess_debug",
Heiko Carstensab3c68e2010-05-17 10:00:21 +0200779 .data = &show_unhandled_signals,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .maxlen = sizeof(int),
781 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800782 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 },
784#endif
785 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .procname = "pid_max",
787 .data = &pid_max,
788 .maxlen = sizeof (int),
789 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800790 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 .extra1 = &pid_max_min,
792 .extra2 = &pid_max_max,
793 },
794 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 .procname = "panic_on_oops",
796 .data = &panic_on_oops,
797 .maxlen = sizeof(int),
798 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800799 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800801#if defined CONFIG_PRINTK
802 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800803 .procname = "printk",
804 .data = &console_loglevel,
805 .maxlen = 4*sizeof(int),
806 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800807 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800808 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700811 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 .maxlen = sizeof(int),
813 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800814 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 },
816 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700818 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 .maxlen = sizeof(int),
820 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800821 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 },
Dave Youngaf913222009-09-22 16:43:33 -0700823 {
Dave Youngaf913222009-09-22 16:43:33 -0700824 .procname = "printk_delay",
825 .data = &printk_delay_msec,
826 .maxlen = sizeof(int),
827 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800828 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700829 .extra1 = &zero,
830 .extra2 = &ten_thousand,
831 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 {
Borislav Petkov750afe72016-08-02 14:04:07 -0700833 .procname = "printk_devkmsg",
834 .data = devkmsg_log_str,
835 .maxlen = DEVKMSG_STR_MAX_SIZE,
836 .mode = 0644,
837 .proc_handler = devkmsg_sysctl_set_loglvl,
838 },
839 {
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800840 .procname = "dmesg_restrict",
841 .data = &dmesg_restrict,
842 .maxlen = sizeof(int),
843 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700844 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800845 .extra1 = &zero,
846 .extra2 = &one,
847 },
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800848 {
849 .procname = "kptr_restrict",
850 .data = &kptr_restrict,
851 .maxlen = sizeof(int),
852 .mode = 0644,
Kees Cook620f6e82012-04-04 11:40:19 -0700853 .proc_handler = proc_dointvec_minmax_sysadmin,
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800854 .extra1 = &zero,
855 .extra2 = &two,
856 },
Joe Perchesdf6e61d2010-11-15 21:17:27 -0800857#endif
Dan Rosenbergeaf06b22010-11-11 14:05:18 -0800858 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 .procname = "ngroups_max",
860 .data = &ngroups_max,
861 .maxlen = sizeof (int),
862 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800863 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 },
Dan Ballard73efc032011-10-31 17:11:20 -0700865 {
866 .procname = "cap_last_cap",
867 .data = (void *)&cap_last_cap,
868 .maxlen = sizeof(int),
869 .mode = 0444,
870 .proc_handler = proc_dointvec,
871 },
Don Zickus58687ac2010-05-07 17:11:44 -0400872#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500873 {
Don Zickus58687ac2010-05-07 17:11:44 -0400874 .procname = "watchdog",
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200875 .data = &watchdog_user_enabled,
Don Zickus504d7cf2010-02-12 17:19:19 -0500876 .maxlen = sizeof (int),
877 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700878 .proc_handler = proc_watchdog,
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700879 .extra1 = &zero,
880 .extra2 = &one,
Don Zickus58687ac2010-05-07 17:11:44 -0400881 },
882 {
883 .procname = "watchdog_thresh",
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700884 .data = &watchdog_thresh,
Don Zickus58687ac2010-05-07 17:11:44 -0400885 .maxlen = sizeof(int),
886 .mode = 0644,
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700887 .proc_handler = proc_watchdog_thresh,
Li Zefana6572f82013-05-17 10:31:04 +0800888 .extra1 = &zero,
Don Zickus58687ac2010-05-07 17:11:44 -0400889 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500890 },
Don Zickus2508ce12010-05-07 17:11:46 -0400891 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700892 .procname = "nmi_watchdog",
893 .data = &nmi_watchdog_enabled,
894 .maxlen = sizeof (int),
895 .mode = 0644,
896 .proc_handler = proc_nmi_watchdog,
897 .extra1 = &zero,
898#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
899 .extra2 = &one,
900#else
901 .extra2 = &zero,
902#endif
903 },
904 {
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700905 .procname = "watchdog_cpumask",
906 .data = &watchdog_cpumask_bits,
907 .maxlen = NR_CPUS,
908 .mode = 0644,
909 .proc_handler = proc_watchdog_cpumask,
910 },
911#ifdef CONFIG_SOFTLOCKUP_DETECTOR
912 {
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700913 .procname = "soft_watchdog",
914 .data = &soft_watchdog_enabled,
915 .maxlen = sizeof (int),
916 .mode = 0644,
917 .proc_handler = proc_soft_watchdog,
918 .extra1 = &zero,
919 .extra2 = &one,
920 },
921 {
Don Zickus2508ce12010-05-07 17:11:46 -0400922 .procname = "softlockup_panic",
923 .data = &softlockup_panic,
924 .maxlen = sizeof(int),
925 .mode = 0644,
926 .proc_handler = proc_dointvec_minmax,
927 .extra1 = &zero,
928 .extra2 = &one,
929 },
Aaron Tomlined235872014-06-23 13:22:05 -0700930#ifdef CONFIG_SMP
931 {
932 .procname = "softlockup_all_cpu_backtrace",
933 .data = &sysctl_softlockup_all_cpu_backtrace,
934 .maxlen = sizeof(int),
935 .mode = 0644,
936 .proc_handler = proc_dointvec_minmax,
937 .extra1 = &zero,
938 .extra2 = &one,
939 },
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700940#endif /* CONFIG_SMP */
941#endif
942#ifdef CONFIG_HARDLOCKUP_DETECTOR
943 {
944 .procname = "hardlockup_panic",
945 .data = &hardlockup_panic,
946 .maxlen = sizeof(int),
947 .mode = 0644,
948 .proc_handler = proc_dointvec_minmax,
949 .extra1 = &zero,
950 .extra2 = &one,
951 },
952#ifdef CONFIG_SMP
Jiri Kosina55537872015-11-05 18:44:41 -0800953 {
954 .procname = "hardlockup_all_cpu_backtrace",
955 .data = &sysctl_hardlockup_all_cpu_backtrace,
956 .maxlen = sizeof(int),
957 .mode = 0644,
958 .proc_handler = proc_dointvec_minmax,
959 .extra1 = &zero,
960 .extra2 = &one,
961 },
Aaron Tomlined235872014-06-23 13:22:05 -0700962#endif /* CONFIG_SMP */
Don Zickus5dc30552010-11-29 17:07:17 -0500963#endif
Nicholas Piggin05a4a952017-07-12 14:35:46 -0700964#endif
965
Don Zickus5dc30552010-11-29 17:07:17 -0500966#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
967 {
968 .procname = "unknown_nmi_panic",
969 .data = &unknown_nmi_panic,
970 .maxlen = sizeof (int),
971 .mode = 0644,
972 .proc_handler = proc_dointvec,
973 },
Don Zickus504d7cf2010-02-12 17:19:19 -0500974#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975#if defined(CONFIG_X86)
976 {
Don Zickus8da5add2006-09-26 10:52:27 +0200977 .procname = "panic_on_unrecovered_nmi",
978 .data = &panic_on_unrecovered_nmi,
979 .maxlen = sizeof(int),
980 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800981 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200982 },
983 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700984 .procname = "panic_on_io_nmi",
985 .data = &panic_on_io_nmi,
986 .maxlen = sizeof(int),
987 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800988 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700989 },
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +0900990#ifdef CONFIG_DEBUG_STACKOVERFLOW
991 {
992 .procname = "panic_on_stackoverflow",
993 .data = &sysctl_panic_on_stackoverflow,
994 .maxlen = sizeof(int),
995 .mode = 0644,
996 .proc_handler = proc_dointvec,
997 },
998#endif
Kurt Garloff5211a242009-06-24 14:32:11 -0700999 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 .procname = "bootloader_type",
1001 .data = &bootloader_type,
1002 .maxlen = sizeof (int),
1003 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001004 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +01001006 {
H. Peter Anvin50312962009-05-07 16:54:11 -07001007 .procname = "bootloader_version",
1008 .data = &bootloader_version,
1009 .maxlen = sizeof (int),
1010 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001011 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -07001012 },
1013 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001014 .procname = "io_delay_type",
1015 .data = &io_delay_type,
1016 .maxlen = sizeof(int),
1017 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001018 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +01001019 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020#endif
Luke Yang7a9166e2006-02-20 18:28:07 -08001021#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 .procname = "randomize_va_space",
1024 .data = &randomize_va_space,
1025 .maxlen = sizeof(int),
1026 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001027 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 },
Luke Yang7a9166e2006-02-20 18:28:07 -08001029#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -08001030#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001031 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001032 .procname = "spin_retry",
1033 .data = &spin_retry,
1034 .maxlen = sizeof (int),
1035 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001036 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -07001037 },
1038#endif
Len Brown673d5b42007-07-28 03:33:16 -04001039#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -08001040 {
Pavel Machekc255d842006-02-20 18:27:58 -08001041 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -07001042 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -08001043 .maxlen = sizeof (unsigned long),
1044 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001045 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -08001046 },
1047#endif
Vineet Guptab6fca722013-01-09 20:06:28 +05301048#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
Jes Sorensend2b176e2006-02-28 09:42:23 -08001049 {
Jes Sorensend2b176e2006-02-28 09:42:23 -08001050 .procname = "ignore-unaligned-usertrap",
1051 .data = &no_unaligned_warning,
1052 .maxlen = sizeof (int),
1053 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001054 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -08001055 },
Vineet Guptab6fca722013-01-09 20:06:28 +05301056#endif
1057#ifdef CONFIG_IA64
Doug Chapman88fc2412009-01-15 10:38:56 -08001058 {
Doug Chapman88fc2412009-01-15 10:38:56 -08001059 .procname = "unaligned-dump-stack",
1060 .data = &unaligned_dump_stack,
1061 .maxlen = sizeof (int),
1062 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001063 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -08001064 },
Jes Sorensend2b176e2006-02-28 09:42:23 -08001065#endif
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001066#ifdef CONFIG_DETECT_HUNG_TASK
1067 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001068 .procname = "hung_task_panic",
1069 .data = &sysctl_hung_task_panic,
1070 .maxlen = sizeof(int),
1071 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001072 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -08001073 .extra1 = &zero,
1074 .extra2 = &one,
1075 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001076 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001077 .procname = "hung_task_check_count",
1078 .data = &sysctl_hung_task_check_count,
Li Zefancd646472013-09-23 16:43:58 +08001079 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001080 .mode = 0644,
Li Zefancd646472013-09-23 16:43:58 +08001081 .proc_handler = proc_dointvec_minmax,
1082 .extra1 = &zero,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001083 },
1084 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001085 .procname = "hung_task_timeout_secs",
1086 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +01001087 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001088 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001089 .proc_handler = proc_dohung_task_timeout_secs,
Liu Hua80df2842014-04-07 15:38:57 -07001090 .extra2 = &hung_task_timeout_max,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001091 },
1092 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001093 .procname = "hung_task_warnings",
1094 .data = &sysctl_hung_task_warnings,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001095 .maxlen = sizeof(int),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001096 .mode = 0644,
Aaron Tomlin270750db2014-01-20 17:34:13 +00001097 .proc_handler = proc_dointvec_minmax,
1098 .extra1 = &neg_one,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01001099 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -07001100#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001101#ifdef CONFIG_RT_MUTEXES
1102 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001103 .procname = "max_lock_depth",
1104 .data = &max_lock_depth,
1105 .maxlen = sizeof(int),
1106 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001107 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -07001108 },
1109#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001110 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001111 .procname = "poweroff_cmd",
1112 .data = &poweroff_cmd,
1113 .maxlen = POWEROFF_CMD_PATH_LEN,
1114 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001115 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07001116 },
David Howells0b77f5b2008-04-29 01:01:32 -07001117#ifdef CONFIG_KEYS
1118 {
David Howells0b77f5b2008-04-29 01:01:32 -07001119 .procname = "keys",
1120 .mode = 0555,
1121 .child = key_sysctls,
1122 },
1123#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001124#ifdef CONFIG_PERF_EVENTS
Vince Weaveraa4a2212011-06-03 17:54:40 -04001125 /*
1126 * User-space scripts rely on the existence of this file
1127 * as a feature check for perf_events being enabled.
1128 *
1129 * So it's an ABI, do not remove!
1130 */
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001131 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001132 .procname = "perf_event_paranoid",
1133 .data = &sysctl_perf_event_paranoid,
1134 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001135 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001136 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001137 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001138 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001139 .procname = "perf_event_mlock_kb",
1140 .data = &sysctl_perf_event_mlock,
1141 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001142 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001143 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +02001144 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001145 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001146 .procname = "perf_event_max_sample_rate",
1147 .data = &sysctl_perf_event_sample_rate,
1148 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001149 .mode = 0644,
Peter Zijlstra163ec432011-02-16 11:22:34 +01001150 .proc_handler = perf_proc_update_handler,
Knut Petersen723478c2013-09-25 14:29:37 +02001151 .extra1 = &one,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001152 },
Dave Hansen14c63f12013-06-21 08:51:36 -07001153 {
1154 .procname = "perf_cpu_time_max_percent",
1155 .data = &sysctl_perf_cpu_time_max_percent,
1156 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1157 .mode = 0644,
1158 .proc_handler = perf_cpu_time_max_percent_handler,
1159 .extra1 = &zero,
1160 .extra2 = &one_hundred,
1161 },
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001162 {
1163 .procname = "perf_event_max_stack",
Arnaldo Carvalho de Meloa8311002016-05-10 16:34:53 -03001164 .data = &sysctl_perf_event_max_stack,
Arnaldo Carvalho de Meloc5dfd782016-04-21 12:28:50 -03001165 .maxlen = sizeof(sysctl_perf_event_max_stack),
1166 .mode = 0644,
1167 .proc_handler = perf_event_max_stack_handler,
1168 .extra1 = &zero,
1169 .extra2 = &six_hundred_forty_kb,
1170 },
Arnaldo Carvalho de Meloc85b0332016-05-12 13:06:21 -03001171 {
1172 .procname = "perf_event_max_contexts_per_stack",
1173 .data = &sysctl_perf_event_max_contexts_per_stack,
1174 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
1175 .mode = 0644,
1176 .proc_handler = perf_event_max_stack_handler,
1177 .extra1 = &zero,
1178 .extra2 = &one_thousand,
1179 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +02001180#endif
Vegard Nossumdfec0722008-04-04 00:51:41 +02001181#ifdef CONFIG_KMEMCHECK
1182 {
Vegard Nossumdfec0722008-04-04 00:51:41 +02001183 .procname = "kmemcheck",
1184 .data = &kmemcheck_enabled,
1185 .maxlen = sizeof(int),
1186 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001187 .proc_handler = proc_dointvec,
Vegard Nossumdfec0722008-04-04 00:51:41 +02001188 },
1189#endif
Prarit Bhargava9e3961a2014-12-10 15:45:50 -08001190 {
1191 .procname = "panic_on_warn",
1192 .data = &panic_on_warn,
1193 .maxlen = sizeof(int),
1194 .mode = 0644,
1195 .proc_handler = proc_dointvec_minmax,
1196 .extra1 = &zero,
1197 .extra2 = &one,
1198 },
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001199#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1200 {
1201 .procname = "timer_migration",
1202 .data = &sysctl_timer_migration,
1203 .maxlen = sizeof(unsigned int),
1204 .mode = 0644,
1205 .proc_handler = timer_migration_handler,
Myungho Jungb94bf592017-04-19 15:24:50 -07001206 .extra1 = &zero,
1207 .extra2 = &one,
Thomas Gleixnerbc7a34b2015-05-26 22:50:33 +00001208 },
1209#endif
Alexei Starovoitov1be7f752015-10-07 22:23:21 -07001210#ifdef CONFIG_BPF_SYSCALL
1211 {
1212 .procname = "unprivileged_bpf_disabled",
1213 .data = &sysctl_unprivileged_bpf_disabled,
1214 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1215 .mode = 0644,
1216 /* only handle a transition from default "0" to "1" */
1217 .proc_handler = proc_dointvec_minmax,
1218 .extra1 = &one,
1219 .extra2 = &one,
1220 },
1221#endif
Daniel Bristot de Oliveira088e9d22016-06-02 13:51:41 -03001222#if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1223 {
1224 .procname = "panic_on_rcu_stall",
1225 .data = &sysctl_panic_on_rcu_stall,
1226 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
1227 .mode = 0644,
1228 .proc_handler = proc_dointvec_minmax,
1229 .extra1 = &zero,
1230 .extra2 = &one,
1231 },
1232#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001233 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234};
1235
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001236static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 .procname = "overcommit_memory",
1239 .data = &sysctl_overcommit_memory,
1240 .maxlen = sizeof(sysctl_overcommit_memory),
1241 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001242 .proc_handler = proc_dointvec_minmax,
1243 .extra1 = &zero,
1244 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 },
1246 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001247 .procname = "panic_on_oom",
1248 .data = &sysctl_panic_on_oom,
1249 .maxlen = sizeof(sysctl_panic_on_oom),
1250 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001251 .proc_handler = proc_dointvec_minmax,
1252 .extra1 = &zero,
1253 .extra2 = &two,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -07001254 },
1255 {
David Rientjesfe071d72007-10-16 23:25:56 -07001256 .procname = "oom_kill_allocating_task",
1257 .data = &sysctl_oom_kill_allocating_task,
1258 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1259 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001260 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -07001261 },
1262 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001263 .procname = "oom_dump_tasks",
1264 .data = &sysctl_oom_dump_tasks,
1265 .maxlen = sizeof(sysctl_oom_dump_tasks),
1266 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001267 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -08001268 },
1269 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .procname = "overcommit_ratio",
1271 .data = &sysctl_overcommit_ratio,
1272 .maxlen = sizeof(sysctl_overcommit_ratio),
1273 .mode = 0644,
Jerome Marchand49f0ce52014-01-21 15:49:14 -08001274 .proc_handler = overcommit_ratio_handler,
1275 },
1276 {
1277 .procname = "overcommit_kbytes",
1278 .data = &sysctl_overcommit_kbytes,
1279 .maxlen = sizeof(sysctl_overcommit_kbytes),
1280 .mode = 0644,
1281 .proc_handler = overcommit_kbytes_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 },
1283 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 .procname = "page-cluster",
1285 .data = &page_cluster,
1286 .maxlen = sizeof(int),
1287 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001288 .proc_handler = proc_dointvec_minmax,
1289 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 },
1291 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 .procname = "dirty_background_ratio",
1293 .data = &dirty_background_ratio,
1294 .maxlen = sizeof(dirty_background_ratio),
1295 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001296 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 .extra1 = &zero,
1298 .extra2 = &one_hundred,
1299 },
1300 {
David Rientjes2da02992009-01-06 14:39:31 -08001301 .procname = "dirty_background_bytes",
1302 .data = &dirty_background_bytes,
1303 .maxlen = sizeof(dirty_background_bytes),
1304 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001305 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001306 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001307 },
1308 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .procname = "dirty_ratio",
1310 .data = &vm_dirty_ratio,
1311 .maxlen = sizeof(vm_dirty_ratio),
1312 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001313 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 .extra1 = &zero,
1315 .extra2 = &one_hundred,
1316 },
1317 {
David Rientjes2da02992009-01-06 14:39:31 -08001318 .procname = "dirty_bytes",
1319 .data = &vm_dirty_bytes,
1320 .maxlen = sizeof(vm_dirty_bytes),
1321 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001322 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001323 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001324 },
1325 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001327 .data = &dirty_writeback_interval,
1328 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001330 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 },
1332 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001334 .data = &dirty_expire_interval,
1335 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 .mode = 0644,
Petr Holasekcb16e952011-03-23 16:43:09 -07001337 .proc_handler = proc_dointvec_minmax,
1338 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 },
1340 {
Theodore Ts'o1efff912015-03-17 12:23:32 -04001341 .procname = "dirtytime_expire_seconds",
1342 .data = &dirtytime_expire_interval,
1343 .maxlen = sizeof(dirty_expire_interval),
1344 .mode = 0644,
1345 .proc_handler = dirtytime_interval_handler,
1346 .extra1 = &zero,
1347 },
1348 {
Wanpeng Li3965c9a2012-07-31 16:41:52 -07001349 .procname = "nr_pdflush_threads",
1350 .mode = 0444 /* read-only */,
1351 .proc_handler = pdflush_proc_obsolete,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 },
1353 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 .procname = "swappiness",
1355 .data = &vm_swappiness,
1356 .maxlen = sizeof(vm_swappiness),
1357 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001358 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 .extra1 = &zero,
1360 .extra2 = &one_hundred,
1361 },
1362#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001363 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001365 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 .maxlen = sizeof(unsigned long),
1367 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001368 .proc_handler = hugetlb_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001369 },
1370#ifdef CONFIG_NUMA
1371 {
1372 .procname = "nr_hugepages_mempolicy",
1373 .data = NULL,
1374 .maxlen = sizeof(unsigned long),
1375 .mode = 0644,
1376 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001377 },
1378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 .procname = "hugetlb_shm_group",
1381 .data = &sysctl_hugetlb_shm_group,
1382 .maxlen = sizeof(gid_t),
1383 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001384 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 },
Mel Gorman396faf02007-07-17 04:03:13 -07001386 {
Mel Gorman396faf02007-07-17 04:03:13 -07001387 .procname = "hugepages_treat_as_movable",
1388 .data = &hugepages_treat_as_movable,
1389 .maxlen = sizeof(int),
1390 .mode = 0644,
Naoya Horiguchi86cdb462013-09-11 14:22:13 -07001391 .proc_handler = proc_dointvec,
Mel Gorman396faf02007-07-17 04:03:13 -07001392 },
Adam Litke54f9f802007-10-16 01:26:20 -07001393 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001394 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001395 .data = NULL,
1396 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001397 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001398 .proc_handler = hugetlb_overcommit_handler,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001399 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400#endif
1401 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .procname = "lowmem_reserve_ratio",
1403 .data = &sysctl_lowmem_reserve_ratio,
1404 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1405 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001406 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 },
1408 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001409 .procname = "drop_caches",
1410 .data = &sysctl_drop_caches,
1411 .maxlen = sizeof(int),
1412 .mode = 0644,
1413 .proc_handler = drop_caches_sysctl_handler,
Petr Holasekcb16e952011-03-23 16:43:09 -07001414 .extra1 = &one,
Dave Hansen5509a5d2014-04-03 14:48:19 -07001415 .extra2 = &four,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001416 },
Mel Gorman76ab0f52010-05-24 14:32:28 -07001417#ifdef CONFIG_COMPACTION
1418 {
1419 .procname = "compact_memory",
1420 .data = &sysctl_compact_memory,
1421 .maxlen = sizeof(int),
1422 .mode = 0200,
1423 .proc_handler = sysctl_compaction_handler,
1424 },
Mel Gorman5e771902010-05-24 14:32:31 -07001425 {
1426 .procname = "extfrag_threshold",
1427 .data = &sysctl_extfrag_threshold,
1428 .maxlen = sizeof(int),
1429 .mode = 0644,
1430 .proc_handler = sysctl_extfrag_handler,
1431 .extra1 = &min_extfrag_threshold,
1432 .extra2 = &max_extfrag_threshold,
1433 },
Eric B Munson5bbe3542015-04-15 16:13:20 -07001434 {
1435 .procname = "compact_unevictable_allowed",
1436 .data = &sysctl_compact_unevictable_allowed,
1437 .maxlen = sizeof(int),
1438 .mode = 0644,
1439 .proc_handler = proc_dointvec,
1440 .extra1 = &zero,
1441 .extra2 = &one,
1442 },
Mel Gorman5e771902010-05-24 14:32:31 -07001443
Mel Gorman76ab0f52010-05-24 14:32:28 -07001444#endif /* CONFIG_COMPACTION */
Andrew Morton9d0243b2006-01-08 01:00:39 -08001445 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 .procname = "min_free_kbytes",
1447 .data = &min_free_kbytes,
1448 .maxlen = sizeof(min_free_kbytes),
1449 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001450 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .extra1 = &zero,
1452 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001453 {
Johannes Weiner795ae7a2016-03-17 14:19:14 -07001454 .procname = "watermark_scale_factor",
1455 .data = &watermark_scale_factor,
1456 .maxlen = sizeof(watermark_scale_factor),
1457 .mode = 0644,
1458 .proc_handler = watermark_scale_factor_sysctl_handler,
1459 .extra1 = &one,
1460 .extra2 = &one_thousand,
1461 },
1462 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001463 .procname = "percpu_pagelist_fraction",
1464 .data = &percpu_pagelist_fraction,
1465 .maxlen = sizeof(percpu_pagelist_fraction),
1466 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001467 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
David Rientjes7cd2b0a2014-06-23 13:22:04 -07001468 .extra1 = &zero,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001469 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470#ifdef CONFIG_MMU
1471 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 .procname = "max_map_count",
1473 .data = &sysctl_max_map_count,
1474 .maxlen = sizeof(sysctl_max_map_count),
1475 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001476 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001477 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001479#else
1480 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001481 .procname = "nr_trim_pages",
1482 .data = &sysctl_nr_trim_pages,
1483 .maxlen = sizeof(sysctl_nr_trim_pages),
1484 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001485 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001486 .extra1 = &zero,
1487 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488#endif
1489 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 .procname = "laptop_mode",
1491 .data = &laptop_mode,
1492 .maxlen = sizeof(laptop_mode),
1493 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001494 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 },
1496 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 .procname = "block_dump",
1498 .data = &block_dump,
1499 .maxlen = sizeof(block_dump),
1500 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001501 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .extra1 = &zero,
1503 },
1504 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 .procname = "vfs_cache_pressure",
1506 .data = &sysctl_vfs_cache_pressure,
1507 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1508 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001509 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 .extra1 = &zero,
1511 },
1512#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1513 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 .procname = "legacy_va_layout",
1515 .data = &sysctl_legacy_va_layout,
1516 .maxlen = sizeof(sysctl_legacy_va_layout),
1517 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001518 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 .extra1 = &zero,
1520 },
1521#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001522#ifdef CONFIG_NUMA
1523 {
Christoph Lameter17436602006-01-18 17:42:32 -08001524 .procname = "zone_reclaim_mode",
Mel Gormana5f5f912016-07-28 15:46:32 -07001525 .data = &node_reclaim_mode,
1526 .maxlen = sizeof(node_reclaim_mode),
Christoph Lameter17436602006-01-18 17:42:32 -08001527 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001528 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001529 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001530 },
Christoph Lameter96146342006-07-03 00:24:13 -07001531 {
Christoph Lameter96146342006-07-03 00:24:13 -07001532 .procname = "min_unmapped_ratio",
1533 .data = &sysctl_min_unmapped_ratio,
1534 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1535 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001536 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001537 .extra1 = &zero,
1538 .extra2 = &one_hundred,
1539 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001540 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001541 .procname = "min_slab_ratio",
1542 .data = &sysctl_min_slab_ratio,
1543 .maxlen = sizeof(sysctl_min_slab_ratio),
1544 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001545 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001546 .extra1 = &zero,
1547 .extra2 = &one_hundred,
1548 },
Christoph Lameter17436602006-01-18 17:42:32 -08001549#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001550#ifdef CONFIG_SMP
1551 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001552 .procname = "stat_interval",
1553 .data = &sysctl_stat_interval,
1554 .maxlen = sizeof(sysctl_stat_interval),
1555 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001556 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001557 },
Hugh Dickins52b6f462016-05-19 17:12:50 -07001558 {
1559 .procname = "stat_refresh",
1560 .data = NULL,
1561 .maxlen = 0,
1562 .mode = 0600,
1563 .proc_handler = vmstat_refresh,
1564 },
Christoph Lameter77461ab2007-05-09 02:35:13 -07001565#endif
David Howells6e141542009-12-15 19:27:45 +00001566#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001567 {
Eric Parised032182007-06-28 15:55:21 -04001568 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001569 .data = &dac_mmap_min_addr,
1570 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001571 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001572 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001573 },
David Howells6e141542009-12-15 19:27:45 +00001574#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001575#ifdef CONFIG_NUMA
1576 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001577 .procname = "numa_zonelist_order",
1578 .data = &numa_zonelist_order,
1579 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1580 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001581 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001582 },
1583#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001584#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001585 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001586 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001587 .procname = "vdso_enabled",
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001588#ifdef CONFIG_X86_32
1589 .data = &vdso32_enabled,
1590 .maxlen = sizeof(vdso32_enabled),
1591#else
Ingo Molnare6e54942006-06-27 02:53:50 -07001592 .data = &vdso_enabled,
1593 .maxlen = sizeof(vdso_enabled),
Andy Lutomirski3d7ee962014-05-05 12:19:32 -07001594#endif
Ingo Molnare6e54942006-06-27 02:53:50 -07001595 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001596 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001597 .extra1 = &zero,
1598 },
1599#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001600#ifdef CONFIG_HIGHMEM
1601 {
Bron Gondwana195cf4532008-02-04 22:29:20 -08001602 .procname = "highmem_is_dirtyable",
1603 .data = &vm_highmem_is_dirtyable,
1604 .maxlen = sizeof(vm_highmem_is_dirtyable),
1605 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001606 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf4532008-02-04 22:29:20 -08001607 .extra1 = &zero,
1608 .extra2 = &one,
1609 },
1610#endif
Andi Kleen6a460792009-09-16 11:50:15 +02001611#ifdef CONFIG_MEMORY_FAILURE
1612 {
Andi Kleen6a460792009-09-16 11:50:15 +02001613 .procname = "memory_failure_early_kill",
1614 .data = &sysctl_memory_failure_early_kill,
1615 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1616 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001617 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001618 .extra1 = &zero,
1619 .extra2 = &one,
1620 },
1621 {
Andi Kleen6a460792009-09-16 11:50:15 +02001622 .procname = "memory_failure_recovery",
1623 .data = &sysctl_memory_failure_recovery,
1624 .maxlen = sizeof(sysctl_memory_failure_recovery),
1625 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001626 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001627 .extra1 = &zero,
1628 .extra2 = &one,
1629 },
1630#endif
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -07001631 {
1632 .procname = "user_reserve_kbytes",
1633 .data = &sysctl_user_reserve_kbytes,
1634 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1635 .mode = 0644,
1636 .proc_handler = proc_doulongvec_minmax,
1637 },
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -07001638 {
1639 .procname = "admin_reserve_kbytes",
1640 .data = &sysctl_admin_reserve_kbytes,
1641 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1642 .mode = 0644,
1643 .proc_handler = proc_doulongvec_minmax,
1644 },
Daniel Cashmand07e2252016-01-14 15:19:53 -08001645#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1646 {
1647 .procname = "mmap_rnd_bits",
1648 .data = &mmap_rnd_bits,
1649 .maxlen = sizeof(mmap_rnd_bits),
1650 .mode = 0600,
1651 .proc_handler = proc_dointvec_minmax,
1652 .extra1 = (void *)&mmap_rnd_bits_min,
1653 .extra2 = (void *)&mmap_rnd_bits_max,
1654 },
1655#endif
1656#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1657 {
1658 .procname = "mmap_rnd_compat_bits",
1659 .data = &mmap_rnd_compat_bits,
1660 .maxlen = sizeof(mmap_rnd_compat_bits),
1661 .mode = 0600,
1662 .proc_handler = proc_dointvec_minmax,
1663 .extra1 = (void *)&mmap_rnd_compat_bits_min,
1664 .extra2 = (void *)&mmap_rnd_compat_bits_max,
1665 },
1666#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001667 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668};
1669
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001670static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 .procname = "inode-nr",
1673 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001674 .maxlen = 2*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001676 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 },
1678 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 .procname = "inode-state",
1680 .data = &inodes_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001681 .maxlen = 7*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 .mode = 0444,
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001683 .proc_handler = proc_nr_inodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 },
1685 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 .procname = "file-nr",
1687 .data = &files_stat,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001688 .maxlen = sizeof(files_stat),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001690 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 },
1692 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .procname = "file-max",
1694 .data = &files_stat.max_files,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001695 .maxlen = sizeof(files_stat.max_files),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 .mode = 0644,
Eric Dumazet518de9b2010-10-26 14:22:44 -07001697 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 },
1699 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001700 .procname = "nr_open",
1701 .data = &sysctl_nr_open,
Alexey Dobriyan9b80a182016-09-02 00:38:52 +03001702 .maxlen = sizeof(unsigned int),
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001703 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001704 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001705 .extra1 = &sysctl_nr_open_min,
1706 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001707 },
1708 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 .procname = "dentry-state",
1710 .data = &dentry_stat,
Glauber Costa3942c072013-08-28 10:17:53 +10001711 .maxlen = 6*sizeof(long),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 .mode = 0444,
Christoph Hellwig312d3ca2010-10-10 05:36:23 -04001713 .proc_handler = proc_nr_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 },
1715 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 .procname = "overflowuid",
1717 .data = &fs_overflowuid,
1718 .maxlen = sizeof(int),
1719 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001720 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 .extra1 = &minolduid,
1722 .extra2 = &maxolduid,
1723 },
1724 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 .procname = "overflowgid",
1726 .data = &fs_overflowgid,
1727 .maxlen = sizeof(int),
1728 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001729 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 .extra1 = &minolduid,
1731 .extra2 = &maxolduid,
1732 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001733#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .procname = "leases-enable",
1736 .data = &leases_enable,
1737 .maxlen = sizeof(int),
1738 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001739 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001741#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742#ifdef CONFIG_DNOTIFY
1743 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 .procname = "dir-notify-enable",
1745 .data = &dir_notify_enable,
1746 .maxlen = sizeof(int),
1747 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001748 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 },
1750#endif
1751#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001752#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 .procname = "lease-break-time",
1755 .data = &lease_break_time,
1756 .maxlen = sizeof(int),
1757 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001758 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001760#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001761#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 .procname = "aio-nr",
1764 .data = &aio_nr,
1765 .maxlen = sizeof(aio_nr),
1766 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001767 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 },
1769 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 .procname = "aio-max-nr",
1771 .data = &aio_max_nr,
1772 .maxlen = sizeof(aio_max_nr),
1773 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001774 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001776#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001777#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001778 {
Robert Love0399cb02005-07-13 12:38:18 -04001779 .procname = "inotify",
1780 .mode = 0555,
1781 .child = inotify_table,
1782 },
1783#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001784#ifdef CONFIG_EPOLL
1785 {
1786 .procname = "epoll",
1787 .mode = 0555,
1788 .child = epoll_table,
1789 },
1790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001792 {
Kees Cook800179c2012-07-25 17:29:07 -07001793 .procname = "protected_symlinks",
1794 .data = &sysctl_protected_symlinks,
1795 .maxlen = sizeof(int),
1796 .mode = 0600,
1797 .proc_handler = proc_dointvec_minmax,
1798 .extra1 = &zero,
1799 .extra2 = &one,
1800 },
1801 {
1802 .procname = "protected_hardlinks",
1803 .data = &sysctl_protected_hardlinks,
1804 .maxlen = sizeof(int),
1805 .mode = 0600,
1806 .proc_handler = proc_dointvec_minmax,
1807 .extra1 = &zero,
1808 .extra2 = &one,
1809 },
1810 {
Alan Coxd6e71142005-06-23 00:09:43 -07001811 .procname = "suid_dumpable",
1812 .data = &suid_dumpable,
1813 .maxlen = sizeof(int),
1814 .mode = 0644,
Kees Cook54b50192012-07-30 14:39:18 -07001815 .proc_handler = proc_dointvec_minmax_coredump,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001816 .extra1 = &zero,
1817 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001818 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001819#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1820 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001821 .procname = "binfmt_misc",
1822 .mode = 0555,
Eric W. Biedermanf9bd6732015-05-09 22:09:14 -05001823 .child = sysctl_mount_point,
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001824 },
1825#endif
Jens Axboeb492e952010-05-19 21:03:16 +02001826 {
Jens Axboeff9da692010-06-03 14:54:39 +02001827 .procname = "pipe-max-size",
1828 .data = &pipe_max_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001829 .maxlen = sizeof(int),
1830 .mode = 0644,
Jens Axboeff9da692010-06-03 14:54:39 +02001831 .proc_handler = &pipe_proc_fn,
1832 .extra1 = &pipe_min_size,
Jens Axboeb492e952010-05-19 21:03:16 +02001833 },
Willy Tarreau759c0112016-01-18 16:36:09 +01001834 {
1835 .procname = "pipe-user-pages-hard",
1836 .data = &pipe_user_pages_hard,
1837 .maxlen = sizeof(pipe_user_pages_hard),
1838 .mode = 0644,
1839 .proc_handler = proc_doulongvec_minmax,
1840 },
1841 {
1842 .procname = "pipe-user-pages-soft",
1843 .data = &pipe_user_pages_soft,
1844 .maxlen = sizeof(pipe_user_pages_soft),
1845 .mode = 0644,
1846 .proc_handler = proc_doulongvec_minmax,
1847 },
Eric W. Biedermand2921682016-09-28 00:27:17 -05001848 {
1849 .procname = "mount-max",
1850 .data = &sysctl_mount_max,
1851 .maxlen = sizeof(unsigned int),
1852 .mode = 0644,
1853 .proc_handler = proc_dointvec_minmax,
1854 .extra1 = &one,
1855 },
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001856 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857};
1858
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001859static struct ctl_table debug_table[] = {
Catalin Marinas7ac57a82012-10-08 16:28:16 -07001860#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001861 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001862 .procname = "exception-trace",
1863 .data = &show_unhandled_signals,
1864 .maxlen = sizeof(int),
1865 .mode = 0644,
1866 .proc_handler = proc_dointvec
1867 },
1868#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001869#if defined(CONFIG_OPTPROBES)
1870 {
1871 .procname = "kprobes-optimization",
1872 .data = &sysctl_kprobes_optimization,
1873 .maxlen = sizeof(int),
1874 .mode = 0644,
1875 .proc_handler = proc_kprobes_optimization_handler,
1876 .extra1 = &zero,
1877 .extra2 = &one,
1878 },
1879#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001880 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881};
1882
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001883static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001884 { }
Robert Love0eeca282005-07-12 17:06:03 -04001885};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Eric W. Biedermande4e83bd2012-01-06 03:34:20 -08001887int __init sysctl_init(void)
Al Viro330d57f2005-11-04 10:18:40 +00001888{
Steven Rostedtfd4b6162012-07-30 14:42:48 -07001889 struct ctl_table_header *hdr;
1890
1891 hdr = register_sysctl_table(sysctl_base_table);
1892 kmemleak_not_leak(hdr);
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001893 return 0;
1894}
1895
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001896#endif /* CONFIG_SYSCTL */
1897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898/*
1899 * /proc/sys support
1900 */
1901
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001902#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Kees Cookf8808302014-06-06 14:37:17 -07001904static int _proc_do_string(char *data, int maxlen, int write,
1905 char __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001906 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001907{
1908 size_t len;
1909 char __user *p;
1910 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001911
1912 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001913 *lenp = 0;
1914 return 0;
1915 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001916
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001917 if (write) {
Kees Cookf4aacea2014-06-06 14:37:19 -07001918 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
1919 /* Only continue writes not past the end of buffer. */
1920 len = strlen(data);
1921 if (len > maxlen - 1)
1922 len = maxlen - 1;
1923
1924 if (*ppos > len)
1925 return 0;
1926 len = *ppos;
1927 } else {
1928 /* Start writing from beginning of buffer. */
1929 len = 0;
1930 }
1931
Kees Cook2ca9bb42014-06-06 14:37:18 -07001932 *ppos += *lenp;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001933 p = buffer;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001934 while ((p - buffer) < *lenp && len < maxlen - 1) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001935 if (get_user(c, p++))
1936 return -EFAULT;
1937 if (c == 0 || c == '\n')
1938 break;
Kees Cook2ca9bb42014-06-06 14:37:18 -07001939 data[len++] = c;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001940 }
Kees Cookf8808302014-06-06 14:37:17 -07001941 data[len] = 0;
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001942 } else {
1943 len = strlen(data);
1944 if (len > maxlen)
1945 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001946
1947 if (*ppos > len) {
1948 *lenp = 0;
1949 return 0;
1950 }
1951
1952 data += *ppos;
1953 len -= *ppos;
1954
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001955 if (len > *lenp)
1956 len = *lenp;
1957 if (len)
Kees Cookf8808302014-06-06 14:37:17 -07001958 if (copy_to_user(buffer, data, len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001959 return -EFAULT;
1960 if (len < *lenp) {
Kees Cookf8808302014-06-06 14:37:17 -07001961 if (put_user('\n', buffer + len))
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001962 return -EFAULT;
1963 len++;
1964 }
1965 *lenp = len;
1966 *ppos += len;
1967 }
1968 return 0;
1969}
1970
Kees Cookf4aacea2014-06-06 14:37:19 -07001971static void warn_sysctl_write(struct ctl_table *table)
1972{
1973 pr_warn_once("%s wrote to %s when file position was not 0!\n"
1974 "This will not be supported in the future. To silence this\n"
1975 "warning, set kernel.sysctl_writes_strict = -1\n",
1976 current->comm, table->procname);
1977}
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979/**
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07001980 * proc_first_pos_non_zero_ignore - check if firs position is allowed
1981 * @ppos: file position
1982 * @table: the sysctl table
1983 *
1984 * Returns true if the first position is non-zero and the sysctl_writes_strict
1985 * mode indicates this is not allowed for numeric input types. String proc
1986 * hadlers can ignore the return value.
1987 */
1988static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
1989 struct ctl_table *table)
1990{
1991 if (!*ppos)
1992 return false;
1993
1994 switch (sysctl_writes_strict) {
1995 case SYSCTL_WRITES_STRICT:
1996 return true;
1997 case SYSCTL_WRITES_WARN:
1998 warn_sysctl_write(table);
1999 return false;
2000 default:
2001 return false;
2002 }
2003}
2004
2005/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 * proc_dostring - read a string sysctl
2007 * @table: the sysctl table
2008 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 * @buffer: the user buffer
2010 * @lenp: the size of the user buffer
2011 * @ppos: file position
2012 *
2013 * Reads/writes a string from/to the user buffer. If the kernel
2014 * buffer provided is not large enough to hold the string, the
2015 * string is truncated. The copied string is %NULL-terminated.
2016 * If the string is being read by the user process, it is copied
2017 * and a newline '\n' is added. It is truncated if the buffer is
2018 * not large enough.
2019 *
2020 * Returns 0 on success.
2021 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002022int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 void __user *buffer, size_t *lenp, loff_t *ppos)
2024{
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002025 if (write)
2026 proc_first_pos_non_zero_ignore(ppos, table);
Kees Cookf4aacea2014-06-06 14:37:19 -07002027
Kees Cookf8808302014-06-06 14:37:17 -07002028 return _proc_do_string((char *)(table->data), table->maxlen, write,
2029 (char __user *)buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
Amerigo Wang00b7c332010-05-05 00:26:45 +00002032static size_t proc_skip_spaces(char **buf)
2033{
2034 size_t ret;
2035 char *tmp = skip_spaces(*buf);
2036 ret = tmp - *buf;
2037 *buf = tmp;
2038 return ret;
2039}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002041static void proc_skip_char(char **buf, size_t *size, const char v)
2042{
2043 while (*size) {
2044 if (**buf != v)
2045 break;
2046 (*size)--;
2047 (*buf)++;
2048 }
2049}
2050
Amerigo Wang00b7c332010-05-05 00:26:45 +00002051#define TMPBUFLEN 22
2052/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002053 * proc_get_long - reads an ASCII formatted integer from a user buffer
Amerigo Wang00b7c332010-05-05 00:26:45 +00002054 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002055 * @buf: a kernel buffer
2056 * @size: size of the kernel buffer
2057 * @val: this is where the number will be stored
2058 * @neg: set to %TRUE if number is negative
2059 * @perm_tr: a vector which contains the allowed trailers
2060 * @perm_tr_len: size of the perm_tr vector
2061 * @tr: pointer to store the trailer character
Amerigo Wang00b7c332010-05-05 00:26:45 +00002062 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002063 * In case of success %0 is returned and @buf and @size are updated with
2064 * the amount of bytes read. If @tr is non-NULL and a trailing
2065 * character exists (size is non-zero after returning from this
2066 * function), @tr is updated with the trailing character.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002067 */
2068static int proc_get_long(char **buf, size_t *size,
2069 unsigned long *val, bool *neg,
2070 const char *perm_tr, unsigned perm_tr_len, char *tr)
2071{
2072 int len;
2073 char *p, tmp[TMPBUFLEN];
2074
2075 if (!*size)
2076 return -EINVAL;
2077
2078 len = *size;
2079 if (len > TMPBUFLEN - 1)
2080 len = TMPBUFLEN - 1;
2081
2082 memcpy(tmp, *buf, len);
2083
2084 tmp[len] = 0;
2085 p = tmp;
2086 if (*p == '-' && *size > 1) {
2087 *neg = true;
2088 p++;
2089 } else
2090 *neg = false;
2091 if (!isdigit(*p))
2092 return -EINVAL;
2093
2094 *val = simple_strtoul(p, &p, 0);
2095
2096 len = p - tmp;
2097
2098 /* We don't know if the next char is whitespace thus we may accept
2099 * invalid integers (e.g. 1234...a) or two integers instead of one
2100 * (e.g. 123...1). So lets not allow such large numbers. */
2101 if (len == TMPBUFLEN - 1)
2102 return -EINVAL;
2103
2104 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
2105 return -EINVAL;
2106
2107 if (tr && (len < *size))
2108 *tr = *p;
2109
2110 *buf += len;
2111 *size -= len;
2112
2113 return 0;
2114}
2115
2116/**
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002117 * proc_put_long - converts an integer to a decimal ASCII formatted string
Amerigo Wang00b7c332010-05-05 00:26:45 +00002118 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002119 * @buf: the user buffer
2120 * @size: the size of the user buffer
2121 * @val: the integer to be converted
2122 * @neg: sign of the number, %TRUE for negative
Amerigo Wang00b7c332010-05-05 00:26:45 +00002123 *
Randy Dunlap0fc377b2010-05-21 11:29:53 -07002124 * In case of success %0 is returned and @buf and @size are updated with
2125 * the amount of bytes written.
Amerigo Wang00b7c332010-05-05 00:26:45 +00002126 */
2127static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
2128 bool neg)
2129{
2130 int len;
2131 char tmp[TMPBUFLEN], *p = tmp;
2132
2133 sprintf(p, "%s%lu", neg ? "-" : "", val);
2134 len = strlen(tmp);
2135 if (len > *size)
2136 len = *size;
2137 if (copy_to_user(*buf, tmp, len))
2138 return -EFAULT;
2139 *size -= len;
2140 *buf += len;
2141 return 0;
2142}
2143#undef TMPBUFLEN
2144
2145static int proc_put_char(void __user **buf, size_t *size, char c)
2146{
2147 if (*size) {
2148 char __user **buffer = (char __user **)buf;
2149 if (put_user(c, *buffer))
2150 return -EFAULT;
2151 (*size)--, (*buffer)++;
2152 *buf = *buffer;
2153 }
2154 return 0;
2155}
2156
2157static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 int *valp,
2159 int write, void *data)
2160{
2161 if (write) {
Heinrich Schuchardt230633d2015-04-16 12:48:07 -07002162 if (*negp) {
2163 if (*lvalp > (unsigned long) INT_MAX + 1)
2164 return -EINVAL;
2165 *valp = -*lvalp;
2166 } else {
2167 if (*lvalp > (unsigned long) INT_MAX)
2168 return -EINVAL;
2169 *valp = *lvalp;
2170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else {
2172 int val = *valp;
2173 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002174 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002175 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002177 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 *lvalp = (unsigned long)val;
2179 }
2180 }
2181 return 0;
2182}
2183
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002184static int do_proc_douintvec_conv(unsigned long *lvalp,
2185 unsigned int *valp,
2186 int write, void *data)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002187{
2188 if (write) {
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002189 if (*lvalp > UINT_MAX)
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002190 return -EINVAL;
Liping Zhang425fffd2017-04-07 23:51:07 +08002191 if (*lvalp > UINT_MAX)
2192 return -EINVAL;
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002193 *valp = *lvalp;
2194 } else {
2195 unsigned int val = *valp;
2196 *lvalp = (unsigned long)val;
2197 }
2198 return 0;
2199}
2200
Amerigo Wang00b7c332010-05-05 00:26:45 +00002201static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2202
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002203static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002204 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002205 size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002206 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 int write, void *data),
2208 void *data)
2209{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002210 int *i, vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002211 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002212 char *kbuf = NULL, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Amerigo Wang00b7c332010-05-05 00:26:45 +00002214 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 *lenp = 0;
2216 return 0;
2217 }
2218
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002219 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 vleft = table->maxlen / sizeof(*i);
2221 left = *lenp;
2222
2223 if (!conv)
2224 conv = do_proc_dointvec_conv;
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002227 if (proc_first_pos_non_zero_ignore(ppos, table))
2228 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002229
Amerigo Wang00b7c332010-05-05 00:26:45 +00002230 if (left > PAGE_SIZE - 1)
2231 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002232 p = kbuf = memdup_user_nul(buffer, left);
2233 if (IS_ERR(kbuf))
2234 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002235 }
2236
2237 for (; left && vleft--; i++, first=0) {
2238 unsigned long lval;
2239 bool neg;
2240
2241 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002242 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002243
J. R. Okajima563b0462010-05-25 16:10:14 -07002244 if (!left)
2245 break;
Al Viro70f6cbb2015-12-24 00:13:10 -05002246 err = proc_get_long(&p, &left, &lval, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002247 proc_wspace_sep,
2248 sizeof(proc_wspace_sep), NULL);
2249 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 break;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002251 if (conv(&neg, &lval, i, 1, data)) {
2252 err = -EINVAL;
2253 break;
2254 }
2255 } else {
2256 if (conv(&neg, &lval, i, 0, data)) {
2257 err = -EINVAL;
2258 break;
2259 }
2260 if (!first)
2261 err = proc_put_char(&buffer, &left, '\t');
2262 if (err)
2263 break;
2264 err = proc_put_long(&buffer, &left, lval, neg);
2265 if (err)
2266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002269
2270 if (!write && !first && left && !err)
2271 err = proc_put_char(&buffer, &left, '\n');
J. R. Okajima563b0462010-05-25 16:10:14 -07002272 if (write && !err && left)
Al Viro70f6cbb2015-12-24 00:13:10 -05002273 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002274 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002275 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002276 if (first)
2277 return err ? : -EINVAL;
2278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002280out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002282 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283}
2284
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002285static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002286 void __user *buffer, size_t *lenp, loff_t *ppos,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002287 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002288 int write, void *data),
2289 void *data)
2290{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002291 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002292 buffer, lenp, ppos, conv, data);
2293}
2294
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002295static int do_proc_douintvec_w(unsigned int *tbl_data,
2296 struct ctl_table *table,
2297 void __user *buffer,
2298 size_t *lenp, loff_t *ppos,
2299 int (*conv)(unsigned long *lvalp,
2300 unsigned int *valp,
2301 int write, void *data),
2302 void *data)
2303{
2304 unsigned long lval;
2305 int err = 0;
2306 size_t left;
2307 bool neg;
2308 char *kbuf = NULL, *p;
2309
2310 left = *lenp;
2311
2312 if (proc_first_pos_non_zero_ignore(ppos, table))
2313 goto bail_early;
2314
2315 if (left > PAGE_SIZE - 1)
2316 left = PAGE_SIZE - 1;
2317
2318 p = kbuf = memdup_user_nul(buffer, left);
2319 if (IS_ERR(kbuf))
2320 return -EINVAL;
2321
2322 left -= proc_skip_spaces(&p);
2323 if (!left) {
2324 err = -EINVAL;
2325 goto out_free;
2326 }
2327
2328 err = proc_get_long(&p, &left, &lval, &neg,
2329 proc_wspace_sep,
2330 sizeof(proc_wspace_sep), NULL);
2331 if (err || neg) {
2332 err = -EINVAL;
2333 goto out_free;
2334 }
2335
2336 if (conv(&lval, tbl_data, 1, data)) {
2337 err = -EINVAL;
2338 goto out_free;
2339 }
2340
2341 if (!err && left)
2342 left -= proc_skip_spaces(&p);
2343
2344out_free:
2345 kfree(kbuf);
2346 if (err)
2347 return -EINVAL;
2348
2349 return 0;
2350
2351 /* This is in keeping with old __do_proc_dointvec() */
2352bail_early:
2353 *ppos += *lenp;
2354 return err;
2355}
2356
2357static int do_proc_douintvec_r(unsigned int *tbl_data, void __user *buffer,
2358 size_t *lenp, loff_t *ppos,
2359 int (*conv)(unsigned long *lvalp,
2360 unsigned int *valp,
2361 int write, void *data),
2362 void *data)
2363{
2364 unsigned long lval;
2365 int err = 0;
2366 size_t left;
2367
2368 left = *lenp;
2369
2370 if (conv(&lval, tbl_data, 0, data)) {
2371 err = -EINVAL;
2372 goto out;
2373 }
2374
2375 err = proc_put_long(&buffer, &left, lval, false);
2376 if (err || !left)
2377 goto out;
2378
2379 err = proc_put_char(&buffer, &left, '\n');
2380
2381out:
2382 *lenp -= left;
2383 *ppos += *lenp;
2384
2385 return err;
2386}
2387
2388static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
2389 int write, void __user *buffer,
2390 size_t *lenp, loff_t *ppos,
2391 int (*conv)(unsigned long *lvalp,
2392 unsigned int *valp,
2393 int write, void *data),
2394 void *data)
2395{
2396 unsigned int *i, vleft;
2397
2398 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
2399 *lenp = 0;
2400 return 0;
2401 }
2402
2403 i = (unsigned int *) tbl_data;
2404 vleft = table->maxlen / sizeof(*i);
2405
2406 /*
2407 * Arrays are not supported, keep this simple. *Do not* add
2408 * support for them.
2409 */
2410 if (vleft != 1) {
2411 *lenp = 0;
2412 return -EINVAL;
2413 }
2414
2415 if (!conv)
2416 conv = do_proc_douintvec_conv;
2417
2418 if (write)
2419 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
2420 conv, data);
2421 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
2422}
2423
2424static int do_proc_douintvec(struct ctl_table *table, int write,
2425 void __user *buffer, size_t *lenp, loff_t *ppos,
2426 int (*conv)(unsigned long *lvalp,
2427 unsigned int *valp,
2428 int write, void *data),
2429 void *data)
2430{
2431 return __do_proc_douintvec(table->data, table, write,
2432 buffer, lenp, ppos, conv, data);
2433}
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435/**
2436 * proc_dointvec - read a vector of integers
2437 * @table: the sysctl table
2438 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 * @buffer: the user buffer
2440 * @lenp: the size of the user buffer
2441 * @ppos: file position
2442 *
2443 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2444 * values from/to the user buffer, treated as an ASCII string.
2445 *
2446 * Returns 0 on success.
2447 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002448int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 void __user *buffer, size_t *lenp, loff_t *ppos)
2450{
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07002451 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
2452}
2453
2454/**
2455 * proc_douintvec - read a vector of unsigned integers
2456 * @table: the sysctl table
2457 * @write: %TRUE if this is a write to the sysctl file
2458 * @buffer: the user buffer
2459 * @lenp: the size of the user buffer
2460 * @ppos: file position
2461 *
2462 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2463 * values from/to the user buffer, treated as an ASCII string.
2464 *
2465 * Returns 0 on success.
2466 */
2467int proc_douintvec(struct ctl_table *table, int write,
2468 void __user *buffer, size_t *lenp, loff_t *ppos)
2469{
Luis R. Rodriguez4f2fec02017-07-12 14:33:36 -07002470 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2471 do_proc_douintvec_conv, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002474/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002475 * Taint values can only be increased
2476 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002477 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002478static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002479 void __user *buffer, size_t *lenp, loff_t *ppos)
2480{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002481 struct ctl_table t;
2482 unsigned long tmptaint = get_taint();
2483 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002484
Bastian Blank91fcd412007-04-23 14:41:14 -07002485 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002486 return -EPERM;
2487
Andi Kleen25ddbb12008-10-15 22:01:41 -07002488 t = *table;
2489 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002490 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002491 if (err < 0)
2492 return err;
2493
2494 if (write) {
2495 /*
2496 * Poor man's atomic or. Not worth adding a primitive
2497 * to everyone's atomic.h for this
2498 */
2499 int i;
2500 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2501 if ((tmptaint >> i) & 1)
Rusty Russell373d4d02013-01-21 17:17:39 +10302502 add_taint(i, LOCKDEP_STILL_OK);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002503 }
2504 }
2505
2506 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002507}
2508
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002509#ifdef CONFIG_PRINTK
Kees Cook620f6e82012-04-04 11:40:19 -07002510static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
Richard Weinbergerbfdc0b42011-03-23 16:43:11 -07002511 void __user *buffer, size_t *lenp, loff_t *ppos)
2512{
2513 if (write && !capable(CAP_SYS_ADMIN))
2514 return -EPERM;
2515
2516 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2517}
2518#endif
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520struct do_proc_dointvec_minmax_conv_param {
2521 int *min;
2522 int *max;
2523};
2524
Amerigo Wang00b7c332010-05-05 00:26:45 +00002525static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2526 int *valp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 int write, void *data)
2528{
2529 struct do_proc_dointvec_minmax_conv_param *param = data;
2530 if (write) {
2531 int val = *negp ? -*lvalp : *lvalp;
2532 if ((param->min && *param->min > val) ||
2533 (param->max && *param->max < val))
2534 return -EINVAL;
2535 *valp = val;
2536 } else {
2537 int val = *valp;
2538 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002539 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002540 *lvalp = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002542 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 *lvalp = (unsigned long)val;
2544 }
2545 }
2546 return 0;
2547}
2548
2549/**
2550 * proc_dointvec_minmax - read a vector of integers with min/max values
2551 * @table: the sysctl table
2552 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 * @buffer: the user buffer
2554 * @lenp: the size of the user buffer
2555 * @ppos: file position
2556 *
2557 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2558 * values from/to the user buffer, treated as an ASCII string.
2559 *
2560 * This routine will ensure the values are within the range specified by
2561 * table->extra1 (min) and table->extra2 (max).
2562 *
2563 * Returns 0 on success.
2564 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002565int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 void __user *buffer, size_t *lenp, loff_t *ppos)
2567{
2568 struct do_proc_dointvec_minmax_conv_param param = {
2569 .min = (int *) table->extra1,
2570 .max = (int *) table->extra2,
2571 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002572 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 do_proc_dointvec_minmax_conv, &param);
2574}
2575
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07002576struct do_proc_douintvec_minmax_conv_param {
2577 unsigned int *min;
2578 unsigned int *max;
2579};
2580
2581static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
2582 unsigned int *valp,
2583 int write, void *data)
2584{
2585 struct do_proc_douintvec_minmax_conv_param *param = data;
2586
2587 if (write) {
2588 unsigned int val = *lvalp;
2589
2590 if ((param->min && *param->min > val) ||
2591 (param->max && *param->max < val))
2592 return -ERANGE;
2593
2594 if (*lvalp > UINT_MAX)
2595 return -EINVAL;
2596 *valp = val;
2597 } else {
2598 unsigned int val = *valp;
2599 *lvalp = (unsigned long) val;
2600 }
2601
2602 return 0;
2603}
2604
2605/**
2606 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2607 * @table: the sysctl table
2608 * @write: %TRUE if this is a write to the sysctl file
2609 * @buffer: the user buffer
2610 * @lenp: the size of the user buffer
2611 * @ppos: file position
2612 *
2613 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2614 * values from/to the user buffer, treated as an ASCII string. Negative
2615 * strings are not allowed.
2616 *
2617 * This routine will ensure the values are within the range specified by
2618 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2619 * check for UINT_MAX to avoid having to support wrap around uses from
2620 * userspace.
2621 *
2622 * Returns 0 on success.
2623 */
2624int proc_douintvec_minmax(struct ctl_table *table, int write,
2625 void __user *buffer, size_t *lenp, loff_t *ppos)
2626{
2627 struct do_proc_douintvec_minmax_conv_param param = {
2628 .min = (unsigned int *) table->extra1,
2629 .max = (unsigned int *) table->extra2,
2630 };
2631 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2632 do_proc_douintvec_minmax_conv, &param);
2633}
2634
Kees Cook54b50192012-07-30 14:39:18 -07002635static void validate_coredump_safety(void)
2636{
Alex Kelly046d6622012-10-04 17:15:23 -07002637#ifdef CONFIG_COREDUMP
Kees Cooke579d2c2013-02-27 17:03:15 -08002638 if (suid_dumpable == SUID_DUMP_ROOT &&
Kees Cook54b50192012-07-30 14:39:18 -07002639 core_pattern[0] != '/' && core_pattern[0] != '|') {
Alexey Dobriyan760c6a92016-12-14 15:04:14 -08002640 printk(KERN_WARNING
2641"Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2642"Pipe handler or fully qualified core dump path required.\n"
2643"Set kernel.core_pattern before fs.suid_dumpable.\n"
2644 );
Kees Cook54b50192012-07-30 14:39:18 -07002645 }
Alex Kelly046d6622012-10-04 17:15:23 -07002646#endif
Kees Cook54b50192012-07-30 14:39:18 -07002647}
2648
2649static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2650 void __user *buffer, size_t *lenp, loff_t *ppos)
2651{
2652 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2653 if (!error)
2654 validate_coredump_safety();
2655 return error;
2656}
2657
Alex Kelly046d6622012-10-04 17:15:23 -07002658#ifdef CONFIG_COREDUMP
Kees Cook54b50192012-07-30 14:39:18 -07002659static int proc_dostring_coredump(struct ctl_table *table, int write,
2660 void __user *buffer, size_t *lenp, loff_t *ppos)
2661{
2662 int error = proc_dostring(table, write, buffer, lenp, ppos);
2663 if (!error)
2664 validate_coredump_safety();
2665 return error;
2666}
Alex Kelly046d6622012-10-04 17:15:23 -07002667#endif
Kees Cook54b50192012-07-30 14:39:18 -07002668
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002669static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 void __user *buffer,
2671 size_t *lenp, loff_t *ppos,
2672 unsigned long convmul,
2673 unsigned long convdiv)
2674{
Amerigo Wang00b7c332010-05-05 00:26:45 +00002675 unsigned long *i, *min, *max;
2676 int vleft, first = 1, err = 0;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002677 size_t left;
Al Viro70f6cbb2015-12-24 00:13:10 -05002678 char *kbuf = NULL, *p;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002679
2680 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 *lenp = 0;
2682 return 0;
2683 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002684
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002685 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 min = (unsigned long *) table->extra1;
2687 max = (unsigned long *) table->extra2;
2688 vleft = table->maxlen / sizeof(unsigned long);
2689 left = *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002690
2691 if (write) {
Luis R. Rodriguezd383d482017-07-12 14:33:33 -07002692 if (proc_first_pos_non_zero_ignore(ppos, table))
2693 goto out;
Kees Cookf4aacea2014-06-06 14:37:19 -07002694
Amerigo Wang00b7c332010-05-05 00:26:45 +00002695 if (left > PAGE_SIZE - 1)
2696 left = PAGE_SIZE - 1;
Al Viro70f6cbb2015-12-24 00:13:10 -05002697 p = kbuf = memdup_user_nul(buffer, left);
2698 if (IS_ERR(kbuf))
2699 return PTR_ERR(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002700 }
2701
Eric Dumazet27b3d802010-10-07 12:59:29 -07002702 for (; left && vleft--; i++, first = 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002703 unsigned long val;
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 if (write) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002706 bool neg;
2707
Al Viro70f6cbb2015-12-24 00:13:10 -05002708 left -= proc_skip_spaces(&p);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002709
Al Viro70f6cbb2015-12-24 00:13:10 -05002710 err = proc_get_long(&p, &left, &val, &neg,
Amerigo Wang00b7c332010-05-05 00:26:45 +00002711 proc_wspace_sep,
2712 sizeof(proc_wspace_sep), NULL);
2713 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 break;
2715 if (neg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 continue;
Eric Dumazetff9f8a72017-01-25 18:20:55 -08002717 val = convmul * val / convdiv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 if ((min && val < *min) || (max && val > *max))
2719 continue;
2720 *i = val;
2721 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002722 val = convdiv * (*i) / convmul;
Chen Gang78338192013-11-12 15:11:21 -08002723 if (!first) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002724 err = proc_put_char(&buffer, &left, '\t');
Chen Gang78338192013-11-12 15:11:21 -08002725 if (err)
2726 break;
2727 }
Amerigo Wang00b7c332010-05-05 00:26:45 +00002728 err = proc_put_long(&buffer, &left, val, false);
2729 if (err)
2730 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
2732 }
2733
Amerigo Wang00b7c332010-05-05 00:26:45 +00002734 if (!write && !first && left && !err)
2735 err = proc_put_char(&buffer, &left, '\n');
2736 if (write && !err)
Al Viro70f6cbb2015-12-24 00:13:10 -05002737 left -= proc_skip_spaces(&p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05002739 kfree(kbuf);
Amerigo Wang00b7c332010-05-05 00:26:45 +00002740 if (first)
2741 return err ? : -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 *lenp -= left;
Kees Cookf4aacea2014-06-06 14:37:19 -07002744out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 *ppos += *lenp;
Amerigo Wang00b7c332010-05-05 00:26:45 +00002746 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002749static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002750 void __user *buffer,
2751 size_t *lenp, loff_t *ppos,
2752 unsigned long convmul,
2753 unsigned long convdiv)
2754{
2755 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002756 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002757}
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759/**
2760 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2761 * @table: the sysctl table
2762 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 * @buffer: the user buffer
2764 * @lenp: the size of the user buffer
2765 * @ppos: file position
2766 *
2767 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2768 * values from/to the user buffer, treated as an ASCII string.
2769 *
2770 * This routine will ensure the values are within the range specified by
2771 * table->extra1 (min) and table->extra2 (max).
2772 *
2773 * Returns 0 on success.
2774 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002775int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 void __user *buffer, size_t *lenp, loff_t *ppos)
2777{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002778 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
2780
2781/**
2782 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2783 * @table: the sysctl table
2784 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 * @buffer: the user buffer
2786 * @lenp: the size of the user buffer
2787 * @ppos: file position
2788 *
2789 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2790 * values from/to the user buffer, treated as an ASCII string. The values
2791 * are treated as milliseconds, and converted to jiffies when they are stored.
2792 *
2793 * This routine will ensure the values are within the range specified by
2794 * table->extra1 (min) and table->extra2 (max).
2795 *
2796 * Returns 0 on success.
2797 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002798int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 void __user *buffer,
2800 size_t *lenp, loff_t *ppos)
2801{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002802 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 lenp, ppos, HZ, 1000l);
2804}
2805
2806
Amerigo Wang00b7c332010-05-05 00:26:45 +00002807static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 int *valp,
2809 int write, void *data)
2810{
2811 if (write) {
Gao Feng63259452017-05-08 15:54:58 -07002812 if (*lvalp > INT_MAX / HZ)
Bart Samwelcba9f332006-03-24 03:15:50 -08002813 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2815 } else {
2816 int val = *valp;
2817 unsigned long lval;
2818 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002819 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002820 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002822 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 lval = (unsigned long)val;
2824 }
2825 *lvalp = lval / HZ;
2826 }
2827 return 0;
2828}
2829
Amerigo Wang00b7c332010-05-05 00:26:45 +00002830static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 int *valp,
2832 int write, void *data)
2833{
2834 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002835 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2836 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2838 } else {
2839 int val = *valp;
2840 unsigned long lval;
2841 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002842 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002843 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002845 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 lval = (unsigned long)val;
2847 }
2848 *lvalp = jiffies_to_clock_t(lval);
2849 }
2850 return 0;
2851}
2852
Amerigo Wang00b7c332010-05-05 00:26:45 +00002853static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 int *valp,
2855 int write, void *data)
2856{
2857 if (write) {
Francesco Fuscod738ce82013-07-24 10:39:07 +02002858 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2859
2860 if (jif > INT_MAX)
2861 return 1;
2862 *valp = (int)jif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 } else {
2864 int val = *valp;
2865 unsigned long lval;
2866 if (val < 0) {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002867 *negp = true;
Ilya Dryomov9a5bc722015-09-09 15:39:06 -07002868 lval = -(unsigned long)val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 } else {
Amerigo Wang00b7c332010-05-05 00:26:45 +00002870 *negp = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 lval = (unsigned long)val;
2872 }
2873 *lvalp = jiffies_to_msecs(lval);
2874 }
2875 return 0;
2876}
2877
2878/**
2879 * proc_dointvec_jiffies - read a vector of integers as seconds
2880 * @table: the sysctl table
2881 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 * @buffer: the user buffer
2883 * @lenp: the size of the user buffer
2884 * @ppos: file position
2885 *
2886 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2887 * values from/to the user buffer, treated as an ASCII string.
2888 * The values read are assumed to be in seconds, and are converted into
2889 * jiffies.
2890 *
2891 * Returns 0 on success.
2892 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002893int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 void __user *buffer, size_t *lenp, loff_t *ppos)
2895{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002896 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 do_proc_dointvec_jiffies_conv,NULL);
2898}
2899
2900/**
2901 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2902 * @table: the sysctl table
2903 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 * @buffer: the user buffer
2905 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002906 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 *
2908 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2909 * values from/to the user buffer, treated as an ASCII string.
2910 * The values read are assumed to be in 1/USER_HZ seconds, and
2911 * are converted into jiffies.
2912 *
2913 * Returns 0 on success.
2914 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002915int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 void __user *buffer, size_t *lenp, loff_t *ppos)
2917{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002918 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 do_proc_dointvec_userhz_jiffies_conv,NULL);
2920}
2921
2922/**
2923 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2924 * @table: the sysctl table
2925 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 * @buffer: the user buffer
2927 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002928 * @ppos: file position
2929 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 *
2931 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2932 * values from/to the user buffer, treated as an ASCII string.
2933 * The values read are assumed to be in 1/1000 seconds, and
2934 * are converted into jiffies.
2935 *
2936 * Returns 0 on success.
2937 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002938int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 void __user *buffer, size_t *lenp, loff_t *ppos)
2940{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002941 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 do_proc_dointvec_ms_jiffies_conv, NULL);
2943}
2944
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002945static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002946 void __user *buffer, size_t *lenp, loff_t *ppos)
2947{
2948 struct pid *new_pid;
2949 pid_t tmp;
2950 int r;
2951
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002952 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002953
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002954 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002955 lenp, ppos, NULL, NULL);
2956 if (r || !write)
2957 return r;
2958
2959 new_pid = find_get_pid(tmp);
2960 if (!new_pid)
2961 return -ESRCH;
2962
2963 put_pid(xchg(&cad_pid, new_pid));
2964 return 0;
2965}
2966
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002967/**
2968 * proc_do_large_bitmap - read/write from/to a large bitmap
2969 * @table: the sysctl table
2970 * @write: %TRUE if this is a write to the sysctl file
2971 * @buffer: the user buffer
2972 * @lenp: the size of the user buffer
2973 * @ppos: file position
2974 *
2975 * The bitmap is stored at table->data and the bitmap length (in bits)
2976 * in table->maxlen.
2977 *
2978 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
2979 * large bitmaps may be represented in a compact manner. Writing into
2980 * the file will clear the bitmap then update it with the given input.
2981 *
2982 * Returns 0 on success.
2983 */
2984int proc_do_large_bitmap(struct ctl_table *table, int write,
2985 void __user *buffer, size_t *lenp, loff_t *ppos)
2986{
2987 int err = 0;
2988 bool first = 1;
2989 size_t left = *lenp;
2990 unsigned long bitmap_len = table->maxlen;
WANG Cong122ff242014-05-12 16:04:53 -07002991 unsigned long *bitmap = *(unsigned long **) table->data;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002992 unsigned long *tmp_bitmap = NULL;
2993 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
2994
WANG Cong122ff242014-05-12 16:04:53 -07002995 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
Octavian Purdila9f977fb2010-05-05 00:26:55 +00002996 *lenp = 0;
2997 return 0;
2998 }
2999
3000 if (write) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003001 char *kbuf, *p;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003002
3003 if (left > PAGE_SIZE - 1)
3004 left = PAGE_SIZE - 1;
3005
Al Viro70f6cbb2015-12-24 00:13:10 -05003006 p = kbuf = memdup_user_nul(buffer, left);
3007 if (IS_ERR(kbuf))
3008 return PTR_ERR(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003009
3010 tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long),
3011 GFP_KERNEL);
3012 if (!tmp_bitmap) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003013 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003014 return -ENOMEM;
3015 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003016 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003017 while (!err && left) {
3018 unsigned long val_a, val_b;
3019 bool neg;
3020
Al Viro70f6cbb2015-12-24 00:13:10 -05003021 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003022 sizeof(tr_a), &c);
3023 if (err)
3024 break;
3025 if (val_a >= bitmap_len || neg) {
3026 err = -EINVAL;
3027 break;
3028 }
3029
3030 val_b = val_a;
3031 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003032 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003033 left--;
3034 }
3035
3036 if (c == '-') {
Al Viro70f6cbb2015-12-24 00:13:10 -05003037 err = proc_get_long(&p, &left, &val_b,
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003038 &neg, tr_b, sizeof(tr_b),
3039 &c);
3040 if (err)
3041 break;
3042 if (val_b >= bitmap_len || neg ||
3043 val_a > val_b) {
3044 err = -EINVAL;
3045 break;
3046 }
3047 if (left) {
Al Viro70f6cbb2015-12-24 00:13:10 -05003048 p++;
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003049 left--;
3050 }
3051 }
3052
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003053 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003054 first = 0;
Al Viro70f6cbb2015-12-24 00:13:10 -05003055 proc_skip_char(&p, &left, '\n');
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003056 }
Al Viro70f6cbb2015-12-24 00:13:10 -05003057 kfree(kbuf);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003058 } else {
3059 unsigned long bit_a, bit_b = 0;
3060
3061 while (left) {
3062 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
3063 if (bit_a >= bitmap_len)
3064 break;
3065 bit_b = find_next_zero_bit(bitmap, bitmap_len,
3066 bit_a + 1) - 1;
3067
3068 if (!first) {
3069 err = proc_put_char(&buffer, &left, ',');
3070 if (err)
3071 break;
3072 }
3073 err = proc_put_long(&buffer, &left, bit_a, false);
3074 if (err)
3075 break;
3076 if (bit_a != bit_b) {
3077 err = proc_put_char(&buffer, &left, '-');
3078 if (err)
3079 break;
3080 err = proc_put_long(&buffer, &left, bit_b, false);
3081 if (err)
3082 break;
3083 }
3084
3085 first = 0; bit_b++;
3086 }
3087 if (!err)
3088 err = proc_put_char(&buffer, &left, '\n');
3089 }
3090
3091 if (!err) {
3092 if (write) {
3093 if (*ppos)
3094 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
3095 else
Akinobu Mita5a04cca2012-03-28 14:42:50 -07003096 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
Octavian Purdila9f977fb2010-05-05 00:26:55 +00003097 }
3098 kfree(tmp_bitmap);
3099 *lenp -= left;
3100 *ppos += *lenp;
3101 return 0;
3102 } else {
3103 kfree(tmp_bitmap);
3104 return err;
3105 }
3106}
3107
Jovi Zhang55610502011-01-12 17:00:45 -08003108#else /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003110int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 void __user *buffer, size_t *lenp, loff_t *ppos)
3112{
3113 return -ENOSYS;
3114}
3115
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003116int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 void __user *buffer, size_t *lenp, loff_t *ppos)
3118{
3119 return -ENOSYS;
3120}
3121
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003122int proc_douintvec(struct ctl_table *table, int write,
3123 void __user *buffer, size_t *lenp, loff_t *ppos)
3124{
3125 return -ENOSYS;
3126}
3127
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003128int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 void __user *buffer, size_t *lenp, loff_t *ppos)
3130{
3131 return -ENOSYS;
3132}
3133
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003134int proc_douintvec_minmax(struct ctl_table *table, int write,
3135 void __user *buffer, size_t *lenp, loff_t *ppos)
3136{
3137 return -ENOSYS;
3138}
3139
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003140int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 void __user *buffer, size_t *lenp, loff_t *ppos)
3142{
3143 return -ENOSYS;
3144}
3145
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003146int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 void __user *buffer, size_t *lenp, loff_t *ppos)
3148{
3149 return -ENOSYS;
3150}
3151
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003152int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 void __user *buffer, size_t *lenp, loff_t *ppos)
3154{
3155 return -ENOSYS;
3156}
3157
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07003158int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 void __user *buffer, size_t *lenp, loff_t *ppos)
3160{
3161 return -ENOSYS;
3162}
3163
Eric W. Biedermand8217f02007-10-18 03:05:22 -07003164int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 void __user *buffer,
3166 size_t *lenp, loff_t *ppos)
3167{
3168 return -ENOSYS;
3169}
3170
3171
Jovi Zhang55610502011-01-12 17:00:45 -08003172#endif /* CONFIG_PROC_SYSCTL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174/*
3175 * No sense putting this after each symbol definition, twice,
3176 * exception granted :-)
3177 */
3178EXPORT_SYMBOL(proc_dointvec);
Subash Abhinov Kasiviswanathane7d316a2016-08-25 15:16:51 -07003179EXPORT_SYMBOL(proc_douintvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180EXPORT_SYMBOL(proc_dointvec_jiffies);
3181EXPORT_SYMBOL(proc_dointvec_minmax);
Luis R. Rodriguez61d9b562017-07-12 14:33:40 -07003182EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3184EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3185EXPORT_SYMBOL(proc_dostring);
3186EXPORT_SYMBOL(proc_doulongvec_minmax);
3187EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);