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