mm: move MAP_SYNC to asm-generic/mman-common.h
[linux-2.6-block.git] / kernel / sysctl.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * sysctl.c: General linux system control interface
4 *
5 * Begun 24 March 1995, Stephen Tweedie
6 * Added /proc support, Dec 1995
7 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
8 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
9 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
10 * Dynamic registration fixes, Stephen Tweedie.
11 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
12 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
13 * Horn.
14 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
15 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
16 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
17 * Wendling.
18 * The list_for_each() macro wasn't appropriate for the sysctl loop.
19 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
20 */
21
1da177e4 22#include <linux/module.h>
e2e40f2c 23#include <linux/aio.h>
1da177e4
LT
24#include <linux/mm.h>
25#include <linux/swap.h>
26#include <linux/slab.h>
27#include <linux/sysctl.h>
5a04cca6 28#include <linux/bitmap.h>
d33ed52d 29#include <linux/signal.h>
455cd5ab 30#include <linux/printk.h>
1da177e4 31#include <linux/proc_fs.h>
72c2d582 32#include <linux/security.h>
1da177e4 33#include <linux/ctype.h>
fd4b616b 34#include <linux/kmemleak.h>
62239ac2 35#include <linux/fs.h>
1da177e4
LT
36#include <linux/init.h>
37#include <linux/kernel.h>
0296b228 38#include <linux/kobject.h>
20380731 39#include <linux/net.h>
1da177e4
LT
40#include <linux/sysrq.h>
41#include <linux/highuid.h>
42#include <linux/writeback.h>
3fff4c42 43#include <linux/ratelimit.h>
76ab0f53 44#include <linux/compaction.h>
1da177e4 45#include <linux/hugetlb.h>
1da177e4 46#include <linux/initrd.h>
0b77f5bf 47#include <linux/key.h>
1da177e4
LT
48#include <linux/times.h>
49#include <linux/limits.h>
50#include <linux/dcache.h>
6e006701 51#include <linux/dnotify.h>
1da177e4 52#include <linux/syscalls.h>
c748e134 53#include <linux/vmstat.h>
c255d844
PM
54#include <linux/nfs_fs.h>
55#include <linux/acpi.h>
10a0a8d4 56#include <linux/reboot.h>
b0fc494f 57#include <linux/ftrace.h>
cdd6c482 58#include <linux/perf_event.h>
b2be84df 59#include <linux/kprobes.h>
b492e95b 60#include <linux/pipe_fs_i.h>
8e4228e1 61#include <linux/oom.h>
17f60a7d 62#include <linux/kmod.h>
73efc039 63#include <linux/capability.h>
40401530 64#include <linux/binfmts.h>
cf4aebc2 65#include <linux/sched/sysctl.h>
f7ccbae4 66#include <linux/sched/coredump.h>
7984754b 67#include <linux/kexec.h>
1be7f75d 68#include <linux/bpf.h>
d2921684 69#include <linux/mount.h>
cefdca0a 70#include <linux/userfaultfd_k.h>
1da177e4 71
7f2923c4
CB
72#include "../lib/kstrtox.h"
73
7c0f6ba6 74#include <linux/uaccess.h>
1da177e4
LT
75#include <asm/processor.h>
76
29cbc78b
AK
77#ifdef CONFIG_X86
78#include <asm/nmi.h>
0741f4d2 79#include <asm/stacktrace.h>
6e7c4025 80#include <asm/io.h>
29cbc78b 81#endif
d550bbd4
DH
82#ifdef CONFIG_SPARC
83#include <asm/setup.h>
84#endif
c55b7c3e
DY
85#ifdef CONFIG_BSD_PROCESS_ACCT
86#include <linux/acct.h>
87#endif
4f0e056f
DY
88#ifdef CONFIG_RT_MUTEXES
89#include <linux/rtmutex.h>
90#endif
2edf5e49
DY
91#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
92#include <linux/lockdep.h>
93#endif
15485a46
DY
94#ifdef CONFIG_CHR_DEV_SG
95#include <scsi/sg.h>
96#endif
964c9dff
AP
97#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
98#include <linux/stackleak.h>
99#endif
58687acb 100#ifdef CONFIG_LOCKUP_DETECTOR
504d7cf1
DZ
101#include <linux/nmi.h>
102#endif
103
1da177e4
LT
104#if defined(CONFIG_SYSCTL)
105
106/* External variables not in a header file. */
d6e71144 107extern int suid_dumpable;
046d662f
AK
108#ifdef CONFIG_COREDUMP
109extern int core_uses_pid;
1da177e4 110extern char core_pattern[];
a293980c 111extern unsigned int core_pipe_limit;
046d662f 112#endif
1da177e4 113extern int pid_max;
1da177e4 114extern int pid_max_min, pid_max_max;
8ad4b1fb 115extern int percpu_pagelist_fraction;
9745512c 116extern int latencytop_enabled;
9b80a184 117extern unsigned int sysctl_nr_open_min, sysctl_nr_open_max;
dd8632a1
PM
118#ifndef CONFIG_MMU
119extern int sysctl_nr_trim_pages;
120#endif
1da177e4 121
c4f3b63f 122/* Constants used for minimum and maximum */
2508ce18 123#ifdef CONFIG_LOCKUP_DETECTOR
c4f3b63f
RT
124static int sixty = 60;
125#endif
126
270750db
AT
127static int __maybe_unused neg_one = -1;
128
c4f3b63f 129static int zero;
cd5f9a4c
LT
130static int __maybe_unused one = 1;
131static int __maybe_unused two = 2;
5509a5d2 132static int __maybe_unused four = 4;
9002b214 133static unsigned long zero_ul;
fc3501d4 134static unsigned long one_ul = 1;
32a5ad9c 135static unsigned long long_max = LONG_MAX;
c4f3b63f 136static int one_hundred = 100;
795ae7a0 137static int one_thousand = 1000;
af91322e
DY
138#ifdef CONFIG_PRINTK
139static int ten_thousand = 10000;
140#endif
c5dfd78e
ACM
141#ifdef CONFIG_PERF_EVENTS
142static int six_hundred_forty_kb = 640 * 1024;
143#endif
c4f3b63f 144
9e4a5bda
AR
145/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
146static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
147
1da177e4
LT
148/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
149static int maxolduid = 65535;
150static int minolduid;
151
152static int ngroups_max = NGROUPS_MAX;
73efc039 153static const int cap_last_cap = CAP_LAST_CAP;
1da177e4 154
a2e51445
DV
155/*
156 * This is needed for proc_doulongvec_minmax of sysctl_hung_task_timeout_secs
157 * and hung_task_check_interval_secs
158 */
80df2847
LH
159#ifdef CONFIG_DETECT_HUNG_TASK
160static unsigned long hung_task_timeout_max = (LONG_MAX/HZ);
161#endif
162
d14f1729
DY
163#ifdef CONFIG_INOTIFY_USER
164#include <linux/inotify.h>
165#endif
72c57ed5 166#ifdef CONFIG_SPARC
1da177e4
LT
167#endif
168
169#ifdef __hppa__
170extern int pwrsw_enabled;
bf14e3b9
VG
171#endif
172
173#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
1da177e4
LT
174extern int unaligned_enabled;
175#endif
1da177e4 176
d2b176ed 177#ifdef CONFIG_IA64
88fc241f 178extern int unaligned_dump_stack;
d2b176ed
JS
179#endif
180
b6fca725
VG
181#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
182extern int no_unaligned_warning;
183#endif
184
d6f8ff73 185#ifdef CONFIG_PROC_SYSCTL
f4aacea2 186
a19ac337
LR
187/**
188 * enum sysctl_writes_mode - supported sysctl write modes
189 *
190 * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
65f50f25
WH
191 * to be written, and multiple writes on the same sysctl file descriptor
192 * will rewrite the sysctl value, regardless of file position. No warning
193 * is issued when the initial position is not 0.
a19ac337 194 * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
65f50f25 195 * not 0.
a19ac337 196 * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
65f50f25
WH
197 * file position 0 and the value must be fully contained in the buffer
198 * sent to the write syscall. If dealing with strings respect the file
199 * position, but restrict this to the max length of the buffer, anything
200 * passed the max length will be ignored. Multiple writes will append
201 * to the buffer.
a19ac337
LR
202 *
203 * These write modes control how current file position affects the behavior of
204 * updating sysctl values through the proc interface on each write.
205 */
206enum sysctl_writes_mode {
207 SYSCTL_WRITES_LEGACY = -1,
208 SYSCTL_WRITES_WARN = 0,
209 SYSCTL_WRITES_STRICT = 1,
210};
f4aacea2 211
a19ac337 212static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
f4aacea2 213
8d65af78 214static int proc_do_cad_pid(struct ctl_table *table, int write,
9ec52099 215 void __user *buffer, size_t *lenp, loff_t *ppos);
8d65af78 216static int proc_taint(struct ctl_table *table, int write,
34f5a398 217 void __user *buffer, size_t *lenp, loff_t *ppos);
d6f8ff73 218#endif
9ec52099 219
bfdc0b49 220#ifdef CONFIG_PRINTK
620f6e8e 221static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
bfdc0b49
RW
222 void __user *buffer, size_t *lenp, loff_t *ppos);
223#endif
224
54b50199
KC
225static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
226 void __user *buffer, size_t *lenp, loff_t *ppos);
046d662f 227#ifdef CONFIG_COREDUMP
54b50199
KC
228static int proc_dostring_coredump(struct ctl_table *table, int write,
229 void __user *buffer, size_t *lenp, loff_t *ppos);
046d662f 230#endif
319e0a21
EB
231static int proc_dopipe_max_size(struct ctl_table *table, int write,
232 void __user *buffer, size_t *lenp, loff_t *ppos);
54b50199 233
97f5f0cd 234#ifdef CONFIG_MAGIC_SYSRQ
5f733e8a 235/* Note: sysrq code uses its own private copy */
8eaede49 236static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
97f5f0cd 237
6f8fd1d7 238static int sysrq_sysctl_handler(struct ctl_table *table, int write,
97f5f0cd
DT
239 void __user *buffer, size_t *lenp,
240 loff_t *ppos)
241{
242 int error;
243
244 error = proc_dointvec(table, write, buffer, lenp, ppos);
245 if (error)
246 return error;
247
248 if (write)
249 sysrq_toggle_support(__sysrq_enabled);
250
251 return 0;
252}
253
254#endif
255
d8217f07
EB
256static struct ctl_table kern_table[];
257static struct ctl_table vm_table[];
258static struct ctl_table fs_table[];
259static struct ctl_table debug_table[];
260static struct ctl_table dev_table[];
261extern struct ctl_table random_table[];
7ef9964e
DL
262#ifdef CONFIG_EPOLL
263extern struct ctl_table epoll_table[];
264#endif
1da177e4 265
ceb18132
LR
266#ifdef CONFIG_FW_LOADER_USER_HELPER
267extern struct ctl_table firmware_config_table[];
268#endif
269
1da177e4
LT
270#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
271int sysctl_legacy_va_layout;
272#endif
273
1da177e4
LT
274/* The default sysctl tables: */
275
de4e83bd 276static struct ctl_table sysctl_base_table[] = {
1da177e4 277 {
1da177e4
LT
278 .procname = "kernel",
279 .mode = 0555,
280 .child = kern_table,
281 },
282 {
1da177e4
LT
283 .procname = "vm",
284 .mode = 0555,
285 .child = vm_table,
286 },
1da177e4 287 {
1da177e4
LT
288 .procname = "fs",
289 .mode = 0555,
290 .child = fs_table,
291 },
292 {
1da177e4
LT
293 .procname = "debug",
294 .mode = 0555,
295 .child = debug_table,
296 },
297 {
1da177e4
LT
298 .procname = "dev",
299 .mode = 0555,
300 .child = dev_table,
301 },
6fce56ec 302 { }
1da177e4
LT
303};
304
77e54a1f 305#ifdef CONFIG_SCHED_DEBUG
73c4efd2
ED
306static int min_sched_granularity_ns = 100000; /* 100 usecs */
307static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
308static int min_wakeup_granularity_ns; /* 0 usecs */
309static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
cbee9f88 310#ifdef CONFIG_SMP
1983a922
CE
311static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
312static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
cbee9f88
PZ
313#endif /* CONFIG_SMP */
314#endif /* CONFIG_SCHED_DEBUG */
77e54a1f 315
5e771905
MG
316#ifdef CONFIG_COMPACTION
317static int min_extfrag_threshold;
318static int max_extfrag_threshold = 1000;
319#endif
320
d8217f07 321static struct ctl_table kern_table[] = {
2bba22c5 322 {
2bba22c5
MG
323 .procname = "sched_child_runs_first",
324 .data = &sysctl_sched_child_runs_first,
325 .maxlen = sizeof(unsigned int),
326 .mode = 0644,
6d456111 327 .proc_handler = proc_dointvec,
2bba22c5 328 },
77e54a1f
IM
329#ifdef CONFIG_SCHED_DEBUG
330 {
b2be5e96
PZ
331 .procname = "sched_min_granularity_ns",
332 .data = &sysctl_sched_min_granularity,
77e54a1f
IM
333 .maxlen = sizeof(unsigned int),
334 .mode = 0644,
702a7c76 335 .proc_handler = sched_proc_update_handler,
b2be5e96
PZ
336 .extra1 = &min_sched_granularity_ns,
337 .extra2 = &max_sched_granularity_ns,
77e54a1f 338 },
21805085 339 {
21805085
PZ
340 .procname = "sched_latency_ns",
341 .data = &sysctl_sched_latency,
342 .maxlen = sizeof(unsigned int),
343 .mode = 0644,
702a7c76 344 .proc_handler = sched_proc_update_handler,
21805085
PZ
345 .extra1 = &min_sched_granularity_ns,
346 .extra2 = &max_sched_granularity_ns,
347 },
77e54a1f 348 {
77e54a1f
IM
349 .procname = "sched_wakeup_granularity_ns",
350 .data = &sysctl_sched_wakeup_granularity,
351 .maxlen = sizeof(unsigned int),
352 .mode = 0644,
702a7c76 353 .proc_handler = sched_proc_update_handler,
77e54a1f
IM
354 .extra1 = &min_wakeup_granularity_ns,
355 .extra2 = &max_wakeup_granularity_ns,
356 },
cbee9f88 357#ifdef CONFIG_SMP
1983a922 358 {
1983a922
CE
359 .procname = "sched_tunable_scaling",
360 .data = &sysctl_sched_tunable_scaling,
361 .maxlen = sizeof(enum sched_tunable_scaling),
362 .mode = 0644,
702a7c76 363 .proc_handler = sched_proc_update_handler,
1983a922
CE
364 .extra1 = &min_sched_tunable_scaling,
365 .extra2 = &max_sched_tunable_scaling,
2398f2c6 366 },
da84d961 367 {
d00535db 368 .procname = "sched_migration_cost_ns",
da84d961
IM
369 .data = &sysctl_sched_migration_cost,
370 .maxlen = sizeof(unsigned int),
371 .mode = 0644,
6d456111 372 .proc_handler = proc_dointvec,
da84d961 373 },
b82d9fdd 374 {
b82d9fdd
PZ
375 .procname = "sched_nr_migrate",
376 .data = &sysctl_sched_nr_migrate,
377 .maxlen = sizeof(unsigned int),
fa85ae24 378 .mode = 0644,
6d456111 379 .proc_handler = proc_dointvec,
fa85ae24 380 },
cb251765
MG
381#ifdef CONFIG_SCHEDSTATS
382 {
383 .procname = "sched_schedstats",
384 .data = NULL,
385 .maxlen = sizeof(unsigned int),
386 .mode = 0644,
387 .proc_handler = sysctl_schedstats,
388 .extra1 = &zero,
389 .extra2 = &one,
390 },
391#endif /* CONFIG_SCHEDSTATS */
cbee9f88
PZ
392#endif /* CONFIG_SMP */
393#ifdef CONFIG_NUMA_BALANCING
4b96a29b
PZ
394 {
395 .procname = "numa_balancing_scan_delay_ms",
396 .data = &sysctl_numa_balancing_scan_delay,
397 .maxlen = sizeof(unsigned int),
398 .mode = 0644,
399 .proc_handler = proc_dointvec,
400 },
cbee9f88
PZ
401 {
402 .procname = "numa_balancing_scan_period_min_ms",
403 .data = &sysctl_numa_balancing_scan_period_min,
404 .maxlen = sizeof(unsigned int),
405 .mode = 0644,
406 .proc_handler = proc_dointvec,
407 },
408 {
409 .procname = "numa_balancing_scan_period_max_ms",
410 .data = &sysctl_numa_balancing_scan_period_max,
411 .maxlen = sizeof(unsigned int),
412 .mode = 0644,
413 .proc_handler = proc_dointvec,
414 },
6e5fb223
PZ
415 {
416 .procname = "numa_balancing_scan_size_mb",
417 .data = &sysctl_numa_balancing_scan_size,
418 .maxlen = sizeof(unsigned int),
419 .mode = 0644,
64192658
KT
420 .proc_handler = proc_dointvec_minmax,
421 .extra1 = &one,
6e5fb223 422 },
54a43d54
AK
423 {
424 .procname = "numa_balancing",
425 .data = NULL, /* filled in by handler */
426 .maxlen = sizeof(unsigned int),
427 .mode = 0644,
428 .proc_handler = sysctl_numa_balancing,
429 .extra1 = &zero,
430 .extra2 = &one,
431 },
cbee9f88
PZ
432#endif /* CONFIG_NUMA_BALANCING */
433#endif /* CONFIG_SCHED_DEBUG */
9f0c1e56 434 {
9f0c1e56
PZ
435 .procname = "sched_rt_period_us",
436 .data = &sysctl_sched_rt_period,
437 .maxlen = sizeof(unsigned int),
438 .mode = 0644,
6d456111 439 .proc_handler = sched_rt_handler,
9f0c1e56
PZ
440 },
441 {
9f0c1e56
PZ
442 .procname = "sched_rt_runtime_us",
443 .data = &sysctl_sched_rt_runtime,
444 .maxlen = sizeof(int),
445 .mode = 0644,
6d456111 446 .proc_handler = sched_rt_handler,
9f0c1e56 447 },
ce0dbbbb
CW
448 {
449 .procname = "sched_rr_timeslice_ms",
975e155e 450 .data = &sysctl_sched_rr_timeslice,
ce0dbbbb
CW
451 .maxlen = sizeof(int),
452 .mode = 0644,
453 .proc_handler = sched_rr_handler,
454 },
e8f14172
PB
455#ifdef CONFIG_UCLAMP_TASK
456 {
457 .procname = "sched_util_clamp_min",
458 .data = &sysctl_sched_uclamp_util_min,
459 .maxlen = sizeof(unsigned int),
460 .mode = 0644,
461 .proc_handler = sysctl_sched_uclamp_handler,
462 },
463 {
464 .procname = "sched_util_clamp_max",
465 .data = &sysctl_sched_uclamp_util_max,
466 .maxlen = sizeof(unsigned int),
467 .mode = 0644,
468 .proc_handler = sysctl_sched_uclamp_handler,
469 },
470#endif
5091faa4
MG
471#ifdef CONFIG_SCHED_AUTOGROUP
472 {
473 .procname = "sched_autogroup_enabled",
474 .data = &sysctl_sched_autogroup_enabled,
475 .maxlen = sizeof(unsigned int),
476 .mode = 0644,
1747b21f 477 .proc_handler = proc_dointvec_minmax,
5091faa4
MG
478 .extra1 = &zero,
479 .extra2 = &one,
480 },
481#endif
ec12cb7f
PT
482#ifdef CONFIG_CFS_BANDWIDTH
483 {
484 .procname = "sched_cfs_bandwidth_slice_us",
485 .data = &sysctl_sched_cfs_bandwidth_slice,
486 .maxlen = sizeof(unsigned int),
487 .mode = 0644,
488 .proc_handler = proc_dointvec_minmax,
489 .extra1 = &one,
490 },
491#endif
8d5d0cfb
QP
492#if defined(CONFIG_ENERGY_MODEL) && defined(CONFIG_CPU_FREQ_GOV_SCHEDUTIL)
493 {
494 .procname = "sched_energy_aware",
495 .data = &sysctl_sched_energy_aware,
496 .maxlen = sizeof(unsigned int),
497 .mode = 0644,
498 .proc_handler = sched_energy_aware_handler,
499 .extra1 = &zero,
500 .extra2 = &one,
501 },
502#endif
f20786ff
PZ
503#ifdef CONFIG_PROVE_LOCKING
504 {
f20786ff
PZ
505 .procname = "prove_locking",
506 .data = &prove_locking,
507 .maxlen = sizeof(int),
508 .mode = 0644,
6d456111 509 .proc_handler = proc_dointvec,
f20786ff
PZ
510 },
511#endif
512#ifdef CONFIG_LOCK_STAT
513 {
f20786ff
PZ
514 .procname = "lock_stat",
515 .data = &lock_stat,
516 .maxlen = sizeof(int),
517 .mode = 0644,
6d456111 518 .proc_handler = proc_dointvec,
f20786ff 519 },
77e54a1f 520#endif
1da177e4 521 {
1da177e4
LT
522 .procname = "panic",
523 .data = &panic_timeout,
524 .maxlen = sizeof(int),
525 .mode = 0644,
6d456111 526 .proc_handler = proc_dointvec,
1da177e4 527 },
046d662f 528#ifdef CONFIG_COREDUMP
1da177e4 529 {
1da177e4
LT
530 .procname = "core_uses_pid",
531 .data = &core_uses_pid,
532 .maxlen = sizeof(int),
533 .mode = 0644,
6d456111 534 .proc_handler = proc_dointvec,
1da177e4
LT
535 },
536 {
1da177e4
LT
537 .procname = "core_pattern",
538 .data = core_pattern,
71ce92f3 539 .maxlen = CORENAME_MAX_SIZE,
1da177e4 540 .mode = 0644,
54b50199 541 .proc_handler = proc_dostring_coredump,
1da177e4 542 },
a293980c 543 {
a293980c
NH
544 .procname = "core_pipe_limit",
545 .data = &core_pipe_limit,
546 .maxlen = sizeof(unsigned int),
547 .mode = 0644,
6d456111 548 .proc_handler = proc_dointvec,
a293980c 549 },
046d662f 550#endif
34f5a398 551#ifdef CONFIG_PROC_SYSCTL
1da177e4 552 {
1da177e4 553 .procname = "tainted",
25ddbb18 554 .maxlen = sizeof(long),
34f5a398 555 .mode = 0644,
6d456111 556 .proc_handler = proc_taint,
1da177e4 557 },
f4aacea2
KC
558 {
559 .procname = "sysctl_writes_strict",
560 .data = &sysctl_writes_strict,
561 .maxlen = sizeof(int),
562 .mode = 0644,
563 .proc_handler = proc_dointvec_minmax,
564 .extra1 = &neg_one,
565 .extra2 = &one,
566 },
34f5a398 567#endif
9745512c
AV
568#ifdef CONFIG_LATENCYTOP
569 {
570 .procname = "latencytop",
571 .data = &latencytop_enabled,
572 .maxlen = sizeof(int),
573 .mode = 0644,
cb251765 574 .proc_handler = sysctl_latencytop,
9745512c
AV
575 },
576#endif
1da177e4
LT
577#ifdef CONFIG_BLK_DEV_INITRD
578 {
1da177e4
LT
579 .procname = "real-root-dev",
580 .data = &real_root_dev,
581 .maxlen = sizeof(int),
582 .mode = 0644,
6d456111 583 .proc_handler = proc_dointvec,
1da177e4
LT
584 },
585#endif
45807a1d 586 {
45807a1d
IM
587 .procname = "print-fatal-signals",
588 .data = &print_fatal_signals,
589 .maxlen = sizeof(int),
590 .mode = 0644,
6d456111 591 .proc_handler = proc_dointvec,
45807a1d 592 },
72c57ed5 593#ifdef CONFIG_SPARC
1da177e4 594 {
1da177e4
LT
595 .procname = "reboot-cmd",
596 .data = reboot_command,
597 .maxlen = 256,
598 .mode = 0644,
6d456111 599 .proc_handler = proc_dostring,
1da177e4
LT
600 },
601 {
1da177e4
LT
602 .procname = "stop-a",
603 .data = &stop_a_enabled,
604 .maxlen = sizeof (int),
605 .mode = 0644,
6d456111 606 .proc_handler = proc_dointvec,
1da177e4
LT
607 },
608 {
1da177e4
LT
609 .procname = "scons-poweroff",
610 .data = &scons_pwroff,
611 .maxlen = sizeof (int),
612 .mode = 0644,
6d456111 613 .proc_handler = proc_dointvec,
1da177e4
LT
614 },
615#endif
0871420f
DM
616#ifdef CONFIG_SPARC64
617 {
0871420f
DM
618 .procname = "tsb-ratio",
619 .data = &sysctl_tsb_ratio,
620 .maxlen = sizeof (int),
621 .mode = 0644,
6d456111 622 .proc_handler = proc_dointvec,
0871420f
DM
623 },
624#endif
1da177e4
LT
625#ifdef __hppa__
626 {
1da177e4
LT
627 .procname = "soft-power",
628 .data = &pwrsw_enabled,
629 .maxlen = sizeof (int),
630 .mode = 0644,
6d456111 631 .proc_handler = proc_dointvec,
1da177e4 632 },
bf14e3b9
VG
633#endif
634#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
1da177e4 635 {
1da177e4
LT
636 .procname = "unaligned-trap",
637 .data = &unaligned_enabled,
638 .maxlen = sizeof (int),
639 .mode = 0644,
6d456111 640 .proc_handler = proc_dointvec,
1da177e4
LT
641 },
642#endif
643 {
1da177e4
LT
644 .procname = "ctrl-alt-del",
645 .data = &C_A_D,
646 .maxlen = sizeof(int),
647 .mode = 0644,
6d456111 648 .proc_handler = proc_dointvec,
1da177e4 649 },
606576ce 650#ifdef CONFIG_FUNCTION_TRACER
b0fc494f 651 {
b0fc494f
SR
652 .procname = "ftrace_enabled",
653 .data = &ftrace_enabled,
654 .maxlen = sizeof(int),
655 .mode = 0644,
6d456111 656 .proc_handler = ftrace_enable_sysctl,
b0fc494f
SR
657 },
658#endif
f38f1d2a
SR
659#ifdef CONFIG_STACK_TRACER
660 {
f38f1d2a
SR
661 .procname = "stack_tracer_enabled",
662 .data = &stack_tracer_enabled,
663 .maxlen = sizeof(int),
664 .mode = 0644,
6d456111 665 .proc_handler = stack_trace_sysctl,
f38f1d2a
SR
666 },
667#endif
944ac425
SR
668#ifdef CONFIG_TRACING
669 {
3299b4dd 670 .procname = "ftrace_dump_on_oops",
944ac425
SR
671 .data = &ftrace_dump_on_oops,
672 .maxlen = sizeof(int),
673 .mode = 0644,
6d456111 674 .proc_handler = proc_dointvec,
944ac425 675 },
de7edd31
SRRH
676 {
677 .procname = "traceoff_on_warning",
678 .data = &__disable_trace_on_warning,
679 .maxlen = sizeof(__disable_trace_on_warning),
680 .mode = 0644,
681 .proc_handler = proc_dointvec,
682 },
0daa2302
SRRH
683 {
684 .procname = "tracepoint_printk",
685 .data = &tracepoint_printk,
686 .maxlen = sizeof(tracepoint_printk),
687 .mode = 0644,
42391745 688 .proc_handler = tracepoint_printk_sysctl,
0daa2302 689 },
944ac425 690#endif
2965faa5 691#ifdef CONFIG_KEXEC_CORE
7984754b
KC
692 {
693 .procname = "kexec_load_disabled",
694 .data = &kexec_load_disabled,
695 .maxlen = sizeof(int),
696 .mode = 0644,
697 /* only handle a transition from default "0" to "1" */
698 .proc_handler = proc_dointvec_minmax,
699 .extra1 = &one,
700 .extra2 = &one,
701 },
702#endif
a1ef5adb 703#ifdef CONFIG_MODULES
1da177e4 704 {
1da177e4
LT
705 .procname = "modprobe",
706 .data = &modprobe_path,
707 .maxlen = KMOD_PATH_LEN,
708 .mode = 0644,
6d456111 709 .proc_handler = proc_dostring,
1da177e4 710 },
3d43321b 711 {
3d43321b
KC
712 .procname = "modules_disabled",
713 .data = &modules_disabled,
714 .maxlen = sizeof(int),
715 .mode = 0644,
716 /* only handle a transition from default "0" to "1" */
6d456111 717 .proc_handler = proc_dointvec_minmax,
3d43321b
KC
718 .extra1 = &one,
719 .extra2 = &one,
720 },
1da177e4 721#endif
86d56134 722#ifdef CONFIG_UEVENT_HELPER
1da177e4 723 {
1da177e4 724 .procname = "hotplug",
312c004d
KS
725 .data = &uevent_helper,
726 .maxlen = UEVENT_HELPER_PATH_LEN,
1da177e4 727 .mode = 0644,
6d456111 728 .proc_handler = proc_dostring,
1da177e4 729 },
86d56134 730#endif
1da177e4
LT
731#ifdef CONFIG_CHR_DEV_SG
732 {
1da177e4
LT
733 .procname = "sg-big-buff",
734 .data = &sg_big_buff,
735 .maxlen = sizeof (int),
736 .mode = 0444,
6d456111 737 .proc_handler = proc_dointvec,
1da177e4
LT
738 },
739#endif
740#ifdef CONFIG_BSD_PROCESS_ACCT
741 {
1da177e4
LT
742 .procname = "acct",
743 .data = &acct_parm,
744 .maxlen = 3*sizeof(int),
745 .mode = 0644,
6d456111 746 .proc_handler = proc_dointvec,
1da177e4
LT
747 },
748#endif
1da177e4
LT
749#ifdef CONFIG_MAGIC_SYSRQ
750 {
1da177e4 751 .procname = "sysrq",
5d6f647f 752 .data = &__sysrq_enabled,
1da177e4
LT
753 .maxlen = sizeof (int),
754 .mode = 0644,
97f5f0cd 755 .proc_handler = sysrq_sysctl_handler,
1da177e4
LT
756 },
757#endif
d6f8ff73 758#ifdef CONFIG_PROC_SYSCTL
1da177e4 759 {
1da177e4 760 .procname = "cad_pid",
9ec52099 761 .data = NULL,
1da177e4
LT
762 .maxlen = sizeof (int),
763 .mode = 0600,
6d456111 764 .proc_handler = proc_do_cad_pid,
1da177e4 765 },
d6f8ff73 766#endif
1da177e4 767 {
1da177e4 768 .procname = "threads-max",
16db3d3f 769 .data = NULL,
1da177e4
LT
770 .maxlen = sizeof(int),
771 .mode = 0644,
16db3d3f 772 .proc_handler = sysctl_max_threads,
1da177e4
LT
773 },
774 {
1da177e4
LT
775 .procname = "random",
776 .mode = 0555,
777 .child = random_table,
778 },
17f60a7d
EP
779 {
780 .procname = "usermodehelper",
781 .mode = 0555,
782 .child = usermodehelper_table,
783 },
ceb18132
LR
784#ifdef CONFIG_FW_LOADER_USER_HELPER
785 {
786 .procname = "firmware_config",
787 .mode = 0555,
788 .child = firmware_config_table,
789 },
790#endif
1da177e4 791 {
1da177e4
LT
792 .procname = "overflowuid",
793 .data = &overflowuid,
794 .maxlen = sizeof(int),
795 .mode = 0644,
6d456111 796 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
797 .extra1 = &minolduid,
798 .extra2 = &maxolduid,
799 },
800 {
1da177e4
LT
801 .procname = "overflowgid",
802 .data = &overflowgid,
803 .maxlen = sizeof(int),
804 .mode = 0644,
6d456111 805 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
806 .extra1 = &minolduid,
807 .extra2 = &maxolduid,
808 },
347a8dc3 809#ifdef CONFIG_S390
1da177e4
LT
810#ifdef CONFIG_MATHEMU
811 {
1da177e4
LT
812 .procname = "ieee_emulation_warnings",
813 .data = &sysctl_ieee_emulation_warnings,
814 .maxlen = sizeof(int),
815 .mode = 0644,
6d456111 816 .proc_handler = proc_dointvec,
1da177e4 817 },
1da177e4
LT
818#endif
819 {
1da177e4 820 .procname = "userprocess_debug",
ab3c68ee 821 .data = &show_unhandled_signals,
1da177e4
LT
822 .maxlen = sizeof(int),
823 .mode = 0644,
6d456111 824 .proc_handler = proc_dointvec,
1da177e4
LT
825 },
826#endif
827 {
1da177e4
LT
828 .procname = "pid_max",
829 .data = &pid_max,
830 .maxlen = sizeof (int),
831 .mode = 0644,
6d456111 832 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
833 .extra1 = &pid_max_min,
834 .extra2 = &pid_max_max,
835 },
836 {
1da177e4
LT
837 .procname = "panic_on_oops",
838 .data = &panic_on_oops,
839 .maxlen = sizeof(int),
840 .mode = 0644,
6d456111 841 .proc_handler = proc_dointvec,
1da177e4 842 },
81c9d43f
FT
843 {
844 .procname = "panic_print",
845 .data = &panic_print,
846 .maxlen = sizeof(unsigned long),
847 .mode = 0644,
848 .proc_handler = proc_doulongvec_minmax,
849 },
7ef3d2fd
JP
850#if defined CONFIG_PRINTK
851 {
7ef3d2fd
JP
852 .procname = "printk",
853 .data = &console_loglevel,
854 .maxlen = 4*sizeof(int),
855 .mode = 0644,
6d456111 856 .proc_handler = proc_dointvec,
7ef3d2fd 857 },
1da177e4 858 {
1da177e4 859 .procname = "printk_ratelimit",
717115e1 860 .data = &printk_ratelimit_state.interval,
1da177e4
LT
861 .maxlen = sizeof(int),
862 .mode = 0644,
6d456111 863 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
864 },
865 {
1da177e4 866 .procname = "printk_ratelimit_burst",
717115e1 867 .data = &printk_ratelimit_state.burst,
1da177e4
LT
868 .maxlen = sizeof(int),
869 .mode = 0644,
6d456111 870 .proc_handler = proc_dointvec,
1da177e4 871 },
af91322e 872 {
af91322e
DY
873 .procname = "printk_delay",
874 .data = &printk_delay_msec,
875 .maxlen = sizeof(int),
876 .mode = 0644,
6d456111 877 .proc_handler = proc_dointvec_minmax,
af91322e
DY
878 .extra1 = &zero,
879 .extra2 = &ten_thousand,
880 },
750afe7b
BP
881 {
882 .procname = "printk_devkmsg",
883 .data = devkmsg_log_str,
884 .maxlen = DEVKMSG_STR_MAX_SIZE,
885 .mode = 0644,
886 .proc_handler = devkmsg_sysctl_set_loglvl,
887 },
eaf06b24
DR
888 {
889 .procname = "dmesg_restrict",
890 .data = &dmesg_restrict,
891 .maxlen = sizeof(int),
892 .mode = 0644,
620f6e8e 893 .proc_handler = proc_dointvec_minmax_sysadmin,
eaf06b24
DR
894 .extra1 = &zero,
895 .extra2 = &one,
896 },
455cd5ab
DR
897 {
898 .procname = "kptr_restrict",
899 .data = &kptr_restrict,
900 .maxlen = sizeof(int),
901 .mode = 0644,
620f6e8e 902 .proc_handler = proc_dointvec_minmax_sysadmin,
455cd5ab
DR
903 .extra1 = &zero,
904 .extra2 = &two,
905 },
df6e61d4 906#endif
1da177e4 907 {
1da177e4
LT
908 .procname = "ngroups_max",
909 .data = &ngroups_max,
910 .maxlen = sizeof (int),
911 .mode = 0444,
6d456111 912 .proc_handler = proc_dointvec,
1da177e4 913 },
73efc039
DB
914 {
915 .procname = "cap_last_cap",
916 .data = (void *)&cap_last_cap,
917 .maxlen = sizeof(int),
918 .mode = 0444,
919 .proc_handler = proc_dointvec,
920 },
58687acb 921#if defined(CONFIG_LOCKUP_DETECTOR)
504d7cf1 922 {
58687acb 923 .procname = "watchdog",
7feeb9cd
TG
924 .data = &watchdog_user_enabled,
925 .maxlen = sizeof(int),
926 .mode = 0644,
195daf66 927 .proc_handler = proc_watchdog,
586692a5
MSB
928 .extra1 = &zero,
929 .extra2 = &one,
58687acb
DZ
930 },
931 {
932 .procname = "watchdog_thresh",
586692a5 933 .data = &watchdog_thresh,
58687acb
DZ
934 .maxlen = sizeof(int),
935 .mode = 0644,
195daf66 936 .proc_handler = proc_watchdog_thresh,
a6572f84 937 .extra1 = &zero,
58687acb 938 .extra2 = &sixty,
504d7cf1 939 },
195daf66
UO
940 {
941 .procname = "nmi_watchdog",
7feeb9cd
TG
942 .data = &nmi_watchdog_user_enabled,
943 .maxlen = sizeof(int),
51d4052b 944 .mode = NMI_WATCHDOG_SYSCTL_PERM,
195daf66
UO
945 .proc_handler = proc_nmi_watchdog,
946 .extra1 = &zero,
195daf66 947 .extra2 = &one,
195daf66 948 },
05a4a952
NP
949 {
950 .procname = "watchdog_cpumask",
951 .data = &watchdog_cpumask_bits,
952 .maxlen = NR_CPUS,
953 .mode = 0644,
954 .proc_handler = proc_watchdog_cpumask,
955 },
956#ifdef CONFIG_SOFTLOCKUP_DETECTOR
195daf66
UO
957 {
958 .procname = "soft_watchdog",
7feeb9cd
TG
959 .data = &soft_watchdog_user_enabled,
960 .maxlen = sizeof(int),
961 .mode = 0644,
195daf66
UO
962 .proc_handler = proc_soft_watchdog,
963 .extra1 = &zero,
964 .extra2 = &one,
965 },
2508ce18
DZ
966 {
967 .procname = "softlockup_panic",
968 .data = &softlockup_panic,
969 .maxlen = sizeof(int),
970 .mode = 0644,
971 .proc_handler = proc_dointvec_minmax,
972 .extra1 = &zero,
973 .extra2 = &one,
974 },
05a4a952 975#ifdef CONFIG_SMP
ac1f5912 976 {
05a4a952
NP
977 .procname = "softlockup_all_cpu_backtrace",
978 .data = &sysctl_softlockup_all_cpu_backtrace,
ac1f5912
DZ
979 .maxlen = sizeof(int),
980 .mode = 0644,
981 .proc_handler = proc_dointvec_minmax,
982 .extra1 = &zero,
983 .extra2 = &one,
984 },
05a4a952 985#endif /* CONFIG_SMP */
ac1f5912 986#endif
05a4a952 987#ifdef CONFIG_HARDLOCKUP_DETECTOR
ed235875 988 {
05a4a952
NP
989 .procname = "hardlockup_panic",
990 .data = &hardlockup_panic,
ed235875
AT
991 .maxlen = sizeof(int),
992 .mode = 0644,
993 .proc_handler = proc_dointvec_minmax,
994 .extra1 = &zero,
995 .extra2 = &one,
996 },
05a4a952 997#ifdef CONFIG_SMP
55537871
JK
998 {
999 .procname = "hardlockup_all_cpu_backtrace",
1000 .data = &sysctl_hardlockup_all_cpu_backtrace,
1001 .maxlen = sizeof(int),
1002 .mode = 0644,
1003 .proc_handler = proc_dointvec_minmax,
1004 .extra1 = &zero,
1005 .extra2 = &one,
1006 },
ed235875 1007#endif /* CONFIG_SMP */
5dc30558 1008#endif
05a4a952
NP
1009#endif
1010
5dc30558
DZ
1011#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
1012 {
1013 .procname = "unknown_nmi_panic",
1014 .data = &unknown_nmi_panic,
1015 .maxlen = sizeof (int),
1016 .mode = 0644,
1017 .proc_handler = proc_dointvec,
1018 },
504d7cf1 1019#endif
1da177e4 1020#if defined(CONFIG_X86)
8da5adda 1021 {
8da5adda
DZ
1022 .procname = "panic_on_unrecovered_nmi",
1023 .data = &panic_on_unrecovered_nmi,
1024 .maxlen = sizeof(int),
1025 .mode = 0644,
6d456111 1026 .proc_handler = proc_dointvec,
8da5adda 1027 },
5211a242 1028 {
5211a242
KG
1029 .procname = "panic_on_io_nmi",
1030 .data = &panic_on_io_nmi,
1031 .maxlen = sizeof(int),
1032 .mode = 0644,
6d456111 1033 .proc_handler = proc_dointvec,
5211a242 1034 },
55af7796
MH
1035#ifdef CONFIG_DEBUG_STACKOVERFLOW
1036 {
1037 .procname = "panic_on_stackoverflow",
1038 .data = &sysctl_panic_on_stackoverflow,
1039 .maxlen = sizeof(int),
1040 .mode = 0644,
1041 .proc_handler = proc_dointvec,
1042 },
1043#endif
1da177e4 1044 {
1da177e4
LT
1045 .procname = "bootloader_type",
1046 .data = &bootloader_type,
1047 .maxlen = sizeof (int),
1048 .mode = 0444,
6d456111 1049 .proc_handler = proc_dointvec,
1da177e4 1050 },
5031296c 1051 {
5031296c
PA
1052 .procname = "bootloader_version",
1053 .data = &bootloader_version,
1054 .maxlen = sizeof (int),
1055 .mode = 0444,
6d456111 1056 .proc_handler = proc_dointvec,
5031296c 1057 },
6e7c4025 1058 {
6e7c4025
IM
1059 .procname = "io_delay_type",
1060 .data = &io_delay_type,
1061 .maxlen = sizeof(int),
1062 .mode = 0644,
6d456111 1063 .proc_handler = proc_dointvec,
6e7c4025 1064 },
1da177e4 1065#endif
7a9166e3 1066#if defined(CONFIG_MMU)
1da177e4 1067 {
1da177e4
LT
1068 .procname = "randomize_va_space",
1069 .data = &randomize_va_space,
1070 .maxlen = sizeof(int),
1071 .mode = 0644,
6d456111 1072 .proc_handler = proc_dointvec,
1da177e4 1073 },
7a9166e3 1074#endif
0152fb37 1075#if defined(CONFIG_S390) && defined(CONFIG_SMP)
951f22d5 1076 {
951f22d5
MS
1077 .procname = "spin_retry",
1078 .data = &spin_retry,
1079 .maxlen = sizeof (int),
1080 .mode = 0644,
6d456111 1081 .proc_handler = proc_dointvec,
951f22d5 1082 },
c255d844 1083#endif
673d5b43 1084#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
c255d844 1085 {
c255d844 1086 .procname = "acpi_video_flags",
77afcf78 1087 .data = &acpi_realmode_flags,
c255d844
PM
1088 .maxlen = sizeof (unsigned long),
1089 .mode = 0644,
6d456111 1090 .proc_handler = proc_doulongvec_minmax,
c255d844 1091 },
d2b176ed 1092#endif
b6fca725 1093#ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
d2b176ed 1094 {
d2b176ed
JS
1095 .procname = "ignore-unaligned-usertrap",
1096 .data = &no_unaligned_warning,
1097 .maxlen = sizeof (int),
1098 .mode = 0644,
6d456111 1099 .proc_handler = proc_dointvec,
d2b176ed 1100 },
b6fca725
VG
1101#endif
1102#ifdef CONFIG_IA64
88fc241f 1103 {
88fc241f
DC
1104 .procname = "unaligned-dump-stack",
1105 .data = &unaligned_dump_stack,
1106 .maxlen = sizeof (int),
1107 .mode = 0644,
6d456111 1108 .proc_handler = proc_dointvec,
88fc241f 1109 },
bebfa101 1110#endif
e162b39a
MSB
1111#ifdef CONFIG_DETECT_HUNG_TASK
1112 {
e162b39a
MSB
1113 .procname = "hung_task_panic",
1114 .data = &sysctl_hung_task_panic,
1115 .maxlen = sizeof(int),
1116 .mode = 0644,
6d456111 1117 .proc_handler = proc_dointvec_minmax,
e162b39a
MSB
1118 .extra1 = &zero,
1119 .extra2 = &one,
1120 },
82a1fcb9 1121 {
82a1fcb9
IM
1122 .procname = "hung_task_check_count",
1123 .data = &sysctl_hung_task_check_count,
cd64647f 1124 .maxlen = sizeof(int),
82a1fcb9 1125 .mode = 0644,
cd64647f
LZ
1126 .proc_handler = proc_dointvec_minmax,
1127 .extra1 = &zero,
82a1fcb9
IM
1128 },
1129 {
82a1fcb9
IM
1130 .procname = "hung_task_timeout_secs",
1131 .data = &sysctl_hung_task_timeout_secs,
90739081 1132 .maxlen = sizeof(unsigned long),
82a1fcb9 1133 .mode = 0644,
6d456111 1134 .proc_handler = proc_dohung_task_timeout_secs,
80df2847 1135 .extra2 = &hung_task_timeout_max,
82a1fcb9 1136 },
a2e51445
DV
1137 {
1138 .procname = "hung_task_check_interval_secs",
1139 .data = &sysctl_hung_task_check_interval_secs,
1140 .maxlen = sizeof(unsigned long),
1141 .mode = 0644,
1142 .proc_handler = proc_dohung_task_timeout_secs,
1143 .extra2 = &hung_task_timeout_max,
1144 },
82a1fcb9 1145 {
82a1fcb9
IM
1146 .procname = "hung_task_warnings",
1147 .data = &sysctl_hung_task_warnings,
270750db 1148 .maxlen = sizeof(int),
82a1fcb9 1149 .mode = 0644,
270750db
AT
1150 .proc_handler = proc_dointvec_minmax,
1151 .extra1 = &neg_one,
82a1fcb9 1152 },
c4f3b63f 1153#endif
23f78d4a
IM
1154#ifdef CONFIG_RT_MUTEXES
1155 {
23f78d4a
IM
1156 .procname = "max_lock_depth",
1157 .data = &max_lock_depth,
1158 .maxlen = sizeof(int),
1159 .mode = 0644,
6d456111 1160 .proc_handler = proc_dointvec,
23f78d4a 1161 },
5096add8 1162#endif
10a0a8d4 1163 {
10a0a8d4
JF
1164 .procname = "poweroff_cmd",
1165 .data = &poweroff_cmd,
1166 .maxlen = POWEROFF_CMD_PATH_LEN,
1167 .mode = 0644,
6d456111 1168 .proc_handler = proc_dostring,
10a0a8d4 1169 },
0b77f5bf
DH
1170#ifdef CONFIG_KEYS
1171 {
0b77f5bf
DH
1172 .procname = "keys",
1173 .mode = 0555,
1174 .child = key_sysctls,
1175 },
1176#endif
cdd6c482 1177#ifdef CONFIG_PERF_EVENTS
aa4a2218
VW
1178 /*
1179 * User-space scripts rely on the existence of this file
1180 * as a feature check for perf_events being enabled.
1181 *
1182 * So it's an ABI, do not remove!
1183 */
1ccd1549 1184 {
cdd6c482
IM
1185 .procname = "perf_event_paranoid",
1186 .data = &sysctl_perf_event_paranoid,
1187 .maxlen = sizeof(sysctl_perf_event_paranoid),
1ccd1549 1188 .mode = 0644,
6d456111 1189 .proc_handler = proc_dointvec,
1ccd1549 1190 },
c5078f78 1191 {
cdd6c482
IM
1192 .procname = "perf_event_mlock_kb",
1193 .data = &sysctl_perf_event_mlock,
1194 .maxlen = sizeof(sysctl_perf_event_mlock),
c5078f78 1195 .mode = 0644,
6d456111 1196 .proc_handler = proc_dointvec,
c5078f78 1197 },
a78ac325 1198 {
cdd6c482
IM
1199 .procname = "perf_event_max_sample_rate",
1200 .data = &sysctl_perf_event_sample_rate,
1201 .maxlen = sizeof(sysctl_perf_event_sample_rate),
a78ac325 1202 .mode = 0644,
163ec435 1203 .proc_handler = perf_proc_update_handler,
723478c8 1204 .extra1 = &one,
a78ac325 1205 },
14c63f17
DH
1206 {
1207 .procname = "perf_cpu_time_max_percent",
1208 .data = &sysctl_perf_cpu_time_max_percent,
1209 .maxlen = sizeof(sysctl_perf_cpu_time_max_percent),
1210 .mode = 0644,
1211 .proc_handler = perf_cpu_time_max_percent_handler,
1212 .extra1 = &zero,
1213 .extra2 = &one_hundred,
1214 },
c5dfd78e
ACM
1215 {
1216 .procname = "perf_event_max_stack",
a831100a 1217 .data = &sysctl_perf_event_max_stack,
c5dfd78e
ACM
1218 .maxlen = sizeof(sysctl_perf_event_max_stack),
1219 .mode = 0644,
1220 .proc_handler = perf_event_max_stack_handler,
1221 .extra1 = &zero,
1222 .extra2 = &six_hundred_forty_kb,
1223 },
c85b0334
ACM
1224 {
1225 .procname = "perf_event_max_contexts_per_stack",
1226 .data = &sysctl_perf_event_max_contexts_per_stack,
1227 .maxlen = sizeof(sysctl_perf_event_max_contexts_per_stack),
1228 .mode = 0644,
1229 .proc_handler = perf_event_max_stack_handler,
1230 .extra1 = &zero,
1231 .extra2 = &one_thousand,
1232 },
cb684b5b 1233#endif
9e3961a0
PB
1234 {
1235 .procname = "panic_on_warn",
1236 .data = &panic_on_warn,
1237 .maxlen = sizeof(int),
1238 .mode = 0644,
1239 .proc_handler = proc_dointvec_minmax,
1240 .extra1 = &zero,
1241 .extra2 = &one,
1242 },
bc7a34b8
TG
1243#if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
1244 {
1245 .procname = "timer_migration",
1246 .data = &sysctl_timer_migration,
1247 .maxlen = sizeof(unsigned int),
1248 .mode = 0644,
1249 .proc_handler = timer_migration_handler,
b94bf594
MJ
1250 .extra1 = &zero,
1251 .extra2 = &one,
bc7a34b8 1252 },
1be7f75d
AS
1253#endif
1254#ifdef CONFIG_BPF_SYSCALL
1255 {
1256 .procname = "unprivileged_bpf_disabled",
1257 .data = &sysctl_unprivileged_bpf_disabled,
1258 .maxlen = sizeof(sysctl_unprivileged_bpf_disabled),
1259 .mode = 0644,
1260 /* only handle a transition from default "0" to "1" */
1261 .proc_handler = proc_dointvec_minmax,
1262 .extra1 = &one,
1263 .extra2 = &one,
1264 },
492ecee8
AS
1265 {
1266 .procname = "bpf_stats_enabled",
a8e11e5c
ED
1267 .data = &bpf_stats_enabled_key.key,
1268 .maxlen = sizeof(bpf_stats_enabled_key),
492ecee8 1269 .mode = 0644,
a8e11e5c 1270 .proc_handler = proc_do_static_key,
492ecee8 1271 },
3fcc5530 1272#endif
088e9d25
DBO
1273#if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU)
1274 {
1275 .procname = "panic_on_rcu_stall",
1276 .data = &sysctl_panic_on_rcu_stall,
1277 .maxlen = sizeof(sysctl_panic_on_rcu_stall),
1278 .mode = 0644,
1279 .proc_handler = proc_dointvec_minmax,
1280 .extra1 = &zero,
1281 .extra2 = &one,
1282 },
964c9dff
AP
1283#endif
1284#ifdef CONFIG_STACKLEAK_RUNTIME_DISABLE
1285 {
1286 .procname = "stack_erasing",
1287 .data = NULL,
1288 .maxlen = sizeof(int),
1289 .mode = 0600,
1290 .proc_handler = stack_erasing_sysctl,
1291 .extra1 = &zero,
1292 .extra2 = &one,
1293 },
bc7a34b8 1294#endif
6fce56ec 1295 { }
1da177e4
LT
1296};
1297
d8217f07 1298static struct ctl_table vm_table[] = {
1da177e4 1299 {
1da177e4
LT
1300 .procname = "overcommit_memory",
1301 .data = &sysctl_overcommit_memory,
1302 .maxlen = sizeof(sysctl_overcommit_memory),
1303 .mode = 0644,
cb16e95f
PH
1304 .proc_handler = proc_dointvec_minmax,
1305 .extra1 = &zero,
1306 .extra2 = &two,
1da177e4 1307 },
fadd8fbd 1308 {
fadd8fbd
KH
1309 .procname = "panic_on_oom",
1310 .data = &sysctl_panic_on_oom,
1311 .maxlen = sizeof(sysctl_panic_on_oom),
1312 .mode = 0644,
cb16e95f
PH
1313 .proc_handler = proc_dointvec_minmax,
1314 .extra1 = &zero,
1315 .extra2 = &two,
fadd8fbd 1316 },
fe071d7e 1317 {
fe071d7e
DR
1318 .procname = "oom_kill_allocating_task",
1319 .data = &sysctl_oom_kill_allocating_task,
1320 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
1321 .mode = 0644,
6d456111 1322 .proc_handler = proc_dointvec,
fe071d7e 1323 },
fef1bdd6 1324 {
fef1bdd6
DR
1325 .procname = "oom_dump_tasks",
1326 .data = &sysctl_oom_dump_tasks,
1327 .maxlen = sizeof(sysctl_oom_dump_tasks),
1328 .mode = 0644,
6d456111 1329 .proc_handler = proc_dointvec,
fef1bdd6 1330 },
1da177e4 1331 {
1da177e4
LT
1332 .procname = "overcommit_ratio",
1333 .data = &sysctl_overcommit_ratio,
1334 .maxlen = sizeof(sysctl_overcommit_ratio),
1335 .mode = 0644,
49f0ce5f
JM
1336 .proc_handler = overcommit_ratio_handler,
1337 },
1338 {
1339 .procname = "overcommit_kbytes",
1340 .data = &sysctl_overcommit_kbytes,
1341 .maxlen = sizeof(sysctl_overcommit_kbytes),
1342 .mode = 0644,
1343 .proc_handler = overcommit_kbytes_handler,
1da177e4
LT
1344 },
1345 {
1da177e4
LT
1346 .procname = "page-cluster",
1347 .data = &page_cluster,
1348 .maxlen = sizeof(int),
1349 .mode = 0644,
cb16e95f
PH
1350 .proc_handler = proc_dointvec_minmax,
1351 .extra1 = &zero,
1da177e4
LT
1352 },
1353 {
1da177e4
LT
1354 .procname = "dirty_background_ratio",
1355 .data = &dirty_background_ratio,
1356 .maxlen = sizeof(dirty_background_ratio),
1357 .mode = 0644,
6d456111 1358 .proc_handler = dirty_background_ratio_handler,
1da177e4
LT
1359 .extra1 = &zero,
1360 .extra2 = &one_hundred,
1361 },
2da02997 1362 {
2da02997
DR
1363 .procname = "dirty_background_bytes",
1364 .data = &dirty_background_bytes,
1365 .maxlen = sizeof(dirty_background_bytes),
1366 .mode = 0644,
6d456111 1367 .proc_handler = dirty_background_bytes_handler,
fc3501d4 1368 .extra1 = &one_ul,
2da02997 1369 },
1da177e4 1370 {
1da177e4
LT
1371 .procname = "dirty_ratio",
1372 .data = &vm_dirty_ratio,
1373 .maxlen = sizeof(vm_dirty_ratio),
1374 .mode = 0644,
6d456111 1375 .proc_handler = dirty_ratio_handler,
1da177e4
LT
1376 .extra1 = &zero,
1377 .extra2 = &one_hundred,
1378 },
2da02997 1379 {
2da02997
DR
1380 .procname = "dirty_bytes",
1381 .data = &vm_dirty_bytes,
1382 .maxlen = sizeof(vm_dirty_bytes),
1383 .mode = 0644,
6d456111 1384 .proc_handler = dirty_bytes_handler,
9e4a5bda 1385 .extra1 = &dirty_bytes_min,
2da02997 1386 },
1da177e4 1387 {
1da177e4 1388 .procname = "dirty_writeback_centisecs",
f6ef9438
BS
1389 .data = &dirty_writeback_interval,
1390 .maxlen = sizeof(dirty_writeback_interval),
1da177e4 1391 .mode = 0644,
6d456111 1392 .proc_handler = dirty_writeback_centisecs_handler,
1da177e4
LT
1393 },
1394 {
1da177e4 1395 .procname = "dirty_expire_centisecs",
f6ef9438
BS
1396 .data = &dirty_expire_interval,
1397 .maxlen = sizeof(dirty_expire_interval),
1da177e4 1398 .mode = 0644,
cb16e95f
PH
1399 .proc_handler = proc_dointvec_minmax,
1400 .extra1 = &zero,
1da177e4 1401 },
1efff914
TT
1402 {
1403 .procname = "dirtytime_expire_seconds",
1404 .data = &dirtytime_expire_interval,
2d87b309 1405 .maxlen = sizeof(dirtytime_expire_interval),
1efff914
TT
1406 .mode = 0644,
1407 .proc_handler = dirtytime_interval_handler,
1408 .extra1 = &zero,
1409 },
1da177e4 1410 {
1da177e4
LT
1411 .procname = "swappiness",
1412 .data = &vm_swappiness,
1413 .maxlen = sizeof(vm_swappiness),
1414 .mode = 0644,
6d456111 1415 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
1416 .extra1 = &zero,
1417 .extra2 = &one_hundred,
1418 },
1419#ifdef CONFIG_HUGETLB_PAGE
06808b08 1420 {
1da177e4 1421 .procname = "nr_hugepages",
e5ff2159 1422 .data = NULL,
1da177e4
LT
1423 .maxlen = sizeof(unsigned long),
1424 .mode = 0644,
6d456111 1425 .proc_handler = hugetlb_sysctl_handler,
06808b08
LS
1426 },
1427#ifdef CONFIG_NUMA
1428 {
1429 .procname = "nr_hugepages_mempolicy",
1430 .data = NULL,
1431 .maxlen = sizeof(unsigned long),
1432 .mode = 0644,
1433 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
06808b08 1434 },
4518085e
KW
1435 {
1436 .procname = "numa_stat",
1437 .data = &sysctl_vm_numa_stat,
1438 .maxlen = sizeof(int),
1439 .mode = 0644,
1440 .proc_handler = sysctl_vm_numa_stat_handler,
1441 .extra1 = &zero,
1442 .extra2 = &one,
1443 },
06808b08 1444#endif
1da177e4 1445 {
1da177e4
LT
1446 .procname = "hugetlb_shm_group",
1447 .data = &sysctl_hugetlb_shm_group,
1448 .maxlen = sizeof(gid_t),
1449 .mode = 0644,
6d456111 1450 .proc_handler = proc_dointvec,
1da177e4 1451 },
d1c3fb1f 1452 {
d1c3fb1f 1453 .procname = "nr_overcommit_hugepages",
e5ff2159
AK
1454 .data = NULL,
1455 .maxlen = sizeof(unsigned long),
d1c3fb1f 1456 .mode = 0644,
6d456111 1457 .proc_handler = hugetlb_overcommit_handler,
d1c3fb1f 1458 },
1da177e4
LT
1459#endif
1460 {
1da177e4
LT
1461 .procname = "lowmem_reserve_ratio",
1462 .data = &sysctl_lowmem_reserve_ratio,
1463 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1464 .mode = 0644,
6d456111 1465 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
1da177e4 1466 },
9d0243bc 1467 {
9d0243bc
AM
1468 .procname = "drop_caches",
1469 .data = &sysctl_drop_caches,
1470 .maxlen = sizeof(int),
1471 .mode = 0644,
1472 .proc_handler = drop_caches_sysctl_handler,
cb16e95f 1473 .extra1 = &one,
5509a5d2 1474 .extra2 = &four,
9d0243bc 1475 },
76ab0f53
MG
1476#ifdef CONFIG_COMPACTION
1477 {
1478 .procname = "compact_memory",
1479 .data = &sysctl_compact_memory,
1480 .maxlen = sizeof(int),
1481 .mode = 0200,
1482 .proc_handler = sysctl_compaction_handler,
1483 },
5e771905
MG
1484 {
1485 .procname = "extfrag_threshold",
1486 .data = &sysctl_extfrag_threshold,
1487 .maxlen = sizeof(int),
1488 .mode = 0644,
6b7e5cad 1489 .proc_handler = proc_dointvec_minmax,
5e771905
MG
1490 .extra1 = &min_extfrag_threshold,
1491 .extra2 = &max_extfrag_threshold,
1492 },
5bbe3547
EM
1493 {
1494 .procname = "compact_unevictable_allowed",
1495 .data = &sysctl_compact_unevictable_allowed,
1496 .maxlen = sizeof(int),
1497 .mode = 0644,
1498 .proc_handler = proc_dointvec,
1499 .extra1 = &zero,
1500 .extra2 = &one,
1501 },
5e771905 1502
76ab0f53 1503#endif /* CONFIG_COMPACTION */
1da177e4 1504 {
1da177e4
LT
1505 .procname = "min_free_kbytes",
1506 .data = &min_free_kbytes,
1507 .maxlen = sizeof(min_free_kbytes),
1508 .mode = 0644,
6d456111 1509 .proc_handler = min_free_kbytes_sysctl_handler,
1da177e4
LT
1510 .extra1 = &zero,
1511 },
1c30844d
MG
1512 {
1513 .procname = "watermark_boost_factor",
1514 .data = &watermark_boost_factor,
1515 .maxlen = sizeof(watermark_boost_factor),
1516 .mode = 0644,
1517 .proc_handler = watermark_boost_factor_sysctl_handler,
1518 .extra1 = &zero,
1519 },
795ae7a0
JW
1520 {
1521 .procname = "watermark_scale_factor",
1522 .data = &watermark_scale_factor,
1523 .maxlen = sizeof(watermark_scale_factor),
1524 .mode = 0644,
1525 .proc_handler = watermark_scale_factor_sysctl_handler,
1526 .extra1 = &one,
1527 .extra2 = &one_thousand,
1528 },
8ad4b1fb 1529 {
8ad4b1fb
RS
1530 .procname = "percpu_pagelist_fraction",
1531 .data = &percpu_pagelist_fraction,
1532 .maxlen = sizeof(percpu_pagelist_fraction),
1533 .mode = 0644,
6d456111 1534 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
7cd2b0a3 1535 .extra1 = &zero,
8ad4b1fb 1536 },
1da177e4
LT
1537#ifdef CONFIG_MMU
1538 {
1da177e4
LT
1539 .procname = "max_map_count",
1540 .data = &sysctl_max_map_count,
1541 .maxlen = sizeof(sysctl_max_map_count),
1542 .mode = 0644,
3e26120c 1543 .proc_handler = proc_dointvec_minmax,
70da2340 1544 .extra1 = &zero,
1da177e4 1545 },
dd8632a1
PM
1546#else
1547 {
dd8632a1
PM
1548 .procname = "nr_trim_pages",
1549 .data = &sysctl_nr_trim_pages,
1550 .maxlen = sizeof(sysctl_nr_trim_pages),
1551 .mode = 0644,
6d456111 1552 .proc_handler = proc_dointvec_minmax,
dd8632a1
PM
1553 .extra1 = &zero,
1554 },
1da177e4
LT
1555#endif
1556 {
1da177e4
LT
1557 .procname = "laptop_mode",
1558 .data = &laptop_mode,
1559 .maxlen = sizeof(laptop_mode),
1560 .mode = 0644,
6d456111 1561 .proc_handler = proc_dointvec_jiffies,
1da177e4
LT
1562 },
1563 {
1da177e4
LT
1564 .procname = "block_dump",
1565 .data = &block_dump,
1566 .maxlen = sizeof(block_dump),
1567 .mode = 0644,
6d456111 1568 .proc_handler = proc_dointvec,
1da177e4
LT
1569 .extra1 = &zero,
1570 },
1571 {
1da177e4
LT
1572 .procname = "vfs_cache_pressure",
1573 .data = &sysctl_vfs_cache_pressure,
1574 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1575 .mode = 0644,
6d456111 1576 .proc_handler = proc_dointvec,
1da177e4
LT
1577 .extra1 = &zero,
1578 },
1579#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1580 {
1da177e4
LT
1581 .procname = "legacy_va_layout",
1582 .data = &sysctl_legacy_va_layout,
1583 .maxlen = sizeof(sysctl_legacy_va_layout),
1584 .mode = 0644,
6d456111 1585 .proc_handler = proc_dointvec,
1da177e4
LT
1586 .extra1 = &zero,
1587 },
1588#endif
1743660b
CL
1589#ifdef CONFIG_NUMA
1590 {
1743660b 1591 .procname = "zone_reclaim_mode",
a5f5f91d
MG
1592 .data = &node_reclaim_mode,
1593 .maxlen = sizeof(node_reclaim_mode),
1743660b 1594 .mode = 0644,
6d456111 1595 .proc_handler = proc_dointvec,
c84db23c 1596 .extra1 = &zero,
1743660b 1597 },
9614634f 1598 {
9614634f
CL
1599 .procname = "min_unmapped_ratio",
1600 .data = &sysctl_min_unmapped_ratio,
1601 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1602 .mode = 0644,
6d456111 1603 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
9614634f
CL
1604 .extra1 = &zero,
1605 .extra2 = &one_hundred,
1606 },
0ff38490 1607 {
0ff38490
CL
1608 .procname = "min_slab_ratio",
1609 .data = &sysctl_min_slab_ratio,
1610 .maxlen = sizeof(sysctl_min_slab_ratio),
1611 .mode = 0644,
6d456111 1612 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
0ff38490
CL
1613 .extra1 = &zero,
1614 .extra2 = &one_hundred,
1615 },
e6e5494c 1616#endif
77461ab3
CL
1617#ifdef CONFIG_SMP
1618 {
77461ab3
CL
1619 .procname = "stat_interval",
1620 .data = &sysctl_stat_interval,
1621 .maxlen = sizeof(sysctl_stat_interval),
1622 .mode = 0644,
6d456111 1623 .proc_handler = proc_dointvec_jiffies,
77461ab3 1624 },
52b6f46b
HD
1625 {
1626 .procname = "stat_refresh",
1627 .data = NULL,
1628 .maxlen = 0,
1629 .mode = 0600,
1630 .proc_handler = vmstat_refresh,
1631 },
77461ab3 1632#endif
6e141546 1633#ifdef CONFIG_MMU
ed032189 1634 {
ed032189 1635 .procname = "mmap_min_addr",
788084ab
EP
1636 .data = &dac_mmap_min_addr,
1637 .maxlen = sizeof(unsigned long),
ed032189 1638 .mode = 0644,
6d456111 1639 .proc_handler = mmap_min_addr_handler,
ed032189 1640 },
6e141546 1641#endif
f0c0b2b8
KH
1642#ifdef CONFIG_NUMA
1643 {
f0c0b2b8
KH
1644 .procname = "numa_zonelist_order",
1645 .data = &numa_zonelist_order,
1646 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1647 .mode = 0644,
6d456111 1648 .proc_handler = numa_zonelist_order_handler,
f0c0b2b8
KH
1649 },
1650#endif
2b8232ce 1651#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
5c36e657 1652 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
e6e5494c 1653 {
e6e5494c 1654 .procname = "vdso_enabled",
3d7ee969
AL
1655#ifdef CONFIG_X86_32
1656 .data = &vdso32_enabled,
1657 .maxlen = sizeof(vdso32_enabled),
1658#else
e6e5494c
IM
1659 .data = &vdso_enabled,
1660 .maxlen = sizeof(vdso_enabled),
3d7ee969 1661#endif
e6e5494c 1662 .mode = 0644,
6d456111 1663 .proc_handler = proc_dointvec,
e6e5494c
IM
1664 .extra1 = &zero,
1665 },
1da177e4 1666#endif
195cf453
BG
1667#ifdef CONFIG_HIGHMEM
1668 {
195cf453
BG
1669 .procname = "highmem_is_dirtyable",
1670 .data = &vm_highmem_is_dirtyable,
1671 .maxlen = sizeof(vm_highmem_is_dirtyable),
1672 .mode = 0644,
6d456111 1673 .proc_handler = proc_dointvec_minmax,
195cf453
BG
1674 .extra1 = &zero,
1675 .extra2 = &one,
1676 },
1677#endif
6a46079c
AK
1678#ifdef CONFIG_MEMORY_FAILURE
1679 {
6a46079c
AK
1680 .procname = "memory_failure_early_kill",
1681 .data = &sysctl_memory_failure_early_kill,
1682 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1683 .mode = 0644,
6d456111 1684 .proc_handler = proc_dointvec_minmax,
6a46079c
AK
1685 .extra1 = &zero,
1686 .extra2 = &one,
1687 },
1688 {
6a46079c
AK
1689 .procname = "memory_failure_recovery",
1690 .data = &sysctl_memory_failure_recovery,
1691 .maxlen = sizeof(sysctl_memory_failure_recovery),
1692 .mode = 0644,
6d456111 1693 .proc_handler = proc_dointvec_minmax,
6a46079c
AK
1694 .extra1 = &zero,
1695 .extra2 = &one,
1696 },
1697#endif
c9b1d098
AS
1698 {
1699 .procname = "user_reserve_kbytes",
1700 .data = &sysctl_user_reserve_kbytes,
1701 .maxlen = sizeof(sysctl_user_reserve_kbytes),
1702 .mode = 0644,
1703 .proc_handler = proc_doulongvec_minmax,
1704 },
4eeab4f5
AS
1705 {
1706 .procname = "admin_reserve_kbytes",
1707 .data = &sysctl_admin_reserve_kbytes,
1708 .maxlen = sizeof(sysctl_admin_reserve_kbytes),
1709 .mode = 0644,
1710 .proc_handler = proc_doulongvec_minmax,
1711 },
d07e2259
DC
1712#ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
1713 {
1714 .procname = "mmap_rnd_bits",
1715 .data = &mmap_rnd_bits,
1716 .maxlen = sizeof(mmap_rnd_bits),
1717 .mode = 0600,
1718 .proc_handler = proc_dointvec_minmax,
1719 .extra1 = (void *)&mmap_rnd_bits_min,
1720 .extra2 = (void *)&mmap_rnd_bits_max,
1721 },
1722#endif
1723#ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
1724 {
1725 .procname = "mmap_rnd_compat_bits",
1726 .data = &mmap_rnd_compat_bits,
1727 .maxlen = sizeof(mmap_rnd_compat_bits),
1728 .mode = 0600,
1729 .proc_handler = proc_dointvec_minmax,
1730 .extra1 = (void *)&mmap_rnd_compat_bits_min,
1731 .extra2 = (void *)&mmap_rnd_compat_bits_max,
1732 },
cefdca0a
PX
1733#endif
1734#ifdef CONFIG_USERFAULTFD
1735 {
1736 .procname = "unprivileged_userfaultfd",
1737 .data = &sysctl_unprivileged_userfaultfd,
1738 .maxlen = sizeof(sysctl_unprivileged_userfaultfd),
1739 .mode = 0644,
1740 .proc_handler = proc_dointvec_minmax,
1741 .extra1 = &zero,
1742 .extra2 = &one,
1743 },
d07e2259 1744#endif
6fce56ec 1745 { }
1da177e4
LT
1746};
1747
d8217f07 1748static struct ctl_table fs_table[] = {
1da177e4 1749 {
1da177e4
LT
1750 .procname = "inode-nr",
1751 .data = &inodes_stat,
3942c07c 1752 .maxlen = 2*sizeof(long),
1da177e4 1753 .mode = 0444,
cffbc8aa 1754 .proc_handler = proc_nr_inodes,
1da177e4
LT
1755 },
1756 {
1da177e4
LT
1757 .procname = "inode-state",
1758 .data = &inodes_stat,
3942c07c 1759 .maxlen = 7*sizeof(long),
1da177e4 1760 .mode = 0444,
cffbc8aa 1761 .proc_handler = proc_nr_inodes,
1da177e4
LT
1762 },
1763 {
1da177e4
LT
1764 .procname = "file-nr",
1765 .data = &files_stat,
518de9b3 1766 .maxlen = sizeof(files_stat),
1da177e4 1767 .mode = 0444,
6d456111 1768 .proc_handler = proc_nr_files,
1da177e4
LT
1769 },
1770 {
1da177e4
LT
1771 .procname = "file-max",
1772 .data = &files_stat.max_files,
518de9b3 1773 .maxlen = sizeof(files_stat.max_files),
1da177e4 1774 .mode = 0644,
518de9b3 1775 .proc_handler = proc_doulongvec_minmax,
9002b214 1776 .extra1 = &zero_ul,
32a5ad9c 1777 .extra2 = &long_max,
1da177e4 1778 },
9cfe015a 1779 {
9cfe015a
ED
1780 .procname = "nr_open",
1781 .data = &sysctl_nr_open,
9b80a184 1782 .maxlen = sizeof(unsigned int),
9cfe015a 1783 .mode = 0644,
6d456111 1784 .proc_handler = proc_dointvec_minmax,
eceea0b3
AV
1785 .extra1 = &sysctl_nr_open_min,
1786 .extra2 = &sysctl_nr_open_max,
9cfe015a 1787 },
1da177e4 1788 {
1da177e4
LT
1789 .procname = "dentry-state",
1790 .data = &dentry_stat,
3942c07c 1791 .maxlen = 6*sizeof(long),
1da177e4 1792 .mode = 0444,
312d3ca8 1793 .proc_handler = proc_nr_dentry,
1da177e4
LT
1794 },
1795 {
1da177e4
LT
1796 .procname = "overflowuid",
1797 .data = &fs_overflowuid,
1798 .maxlen = sizeof(int),
1799 .mode = 0644,
6d456111 1800 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
1801 .extra1 = &minolduid,
1802 .extra2 = &maxolduid,
1803 },
1804 {
1da177e4
LT
1805 .procname = "overflowgid",
1806 .data = &fs_overflowgid,
1807 .maxlen = sizeof(int),
1808 .mode = 0644,
6d456111 1809 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
1810 .extra1 = &minolduid,
1811 .extra2 = &maxolduid,
1812 },
bfcd17a6 1813#ifdef CONFIG_FILE_LOCKING
1da177e4 1814 {
1da177e4
LT
1815 .procname = "leases-enable",
1816 .data = &leases_enable,
1817 .maxlen = sizeof(int),
1818 .mode = 0644,
6d456111 1819 .proc_handler = proc_dointvec,
1da177e4 1820 },
bfcd17a6 1821#endif
1da177e4
LT
1822#ifdef CONFIG_DNOTIFY
1823 {
1da177e4
LT
1824 .procname = "dir-notify-enable",
1825 .data = &dir_notify_enable,
1826 .maxlen = sizeof(int),
1827 .mode = 0644,
6d456111 1828 .proc_handler = proc_dointvec,
1da177e4
LT
1829 },
1830#endif
1831#ifdef CONFIG_MMU
bfcd17a6 1832#ifdef CONFIG_FILE_LOCKING
1da177e4 1833 {
1da177e4
LT
1834 .procname = "lease-break-time",
1835 .data = &lease_break_time,
1836 .maxlen = sizeof(int),
1837 .mode = 0644,
6d456111 1838 .proc_handler = proc_dointvec,
1da177e4 1839 },
bfcd17a6 1840#endif
ebf3f09c 1841#ifdef CONFIG_AIO
1da177e4 1842 {
1da177e4
LT
1843 .procname = "aio-nr",
1844 .data = &aio_nr,
1845 .maxlen = sizeof(aio_nr),
1846 .mode = 0444,
6d456111 1847 .proc_handler = proc_doulongvec_minmax,
1da177e4
LT
1848 },
1849 {
1da177e4
LT
1850 .procname = "aio-max-nr",
1851 .data = &aio_max_nr,
1852 .maxlen = sizeof(aio_max_nr),
1853 .mode = 0644,
6d456111 1854 .proc_handler = proc_doulongvec_minmax,
1da177e4 1855 },
ebf3f09c 1856#endif /* CONFIG_AIO */
2d9048e2 1857#ifdef CONFIG_INOTIFY_USER
0399cb08 1858 {
0399cb08
RL
1859 .procname = "inotify",
1860 .mode = 0555,
1861 .child = inotify_table,
1862 },
1863#endif
7ef9964e
DL
1864#ifdef CONFIG_EPOLL
1865 {
1866 .procname = "epoll",
1867 .mode = 0555,
1868 .child = epoll_table,
1869 },
1870#endif
1da177e4 1871#endif
800179c9
KC
1872 {
1873 .procname = "protected_symlinks",
1874 .data = &sysctl_protected_symlinks,
1875 .maxlen = sizeof(int),
1876 .mode = 0600,
1877 .proc_handler = proc_dointvec_minmax,
1878 .extra1 = &zero,
1879 .extra2 = &one,
1880 },
1881 {
1882 .procname = "protected_hardlinks",
1883 .data = &sysctl_protected_hardlinks,
1884 .maxlen = sizeof(int),
1885 .mode = 0600,
1886 .proc_handler = proc_dointvec_minmax,
1887 .extra1 = &zero,
1888 .extra2 = &one,
1889 },
30aba665
SM
1890 {
1891 .procname = "protected_fifos",
1892 .data = &sysctl_protected_fifos,
1893 .maxlen = sizeof(int),
1894 .mode = 0600,
1895 .proc_handler = proc_dointvec_minmax,
1896 .extra1 = &zero,
1897 .extra2 = &two,
1898 },
1899 {
1900 .procname = "protected_regular",
1901 .data = &sysctl_protected_regular,
1902 .maxlen = sizeof(int),
1903 .mode = 0600,
1904 .proc_handler = proc_dointvec_minmax,
1905 .extra1 = &zero,
1906 .extra2 = &two,
1907 },
d6e71144 1908 {
d6e71144
AC
1909 .procname = "suid_dumpable",
1910 .data = &suid_dumpable,
1911 .maxlen = sizeof(int),
1912 .mode = 0644,
54b50199 1913 .proc_handler = proc_dointvec_minmax_coredump,
8e654fba
MW
1914 .extra1 = &zero,
1915 .extra2 = &two,
d6e71144 1916 },
2abc26fc
EB
1917#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1918 {
2abc26fc
EB
1919 .procname = "binfmt_misc",
1920 .mode = 0555,
f9bd6733 1921 .child = sysctl_mount_point,
2abc26fc
EB
1922 },
1923#endif
b492e95b 1924 {
ff9da691
JA
1925 .procname = "pipe-max-size",
1926 .data = &pipe_max_size,
98159d97 1927 .maxlen = sizeof(pipe_max_size),
b492e95b 1928 .mode = 0644,
319e0a21 1929 .proc_handler = proc_dopipe_max_size,
b492e95b 1930 },
759c0114
WT
1931 {
1932 .procname = "pipe-user-pages-hard",
1933 .data = &pipe_user_pages_hard,
1934 .maxlen = sizeof(pipe_user_pages_hard),
1935 .mode = 0644,
1936 .proc_handler = proc_doulongvec_minmax,
1937 },
1938 {
1939 .procname = "pipe-user-pages-soft",
1940 .data = &pipe_user_pages_soft,
1941 .maxlen = sizeof(pipe_user_pages_soft),
1942 .mode = 0644,
1943 .proc_handler = proc_doulongvec_minmax,
1944 },
d2921684
EB
1945 {
1946 .procname = "mount-max",
1947 .data = &sysctl_mount_max,
1948 .maxlen = sizeof(unsigned int),
1949 .mode = 0644,
1950 .proc_handler = proc_dointvec_minmax,
1951 .extra1 = &one,
1952 },
6fce56ec 1953 { }
1da177e4
LT
1954};
1955
d8217f07 1956static struct ctl_table debug_table[] = {
7ac57a89 1957#ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
abd4f750 1958 {
abd4f750
MAS
1959 .procname = "exception-trace",
1960 .data = &show_unhandled_signals,
1961 .maxlen = sizeof(int),
1962 .mode = 0644,
1963 .proc_handler = proc_dointvec
1964 },
b2be84df
MH
1965#endif
1966#if defined(CONFIG_OPTPROBES)
1967 {
1968 .procname = "kprobes-optimization",
1969 .data = &sysctl_kprobes_optimization,
1970 .maxlen = sizeof(int),
1971 .mode = 0644,
1972 .proc_handler = proc_kprobes_optimization_handler,
1973 .extra1 = &zero,
1974 .extra2 = &one,
1975 },
abd4f750 1976#endif
6fce56ec 1977 { }
1da177e4
LT
1978};
1979
d8217f07 1980static struct ctl_table dev_table[] = {
6fce56ec 1981 { }
0eeca283 1982};
1da177e4 1983
de4e83bd 1984int __init sysctl_init(void)
d912b0cc 1985{
fd4b616b
SR
1986 struct ctl_table_header *hdr;
1987
1988 hdr = register_sysctl_table(sysctl_base_table);
1989 kmemleak_not_leak(hdr);
d912b0cc
EB
1990 return 0;
1991}
1992
b89a8171
EB
1993#endif /* CONFIG_SYSCTL */
1994
1da177e4
LT
1995/*
1996 * /proc/sys support
1997 */
1998
b89a8171 1999#ifdef CONFIG_PROC_SYSCTL
1da177e4 2000
f8808300
KC
2001static int _proc_do_string(char *data, int maxlen, int write,
2002 char __user *buffer,
b1ba4ddd 2003 size_t *lenp, loff_t *ppos)
1da177e4
LT
2004{
2005 size_t len;
2006 char __user *p;
2007 char c;
8d060877
ON
2008
2009 if (!data || !maxlen || !*lenp) {
1da177e4
LT
2010 *lenp = 0;
2011 return 0;
2012 }
8d060877 2013
1da177e4 2014 if (write) {
f4aacea2
KC
2015 if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
2016 /* Only continue writes not past the end of buffer. */
2017 len = strlen(data);
2018 if (len > maxlen - 1)
2019 len = maxlen - 1;
2020
2021 if (*ppos > len)
2022 return 0;
2023 len = *ppos;
2024 } else {
2025 /* Start writing from beginning of buffer. */
2026 len = 0;
2027 }
2028
2ca9bb45 2029 *ppos += *lenp;
1da177e4 2030 p = buffer;
2ca9bb45 2031 while ((p - buffer) < *lenp && len < maxlen - 1) {
1da177e4
LT
2032 if (get_user(c, p++))
2033 return -EFAULT;
2034 if (c == 0 || c == '\n')
2035 break;
2ca9bb45 2036 data[len++] = c;
1da177e4 2037 }
f8808300 2038 data[len] = 0;
1da177e4 2039 } else {
f5dd3d6f
SV
2040 len = strlen(data);
2041 if (len > maxlen)
2042 len = maxlen;
8d060877
ON
2043
2044 if (*ppos > len) {
2045 *lenp = 0;
2046 return 0;
2047 }
2048
2049 data += *ppos;
2050 len -= *ppos;
2051
1da177e4
LT
2052 if (len > *lenp)
2053 len = *lenp;
2054 if (len)
f8808300 2055 if (copy_to_user(buffer, data, len))
1da177e4
LT
2056 return -EFAULT;
2057 if (len < *lenp) {
f8808300 2058 if (put_user('\n', buffer + len))
1da177e4
LT
2059 return -EFAULT;
2060 len++;
2061 }
2062 *lenp = len;
2063 *ppos += len;
2064 }
2065 return 0;
2066}
2067
f4aacea2
KC
2068static void warn_sysctl_write(struct ctl_table *table)
2069{
2070 pr_warn_once("%s wrote to %s when file position was not 0!\n"
2071 "This will not be supported in the future. To silence this\n"
2072 "warning, set kernel.sysctl_writes_strict = -1\n",
2073 current->comm, table->procname);
2074}
2075
d383d484 2076/**
5f733e8a 2077 * proc_first_pos_non_zero_ignore - check if first position is allowed
d383d484
LR
2078 * @ppos: file position
2079 * @table: the sysctl table
2080 *
2081 * Returns true if the first position is non-zero and the sysctl_writes_strict
2082 * mode indicates this is not allowed for numeric input types. String proc
5f733e8a 2083 * handlers can ignore the return value.
d383d484
LR
2084 */
2085static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
2086 struct ctl_table *table)
2087{
2088 if (!*ppos)
2089 return false;
2090
2091 switch (sysctl_writes_strict) {
2092 case SYSCTL_WRITES_STRICT:
2093 return true;
2094 case SYSCTL_WRITES_WARN:
2095 warn_sysctl_write(table);
2096 return false;
2097 default:
2098 return false;
2099 }
2100}
2101
f5dd3d6f
SV
2102/**
2103 * proc_dostring - read a string sysctl
2104 * @table: the sysctl table
2105 * @write: %TRUE if this is a write to the sysctl file
f5dd3d6f
SV
2106 * @buffer: the user buffer
2107 * @lenp: the size of the user buffer
2108 * @ppos: file position
2109 *
2110 * Reads/writes a string from/to the user buffer. If the kernel
2111 * buffer provided is not large enough to hold the string, the
2112 * string is truncated. The copied string is %NULL-terminated.
2113 * If the string is being read by the user process, it is copied
2114 * and a newline '\n' is added. It is truncated if the buffer is
2115 * not large enough.
2116 *
2117 * Returns 0 on success.
2118 */
8d65af78 2119int proc_dostring(struct ctl_table *table, int write,
f5dd3d6f
SV
2120 void __user *buffer, size_t *lenp, loff_t *ppos)
2121{
d383d484
LR
2122 if (write)
2123 proc_first_pos_non_zero_ignore(ppos, table);
f4aacea2 2124
f8808300
KC
2125 return _proc_do_string((char *)(table->data), table->maxlen, write,
2126 (char __user *)buffer, lenp, ppos);
f5dd3d6f
SV
2127}
2128
00b7c339
AW
2129static size_t proc_skip_spaces(char **buf)
2130{
2131 size_t ret;
2132 char *tmp = skip_spaces(*buf);
2133 ret = tmp - *buf;
2134 *buf = tmp;
2135 return ret;
2136}
2137
9f977fb7
OP
2138static void proc_skip_char(char **buf, size_t *size, const char v)
2139{
2140 while (*size) {
2141 if (**buf != v)
2142 break;
2143 (*size)--;
2144 (*buf)++;
2145 }
2146}
2147
7f2923c4
CB
2148/**
2149 * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
2150 * fail on overflow
2151 *
2152 * @cp: kernel buffer containing the string to parse
2153 * @endp: pointer to store the trailing characters
2154 * @base: the base to use
2155 * @res: where the parsed integer will be stored
2156 *
2157 * In case of success 0 is returned and @res will contain the parsed integer,
2158 * @endp will hold any trailing characters.
2159 * This function will fail the parse on overflow. If there wasn't an overflow
2160 * the function will defer the decision what characters count as invalid to the
2161 * caller.
2162 */
2163static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
2164 unsigned long *res)
2165{
2166 unsigned long long result;
2167 unsigned int rv;
2168
2169 cp = _parse_integer_fixup_radix(cp, &base);
2170 rv = _parse_integer(cp, base, &result);
2171 if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
2172 return -ERANGE;
2173
2174 cp += rv;
2175
2176 if (endp)
2177 *endp = (char *)cp;
2178
2179 *res = (unsigned long)result;
2180 return 0;
2181}
2182
00b7c339
AW
2183#define TMPBUFLEN 22
2184/**
0fc377bd 2185 * proc_get_long - reads an ASCII formatted integer from a user buffer
00b7c339 2186 *
0fc377bd
RD
2187 * @buf: a kernel buffer
2188 * @size: size of the kernel buffer
2189 * @val: this is where the number will be stored
2190 * @neg: set to %TRUE if number is negative
2191 * @perm_tr: a vector which contains the allowed trailers
2192 * @perm_tr_len: size of the perm_tr vector
2193 * @tr: pointer to store the trailer character
00b7c339 2194 *
0fc377bd
RD
2195 * In case of success %0 is returned and @buf and @size are updated with
2196 * the amount of bytes read. If @tr is non-NULL and a trailing
2197 * character exists (size is non-zero after returning from this
2198 * function), @tr is updated with the trailing character.
00b7c339
AW
2199 */
2200static int proc_get_long(char **buf, size_t *size,
2201 unsigned long *val, bool *neg,
2202 const char *perm_tr, unsigned perm_tr_len, char *tr)
2203{
2204 int len;
2205 char *p, tmp[TMPBUFLEN];
2206
2207 if (!*size)
2208 return -EINVAL;
2209
2210 len = *size;
2211 if (len > TMPBUFLEN - 1)
2212 len = TMPBUFLEN - 1;
2213
2214 memcpy(tmp, *buf, len);
2215
2216 tmp[len] = 0;
2217 p = tmp;
2218 if (*p == '-' && *size > 1) {
2219 *neg = true;
2220 p++;
2221 } else
2222 *neg = false;
2223 if (!isdigit(*p))
2224 return -EINVAL;
2225
7f2923c4
CB
2226 if (strtoul_lenient(p, &p, 0, val))
2227 return -EINVAL;
00b7c339
AW
2228
2229 len = p - tmp;
2230
2231 /* We don't know if the next char is whitespace thus we may accept
2232 * invalid integers (e.g. 1234...a) or two integers instead of one
2233 * (e.g. 123...1). So lets not allow such large numbers. */
2234 if (len == TMPBUFLEN - 1)
2235 return -EINVAL;
2236
2237 if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
2238 return -EINVAL;
1da177e4 2239
00b7c339
AW
2240 if (tr && (len < *size))
2241 *tr = *p;
2242
2243 *buf += len;
2244 *size -= len;
2245
2246 return 0;
2247}
2248
2249/**
0fc377bd 2250 * proc_put_long - converts an integer to a decimal ASCII formatted string
00b7c339 2251 *
0fc377bd
RD
2252 * @buf: the user buffer
2253 * @size: the size of the user buffer
2254 * @val: the integer to be converted
2255 * @neg: sign of the number, %TRUE for negative
00b7c339 2256 *
0fc377bd
RD
2257 * In case of success %0 is returned and @buf and @size are updated with
2258 * the amount of bytes written.
00b7c339
AW
2259 */
2260static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
2261 bool neg)
2262{
2263 int len;
2264 char tmp[TMPBUFLEN], *p = tmp;
2265
2266 sprintf(p, "%s%lu", neg ? "-" : "", val);
2267 len = strlen(tmp);
2268 if (len > *size)
2269 len = *size;
2270 if (copy_to_user(*buf, tmp, len))
2271 return -EFAULT;
2272 *size -= len;
2273 *buf += len;
2274 return 0;
2275}
2276#undef TMPBUFLEN
2277
2278static int proc_put_char(void __user **buf, size_t *size, char c)
2279{
2280 if (*size) {
2281 char __user **buffer = (char __user **)buf;
2282 if (put_user(c, *buffer))
2283 return -EFAULT;
2284 (*size)--, (*buffer)++;
2285 *buf = *buffer;
2286 }
2287 return 0;
2288}
1da177e4 2289
00b7c339 2290static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
1da177e4
LT
2291 int *valp,
2292 int write, void *data)
2293{
2294 if (write) {
230633d1
HS
2295 if (*negp) {
2296 if (*lvalp > (unsigned long) INT_MAX + 1)
2297 return -EINVAL;
2298 *valp = -*lvalp;
2299 } else {
2300 if (*lvalp > (unsigned long) INT_MAX)
2301 return -EINVAL;
2302 *valp = *lvalp;
2303 }
1da177e4
LT
2304 } else {
2305 int val = *valp;
2306 if (val < 0) {
00b7c339 2307 *negp = true;
9a5bc726 2308 *lvalp = -(unsigned long)val;
1da177e4 2309 } else {
00b7c339 2310 *negp = false;
1da177e4
LT
2311 *lvalp = (unsigned long)val;
2312 }
2313 }
2314 return 0;
2315}
2316
4f2fec00
LR
2317static int do_proc_douintvec_conv(unsigned long *lvalp,
2318 unsigned int *valp,
2319 int write, void *data)
e7d316a0
SAK
2320{
2321 if (write) {
425fffd8
LZ
2322 if (*lvalp > UINT_MAX)
2323 return -EINVAL;
e7d316a0
SAK
2324 *valp = *lvalp;
2325 } else {
2326 unsigned int val = *valp;
2327 *lvalp = (unsigned long)val;
2328 }
2329 return 0;
2330}
2331
00b7c339
AW
2332static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
2333
d8217f07 2334static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
8d65af78 2335 int write, void __user *buffer,
fcfbd547 2336 size_t *lenp, loff_t *ppos,
00b7c339 2337 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
1da177e4
LT
2338 int write, void *data),
2339 void *data)
2340{
00b7c339 2341 int *i, vleft, first = 1, err = 0;
00b7c339 2342 size_t left;
70f6cbb6 2343 char *kbuf = NULL, *p;
1da177e4 2344
00b7c339 2345 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
1da177e4
LT
2346 *lenp = 0;
2347 return 0;
2348 }
2349
fcfbd547 2350 i = (int *) tbl_data;
1da177e4
LT
2351 vleft = table->maxlen / sizeof(*i);
2352 left = *lenp;
2353
2354 if (!conv)
2355 conv = do_proc_dointvec_conv;
2356
00b7c339 2357 if (write) {
d383d484
LR
2358 if (proc_first_pos_non_zero_ignore(ppos, table))
2359 goto out;
f4aacea2 2360
00b7c339
AW
2361 if (left > PAGE_SIZE - 1)
2362 left = PAGE_SIZE - 1;
70f6cbb6
AV
2363 p = kbuf = memdup_user_nul(buffer, left);
2364 if (IS_ERR(kbuf))
2365 return PTR_ERR(kbuf);
00b7c339
AW
2366 }
2367
1da177e4 2368 for (; left && vleft--; i++, first=0) {
00b7c339
AW
2369 unsigned long lval;
2370 bool neg;
1da177e4 2371
00b7c339 2372 if (write) {
70f6cbb6 2373 left -= proc_skip_spaces(&p);
1da177e4 2374
563b0467
O
2375 if (!left)
2376 break;
70f6cbb6 2377 err = proc_get_long(&p, &left, &lval, &neg,
00b7c339
AW
2378 proc_wspace_sep,
2379 sizeof(proc_wspace_sep), NULL);
2380 if (err)
1da177e4 2381 break;
00b7c339
AW
2382 if (conv(&neg, &lval, i, 1, data)) {
2383 err = -EINVAL;
1da177e4 2384 break;
00b7c339 2385 }
1da177e4 2386 } else {
00b7c339
AW
2387 if (conv(&neg, &lval, i, 0, data)) {
2388 err = -EINVAL;
2389 break;
2390 }
1da177e4 2391 if (!first)
00b7c339
AW
2392 err = proc_put_char(&buffer, &left, '\t');
2393 if (err)
2394 break;
2395 err = proc_put_long(&buffer, &left, lval, neg);
2396 if (err)
1da177e4 2397 break;
1da177e4
LT
2398 }
2399 }
2400
00b7c339
AW
2401 if (!write && !first && left && !err)
2402 err = proc_put_char(&buffer, &left, '\n');
563b0467 2403 if (write && !err && left)
70f6cbb6 2404 left -= proc_skip_spaces(&p);
1da177e4 2405 if (write) {
70f6cbb6 2406 kfree(kbuf);
00b7c339
AW
2407 if (first)
2408 return err ? : -EINVAL;
1da177e4 2409 }
1da177e4 2410 *lenp -= left;
f4aacea2 2411out:
1da177e4 2412 *ppos += *lenp;
00b7c339 2413 return err;
1da177e4
LT
2414}
2415
8d65af78 2416static int do_proc_dointvec(struct ctl_table *table, int write,
fcfbd547 2417 void __user *buffer, size_t *lenp, loff_t *ppos,
00b7c339 2418 int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
fcfbd547
KK
2419 int write, void *data),
2420 void *data)
2421{
8d65af78 2422 return __do_proc_dointvec(table->data, table, write,
fcfbd547
KK
2423 buffer, lenp, ppos, conv, data);
2424}
2425
4f2fec00
LR
2426static int do_proc_douintvec_w(unsigned int *tbl_data,
2427 struct ctl_table *table,
2428 void __user *buffer,
2429 size_t *lenp, loff_t *ppos,
2430 int (*conv)(unsigned long *lvalp,
2431 unsigned int *valp,
2432 int write, void *data),
2433 void *data)
2434{
2435 unsigned long lval;
2436 int err = 0;
2437 size_t left;
2438 bool neg;
2439 char *kbuf = NULL, *p;
2440
2441 left = *lenp;
2442
2443 if (proc_first_pos_non_zero_ignore(ppos, table))
2444 goto bail_early;
2445
2446 if (left > PAGE_SIZE - 1)
2447 left = PAGE_SIZE - 1;
2448
2449 p = kbuf = memdup_user_nul(buffer, left);
2450 if (IS_ERR(kbuf))
2451 return -EINVAL;
2452
2453 left -= proc_skip_spaces(&p);
2454 if (!left) {
2455 err = -EINVAL;
2456 goto out_free;
2457 }
2458
2459 err = proc_get_long(&p, &left, &lval, &neg,
2460 proc_wspace_sep,
2461 sizeof(proc_wspace_sep), NULL);
2462 if (err || neg) {
2463 err = -EINVAL;
2464 goto out_free;
2465 }
2466
2467 if (conv(&lval, tbl_data, 1, data)) {
2468 err = -EINVAL;
2469 goto out_free;
2470 }
2471
2472 if (!err && left)
2473 left -= proc_skip_spaces(&p);
2474
2475out_free:
2476 kfree(kbuf);
2477 if (err)
2478 return -EINVAL;
2479
2480 return 0;
2481
2482 /* This is in keeping with old __do_proc_dointvec() */
2483bail_early:
2484 *ppos += *lenp;
2485 return err;
2486}
2487
2488static int do_proc_douintvec_r(unsigned int *tbl_data, void __user *buffer,
2489 size_t *lenp, loff_t *ppos,
2490 int (*conv)(unsigned long *lvalp,
2491 unsigned int *valp,
2492 int write, void *data),
2493 void *data)
2494{
2495 unsigned long lval;
2496 int err = 0;
2497 size_t left;
2498
2499 left = *lenp;
2500
2501 if (conv(&lval, tbl_data, 0, data)) {
2502 err = -EINVAL;
2503 goto out;
2504 }
2505
2506 err = proc_put_long(&buffer, &left, lval, false);
2507 if (err || !left)
2508 goto out;
2509
2510 err = proc_put_char(&buffer, &left, '\n');
2511
2512out:
2513 *lenp -= left;
2514 *ppos += *lenp;
2515
2516 return err;
2517}
2518
2519static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
2520 int write, void __user *buffer,
2521 size_t *lenp, loff_t *ppos,
2522 int (*conv)(unsigned long *lvalp,
2523 unsigned int *valp,
2524 int write, void *data),
2525 void *data)
2526{
2527 unsigned int *i, vleft;
2528
2529 if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
2530 *lenp = 0;
2531 return 0;
2532 }
2533
2534 i = (unsigned int *) tbl_data;
2535 vleft = table->maxlen / sizeof(*i);
2536
2537 /*
2538 * Arrays are not supported, keep this simple. *Do not* add
2539 * support for them.
2540 */
2541 if (vleft != 1) {
2542 *lenp = 0;
2543 return -EINVAL;
2544 }
2545
2546 if (!conv)
2547 conv = do_proc_douintvec_conv;
2548
2549 if (write)
2550 return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
2551 conv, data);
2552 return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
2553}
2554
2555static int do_proc_douintvec(struct ctl_table *table, int write,
2556 void __user *buffer, size_t *lenp, loff_t *ppos,
2557 int (*conv)(unsigned long *lvalp,
2558 unsigned int *valp,
2559 int write, void *data),
2560 void *data)
2561{
2562 return __do_proc_douintvec(table->data, table, write,
2563 buffer, lenp, ppos, conv, data);
2564}
2565
1da177e4
LT
2566/**
2567 * proc_dointvec - read a vector of integers
2568 * @table: the sysctl table
2569 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
2570 * @buffer: the user buffer
2571 * @lenp: the size of the user buffer
2572 * @ppos: file position
2573 *
2574 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2575 * values from/to the user buffer, treated as an ASCII string.
2576 *
2577 * Returns 0 on success.
2578 */
8d65af78 2579int proc_dointvec(struct ctl_table *table, int write,
1da177e4
LT
2580 void __user *buffer, size_t *lenp, loff_t *ppos)
2581{
e7d316a0
SAK
2582 return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
2583}
2584
2585/**
2586 * proc_douintvec - read a vector of unsigned integers
2587 * @table: the sysctl table
2588 * @write: %TRUE if this is a write to the sysctl file
2589 * @buffer: the user buffer
2590 * @lenp: the size of the user buffer
2591 * @ppos: file position
2592 *
2593 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2594 * values from/to the user buffer, treated as an ASCII string.
2595 *
2596 * Returns 0 on success.
2597 */
2598int proc_douintvec(struct ctl_table *table, int write,
2599 void __user *buffer, size_t *lenp, loff_t *ppos)
2600{
4f2fec00
LR
2601 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2602 do_proc_douintvec_conv, NULL);
1da177e4
LT
2603}
2604
34f5a398 2605/*
25ddbb18
AK
2606 * Taint values can only be increased
2607 * This means we can safely use a temporary.
34f5a398 2608 */
8d65af78 2609static int proc_taint(struct ctl_table *table, int write,
34f5a398
TT
2610 void __user *buffer, size_t *lenp, loff_t *ppos)
2611{
25ddbb18
AK
2612 struct ctl_table t;
2613 unsigned long tmptaint = get_taint();
2614 int err;
34f5a398 2615
91fcd412 2616 if (write && !capable(CAP_SYS_ADMIN))
34f5a398
TT
2617 return -EPERM;
2618
25ddbb18
AK
2619 t = *table;
2620 t.data = &tmptaint;
8d65af78 2621 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
25ddbb18
AK
2622 if (err < 0)
2623 return err;
2624
2625 if (write) {
2626 /*
2627 * Poor man's atomic or. Not worth adding a primitive
2628 * to everyone's atomic.h for this
2629 */
2630 int i;
2631 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2632 if ((tmptaint >> i) & 1)
373d4d09 2633 add_taint(i, LOCKDEP_STILL_OK);
25ddbb18
AK
2634 }
2635 }
2636
2637 return err;
34f5a398
TT
2638}
2639
bfdc0b49 2640#ifdef CONFIG_PRINTK
620f6e8e 2641static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
bfdc0b49
RW
2642 void __user *buffer, size_t *lenp, loff_t *ppos)
2643{
2644 if (write && !capable(CAP_SYS_ADMIN))
2645 return -EPERM;
2646
2647 return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2648}
2649#endif
2650
24704f36
WL
2651/**
2652 * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
2653 * @min: pointer to minimum allowable value
2654 * @max: pointer to maximum allowable value
2655 *
2656 * The do_proc_dointvec_minmax_conv_param structure provides the
2657 * minimum and maximum values for doing range checking for those sysctl
2658 * parameters that use the proc_dointvec_minmax() handler.
2659 */
1da177e4
LT
2660struct do_proc_dointvec_minmax_conv_param {
2661 int *min;
2662 int *max;
2663};
2664
00b7c339
AW
2665static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
2666 int *valp,
1da177e4
LT
2667 int write, void *data)
2668{
2bc4fc60 2669 int tmp, ret;
1da177e4 2670 struct do_proc_dointvec_minmax_conv_param *param = data;
2bc4fc60
ZW
2671 /*
2672 * If writing, first do so via a temporary local int so we can
2673 * bounds-check it before touching *valp.
2674 */
2675 int *ip = write ? &tmp : valp;
2676
2677 ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
2678 if (ret)
2679 return ret;
2680
1da177e4 2681 if (write) {
2bc4fc60
ZW
2682 if ((param->min && *param->min > tmp) ||
2683 (param->max && *param->max < tmp))
1da177e4 2684 return -EINVAL;
2bc4fc60 2685 *valp = tmp;
1da177e4 2686 }
2bc4fc60 2687
1da177e4
LT
2688 return 0;
2689}
2690
2691/**
2692 * proc_dointvec_minmax - read a vector of integers with min/max values
2693 * @table: the sysctl table
2694 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
2695 * @buffer: the user buffer
2696 * @lenp: the size of the user buffer
2697 * @ppos: file position
2698 *
2699 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2700 * values from/to the user buffer, treated as an ASCII string.
2701 *
2702 * This routine will ensure the values are within the range specified by
2703 * table->extra1 (min) and table->extra2 (max).
2704 *
24704f36 2705 * Returns 0 on success or -EINVAL on write when the range check fails.
1da177e4 2706 */
8d65af78 2707int proc_dointvec_minmax(struct ctl_table *table, int write,
1da177e4
LT
2708 void __user *buffer, size_t *lenp, loff_t *ppos)
2709{
2710 struct do_proc_dointvec_minmax_conv_param param = {
2711 .min = (int *) table->extra1,
2712 .max = (int *) table->extra2,
2713 };
8d65af78 2714 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1da177e4
LT
2715 do_proc_dointvec_minmax_conv, &param);
2716}
2717
24704f36
WL
2718/**
2719 * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
2720 * @min: pointer to minimum allowable value
2721 * @max: pointer to maximum allowable value
2722 *
2723 * The do_proc_douintvec_minmax_conv_param structure provides the
2724 * minimum and maximum values for doing range checking for those sysctl
2725 * parameters that use the proc_douintvec_minmax() handler.
2726 */
61d9b56a
LR
2727struct do_proc_douintvec_minmax_conv_param {
2728 unsigned int *min;
2729 unsigned int *max;
2730};
2731
2732static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
2733 unsigned int *valp,
2734 int write, void *data)
2735{
2bc4fc60
ZW
2736 int ret;
2737 unsigned int tmp;
61d9b56a 2738 struct do_proc_douintvec_minmax_conv_param *param = data;
2bc4fc60
ZW
2739 /* write via temporary local uint for bounds-checking */
2740 unsigned int *up = write ? &tmp : valp;
61d9b56a 2741
2bc4fc60
ZW
2742 ret = do_proc_douintvec_conv(lvalp, up, write, data);
2743 if (ret)
2744 return ret;
fb910c42 2745
2bc4fc60
ZW
2746 if (write) {
2747 if ((param->min && *param->min > tmp) ||
2748 (param->max && *param->max < tmp))
61d9b56a
LR
2749 return -ERANGE;
2750
2bc4fc60 2751 *valp = tmp;
61d9b56a
LR
2752 }
2753
2754 return 0;
2755}
2756
2757/**
2758 * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
2759 * @table: the sysctl table
2760 * @write: %TRUE if this is a write to the sysctl file
2761 * @buffer: the user buffer
2762 * @lenp: the size of the user buffer
2763 * @ppos: file position
2764 *
2765 * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
2766 * values from/to the user buffer, treated as an ASCII string. Negative
2767 * strings are not allowed.
2768 *
2769 * This routine will ensure the values are within the range specified by
2770 * table->extra1 (min) and table->extra2 (max). There is a final sanity
2771 * check for UINT_MAX to avoid having to support wrap around uses from
2772 * userspace.
2773 *
24704f36 2774 * Returns 0 on success or -ERANGE on write when the range check fails.
61d9b56a
LR
2775 */
2776int proc_douintvec_minmax(struct ctl_table *table, int write,
2777 void __user *buffer, size_t *lenp, loff_t *ppos)
2778{
2779 struct do_proc_douintvec_minmax_conv_param param = {
2780 .min = (unsigned int *) table->extra1,
2781 .max = (unsigned int *) table->extra2,
2782 };
2783 return do_proc_douintvec(table, write, buffer, lenp, ppos,
2784 do_proc_douintvec_minmax_conv, &param);
2785}
2786
7a8d1819
JL
2787static int do_proc_dopipe_max_size_conv(unsigned long *lvalp,
2788 unsigned int *valp,
2789 int write, void *data)
2790{
7a8d1819 2791 if (write) {
fb910c42 2792 unsigned int val;
7a8d1819 2793
fb910c42 2794 val = round_pipe_size(*lvalp);
7a8d1819
JL
2795 if (val == 0)
2796 return -EINVAL;
2797
7a8d1819
JL
2798 *valp = val;
2799 } else {
2800 unsigned int val = *valp;
2801 *lvalp = (unsigned long) val;
2802 }
2803
2804 return 0;
2805}
2806
319e0a21
EB
2807static int proc_dopipe_max_size(struct ctl_table *table, int write,
2808 void __user *buffer, size_t *lenp, loff_t *ppos)
7a8d1819 2809{
7a8d1819 2810 return do_proc_douintvec(table, write, buffer, lenp, ppos,
4c2e4bef 2811 do_proc_dopipe_max_size_conv, NULL);
7a8d1819
JL
2812}
2813
54b50199
KC
2814static void validate_coredump_safety(void)
2815{
046d662f 2816#ifdef CONFIG_COREDUMP
e579d2c2 2817 if (suid_dumpable == SUID_DUMP_ROOT &&
54b50199 2818 core_pattern[0] != '/' && core_pattern[0] != '|') {
760c6a91
AD
2819 printk(KERN_WARNING
2820"Unsafe core_pattern used with fs.suid_dumpable=2.\n"
2821"Pipe handler or fully qualified core dump path required.\n"
2822"Set kernel.core_pattern before fs.suid_dumpable.\n"
2823 );
54b50199 2824 }
046d662f 2825#endif
54b50199
KC
2826}
2827
2828static int proc_dointvec_minmax_coredump(struct ctl_table *table, int write,
2829 void __user *buffer, size_t *lenp, loff_t *ppos)
2830{
2831 int error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2832 if (!error)
2833 validate_coredump_safety();
2834 return error;
2835}
2836
046d662f 2837#ifdef CONFIG_COREDUMP
54b50199
KC
2838static int proc_dostring_coredump(struct ctl_table *table, int write,
2839 void __user *buffer, size_t *lenp, loff_t *ppos)
2840{
2841 int error = proc_dostring(table, write, buffer, lenp, ppos);
2842 if (!error)
2843 validate_coredump_safety();
2844 return error;
2845}
046d662f 2846#endif
54b50199 2847
d8217f07 2848static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
1da177e4
LT
2849 void __user *buffer,
2850 size_t *lenp, loff_t *ppos,
2851 unsigned long convmul,
2852 unsigned long convdiv)
2853{
00b7c339
AW
2854 unsigned long *i, *min, *max;
2855 int vleft, first = 1, err = 0;
00b7c339 2856 size_t left;
70f6cbb6 2857 char *kbuf = NULL, *p;
00b7c339
AW
2858
2859 if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
1da177e4
LT
2860 *lenp = 0;
2861 return 0;
2862 }
00b7c339 2863
fcfbd547 2864 i = (unsigned long *) data;
1da177e4
LT
2865 min = (unsigned long *) table->extra1;
2866 max = (unsigned long *) table->extra2;
2867 vleft = table->maxlen / sizeof(unsigned long);
2868 left = *lenp;
00b7c339
AW
2869
2870 if (write) {
d383d484
LR
2871 if (proc_first_pos_non_zero_ignore(ppos, table))
2872 goto out;
f4aacea2 2873
00b7c339
AW
2874 if (left > PAGE_SIZE - 1)
2875 left = PAGE_SIZE - 1;
70f6cbb6
AV
2876 p = kbuf = memdup_user_nul(buffer, left);
2877 if (IS_ERR(kbuf))
2878 return PTR_ERR(kbuf);
00b7c339
AW
2879 }
2880
27b3d80a 2881 for (; left && vleft--; i++, first = 0) {
00b7c339
AW
2882 unsigned long val;
2883
1da177e4 2884 if (write) {
00b7c339
AW
2885 bool neg;
2886
70f6cbb6 2887 left -= proc_skip_spaces(&p);
09be1784
CL
2888 if (!left)
2889 break;
00b7c339 2890
70f6cbb6 2891 err = proc_get_long(&p, &left, &val, &neg,
00b7c339
AW
2892 proc_wspace_sep,
2893 sizeof(proc_wspace_sep), NULL);
2894 if (err)
1da177e4
LT
2895 break;
2896 if (neg)
1da177e4 2897 continue;
ff9f8a7c 2898 val = convmul * val / convdiv;
e260ad01
CB
2899 if ((min && val < *min) || (max && val > *max)) {
2900 err = -EINVAL;
2901 break;
2902 }
1da177e4
LT
2903 *i = val;
2904 } else {
00b7c339 2905 val = convdiv * (*i) / convmul;
7833819d 2906 if (!first) {
00b7c339 2907 err = proc_put_char(&buffer, &left, '\t');
7833819d
CG
2908 if (err)
2909 break;
2910 }
00b7c339
AW
2911 err = proc_put_long(&buffer, &left, val, false);
2912 if (err)
2913 break;
1da177e4
LT
2914 }
2915 }
2916
00b7c339
AW
2917 if (!write && !first && left && !err)
2918 err = proc_put_char(&buffer, &left, '\n');
2919 if (write && !err)
70f6cbb6 2920 left -= proc_skip_spaces(&p);
1da177e4 2921 if (write) {
70f6cbb6 2922 kfree(kbuf);
00b7c339
AW
2923 if (first)
2924 return err ? : -EINVAL;
1da177e4 2925 }
1da177e4 2926 *lenp -= left;
f4aacea2 2927out:
1da177e4 2928 *ppos += *lenp;
00b7c339 2929 return err;
1da177e4
LT
2930}
2931
d8217f07 2932static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
fcfbd547
KK
2933 void __user *buffer,
2934 size_t *lenp, loff_t *ppos,
2935 unsigned long convmul,
2936 unsigned long convdiv)
2937{
2938 return __do_proc_doulongvec_minmax(table->data, table, write,
8d65af78 2939 buffer, lenp, ppos, convmul, convdiv);
fcfbd547
KK
2940}
2941
1da177e4
LT
2942/**
2943 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2944 * @table: the sysctl table
2945 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
2946 * @buffer: the user buffer
2947 * @lenp: the size of the user buffer
2948 * @ppos: file position
2949 *
2950 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2951 * values from/to the user buffer, treated as an ASCII string.
2952 *
2953 * This routine will ensure the values are within the range specified by
2954 * table->extra1 (min) and table->extra2 (max).
2955 *
2956 * Returns 0 on success.
2957 */
8d65af78 2958int proc_doulongvec_minmax(struct ctl_table *table, int write,
1da177e4
LT
2959 void __user *buffer, size_t *lenp, loff_t *ppos)
2960{
8d65af78 2961 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
1da177e4
LT
2962}
2963
2964/**
2965 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2966 * @table: the sysctl table
2967 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
2968 * @buffer: the user buffer
2969 * @lenp: the size of the user buffer
2970 * @ppos: file position
2971 *
2972 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2973 * values from/to the user buffer, treated as an ASCII string. The values
2974 * are treated as milliseconds, and converted to jiffies when they are stored.
2975 *
2976 * This routine will ensure the values are within the range specified by
2977 * table->extra1 (min) and table->extra2 (max).
2978 *
2979 * Returns 0 on success.
2980 */
d8217f07 2981int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1da177e4
LT
2982 void __user *buffer,
2983 size_t *lenp, loff_t *ppos)
2984{
8d65af78 2985 return do_proc_doulongvec_minmax(table, write, buffer,
1da177e4
LT
2986 lenp, ppos, HZ, 1000l);
2987}
2988
2989
00b7c339 2990static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
1da177e4
LT
2991 int *valp,
2992 int write, void *data)
2993{
2994 if (write) {
63259457 2995 if (*lvalp > INT_MAX / HZ)
cba9f33d 2996 return 1;
1da177e4
LT
2997 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2998 } else {
2999 int val = *valp;
3000 unsigned long lval;
3001 if (val < 0) {
00b7c339 3002 *negp = true;
9a5bc726 3003 lval = -(unsigned long)val;
1da177e4 3004 } else {
00b7c339 3005 *negp = false;
1da177e4
LT
3006 lval = (unsigned long)val;
3007 }
3008 *lvalp = lval / HZ;
3009 }
3010 return 0;
3011}
3012
00b7c339 3013static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
1da177e4
LT
3014 int *valp,
3015 int write, void *data)
3016{
3017 if (write) {
cba9f33d
BS
3018 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
3019 return 1;
1da177e4
LT
3020 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
3021 } else {
3022 int val = *valp;
3023 unsigned long lval;
3024 if (val < 0) {
00b7c339 3025 *negp = true;
9a5bc726 3026 lval = -(unsigned long)val;
1da177e4 3027 } else {
00b7c339 3028 *negp = false;
1da177e4
LT
3029 lval = (unsigned long)val;
3030 }
3031 *lvalp = jiffies_to_clock_t(lval);
3032 }
3033 return 0;
3034}
3035
00b7c339 3036static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
1da177e4
LT
3037 int *valp,
3038 int write, void *data)
3039{
3040 if (write) {
d738ce8f
FF
3041 unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
3042
3043 if (jif > INT_MAX)
3044 return 1;
3045 *valp = (int)jif;
1da177e4
LT
3046 } else {
3047 int val = *valp;
3048 unsigned long lval;
3049 if (val < 0) {
00b7c339 3050 *negp = true;
9a5bc726 3051 lval = -(unsigned long)val;
1da177e4 3052 } else {
00b7c339 3053 *negp = false;
1da177e4
LT
3054 lval = (unsigned long)val;
3055 }
3056 *lvalp = jiffies_to_msecs(lval);
3057 }
3058 return 0;
3059}
3060
3061/**
3062 * proc_dointvec_jiffies - read a vector of integers as seconds
3063 * @table: the sysctl table
3064 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
3065 * @buffer: the user buffer
3066 * @lenp: the size of the user buffer
3067 * @ppos: file position
3068 *
3069 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3070 * values from/to the user buffer, treated as an ASCII string.
3071 * The values read are assumed to be in seconds, and are converted into
3072 * jiffies.
3073 *
3074 * Returns 0 on success.
3075 */
8d65af78 3076int proc_dointvec_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3077 void __user *buffer, size_t *lenp, loff_t *ppos)
3078{
8d65af78 3079 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1da177e4
LT
3080 do_proc_dointvec_jiffies_conv,NULL);
3081}
3082
3083/**
3084 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
3085 * @table: the sysctl table
3086 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
3087 * @buffer: the user buffer
3088 * @lenp: the size of the user buffer
1e5d5331 3089 * @ppos: pointer to the file position
1da177e4
LT
3090 *
3091 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3092 * values from/to the user buffer, treated as an ASCII string.
3093 * The values read are assumed to be in 1/USER_HZ seconds, and
3094 * are converted into jiffies.
3095 *
3096 * Returns 0 on success.
3097 */
8d65af78 3098int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3099 void __user *buffer, size_t *lenp, loff_t *ppos)
3100{
8d65af78 3101 return do_proc_dointvec(table,write,buffer,lenp,ppos,
1da177e4
LT
3102 do_proc_dointvec_userhz_jiffies_conv,NULL);
3103}
3104
3105/**
3106 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
3107 * @table: the sysctl table
3108 * @write: %TRUE if this is a write to the sysctl file
1da177e4
LT
3109 * @buffer: the user buffer
3110 * @lenp: the size of the user buffer
67be2dd1
MW
3111 * @ppos: file position
3112 * @ppos: the current position in the file
1da177e4
LT
3113 *
3114 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
3115 * values from/to the user buffer, treated as an ASCII string.
3116 * The values read are assumed to be in 1/1000 seconds, and
3117 * are converted into jiffies.
3118 *
3119 * Returns 0 on success.
3120 */
8d65af78 3121int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3122 void __user *buffer, size_t *lenp, loff_t *ppos)
3123{
8d65af78 3124 return do_proc_dointvec(table, write, buffer, lenp, ppos,
1da177e4
LT
3125 do_proc_dointvec_ms_jiffies_conv, NULL);
3126}
3127
8d65af78 3128static int proc_do_cad_pid(struct ctl_table *table, int write,
9ec52099
CLG
3129 void __user *buffer, size_t *lenp, loff_t *ppos)
3130{
3131 struct pid *new_pid;
3132 pid_t tmp;
3133 int r;
3134
6c5f3e7b 3135 tmp = pid_vnr(cad_pid);
9ec52099 3136
8d65af78 3137 r = __do_proc_dointvec(&tmp, table, write, buffer,
9ec52099
CLG
3138 lenp, ppos, NULL, NULL);
3139 if (r || !write)
3140 return r;
3141
3142 new_pid = find_get_pid(tmp);
3143 if (!new_pid)
3144 return -ESRCH;
3145
3146 put_pid(xchg(&cad_pid, new_pid));
3147 return 0;
3148}
3149
9f977fb7
OP
3150/**
3151 * proc_do_large_bitmap - read/write from/to a large bitmap
3152 * @table: the sysctl table
3153 * @write: %TRUE if this is a write to the sysctl file
3154 * @buffer: the user buffer
3155 * @lenp: the size of the user buffer
3156 * @ppos: file position
3157 *
3158 * The bitmap is stored at table->data and the bitmap length (in bits)
3159 * in table->maxlen.
3160 *
3161 * We use a range comma separated format (e.g. 1,3-4,10-10) so that
3162 * large bitmaps may be represented in a compact manner. Writing into
3163 * the file will clear the bitmap then update it with the given input.
3164 *
3165 * Returns 0 on success.
3166 */
3167int proc_do_large_bitmap(struct ctl_table *table, int write,
3168 void __user *buffer, size_t *lenp, loff_t *ppos)
3169{
3170 int err = 0;
3171 bool first = 1;
3172 size_t left = *lenp;
3173 unsigned long bitmap_len = table->maxlen;
122ff243 3174 unsigned long *bitmap = *(unsigned long **) table->data;
9f977fb7
OP
3175 unsigned long *tmp_bitmap = NULL;
3176 char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
3177
122ff243 3178 if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
9f977fb7
OP
3179 *lenp = 0;
3180 return 0;
3181 }
3182
3183 if (write) {
70f6cbb6 3184 char *kbuf, *p;
3116ad38 3185 size_t skipped = 0;
9f977fb7 3186
3116ad38 3187 if (left > PAGE_SIZE - 1) {
9f977fb7 3188 left = PAGE_SIZE - 1;
3116ad38
ES
3189 /* How much of the buffer we'll skip this pass */
3190 skipped = *lenp - left;
3191 }
9f977fb7 3192
70f6cbb6
AV
3193 p = kbuf = memdup_user_nul(buffer, left);
3194 if (IS_ERR(kbuf))
3195 return PTR_ERR(kbuf);
9f977fb7 3196
475dae38 3197 tmp_bitmap = bitmap_zalloc(bitmap_len, GFP_KERNEL);
9f977fb7 3198 if (!tmp_bitmap) {
70f6cbb6 3199 kfree(kbuf);
9f977fb7
OP
3200 return -ENOMEM;
3201 }
70f6cbb6 3202 proc_skip_char(&p, &left, '\n');
9f977fb7
OP
3203 while (!err && left) {
3204 unsigned long val_a, val_b;
3205 bool neg;
3116ad38 3206 size_t saved_left;
9f977fb7 3207
3116ad38
ES
3208 /* In case we stop parsing mid-number, we can reset */
3209 saved_left = left;
70f6cbb6 3210 err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
9f977fb7 3211 sizeof(tr_a), &c);
3116ad38
ES
3212 /*
3213 * If we consumed the entirety of a truncated buffer or
3214 * only one char is left (may be a "-"), then stop here,
3215 * reset, & come back for more.
3216 */
3217 if ((left <= 1) && skipped) {
3218 left = saved_left;
3219 break;
3220 }
3221
9f977fb7
OP
3222 if (err)
3223 break;
3224 if (val_a >= bitmap_len || neg) {
3225 err = -EINVAL;
3226 break;
3227 }
3228
3229 val_b = val_a;
3230 if (left) {
70f6cbb6 3231 p++;
9f977fb7
OP
3232 left--;
3233 }
3234
3235 if (c == '-') {
70f6cbb6 3236 err = proc_get_long(&p, &left, &val_b,
9f977fb7
OP
3237 &neg, tr_b, sizeof(tr_b),
3238 &c);
3116ad38
ES
3239 /*
3240 * If we consumed all of a truncated buffer or
3241 * then stop here, reset, & come back for more.
3242 */
3243 if (!left && skipped) {
3244 left = saved_left;
3245 break;
3246 }
3247
9f977fb7
OP
3248 if (err)
3249 break;
3250 if (val_b >= bitmap_len || neg ||
3251 val_a > val_b) {
3252 err = -EINVAL;
3253 break;
3254 }
3255 if (left) {
70f6cbb6 3256 p++;
9f977fb7
OP
3257 left--;
3258 }
3259 }
3260
5a04cca6 3261 bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
9f977fb7 3262 first = 0;
70f6cbb6 3263 proc_skip_char(&p, &left, '\n');
9f977fb7 3264 }
70f6cbb6 3265 kfree(kbuf);
3116ad38 3266 left += skipped;
9f977fb7
OP
3267 } else {
3268 unsigned long bit_a, bit_b = 0;
3269
3270 while (left) {
3271 bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
3272 if (bit_a >= bitmap_len)
3273 break;
3274 bit_b = find_next_zero_bit(bitmap, bitmap_len,
3275 bit_a + 1) - 1;
3276
3277 if (!first) {
3278 err = proc_put_char(&buffer, &left, ',');
3279 if (err)
3280 break;
3281 }
3282 err = proc_put_long(&buffer, &left, bit_a, false);
3283 if (err)
3284 break;
3285 if (bit_a != bit_b) {
3286 err = proc_put_char(&buffer, &left, '-');
3287 if (err)
3288 break;
3289 err = proc_put_long(&buffer, &left, bit_b, false);
3290 if (err)
3291 break;
3292 }
3293
3294 first = 0; bit_b++;
3295 }
3296 if (!err)
3297 err = proc_put_char(&buffer, &left, '\n');
3298 }
3299
3300 if (!err) {
3301 if (write) {
3302 if (*ppos)
3303 bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
3304 else
5a04cca6 3305 bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
9f977fb7 3306 }
9f977fb7
OP
3307 *lenp -= left;
3308 *ppos += *lenp;
9f977fb7 3309 }
f9eb2fdd 3310
475dae38 3311 bitmap_free(tmp_bitmap);
f9eb2fdd 3312 return err;
9f977fb7
OP
3313}
3314
55610500 3315#else /* CONFIG_PROC_SYSCTL */
1da177e4 3316
8d65af78 3317int proc_dostring(struct ctl_table *table, int write,
1da177e4
LT
3318 void __user *buffer, size_t *lenp, loff_t *ppos)
3319{
3320 return -ENOSYS;
3321}
3322
8d65af78 3323int proc_dointvec(struct ctl_table *table, int write,
1da177e4 3324 void __user *buffer, size_t *lenp, loff_t *ppos)
1da177e4
LT
3325{
3326 return -ENOSYS;
3327}
3328
e7d316a0
SAK
3329int proc_douintvec(struct ctl_table *table, int write,
3330 void __user *buffer, size_t *lenp, loff_t *ppos)
3331{
3332 return -ENOSYS;
3333}
3334
8d65af78 3335int proc_dointvec_minmax(struct ctl_table *table, int write,
1da177e4
LT
3336 void __user *buffer, size_t *lenp, loff_t *ppos)
3337{
3338 return -ENOSYS;
3339}
3340
61d9b56a
LR
3341int proc_douintvec_minmax(struct ctl_table *table, int write,
3342 void __user *buffer, size_t *lenp, loff_t *ppos)
3343{
3344 return -ENOSYS;
3345}
3346
8d65af78 3347int proc_dointvec_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3348 void __user *buffer, size_t *lenp, loff_t *ppos)
3349{
3350 return -ENOSYS;
3351}
3352
8d65af78 3353int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3354 void __user *buffer, size_t *lenp, loff_t *ppos)
3355{
3356 return -ENOSYS;
3357}
3358
8d65af78 3359int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
1da177e4
LT
3360 void __user *buffer, size_t *lenp, loff_t *ppos)
3361{
3362 return -ENOSYS;
3363}
3364
8d65af78 3365int proc_doulongvec_minmax(struct ctl_table *table, int write,
1da177e4
LT
3366 void __user *buffer, size_t *lenp, loff_t *ppos)
3367{
3368 return -ENOSYS;
3369}
3370
d8217f07 3371int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1da177e4
LT
3372 void __user *buffer,
3373 size_t *lenp, loff_t *ppos)
3374{
3375 return -ENOSYS;
3376}
3377
0bc19985
SS
3378int proc_do_large_bitmap(struct ctl_table *table, int write,
3379 void __user *buffer, size_t *lenp, loff_t *ppos)
3380{
3381 return -ENOSYS;
3382}
1da177e4 3383
55610500 3384#endif /* CONFIG_PROC_SYSCTL */
1da177e4 3385
a8e11e5c
ED
3386#if defined(CONFIG_SYSCTL)
3387int proc_do_static_key(struct ctl_table *table, int write,
3388 void __user *buffer, size_t *lenp,
3389 loff_t *ppos)
492ecee8 3390{
a8e11e5c
ED
3391 struct static_key *key = (struct static_key *)table->data;
3392 static DEFINE_MUTEX(static_key_mutex);
3393 int val, ret;
3394 struct ctl_table tmp = {
3395 .data = &val,
3396 .maxlen = sizeof(val),
3397 .mode = table->mode,
3398 .extra1 = &zero,
3399 .extra2 = &one,
3400 };
492ecee8
AS
3401
3402 if (write && !capable(CAP_SYS_ADMIN))
3403 return -EPERM;
3404
a8e11e5c
ED
3405 mutex_lock(&static_key_mutex);
3406 val = static_key_enabled(key);
492ecee8
AS
3407 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
3408 if (write && !ret) {
a8e11e5c
ED
3409 if (val)
3410 static_key_enable(key);
492ecee8 3411 else
a8e11e5c 3412 static_key_disable(key);
492ecee8 3413 }
a8e11e5c 3414 mutex_unlock(&static_key_mutex);
492ecee8
AS
3415 return ret;
3416}
3fcc5530 3417#endif
1da177e4
LT
3418/*
3419 * No sense putting this after each symbol definition, twice,
3420 * exception granted :-)
3421 */
3422EXPORT_SYMBOL(proc_dointvec);
e7d316a0 3423EXPORT_SYMBOL(proc_douintvec);
1da177e4
LT
3424EXPORT_SYMBOL(proc_dointvec_jiffies);
3425EXPORT_SYMBOL(proc_dointvec_minmax);
61d9b56a 3426EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
1da177e4
LT
3427EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3428EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3429EXPORT_SYMBOL(proc_dostring);
3430EXPORT_SYMBOL(proc_doulongvec_minmax);
3431EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
0bc19985 3432EXPORT_SYMBOL(proc_do_large_bitmap);