blob: 6ac501a2dcc6aaf74d59b258f3f26a0b52f23b59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
12 * Horn.
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
16 * Wendling.
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
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>
Andrew Morgan72c2d582007-10-18 03:05:59 -070027#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ctype.h>
29#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/smp_lock.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070031#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/init.h>
33#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010034#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030035#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sysrq.h>
37#include <linux/highuid.h>
38#include <linux/writeback.h>
39#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070041#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/times.h>
43#include <linux/limits.h>
44#include <linux/dcache.h>
45#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070046#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080047#include <linux/nfs_fs.h>
48#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070049#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020050#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/uaccess.h>
53#include <asm/processor.h>
54
Andi Kleen29cbc782006-09-30 01:47:55 +020055#ifdef CONFIG_X86
56#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010057#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010058#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020059#endif
60
Eric W. Biederman7058cb02007-10-18 03:05:58 -070061static int deprecated_sysctl_warning(struct __sysctl_args *args);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#if defined(CONFIG_SYSCTL)
64
65/* External variables not in a header file. */
66extern int C_A_D;
Ingo Molnar45807a12007-07-15 23:40:10 -070067extern int print_fatal_signals;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068extern int sysctl_overcommit_memory;
69extern int sysctl_overcommit_ratio;
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -070070extern int sysctl_panic_on_oom;
David Rientjesfe071d72007-10-16 23:25:56 -070071extern int sysctl_oom_kill_allocating_task;
David Rientjesfef1bdd2008-02-07 00:14:07 -080072extern int sysctl_oom_dump_tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern int max_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074extern int core_uses_pid;
Alan Coxd6e71142005-06-23 00:09:43 -070075extern int suid_dumpable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern char core_pattern[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070077extern int pid_max;
78extern int min_free_kbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern int pid_max_min, pid_max_max;
Andrew Morton9d0243b2006-01-08 01:00:39 -080080extern int sysctl_drop_caches;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -080081extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +020082extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +010083extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -040084extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul E. McKenney31a72bc2008-06-18 09:26:49 -070085#ifdef CONFIG_RCU_TORTURE_TEST
86extern int rcutorture_runnable;
87#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070089/* Constants used for minimum and maximum */
Ingo Molnar1c4cd6d2008-05-12 21:21:14 +020090#if defined(CONFIG_HIGHMEM) || defined(CONFIG_DETECT_SOFTLOCKUP)
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070091static int one = 1;
Bron Gondwana195cf4532008-02-04 22:29:20 -080092#endif
93
94#ifdef CONFIG_DETECT_SOFTLOCKUP
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070095static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +020096static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070097#endif
98
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +020099#if defined(CONFIG_MMU) && defined(CONFIG_FILE_LOCKING)
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700100static int two = 2;
101#endif
102
103static int zero;
104static int one_hundred = 100;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
107static int maxolduid = 65535;
108static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800109static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static int ngroups_max = NGROUPS_MAX;
112
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200113#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114extern char modprobe_path[];
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#ifdef CONFIG_CHR_DEV_SG
117extern int sg_big_buff;
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
David S. Miller72c57ed2008-09-11 23:29:54 -0700120#ifdef CONFIG_SPARC
David S. Miller17f04fb2008-09-11 23:33:53 -0700121#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif
123
124#ifdef __hppa__
125extern int pwrsw_enabled;
126extern int unaligned_enabled;
127#endif
128
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800129#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#ifdef CONFIG_MATHEMU
131extern int sysctl_ieee_emulation_warnings;
132#endif
133extern int sysctl_userprocess_debug;
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700134extern int spin_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#endif
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#ifdef CONFIG_BSD_PROCESS_ACCT
138extern int acct_parm[];
139#endif
140
Jes Sorensend2b176e2006-02-28 09:42:23 -0800141#ifdef CONFIG_IA64
142extern int no_unaligned_warning;
143#endif
144
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700145#ifdef CONFIG_RT_MUTEXES
146extern int max_lock_depth;
147#endif
148
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700149#ifdef CONFIG_PROC_SYSCTL
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700150static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700151 void __user *buffer, size_t *lenp, loff_t *ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700152static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800153 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700154#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700155
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700156static struct ctl_table root_table[];
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100157static struct ctl_table_root sysctl_table_root;
158static struct ctl_table_header root_table_header = {
Al Virob380b0d2008-09-04 17:05:57 +0100159 .count = 1,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100160 .ctl_table = root_table,
Al Viro73455092008-07-14 21:22:20 -0400161 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100162 .root = &sysctl_table_root,
Al Viro73455092008-07-14 21:22:20 -0400163 .set = &sysctl_table_root.default_set,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100164};
165static struct ctl_table_root sysctl_table_root = {
166 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
Al Viro73455092008-07-14 21:22:20 -0400167 .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100168};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700170static struct ctl_table kern_table[];
171static struct ctl_table vm_table[];
172static struct ctl_table fs_table[];
173static struct ctl_table debug_table[];
174static struct ctl_table dev_table[];
175extern struct ctl_table random_table[];
Amy Griffis2d9048e2006-06-01 13:10:59 -0700176#ifdef CONFIG_INOTIFY_USER
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700177extern struct ctl_table inotify_table[];
Robert Love0399cb02005-07-13 12:38:18 -0400178#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -0800179#ifdef CONFIG_EPOLL
180extern struct ctl_table epoll_table[];
181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
184int sysctl_legacy_va_layout;
185#endif
186
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700187extern int prove_locking;
188extern int lock_stat;
Eric W. Biederman9bc9a6b2006-12-08 02:39:56 -0800189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/* The default sysctl tables: */
191
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700192static struct ctl_table root_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 {
194 .ctl_name = CTL_KERN,
195 .procname = "kernel",
196 .mode = 0555,
197 .child = kern_table,
198 },
199 {
200 .ctl_name = CTL_VM,
201 .procname = "vm",
202 .mode = 0555,
203 .child = vm_table,
204 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .ctl_name = CTL_FS,
207 .procname = "fs",
208 .mode = 0555,
209 .child = fs_table,
210 },
211 {
212 .ctl_name = CTL_DEBUG,
213 .procname = "debug",
214 .mode = 0555,
215 .child = debug_table,
216 },
217 {
218 .ctl_name = CTL_DEV,
219 .procname = "dev",
220 .mode = 0555,
221 .child = dev_table,
222 },
Andrew Morton2be7fe02007-07-15 23:41:21 -0700223/*
224 * NOTE: do not add new entries to this table unless you have read
225 * Documentation/sysctl/ctl_unnumbered.txt
226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 { .ctl_name = 0 }
228};
229
Ingo Molnar77e54a12007-07-09 18:52:00 +0200230#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100231static int min_sched_granularity_ns = 100000; /* 100 usecs */
232static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
233static int min_wakeup_granularity_ns; /* 0 usecs */
234static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200235#endif
236
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700237static struct ctl_table kern_table[] = {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200238#ifdef CONFIG_SCHED_DEBUG
239 {
240 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100241 .procname = "sched_min_granularity_ns",
242 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200243 .maxlen = sizeof(unsigned int),
244 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100245 .proc_handler = &sched_nr_latency_handler,
246 .strategy = &sysctl_intvec,
247 .extra1 = &min_sched_granularity_ns,
248 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200249 },
250 {
251 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra21805082007-08-25 18:41:53 +0200252 .procname = "sched_latency_ns",
253 .data = &sysctl_sched_latency,
254 .maxlen = sizeof(unsigned int),
255 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100256 .proc_handler = &sched_nr_latency_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200257 .strategy = &sysctl_intvec,
258 .extra1 = &min_sched_granularity_ns,
259 .extra2 = &max_sched_granularity_ns,
260 },
261 {
262 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200263 .procname = "sched_wakeup_granularity_ns",
264 .data = &sysctl_sched_wakeup_granularity,
265 .maxlen = sizeof(unsigned int),
266 .mode = 0644,
267 .proc_handler = &proc_dointvec_minmax,
268 .strategy = &sysctl_intvec,
269 .extra1 = &min_wakeup_granularity_ns,
270 .extra2 = &max_wakeup_granularity_ns,
271 },
272 {
273 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200274 .procname = "sched_shares_ratelimit",
275 .data = &sysctl_sched_shares_ratelimit,
276 .maxlen = sizeof(unsigned int),
277 .mode = 0644,
278 .proc_handler = &proc_dointvec,
279 },
280 {
281 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200282 .procname = "sched_shares_thresh",
283 .data = &sysctl_sched_shares_thresh,
284 .maxlen = sizeof(unsigned int),
285 .mode = 0644,
286 .proc_handler = &proc_dointvec_minmax,
287 .strategy = &sysctl_intvec,
288 .extra1 = &zero,
289 },
290 {
291 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200292 .procname = "sched_child_runs_first",
293 .data = &sysctl_sched_child_runs_first,
294 .maxlen = sizeof(unsigned int),
295 .mode = 0644,
296 .proc_handler = &proc_dointvec,
297 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200298 {
299 .ctl_name = CTL_UNNUMBERED,
300 .procname = "sched_features",
301 .data = &sysctl_sched_features,
302 .maxlen = sizeof(unsigned int),
303 .mode = 0644,
304 .proc_handler = &proc_dointvec,
305 },
Ingo Molnarda84d962007-10-15 17:00:18 +0200306 {
307 .ctl_name = CTL_UNNUMBERED,
308 .procname = "sched_migration_cost",
309 .data = &sysctl_sched_migration_cost,
310 .maxlen = sizeof(unsigned int),
311 .mode = 0644,
312 .proc_handler = &proc_dointvec,
313 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100314 {
315 .ctl_name = CTL_UNNUMBERED,
316 .procname = "sched_nr_migrate",
317 .data = &sysctl_sched_nr_migrate,
318 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100319 .mode = 0644,
320 .proc_handler = &proc_dointvec,
321 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200322#endif
Ingo Molnar1799e352007-09-19 23:34:46 +0200323 {
324 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100325 .procname = "sched_rt_period_us",
326 .data = &sysctl_sched_rt_period,
327 .maxlen = sizeof(unsigned int),
328 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200329 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100330 },
331 {
332 .ctl_name = CTL_UNNUMBERED,
333 .procname = "sched_rt_runtime_us",
334 .data = &sysctl_sched_rt_runtime,
335 .maxlen = sizeof(int),
336 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200337 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100338 },
339 {
340 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar1799e352007-09-19 23:34:46 +0200341 .procname = "sched_compat_yield",
342 .data = &sysctl_sched_compat_yield,
343 .maxlen = sizeof(unsigned int),
344 .mode = 0644,
345 .proc_handler = &proc_dointvec,
346 },
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700347#ifdef CONFIG_PROVE_LOCKING
348 {
349 .ctl_name = CTL_UNNUMBERED,
350 .procname = "prove_locking",
351 .data = &prove_locking,
352 .maxlen = sizeof(int),
353 .mode = 0644,
354 .proc_handler = &proc_dointvec,
355 },
356#endif
357#ifdef CONFIG_LOCK_STAT
358 {
359 .ctl_name = CTL_UNNUMBERED,
360 .procname = "lock_stat",
361 .data = &lock_stat,
362 .maxlen = sizeof(int),
363 .mode = 0644,
364 .proc_handler = &proc_dointvec,
365 },
366#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200367 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .ctl_name = KERN_PANIC,
369 .procname = "panic",
370 .data = &panic_timeout,
371 .maxlen = sizeof(int),
372 .mode = 0644,
373 .proc_handler = &proc_dointvec,
374 },
375 {
376 .ctl_name = KERN_CORE_USES_PID,
377 .procname = "core_uses_pid",
378 .data = &core_uses_pid,
379 .maxlen = sizeof(int),
380 .mode = 0644,
381 .proc_handler = &proc_dointvec,
382 },
383 {
384 .ctl_name = KERN_CORE_PATTERN,
385 .procname = "core_pattern",
386 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700387 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 .mode = 0644,
389 .proc_handler = &proc_dostring,
390 .strategy = &sysctl_string,
391 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800392#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700395 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800396 .mode = 0644,
Andi Kleen25ddbb12008-10-15 22:01:41 -0700397 .proc_handler = &proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800399#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100400#ifdef CONFIG_LATENCYTOP
401 {
402 .procname = "latencytop",
403 .data = &latencytop_enabled,
404 .maxlen = sizeof(int),
405 .mode = 0644,
406 .proc_handler = &proc_dointvec,
407 },
408#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#ifdef CONFIG_BLK_DEV_INITRD
410 {
411 .ctl_name = KERN_REALROOTDEV,
412 .procname = "real-root-dev",
413 .data = &real_root_dev,
414 .maxlen = sizeof(int),
415 .mode = 0644,
416 .proc_handler = &proc_dointvec,
417 },
418#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700419 {
420 .ctl_name = CTL_UNNUMBERED,
421 .procname = "print-fatal-signals",
422 .data = &print_fatal_signals,
423 .maxlen = sizeof(int),
424 .mode = 0644,
425 .proc_handler = &proc_dointvec,
426 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700427#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 {
429 .ctl_name = KERN_SPARC_REBOOT,
430 .procname = "reboot-cmd",
431 .data = reboot_command,
432 .maxlen = 256,
433 .mode = 0644,
434 .proc_handler = &proc_dostring,
435 .strategy = &sysctl_string,
436 },
437 {
438 .ctl_name = KERN_SPARC_STOP_A,
439 .procname = "stop-a",
440 .data = &stop_a_enabled,
441 .maxlen = sizeof (int),
442 .mode = 0644,
443 .proc_handler = &proc_dointvec,
444 },
445 {
446 .ctl_name = KERN_SPARC_SCONS_PWROFF,
447 .procname = "scons-poweroff",
448 .data = &scons_pwroff,
449 .maxlen = sizeof (int),
450 .mode = 0644,
451 .proc_handler = &proc_dointvec,
452 },
453#endif
454#ifdef __hppa__
455 {
456 .ctl_name = KERN_HPPA_PWRSW,
457 .procname = "soft-power",
458 .data = &pwrsw_enabled,
459 .maxlen = sizeof (int),
460 .mode = 0644,
461 .proc_handler = &proc_dointvec,
462 },
463 {
464 .ctl_name = KERN_HPPA_UNALIGNED,
465 .procname = "unaligned-trap",
466 .data = &unaligned_enabled,
467 .maxlen = sizeof (int),
468 .mode = 0644,
469 .proc_handler = &proc_dointvec,
470 },
471#endif
472 {
473 .ctl_name = KERN_CTLALTDEL,
474 .procname = "ctrl-alt-del",
475 .data = &C_A_D,
476 .maxlen = sizeof(int),
477 .mode = 0644,
478 .proc_handler = &proc_dointvec,
479 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400480#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200481 {
482 .ctl_name = CTL_UNNUMBERED,
483 .procname = "ftrace_enabled",
484 .data = &ftrace_enabled,
485 .maxlen = sizeof(int),
486 .mode = 0644,
487 .proc_handler = &ftrace_enable_sysctl,
488 },
489#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500490#ifdef CONFIG_STACK_TRACER
491 {
492 .ctl_name = CTL_UNNUMBERED,
493 .procname = "stack_tracer_enabled",
494 .data = &stack_tracer_enabled,
495 .maxlen = sizeof(int),
496 .mode = 0644,
497 .proc_handler = &stack_trace_sysctl,
498 },
499#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400500#ifdef CONFIG_TRACING
501 {
502 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100503 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400504 .data = &ftrace_dump_on_oops,
505 .maxlen = sizeof(int),
506 .mode = 0644,
507 .proc_handler = &proc_dointvec,
508 },
509#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200510#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 {
512 .ctl_name = KERN_MODPROBE,
513 .procname = "modprobe",
514 .data = &modprobe_path,
515 .maxlen = KMOD_PATH_LEN,
516 .mode = 0644,
517 .proc_handler = &proc_dostring,
518 .strategy = &sysctl_string,
519 },
520#endif
Andrew Morton57ae2502006-06-23 02:05:47 -0700521#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 {
523 .ctl_name = KERN_HOTPLUG,
524 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100525 .data = &uevent_helper,
526 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 .mode = 0644,
528 .proc_handler = &proc_dostring,
529 .strategy = &sysctl_string,
530 },
531#endif
532#ifdef CONFIG_CHR_DEV_SG
533 {
534 .ctl_name = KERN_SG_BIG_BUFF,
535 .procname = "sg-big-buff",
536 .data = &sg_big_buff,
537 .maxlen = sizeof (int),
538 .mode = 0444,
539 .proc_handler = &proc_dointvec,
540 },
541#endif
542#ifdef CONFIG_BSD_PROCESS_ACCT
543 {
544 .ctl_name = KERN_ACCT,
545 .procname = "acct",
546 .data = &acct_parm,
547 .maxlen = 3*sizeof(int),
548 .mode = 0644,
549 .proc_handler = &proc_dointvec,
550 },
551#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552#ifdef CONFIG_MAGIC_SYSRQ
553 {
554 .ctl_name = KERN_SYSRQ,
555 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800556 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 .maxlen = sizeof (int),
558 .mode = 0644,
559 .proc_handler = &proc_dointvec,
560 },
561#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700562#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700565 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .maxlen = sizeof (int),
567 .mode = 0600,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700568 .proc_handler = &proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 {
572 .ctl_name = KERN_MAX_THREADS,
573 .procname = "threads-max",
574 .data = &max_threads,
575 .maxlen = sizeof(int),
576 .mode = 0644,
577 .proc_handler = &proc_dointvec,
578 },
579 {
580 .ctl_name = KERN_RANDOM,
581 .procname = "random",
582 .mode = 0555,
583 .child = random_table,
584 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 {
586 .ctl_name = KERN_OVERFLOWUID,
587 .procname = "overflowuid",
588 .data = &overflowuid,
589 .maxlen = sizeof(int),
590 .mode = 0644,
591 .proc_handler = &proc_dointvec_minmax,
592 .strategy = &sysctl_intvec,
593 .extra1 = &minolduid,
594 .extra2 = &maxolduid,
595 },
596 {
597 .ctl_name = KERN_OVERFLOWGID,
598 .procname = "overflowgid",
599 .data = &overflowgid,
600 .maxlen = sizeof(int),
601 .mode = 0644,
602 .proc_handler = &proc_dointvec_minmax,
603 .strategy = &sysctl_intvec,
604 .extra1 = &minolduid,
605 .extra2 = &maxolduid,
606 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800607#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608#ifdef CONFIG_MATHEMU
609 {
610 .ctl_name = KERN_IEEE_EMULATION_WARNINGS,
611 .procname = "ieee_emulation_warnings",
612 .data = &sysctl_ieee_emulation_warnings,
613 .maxlen = sizeof(int),
614 .mode = 0644,
615 .proc_handler = &proc_dointvec,
616 },
617#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 {
619 .ctl_name = KERN_S390_USER_DEBUG_LOGGING,
620 .procname = "userprocess_debug",
621 .data = &sysctl_userprocess_debug,
622 .maxlen = sizeof(int),
623 .mode = 0644,
624 .proc_handler = &proc_dointvec,
625 },
626#endif
627 {
628 .ctl_name = KERN_PIDMAX,
629 .procname = "pid_max",
630 .data = &pid_max,
631 .maxlen = sizeof (int),
632 .mode = 0644,
633 .proc_handler = &proc_dointvec_minmax,
634 .strategy = sysctl_intvec,
635 .extra1 = &pid_max_min,
636 .extra2 = &pid_max_max,
637 },
638 {
639 .ctl_name = KERN_PANIC_ON_OOPS,
640 .procname = "panic_on_oops",
641 .data = &panic_on_oops,
642 .maxlen = sizeof(int),
643 .mode = 0644,
644 .proc_handler = &proc_dointvec,
645 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800646#if defined CONFIG_PRINTK
647 {
648 .ctl_name = KERN_PRINTK,
649 .procname = "printk",
650 .data = &console_loglevel,
651 .maxlen = 4*sizeof(int),
652 .mode = 0644,
653 .proc_handler = &proc_dointvec,
654 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 {
656 .ctl_name = KERN_PRINTK_RATELIMIT,
657 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700658 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 .maxlen = sizeof(int),
660 .mode = 0644,
661 .proc_handler = &proc_dointvec_jiffies,
662 .strategy = &sysctl_jiffies,
663 },
664 {
665 .ctl_name = KERN_PRINTK_RATELIMIT_BURST,
666 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700667 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .maxlen = sizeof(int),
669 .mode = 0644,
670 .proc_handler = &proc_dointvec,
671 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800672#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 {
674 .ctl_name = KERN_NGROUPS_MAX,
675 .procname = "ngroups_max",
676 .data = &ngroups_max,
677 .maxlen = sizeof (int),
678 .mode = 0444,
679 .proc_handler = &proc_dointvec,
680 },
681#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
682 {
683 .ctl_name = KERN_UNKNOWN_NMI_PANIC,
684 .procname = "unknown_nmi_panic",
685 .data = &unknown_nmi_panic,
686 .maxlen = sizeof (int),
687 .mode = 0644,
Don Zickus2fbe7b22006-09-26 10:52:27 +0200688 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 },
Don Zickus407984f2006-09-26 10:52:27 +0200690 {
Don Zickus407984f2006-09-26 10:52:27 +0200691 .procname = "nmi_watchdog",
692 .data = &nmi_watchdog_enabled,
693 .maxlen = sizeof (int),
694 .mode = 0644,
695 .proc_handler = &proc_nmi_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 },
697#endif
698#if defined(CONFIG_X86)
699 {
Don Zickus8da5add2006-09-26 10:52:27 +0200700 .ctl_name = KERN_PANIC_ON_NMI,
701 .procname = "panic_on_unrecovered_nmi",
702 .data = &panic_on_unrecovered_nmi,
703 .maxlen = sizeof(int),
704 .mode = 0644,
705 .proc_handler = &proc_dointvec,
706 },
707 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .ctl_name = KERN_BOOTLOADER_TYPE,
709 .procname = "bootloader_type",
710 .data = &bootloader_type,
711 .maxlen = sizeof (int),
712 .mode = 0444,
713 .proc_handler = &proc_dointvec,
714 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100715 {
716 .ctl_name = CTL_UNNUMBERED,
717 .procname = "kstack_depth_to_print",
718 .data = &kstack_depth_to_print,
719 .maxlen = sizeof(int),
720 .mode = 0644,
721 .proc_handler = &proc_dointvec,
722 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100723 {
724 .ctl_name = CTL_UNNUMBERED,
725 .procname = "io_delay_type",
726 .data = &io_delay_type,
727 .maxlen = sizeof(int),
728 .mode = 0644,
729 .proc_handler = &proc_dointvec,
730 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800732#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 {
734 .ctl_name = KERN_RANDOMIZE,
735 .procname = "randomize_va_space",
736 .data = &randomize_va_space,
737 .maxlen = sizeof(int),
738 .mode = 0644,
739 .proc_handler = &proc_dointvec,
740 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800741#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800742#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700743 {
744 .ctl_name = KERN_SPIN_RETRY,
745 .procname = "spin_retry",
746 .data = &spin_retry,
747 .maxlen = sizeof (int),
748 .mode = 0644,
749 .proc_handler = &proc_dointvec,
750 },
751#endif
Len Brown673d5b42007-07-28 03:33:16 -0400752#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800753 {
Pavel Machekc255d842006-02-20 18:27:58 -0800754 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700755 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800756 .maxlen = sizeof (unsigned long),
757 .mode = 0644,
Stefan Seyfried7f99f062006-03-02 02:54:34 -0800758 .proc_handler = &proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800759 },
760#endif
Jes Sorensend2b176e2006-02-28 09:42:23 -0800761#ifdef CONFIG_IA64
762 {
763 .ctl_name = KERN_IA64_UNALIGNED,
764 .procname = "ignore-unaligned-usertrap",
765 .data = &no_unaligned_warning,
766 .maxlen = sizeof (int),
767 .mode = 0644,
768 .proc_handler = &proc_dointvec,
769 },
770#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700771#ifdef CONFIG_DETECT_SOFTLOCKUP
772 {
773 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200774 .procname = "softlockup_panic",
775 .data = &softlockup_panic,
776 .maxlen = sizeof(int),
777 .mode = 0644,
Hiroshi Shimamoto4dca10a2008-07-07 18:37:04 -0700778 .proc_handler = &proc_dointvec_minmax,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200779 .strategy = &sysctl_intvec,
780 .extra1 = &zero,
781 .extra2 = &one,
782 },
783 {
784 .ctl_name = CTL_UNNUMBERED,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700785 .procname = "softlockup_thresh",
786 .data = &softlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200787 .maxlen = sizeof(int),
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700788 .mode = 0644,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200789 .proc_handler = &proc_dointvec_minmax,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700790 .strategy = &sysctl_intvec,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200791 .extra1 = &neg_one,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700792 .extra2 = &sixty,
793 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100794 {
795 .ctl_name = CTL_UNNUMBERED,
796 .procname = "hung_task_check_count",
797 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100798 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100799 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100800 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100801 .strategy = &sysctl_intvec,
802 },
803 {
804 .ctl_name = CTL_UNNUMBERED,
805 .procname = "hung_task_timeout_secs",
806 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100807 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100808 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100809 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100810 .strategy = &sysctl_intvec,
811 },
812 {
813 .ctl_name = CTL_UNNUMBERED,
814 .procname = "hung_task_warnings",
815 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100816 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100817 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100818 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100819 .strategy = &sysctl_intvec,
820 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700821#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200822#ifdef CONFIG_COMPAT
823 {
824 .ctl_name = KERN_COMPAT_LOG,
825 .procname = "compat-log",
826 .data = &compat_log,
827 .maxlen = sizeof (int),
828 .mode = 0644,
829 .proc_handler = &proc_dointvec,
830 },
831#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700832#ifdef CONFIG_RT_MUTEXES
833 {
834 .ctl_name = KERN_MAX_LOCK_DEPTH,
835 .procname = "max_lock_depth",
836 .data = &max_lock_depth,
837 .maxlen = sizeof(int),
838 .mode = 0644,
839 .proc_handler = &proc_dointvec,
840 },
841#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700842 {
843 .ctl_name = CTL_UNNUMBERED,
844 .procname = "poweroff_cmd",
845 .data = &poweroff_cmd,
846 .maxlen = POWEROFF_CMD_PATH_LEN,
847 .mode = 0644,
848 .proc_handler = &proc_dostring,
849 .strategy = &sysctl_string,
850 },
David Howells0b77f5b2008-04-29 01:01:32 -0700851#ifdef CONFIG_KEYS
852 {
853 .ctl_name = CTL_UNNUMBERED,
854 .procname = "keys",
855 .mode = 0555,
856 .child = key_sysctls,
857 },
858#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700859#ifdef CONFIG_RCU_TORTURE_TEST
860 {
861 .ctl_name = CTL_UNNUMBERED,
862 .procname = "rcutorture_runnable",
863 .data = &rcutorture_runnable,
864 .maxlen = sizeof(int),
865 .mode = 0644,
866 .proc_handler = &proc_dointvec,
867 },
868#endif
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700869#ifdef CONFIG_UNEVICTABLE_LRU
870 {
871 .ctl_name = CTL_UNNUMBERED,
872 .procname = "scan_unevictable_pages",
873 .data = &scan_unevictable_pages,
874 .maxlen = sizeof(scan_unevictable_pages),
875 .mode = 0644,
876 .proc_handler = &scan_unevictable_handler,
877 },
878#endif
Andrew Mortoned2c12f2007-07-19 01:50:35 -0700879/*
880 * NOTE: do not add new entries to this table unless you have read
881 * Documentation/sysctl/ctl_unnumbered.txt
882 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 { .ctl_name = 0 }
884};
885
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700886static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 {
888 .ctl_name = VM_OVERCOMMIT_MEMORY,
889 .procname = "overcommit_memory",
890 .data = &sysctl_overcommit_memory,
891 .maxlen = sizeof(sysctl_overcommit_memory),
892 .mode = 0644,
893 .proc_handler = &proc_dointvec,
894 },
895 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700896 .ctl_name = VM_PANIC_ON_OOM,
897 .procname = "panic_on_oom",
898 .data = &sysctl_panic_on_oom,
899 .maxlen = sizeof(sysctl_panic_on_oom),
900 .mode = 0644,
901 .proc_handler = &proc_dointvec,
902 },
903 {
David Rientjesfe071d72007-10-16 23:25:56 -0700904 .ctl_name = CTL_UNNUMBERED,
905 .procname = "oom_kill_allocating_task",
906 .data = &sysctl_oom_kill_allocating_task,
907 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
908 .mode = 0644,
909 .proc_handler = &proc_dointvec,
910 },
911 {
David Rientjesfef1bdd2008-02-07 00:14:07 -0800912 .ctl_name = CTL_UNNUMBERED,
913 .procname = "oom_dump_tasks",
914 .data = &sysctl_oom_dump_tasks,
915 .maxlen = sizeof(sysctl_oom_dump_tasks),
916 .mode = 0644,
917 .proc_handler = &proc_dointvec,
918 },
919 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 .ctl_name = VM_OVERCOMMIT_RATIO,
921 .procname = "overcommit_ratio",
922 .data = &sysctl_overcommit_ratio,
923 .maxlen = sizeof(sysctl_overcommit_ratio),
924 .mode = 0644,
925 .proc_handler = &proc_dointvec,
926 },
927 {
928 .ctl_name = VM_PAGE_CLUSTER,
929 .procname = "page-cluster",
930 .data = &page_cluster,
931 .maxlen = sizeof(int),
932 .mode = 0644,
933 .proc_handler = &proc_dointvec,
934 },
935 {
936 .ctl_name = VM_DIRTY_BACKGROUND,
937 .procname = "dirty_background_ratio",
938 .data = &dirty_background_ratio,
939 .maxlen = sizeof(dirty_background_ratio),
940 .mode = 0644,
941 .proc_handler = &proc_dointvec_minmax,
942 .strategy = &sysctl_intvec,
943 .extra1 = &zero,
944 .extra2 = &one_hundred,
945 },
946 {
947 .ctl_name = VM_DIRTY_RATIO,
948 .procname = "dirty_ratio",
949 .data = &vm_dirty_ratio,
950 .maxlen = sizeof(vm_dirty_ratio),
951 .mode = 0644,
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700952 .proc_handler = &dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 .strategy = &sysctl_intvec,
954 .extra1 = &zero,
955 .extra2 = &one_hundred,
956 },
957 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800959 .data = &dirty_writeback_interval,
960 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 .mode = 0644,
962 .proc_handler = &dirty_writeback_centisecs_handler,
963 },
964 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800966 .data = &dirty_expire_interval,
967 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 .mode = 0644,
Bart Samwelf6ef9432006-03-24 03:15:48 -0800969 .proc_handler = &proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 },
971 {
972 .ctl_name = VM_NR_PDFLUSH_THREADS,
973 .procname = "nr_pdflush_threads",
974 .data = &nr_pdflush_threads,
975 .maxlen = sizeof nr_pdflush_threads,
976 .mode = 0444 /* read-only*/,
977 .proc_handler = &proc_dointvec,
978 },
979 {
980 .ctl_name = VM_SWAPPINESS,
981 .procname = "swappiness",
982 .data = &vm_swappiness,
983 .maxlen = sizeof(vm_swappiness),
984 .mode = 0644,
985 .proc_handler = &proc_dointvec_minmax,
986 .strategy = &sysctl_intvec,
987 .extra1 = &zero,
988 .extra2 = &one_hundred,
989 },
990#ifdef CONFIG_HUGETLB_PAGE
991 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -0700993 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 .maxlen = sizeof(unsigned long),
995 .mode = 0644,
996 .proc_handler = &hugetlb_sysctl_handler,
997 .extra1 = (void *)&hugetlb_zero,
998 .extra2 = (void *)&hugetlb_infinity,
999 },
1000 {
1001 .ctl_name = VM_HUGETLB_GROUP,
1002 .procname = "hugetlb_shm_group",
1003 .data = &sysctl_hugetlb_shm_group,
1004 .maxlen = sizeof(gid_t),
1005 .mode = 0644,
1006 .proc_handler = &proc_dointvec,
1007 },
Mel Gorman396faf02007-07-17 04:03:13 -07001008 {
1009 .ctl_name = CTL_UNNUMBERED,
1010 .procname = "hugepages_treat_as_movable",
1011 .data = &hugepages_treat_as_movable,
1012 .maxlen = sizeof(int),
1013 .mode = 0644,
1014 .proc_handler = &hugetlb_treat_movable_handler,
1015 },
Adam Litke54f9f802007-10-16 01:26:20 -07001016 {
1017 .ctl_name = CTL_UNNUMBERED,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001018 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001019 .data = NULL,
1020 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001021 .mode = 0644,
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001022 .proc_handler = &hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -07001023 .extra1 = (void *)&hugetlb_zero,
1024 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001025 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026#endif
1027 {
1028 .ctl_name = VM_LOWMEM_RESERVE_RATIO,
1029 .procname = "lowmem_reserve_ratio",
1030 .data = &sysctl_lowmem_reserve_ratio,
1031 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1032 .mode = 0644,
1033 .proc_handler = &lowmem_reserve_ratio_sysctl_handler,
1034 .strategy = &sysctl_intvec,
1035 },
1036 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001037 .ctl_name = VM_DROP_PAGECACHE,
1038 .procname = "drop_caches",
1039 .data = &sysctl_drop_caches,
1040 .maxlen = sizeof(int),
1041 .mode = 0644,
1042 .proc_handler = drop_caches_sysctl_handler,
1043 .strategy = &sysctl_intvec,
1044 },
1045 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 .ctl_name = VM_MIN_FREE_KBYTES,
1047 .procname = "min_free_kbytes",
1048 .data = &min_free_kbytes,
1049 .maxlen = sizeof(min_free_kbytes),
1050 .mode = 0644,
1051 .proc_handler = &min_free_kbytes_sysctl_handler,
1052 .strategy = &sysctl_intvec,
1053 .extra1 = &zero,
1054 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001055 {
1056 .ctl_name = VM_PERCPU_PAGELIST_FRACTION,
1057 .procname = "percpu_pagelist_fraction",
1058 .data = &percpu_pagelist_fraction,
1059 .maxlen = sizeof(percpu_pagelist_fraction),
1060 .mode = 0644,
1061 .proc_handler = &percpu_pagelist_fraction_sysctl_handler,
1062 .strategy = &sysctl_intvec,
1063 .extra1 = &min_percpu_pagelist_fract,
1064 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#ifdef CONFIG_MMU
1066 {
1067 .ctl_name = VM_MAX_MAP_COUNT,
1068 .procname = "max_map_count",
1069 .data = &sysctl_max_map_count,
1070 .maxlen = sizeof(sysctl_max_map_count),
1071 .mode = 0644,
1072 .proc_handler = &proc_dointvec
1073 },
1074#endif
1075 {
1076 .ctl_name = VM_LAPTOP_MODE,
1077 .procname = "laptop_mode",
1078 .data = &laptop_mode,
1079 .maxlen = sizeof(laptop_mode),
1080 .mode = 0644,
Bart Samweled5b43f2006-03-24 03:15:49 -08001081 .proc_handler = &proc_dointvec_jiffies,
1082 .strategy = &sysctl_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 },
1084 {
1085 .ctl_name = VM_BLOCK_DUMP,
1086 .procname = "block_dump",
1087 .data = &block_dump,
1088 .maxlen = sizeof(block_dump),
1089 .mode = 0644,
1090 .proc_handler = &proc_dointvec,
1091 .strategy = &sysctl_intvec,
1092 .extra1 = &zero,
1093 },
1094 {
1095 .ctl_name = VM_VFS_CACHE_PRESSURE,
1096 .procname = "vfs_cache_pressure",
1097 .data = &sysctl_vfs_cache_pressure,
1098 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1099 .mode = 0644,
1100 .proc_handler = &proc_dointvec,
1101 .strategy = &sysctl_intvec,
1102 .extra1 = &zero,
1103 },
1104#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1105 {
1106 .ctl_name = VM_LEGACY_VA_LAYOUT,
1107 .procname = "legacy_va_layout",
1108 .data = &sysctl_legacy_va_layout,
1109 .maxlen = sizeof(sysctl_legacy_va_layout),
1110 .mode = 0644,
1111 .proc_handler = &proc_dointvec,
1112 .strategy = &sysctl_intvec,
1113 .extra1 = &zero,
1114 },
1115#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001116#ifdef CONFIG_NUMA
1117 {
1118 .ctl_name = VM_ZONE_RECLAIM_MODE,
1119 .procname = "zone_reclaim_mode",
1120 .data = &zone_reclaim_mode,
1121 .maxlen = sizeof(zone_reclaim_mode),
1122 .mode = 0644,
1123 .proc_handler = &proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001124 .strategy = &sysctl_intvec,
1125 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001126 },
Christoph Lameter96146342006-07-03 00:24:13 -07001127 {
1128 .ctl_name = VM_MIN_UNMAPPED,
1129 .procname = "min_unmapped_ratio",
1130 .data = &sysctl_min_unmapped_ratio,
1131 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1132 .mode = 0644,
1133 .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler,
1134 .strategy = &sysctl_intvec,
1135 .extra1 = &zero,
1136 .extra2 = &one_hundred,
1137 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001138 {
1139 .ctl_name = VM_MIN_SLAB,
1140 .procname = "min_slab_ratio",
1141 .data = &sysctl_min_slab_ratio,
1142 .maxlen = sizeof(sysctl_min_slab_ratio),
1143 .mode = 0644,
1144 .proc_handler = &sysctl_min_slab_ratio_sysctl_handler,
1145 .strategy = &sysctl_intvec,
1146 .extra1 = &zero,
1147 .extra2 = &one_hundred,
1148 },
Christoph Lameter17436602006-01-18 17:42:32 -08001149#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001150#ifdef CONFIG_SMP
1151 {
1152 .ctl_name = CTL_UNNUMBERED,
1153 .procname = "stat_interval",
1154 .data = &sysctl_stat_interval,
1155 .maxlen = sizeof(sysctl_stat_interval),
1156 .mode = 0644,
1157 .proc_handler = &proc_dointvec_jiffies,
1158 .strategy = &sysctl_jiffies,
1159 },
1160#endif
Eric Parised032182007-06-28 15:55:21 -04001161#ifdef CONFIG_SECURITY
1162 {
1163 .ctl_name = CTL_UNNUMBERED,
1164 .procname = "mmap_min_addr",
1165 .data = &mmap_min_addr,
1166 .maxlen = sizeof(unsigned long),
1167 .mode = 0644,
1168 .proc_handler = &proc_doulongvec_minmax,
1169 },
Lee Schermerhorn8daec962007-08-10 13:00:51 -07001170#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001171#ifdef CONFIG_NUMA
1172 {
1173 .ctl_name = CTL_UNNUMBERED,
1174 .procname = "numa_zonelist_order",
1175 .data = &numa_zonelist_order,
1176 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1177 .mode = 0644,
1178 .proc_handler = &numa_zonelist_order_handler,
1179 .strategy = &sysctl_string,
1180 },
1181#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001182#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001183 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001184 {
1185 .ctl_name = VM_VDSO_ENABLED,
1186 .procname = "vdso_enabled",
1187 .data = &vdso_enabled,
1188 .maxlen = sizeof(vdso_enabled),
1189 .mode = 0644,
1190 .proc_handler = &proc_dointvec,
1191 .strategy = &sysctl_intvec,
1192 .extra1 = &zero,
1193 },
1194#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001195#ifdef CONFIG_HIGHMEM
1196 {
1197 .ctl_name = CTL_UNNUMBERED,
1198 .procname = "highmem_is_dirtyable",
1199 .data = &vm_highmem_is_dirtyable,
1200 .maxlen = sizeof(vm_highmem_is_dirtyable),
1201 .mode = 0644,
1202 .proc_handler = &proc_dointvec_minmax,
1203 .strategy = &sysctl_intvec,
1204 .extra1 = &zero,
1205 .extra2 = &one,
1206 },
1207#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001208/*
1209 * NOTE: do not add new entries to this table unless you have read
1210 * Documentation/sysctl/ctl_unnumbered.txt
1211 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 { .ctl_name = 0 }
1213};
1214
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001215#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001216static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001217 { .ctl_name = 0 }
1218};
1219#endif
1220
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001221static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 {
1223 .ctl_name = FS_NRINODE,
1224 .procname = "inode-nr",
1225 .data = &inodes_stat,
1226 .maxlen = 2*sizeof(int),
1227 .mode = 0444,
1228 .proc_handler = &proc_dointvec,
1229 },
1230 {
1231 .ctl_name = FS_STATINODE,
1232 .procname = "inode-state",
1233 .data = &inodes_stat,
1234 .maxlen = 7*sizeof(int),
1235 .mode = 0444,
1236 .proc_handler = &proc_dointvec,
1237 },
1238 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 .procname = "file-nr",
1240 .data = &files_stat,
1241 .maxlen = 3*sizeof(int),
1242 .mode = 0444,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -08001243 .proc_handler = &proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 },
1245 {
1246 .ctl_name = FS_MAXFILE,
1247 .procname = "file-max",
1248 .data = &files_stat.max_files,
1249 .maxlen = sizeof(int),
1250 .mode = 0644,
1251 .proc_handler = &proc_dointvec,
1252 },
1253 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001254 .ctl_name = CTL_UNNUMBERED,
1255 .procname = "nr_open",
1256 .data = &sysctl_nr_open,
1257 .maxlen = sizeof(int),
1258 .mode = 0644,
Al Viroeceea0b2008-05-10 10:08:32 -04001259 .proc_handler = &proc_dointvec_minmax,
1260 .extra1 = &sysctl_nr_open_min,
1261 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001262 },
1263 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 .ctl_name = FS_DENTRY,
1265 .procname = "dentry-state",
1266 .data = &dentry_stat,
1267 .maxlen = 6*sizeof(int),
1268 .mode = 0444,
1269 .proc_handler = &proc_dointvec,
1270 },
1271 {
1272 .ctl_name = FS_OVERFLOWUID,
1273 .procname = "overflowuid",
1274 .data = &fs_overflowuid,
1275 .maxlen = sizeof(int),
1276 .mode = 0644,
1277 .proc_handler = &proc_dointvec_minmax,
1278 .strategy = &sysctl_intvec,
1279 .extra1 = &minolduid,
1280 .extra2 = &maxolduid,
1281 },
1282 {
1283 .ctl_name = FS_OVERFLOWGID,
1284 .procname = "overflowgid",
1285 .data = &fs_overflowgid,
1286 .maxlen = sizeof(int),
1287 .mode = 0644,
1288 .proc_handler = &proc_dointvec_minmax,
1289 .strategy = &sysctl_intvec,
1290 .extra1 = &minolduid,
1291 .extra2 = &maxolduid,
1292 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001293#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 {
1295 .ctl_name = FS_LEASES,
1296 .procname = "leases-enable",
1297 .data = &leases_enable,
1298 .maxlen = sizeof(int),
1299 .mode = 0644,
1300 .proc_handler = &proc_dointvec,
1301 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001302#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303#ifdef CONFIG_DNOTIFY
1304 {
1305 .ctl_name = FS_DIR_NOTIFY,
1306 .procname = "dir-notify-enable",
1307 .data = &dir_notify_enable,
1308 .maxlen = sizeof(int),
1309 .mode = 0644,
1310 .proc_handler = &proc_dointvec,
1311 },
1312#endif
1313#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001314#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 {
1316 .ctl_name = FS_LEASE_TIME,
1317 .procname = "lease-break-time",
1318 .data = &lease_break_time,
1319 .maxlen = sizeof(int),
1320 .mode = 0644,
Kawai, Hidehiro76fdbb22007-07-19 01:48:26 -07001321 .proc_handler = &proc_dointvec_minmax,
1322 .strategy = &sysctl_intvec,
1323 .extra1 = &zero,
1324 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001326#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001327#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .procname = "aio-nr",
1330 .data = &aio_nr,
1331 .maxlen = sizeof(aio_nr),
1332 .mode = 0444,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001333 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 },
1335 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 .procname = "aio-max-nr",
1337 .data = &aio_max_nr,
1338 .maxlen = sizeof(aio_max_nr),
1339 .mode = 0644,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001340 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001342#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001343#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001344 {
1345 .ctl_name = FS_INOTIFY,
1346 .procname = "inotify",
1347 .mode = 0555,
1348 .child = inotify_table,
1349 },
1350#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001351#ifdef CONFIG_EPOLL
1352 {
1353 .procname = "epoll",
1354 .mode = 0555,
1355 .child = epoll_table,
1356 },
1357#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001359 {
1360 .ctl_name = KERN_SETUID_DUMPABLE,
1361 .procname = "suid_dumpable",
1362 .data = &suid_dumpable,
1363 .maxlen = sizeof(int),
1364 .mode = 0644,
1365 .proc_handler = &proc_dointvec,
1366 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001367#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1368 {
1369 .ctl_name = CTL_UNNUMBERED,
1370 .procname = "binfmt_misc",
1371 .mode = 0555,
1372 .child = binfmt_misc_table,
1373 },
1374#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001375/*
1376 * NOTE: do not add new entries to this table unless you have read
1377 * Documentation/sysctl/ctl_unnumbered.txt
1378 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 { .ctl_name = 0 }
1380};
1381
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001382static struct ctl_table debug_table[] = {
Olof Johanssond0c3d532007-10-12 10:20:07 +10001383#if defined(CONFIG_X86) || defined(CONFIG_PPC)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001384 {
1385 .ctl_name = CTL_UNNUMBERED,
1386 .procname = "exception-trace",
1387 .data = &show_unhandled_signals,
1388 .maxlen = sizeof(int),
1389 .mode = 0644,
1390 .proc_handler = proc_dointvec
1391 },
1392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 { .ctl_name = 0 }
1394};
1395
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001396static struct ctl_table dev_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 { .ctl_name = 0 }
Robert Love0eeca282005-07-12 17:06:03 -04001398};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Al Viro330d57f2005-11-04 10:18:40 +00001400static DEFINE_SPINLOCK(sysctl_lock);
1401
1402/* called under sysctl_lock */
1403static int use_table(struct ctl_table_header *p)
1404{
1405 if (unlikely(p->unregistering))
1406 return 0;
1407 p->used++;
1408 return 1;
1409}
1410
1411/* called under sysctl_lock */
1412static void unuse_table(struct ctl_table_header *p)
1413{
1414 if (!--p->used)
1415 if (unlikely(p->unregistering))
1416 complete(p->unregistering);
1417}
1418
1419/* called under sysctl_lock, will reacquire if has to wait */
1420static void start_unregistering(struct ctl_table_header *p)
1421{
1422 /*
1423 * if p->used is 0, nobody will ever touch that entry again;
1424 * we'll eliminate all paths to it before dropping sysctl_lock
1425 */
1426 if (unlikely(p->used)) {
1427 struct completion wait;
1428 init_completion(&wait);
1429 p->unregistering = &wait;
1430 spin_unlock(&sysctl_lock);
1431 wait_for_completion(&wait);
1432 spin_lock(&sysctl_lock);
Al Virof7e6ced2008-07-15 01:44:23 -04001433 } else {
1434 /* anything non-NULL; we'll never dereference it */
1435 p->unregistering = ERR_PTR(-EINVAL);
Al Viro330d57f2005-11-04 10:18:40 +00001436 }
1437 /*
1438 * do not remove from the list until nobody holds it; walking the
1439 * list in do_sysctl() relies on that.
1440 */
1441 list_del_init(&p->ctl_entry);
1442}
1443
Al Virof7e6ced2008-07-15 01:44:23 -04001444void sysctl_head_get(struct ctl_table_header *head)
1445{
1446 spin_lock(&sysctl_lock);
1447 head->count++;
1448 spin_unlock(&sysctl_lock);
1449}
1450
1451void sysctl_head_put(struct ctl_table_header *head)
1452{
1453 spin_lock(&sysctl_lock);
1454 if (!--head->count)
1455 kfree(head);
1456 spin_unlock(&sysctl_lock);
1457}
1458
1459struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1460{
1461 if (!head)
1462 BUG();
1463 spin_lock(&sysctl_lock);
1464 if (!use_table(head))
1465 head = ERR_PTR(-ENOENT);
1466 spin_unlock(&sysctl_lock);
1467 return head;
1468}
1469
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001470void sysctl_head_finish(struct ctl_table_header *head)
1471{
1472 if (!head)
1473 return;
1474 spin_lock(&sysctl_lock);
1475 unuse_table(head);
1476 spin_unlock(&sysctl_lock);
1477}
1478
Al Viro73455092008-07-14 21:22:20 -04001479static struct ctl_table_set *
1480lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
1481{
1482 struct ctl_table_set *set = &root->default_set;
1483 if (root->lookup)
1484 set = root->lookup(root, namespaces);
1485 return set;
1486}
1487
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001488static struct list_head *
1489lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001490{
Al Viro73455092008-07-14 21:22:20 -04001491 struct ctl_table_set *set = lookup_header_set(root, namespaces);
1492 return &set->list;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001493}
1494
1495struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1496 struct ctl_table_header *prev)
1497{
1498 struct ctl_table_root *root;
1499 struct list_head *header_list;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001500 struct ctl_table_header *head;
1501 struct list_head *tmp;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001502
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001503 spin_lock(&sysctl_lock);
1504 if (prev) {
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001505 head = prev;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001506 tmp = &prev->ctl_entry;
1507 unuse_table(prev);
1508 goto next;
1509 }
1510 tmp = &root_table_header.ctl_entry;
1511 for (;;) {
1512 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1513
1514 if (!use_table(head))
1515 goto next;
1516 spin_unlock(&sysctl_lock);
1517 return head;
1518 next:
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001519 root = head->root;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001520 tmp = tmp->next;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001521 header_list = lookup_header_list(root, namespaces);
1522 if (tmp != header_list)
1523 continue;
1524
1525 do {
1526 root = list_entry(root->root_list.next,
1527 struct ctl_table_root, root_list);
1528 if (root == &sysctl_table_root)
1529 goto out;
1530 header_list = lookup_header_list(root, namespaces);
1531 } while (list_empty(header_list));
1532 tmp = header_list->next;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001533 }
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001534out:
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001535 spin_unlock(&sysctl_lock);
1536 return NULL;
1537}
1538
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001539struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1540{
1541 return __sysctl_head_next(current->nsproxy, prev);
1542}
1543
1544void register_sysctl_root(struct ctl_table_root *root)
1545{
1546 spin_lock(&sysctl_lock);
1547 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1548 spin_unlock(&sysctl_lock);
1549}
1550
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001551#ifdef CONFIG_SYSCTL_SYSCALL
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001552/* Perform the actual read/write of a sysctl table entry. */
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001553static int do_sysctl_strategy(struct ctl_table_root *root,
1554 struct ctl_table *table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001555 void __user *oldval, size_t __user *oldlenp,
1556 void __user *newval, size_t newlen)
1557{
1558 int op = 0, rc;
1559
1560 if (oldval)
Al Viroe6305c42008-07-15 21:03:57 -04001561 op |= MAY_READ;
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001562 if (newval)
Al Viroe6305c42008-07-15 21:03:57 -04001563 op |= MAY_WRITE;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001564 if (sysctl_perm(root, table, op))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001565 return -EPERM;
1566
1567 if (table->strategy) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001568 rc = table->strategy(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001569 if (rc < 0)
1570 return rc;
1571 if (rc > 0)
1572 return 0;
1573 }
1574
1575 /* If there is no strategy routine, or if the strategy returns
1576 * zero, proceed with automatic r/w */
1577 if (table->data && table->maxlen) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001578 rc = sysctl_data(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001579 if (rc < 0)
1580 return rc;
1581 }
1582 return 0;
1583}
1584
1585static int parse_table(int __user *name, int nlen,
1586 void __user *oldval, size_t __user *oldlenp,
1587 void __user *newval, size_t newlen,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001588 struct ctl_table_root *root,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001589 struct ctl_table *table)
1590{
1591 int n;
1592repeat:
1593 if (!nlen)
1594 return -ENOTDIR;
1595 if (get_user(n, name))
1596 return -EFAULT;
1597 for ( ; table->ctl_name || table->procname; table++) {
1598 if (!table->ctl_name)
1599 continue;
1600 if (n == table->ctl_name) {
1601 int error;
1602 if (table->child) {
Al Viroe6305c42008-07-15 21:03:57 -04001603 if (sysctl_perm(root, table, MAY_EXEC))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001604 return -EPERM;
1605 name++;
1606 nlen--;
1607 table = table->child;
1608 goto repeat;
1609 }
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001610 error = do_sysctl_strategy(root, table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001611 oldval, oldlenp,
1612 newval, newlen);
1613 return error;
1614 }
1615 }
1616 return -ENOTDIR;
1617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
1620 void __user *newval, size_t newlen)
1621{
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001622 struct ctl_table_header *head;
Al Viro330d57f2005-11-04 10:18:40 +00001623 int error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 if (nlen <= 0 || nlen >= CTL_MAXNAME)
1626 return -ENOTDIR;
1627 if (oldval) {
1628 int old_len;
1629 if (!oldlenp || get_user(old_len, oldlenp))
1630 return -EFAULT;
1631 }
Al Viro330d57f2005-11-04 10:18:40 +00001632
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001633 for (head = sysctl_head_next(NULL); head;
1634 head = sysctl_head_next(head)) {
Al Viro330d57f2005-11-04 10:18:40 +00001635 error = parse_table(name, nlen, oldval, oldlenp,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001636 newval, newlen,
1637 head->root, head->ctl_table);
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001638 if (error != -ENOTDIR) {
1639 sysctl_head_finish(head);
Al Viro330d57f2005-11-04 10:18:40 +00001640 break;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001641 }
1642 }
Al Viro330d57f2005-11-04 10:18:40 +00001643 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
1646asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
1647{
1648 struct __sysctl_args tmp;
1649 int error;
1650
1651 if (copy_from_user(&tmp, args, sizeof(tmp)))
1652 return -EFAULT;
1653
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001654 error = deprecated_sysctl_warning(&tmp);
1655 if (error)
1656 goto out;
1657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 lock_kernel();
1659 error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
1660 tmp.newval, tmp.newlen);
1661 unlock_kernel();
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001662out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 return error;
1664}
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001665#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667/*
Eric W. Biederman1ff007e2007-02-14 00:34:11 -08001668 * sysctl_perm does NOT grant the superuser all rights automatically, because
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * some sysctl variables are readonly even to root.
1670 */
1671
1672static int test_perm(int mode, int op)
1673{
1674 if (!current->euid)
1675 mode >>= 6;
1676 else if (in_egroup_p(0))
1677 mode >>= 3;
Al Viroe6305c42008-07-15 21:03:57 -04001678 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 return 0;
1680 return -EACCES;
1681}
1682
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001683int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 int error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001686 int mode;
1687
Al Viroe6305c42008-07-15 21:03:57 -04001688 error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (error)
1690 return error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001691
1692 if (root->permissions)
1693 mode = root->permissions(root, current->nsproxy, table);
1694 else
1695 mode = table->mode;
1696
1697 return test_perm(mode, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698}
1699
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001700static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1701{
1702 for (; table->ctl_name || table->procname; table++) {
1703 table->parent = parent;
1704 if (table->child)
1705 sysctl_set_parent(table, table->child);
1706 }
1707}
1708
1709static __init int sysctl_init(void)
1710{
1711 sysctl_set_parent(NULL, root_table);
Holger Schurig88f458e2008-04-29 01:02:36 -07001712#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1713 {
1714 int err;
1715 err = sysctl_check_table(current->nsproxy, root_table);
1716 }
1717#endif
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001718 return 0;
1719}
1720
1721core_initcall(sysctl_init);
1722
Al Virobfbcf032008-07-27 06:31:22 +01001723static struct ctl_table *is_branch_in(struct ctl_table *branch,
1724 struct ctl_table *table)
Al Viroae7edec2008-07-15 06:33:31 -04001725{
1726 struct ctl_table *p;
1727 const char *s = branch->procname;
1728
1729 /* branch should have named subdirectory as its first element */
1730 if (!s || !branch->child)
Al Virobfbcf032008-07-27 06:31:22 +01001731 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001732
1733 /* ... and nothing else */
1734 if (branch[1].procname || branch[1].ctl_name)
Al Virobfbcf032008-07-27 06:31:22 +01001735 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001736
1737 /* table should contain subdirectory with the same name */
1738 for (p = table; p->procname || p->ctl_name; p++) {
1739 if (!p->child)
1740 continue;
1741 if (p->procname && strcmp(p->procname, s) == 0)
Al Virobfbcf032008-07-27 06:31:22 +01001742 return p;
Al Viroae7edec2008-07-15 06:33:31 -04001743 }
Al Virobfbcf032008-07-27 06:31:22 +01001744 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001745}
1746
1747/* see if attaching q to p would be an improvement */
1748static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1749{
1750 struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
Al Virobfbcf032008-07-27 06:31:22 +01001751 struct ctl_table *next;
Al Viroae7edec2008-07-15 06:33:31 -04001752 int is_better = 0;
1753 int not_in_parent = !p->attached_by;
1754
Al Virobfbcf032008-07-27 06:31:22 +01001755 while ((next = is_branch_in(by, to)) != NULL) {
Al Viroae7edec2008-07-15 06:33:31 -04001756 if (by == q->attached_by)
1757 is_better = 1;
1758 if (to == p->attached_by)
1759 not_in_parent = 1;
1760 by = by->child;
Al Virobfbcf032008-07-27 06:31:22 +01001761 to = next->child;
Al Viroae7edec2008-07-15 06:33:31 -04001762 }
1763
1764 if (is_better && not_in_parent) {
1765 q->attached_by = by;
1766 q->attached_to = to;
1767 q->parent = p;
1768 }
1769}
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001772 * __register_sysctl_paths - register a sysctl hierarchy
1773 * @root: List of sysctl headers to register on
1774 * @namespaces: Data to compute which lists of sysctl entries are visible
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001775 * @path: The path to the directory the sysctl table is in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 * @table: the top-level table structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 *
1778 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001779 * array. A completely 0 filled entry terminates the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 *
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001781 * The members of the &struct ctl_table structure are used as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 *
1783 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1784 * must be unique within that level of sysctl
1785 *
1786 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1787 * enter a sysctl file
1788 *
1789 * data - a pointer to data for use by proc_handler
1790 *
1791 * maxlen - the maximum size in bytes of the data
1792 *
1793 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1794 *
1795 * child - a pointer to the child sysctl table if this entry is a directory, or
1796 * %NULL.
1797 *
1798 * proc_handler - the text handler routine (described below)
1799 *
1800 * strategy - the strategy routine (described below)
1801 *
1802 * de - for internal use by the sysctl routines
1803 *
1804 * extra1, extra2 - extra pointers usable by the proc handler routines
1805 *
1806 * Leaf nodes in the sysctl tree will be represented by a single file
1807 * under /proc; non-leaf nodes will be represented by directories.
1808 *
1809 * sysctl(2) can automatically manage read and write requests through
1810 * the sysctl table. The data and maxlen fields of the ctl_table
1811 * struct enable minimal validation of the values being written to be
1812 * performed, and the mode field allows minimal authentication.
1813 *
1814 * More sophisticated management can be enabled by the provision of a
1815 * strategy routine with the table entry. This will be called before
1816 * any automatic read or write of the data is performed.
1817 *
1818 * The strategy routine may return
1819 *
1820 * < 0 - Error occurred (error is passed to user process)
1821 *
1822 * 0 - OK - proceed with automatic read or write.
1823 *
1824 * > 0 - OK - read or write has been done by the strategy routine, so
1825 * return immediately.
1826 *
1827 * There must be a proc_handler routine for any terminal nodes
1828 * mirrored under /proc/sys (non-terminals are handled by a built-in
1829 * directory handler). Several default handlers are available to
1830 * cover common cases -
1831 *
1832 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1833 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1834 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1835 *
1836 * It is the handler's job to read the input buffer from user memory
1837 * and process it. The handler should return 0 on success.
1838 *
1839 * This routine returns %NULL on a failure to register, and a pointer
1840 * to the table header on success.
1841 */
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001842struct ctl_table_header *__register_sysctl_paths(
1843 struct ctl_table_root *root,
1844 struct nsproxy *namespaces,
1845 const struct ctl_path *path, struct ctl_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001847 struct ctl_table_header *header;
1848 struct ctl_table *new, **prevp;
1849 unsigned int n, npath;
Al Viroae7edec2008-07-15 06:33:31 -04001850 struct ctl_table_set *set;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001851
1852 /* Count the path components */
1853 for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath)
1854 ;
1855
1856 /*
1857 * For each path component, allocate a 2-element ctl_table array.
1858 * The first array element will be filled with the sysctl entry
1859 * for this, the second will be the sentinel (ctl_name == 0).
1860 *
1861 * We allocate everything in one go so that we don't have to
1862 * worry about freeing additional memory in unregister_sysctl_table.
1863 */
1864 header = kzalloc(sizeof(struct ctl_table_header) +
1865 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1866 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 return NULL;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001868
1869 new = (struct ctl_table *) (header + 1);
1870
1871 /* Now connect the dots */
1872 prevp = &header->ctl_table;
1873 for (n = 0; n < npath; ++n, ++path) {
1874 /* Copy the procname */
1875 new->procname = path->procname;
1876 new->ctl_name = path->ctl_name;
1877 new->mode = 0555;
1878
1879 *prevp = new;
1880 prevp = &new->child;
1881
1882 new += 2;
1883 }
1884 *prevp = table;
Eric W. Biederman23eb06d2007-11-30 23:52:10 +11001885 header->ctl_table_arg = table;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001886
1887 INIT_LIST_HEAD(&header->ctl_entry);
1888 header->used = 0;
1889 header->unregistering = NULL;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001890 header->root = root;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001891 sysctl_set_parent(NULL, header->ctl_table);
Al Virof7e6ced2008-07-15 01:44:23 -04001892 header->count = 1;
Holger Schurig88f458e2008-04-29 01:02:36 -07001893#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001894 if (sysctl_check_table(namespaces, header->ctl_table)) {
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001895 kfree(header);
Eric W. Biedermanfc6cd252007-10-18 03:05:54 -07001896 return NULL;
1897 }
Holger Schurig88f458e2008-04-29 01:02:36 -07001898#endif
Al Viro330d57f2005-11-04 10:18:40 +00001899 spin_lock(&sysctl_lock);
Al Viro73455092008-07-14 21:22:20 -04001900 header->set = lookup_header_set(root, namespaces);
Al Viroae7edec2008-07-15 06:33:31 -04001901 header->attached_by = header->ctl_table;
1902 header->attached_to = root_table;
1903 header->parent = &root_table_header;
1904 for (set = header->set; set; set = set->parent) {
1905 struct ctl_table_header *p;
1906 list_for_each_entry(p, &set->list, ctl_entry) {
1907 if (p->unregistering)
1908 continue;
1909 try_attach(p, header);
1910 }
1911 }
1912 header->parent->count++;
Al Viro73455092008-07-14 21:22:20 -04001913 list_add_tail(&header->ctl_entry, &header->set->list);
Al Viro330d57f2005-11-04 10:18:40 +00001914 spin_unlock(&sysctl_lock);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001915
1916 return header;
1917}
1918
1919/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001920 * register_sysctl_table_path - register a sysctl table hierarchy
1921 * @path: The path to the directory the sysctl table is in.
1922 * @table: the top-level table structure
1923 *
1924 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1925 * array. A completely 0 filled entry terminates the table.
1926 *
1927 * See __register_sysctl_paths for more details.
1928 */
1929struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1930 struct ctl_table *table)
1931{
1932 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1933 path, table);
1934}
1935
1936/**
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001937 * register_sysctl_table - register a sysctl table hierarchy
1938 * @table: the top-level table structure
1939 *
1940 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1941 * array. A completely 0 filled entry terminates the table.
1942 *
1943 * See register_sysctl_paths for more details.
1944 */
1945struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1946{
1947 static const struct ctl_path null_path[] = { {} };
1948
1949 return register_sysctl_paths(null_path, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950}
1951
1952/**
1953 * unregister_sysctl_table - unregister a sysctl table hierarchy
1954 * @header: the header returned from register_sysctl_table
1955 *
1956 * Unregisters the sysctl table and all children. proc entries may not
1957 * actually be removed until they are no longer used by anyone.
1958 */
1959void unregister_sysctl_table(struct ctl_table_header * header)
1960{
Al Viro330d57f2005-11-04 10:18:40 +00001961 might_sleep();
Pavel Emelyanovf1dad162007-12-04 23:45:24 -08001962
1963 if (header == NULL)
1964 return;
1965
Al Viro330d57f2005-11-04 10:18:40 +00001966 spin_lock(&sysctl_lock);
1967 start_unregistering(header);
Al Viroae7edec2008-07-15 06:33:31 -04001968 if (!--header->parent->count) {
1969 WARN_ON(1);
1970 kfree(header->parent);
1971 }
Al Virof7e6ced2008-07-15 01:44:23 -04001972 if (!--header->count)
1973 kfree(header);
Al Viro330d57f2005-11-04 10:18:40 +00001974 spin_unlock(&sysctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975}
1976
Al Viro9043476f2008-07-15 08:54:06 -04001977int sysctl_is_seen(struct ctl_table_header *p)
1978{
1979 struct ctl_table_set *set = p->set;
1980 int res;
1981 spin_lock(&sysctl_lock);
1982 if (p->unregistering)
1983 res = 0;
1984 else if (!set->is_seen)
1985 res = 1;
1986 else
1987 res = set->is_seen(set);
1988 spin_unlock(&sysctl_lock);
1989 return res;
1990}
1991
Al Viro73455092008-07-14 21:22:20 -04001992void setup_sysctl_set(struct ctl_table_set *p,
1993 struct ctl_table_set *parent,
1994 int (*is_seen)(struct ctl_table_set *))
1995{
1996 INIT_LIST_HEAD(&p->list);
1997 p->parent = parent ? parent : &sysctl_table_root.default_set;
1998 p->is_seen = is_seen;
1999}
2000
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002001#else /* !CONFIG_SYSCTL */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002002struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002003{
2004 return NULL;
2005}
2006
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002007struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
2008 struct ctl_table *table)
2009{
2010 return NULL;
2011}
2012
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002013void unregister_sysctl_table(struct ctl_table_header * table)
2014{
2015}
2016
Al Viro73455092008-07-14 21:22:20 -04002017void setup_sysctl_set(struct ctl_table_set *p,
2018 struct ctl_table_set *parent,
2019 int (*is_seen)(struct ctl_table_set *))
2020{
2021}
2022
Al Virof7e6ced2008-07-15 01:44:23 -04002023void sysctl_head_put(struct ctl_table_header *head)
2024{
2025}
2026
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002027#endif /* CONFIG_SYSCTL */
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029/*
2030 * /proc/sys support
2031 */
2032
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002033#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07002035static int _proc_do_string(void* data, int maxlen, int write,
2036 struct file *filp, void __user *buffer,
2037 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002038{
2039 size_t len;
2040 char __user *p;
2041 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002042
2043 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002044 *lenp = 0;
2045 return 0;
2046 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08002047
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002048 if (write) {
2049 len = 0;
2050 p = buffer;
2051 while (len < *lenp) {
2052 if (get_user(c, p++))
2053 return -EFAULT;
2054 if (c == 0 || c == '\n')
2055 break;
2056 len++;
2057 }
2058 if (len >= maxlen)
2059 len = maxlen-1;
2060 if(copy_from_user(data, buffer, len))
2061 return -EFAULT;
2062 ((char *) data)[len] = 0;
2063 *ppos += *lenp;
2064 } else {
2065 len = strlen(data);
2066 if (len > maxlen)
2067 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002068
2069 if (*ppos > len) {
2070 *lenp = 0;
2071 return 0;
2072 }
2073
2074 data += *ppos;
2075 len -= *ppos;
2076
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002077 if (len > *lenp)
2078 len = *lenp;
2079 if (len)
2080 if(copy_to_user(buffer, data, len))
2081 return -EFAULT;
2082 if (len < *lenp) {
2083 if(put_user('\n', ((char __user *) buffer) + len))
2084 return -EFAULT;
2085 len++;
2086 }
2087 *lenp = len;
2088 *ppos += len;
2089 }
2090 return 0;
2091}
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093/**
2094 * proc_dostring - read a string sysctl
2095 * @table: the sysctl table
2096 * @write: %TRUE if this is a write to the sysctl file
2097 * @filp: the file structure
2098 * @buffer: the user buffer
2099 * @lenp: the size of the user buffer
2100 * @ppos: file position
2101 *
2102 * Reads/writes a string from/to the user buffer. If the kernel
2103 * buffer provided is not large enough to hold the string, the
2104 * string is truncated. The copied string is %NULL-terminated.
2105 * If the string is being read by the user process, it is copied
2106 * and a newline '\n' is added. It is truncated if the buffer is
2107 * not large enough.
2108 *
2109 * Returns 0 on success.
2110 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002111int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 void __user *buffer, size_t *lenp, loff_t *ppos)
2113{
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002114 return _proc_do_string(table->data, table->maxlen, write, filp,
2115 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
2120 int *valp,
2121 int write, void *data)
2122{
2123 if (write) {
2124 *valp = *negp ? -*lvalp : *lvalp;
2125 } else {
2126 int val = *valp;
2127 if (val < 0) {
2128 *negp = -1;
2129 *lvalp = (unsigned long)-val;
2130 } else {
2131 *negp = 0;
2132 *lvalp = (unsigned long)val;
2133 }
2134 }
2135 return 0;
2136}
2137
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002138static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002139 int write, struct file *filp, void __user *buffer,
2140 size_t *lenp, loff_t *ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2142 int write, void *data),
2143 void *data)
2144{
2145#define TMPBUFLEN 21
2146 int *i, vleft, first=1, neg, val;
2147 unsigned long lval;
2148 size_t left, len;
2149
2150 char buf[TMPBUFLEN], *p;
2151 char __user *s = buffer;
2152
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002153 if (!tbl_data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 (*ppos && !write)) {
2155 *lenp = 0;
2156 return 0;
2157 }
2158
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002159 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 vleft = table->maxlen / sizeof(*i);
2161 left = *lenp;
2162
2163 if (!conv)
2164 conv = do_proc_dointvec_conv;
2165
2166 for (; left && vleft--; i++, first=0) {
2167 if (write) {
2168 while (left) {
2169 char c;
2170 if (get_user(c, s))
2171 return -EFAULT;
2172 if (!isspace(c))
2173 break;
2174 left--;
2175 s++;
2176 }
2177 if (!left)
2178 break;
2179 neg = 0;
2180 len = left;
2181 if (len > sizeof(buf) - 1)
2182 len = sizeof(buf) - 1;
2183 if (copy_from_user(buf, s, len))
2184 return -EFAULT;
2185 buf[len] = 0;
2186 p = buf;
2187 if (*p == '-' && left > 1) {
2188 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002189 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 }
2191 if (*p < '0' || *p > '9')
2192 break;
2193
2194 lval = simple_strtoul(p, &p, 0);
2195
2196 len = p-buf;
2197 if ((len < left) && *p && !isspace(*p))
2198 break;
2199 if (neg)
2200 val = -val;
2201 s += len;
2202 left -= len;
2203
2204 if (conv(&neg, &lval, i, 1, data))
2205 break;
2206 } else {
2207 p = buf;
2208 if (!first)
2209 *p++ = '\t';
2210
2211 if (conv(&neg, &lval, i, 0, data))
2212 break;
2213
2214 sprintf(p, "%s%lu", neg ? "-" : "", lval);
2215 len = strlen(buf);
2216 if (len > left)
2217 len = left;
2218 if(copy_to_user(s, buf, len))
2219 return -EFAULT;
2220 left -= len;
2221 s += len;
2222 }
2223 }
2224
2225 if (!write && !first && left) {
2226 if(put_user('\n', s))
2227 return -EFAULT;
2228 left--, s++;
2229 }
2230 if (write) {
2231 while (left) {
2232 char c;
2233 if (get_user(c, s++))
2234 return -EFAULT;
2235 if (!isspace(c))
2236 break;
2237 left--;
2238 }
2239 }
2240 if (write && first)
2241 return -EINVAL;
2242 *lenp -= left;
2243 *ppos += *lenp;
2244 return 0;
2245#undef TMPBUFLEN
2246}
2247
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002248static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002249 void __user *buffer, size_t *lenp, loff_t *ppos,
2250 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2251 int write, void *data),
2252 void *data)
2253{
2254 return __do_proc_dointvec(table->data, table, write, filp,
2255 buffer, lenp, ppos, conv, data);
2256}
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258/**
2259 * proc_dointvec - read a vector of integers
2260 * @table: the sysctl table
2261 * @write: %TRUE if this is a write to the sysctl file
2262 * @filp: the file structure
2263 * @buffer: the user buffer
2264 * @lenp: the size of the user buffer
2265 * @ppos: file position
2266 *
2267 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2268 * values from/to the user buffer, treated as an ASCII string.
2269 *
2270 * Returns 0 on success.
2271 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002272int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 void __user *buffer, size_t *lenp, loff_t *ppos)
2274{
2275 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2276 NULL,NULL);
2277}
2278
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002279/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002280 * Taint values can only be increased
2281 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002282 */
Andi Kleen25ddbb12008-10-15 22:01:41 -07002283static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002284 void __user *buffer, size_t *lenp, loff_t *ppos)
2285{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002286 struct ctl_table t;
2287 unsigned long tmptaint = get_taint();
2288 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002289
Bastian Blank91fcd412007-04-23 14:41:14 -07002290 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002291 return -EPERM;
2292
Andi Kleen25ddbb12008-10-15 22:01:41 -07002293 t = *table;
2294 t.data = &tmptaint;
2295 err = proc_doulongvec_minmax(&t, write, filp, buffer, lenp, ppos);
2296 if (err < 0)
2297 return err;
2298
2299 if (write) {
2300 /*
2301 * Poor man's atomic or. Not worth adding a primitive
2302 * to everyone's atomic.h for this
2303 */
2304 int i;
2305 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2306 if ((tmptaint >> i) & 1)
2307 add_taint(i);
2308 }
2309 }
2310
2311 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002312}
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314struct do_proc_dointvec_minmax_conv_param {
2315 int *min;
2316 int *max;
2317};
2318
2319static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2320 int *valp,
2321 int write, void *data)
2322{
2323 struct do_proc_dointvec_minmax_conv_param *param = data;
2324 if (write) {
2325 int val = *negp ? -*lvalp : *lvalp;
2326 if ((param->min && *param->min > val) ||
2327 (param->max && *param->max < val))
2328 return -EINVAL;
2329 *valp = val;
2330 } else {
2331 int val = *valp;
2332 if (val < 0) {
2333 *negp = -1;
2334 *lvalp = (unsigned long)-val;
2335 } else {
2336 *negp = 0;
2337 *lvalp = (unsigned long)val;
2338 }
2339 }
2340 return 0;
2341}
2342
2343/**
2344 * proc_dointvec_minmax - read a vector of integers with min/max values
2345 * @table: the sysctl table
2346 * @write: %TRUE if this is a write to the sysctl file
2347 * @filp: the file structure
2348 * @buffer: the user buffer
2349 * @lenp: the size of the user buffer
2350 * @ppos: file position
2351 *
2352 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2353 * values from/to the user buffer, treated as an ASCII string.
2354 *
2355 * This routine will ensure the values are within the range specified by
2356 * table->extra1 (min) and table->extra2 (max).
2357 *
2358 * Returns 0 on success.
2359 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002360int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 void __user *buffer, size_t *lenp, loff_t *ppos)
2362{
2363 struct do_proc_dointvec_minmax_conv_param param = {
2364 .min = (int *) table->extra1,
2365 .max = (int *) table->extra2,
2366 };
2367 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2368 do_proc_dointvec_minmax_conv, &param);
2369}
2370
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002371static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct file *filp,
2373 void __user *buffer,
2374 size_t *lenp, loff_t *ppos,
2375 unsigned long convmul,
2376 unsigned long convdiv)
2377{
2378#define TMPBUFLEN 21
2379 unsigned long *i, *min, *max, val;
2380 int vleft, first=1, neg;
2381 size_t len, left;
2382 char buf[TMPBUFLEN], *p;
2383 char __user *s = buffer;
2384
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002385 if (!data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 (*ppos && !write)) {
2387 *lenp = 0;
2388 return 0;
2389 }
2390
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002391 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 min = (unsigned long *) table->extra1;
2393 max = (unsigned long *) table->extra2;
2394 vleft = table->maxlen / sizeof(unsigned long);
2395 left = *lenp;
2396
2397 for (; left && vleft--; i++, min++, max++, first=0) {
2398 if (write) {
2399 while (left) {
2400 char c;
2401 if (get_user(c, s))
2402 return -EFAULT;
2403 if (!isspace(c))
2404 break;
2405 left--;
2406 s++;
2407 }
2408 if (!left)
2409 break;
2410 neg = 0;
2411 len = left;
2412 if (len > TMPBUFLEN-1)
2413 len = TMPBUFLEN-1;
2414 if (copy_from_user(buf, s, len))
2415 return -EFAULT;
2416 buf[len] = 0;
2417 p = buf;
2418 if (*p == '-' && left > 1) {
2419 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002420 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
2422 if (*p < '0' || *p > '9')
2423 break;
2424 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2425 len = p-buf;
2426 if ((len < left) && *p && !isspace(*p))
2427 break;
2428 if (neg)
2429 val = -val;
2430 s += len;
2431 left -= len;
2432
2433 if(neg)
2434 continue;
2435 if ((min && val < *min) || (max && val > *max))
2436 continue;
2437 *i = val;
2438 } else {
2439 p = buf;
2440 if (!first)
2441 *p++ = '\t';
2442 sprintf(p, "%lu", convdiv * (*i) / convmul);
2443 len = strlen(buf);
2444 if (len > left)
2445 len = left;
2446 if(copy_to_user(s, buf, len))
2447 return -EFAULT;
2448 left -= len;
2449 s += len;
2450 }
2451 }
2452
2453 if (!write && !first && left) {
2454 if(put_user('\n', s))
2455 return -EFAULT;
2456 left--, s++;
2457 }
2458 if (write) {
2459 while (left) {
2460 char c;
2461 if (get_user(c, s++))
2462 return -EFAULT;
2463 if (!isspace(c))
2464 break;
2465 left--;
2466 }
2467 }
2468 if (write && first)
2469 return -EINVAL;
2470 *lenp -= left;
2471 *ppos += *lenp;
2472 return 0;
2473#undef TMPBUFLEN
2474}
2475
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002476static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002477 struct file *filp,
2478 void __user *buffer,
2479 size_t *lenp, loff_t *ppos,
2480 unsigned long convmul,
2481 unsigned long convdiv)
2482{
2483 return __do_proc_doulongvec_minmax(table->data, table, write,
2484 filp, buffer, lenp, ppos, convmul, convdiv);
2485}
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487/**
2488 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2489 * @table: the sysctl table
2490 * @write: %TRUE if this is a write to the sysctl file
2491 * @filp: the file structure
2492 * @buffer: the user buffer
2493 * @lenp: the size of the user buffer
2494 * @ppos: file position
2495 *
2496 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2497 * values from/to the user buffer, treated as an ASCII string.
2498 *
2499 * This routine will ensure the values are within the range specified by
2500 * table->extra1 (min) and table->extra2 (max).
2501 *
2502 * Returns 0 on success.
2503 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002504int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 void __user *buffer, size_t *lenp, loff_t *ppos)
2506{
2507 return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
2508}
2509
2510/**
2511 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2512 * @table: the sysctl table
2513 * @write: %TRUE if this is a write to the sysctl file
2514 * @filp: the file structure
2515 * @buffer: the user buffer
2516 * @lenp: the size of the user buffer
2517 * @ppos: file position
2518 *
2519 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2520 * values from/to the user buffer, treated as an ASCII string. The values
2521 * are treated as milliseconds, and converted to jiffies when they are stored.
2522 *
2523 * This routine will ensure the values are within the range specified by
2524 * table->extra1 (min) and table->extra2 (max).
2525 *
2526 * Returns 0 on success.
2527 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002528int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 struct file *filp,
2530 void __user *buffer,
2531 size_t *lenp, loff_t *ppos)
2532{
2533 return do_proc_doulongvec_minmax(table, write, filp, buffer,
2534 lenp, ppos, HZ, 1000l);
2535}
2536
2537
2538static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2539 int *valp,
2540 int write, void *data)
2541{
2542 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002543 if (*lvalp > LONG_MAX / HZ)
2544 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2546 } else {
2547 int val = *valp;
2548 unsigned long lval;
2549 if (val < 0) {
2550 *negp = -1;
2551 lval = (unsigned long)-val;
2552 } else {
2553 *negp = 0;
2554 lval = (unsigned long)val;
2555 }
2556 *lvalp = lval / HZ;
2557 }
2558 return 0;
2559}
2560
2561static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2562 int *valp,
2563 int write, void *data)
2564{
2565 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002566 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2567 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2569 } else {
2570 int val = *valp;
2571 unsigned long lval;
2572 if (val < 0) {
2573 *negp = -1;
2574 lval = (unsigned long)-val;
2575 } else {
2576 *negp = 0;
2577 lval = (unsigned long)val;
2578 }
2579 *lvalp = jiffies_to_clock_t(lval);
2580 }
2581 return 0;
2582}
2583
2584static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2585 int *valp,
2586 int write, void *data)
2587{
2588 if (write) {
2589 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2590 } else {
2591 int val = *valp;
2592 unsigned long lval;
2593 if (val < 0) {
2594 *negp = -1;
2595 lval = (unsigned long)-val;
2596 } else {
2597 *negp = 0;
2598 lval = (unsigned long)val;
2599 }
2600 *lvalp = jiffies_to_msecs(lval);
2601 }
2602 return 0;
2603}
2604
2605/**
2606 * proc_dointvec_jiffies - read a vector of integers as seconds
2607 * @table: the sysctl table
2608 * @write: %TRUE if this is a write to the sysctl file
2609 * @filp: the file structure
2610 * @buffer: the user buffer
2611 * @lenp: the size of the user buffer
2612 * @ppos: file position
2613 *
2614 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2615 * values from/to the user buffer, treated as an ASCII string.
2616 * The values read are assumed to be in seconds, and are converted into
2617 * jiffies.
2618 *
2619 * Returns 0 on success.
2620 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002621int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 void __user *buffer, size_t *lenp, loff_t *ppos)
2623{
2624 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2625 do_proc_dointvec_jiffies_conv,NULL);
2626}
2627
2628/**
2629 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2630 * @table: the sysctl table
2631 * @write: %TRUE if this is a write to the sysctl file
2632 * @filp: the file structure
2633 * @buffer: the user buffer
2634 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002635 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 *
2637 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2638 * values from/to the user buffer, treated as an ASCII string.
2639 * The values read are assumed to be in 1/USER_HZ seconds, and
2640 * are converted into jiffies.
2641 *
2642 * Returns 0 on success.
2643 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002644int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 void __user *buffer, size_t *lenp, loff_t *ppos)
2646{
2647 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2648 do_proc_dointvec_userhz_jiffies_conv,NULL);
2649}
2650
2651/**
2652 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2653 * @table: the sysctl table
2654 * @write: %TRUE if this is a write to the sysctl file
2655 * @filp: the file structure
2656 * @buffer: the user buffer
2657 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002658 * @ppos: file position
2659 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 *
2661 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2662 * values from/to the user buffer, treated as an ASCII string.
2663 * The values read are assumed to be in 1/1000 seconds, and
2664 * are converted into jiffies.
2665 *
2666 * Returns 0 on success.
2667 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002668int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 void __user *buffer, size_t *lenp, loff_t *ppos)
2670{
2671 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2672 do_proc_dointvec_ms_jiffies_conv, NULL);
2673}
2674
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002675static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002676 void __user *buffer, size_t *lenp, loff_t *ppos)
2677{
2678 struct pid *new_pid;
2679 pid_t tmp;
2680 int r;
2681
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002682 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002683
2684 r = __do_proc_dointvec(&tmp, table, write, filp, buffer,
2685 lenp, ppos, NULL, NULL);
2686 if (r || !write)
2687 return r;
2688
2689 new_pid = find_get_pid(tmp);
2690 if (!new_pid)
2691 return -ESRCH;
2692
2693 put_pid(xchg(&cad_pid, new_pid));
2694 return 0;
2695}
2696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697#else /* CONFIG_PROC_FS */
2698
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002699int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 void __user *buffer, size_t *lenp, loff_t *ppos)
2701{
2702 return -ENOSYS;
2703}
2704
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002705int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 void __user *buffer, size_t *lenp, loff_t *ppos)
2707{
2708 return -ENOSYS;
2709}
2710
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002711int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 void __user *buffer, size_t *lenp, loff_t *ppos)
2713{
2714 return -ENOSYS;
2715}
2716
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002717int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 void __user *buffer, size_t *lenp, loff_t *ppos)
2719{
2720 return -ENOSYS;
2721}
2722
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002723int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 void __user *buffer, size_t *lenp, loff_t *ppos)
2725{
2726 return -ENOSYS;
2727}
2728
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002729int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 void __user *buffer, size_t *lenp, loff_t *ppos)
2731{
2732 return -ENOSYS;
2733}
2734
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002735int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 void __user *buffer, size_t *lenp, loff_t *ppos)
2737{
2738 return -ENOSYS;
2739}
2740
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002741int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 struct file *filp,
2743 void __user *buffer,
2744 size_t *lenp, loff_t *ppos)
2745{
2746 return -ENOSYS;
2747}
2748
2749
2750#endif /* CONFIG_PROC_FS */
2751
2752
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002753#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754/*
2755 * General sysctl support routines
2756 */
2757
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002758/* The generic sysctl data routine (used if no strategy routine supplied) */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002759int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002760 void __user *oldval, size_t __user *oldlenp,
2761 void __user *newval, size_t newlen)
2762{
2763 size_t len;
2764
2765 /* Get out of I don't have a variable */
2766 if (!table->data || !table->maxlen)
2767 return -ENOTDIR;
2768
2769 if (oldval && oldlenp) {
2770 if (get_user(len, oldlenp))
2771 return -EFAULT;
2772 if (len) {
2773 if (len > table->maxlen)
2774 len = table->maxlen;
2775 if (copy_to_user(oldval, table->data, len))
2776 return -EFAULT;
2777 if (put_user(len, oldlenp))
2778 return -EFAULT;
2779 }
2780 }
2781
2782 if (newval && newlen) {
2783 if (newlen > table->maxlen)
2784 newlen = table->maxlen;
2785
2786 if (copy_from_user(table->data, newval, newlen))
2787 return -EFAULT;
2788 }
2789 return 1;
2790}
2791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792/* The generic string strategy routine: */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002793int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002795 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 if (!table->data || !table->maxlen)
2798 return -ENOTDIR;
2799
2800 if (oldval && oldlenp) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002801 size_t bufsize;
2802 if (get_user(bufsize, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002804 if (bufsize) {
2805 size_t len = strlen(table->data), copied;
2806
2807 /* This shouldn't trigger for a well-formed sysctl */
2808 if (len > table->maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 len = table->maxlen;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002810
2811 /* Copy up to a max of bufsize-1 bytes of the string */
2812 copied = (len >= bufsize) ? bufsize - 1 : len;
2813
2814 if (copy_to_user(oldval, table->data, copied) ||
2815 put_user(0, (char __user *)(oldval + copied)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002817 if (put_user(len, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 return -EFAULT;
2819 }
2820 }
2821 if (newval && newlen) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002822 size_t len = newlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (len > table->maxlen)
2824 len = table->maxlen;
2825 if(copy_from_user(table->data, newval, len))
2826 return -EFAULT;
2827 if (len == table->maxlen)
2828 len--;
2829 ((char *) table->data)[len] = 0;
2830 }
Yi Yang82c9df82005-12-30 16:37:10 +08002831 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}
2833
2834/*
2835 * This function makes sure that all of the integers in the vector
2836 * are between the minimum and maximum values given in the arrays
2837 * table->extra1 and table->extra2, respectively.
2838 */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002839int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002841 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843
2844 if (newval && newlen) {
2845 int __user *vec = (int __user *) newval;
2846 int *min = (int *) table->extra1;
2847 int *max = (int *) table->extra2;
2848 size_t length;
2849 int i;
2850
2851 if (newlen % sizeof(int) != 0)
2852 return -EINVAL;
2853
2854 if (!table->extra1 && !table->extra2)
2855 return 0;
2856
2857 if (newlen > table->maxlen)
2858 newlen = table->maxlen;
2859 length = newlen / sizeof(int);
2860
2861 for (i = 0; i < length; i++) {
2862 int value;
2863 if (get_user(value, vec + i))
2864 return -EFAULT;
2865 if (min && value < min[i])
2866 return -EINVAL;
2867 if (max && value > max[i])
2868 return -EINVAL;
2869 }
2870 }
2871 return 0;
2872}
2873
2874/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002875int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002877 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002879 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002881
2882 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002884 if (olen) {
2885 int val;
2886
2887 if (olen < sizeof(int))
2888 return -EINVAL;
2889
2890 val = *(int *)(table->data) / HZ;
2891 if (put_user(val, (int __user *)oldval))
2892 return -EFAULT;
2893 if (put_user(sizeof(int), oldlenp))
2894 return -EFAULT;
2895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 }
2897 if (newval && newlen) {
2898 int new;
2899 if (newlen != sizeof(int))
2900 return -EINVAL;
2901 if (get_user(new, (int __user *)newval))
2902 return -EFAULT;
2903 *(int *)(table->data) = new*HZ;
2904 }
2905 return 1;
2906}
2907
2908/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002909int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002911 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002913 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002915
2916 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002918 if (olen) {
2919 int val;
2920
2921 if (olen < sizeof(int))
2922 return -EINVAL;
2923
2924 val = jiffies_to_msecs(*(int *)(table->data));
2925 if (put_user(val, (int __user *)oldval))
2926 return -EFAULT;
2927 if (put_user(sizeof(int), oldlenp))
2928 return -EFAULT;
2929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931 if (newval && newlen) {
2932 int new;
2933 if (newlen != sizeof(int))
2934 return -EINVAL;
2935 if (get_user(new, (int __user *)newval))
2936 return -EFAULT;
2937 *(int *)(table->data) = msecs_to_jiffies(new);
2938 }
2939 return 1;
2940}
2941
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002942
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002943
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002944#else /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946
2947asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
2948{
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002949 struct __sysctl_args tmp;
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002950 int error;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002951
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002952 if (copy_from_user(&tmp, args, sizeof(tmp)))
2953 return -EFAULT;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002954
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002955 error = deprecated_sysctl_warning(&tmp);
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002956
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002957 /* If no error reading the parameters then just -ENOSYS ... */
2958 if (!error)
2959 error = -ENOSYS;
2960
2961 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002964int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002965 void __user *oldval, size_t __user *oldlenp,
2966 void __user *newval, size_t newlen)
2967{
2968 return -ENOSYS;
2969}
2970
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002971int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002973 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
2975 return -ENOSYS;
2976}
2977
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002978int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002980 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
2982 return -ENOSYS;
2983}
2984
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002985int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002987 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988{
2989 return -ENOSYS;
2990}
2991
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002992int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002994 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 return -ENOSYS;
2997}
2998
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002999#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003001static int deprecated_sysctl_warning(struct __sysctl_args *args)
3002{
3003 static int msg_count;
3004 int name[CTL_MAXNAME];
3005 int i;
3006
Tetsuo Handa6fc48af2007-11-14 16:58:38 -08003007 /* Check args->nlen. */
3008 if (args->nlen < 0 || args->nlen > CTL_MAXNAME)
3009 return -ENOTDIR;
3010
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003011 /* Read in the sysctl name for better debug message logging */
3012 for (i = 0; i < args->nlen; i++)
3013 if (get_user(name[i], args->name + i))
3014 return -EFAULT;
3015
3016 /* Ignore accesses to kernel.version */
3017 if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION))
3018 return 0;
3019
3020 if (msg_count < 5) {
3021 msg_count++;
3022 printk(KERN_INFO
3023 "warning: process `%s' used the deprecated sysctl "
3024 "system call with ", current->comm);
3025 for (i = 0; i < args->nlen; i++)
3026 printk("%d.", name[i]);
3027 printk("\n");
3028 }
3029 return 0;
3030}
3031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032/*
3033 * No sense putting this after each symbol definition, twice,
3034 * exception granted :-)
3035 */
3036EXPORT_SYMBOL(proc_dointvec);
3037EXPORT_SYMBOL(proc_dointvec_jiffies);
3038EXPORT_SYMBOL(proc_dointvec_minmax);
3039EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3040EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3041EXPORT_SYMBOL(proc_dostring);
3042EXPORT_SYMBOL(proc_doulongvec_minmax);
3043EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3044EXPORT_SYMBOL(register_sysctl_table);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11003045EXPORT_SYMBOL(register_sysctl_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046EXPORT_SYMBOL(sysctl_intvec);
3047EXPORT_SYMBOL(sysctl_jiffies);
3048EXPORT_SYMBOL(sysctl_ms_jiffies);
3049EXPORT_SYMBOL(sysctl_string);
Eric W. Biederman49a0c452007-10-18 03:05:23 -07003050EXPORT_SYMBOL(sysctl_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051EXPORT_SYMBOL(unregister_sysctl_table);