]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * sysctl.c: General linux system control interface | |
3 | * | |
4 | * Begun 24 March 1995, Stephen Tweedie | |
5 | * Added /proc support, Dec 1995 | |
6 | * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas. | |
7 | * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver. | |
8 | * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver. | |
9 | * Dynamic registration fixes, Stephen Tweedie. | |
10 | * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn. | |
11 | * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris | |
12 | * Horn. | |
13 | * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer. | |
14 | * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer. | |
15 | * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill | |
16 | * Wendling. | |
17 | * The list_for_each() macro wasn't appropriate for the sysctl loop. | |
18 | * Removed it and replaced it with older style, 03/23/00, Bill Wendling | |
19 | */ | |
20 | ||
1da177e4 LT |
21 | #include <linux/module.h> |
22 | #include <linux/mm.h> | |
23 | #include <linux/swap.h> | |
24 | #include <linux/slab.h> | |
25 | #include <linux/sysctl.h> | |
5a04cca6 | 26 | #include <linux/bitmap.h> |
d33ed52d | 27 | #include <linux/signal.h> |
455cd5ab | 28 | #include <linux/printk.h> |
1da177e4 | 29 | #include <linux/proc_fs.h> |
72c2d582 | 30 | #include <linux/security.h> |
1da177e4 | 31 | #include <linux/ctype.h> |
dfec072e | 32 | #include <linux/kmemcheck.h> |
62239ac2 | 33 | #include <linux/fs.h> |
1da177e4 LT |
34 | #include <linux/init.h> |
35 | #include <linux/kernel.h> | |
0296b228 | 36 | #include <linux/kobject.h> |
20380731 | 37 | #include <linux/net.h> |
1da177e4 LT |
38 | #include <linux/sysrq.h> |
39 | #include <linux/highuid.h> | |
40 | #include <linux/writeback.h> | |
3fff4c42 | 41 | #include <linux/ratelimit.h> |
76ab0f53 | 42 | #include <linux/compaction.h> |
1da177e4 | 43 | #include <linux/hugetlb.h> |
1da177e4 | 44 | #include <linux/initrd.h> |
0b77f5bf | 45 | #include <linux/key.h> |
1da177e4 LT |
46 | #include <linux/times.h> |
47 | #include <linux/limits.h> | |
48 | #include <linux/dcache.h> | |
6e006701 | 49 | #include <linux/dnotify.h> |
1da177e4 | 50 | #include <linux/syscalls.h> |
c748e134 | 51 | #include <linux/vmstat.h> |
c255d844 PM |
52 | #include <linux/nfs_fs.h> |
53 | #include <linux/acpi.h> | |
10a0a8d4 | 54 | #include <linux/reboot.h> |
b0fc494f | 55 | #include <linux/ftrace.h> |
cdd6c482 | 56 | #include <linux/perf_event.h> |
b2be84df | 57 | #include <linux/kprobes.h> |
b492e95b | 58 | #include <linux/pipe_fs_i.h> |
8e4228e1 | 59 | #include <linux/oom.h> |
17f60a7d | 60 | #include <linux/kmod.h> |
73efc039 | 61 | #include <linux/capability.h> |
40401530 | 62 | #include <linux/binfmts.h> |
1da177e4 LT |
63 | |
64 | #include <asm/uaccess.h> | |
65 | #include <asm/processor.h> | |
66 | ||
29cbc78b AK |
67 | #ifdef CONFIG_X86 |
68 | #include <asm/nmi.h> | |
0741f4d2 | 69 | #include <asm/stacktrace.h> |
6e7c4025 | 70 | #include <asm/io.h> |
29cbc78b | 71 | #endif |
d550bbd4 DH |
72 | #ifdef CONFIG_SPARC |
73 | #include <asm/setup.h> | |
74 | #endif | |
c55b7c3e DY |
75 | #ifdef CONFIG_BSD_PROCESS_ACCT |
76 | #include <linux/acct.h> | |
77 | #endif | |
4f0e056f DY |
78 | #ifdef CONFIG_RT_MUTEXES |
79 | #include <linux/rtmutex.h> | |
80 | #endif | |
2edf5e49 DY |
81 | #if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT) |
82 | #include <linux/lockdep.h> | |
83 | #endif | |
15485a46 DY |
84 | #ifdef CONFIG_CHR_DEV_SG |
85 | #include <scsi/sg.h> | |
86 | #endif | |
29cbc78b | 87 | |
58687acb | 88 | #ifdef CONFIG_LOCKUP_DETECTOR |
504d7cf1 DZ |
89 | #include <linux/nmi.h> |
90 | #endif | |
91 | ||
7058cb02 | 92 | |
1da177e4 LT |
93 | #if defined(CONFIG_SYSCTL) |
94 | ||
95 | /* External variables not in a header file. */ | |
1da177e4 LT |
96 | extern int sysctl_overcommit_memory; |
97 | extern int sysctl_overcommit_ratio; | |
98 | extern int max_threads; | |
1da177e4 | 99 | extern int core_uses_pid; |
d6e71144 | 100 | extern int suid_dumpable; |
1da177e4 | 101 | extern char core_pattern[]; |
a293980c | 102 | extern unsigned int core_pipe_limit; |
1da177e4 LT |
103 | extern int pid_max; |
104 | extern int min_free_kbytes; | |
1da177e4 | 105 | extern int pid_max_min, pid_max_max; |
9d0243bc | 106 | extern int sysctl_drop_caches; |
8ad4b1fb | 107 | extern int percpu_pagelist_fraction; |
bebfa101 | 108 | extern int compat_log; |
9745512c | 109 | extern int latencytop_enabled; |
eceea0b3 | 110 | extern int sysctl_nr_open_min, sysctl_nr_open_max; |
dd8632a1 PM |
111 | #ifndef CONFIG_MMU |
112 | extern int sysctl_nr_trim_pages; | |
113 | #endif | |
cb684b5b | 114 | #ifdef CONFIG_BLOCK |
5e605b64 | 115 | extern int blk_iopoll_enabled; |
cb684b5b | 116 | #endif |
1da177e4 | 117 | |
c4f3b63f | 118 | /* Constants used for minimum and maximum */ |
2508ce18 | 119 | #ifdef CONFIG_LOCKUP_DETECTOR |
c4f3b63f | 120 | static int sixty = 60; |
9383d967 | 121 | static int neg_one = -1; |
c4f3b63f RT |
122 | #endif |
123 | ||
c4f3b63f | 124 | static int zero; |
cd5f9a4c LT |
125 | static int __maybe_unused one = 1; |
126 | static int __maybe_unused two = 2; | |
cb16e95f | 127 | static int __maybe_unused three = 3; |
fc3501d4 | 128 | static unsigned long one_ul = 1; |
c4f3b63f | 129 | static int one_hundred = 100; |
af91322e DY |
130 | #ifdef CONFIG_PRINTK |
131 | static int ten_thousand = 10000; | |
132 | #endif | |
c4f3b63f | 133 | |
9e4a5bda AR |
134 | /* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */ |
135 | static unsigned long dirty_bytes_min = 2 * PAGE_SIZE; | |
136 | ||
1da177e4 LT |
137 | /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */ |
138 | static int maxolduid = 65535; | |
139 | static int minolduid; | |
8ad4b1fb | 140 | static int min_percpu_pagelist_fract = 8; |
1da177e4 LT |
141 | |
142 | static int ngroups_max = NGROUPS_MAX; | |
73efc039 | 143 | static const int cap_last_cap = CAP_LAST_CAP; |
1da177e4 | 144 | |
d14f1729 DY |
145 | #ifdef CONFIG_INOTIFY_USER |
146 | #include <linux/inotify.h> | |
147 | #endif | |
72c57ed5 | 148 | #ifdef CONFIG_SPARC |
1da177e4 LT |
149 | #endif |
150 | ||
0871420f DM |
151 | #ifdef CONFIG_SPARC64 |
152 | extern int sysctl_tsb_ratio; | |
153 | #endif | |
154 | ||
1da177e4 LT |
155 | #ifdef __hppa__ |
156 | extern int pwrsw_enabled; | |
157 | extern int unaligned_enabled; | |
158 | #endif | |
1da177e4 | 159 | |
d2b176ed JS |
160 | #ifdef CONFIG_IA64 |
161 | extern int no_unaligned_warning; | |
88fc241f | 162 | extern int unaligned_dump_stack; |
d2b176ed JS |
163 | #endif |
164 | ||
d6f8ff73 | 165 | #ifdef CONFIG_PROC_SYSCTL |
8d65af78 | 166 | static int proc_do_cad_pid(struct ctl_table *table, int write, |
9ec52099 | 167 | void __user *buffer, size_t *lenp, loff_t *ppos); |
8d65af78 | 168 | static int proc_taint(struct ctl_table *table, int write, |
34f5a398 | 169 | void __user *buffer, size_t *lenp, loff_t *ppos); |
d6f8ff73 | 170 | #endif |
9ec52099 | 171 | |
bfdc0b49 | 172 | #ifdef CONFIG_PRINTK |
620f6e8e | 173 | static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write, |
bfdc0b49 RW |
174 | void __user *buffer, size_t *lenp, loff_t *ppos); |
175 | #endif | |
176 | ||
97f5f0cd | 177 | #ifdef CONFIG_MAGIC_SYSRQ |
8c6a98b2 AW |
178 | /* Note: sysrq code uses it's own private copy */ |
179 | static int __sysrq_enabled = SYSRQ_DEFAULT_ENABLE; | |
97f5f0cd DT |
180 | |
181 | static int sysrq_sysctl_handler(ctl_table *table, int write, | |
182 | void __user *buffer, size_t *lenp, | |
183 | loff_t *ppos) | |
184 | { | |
185 | int error; | |
186 | ||
187 | error = proc_dointvec(table, write, buffer, lenp, ppos); | |
188 | if (error) | |
189 | return error; | |
190 | ||
191 | if (write) | |
192 | sysrq_toggle_support(__sysrq_enabled); | |
193 | ||
194 | return 0; | |
195 | } | |
196 | ||
197 | #endif | |
198 | ||
d8217f07 EB |
199 | static struct ctl_table kern_table[]; |
200 | static struct ctl_table vm_table[]; | |
201 | static struct ctl_table fs_table[]; | |
202 | static struct ctl_table debug_table[]; | |
203 | static struct ctl_table dev_table[]; | |
204 | extern struct ctl_table random_table[]; | |
7ef9964e DL |
205 | #ifdef CONFIG_EPOLL |
206 | extern struct ctl_table epoll_table[]; | |
207 | #endif | |
1da177e4 LT |
208 | |
209 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT | |
210 | int sysctl_legacy_va_layout; | |
211 | #endif | |
212 | ||
1da177e4 LT |
213 | /* The default sysctl tables: */ |
214 | ||
de4e83bd | 215 | static struct ctl_table sysctl_base_table[] = { |
1da177e4 | 216 | { |
1da177e4 LT |
217 | .procname = "kernel", |
218 | .mode = 0555, | |
219 | .child = kern_table, | |
220 | }, | |
221 | { | |
1da177e4 LT |
222 | .procname = "vm", |
223 | .mode = 0555, | |
224 | .child = vm_table, | |
225 | }, | |
1da177e4 | 226 | { |
1da177e4 LT |
227 | .procname = "fs", |
228 | .mode = 0555, | |
229 | .child = fs_table, | |
230 | }, | |
231 | { | |
1da177e4 LT |
232 | .procname = "debug", |
233 | .mode = 0555, | |
234 | .child = debug_table, | |
235 | }, | |
236 | { | |
1da177e4 LT |
237 | .procname = "dev", |
238 | .mode = 0555, | |
239 | .child = dev_table, | |
240 | }, | |
6fce56ec | 241 | { } |
1da177e4 LT |
242 | }; |
243 | ||
77e54a1f | 244 | #ifdef CONFIG_SCHED_DEBUG |
73c4efd2 ED |
245 | static int min_sched_granularity_ns = 100000; /* 100 usecs */ |
246 | static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */ | |
247 | static int min_wakeup_granularity_ns; /* 0 usecs */ | |
248 | static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */ | |
1983a922 CE |
249 | static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE; |
250 | static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1; | |
77e54a1f IM |
251 | #endif |
252 | ||
5e771905 MG |
253 | #ifdef CONFIG_COMPACTION |
254 | static int min_extfrag_threshold; | |
255 | static int max_extfrag_threshold = 1000; | |
256 | #endif | |
257 | ||
d8217f07 | 258 | static struct ctl_table kern_table[] = { |
2bba22c5 | 259 | { |
2bba22c5 MG |
260 | .procname = "sched_child_runs_first", |
261 | .data = &sysctl_sched_child_runs_first, | |
262 | .maxlen = sizeof(unsigned int), | |
263 | .mode = 0644, | |
6d456111 | 264 | .proc_handler = proc_dointvec, |
2bba22c5 | 265 | }, |
77e54a1f IM |
266 | #ifdef CONFIG_SCHED_DEBUG |
267 | { | |
b2be5e96 PZ |
268 | .procname = "sched_min_granularity_ns", |
269 | .data = &sysctl_sched_min_granularity, | |
77e54a1f IM |
270 | .maxlen = sizeof(unsigned int), |
271 | .mode = 0644, | |
702a7c76 | 272 | .proc_handler = sched_proc_update_handler, |
b2be5e96 PZ |
273 | .extra1 = &min_sched_granularity_ns, |
274 | .extra2 = &max_sched_granularity_ns, | |
77e54a1f | 275 | }, |
21805085 | 276 | { |
21805085 PZ |
277 | .procname = "sched_latency_ns", |
278 | .data = &sysctl_sched_latency, | |
279 | .maxlen = sizeof(unsigned int), | |
280 | .mode = 0644, | |
702a7c76 | 281 | .proc_handler = sched_proc_update_handler, |
21805085 PZ |
282 | .extra1 = &min_sched_granularity_ns, |
283 | .extra2 = &max_sched_granularity_ns, | |
284 | }, | |
77e54a1f | 285 | { |
77e54a1f IM |
286 | .procname = "sched_wakeup_granularity_ns", |
287 | .data = &sysctl_sched_wakeup_granularity, | |
288 | .maxlen = sizeof(unsigned int), | |
289 | .mode = 0644, | |
702a7c76 | 290 | .proc_handler = sched_proc_update_handler, |
77e54a1f IM |
291 | .extra1 = &min_wakeup_granularity_ns, |
292 | .extra2 = &max_wakeup_granularity_ns, | |
293 | }, | |
1983a922 | 294 | { |
1983a922 CE |
295 | .procname = "sched_tunable_scaling", |
296 | .data = &sysctl_sched_tunable_scaling, | |
297 | .maxlen = sizeof(enum sched_tunable_scaling), | |
298 | .mode = 0644, | |
702a7c76 | 299 | .proc_handler = sched_proc_update_handler, |
1983a922 CE |
300 | .extra1 = &min_sched_tunable_scaling, |
301 | .extra2 = &max_sched_tunable_scaling, | |
2398f2c6 | 302 | }, |
da84d961 | 303 | { |
da84d961 IM |
304 | .procname = "sched_migration_cost", |
305 | .data = &sysctl_sched_migration_cost, | |
306 | .maxlen = sizeof(unsigned int), | |
307 | .mode = 0644, | |
6d456111 | 308 | .proc_handler = proc_dointvec, |
da84d961 | 309 | }, |
b82d9fdd | 310 | { |
b82d9fdd PZ |
311 | .procname = "sched_nr_migrate", |
312 | .data = &sysctl_sched_nr_migrate, | |
313 | .maxlen = sizeof(unsigned int), | |
fa85ae24 | 314 | .mode = 0644, |
6d456111 | 315 | .proc_handler = proc_dointvec, |
fa85ae24 | 316 | }, |
e9e9250b | 317 | { |
e9e9250b PZ |
318 | .procname = "sched_time_avg", |
319 | .data = &sysctl_sched_time_avg, | |
320 | .maxlen = sizeof(unsigned int), | |
321 | .mode = 0644, | |
6d456111 | 322 | .proc_handler = proc_dointvec, |
e9e9250b | 323 | }, |
a7a4f8a7 PT |
324 | { |
325 | .procname = "sched_shares_window", | |
326 | .data = &sysctl_sched_shares_window, | |
327 | .maxlen = sizeof(unsigned int), | |
328 | .mode = 0644, | |
329 | .proc_handler = proc_dointvec, | |
330 | }, | |
cd1bb94b | 331 | { |
cd1bb94b AB |
332 | .procname = "timer_migration", |
333 | .data = &sysctl_timer_migration, | |
334 | .maxlen = sizeof(unsigned int), | |
335 | .mode = 0644, | |
6d456111 | 336 | .proc_handler = proc_dointvec_minmax, |
bfdb4d9f AB |
337 | .extra1 = &zero, |
338 | .extra2 = &one, | |
fa85ae24 | 339 | }, |
1fc84aaa | 340 | #endif |
9f0c1e56 | 341 | { |
9f0c1e56 PZ |
342 | .procname = "sched_rt_period_us", |
343 | .data = &sysctl_sched_rt_period, | |
344 | .maxlen = sizeof(unsigned int), | |
345 | .mode = 0644, | |
6d456111 | 346 | .proc_handler = sched_rt_handler, |
9f0c1e56 PZ |
347 | }, |
348 | { | |
9f0c1e56 PZ |
349 | .procname = "sched_rt_runtime_us", |
350 | .data = &sysctl_sched_rt_runtime, | |
351 | .maxlen = sizeof(int), | |
352 | .mode = 0644, | |
6d456111 | 353 | .proc_handler = sched_rt_handler, |
9f0c1e56 | 354 | }, |
5091faa4 MG |
355 | #ifdef CONFIG_SCHED_AUTOGROUP |
356 | { | |
357 | .procname = "sched_autogroup_enabled", | |
358 | .data = &sysctl_sched_autogroup_enabled, | |
359 | .maxlen = sizeof(unsigned int), | |
360 | .mode = 0644, | |
1747b21f | 361 | .proc_handler = proc_dointvec_minmax, |
5091faa4 MG |
362 | .extra1 = &zero, |
363 | .extra2 = &one, | |
364 | }, | |
365 | #endif | |
ec12cb7f PT |
366 | #ifdef CONFIG_CFS_BANDWIDTH |
367 | { | |
368 | .procname = "sched_cfs_bandwidth_slice_us", | |
369 | .data = &sysctl_sched_cfs_bandwidth_slice, | |
370 | .maxlen = sizeof(unsigned int), | |
371 | .mode = 0644, | |
372 | .proc_handler = proc_dointvec_minmax, | |
373 | .extra1 = &one, | |
374 | }, | |
375 | #endif | |
f20786ff PZ |
376 | #ifdef CONFIG_PROVE_LOCKING |
377 | { | |
f20786ff PZ |
378 | .procname = "prove_locking", |
379 | .data = &prove_locking, | |
380 | .maxlen = sizeof(int), | |
381 | .mode = 0644, | |
6d456111 | 382 | .proc_handler = proc_dointvec, |
f20786ff PZ |
383 | }, |
384 | #endif | |
385 | #ifdef CONFIG_LOCK_STAT | |
386 | { | |
f20786ff PZ |
387 | .procname = "lock_stat", |
388 | .data = &lock_stat, | |
389 | .maxlen = sizeof(int), | |
390 | .mode = 0644, | |
6d456111 | 391 | .proc_handler = proc_dointvec, |
f20786ff | 392 | }, |
77e54a1f | 393 | #endif |
1da177e4 | 394 | { |
1da177e4 LT |
395 | .procname = "panic", |
396 | .data = &panic_timeout, | |
397 | .maxlen = sizeof(int), | |
398 | .mode = 0644, | |
6d456111 | 399 | .proc_handler = proc_dointvec, |
1da177e4 LT |
400 | }, |
401 | { | |
1da177e4 LT |
402 | .procname = "core_uses_pid", |
403 | .data = &core_uses_pid, | |
404 | .maxlen = sizeof(int), | |
405 | .mode = 0644, | |
6d456111 | 406 | .proc_handler = proc_dointvec, |
1da177e4 LT |
407 | }, |
408 | { | |
1da177e4 LT |
409 | .procname = "core_pattern", |
410 | .data = core_pattern, | |
71ce92f3 | 411 | .maxlen = CORENAME_MAX_SIZE, |
1da177e4 | 412 | .mode = 0644, |
6d456111 | 413 | .proc_handler = proc_dostring, |
1da177e4 | 414 | }, |
a293980c | 415 | { |
a293980c NH |
416 | .procname = "core_pipe_limit", |
417 | .data = &core_pipe_limit, | |
418 | .maxlen = sizeof(unsigned int), | |
419 | .mode = 0644, | |
6d456111 | 420 | .proc_handler = proc_dointvec, |
a293980c | 421 | }, |
34f5a398 | 422 | #ifdef CONFIG_PROC_SYSCTL |
1da177e4 | 423 | { |
1da177e4 | 424 | .procname = "tainted", |
25ddbb18 | 425 | .maxlen = sizeof(long), |
34f5a398 | 426 | .mode = 0644, |
6d456111 | 427 | .proc_handler = proc_taint, |
1da177e4 | 428 | }, |
34f5a398 | 429 | #endif |
9745512c AV |
430 | #ifdef CONFIG_LATENCYTOP |
431 | { | |
432 | .procname = "latencytop", | |
433 | .data = &latencytop_enabled, | |
434 | .maxlen = sizeof(int), | |
435 | .mode = 0644, | |
6d456111 | 436 | .proc_handler = proc_dointvec, |
9745512c AV |
437 | }, |
438 | #endif | |
1da177e4 LT |
439 | #ifdef CONFIG_BLK_DEV_INITRD |
440 | { | |
1da177e4 LT |
441 | .procname = "real-root-dev", |
442 | .data = &real_root_dev, | |
443 | .maxlen = sizeof(int), | |
444 | .mode = 0644, | |
6d456111 | 445 | .proc_handler = proc_dointvec, |
1da177e4 LT |
446 | }, |
447 | #endif | |
45807a1d | 448 | { |
45807a1d IM |
449 | .procname = "print-fatal-signals", |
450 | .data = &print_fatal_signals, | |
451 | .maxlen = sizeof(int), | |
452 | .mode = 0644, | |
6d456111 | 453 | .proc_handler = proc_dointvec, |
45807a1d | 454 | }, |
72c57ed5 | 455 | #ifdef CONFIG_SPARC |
1da177e4 | 456 | { |
1da177e4 LT |
457 | .procname = "reboot-cmd", |
458 | .data = reboot_command, | |
459 | .maxlen = 256, | |
460 | .mode = 0644, | |
6d456111 | 461 | .proc_handler = proc_dostring, |
1da177e4 LT |
462 | }, |
463 | { | |
1da177e4 LT |
464 | .procname = "stop-a", |
465 | .data = &stop_a_enabled, | |
466 | .maxlen = sizeof (int), | |
467 | .mode = 0644, | |
6d456111 | 468 | .proc_handler = proc_dointvec, |
1da177e4 LT |
469 | }, |
470 | { | |
1da177e4 LT |
471 | .procname = "scons-poweroff", |
472 | .data = &scons_pwroff, | |
473 | .maxlen = sizeof (int), | |
474 | .mode = 0644, | |
6d456111 | 475 | .proc_handler = proc_dointvec, |
1da177e4 LT |
476 | }, |
477 | #endif | |
0871420f DM |
478 | #ifdef CONFIG_SPARC64 |
479 | { | |
0871420f DM |
480 | .procname = "tsb-ratio", |
481 | .data = &sysctl_tsb_ratio, | |
482 | .maxlen = sizeof (int), | |
483 | .mode = 0644, | |
6d456111 | 484 | .proc_handler = proc_dointvec, |
0871420f DM |
485 | }, |
486 | #endif | |
1da177e4 LT |
487 | #ifdef __hppa__ |
488 | { | |
1da177e4 LT |
489 | .procname = "soft-power", |
490 | .data = &pwrsw_enabled, | |
491 | .maxlen = sizeof (int), | |
492 | .mode = 0644, | |
6d456111 | 493 | .proc_handler = proc_dointvec, |
1da177e4 LT |
494 | }, |
495 | { | |
1da177e4 LT |
496 | .procname = "unaligned-trap", |
497 | .data = &unaligned_enabled, | |
498 | .maxlen = sizeof (int), | |
499 | .mode = 0644, | |
6d456111 | 500 | .proc_handler = proc_dointvec, |
1da177e4 LT |
501 | }, |
502 | #endif | |
503 | { | |
1da177e4 LT |
504 | .procname = "ctrl-alt-del", |
505 | .data = &C_A_D, | |
506 | .maxlen = sizeof(int), | |
507 | .mode = 0644, | |
6d456111 | 508 | .proc_handler = proc_dointvec, |
1da177e4 | 509 | }, |
606576ce | 510 | #ifdef CONFIG_FUNCTION_TRACER |
b0fc494f | 511 | { |
b0fc494f SR |
512 | .procname = "ftrace_enabled", |
513 | .data = &ftrace_enabled, | |
514 | .maxlen = sizeof(int), | |
515 | .mode = 0644, | |
6d456111 | 516 | .proc_handler = ftrace_enable_sysctl, |
b0fc494f SR |
517 | }, |
518 | #endif | |
f38f1d2a SR |
519 | #ifdef CONFIG_STACK_TRACER |
520 | { | |
f38f1d2a SR |
521 | .procname = "stack_tracer_enabled", |
522 | .data = &stack_tracer_enabled, | |
523 | .maxlen = sizeof(int), | |
524 | .mode = 0644, | |
6d456111 | 525 | .proc_handler = stack_trace_sysctl, |
f38f1d2a SR |
526 | }, |
527 | #endif | |
944ac425 SR |
528 | #ifdef CONFIG_TRACING |
529 | { | |
3299b4dd | 530 | .procname = "ftrace_dump_on_oops", |
944ac425 SR |
531 | .data = &ftrace_dump_on_oops, |
532 | .maxlen = sizeof(int), | |
533 | .mode = 0644, | |
6d456111 | 534 | .proc_handler = proc_dointvec, |
944ac425 SR |
535 | }, |
536 | #endif | |
a1ef5adb | 537 | #ifdef CONFIG_MODULES |
1da177e4 | 538 | { |
1da177e4 LT |
539 | .procname = "modprobe", |
540 | .data = &modprobe_path, | |
541 | .maxlen = KMOD_PATH_LEN, | |
542 | .mode = 0644, | |
6d456111 | 543 | .proc_handler = proc_dostring, |
1da177e4 | 544 | }, |
3d43321b | 545 | { |
3d43321b KC |
546 | .procname = "modules_disabled", |
547 | .data = &modules_disabled, | |
548 | .maxlen = sizeof(int), | |
549 | .mode = 0644, | |
550 | /* only handle a transition from default "0" to "1" */ | |
6d456111 | 551 | .proc_handler = proc_dointvec_minmax, |
3d43321b KC |
552 | .extra1 = &one, |
553 | .extra2 = &one, | |
554 | }, | |
1da177e4 | 555 | #endif |
94f17cd7 | 556 | #ifdef CONFIG_HOTPLUG |
1da177e4 | 557 | { |
1da177e4 | 558 | .procname = "hotplug", |
312c004d KS |
559 | .data = &uevent_helper, |
560 | .maxlen = UEVENT_HELPER_PATH_LEN, | |
1da177e4 | 561 | .mode = 0644, |
6d456111 | 562 | .proc_handler = proc_dostring, |
1da177e4 LT |
563 | }, |
564 | #endif | |
565 | #ifdef CONFIG_CHR_DEV_SG | |
566 | { | |
1da177e4 LT |
567 | .procname = "sg-big-buff", |
568 | .data = &sg_big_buff, | |
569 | .maxlen = sizeof (int), | |
570 | .mode = 0444, | |
6d456111 | 571 | .proc_handler = proc_dointvec, |
1da177e4 LT |
572 | }, |
573 | #endif | |
574 | #ifdef CONFIG_BSD_PROCESS_ACCT | |
575 | { | |
1da177e4 LT |
576 | .procname = "acct", |
577 | .data = &acct_parm, | |
578 | .maxlen = 3*sizeof(int), | |
579 | .mode = 0644, | |
6d456111 | 580 | .proc_handler = proc_dointvec, |
1da177e4 LT |
581 | }, |
582 | #endif | |
1da177e4 LT |
583 | #ifdef CONFIG_MAGIC_SYSRQ |
584 | { | |
1da177e4 | 585 | .procname = "sysrq", |
5d6f647f | 586 | .data = &__sysrq_enabled, |
1da177e4 LT |
587 | .maxlen = sizeof (int), |
588 | .mode = 0644, | |
97f5f0cd | 589 | .proc_handler = sysrq_sysctl_handler, |
1da177e4 LT |
590 | }, |
591 | #endif | |
d6f8ff73 | 592 | #ifdef CONFIG_PROC_SYSCTL |
1da177e4 | 593 | { |
1da177e4 | 594 | .procname = "cad_pid", |
9ec52099 | 595 | .data = NULL, |
1da177e4 LT |
596 | .maxlen = sizeof (int), |
597 | .mode = 0600, | |
6d456111 | 598 | .proc_handler = proc_do_cad_pid, |
1da177e4 | 599 | }, |
d6f8ff73 | 600 | #endif |
1da177e4 | 601 | { |
1da177e4 LT |
602 | .procname = "threads-max", |
603 | .data = &max_threads, | |
604 | .maxlen = sizeof(int), | |
605 | .mode = 0644, | |
6d456111 | 606 | .proc_handler = proc_dointvec, |
1da177e4 LT |
607 | }, |
608 | { | |
1da177e4 LT |
609 | .procname = "random", |
610 | .mode = 0555, | |
611 | .child = random_table, | |
612 | }, | |
17f60a7d EP |
613 | { |
614 | .procname = "usermodehelper", | |
615 | .mode = 0555, | |
616 | .child = usermodehelper_table, | |
617 | }, | |
1da177e4 | 618 | { |
1da177e4 LT |
619 | .procname = "overflowuid", |
620 | .data = &overflowuid, | |
621 | .maxlen = sizeof(int), | |
622 | .mode = 0644, | |
6d456111 | 623 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
624 | .extra1 = &minolduid, |
625 | .extra2 = &maxolduid, | |
626 | }, | |
627 | { | |
1da177e4 LT |
628 | .procname = "overflowgid", |
629 | .data = &overflowgid, | |
630 | .maxlen = sizeof(int), | |
631 | .mode = 0644, | |
6d456111 | 632 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
633 | .extra1 = &minolduid, |
634 | .extra2 = &maxolduid, | |
635 | }, | |
347a8dc3 | 636 | #ifdef CONFIG_S390 |
1da177e4 LT |
637 | #ifdef CONFIG_MATHEMU |
638 | { | |
1da177e4 LT |
639 | .procname = "ieee_emulation_warnings", |
640 | .data = &sysctl_ieee_emulation_warnings, | |
641 | .maxlen = sizeof(int), | |
642 | .mode = 0644, | |
6d456111 | 643 | .proc_handler = proc_dointvec, |
1da177e4 | 644 | }, |
1da177e4 LT |
645 | #endif |
646 | { | |
1da177e4 | 647 | .procname = "userprocess_debug", |
ab3c68ee | 648 | .data = &show_unhandled_signals, |
1da177e4 LT |
649 | .maxlen = sizeof(int), |
650 | .mode = 0644, | |
6d456111 | 651 | .proc_handler = proc_dointvec, |
1da177e4 LT |
652 | }, |
653 | #endif | |
654 | { | |
1da177e4 LT |
655 | .procname = "pid_max", |
656 | .data = &pid_max, | |
657 | .maxlen = sizeof (int), | |
658 | .mode = 0644, | |
6d456111 | 659 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
660 | .extra1 = &pid_max_min, |
661 | .extra2 = &pid_max_max, | |
662 | }, | |
663 | { | |
1da177e4 LT |
664 | .procname = "panic_on_oops", |
665 | .data = &panic_on_oops, | |
666 | .maxlen = sizeof(int), | |
667 | .mode = 0644, | |
6d456111 | 668 | .proc_handler = proc_dointvec, |
1da177e4 | 669 | }, |
7ef3d2fd JP |
670 | #if defined CONFIG_PRINTK |
671 | { | |
7ef3d2fd JP |
672 | .procname = "printk", |
673 | .data = &console_loglevel, | |
674 | .maxlen = 4*sizeof(int), | |
675 | .mode = 0644, | |
6d456111 | 676 | .proc_handler = proc_dointvec, |
7ef3d2fd | 677 | }, |
1da177e4 | 678 | { |
1da177e4 | 679 | .procname = "printk_ratelimit", |
717115e1 | 680 | .data = &printk_ratelimit_state.interval, |
1da177e4 LT |
681 | .maxlen = sizeof(int), |
682 | .mode = 0644, | |
6d456111 | 683 | .proc_handler = proc_dointvec_jiffies, |
1da177e4 LT |
684 | }, |
685 | { | |
1da177e4 | 686 | .procname = "printk_ratelimit_burst", |
717115e1 | 687 | .data = &printk_ratelimit_state.burst, |
1da177e4 LT |
688 | .maxlen = sizeof(int), |
689 | .mode = 0644, | |
6d456111 | 690 | .proc_handler = proc_dointvec, |
1da177e4 | 691 | }, |
af91322e | 692 | { |
af91322e DY |
693 | .procname = "printk_delay", |
694 | .data = &printk_delay_msec, | |
695 | .maxlen = sizeof(int), | |
696 | .mode = 0644, | |
6d456111 | 697 | .proc_handler = proc_dointvec_minmax, |
af91322e DY |
698 | .extra1 = &zero, |
699 | .extra2 = &ten_thousand, | |
700 | }, | |
eaf06b24 DR |
701 | { |
702 | .procname = "dmesg_restrict", | |
703 | .data = &dmesg_restrict, | |
704 | .maxlen = sizeof(int), | |
705 | .mode = 0644, | |
620f6e8e | 706 | .proc_handler = proc_dointvec_minmax_sysadmin, |
eaf06b24 DR |
707 | .extra1 = &zero, |
708 | .extra2 = &one, | |
709 | }, | |
455cd5ab DR |
710 | { |
711 | .procname = "kptr_restrict", | |
712 | .data = &kptr_restrict, | |
713 | .maxlen = sizeof(int), | |
714 | .mode = 0644, | |
620f6e8e | 715 | .proc_handler = proc_dointvec_minmax_sysadmin, |
455cd5ab DR |
716 | .extra1 = &zero, |
717 | .extra2 = &two, | |
718 | }, | |
df6e61d4 | 719 | #endif |
1da177e4 | 720 | { |
1da177e4 LT |
721 | .procname = "ngroups_max", |
722 | .data = &ngroups_max, | |
723 | .maxlen = sizeof (int), | |
724 | .mode = 0444, | |
6d456111 | 725 | .proc_handler = proc_dointvec, |
1da177e4 | 726 | }, |
73efc039 DB |
727 | { |
728 | .procname = "cap_last_cap", | |
729 | .data = (void *)&cap_last_cap, | |
730 | .maxlen = sizeof(int), | |
731 | .mode = 0444, | |
732 | .proc_handler = proc_dointvec, | |
733 | }, | |
58687acb | 734 | #if defined(CONFIG_LOCKUP_DETECTOR) |
504d7cf1 | 735 | { |
58687acb DZ |
736 | .procname = "watchdog", |
737 | .data = &watchdog_enabled, | |
504d7cf1 DZ |
738 | .maxlen = sizeof (int), |
739 | .mode = 0644, | |
586692a5 MSB |
740 | .proc_handler = proc_dowatchdog, |
741 | .extra1 = &zero, | |
742 | .extra2 = &one, | |
58687acb DZ |
743 | }, |
744 | { | |
745 | .procname = "watchdog_thresh", | |
586692a5 | 746 | .data = &watchdog_thresh, |
58687acb DZ |
747 | .maxlen = sizeof(int), |
748 | .mode = 0644, | |
586692a5 | 749 | .proc_handler = proc_dowatchdog, |
58687acb DZ |
750 | .extra1 = &neg_one, |
751 | .extra2 = &sixty, | |
504d7cf1 | 752 | }, |
2508ce18 DZ |
753 | { |
754 | .procname = "softlockup_panic", | |
755 | .data = &softlockup_panic, | |
756 | .maxlen = sizeof(int), | |
757 | .mode = 0644, | |
758 | .proc_handler = proc_dointvec_minmax, | |
759 | .extra1 = &zero, | |
760 | .extra2 = &one, | |
761 | }, | |
5dc30558 DZ |
762 | { |
763 | .procname = "nmi_watchdog", | |
764 | .data = &watchdog_enabled, | |
765 | .maxlen = sizeof (int), | |
766 | .mode = 0644, | |
586692a5 MSB |
767 | .proc_handler = proc_dowatchdog, |
768 | .extra1 = &zero, | |
769 | .extra2 = &one, | |
5dc30558 DZ |
770 | }, |
771 | #endif | |
772 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) | |
773 | { | |
774 | .procname = "unknown_nmi_panic", | |
775 | .data = &unknown_nmi_panic, | |
776 | .maxlen = sizeof (int), | |
777 | .mode = 0644, | |
778 | .proc_handler = proc_dointvec, | |
779 | }, | |
504d7cf1 | 780 | #endif |
1da177e4 | 781 | #if defined(CONFIG_X86) |
8da5adda | 782 | { |
8da5adda DZ |
783 | .procname = "panic_on_unrecovered_nmi", |
784 | .data = &panic_on_unrecovered_nmi, | |
785 | .maxlen = sizeof(int), | |
786 | .mode = 0644, | |
6d456111 | 787 | .proc_handler = proc_dointvec, |
8da5adda | 788 | }, |
5211a242 | 789 | { |
5211a242 KG |
790 | .procname = "panic_on_io_nmi", |
791 | .data = &panic_on_io_nmi, | |
792 | .maxlen = sizeof(int), | |
793 | .mode = 0644, | |
6d456111 | 794 | .proc_handler = proc_dointvec, |
5211a242 | 795 | }, |
55af7796 MH |
796 | #ifdef CONFIG_DEBUG_STACKOVERFLOW |
797 | { | |
798 | .procname = "panic_on_stackoverflow", | |
799 | .data = &sysctl_panic_on_stackoverflow, | |
800 | .maxlen = sizeof(int), | |
801 | .mode = 0644, | |
802 | .proc_handler = proc_dointvec, | |
803 | }, | |
804 | #endif | |
1da177e4 | 805 | { |
1da177e4 LT |
806 | .procname = "bootloader_type", |
807 | .data = &bootloader_type, | |
808 | .maxlen = sizeof (int), | |
809 | .mode = 0444, | |
6d456111 | 810 | .proc_handler = proc_dointvec, |
1da177e4 | 811 | }, |
5031296c | 812 | { |
5031296c PA |
813 | .procname = "bootloader_version", |
814 | .data = &bootloader_version, | |
815 | .maxlen = sizeof (int), | |
816 | .mode = 0444, | |
6d456111 | 817 | .proc_handler = proc_dointvec, |
5031296c | 818 | }, |
0741f4d2 | 819 | { |
0741f4d2 CE |
820 | .procname = "kstack_depth_to_print", |
821 | .data = &kstack_depth_to_print, | |
822 | .maxlen = sizeof(int), | |
823 | .mode = 0644, | |
6d456111 | 824 | .proc_handler = proc_dointvec, |
0741f4d2 | 825 | }, |
6e7c4025 | 826 | { |
6e7c4025 IM |
827 | .procname = "io_delay_type", |
828 | .data = &io_delay_type, | |
829 | .maxlen = sizeof(int), | |
830 | .mode = 0644, | |
6d456111 | 831 | .proc_handler = proc_dointvec, |
6e7c4025 | 832 | }, |
1da177e4 | 833 | #endif |
7a9166e3 | 834 | #if defined(CONFIG_MMU) |
1da177e4 | 835 | { |
1da177e4 LT |
836 | .procname = "randomize_va_space", |
837 | .data = &randomize_va_space, | |
838 | .maxlen = sizeof(int), | |
839 | .mode = 0644, | |
6d456111 | 840 | .proc_handler = proc_dointvec, |
1da177e4 | 841 | }, |
7a9166e3 | 842 | #endif |
0152fb37 | 843 | #if defined(CONFIG_S390) && defined(CONFIG_SMP) |
951f22d5 | 844 | { |
951f22d5 MS |
845 | .procname = "spin_retry", |
846 | .data = &spin_retry, | |
847 | .maxlen = sizeof (int), | |
848 | .mode = 0644, | |
6d456111 | 849 | .proc_handler = proc_dointvec, |
951f22d5 | 850 | }, |
c255d844 | 851 | #endif |
673d5b43 | 852 | #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86) |
c255d844 | 853 | { |
c255d844 | 854 | .procname = "acpi_video_flags", |
77afcf78 | 855 | .data = &acpi_realmode_flags, |
c255d844 PM |
856 | .maxlen = sizeof (unsigned long), |
857 | .mode = 0644, | |
6d456111 | 858 | .proc_handler = proc_doulongvec_minmax, |
c255d844 | 859 | }, |
d2b176ed JS |
860 | #endif |
861 | #ifdef CONFIG_IA64 | |
862 | { | |
d2b176ed JS |
863 | .procname = "ignore-unaligned-usertrap", |
864 | .data = &no_unaligned_warning, | |
865 | .maxlen = sizeof (int), | |
866 | .mode = 0644, | |
6d456111 | 867 | .proc_handler = proc_dointvec, |
d2b176ed | 868 | }, |
88fc241f | 869 | { |
88fc241f DC |
870 | .procname = "unaligned-dump-stack", |
871 | .data = &unaligned_dump_stack, | |
872 | .maxlen = sizeof (int), | |
873 | .mode = 0644, | |
6d456111 | 874 | .proc_handler = proc_dointvec, |
88fc241f | 875 | }, |
bebfa101 | 876 | #endif |
e162b39a MSB |
877 | #ifdef CONFIG_DETECT_HUNG_TASK |
878 | { | |
e162b39a MSB |
879 | .procname = "hung_task_panic", |
880 | .data = &sysctl_hung_task_panic, | |
881 | .maxlen = sizeof(int), | |
882 | .mode = 0644, | |
6d456111 | 883 | .proc_handler = proc_dointvec_minmax, |
e162b39a MSB |
884 | .extra1 = &zero, |
885 | .extra2 = &one, | |
886 | }, | |
82a1fcb9 | 887 | { |
82a1fcb9 IM |
888 | .procname = "hung_task_check_count", |
889 | .data = &sysctl_hung_task_check_count, | |
90739081 | 890 | .maxlen = sizeof(unsigned long), |
82a1fcb9 | 891 | .mode = 0644, |
6d456111 | 892 | .proc_handler = proc_doulongvec_minmax, |
82a1fcb9 IM |
893 | }, |
894 | { | |
82a1fcb9 IM |
895 | .procname = "hung_task_timeout_secs", |
896 | .data = &sysctl_hung_task_timeout_secs, | |
90739081 | 897 | .maxlen = sizeof(unsigned long), |
82a1fcb9 | 898 | .mode = 0644, |
6d456111 | 899 | .proc_handler = proc_dohung_task_timeout_secs, |
82a1fcb9 IM |
900 | }, |
901 | { | |
82a1fcb9 IM |
902 | .procname = "hung_task_warnings", |
903 | .data = &sysctl_hung_task_warnings, | |
90739081 | 904 | .maxlen = sizeof(unsigned long), |
82a1fcb9 | 905 | .mode = 0644, |
6d456111 | 906 | .proc_handler = proc_doulongvec_minmax, |
82a1fcb9 | 907 | }, |
c4f3b63f | 908 | #endif |
bebfa101 AK |
909 | #ifdef CONFIG_COMPAT |
910 | { | |
bebfa101 AK |
911 | .procname = "compat-log", |
912 | .data = &compat_log, | |
913 | .maxlen = sizeof (int), | |
914 | .mode = 0644, | |
6d456111 | 915 | .proc_handler = proc_dointvec, |
bebfa101 | 916 | }, |
951f22d5 | 917 | #endif |
23f78d4a IM |
918 | #ifdef CONFIG_RT_MUTEXES |
919 | { | |
23f78d4a IM |
920 | .procname = "max_lock_depth", |
921 | .data = &max_lock_depth, | |
922 | .maxlen = sizeof(int), | |
923 | .mode = 0644, | |
6d456111 | 924 | .proc_handler = proc_dointvec, |
23f78d4a | 925 | }, |
5096add8 | 926 | #endif |
10a0a8d4 | 927 | { |
10a0a8d4 JF |
928 | .procname = "poweroff_cmd", |
929 | .data = &poweroff_cmd, | |
930 | .maxlen = POWEROFF_CMD_PATH_LEN, | |
931 | .mode = 0644, | |
6d456111 | 932 | .proc_handler = proc_dostring, |
10a0a8d4 | 933 | }, |
0b77f5bf DH |
934 | #ifdef CONFIG_KEYS |
935 | { | |
0b77f5bf DH |
936 | .procname = "keys", |
937 | .mode = 0555, | |
938 | .child = key_sysctls, | |
939 | }, | |
940 | #endif | |
31a72bce PM |
941 | #ifdef CONFIG_RCU_TORTURE_TEST |
942 | { | |
31a72bce PM |
943 | .procname = "rcutorture_runnable", |
944 | .data = &rcutorture_runnable, | |
945 | .maxlen = sizeof(int), | |
946 | .mode = 0644, | |
6d456111 | 947 | .proc_handler = proc_dointvec, |
31a72bce PM |
948 | }, |
949 | #endif | |
cdd6c482 | 950 | #ifdef CONFIG_PERF_EVENTS |
aa4a2218 VW |
951 | /* |
952 | * User-space scripts rely on the existence of this file | |
953 | * as a feature check for perf_events being enabled. | |
954 | * | |
955 | * So it's an ABI, do not remove! | |
956 | */ | |
1ccd1549 | 957 | { |
cdd6c482 IM |
958 | .procname = "perf_event_paranoid", |
959 | .data = &sysctl_perf_event_paranoid, | |
960 | .maxlen = sizeof(sysctl_perf_event_paranoid), | |
1ccd1549 | 961 | .mode = 0644, |
6d456111 | 962 | .proc_handler = proc_dointvec, |
1ccd1549 | 963 | }, |
c5078f78 | 964 | { |
cdd6c482 IM |
965 | .procname = "perf_event_mlock_kb", |
966 | .data = &sysctl_perf_event_mlock, | |
967 | .maxlen = sizeof(sysctl_perf_event_mlock), | |
c5078f78 | 968 | .mode = 0644, |
6d456111 | 969 | .proc_handler = proc_dointvec, |
c5078f78 | 970 | }, |
a78ac325 | 971 | { |
cdd6c482 IM |
972 | .procname = "perf_event_max_sample_rate", |
973 | .data = &sysctl_perf_event_sample_rate, | |
974 | .maxlen = sizeof(sysctl_perf_event_sample_rate), | |
a78ac325 | 975 | .mode = 0644, |
163ec435 | 976 | .proc_handler = perf_proc_update_handler, |
a78ac325 | 977 | }, |
1ccd1549 | 978 | #endif |
dfec072e VN |
979 | #ifdef CONFIG_KMEMCHECK |
980 | { | |
dfec072e VN |
981 | .procname = "kmemcheck", |
982 | .data = &kmemcheck_enabled, | |
983 | .maxlen = sizeof(int), | |
984 | .mode = 0644, | |
6d456111 | 985 | .proc_handler = proc_dointvec, |
dfec072e VN |
986 | }, |
987 | #endif | |
cb684b5b | 988 | #ifdef CONFIG_BLOCK |
5e605b64 | 989 | { |
5e605b64 JA |
990 | .procname = "blk_iopoll", |
991 | .data = &blk_iopoll_enabled, | |
992 | .maxlen = sizeof(int), | |
993 | .mode = 0644, | |
6d456111 | 994 | .proc_handler = proc_dointvec, |
5e605b64 | 995 | }, |
cb684b5b | 996 | #endif |
6fce56ec | 997 | { } |
1da177e4 LT |
998 | }; |
999 | ||
d8217f07 | 1000 | static struct ctl_table vm_table[] = { |
1da177e4 | 1001 | { |
1da177e4 LT |
1002 | .procname = "overcommit_memory", |
1003 | .data = &sysctl_overcommit_memory, | |
1004 | .maxlen = sizeof(sysctl_overcommit_memory), | |
1005 | .mode = 0644, | |
cb16e95f PH |
1006 | .proc_handler = proc_dointvec_minmax, |
1007 | .extra1 = &zero, | |
1008 | .extra2 = &two, | |
1da177e4 | 1009 | }, |
fadd8fbd | 1010 | { |
fadd8fbd KH |
1011 | .procname = "panic_on_oom", |
1012 | .data = &sysctl_panic_on_oom, | |
1013 | .maxlen = sizeof(sysctl_panic_on_oom), | |
1014 | .mode = 0644, | |
cb16e95f PH |
1015 | .proc_handler = proc_dointvec_minmax, |
1016 | .extra1 = &zero, | |
1017 | .extra2 = &two, | |
fadd8fbd | 1018 | }, |
fe071d7e | 1019 | { |
fe071d7e DR |
1020 | .procname = "oom_kill_allocating_task", |
1021 | .data = &sysctl_oom_kill_allocating_task, | |
1022 | .maxlen = sizeof(sysctl_oom_kill_allocating_task), | |
1023 | .mode = 0644, | |
6d456111 | 1024 | .proc_handler = proc_dointvec, |
fe071d7e | 1025 | }, |
fef1bdd6 | 1026 | { |
fef1bdd6 DR |
1027 | .procname = "oom_dump_tasks", |
1028 | .data = &sysctl_oom_dump_tasks, | |
1029 | .maxlen = sizeof(sysctl_oom_dump_tasks), | |
1030 | .mode = 0644, | |
6d456111 | 1031 | .proc_handler = proc_dointvec, |
fef1bdd6 | 1032 | }, |
1da177e4 | 1033 | { |
1da177e4 LT |
1034 | .procname = "overcommit_ratio", |
1035 | .data = &sysctl_overcommit_ratio, | |
1036 | .maxlen = sizeof(sysctl_overcommit_ratio), | |
1037 | .mode = 0644, | |
6d456111 | 1038 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1039 | }, |
1040 | { | |
1da177e4 LT |
1041 | .procname = "page-cluster", |
1042 | .data = &page_cluster, | |
1043 | .maxlen = sizeof(int), | |
1044 | .mode = 0644, | |
cb16e95f PH |
1045 | .proc_handler = proc_dointvec_minmax, |
1046 | .extra1 = &zero, | |
1da177e4 LT |
1047 | }, |
1048 | { | |
1da177e4 LT |
1049 | .procname = "dirty_background_ratio", |
1050 | .data = &dirty_background_ratio, | |
1051 | .maxlen = sizeof(dirty_background_ratio), | |
1052 | .mode = 0644, | |
6d456111 | 1053 | .proc_handler = dirty_background_ratio_handler, |
1da177e4 LT |
1054 | .extra1 = &zero, |
1055 | .extra2 = &one_hundred, | |
1056 | }, | |
2da02997 | 1057 | { |
2da02997 DR |
1058 | .procname = "dirty_background_bytes", |
1059 | .data = &dirty_background_bytes, | |
1060 | .maxlen = sizeof(dirty_background_bytes), | |
1061 | .mode = 0644, | |
6d456111 | 1062 | .proc_handler = dirty_background_bytes_handler, |
fc3501d4 | 1063 | .extra1 = &one_ul, |
2da02997 | 1064 | }, |
1da177e4 | 1065 | { |
1da177e4 LT |
1066 | .procname = "dirty_ratio", |
1067 | .data = &vm_dirty_ratio, | |
1068 | .maxlen = sizeof(vm_dirty_ratio), | |
1069 | .mode = 0644, | |
6d456111 | 1070 | .proc_handler = dirty_ratio_handler, |
1da177e4 LT |
1071 | .extra1 = &zero, |
1072 | .extra2 = &one_hundred, | |
1073 | }, | |
2da02997 | 1074 | { |
2da02997 DR |
1075 | .procname = "dirty_bytes", |
1076 | .data = &vm_dirty_bytes, | |
1077 | .maxlen = sizeof(vm_dirty_bytes), | |
1078 | .mode = 0644, | |
6d456111 | 1079 | .proc_handler = dirty_bytes_handler, |
9e4a5bda | 1080 | .extra1 = &dirty_bytes_min, |
2da02997 | 1081 | }, |
1da177e4 | 1082 | { |
1da177e4 | 1083 | .procname = "dirty_writeback_centisecs", |
f6ef9438 BS |
1084 | .data = &dirty_writeback_interval, |
1085 | .maxlen = sizeof(dirty_writeback_interval), | |
1da177e4 | 1086 | .mode = 0644, |
6d456111 | 1087 | .proc_handler = dirty_writeback_centisecs_handler, |
1da177e4 LT |
1088 | }, |
1089 | { | |
1da177e4 | 1090 | .procname = "dirty_expire_centisecs", |
f6ef9438 BS |
1091 | .data = &dirty_expire_interval, |
1092 | .maxlen = sizeof(dirty_expire_interval), | |
1da177e4 | 1093 | .mode = 0644, |
cb16e95f PH |
1094 | .proc_handler = proc_dointvec_minmax, |
1095 | .extra1 = &zero, | |
1da177e4 LT |
1096 | }, |
1097 | { | |
1da177e4 LT |
1098 | .procname = "nr_pdflush_threads", |
1099 | .data = &nr_pdflush_threads, | |
1100 | .maxlen = sizeof nr_pdflush_threads, | |
1101 | .mode = 0444 /* read-only*/, | |
6d456111 | 1102 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1103 | }, |
1104 | { | |
1da177e4 LT |
1105 | .procname = "swappiness", |
1106 | .data = &vm_swappiness, | |
1107 | .maxlen = sizeof(vm_swappiness), | |
1108 | .mode = 0644, | |
6d456111 | 1109 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
1110 | .extra1 = &zero, |
1111 | .extra2 = &one_hundred, | |
1112 | }, | |
1113 | #ifdef CONFIG_HUGETLB_PAGE | |
06808b08 | 1114 | { |
1da177e4 | 1115 | .procname = "nr_hugepages", |
e5ff2159 | 1116 | .data = NULL, |
1da177e4 LT |
1117 | .maxlen = sizeof(unsigned long), |
1118 | .mode = 0644, | |
6d456111 | 1119 | .proc_handler = hugetlb_sysctl_handler, |
1da177e4 LT |
1120 | .extra1 = (void *)&hugetlb_zero, |
1121 | .extra2 = (void *)&hugetlb_infinity, | |
06808b08 LS |
1122 | }, |
1123 | #ifdef CONFIG_NUMA | |
1124 | { | |
1125 | .procname = "nr_hugepages_mempolicy", | |
1126 | .data = NULL, | |
1127 | .maxlen = sizeof(unsigned long), | |
1128 | .mode = 0644, | |
1129 | .proc_handler = &hugetlb_mempolicy_sysctl_handler, | |
1130 | .extra1 = (void *)&hugetlb_zero, | |
1131 | .extra2 = (void *)&hugetlb_infinity, | |
1132 | }, | |
1133 | #endif | |
1da177e4 | 1134 | { |
1da177e4 LT |
1135 | .procname = "hugetlb_shm_group", |
1136 | .data = &sysctl_hugetlb_shm_group, | |
1137 | .maxlen = sizeof(gid_t), | |
1138 | .mode = 0644, | |
6d456111 | 1139 | .proc_handler = proc_dointvec, |
1da177e4 | 1140 | }, |
396faf03 | 1141 | { |
396faf03 MG |
1142 | .procname = "hugepages_treat_as_movable", |
1143 | .data = &hugepages_treat_as_movable, | |
1144 | .maxlen = sizeof(int), | |
1145 | .mode = 0644, | |
6d456111 | 1146 | .proc_handler = hugetlb_treat_movable_handler, |
396faf03 | 1147 | }, |
d1c3fb1f | 1148 | { |
d1c3fb1f | 1149 | .procname = "nr_overcommit_hugepages", |
e5ff2159 AK |
1150 | .data = NULL, |
1151 | .maxlen = sizeof(unsigned long), | |
d1c3fb1f | 1152 | .mode = 0644, |
6d456111 | 1153 | .proc_handler = hugetlb_overcommit_handler, |
e5ff2159 AK |
1154 | .extra1 = (void *)&hugetlb_zero, |
1155 | .extra2 = (void *)&hugetlb_infinity, | |
d1c3fb1f | 1156 | }, |
1da177e4 LT |
1157 | #endif |
1158 | { | |
1da177e4 LT |
1159 | .procname = "lowmem_reserve_ratio", |
1160 | .data = &sysctl_lowmem_reserve_ratio, | |
1161 | .maxlen = sizeof(sysctl_lowmem_reserve_ratio), | |
1162 | .mode = 0644, | |
6d456111 | 1163 | .proc_handler = lowmem_reserve_ratio_sysctl_handler, |
1da177e4 | 1164 | }, |
9d0243bc | 1165 | { |
9d0243bc AM |
1166 | .procname = "drop_caches", |
1167 | .data = &sysctl_drop_caches, | |
1168 | .maxlen = sizeof(int), | |
1169 | .mode = 0644, | |
1170 | .proc_handler = drop_caches_sysctl_handler, | |
cb16e95f PH |
1171 | .extra1 = &one, |
1172 | .extra2 = &three, | |
9d0243bc | 1173 | }, |
76ab0f53 MG |
1174 | #ifdef CONFIG_COMPACTION |
1175 | { | |
1176 | .procname = "compact_memory", | |
1177 | .data = &sysctl_compact_memory, | |
1178 | .maxlen = sizeof(int), | |
1179 | .mode = 0200, | |
1180 | .proc_handler = sysctl_compaction_handler, | |
1181 | }, | |
5e771905 MG |
1182 | { |
1183 | .procname = "extfrag_threshold", | |
1184 | .data = &sysctl_extfrag_threshold, | |
1185 | .maxlen = sizeof(int), | |
1186 | .mode = 0644, | |
1187 | .proc_handler = sysctl_extfrag_handler, | |
1188 | .extra1 = &min_extfrag_threshold, | |
1189 | .extra2 = &max_extfrag_threshold, | |
1190 | }, | |
1191 | ||
76ab0f53 | 1192 | #endif /* CONFIG_COMPACTION */ |
1da177e4 | 1193 | { |
1da177e4 LT |
1194 | .procname = "min_free_kbytes", |
1195 | .data = &min_free_kbytes, | |
1196 | .maxlen = sizeof(min_free_kbytes), | |
1197 | .mode = 0644, | |
6d456111 | 1198 | .proc_handler = min_free_kbytes_sysctl_handler, |
1da177e4 LT |
1199 | .extra1 = &zero, |
1200 | }, | |
8ad4b1fb | 1201 | { |
8ad4b1fb RS |
1202 | .procname = "percpu_pagelist_fraction", |
1203 | .data = &percpu_pagelist_fraction, | |
1204 | .maxlen = sizeof(percpu_pagelist_fraction), | |
1205 | .mode = 0644, | |
6d456111 | 1206 | .proc_handler = percpu_pagelist_fraction_sysctl_handler, |
8ad4b1fb RS |
1207 | .extra1 = &min_percpu_pagelist_fract, |
1208 | }, | |
1da177e4 LT |
1209 | #ifdef CONFIG_MMU |
1210 | { | |
1da177e4 LT |
1211 | .procname = "max_map_count", |
1212 | .data = &sysctl_max_map_count, | |
1213 | .maxlen = sizeof(sysctl_max_map_count), | |
1214 | .mode = 0644, | |
3e26120c | 1215 | .proc_handler = proc_dointvec_minmax, |
70da2340 | 1216 | .extra1 = &zero, |
1da177e4 | 1217 | }, |
dd8632a1 PM |
1218 | #else |
1219 | { | |
dd8632a1 PM |
1220 | .procname = "nr_trim_pages", |
1221 | .data = &sysctl_nr_trim_pages, | |
1222 | .maxlen = sizeof(sysctl_nr_trim_pages), | |
1223 | .mode = 0644, | |
6d456111 | 1224 | .proc_handler = proc_dointvec_minmax, |
dd8632a1 PM |
1225 | .extra1 = &zero, |
1226 | }, | |
1da177e4 LT |
1227 | #endif |
1228 | { | |
1da177e4 LT |
1229 | .procname = "laptop_mode", |
1230 | .data = &laptop_mode, | |
1231 | .maxlen = sizeof(laptop_mode), | |
1232 | .mode = 0644, | |
6d456111 | 1233 | .proc_handler = proc_dointvec_jiffies, |
1da177e4 LT |
1234 | }, |
1235 | { | |
1da177e4 LT |
1236 | .procname = "block_dump", |
1237 | .data = &block_dump, | |
1238 | .maxlen = sizeof(block_dump), | |
1239 | .mode = 0644, | |
6d456111 | 1240 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1241 | .extra1 = &zero, |
1242 | }, | |
1243 | { | |
1da177e4 LT |
1244 | .procname = "vfs_cache_pressure", |
1245 | .data = &sysctl_vfs_cache_pressure, | |
1246 | .maxlen = sizeof(sysctl_vfs_cache_pressure), | |
1247 | .mode = 0644, | |
6d456111 | 1248 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1249 | .extra1 = &zero, |
1250 | }, | |
1251 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT | |
1252 | { | |
1da177e4 LT |
1253 | .procname = "legacy_va_layout", |
1254 | .data = &sysctl_legacy_va_layout, | |
1255 | .maxlen = sizeof(sysctl_legacy_va_layout), | |
1256 | .mode = 0644, | |
6d456111 | 1257 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1258 | .extra1 = &zero, |
1259 | }, | |
1260 | #endif | |
1743660b CL |
1261 | #ifdef CONFIG_NUMA |
1262 | { | |
1743660b CL |
1263 | .procname = "zone_reclaim_mode", |
1264 | .data = &zone_reclaim_mode, | |
1265 | .maxlen = sizeof(zone_reclaim_mode), | |
1266 | .mode = 0644, | |
6d456111 | 1267 | .proc_handler = proc_dointvec, |
c84db23c | 1268 | .extra1 = &zero, |
1743660b | 1269 | }, |
9614634f | 1270 | { |
9614634f CL |
1271 | .procname = "min_unmapped_ratio", |
1272 | .data = &sysctl_min_unmapped_ratio, | |
1273 | .maxlen = sizeof(sysctl_min_unmapped_ratio), | |
1274 | .mode = 0644, | |
6d456111 | 1275 | .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler, |
9614634f CL |
1276 | .extra1 = &zero, |
1277 | .extra2 = &one_hundred, | |
1278 | }, | |
0ff38490 | 1279 | { |
0ff38490 CL |
1280 | .procname = "min_slab_ratio", |
1281 | .data = &sysctl_min_slab_ratio, | |
1282 | .maxlen = sizeof(sysctl_min_slab_ratio), | |
1283 | .mode = 0644, | |
6d456111 | 1284 | .proc_handler = sysctl_min_slab_ratio_sysctl_handler, |
0ff38490 CL |
1285 | .extra1 = &zero, |
1286 | .extra2 = &one_hundred, | |
1287 | }, | |
e6e5494c | 1288 | #endif |
77461ab3 CL |
1289 | #ifdef CONFIG_SMP |
1290 | { | |
77461ab3 CL |
1291 | .procname = "stat_interval", |
1292 | .data = &sysctl_stat_interval, | |
1293 | .maxlen = sizeof(sysctl_stat_interval), | |
1294 | .mode = 0644, | |
6d456111 | 1295 | .proc_handler = proc_dointvec_jiffies, |
77461ab3 CL |
1296 | }, |
1297 | #endif | |
6e141546 | 1298 | #ifdef CONFIG_MMU |
ed032189 | 1299 | { |
ed032189 | 1300 | .procname = "mmap_min_addr", |
788084ab EP |
1301 | .data = &dac_mmap_min_addr, |
1302 | .maxlen = sizeof(unsigned long), | |
ed032189 | 1303 | .mode = 0644, |
6d456111 | 1304 | .proc_handler = mmap_min_addr_handler, |
ed032189 | 1305 | }, |
6e141546 | 1306 | #endif |
f0c0b2b8 KH |
1307 | #ifdef CONFIG_NUMA |
1308 | { | |
f0c0b2b8 KH |
1309 | .procname = "numa_zonelist_order", |
1310 | .data = &numa_zonelist_order, | |
1311 | .maxlen = NUMA_ZONELIST_ORDER_LEN, | |
1312 | .mode = 0644, | |
6d456111 | 1313 | .proc_handler = numa_zonelist_order_handler, |
f0c0b2b8 KH |
1314 | }, |
1315 | #endif | |
2b8232ce | 1316 | #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \ |
5c36e657 | 1317 | (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) |
e6e5494c | 1318 | { |
e6e5494c IM |
1319 | .procname = "vdso_enabled", |
1320 | .data = &vdso_enabled, | |
1321 | .maxlen = sizeof(vdso_enabled), | |
1322 | .mode = 0644, | |
6d456111 | 1323 | .proc_handler = proc_dointvec, |
e6e5494c IM |
1324 | .extra1 = &zero, |
1325 | }, | |
1da177e4 | 1326 | #endif |
195cf453 BG |
1327 | #ifdef CONFIG_HIGHMEM |
1328 | { | |
195cf453 BG |
1329 | .procname = "highmem_is_dirtyable", |
1330 | .data = &vm_highmem_is_dirtyable, | |
1331 | .maxlen = sizeof(vm_highmem_is_dirtyable), | |
1332 | .mode = 0644, | |
6d456111 | 1333 | .proc_handler = proc_dointvec_minmax, |
195cf453 BG |
1334 | .extra1 = &zero, |
1335 | .extra2 = &one, | |
1336 | }, | |
1337 | #endif | |
4be6f6bb | 1338 | { |
4be6f6bb PZ |
1339 | .procname = "scan_unevictable_pages", |
1340 | .data = &scan_unevictable_pages, | |
1341 | .maxlen = sizeof(scan_unevictable_pages), | |
1342 | .mode = 0644, | |
6d456111 | 1343 | .proc_handler = scan_unevictable_handler, |
4be6f6bb | 1344 | }, |
6a46079c AK |
1345 | #ifdef CONFIG_MEMORY_FAILURE |
1346 | { | |
6a46079c AK |
1347 | .procname = "memory_failure_early_kill", |
1348 | .data = &sysctl_memory_failure_early_kill, | |
1349 | .maxlen = sizeof(sysctl_memory_failure_early_kill), | |
1350 | .mode = 0644, | |
6d456111 | 1351 | .proc_handler = proc_dointvec_minmax, |
6a46079c AK |
1352 | .extra1 = &zero, |
1353 | .extra2 = &one, | |
1354 | }, | |
1355 | { | |
6a46079c AK |
1356 | .procname = "memory_failure_recovery", |
1357 | .data = &sysctl_memory_failure_recovery, | |
1358 | .maxlen = sizeof(sysctl_memory_failure_recovery), | |
1359 | .mode = 0644, | |
6d456111 | 1360 | .proc_handler = proc_dointvec_minmax, |
6a46079c AK |
1361 | .extra1 = &zero, |
1362 | .extra2 = &one, | |
1363 | }, | |
1364 | #endif | |
6fce56ec | 1365 | { } |
1da177e4 LT |
1366 | }; |
1367 | ||
2abc26fc | 1368 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) |
d8217f07 | 1369 | static struct ctl_table binfmt_misc_table[] = { |
6fce56ec | 1370 | { } |
2abc26fc EB |
1371 | }; |
1372 | #endif | |
1373 | ||
d8217f07 | 1374 | static struct ctl_table fs_table[] = { |
1da177e4 | 1375 | { |
1da177e4 LT |
1376 | .procname = "inode-nr", |
1377 | .data = &inodes_stat, | |
1378 | .maxlen = 2*sizeof(int), | |
1379 | .mode = 0444, | |
cffbc8aa | 1380 | .proc_handler = proc_nr_inodes, |
1da177e4 LT |
1381 | }, |
1382 | { | |
1da177e4 LT |
1383 | .procname = "inode-state", |
1384 | .data = &inodes_stat, | |
1385 | .maxlen = 7*sizeof(int), | |
1386 | .mode = 0444, | |
cffbc8aa | 1387 | .proc_handler = proc_nr_inodes, |
1da177e4 LT |
1388 | }, |
1389 | { | |
1da177e4 LT |
1390 | .procname = "file-nr", |
1391 | .data = &files_stat, | |
518de9b3 | 1392 | .maxlen = sizeof(files_stat), |
1da177e4 | 1393 | .mode = 0444, |
6d456111 | 1394 | .proc_handler = proc_nr_files, |
1da177e4 LT |
1395 | }, |
1396 | { | |
1da177e4 LT |
1397 | .procname = "file-max", |
1398 | .data = &files_stat.max_files, | |
518de9b3 | 1399 | .maxlen = sizeof(files_stat.max_files), |
1da177e4 | 1400 | .mode = 0644, |
518de9b3 | 1401 | .proc_handler = proc_doulongvec_minmax, |
1da177e4 | 1402 | }, |
9cfe015a | 1403 | { |
9cfe015a ED |
1404 | .procname = "nr_open", |
1405 | .data = &sysctl_nr_open, | |
1406 | .maxlen = sizeof(int), | |
1407 | .mode = 0644, | |
6d456111 | 1408 | .proc_handler = proc_dointvec_minmax, |
eceea0b3 AV |
1409 | .extra1 = &sysctl_nr_open_min, |
1410 | .extra2 = &sysctl_nr_open_max, | |
9cfe015a | 1411 | }, |
1da177e4 | 1412 | { |
1da177e4 LT |
1413 | .procname = "dentry-state", |
1414 | .data = &dentry_stat, | |
1415 | .maxlen = 6*sizeof(int), | |
1416 | .mode = 0444, | |
312d3ca8 | 1417 | .proc_handler = proc_nr_dentry, |
1da177e4 LT |
1418 | }, |
1419 | { | |
1da177e4 LT |
1420 | .procname = "overflowuid", |
1421 | .data = &fs_overflowuid, | |
1422 | .maxlen = sizeof(int), | |
1423 | .mode = 0644, | |
6d456111 | 1424 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
1425 | .extra1 = &minolduid, |
1426 | .extra2 = &maxolduid, | |
1427 | }, | |
1428 | { | |
1da177e4 LT |
1429 | .procname = "overflowgid", |
1430 | .data = &fs_overflowgid, | |
1431 | .maxlen = sizeof(int), | |
1432 | .mode = 0644, | |
6d456111 | 1433 | .proc_handler = proc_dointvec_minmax, |
1da177e4 LT |
1434 | .extra1 = &minolduid, |
1435 | .extra2 = &maxolduid, | |
1436 | }, | |
bfcd17a6 | 1437 | #ifdef CONFIG_FILE_LOCKING |
1da177e4 | 1438 | { |
1da177e4 LT |
1439 | .procname = "leases-enable", |
1440 | .data = &leases_enable, | |
1441 | .maxlen = sizeof(int), | |
1442 | .mode = 0644, | |
6d456111 | 1443 | .proc_handler = proc_dointvec, |
1da177e4 | 1444 | }, |
bfcd17a6 | 1445 | #endif |
1da177e4 LT |
1446 | #ifdef CONFIG_DNOTIFY |
1447 | { | |
1da177e4 LT |
1448 | .procname = "dir-notify-enable", |
1449 | .data = &dir_notify_enable, | |
1450 | .maxlen = sizeof(int), | |
1451 | .mode = 0644, | |
6d456111 | 1452 | .proc_handler = proc_dointvec, |
1da177e4 LT |
1453 | }, |
1454 | #endif | |
1455 | #ifdef CONFIG_MMU | |
bfcd17a6 | 1456 | #ifdef CONFIG_FILE_LOCKING |
1da177e4 | 1457 | { |
1da177e4 LT |
1458 | .procname = "lease-break-time", |
1459 | .data = &lease_break_time, | |
1460 | .maxlen = sizeof(int), | |
1461 | .mode = 0644, | |
6d456111 | 1462 | .proc_handler = proc_dointvec, |
1da177e4 | 1463 | }, |
bfcd17a6 | 1464 | #endif |
ebf3f09c | 1465 | #ifdef CONFIG_AIO |
1da177e4 | 1466 | { |
1da177e4 LT |
1467 | .procname = "aio-nr", |
1468 | .data = &aio_nr, | |
1469 | .maxlen = sizeof(aio_nr), | |
1470 | .mode = 0444, | |
6d456111 | 1471 | .proc_handler = proc_doulongvec_minmax, |
1da177e4 LT |
1472 | }, |
1473 | { | |
1da177e4 LT |
1474 | .procname = "aio-max-nr", |
1475 | .data = &aio_max_nr, | |
1476 | .maxlen = sizeof(aio_max_nr), | |
1477 | .mode = 0644, | |
6d456111 | 1478 | .proc_handler = proc_doulongvec_minmax, |
1da177e4 | 1479 | }, |
ebf3f09c | 1480 | #endif /* CONFIG_AIO */ |
2d9048e2 | 1481 | #ifdef CONFIG_INOTIFY_USER |
0399cb08 | 1482 | { |
0399cb08 RL |
1483 | .procname = "inotify", |
1484 | .mode = 0555, | |
1485 | .child = inotify_table, | |
1486 | }, | |
1487 | #endif | |
7ef9964e DL |
1488 | #ifdef CONFIG_EPOLL |
1489 | { | |
1490 | .procname = "epoll", | |
1491 | .mode = 0555, | |
1492 | .child = epoll_table, | |
1493 | }, | |
1494 | #endif | |
1da177e4 | 1495 | #endif |
d6e71144 | 1496 | { |
d6e71144 AC |
1497 | .procname = "suid_dumpable", |
1498 | .data = &suid_dumpable, | |
1499 | .maxlen = sizeof(int), | |
1500 | .mode = 0644, | |
6d456111 | 1501 | .proc_handler = proc_dointvec_minmax, |
8e654fba MW |
1502 | .extra1 = &zero, |
1503 | .extra2 = &two, | |
d6e71144 | 1504 | }, |
2abc26fc EB |
1505 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) |
1506 | { | |
2abc26fc EB |
1507 | .procname = "binfmt_misc", |
1508 | .mode = 0555, | |
1509 | .child = binfmt_misc_table, | |
1510 | }, | |
1511 | #endif | |
b492e95b | 1512 | { |
ff9da691 JA |
1513 | .procname = "pipe-max-size", |
1514 | .data = &pipe_max_size, | |
b492e95b JA |
1515 | .maxlen = sizeof(int), |
1516 | .mode = 0644, | |
ff9da691 JA |
1517 | .proc_handler = &pipe_proc_fn, |
1518 | .extra1 = &pipe_min_size, | |
b492e95b | 1519 | }, |
6fce56ec | 1520 | { } |
1da177e4 LT |
1521 | }; |
1522 | ||
d8217f07 | 1523 | static struct ctl_table debug_table[] = { |
ab3c68ee | 1524 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || \ |
571d76ac | 1525 | defined(CONFIG_S390) || defined(CONFIG_TILE) |
abd4f750 | 1526 | { |
abd4f750 MAS |
1527 | .procname = "exception-trace", |
1528 | .data = &show_unhandled_signals, | |
1529 | .maxlen = sizeof(int), | |
1530 | .mode = 0644, | |
1531 | .proc_handler = proc_dointvec | |
1532 | }, | |
b2be84df MH |
1533 | #endif |
1534 | #if defined(CONFIG_OPTPROBES) | |
1535 | { | |
1536 | .procname = "kprobes-optimization", | |
1537 | .data = &sysctl_kprobes_optimization, | |
1538 | .maxlen = sizeof(int), | |
1539 | .mode = 0644, | |
1540 | .proc_handler = proc_kprobes_optimization_handler, | |
1541 | .extra1 = &zero, | |
1542 | .extra2 = &one, | |
1543 | }, | |
abd4f750 | 1544 | #endif |
6fce56ec | 1545 | { } |
1da177e4 LT |
1546 | }; |
1547 | ||
d8217f07 | 1548 | static struct ctl_table dev_table[] = { |
6fce56ec | 1549 | { } |
0eeca283 | 1550 | }; |
1da177e4 | 1551 | |
de4e83bd | 1552 | int __init sysctl_init(void) |
d912b0cc | 1553 | { |
de4e83bd | 1554 | register_sysctl_table(sysctl_base_table); |
d912b0cc EB |
1555 | return 0; |
1556 | } | |
1557 | ||
b89a8171 EB |
1558 | #endif /* CONFIG_SYSCTL */ |
1559 | ||
1da177e4 LT |
1560 | /* |
1561 | * /proc/sys support | |
1562 | */ | |
1563 | ||
b89a8171 | 1564 | #ifdef CONFIG_PROC_SYSCTL |
1da177e4 | 1565 | |
b1ba4ddd | 1566 | static int _proc_do_string(void* data, int maxlen, int write, |
8d65af78 | 1567 | void __user *buffer, |
b1ba4ddd | 1568 | size_t *lenp, loff_t *ppos) |
1da177e4 LT |
1569 | { |
1570 | size_t len; | |
1571 | char __user *p; | |
1572 | char c; | |
8d060877 ON |
1573 | |
1574 | if (!data || !maxlen || !*lenp) { | |
1da177e4 LT |
1575 | *lenp = 0; |
1576 | return 0; | |
1577 | } | |
8d060877 | 1578 | |
1da177e4 LT |
1579 | if (write) { |
1580 | len = 0; | |
1581 | p = buffer; | |
1582 | while (len < *lenp) { | |
1583 | if (get_user(c, p++)) | |
1584 | return -EFAULT; | |
1585 | if (c == 0 || c == '\n') | |
1586 | break; | |
1587 | len++; | |
1588 | } | |
f5dd3d6f SV |
1589 | if (len >= maxlen) |
1590 | len = maxlen-1; | |
1591 | if(copy_from_user(data, buffer, len)) | |
1da177e4 | 1592 | return -EFAULT; |
f5dd3d6f | 1593 | ((char *) data)[len] = 0; |
1da177e4 LT |
1594 | *ppos += *lenp; |
1595 | } else { | |
f5dd3d6f SV |
1596 | len = strlen(data); |
1597 | if (len > maxlen) | |
1598 | len = maxlen; | |
8d060877 ON |
1599 | |
1600 | if (*ppos > len) { | |
1601 | *lenp = 0; | |
1602 | return 0; | |
1603 | } | |
1604 | ||
1605 | data += *ppos; | |
1606 | len -= *ppos; | |
1607 | ||
1da177e4 LT |
1608 | if (len > *lenp) |
1609 | len = *lenp; | |
1610 | if (len) | |
f5dd3d6f | 1611 | if(copy_to_user(buffer, data, len)) |
1da177e4 LT |
1612 | return -EFAULT; |
1613 | if (len < *lenp) { | |
1614 | if(put_user('\n', ((char __user *) buffer) + len)) | |
1615 | return -EFAULT; | |
1616 | len++; | |
1617 | } | |
1618 | *lenp = len; | |
1619 | *ppos += len; | |
1620 | } | |
1621 | return 0; | |
1622 | } | |
1623 | ||
f5dd3d6f SV |
1624 | /** |
1625 | * proc_dostring - read a string sysctl | |
1626 | * @table: the sysctl table | |
1627 | * @write: %TRUE if this is a write to the sysctl file | |
f5dd3d6f SV |
1628 | * @buffer: the user buffer |
1629 | * @lenp: the size of the user buffer | |
1630 | * @ppos: file position | |
1631 | * | |
1632 | * Reads/writes a string from/to the user buffer. If the kernel | |
1633 | * buffer provided is not large enough to hold the string, the | |
1634 | * string is truncated. The copied string is %NULL-terminated. | |
1635 | * If the string is being read by the user process, it is copied | |
1636 | * and a newline '\n' is added. It is truncated if the buffer is | |
1637 | * not large enough. | |
1638 | * | |
1639 | * Returns 0 on success. | |
1640 | */ | |
8d65af78 | 1641 | int proc_dostring(struct ctl_table *table, int write, |
f5dd3d6f SV |
1642 | void __user *buffer, size_t *lenp, loff_t *ppos) |
1643 | { | |
8d65af78 | 1644 | return _proc_do_string(table->data, table->maxlen, write, |
f5dd3d6f SV |
1645 | buffer, lenp, ppos); |
1646 | } | |
1647 | ||
00b7c339 AW |
1648 | static size_t proc_skip_spaces(char **buf) |
1649 | { | |
1650 | size_t ret; | |
1651 | char *tmp = skip_spaces(*buf); | |
1652 | ret = tmp - *buf; | |
1653 | *buf = tmp; | |
1654 | return ret; | |
1655 | } | |
1656 | ||
9f977fb7 OP |
1657 | static void proc_skip_char(char **buf, size_t *size, const char v) |
1658 | { | |
1659 | while (*size) { | |
1660 | if (**buf != v) | |
1661 | break; | |
1662 | (*size)--; | |
1663 | (*buf)++; | |
1664 | } | |
1665 | } | |
1666 | ||
00b7c339 AW |
1667 | #define TMPBUFLEN 22 |
1668 | /** | |
0fc377bd | 1669 | * proc_get_long - reads an ASCII formatted integer from a user buffer |
00b7c339 | 1670 | * |
0fc377bd RD |
1671 | * @buf: a kernel buffer |
1672 | * @size: size of the kernel buffer | |
1673 | * @val: this is where the number will be stored | |
1674 | * @neg: set to %TRUE if number is negative | |
1675 | * @perm_tr: a vector which contains the allowed trailers | |
1676 | * @perm_tr_len: size of the perm_tr vector | |
1677 | * @tr: pointer to store the trailer character | |
00b7c339 | 1678 | * |
0fc377bd RD |
1679 | * In case of success %0 is returned and @buf and @size are updated with |
1680 | * the amount of bytes read. If @tr is non-NULL and a trailing | |
1681 | * character exists (size is non-zero after returning from this | |
1682 | * function), @tr is updated with the trailing character. | |
00b7c339 AW |
1683 | */ |
1684 | static int proc_get_long(char **buf, size_t *size, | |
1685 | unsigned long *val, bool *neg, | |
1686 | const char *perm_tr, unsigned perm_tr_len, char *tr) | |
1687 | { | |
1688 | int len; | |
1689 | char *p, tmp[TMPBUFLEN]; | |
1690 | ||
1691 | if (!*size) | |
1692 | return -EINVAL; | |
1693 | ||
1694 | len = *size; | |
1695 | if (len > TMPBUFLEN - 1) | |
1696 | len = TMPBUFLEN - 1; | |
1697 | ||
1698 | memcpy(tmp, *buf, len); | |
1699 | ||
1700 | tmp[len] = 0; | |
1701 | p = tmp; | |
1702 | if (*p == '-' && *size > 1) { | |
1703 | *neg = true; | |
1704 | p++; | |
1705 | } else | |
1706 | *neg = false; | |
1707 | if (!isdigit(*p)) | |
1708 | return -EINVAL; | |
1709 | ||
1710 | *val = simple_strtoul(p, &p, 0); | |
1711 | ||
1712 | len = p - tmp; | |
1713 | ||
1714 | /* We don't know if the next char is whitespace thus we may accept | |
1715 | * invalid integers (e.g. 1234...a) or two integers instead of one | |
1716 | * (e.g. 123...1). So lets not allow such large numbers. */ | |
1717 | if (len == TMPBUFLEN - 1) | |
1718 | return -EINVAL; | |
1719 | ||
1720 | if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len)) | |
1721 | return -EINVAL; | |
1da177e4 | 1722 | |
00b7c339 AW |
1723 | if (tr && (len < *size)) |
1724 | *tr = *p; | |
1725 | ||
1726 | *buf += len; | |
1727 | *size -= len; | |
1728 | ||
1729 | return 0; | |
1730 | } | |
1731 | ||
1732 | /** | |
0fc377bd | 1733 | * proc_put_long - converts an integer to a decimal ASCII formatted string |
00b7c339 | 1734 | * |
0fc377bd RD |
1735 | * @buf: the user buffer |
1736 | * @size: the size of the user buffer | |
1737 | * @val: the integer to be converted | |
1738 | * @neg: sign of the number, %TRUE for negative | |
00b7c339 | 1739 | * |
0fc377bd RD |
1740 | * In case of success %0 is returned and @buf and @size are updated with |
1741 | * the amount of bytes written. | |
00b7c339 AW |
1742 | */ |
1743 | static int proc_put_long(void __user **buf, size_t *size, unsigned long val, | |
1744 | bool neg) | |
1745 | { | |
1746 | int len; | |
1747 | char tmp[TMPBUFLEN], *p = tmp; | |
1748 | ||
1749 | sprintf(p, "%s%lu", neg ? "-" : "", val); | |
1750 | len = strlen(tmp); | |
1751 | if (len > *size) | |
1752 | len = *size; | |
1753 | if (copy_to_user(*buf, tmp, len)) | |
1754 | return -EFAULT; | |
1755 | *size -= len; | |
1756 | *buf += len; | |
1757 | return 0; | |
1758 | } | |
1759 | #undef TMPBUFLEN | |
1760 | ||
1761 | static int proc_put_char(void __user **buf, size_t *size, char c) | |
1762 | { | |
1763 | if (*size) { | |
1764 | char __user **buffer = (char __user **)buf; | |
1765 | if (put_user(c, *buffer)) | |
1766 | return -EFAULT; | |
1767 | (*size)--, (*buffer)++; | |
1768 | *buf = *buffer; | |
1769 | } | |
1770 | return 0; | |
1771 | } | |
1da177e4 | 1772 | |
00b7c339 | 1773 | static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp, |
1da177e4 LT |
1774 | int *valp, |
1775 | int write, void *data) | |
1776 | { | |
1777 | if (write) { | |
1778 | *valp = *negp ? -*lvalp : *lvalp; | |
1779 | } else { | |
1780 | int val = *valp; | |
1781 | if (val < 0) { | |
00b7c339 | 1782 | *negp = true; |
1da177e4 LT |
1783 | *lvalp = (unsigned long)-val; |
1784 | } else { | |
00b7c339 | 1785 | *negp = false; |
1da177e4 LT |
1786 | *lvalp = (unsigned long)val; |
1787 | } | |
1788 | } | |
1789 | return 0; | |
1790 | } | |
1791 | ||
00b7c339 AW |
1792 | static const char proc_wspace_sep[] = { ' ', '\t', '\n' }; |
1793 | ||
d8217f07 | 1794 | static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table, |
8d65af78 | 1795 | int write, void __user *buffer, |
fcfbd547 | 1796 | size_t *lenp, loff_t *ppos, |
00b7c339 | 1797 | int (*conv)(bool *negp, unsigned long *lvalp, int *valp, |
1da177e4 LT |
1798 | int write, void *data), |
1799 | void *data) | |
1800 | { | |
00b7c339 AW |
1801 | int *i, vleft, first = 1, err = 0; |
1802 | unsigned long page = 0; | |
1803 | size_t left; | |
1804 | char *kbuf; | |
1da177e4 | 1805 | |
00b7c339 | 1806 | if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) { |
1da177e4 LT |
1807 | *lenp = 0; |
1808 | return 0; | |
1809 | } | |
1810 | ||
fcfbd547 | 1811 | i = (int *) tbl_data; |
1da177e4 LT |
1812 | vleft = table->maxlen / sizeof(*i); |
1813 | left = *lenp; | |
1814 | ||
1815 | if (!conv) | |
1816 | conv = do_proc_dointvec_conv; | |
1817 | ||
00b7c339 AW |
1818 | if (write) { |
1819 | if (left > PAGE_SIZE - 1) | |
1820 | left = PAGE_SIZE - 1; | |
1821 | page = __get_free_page(GFP_TEMPORARY); | |
1822 | kbuf = (char *) page; | |
1823 | if (!kbuf) | |
1824 | return -ENOMEM; | |
1825 | if (copy_from_user(kbuf, buffer, left)) { | |
1826 | err = -EFAULT; | |
1827 | goto free; | |
1828 | } | |
1829 | kbuf[left] = 0; | |
1830 | } | |
1831 | ||
1da177e4 | 1832 | for (; left && vleft--; i++, first=0) { |
00b7c339 AW |
1833 | unsigned long lval; |
1834 | bool neg; | |
1da177e4 | 1835 | |
00b7c339 AW |
1836 | if (write) { |
1837 | left -= proc_skip_spaces(&kbuf); | |
1da177e4 | 1838 | |
563b0467 O |
1839 | if (!left) |
1840 | break; | |
00b7c339 AW |
1841 | err = proc_get_long(&kbuf, &left, &lval, &neg, |
1842 | proc_wspace_sep, | |
1843 | sizeof(proc_wspace_sep), NULL); | |
1844 | if (err) | |
1da177e4 | 1845 | break; |
00b7c339 AW |
1846 | if (conv(&neg, &lval, i, 1, data)) { |
1847 | err = -EINVAL; | |
1da177e4 | 1848 | break; |
00b7c339 | 1849 | } |
1da177e4 | 1850 | } else { |
00b7c339 AW |
1851 | if (conv(&neg, &lval, i, 0, data)) { |
1852 | err = -EINVAL; | |
1853 | break; | |
1854 | } | |
1da177e4 | 1855 | if (!first) |
00b7c339 AW |
1856 | err = proc_put_char(&buffer, &left, '\t'); |
1857 | if (err) | |
1858 | break; | |
1859 | err = proc_put_long(&buffer, &left, lval, neg); | |
1860 | if (err) | |
1da177e4 | 1861 | break; |
1da177e4 LT |
1862 | } |
1863 | } | |
1864 | ||
00b7c339 AW |
1865 | if (!write && !first && left && !err) |
1866 | err = proc_put_char(&buffer, &left, '\n'); | |
563b0467 | 1867 | if (write && !err && left) |
00b7c339 AW |
1868 | left -= proc_skip_spaces(&kbuf); |
1869 | free: | |
1da177e4 | 1870 | if (write) { |
00b7c339 AW |
1871 | free_page(page); |
1872 | if (first) | |
1873 | return err ? : -EINVAL; | |
1da177e4 | 1874 | } |
1da177e4 LT |
1875 | *lenp -= left; |
1876 | *ppos += *lenp; | |
00b7c339 | 1877 | return err; |
1da177e4 LT |
1878 | } |
1879 | ||
8d65af78 | 1880 | static int do_proc_dointvec(struct ctl_table *table, int write, |
fcfbd547 | 1881 | void __user *buffer, size_t *lenp, loff_t *ppos, |
00b7c339 | 1882 | int (*conv)(bool *negp, unsigned long *lvalp, int *valp, |
fcfbd547 KK |
1883 | int write, void *data), |
1884 | void *data) | |
1885 | { | |
8d65af78 | 1886 | return __do_proc_dointvec(table->data, table, write, |
fcfbd547 KK |
1887 | buffer, lenp, ppos, conv, data); |
1888 | } | |
1889 | ||
1da177e4 LT |
1890 | /** |
1891 | * proc_dointvec - read a vector of integers | |
1892 | * @table: the sysctl table | |
1893 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
1894 | * @buffer: the user buffer |
1895 | * @lenp: the size of the user buffer | |
1896 | * @ppos: file position | |
1897 | * | |
1898 | * Reads/writes up to table->maxlen/sizeof(unsigned int) integer | |
1899 | * values from/to the user buffer, treated as an ASCII string. | |
1900 | * | |
1901 | * Returns 0 on success. | |
1902 | */ | |
8d65af78 | 1903 | int proc_dointvec(struct ctl_table *table, int write, |
1da177e4 LT |
1904 | void __user *buffer, size_t *lenp, loff_t *ppos) |
1905 | { | |
8d65af78 | 1906 | return do_proc_dointvec(table,write,buffer,lenp,ppos, |
1da177e4 LT |
1907 | NULL,NULL); |
1908 | } | |
1909 | ||
34f5a398 | 1910 | /* |
25ddbb18 AK |
1911 | * Taint values can only be increased |
1912 | * This means we can safely use a temporary. | |
34f5a398 | 1913 | */ |
8d65af78 | 1914 | static int proc_taint(struct ctl_table *table, int write, |
34f5a398 TT |
1915 | void __user *buffer, size_t *lenp, loff_t *ppos) |
1916 | { | |
25ddbb18 AK |
1917 | struct ctl_table t; |
1918 | unsigned long tmptaint = get_taint(); | |
1919 | int err; | |
34f5a398 | 1920 | |
91fcd412 | 1921 | if (write && !capable(CAP_SYS_ADMIN)) |
34f5a398 TT |
1922 | return -EPERM; |
1923 | ||
25ddbb18 AK |
1924 | t = *table; |
1925 | t.data = &tmptaint; | |
8d65af78 | 1926 | err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos); |
25ddbb18 AK |
1927 | if (err < 0) |
1928 | return err; | |
1929 | ||
1930 | if (write) { | |
1931 | /* | |
1932 | * Poor man's atomic or. Not worth adding a primitive | |
1933 | * to everyone's atomic.h for this | |
1934 | */ | |
1935 | int i; | |
1936 | for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) { | |
1937 | if ((tmptaint >> i) & 1) | |
1938 | add_taint(i); | |
1939 | } | |
1940 | } | |
1941 | ||
1942 | return err; | |
34f5a398 TT |
1943 | } |
1944 | ||
bfdc0b49 | 1945 | #ifdef CONFIG_PRINTK |
620f6e8e | 1946 | static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write, |
bfdc0b49 RW |
1947 | void __user *buffer, size_t *lenp, loff_t *ppos) |
1948 | { | |
1949 | if (write && !capable(CAP_SYS_ADMIN)) | |
1950 | return -EPERM; | |
1951 | ||
1952 | return proc_dointvec_minmax(table, write, buffer, lenp, ppos); | |
1953 | } | |
1954 | #endif | |
1955 | ||
1da177e4 LT |
1956 | struct do_proc_dointvec_minmax_conv_param { |
1957 | int *min; | |
1958 | int *max; | |
1959 | }; | |
1960 | ||
00b7c339 AW |
1961 | static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp, |
1962 | int *valp, | |
1da177e4 LT |
1963 | int write, void *data) |
1964 | { | |
1965 | struct do_proc_dointvec_minmax_conv_param *param = data; | |
1966 | if (write) { | |
1967 | int val = *negp ? -*lvalp : *lvalp; | |
1968 | if ((param->min && *param->min > val) || | |
1969 | (param->max && *param->max < val)) | |
1970 | return -EINVAL; | |
1971 | *valp = val; | |
1972 | } else { | |
1973 | int val = *valp; | |
1974 | if (val < 0) { | |
00b7c339 | 1975 | *negp = true; |
1da177e4 LT |
1976 | *lvalp = (unsigned long)-val; |
1977 | } else { | |
00b7c339 | 1978 | *negp = false; |
1da177e4 LT |
1979 | *lvalp = (unsigned long)val; |
1980 | } | |
1981 | } | |
1982 | return 0; | |
1983 | } | |
1984 | ||
1985 | /** | |
1986 | * proc_dointvec_minmax - read a vector of integers with min/max values | |
1987 | * @table: the sysctl table | |
1988 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
1989 | * @buffer: the user buffer |
1990 | * @lenp: the size of the user buffer | |
1991 | * @ppos: file position | |
1992 | * | |
1993 | * Reads/writes up to table->maxlen/sizeof(unsigned int) integer | |
1994 | * values from/to the user buffer, treated as an ASCII string. | |
1995 | * | |
1996 | * This routine will ensure the values are within the range specified by | |
1997 | * table->extra1 (min) and table->extra2 (max). | |
1998 | * | |
1999 | * Returns 0 on success. | |
2000 | */ | |
8d65af78 | 2001 | int proc_dointvec_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2002 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2003 | { | |
2004 | struct do_proc_dointvec_minmax_conv_param param = { | |
2005 | .min = (int *) table->extra1, | |
2006 | .max = (int *) table->extra2, | |
2007 | }; | |
8d65af78 | 2008 | return do_proc_dointvec(table, write, buffer, lenp, ppos, |
1da177e4 LT |
2009 | do_proc_dointvec_minmax_conv, ¶m); |
2010 | } | |
2011 | ||
d8217f07 | 2012 | static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write, |
1da177e4 LT |
2013 | void __user *buffer, |
2014 | size_t *lenp, loff_t *ppos, | |
2015 | unsigned long convmul, | |
2016 | unsigned long convdiv) | |
2017 | { | |
00b7c339 AW |
2018 | unsigned long *i, *min, *max; |
2019 | int vleft, first = 1, err = 0; | |
2020 | unsigned long page = 0; | |
2021 | size_t left; | |
2022 | char *kbuf; | |
2023 | ||
2024 | if (!data || !table->maxlen || !*lenp || (*ppos && !write)) { | |
1da177e4 LT |
2025 | *lenp = 0; |
2026 | return 0; | |
2027 | } | |
00b7c339 | 2028 | |
fcfbd547 | 2029 | i = (unsigned long *) data; |
1da177e4 LT |
2030 | min = (unsigned long *) table->extra1; |
2031 | max = (unsigned long *) table->extra2; | |
2032 | vleft = table->maxlen / sizeof(unsigned long); | |
2033 | left = *lenp; | |
00b7c339 AW |
2034 | |
2035 | if (write) { | |
2036 | if (left > PAGE_SIZE - 1) | |
2037 | left = PAGE_SIZE - 1; | |
2038 | page = __get_free_page(GFP_TEMPORARY); | |
2039 | kbuf = (char *) page; | |
2040 | if (!kbuf) | |
2041 | return -ENOMEM; | |
2042 | if (copy_from_user(kbuf, buffer, left)) { | |
2043 | err = -EFAULT; | |
2044 | goto free; | |
2045 | } | |
2046 | kbuf[left] = 0; | |
2047 | } | |
2048 | ||
27b3d80a | 2049 | for (; left && vleft--; i++, first = 0) { |
00b7c339 AW |
2050 | unsigned long val; |
2051 | ||
1da177e4 | 2052 | if (write) { |
00b7c339 AW |
2053 | bool neg; |
2054 | ||
2055 | left -= proc_skip_spaces(&kbuf); | |
2056 | ||
2057 | err = proc_get_long(&kbuf, &left, &val, &neg, | |
2058 | proc_wspace_sep, | |
2059 | sizeof(proc_wspace_sep), NULL); | |
2060 | if (err) | |
1da177e4 LT |
2061 | break; |
2062 | if (neg) | |
1da177e4 LT |
2063 | continue; |
2064 | if ((min && val < *min) || (max && val > *max)) | |
2065 | continue; | |
2066 | *i = val; | |
2067 | } else { | |
00b7c339 | 2068 | val = convdiv * (*i) / convmul; |
1da177e4 | 2069 | if (!first) |
00b7c339 AW |
2070 | err = proc_put_char(&buffer, &left, '\t'); |
2071 | err = proc_put_long(&buffer, &left, val, false); | |
2072 | if (err) | |
2073 | break; | |
1da177e4 LT |
2074 | } |
2075 | } | |
2076 | ||
00b7c339 AW |
2077 | if (!write && !first && left && !err) |
2078 | err = proc_put_char(&buffer, &left, '\n'); | |
2079 | if (write && !err) | |
2080 | left -= proc_skip_spaces(&kbuf); | |
2081 | free: | |
1da177e4 | 2082 | if (write) { |
00b7c339 AW |
2083 | free_page(page); |
2084 | if (first) | |
2085 | return err ? : -EINVAL; | |
1da177e4 | 2086 | } |
1da177e4 LT |
2087 | *lenp -= left; |
2088 | *ppos += *lenp; | |
00b7c339 | 2089 | return err; |
1da177e4 LT |
2090 | } |
2091 | ||
d8217f07 | 2092 | static int do_proc_doulongvec_minmax(struct ctl_table *table, int write, |
fcfbd547 KK |
2093 | void __user *buffer, |
2094 | size_t *lenp, loff_t *ppos, | |
2095 | unsigned long convmul, | |
2096 | unsigned long convdiv) | |
2097 | { | |
2098 | return __do_proc_doulongvec_minmax(table->data, table, write, | |
8d65af78 | 2099 | buffer, lenp, ppos, convmul, convdiv); |
fcfbd547 KK |
2100 | } |
2101 | ||
1da177e4 LT |
2102 | /** |
2103 | * proc_doulongvec_minmax - read a vector of long integers with min/max values | |
2104 | * @table: the sysctl table | |
2105 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
2106 | * @buffer: the user buffer |
2107 | * @lenp: the size of the user buffer | |
2108 | * @ppos: file position | |
2109 | * | |
2110 | * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long | |
2111 | * values from/to the user buffer, treated as an ASCII string. | |
2112 | * | |
2113 | * This routine will ensure the values are within the range specified by | |
2114 | * table->extra1 (min) and table->extra2 (max). | |
2115 | * | |
2116 | * Returns 0 on success. | |
2117 | */ | |
8d65af78 | 2118 | int proc_doulongvec_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2119 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2120 | { | |
8d65af78 | 2121 | return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l); |
1da177e4 LT |
2122 | } |
2123 | ||
2124 | /** | |
2125 | * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values | |
2126 | * @table: the sysctl table | |
2127 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
2128 | * @buffer: the user buffer |
2129 | * @lenp: the size of the user buffer | |
2130 | * @ppos: file position | |
2131 | * | |
2132 | * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long | |
2133 | * values from/to the user buffer, treated as an ASCII string. The values | |
2134 | * are treated as milliseconds, and converted to jiffies when they are stored. | |
2135 | * | |
2136 | * This routine will ensure the values are within the range specified by | |
2137 | * table->extra1 (min) and table->extra2 (max). | |
2138 | * | |
2139 | * Returns 0 on success. | |
2140 | */ | |
d8217f07 | 2141 | int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2142 | void __user *buffer, |
2143 | size_t *lenp, loff_t *ppos) | |
2144 | { | |
8d65af78 | 2145 | return do_proc_doulongvec_minmax(table, write, buffer, |
1da177e4 LT |
2146 | lenp, ppos, HZ, 1000l); |
2147 | } | |
2148 | ||
2149 | ||
00b7c339 | 2150 | static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp, |
1da177e4 LT |
2151 | int *valp, |
2152 | int write, void *data) | |
2153 | { | |
2154 | if (write) { | |
cba9f33d BS |
2155 | if (*lvalp > LONG_MAX / HZ) |
2156 | return 1; | |
1da177e4 LT |
2157 | *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ); |
2158 | } else { | |
2159 | int val = *valp; | |
2160 | unsigned long lval; | |
2161 | if (val < 0) { | |
00b7c339 | 2162 | *negp = true; |
1da177e4 LT |
2163 | lval = (unsigned long)-val; |
2164 | } else { | |
00b7c339 | 2165 | *negp = false; |
1da177e4 LT |
2166 | lval = (unsigned long)val; |
2167 | } | |
2168 | *lvalp = lval / HZ; | |
2169 | } | |
2170 | return 0; | |
2171 | } | |
2172 | ||
00b7c339 | 2173 | static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp, |
1da177e4 LT |
2174 | int *valp, |
2175 | int write, void *data) | |
2176 | { | |
2177 | if (write) { | |
cba9f33d BS |
2178 | if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ) |
2179 | return 1; | |
1da177e4 LT |
2180 | *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp); |
2181 | } else { | |
2182 | int val = *valp; | |
2183 | unsigned long lval; | |
2184 | if (val < 0) { | |
00b7c339 | 2185 | *negp = true; |
1da177e4 LT |
2186 | lval = (unsigned long)-val; |
2187 | } else { | |
00b7c339 | 2188 | *negp = false; |
1da177e4 LT |
2189 | lval = (unsigned long)val; |
2190 | } | |
2191 | *lvalp = jiffies_to_clock_t(lval); | |
2192 | } | |
2193 | return 0; | |
2194 | } | |
2195 | ||
00b7c339 | 2196 | static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp, |
1da177e4 LT |
2197 | int *valp, |
2198 | int write, void *data) | |
2199 | { | |
2200 | if (write) { | |
2201 | *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp); | |
2202 | } else { | |
2203 | int val = *valp; | |
2204 | unsigned long lval; | |
2205 | if (val < 0) { | |
00b7c339 | 2206 | *negp = true; |
1da177e4 LT |
2207 | lval = (unsigned long)-val; |
2208 | } else { | |
00b7c339 | 2209 | *negp = false; |
1da177e4 LT |
2210 | lval = (unsigned long)val; |
2211 | } | |
2212 | *lvalp = jiffies_to_msecs(lval); | |
2213 | } | |
2214 | return 0; | |
2215 | } | |
2216 | ||
2217 | /** | |
2218 | * proc_dointvec_jiffies - read a vector of integers as seconds | |
2219 | * @table: the sysctl table | |
2220 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
2221 | * @buffer: the user buffer |
2222 | * @lenp: the size of the user buffer | |
2223 | * @ppos: file position | |
2224 | * | |
2225 | * Reads/writes up to table->maxlen/sizeof(unsigned int) integer | |
2226 | * values from/to the user buffer, treated as an ASCII string. | |
2227 | * The values read are assumed to be in seconds, and are converted into | |
2228 | * jiffies. | |
2229 | * | |
2230 | * Returns 0 on success. | |
2231 | */ | |
8d65af78 | 2232 | int proc_dointvec_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2233 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2234 | { | |
8d65af78 | 2235 | return do_proc_dointvec(table,write,buffer,lenp,ppos, |
1da177e4 LT |
2236 | do_proc_dointvec_jiffies_conv,NULL); |
2237 | } | |
2238 | ||
2239 | /** | |
2240 | * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds | |
2241 | * @table: the sysctl table | |
2242 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
2243 | * @buffer: the user buffer |
2244 | * @lenp: the size of the user buffer | |
1e5d5331 | 2245 | * @ppos: pointer to the file position |
1da177e4 LT |
2246 | * |
2247 | * Reads/writes up to table->maxlen/sizeof(unsigned int) integer | |
2248 | * values from/to the user buffer, treated as an ASCII string. | |
2249 | * The values read are assumed to be in 1/USER_HZ seconds, and | |
2250 | * are converted into jiffies. | |
2251 | * | |
2252 | * Returns 0 on success. | |
2253 | */ | |
8d65af78 | 2254 | int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2255 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2256 | { | |
8d65af78 | 2257 | return do_proc_dointvec(table,write,buffer,lenp,ppos, |
1da177e4 LT |
2258 | do_proc_dointvec_userhz_jiffies_conv,NULL); |
2259 | } | |
2260 | ||
2261 | /** | |
2262 | * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds | |
2263 | * @table: the sysctl table | |
2264 | * @write: %TRUE if this is a write to the sysctl file | |
1da177e4 LT |
2265 | * @buffer: the user buffer |
2266 | * @lenp: the size of the user buffer | |
67be2dd1 MW |
2267 | * @ppos: file position |
2268 | * @ppos: the current position in the file | |
1da177e4 LT |
2269 | * |
2270 | * Reads/writes up to table->maxlen/sizeof(unsigned int) integer | |
2271 | * values from/to the user buffer, treated as an ASCII string. | |
2272 | * The values read are assumed to be in 1/1000 seconds, and | |
2273 | * are converted into jiffies. | |
2274 | * | |
2275 | * Returns 0 on success. | |
2276 | */ | |
8d65af78 | 2277 | int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2278 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2279 | { | |
8d65af78 | 2280 | return do_proc_dointvec(table, write, buffer, lenp, ppos, |
1da177e4 LT |
2281 | do_proc_dointvec_ms_jiffies_conv, NULL); |
2282 | } | |
2283 | ||
8d65af78 | 2284 | static int proc_do_cad_pid(struct ctl_table *table, int write, |
9ec52099 CLG |
2285 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2286 | { | |
2287 | struct pid *new_pid; | |
2288 | pid_t tmp; | |
2289 | int r; | |
2290 | ||
6c5f3e7b | 2291 | tmp = pid_vnr(cad_pid); |
9ec52099 | 2292 | |
8d65af78 | 2293 | r = __do_proc_dointvec(&tmp, table, write, buffer, |
9ec52099 CLG |
2294 | lenp, ppos, NULL, NULL); |
2295 | if (r || !write) | |
2296 | return r; | |
2297 | ||
2298 | new_pid = find_get_pid(tmp); | |
2299 | if (!new_pid) | |
2300 | return -ESRCH; | |
2301 | ||
2302 | put_pid(xchg(&cad_pid, new_pid)); | |
2303 | return 0; | |
2304 | } | |
2305 | ||
9f977fb7 OP |
2306 | /** |
2307 | * proc_do_large_bitmap - read/write from/to a large bitmap | |
2308 | * @table: the sysctl table | |
2309 | * @write: %TRUE if this is a write to the sysctl file | |
2310 | * @buffer: the user buffer | |
2311 | * @lenp: the size of the user buffer | |
2312 | * @ppos: file position | |
2313 | * | |
2314 | * The bitmap is stored at table->data and the bitmap length (in bits) | |
2315 | * in table->maxlen. | |
2316 | * | |
2317 | * We use a range comma separated format (e.g. 1,3-4,10-10) so that | |
2318 | * large bitmaps may be represented in a compact manner. Writing into | |
2319 | * the file will clear the bitmap then update it with the given input. | |
2320 | * | |
2321 | * Returns 0 on success. | |
2322 | */ | |
2323 | int proc_do_large_bitmap(struct ctl_table *table, int write, | |
2324 | void __user *buffer, size_t *lenp, loff_t *ppos) | |
2325 | { | |
2326 | int err = 0; | |
2327 | bool first = 1; | |
2328 | size_t left = *lenp; | |
2329 | unsigned long bitmap_len = table->maxlen; | |
2330 | unsigned long *bitmap = (unsigned long *) table->data; | |
2331 | unsigned long *tmp_bitmap = NULL; | |
2332 | char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c; | |
2333 | ||
2334 | if (!bitmap_len || !left || (*ppos && !write)) { | |
2335 | *lenp = 0; | |
2336 | return 0; | |
2337 | } | |
2338 | ||
2339 | if (write) { | |
2340 | unsigned long page = 0; | |
2341 | char *kbuf; | |
2342 | ||
2343 | if (left > PAGE_SIZE - 1) | |
2344 | left = PAGE_SIZE - 1; | |
2345 | ||
2346 | page = __get_free_page(GFP_TEMPORARY); | |
2347 | kbuf = (char *) page; | |
2348 | if (!kbuf) | |
2349 | return -ENOMEM; | |
2350 | if (copy_from_user(kbuf, buffer, left)) { | |
2351 | free_page(page); | |
2352 | return -EFAULT; | |
2353 | } | |
2354 | kbuf[left] = 0; | |
2355 | ||
2356 | tmp_bitmap = kzalloc(BITS_TO_LONGS(bitmap_len) * sizeof(unsigned long), | |
2357 | GFP_KERNEL); | |
2358 | if (!tmp_bitmap) { | |
2359 | free_page(page); | |
2360 | return -ENOMEM; | |
2361 | } | |
2362 | proc_skip_char(&kbuf, &left, '\n'); | |
2363 | while (!err && left) { | |
2364 | unsigned long val_a, val_b; | |
2365 | bool neg; | |
2366 | ||
2367 | err = proc_get_long(&kbuf, &left, &val_a, &neg, tr_a, | |
2368 | sizeof(tr_a), &c); | |
2369 | if (err) | |
2370 | break; | |
2371 | if (val_a >= bitmap_len || neg) { | |
2372 | err = -EINVAL; | |
2373 | break; | |
2374 | } | |
2375 | ||
2376 | val_b = val_a; | |
2377 | if (left) { | |
2378 | kbuf++; | |
2379 | left--; | |
2380 | } | |
2381 | ||
2382 | if (c == '-') { | |
2383 | err = proc_get_long(&kbuf, &left, &val_b, | |
2384 | &neg, tr_b, sizeof(tr_b), | |
2385 | &c); | |
2386 | if (err) | |
2387 | break; | |
2388 | if (val_b >= bitmap_len || neg || | |
2389 | val_a > val_b) { | |
2390 | err = -EINVAL; | |
2391 | break; | |
2392 | } | |
2393 | if (left) { | |
2394 | kbuf++; | |
2395 | left--; | |
2396 | } | |
2397 | } | |
2398 | ||
5a04cca6 | 2399 | bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1); |
9f977fb7 OP |
2400 | first = 0; |
2401 | proc_skip_char(&kbuf, &left, '\n'); | |
2402 | } | |
2403 | free_page(page); | |
2404 | } else { | |
2405 | unsigned long bit_a, bit_b = 0; | |
2406 | ||
2407 | while (left) { | |
2408 | bit_a = find_next_bit(bitmap, bitmap_len, bit_b); | |
2409 | if (bit_a >= bitmap_len) | |
2410 | break; | |
2411 | bit_b = find_next_zero_bit(bitmap, bitmap_len, | |
2412 | bit_a + 1) - 1; | |
2413 | ||
2414 | if (!first) { | |
2415 | err = proc_put_char(&buffer, &left, ','); | |
2416 | if (err) | |
2417 | break; | |
2418 | } | |
2419 | err = proc_put_long(&buffer, &left, bit_a, false); | |
2420 | if (err) | |
2421 | break; | |
2422 | if (bit_a != bit_b) { | |
2423 | err = proc_put_char(&buffer, &left, '-'); | |
2424 | if (err) | |
2425 | break; | |
2426 | err = proc_put_long(&buffer, &left, bit_b, false); | |
2427 | if (err) | |
2428 | break; | |
2429 | } | |
2430 | ||
2431 | first = 0; bit_b++; | |
2432 | } | |
2433 | if (!err) | |
2434 | err = proc_put_char(&buffer, &left, '\n'); | |
2435 | } | |
2436 | ||
2437 | if (!err) { | |
2438 | if (write) { | |
2439 | if (*ppos) | |
2440 | bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len); | |
2441 | else | |
5a04cca6 | 2442 | bitmap_copy(bitmap, tmp_bitmap, bitmap_len); |
9f977fb7 OP |
2443 | } |
2444 | kfree(tmp_bitmap); | |
2445 | *lenp -= left; | |
2446 | *ppos += *lenp; | |
2447 | return 0; | |
2448 | } else { | |
2449 | kfree(tmp_bitmap); | |
2450 | return err; | |
2451 | } | |
2452 | } | |
2453 | ||
55610500 | 2454 | #else /* CONFIG_PROC_SYSCTL */ |
1da177e4 | 2455 | |
8d65af78 | 2456 | int proc_dostring(struct ctl_table *table, int write, |
1da177e4 LT |
2457 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2458 | { | |
2459 | return -ENOSYS; | |
2460 | } | |
2461 | ||
8d65af78 | 2462 | int proc_dointvec(struct ctl_table *table, int write, |
1da177e4 | 2463 | void __user *buffer, size_t *lenp, loff_t *ppos) |
1da177e4 LT |
2464 | { |
2465 | return -ENOSYS; | |
2466 | } | |
2467 | ||
8d65af78 | 2468 | int proc_dointvec_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2469 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2470 | { | |
2471 | return -ENOSYS; | |
2472 | } | |
2473 | ||
8d65af78 | 2474 | int proc_dointvec_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2475 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2476 | { | |
2477 | return -ENOSYS; | |
2478 | } | |
2479 | ||
8d65af78 | 2480 | int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2481 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2482 | { | |
2483 | return -ENOSYS; | |
2484 | } | |
2485 | ||
8d65af78 | 2486 | int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, |
1da177e4 LT |
2487 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2488 | { | |
2489 | return -ENOSYS; | |
2490 | } | |
2491 | ||
8d65af78 | 2492 | int proc_doulongvec_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2493 | void __user *buffer, size_t *lenp, loff_t *ppos) |
2494 | { | |
2495 | return -ENOSYS; | |
2496 | } | |
2497 | ||
d8217f07 | 2498 | int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write, |
1da177e4 LT |
2499 | void __user *buffer, |
2500 | size_t *lenp, loff_t *ppos) | |
2501 | { | |
2502 | return -ENOSYS; | |
2503 | } | |
2504 | ||
2505 | ||
55610500 | 2506 | #endif /* CONFIG_PROC_SYSCTL */ |
1da177e4 | 2507 | |
1da177e4 LT |
2508 | /* |
2509 | * No sense putting this after each symbol definition, twice, | |
2510 | * exception granted :-) | |
2511 | */ | |
2512 | EXPORT_SYMBOL(proc_dointvec); | |
2513 | EXPORT_SYMBOL(proc_dointvec_jiffies); | |
2514 | EXPORT_SYMBOL(proc_dointvec_minmax); | |
2515 | EXPORT_SYMBOL(proc_dointvec_userhz_jiffies); | |
2516 | EXPORT_SYMBOL(proc_dointvec_ms_jiffies); | |
2517 | EXPORT_SYMBOL(proc_dostring); | |
2518 | EXPORT_SYMBOL(proc_doulongvec_minmax); | |
2519 | EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax); |