blob: fe47133472758853b039c47ac9390e5eadd34bed [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;
Kees Cook5096add2007-05-08 00:26:04 -070083extern int maps_protect;
Arjan van de Ven97455122008-01-25 21:08:34 +010084extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -040085extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul E. McKenney31a72bc2008-06-18 09:26:49 -070086#ifdef CONFIG_RCU_TORTURE_TEST
87extern int rcutorture_runnable;
88#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070090/* Constants used for minimum and maximum */
Ingo Molnar1c4cd6d2008-05-12 21:21:14 +020091#if defined(CONFIG_HIGHMEM) || defined(CONFIG_DETECT_SOFTLOCKUP)
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070092static int one = 1;
Bron Gondwana195cf4532008-02-04 22:29:20 -080093#endif
94
95#ifdef CONFIG_DETECT_SOFTLOCKUP
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070096static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +020097static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070098#endif
99
100#ifdef CONFIG_MMU
101static int two = 2;
102#endif
103
104static int zero;
105static int one_hundred = 100;
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
108static int maxolduid = 65535;
109static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800110static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112static int ngroups_max = NGROUPS_MAX;
113
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200114#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115extern char modprobe_path[];
116#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#ifdef CONFIG_CHR_DEV_SG
118extern int sg_big_buff;
119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121#ifdef __sparc__
122extern char reboot_command [];
123extern int stop_a_enabled;
124extern int scons_pwroff;
125#endif
126
127#ifdef __hppa__
128extern int pwrsw_enabled;
129extern int unaligned_enabled;
130#endif
131
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800132#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#ifdef CONFIG_MATHEMU
134extern int sysctl_ieee_emulation_warnings;
135#endif
136extern int sysctl_userprocess_debug;
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700137extern int spin_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#ifdef CONFIG_BSD_PROCESS_ACCT
141extern int acct_parm[];
142#endif
143
Jes Sorensend2b176e2006-02-28 09:42:23 -0800144#ifdef CONFIG_IA64
145extern int no_unaligned_warning;
146#endif
147
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700148#ifdef CONFIG_RT_MUTEXES
149extern int max_lock_depth;
150#endif
151
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700152#ifdef CONFIG_PROC_SYSCTL
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700153static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700154 void __user *buffer, size_t *lenp, loff_t *ppos);
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700155static int proc_dointvec_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800156 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700157#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700158
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700159static struct ctl_table root_table[];
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100160static struct ctl_table_root sysctl_table_root;
161static struct ctl_table_header root_table_header = {
162 .ctl_table = root_table,
Al Viro73455092008-07-14 21:22:20 -0400163 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100164 .root = &sysctl_table_root,
Al Viro73455092008-07-14 21:22:20 -0400165 .set = &sysctl_table_root.default_set,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100166};
167static struct ctl_table_root sysctl_table_root = {
168 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
Al Viro73455092008-07-14 21:22:20 -0400169 .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100170};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700172static struct ctl_table kern_table[];
173static struct ctl_table vm_table[];
174static struct ctl_table fs_table[];
175static struct ctl_table debug_table[];
176static struct ctl_table dev_table[];
177extern struct ctl_table random_table[];
Amy Griffis2d9048e2006-06-01 13:10:59 -0700178#ifdef CONFIG_INOTIFY_USER
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700179extern struct ctl_table inotify_table[];
Robert Love0399cb02005-07-13 12:38:18 -0400180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
183int sysctl_legacy_va_layout;
184#endif
185
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700186extern int prove_locking;
187extern int lock_stat;
Eric W. Biederman9bc9a6b2006-12-08 02:39:56 -0800188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* The default sysctl tables: */
190
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700191static struct ctl_table root_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 {
193 .ctl_name = CTL_KERN,
194 .procname = "kernel",
195 .mode = 0555,
196 .child = kern_table,
197 },
198 {
199 .ctl_name = CTL_VM,
200 .procname = "vm",
201 .mode = 0555,
202 .child = vm_table,
203 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 .ctl_name = CTL_FS,
206 .procname = "fs",
207 .mode = 0555,
208 .child = fs_table,
209 },
210 {
211 .ctl_name = CTL_DEBUG,
212 .procname = "debug",
213 .mode = 0555,
214 .child = debug_table,
215 },
216 {
217 .ctl_name = CTL_DEV,
218 .procname = "dev",
219 .mode = 0555,
220 .child = dev_table,
221 },
Andrew Morton2be7fe02007-07-15 23:41:21 -0700222/*
223 * NOTE: do not add new entries to this table unless you have read
224 * Documentation/sysctl/ctl_unnumbered.txt
225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 { .ctl_name = 0 }
227};
228
Ingo Molnar77e54a12007-07-09 18:52:00 +0200229#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100230static int min_sched_granularity_ns = 100000; /* 100 usecs */
231static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
232static int min_wakeup_granularity_ns; /* 0 usecs */
233static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200234#endif
235
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700236static struct ctl_table kern_table[] = {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200237#ifdef CONFIG_SCHED_DEBUG
238 {
239 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100240 .procname = "sched_min_granularity_ns",
241 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200242 .maxlen = sizeof(unsigned int),
243 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100244 .proc_handler = &sched_nr_latency_handler,
245 .strategy = &sysctl_intvec,
246 .extra1 = &min_sched_granularity_ns,
247 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200248 },
249 {
250 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra21805082007-08-25 18:41:53 +0200251 .procname = "sched_latency_ns",
252 .data = &sysctl_sched_latency,
253 .maxlen = sizeof(unsigned int),
254 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100255 .proc_handler = &sched_nr_latency_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200256 .strategy = &sysctl_intvec,
257 .extra1 = &min_sched_granularity_ns,
258 .extra2 = &max_sched_granularity_ns,
259 },
260 {
261 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200262 .procname = "sched_wakeup_granularity_ns",
263 .data = &sysctl_sched_wakeup_granularity,
264 .maxlen = sizeof(unsigned int),
265 .mode = 0644,
266 .proc_handler = &proc_dointvec_minmax,
267 .strategy = &sysctl_intvec,
268 .extra1 = &min_wakeup_granularity_ns,
269 .extra2 = &max_wakeup_granularity_ns,
270 },
271 {
272 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200273 .procname = "sched_shares_ratelimit",
274 .data = &sysctl_sched_shares_ratelimit,
275 .maxlen = sizeof(unsigned int),
276 .mode = 0644,
277 .proc_handler = &proc_dointvec,
278 },
279 {
280 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200281 .procname = "sched_child_runs_first",
282 .data = &sysctl_sched_child_runs_first,
283 .maxlen = sizeof(unsigned int),
284 .mode = 0644,
285 .proc_handler = &proc_dointvec,
286 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200287 {
288 .ctl_name = CTL_UNNUMBERED,
289 .procname = "sched_features",
290 .data = &sysctl_sched_features,
291 .maxlen = sizeof(unsigned int),
292 .mode = 0644,
293 .proc_handler = &proc_dointvec,
294 },
Ingo Molnarda84d962007-10-15 17:00:18 +0200295 {
296 .ctl_name = CTL_UNNUMBERED,
297 .procname = "sched_migration_cost",
298 .data = &sysctl_sched_migration_cost,
299 .maxlen = sizeof(unsigned int),
300 .mode = 0644,
301 .proc_handler = &proc_dointvec,
302 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100303 {
304 .ctl_name = CTL_UNNUMBERED,
305 .procname = "sched_nr_migrate",
306 .data = &sysctl_sched_nr_migrate,
307 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100308 .mode = 0644,
309 .proc_handler = &proc_dointvec,
310 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200311#endif
Ingo Molnar1799e352007-09-19 23:34:46 +0200312 {
313 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100314 .procname = "sched_rt_period_us",
315 .data = &sysctl_sched_rt_period,
316 .maxlen = sizeof(unsigned int),
317 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200318 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100319 },
320 {
321 .ctl_name = CTL_UNNUMBERED,
322 .procname = "sched_rt_runtime_us",
323 .data = &sysctl_sched_rt_runtime,
324 .maxlen = sizeof(int),
325 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200326 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100327 },
328 {
329 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar1799e352007-09-19 23:34:46 +0200330 .procname = "sched_compat_yield",
331 .data = &sysctl_sched_compat_yield,
332 .maxlen = sizeof(unsigned int),
333 .mode = 0644,
334 .proc_handler = &proc_dointvec,
335 },
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700336#ifdef CONFIG_PROVE_LOCKING
337 {
338 .ctl_name = CTL_UNNUMBERED,
339 .procname = "prove_locking",
340 .data = &prove_locking,
341 .maxlen = sizeof(int),
342 .mode = 0644,
343 .proc_handler = &proc_dointvec,
344 },
345#endif
346#ifdef CONFIG_LOCK_STAT
347 {
348 .ctl_name = CTL_UNNUMBERED,
349 .procname = "lock_stat",
350 .data = &lock_stat,
351 .maxlen = sizeof(int),
352 .mode = 0644,
353 .proc_handler = &proc_dointvec,
354 },
355#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200356 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 .ctl_name = KERN_PANIC,
358 .procname = "panic",
359 .data = &panic_timeout,
360 .maxlen = sizeof(int),
361 .mode = 0644,
362 .proc_handler = &proc_dointvec,
363 },
364 {
365 .ctl_name = KERN_CORE_USES_PID,
366 .procname = "core_uses_pid",
367 .data = &core_uses_pid,
368 .maxlen = sizeof(int),
369 .mode = 0644,
370 .proc_handler = &proc_dointvec,
371 },
372 {
373 .ctl_name = KERN_CORE_PATTERN,
374 .procname = "core_pattern",
375 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700376 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 .mode = 0644,
378 .proc_handler = &proc_dostring,
379 .strategy = &sysctl_string,
380 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800381#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 .procname = "tainted",
384 .data = &tainted,
385 .maxlen = sizeof(int),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800386 .mode = 0644,
387 .proc_handler = &proc_dointvec_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800389#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100390#ifdef CONFIG_LATENCYTOP
391 {
392 .procname = "latencytop",
393 .data = &latencytop_enabled,
394 .maxlen = sizeof(int),
395 .mode = 0644,
396 .proc_handler = &proc_dointvec,
397 },
398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399#ifdef CONFIG_BLK_DEV_INITRD
400 {
401 .ctl_name = KERN_REALROOTDEV,
402 .procname = "real-root-dev",
403 .data = &real_root_dev,
404 .maxlen = sizeof(int),
405 .mode = 0644,
406 .proc_handler = &proc_dointvec,
407 },
408#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700409 {
410 .ctl_name = CTL_UNNUMBERED,
411 .procname = "print-fatal-signals",
412 .data = &print_fatal_signals,
413 .maxlen = sizeof(int),
414 .mode = 0644,
415 .proc_handler = &proc_dointvec,
416 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#ifdef __sparc__
418 {
419 .ctl_name = KERN_SPARC_REBOOT,
420 .procname = "reboot-cmd",
421 .data = reboot_command,
422 .maxlen = 256,
423 .mode = 0644,
424 .proc_handler = &proc_dostring,
425 .strategy = &sysctl_string,
426 },
427 {
428 .ctl_name = KERN_SPARC_STOP_A,
429 .procname = "stop-a",
430 .data = &stop_a_enabled,
431 .maxlen = sizeof (int),
432 .mode = 0644,
433 .proc_handler = &proc_dointvec,
434 },
435 {
436 .ctl_name = KERN_SPARC_SCONS_PWROFF,
437 .procname = "scons-poweroff",
438 .data = &scons_pwroff,
439 .maxlen = sizeof (int),
440 .mode = 0644,
441 .proc_handler = &proc_dointvec,
442 },
443#endif
444#ifdef __hppa__
445 {
446 .ctl_name = KERN_HPPA_PWRSW,
447 .procname = "soft-power",
448 .data = &pwrsw_enabled,
449 .maxlen = sizeof (int),
450 .mode = 0644,
451 .proc_handler = &proc_dointvec,
452 },
453 {
454 .ctl_name = KERN_HPPA_UNALIGNED,
455 .procname = "unaligned-trap",
456 .data = &unaligned_enabled,
457 .maxlen = sizeof (int),
458 .mode = 0644,
459 .proc_handler = &proc_dointvec,
460 },
461#endif
462 {
463 .ctl_name = KERN_CTLALTDEL,
464 .procname = "ctrl-alt-del",
465 .data = &C_A_D,
466 .maxlen = sizeof(int),
467 .mode = 0644,
468 .proc_handler = &proc_dointvec,
469 },
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200470#ifdef CONFIG_FTRACE
471 {
472 .ctl_name = CTL_UNNUMBERED,
473 .procname = "ftrace_enabled",
474 .data = &ftrace_enabled,
475 .maxlen = sizeof(int),
476 .mode = 0644,
477 .proc_handler = &ftrace_enable_sysctl,
478 },
479#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200480#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 {
482 .ctl_name = KERN_MODPROBE,
483 .procname = "modprobe",
484 .data = &modprobe_path,
485 .maxlen = KMOD_PATH_LEN,
486 .mode = 0644,
487 .proc_handler = &proc_dostring,
488 .strategy = &sysctl_string,
489 },
490#endif
Andrew Morton57ae2502006-06-23 02:05:47 -0700491#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 {
493 .ctl_name = KERN_HOTPLUG,
494 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100495 .data = &uevent_helper,
496 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .mode = 0644,
498 .proc_handler = &proc_dostring,
499 .strategy = &sysctl_string,
500 },
501#endif
502#ifdef CONFIG_CHR_DEV_SG
503 {
504 .ctl_name = KERN_SG_BIG_BUFF,
505 .procname = "sg-big-buff",
506 .data = &sg_big_buff,
507 .maxlen = sizeof (int),
508 .mode = 0444,
509 .proc_handler = &proc_dointvec,
510 },
511#endif
512#ifdef CONFIG_BSD_PROCESS_ACCT
513 {
514 .ctl_name = KERN_ACCT,
515 .procname = "acct",
516 .data = &acct_parm,
517 .maxlen = 3*sizeof(int),
518 .mode = 0644,
519 .proc_handler = &proc_dointvec,
520 },
521#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522#ifdef CONFIG_MAGIC_SYSRQ
523 {
524 .ctl_name = KERN_SYSRQ,
525 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800526 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 .maxlen = sizeof (int),
528 .mode = 0644,
529 .proc_handler = &proc_dointvec,
530 },
531#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700532#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700535 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 .maxlen = sizeof (int),
537 .mode = 0600,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700538 .proc_handler = &proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700540#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 {
542 .ctl_name = KERN_MAX_THREADS,
543 .procname = "threads-max",
544 .data = &max_threads,
545 .maxlen = sizeof(int),
546 .mode = 0644,
547 .proc_handler = &proc_dointvec,
548 },
549 {
550 .ctl_name = KERN_RANDOM,
551 .procname = "random",
552 .mode = 0555,
553 .child = random_table,
554 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 {
556 .ctl_name = KERN_OVERFLOWUID,
557 .procname = "overflowuid",
558 .data = &overflowuid,
559 .maxlen = sizeof(int),
560 .mode = 0644,
561 .proc_handler = &proc_dointvec_minmax,
562 .strategy = &sysctl_intvec,
563 .extra1 = &minolduid,
564 .extra2 = &maxolduid,
565 },
566 {
567 .ctl_name = KERN_OVERFLOWGID,
568 .procname = "overflowgid",
569 .data = &overflowgid,
570 .maxlen = sizeof(int),
571 .mode = 0644,
572 .proc_handler = &proc_dointvec_minmax,
573 .strategy = &sysctl_intvec,
574 .extra1 = &minolduid,
575 .extra2 = &maxolduid,
576 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800577#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578#ifdef CONFIG_MATHEMU
579 {
580 .ctl_name = KERN_IEEE_EMULATION_WARNINGS,
581 .procname = "ieee_emulation_warnings",
582 .data = &sysctl_ieee_emulation_warnings,
583 .maxlen = sizeof(int),
584 .mode = 0644,
585 .proc_handler = &proc_dointvec,
586 },
587#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 {
589 .ctl_name = KERN_S390_USER_DEBUG_LOGGING,
590 .procname = "userprocess_debug",
591 .data = &sysctl_userprocess_debug,
592 .maxlen = sizeof(int),
593 .mode = 0644,
594 .proc_handler = &proc_dointvec,
595 },
596#endif
597 {
598 .ctl_name = KERN_PIDMAX,
599 .procname = "pid_max",
600 .data = &pid_max,
601 .maxlen = sizeof (int),
602 .mode = 0644,
603 .proc_handler = &proc_dointvec_minmax,
604 .strategy = sysctl_intvec,
605 .extra1 = &pid_max_min,
606 .extra2 = &pid_max_max,
607 },
608 {
609 .ctl_name = KERN_PANIC_ON_OOPS,
610 .procname = "panic_on_oops",
611 .data = &panic_on_oops,
612 .maxlen = sizeof(int),
613 .mode = 0644,
614 .proc_handler = &proc_dointvec,
615 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800616#if defined CONFIG_PRINTK
617 {
618 .ctl_name = KERN_PRINTK,
619 .procname = "printk",
620 .data = &console_loglevel,
621 .maxlen = 4*sizeof(int),
622 .mode = 0644,
623 .proc_handler = &proc_dointvec,
624 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 {
626 .ctl_name = KERN_PRINTK_RATELIMIT,
627 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700628 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 .maxlen = sizeof(int),
630 .mode = 0644,
631 .proc_handler = &proc_dointvec_jiffies,
632 .strategy = &sysctl_jiffies,
633 },
634 {
635 .ctl_name = KERN_PRINTK_RATELIMIT_BURST,
636 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700637 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 .maxlen = sizeof(int),
639 .mode = 0644,
640 .proc_handler = &proc_dointvec,
641 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800642#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 {
644 .ctl_name = KERN_NGROUPS_MAX,
645 .procname = "ngroups_max",
646 .data = &ngroups_max,
647 .maxlen = sizeof (int),
648 .mode = 0444,
649 .proc_handler = &proc_dointvec,
650 },
651#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
652 {
653 .ctl_name = KERN_UNKNOWN_NMI_PANIC,
654 .procname = "unknown_nmi_panic",
655 .data = &unknown_nmi_panic,
656 .maxlen = sizeof (int),
657 .mode = 0644,
Don Zickus2fbe7b22006-09-26 10:52:27 +0200658 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 },
Don Zickus407984f2006-09-26 10:52:27 +0200660 {
Don Zickus407984f2006-09-26 10:52:27 +0200661 .procname = "nmi_watchdog",
662 .data = &nmi_watchdog_enabled,
663 .maxlen = sizeof (int),
664 .mode = 0644,
665 .proc_handler = &proc_nmi_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 },
667#endif
668#if defined(CONFIG_X86)
669 {
Don Zickus8da5add2006-09-26 10:52:27 +0200670 .ctl_name = KERN_PANIC_ON_NMI,
671 .procname = "panic_on_unrecovered_nmi",
672 .data = &panic_on_unrecovered_nmi,
673 .maxlen = sizeof(int),
674 .mode = 0644,
675 .proc_handler = &proc_dointvec,
676 },
677 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .ctl_name = KERN_BOOTLOADER_TYPE,
679 .procname = "bootloader_type",
680 .data = &bootloader_type,
681 .maxlen = sizeof (int),
682 .mode = 0444,
683 .proc_handler = &proc_dointvec,
684 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100685 {
686 .ctl_name = CTL_UNNUMBERED,
687 .procname = "kstack_depth_to_print",
688 .data = &kstack_depth_to_print,
689 .maxlen = sizeof(int),
690 .mode = 0644,
691 .proc_handler = &proc_dointvec,
692 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100693 {
694 .ctl_name = CTL_UNNUMBERED,
695 .procname = "io_delay_type",
696 .data = &io_delay_type,
697 .maxlen = sizeof(int),
698 .mode = 0644,
699 .proc_handler = &proc_dointvec,
700 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800702#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 {
704 .ctl_name = KERN_RANDOMIZE,
705 .procname = "randomize_va_space",
706 .data = &randomize_va_space,
707 .maxlen = sizeof(int),
708 .mode = 0644,
709 .proc_handler = &proc_dointvec,
710 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800711#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800712#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700713 {
714 .ctl_name = KERN_SPIN_RETRY,
715 .procname = "spin_retry",
716 .data = &spin_retry,
717 .maxlen = sizeof (int),
718 .mode = 0644,
719 .proc_handler = &proc_dointvec,
720 },
721#endif
Len Brown673d5b42007-07-28 03:33:16 -0400722#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800723 {
Pavel Machekc255d842006-02-20 18:27:58 -0800724 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700725 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800726 .maxlen = sizeof (unsigned long),
727 .mode = 0644,
Stefan Seyfried7f99f062006-03-02 02:54:34 -0800728 .proc_handler = &proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800729 },
730#endif
Jes Sorensend2b176e2006-02-28 09:42:23 -0800731#ifdef CONFIG_IA64
732 {
733 .ctl_name = KERN_IA64_UNALIGNED,
734 .procname = "ignore-unaligned-usertrap",
735 .data = &no_unaligned_warning,
736 .maxlen = sizeof (int),
737 .mode = 0644,
738 .proc_handler = &proc_dointvec,
739 },
740#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700741#ifdef CONFIG_DETECT_SOFTLOCKUP
742 {
743 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200744 .procname = "softlockup_panic",
745 .data = &softlockup_panic,
746 .maxlen = sizeof(int),
747 .mode = 0644,
Hiroshi Shimamoto4dca10a2008-07-07 18:37:04 -0700748 .proc_handler = &proc_dointvec_minmax,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200749 .strategy = &sysctl_intvec,
750 .extra1 = &zero,
751 .extra2 = &one,
752 },
753 {
754 .ctl_name = CTL_UNNUMBERED,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700755 .procname = "softlockup_thresh",
756 .data = &softlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200757 .maxlen = sizeof(int),
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700758 .mode = 0644,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200759 .proc_handler = &proc_dointvec_minmax,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700760 .strategy = &sysctl_intvec,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200761 .extra1 = &neg_one,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700762 .extra2 = &sixty,
763 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100764 {
765 .ctl_name = CTL_UNNUMBERED,
766 .procname = "hung_task_check_count",
767 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100768 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100769 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100770 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100771 .strategy = &sysctl_intvec,
772 },
773 {
774 .ctl_name = CTL_UNNUMBERED,
775 .procname = "hung_task_timeout_secs",
776 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100777 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100778 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100779 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100780 .strategy = &sysctl_intvec,
781 },
782 {
783 .ctl_name = CTL_UNNUMBERED,
784 .procname = "hung_task_warnings",
785 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100786 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100787 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100788 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100789 .strategy = &sysctl_intvec,
790 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700791#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200792#ifdef CONFIG_COMPAT
793 {
794 .ctl_name = KERN_COMPAT_LOG,
795 .procname = "compat-log",
796 .data = &compat_log,
797 .maxlen = sizeof (int),
798 .mode = 0644,
799 .proc_handler = &proc_dointvec,
800 },
801#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700802#ifdef CONFIG_RT_MUTEXES
803 {
804 .ctl_name = KERN_MAX_LOCK_DEPTH,
805 .procname = "max_lock_depth",
806 .data = &max_lock_depth,
807 .maxlen = sizeof(int),
808 .mode = 0644,
809 .proc_handler = &proc_dointvec,
810 },
811#endif
Kees Cook5096add2007-05-08 00:26:04 -0700812#ifdef CONFIG_PROC_FS
813 {
814 .ctl_name = CTL_UNNUMBERED,
815 .procname = "maps_protect",
816 .data = &maps_protect,
817 .maxlen = sizeof(int),
818 .mode = 0644,
819 .proc_handler = &proc_dointvec,
820 },
821#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700822 {
823 .ctl_name = CTL_UNNUMBERED,
824 .procname = "poweroff_cmd",
825 .data = &poweroff_cmd,
826 .maxlen = POWEROFF_CMD_PATH_LEN,
827 .mode = 0644,
828 .proc_handler = &proc_dostring,
829 .strategy = &sysctl_string,
830 },
David Howells0b77f5b2008-04-29 01:01:32 -0700831#ifdef CONFIG_KEYS
832 {
833 .ctl_name = CTL_UNNUMBERED,
834 .procname = "keys",
835 .mode = 0555,
836 .child = key_sysctls,
837 },
838#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700839#ifdef CONFIG_RCU_TORTURE_TEST
840 {
841 .ctl_name = CTL_UNNUMBERED,
842 .procname = "rcutorture_runnable",
843 .data = &rcutorture_runnable,
844 .maxlen = sizeof(int),
845 .mode = 0644,
846 .proc_handler = &proc_dointvec,
847 },
848#endif
Andrew Mortoned2c12f2007-07-19 01:50:35 -0700849/*
850 * NOTE: do not add new entries to this table unless you have read
851 * Documentation/sysctl/ctl_unnumbered.txt
852 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 { .ctl_name = 0 }
854};
855
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700856static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 {
858 .ctl_name = VM_OVERCOMMIT_MEMORY,
859 .procname = "overcommit_memory",
860 .data = &sysctl_overcommit_memory,
861 .maxlen = sizeof(sysctl_overcommit_memory),
862 .mode = 0644,
863 .proc_handler = &proc_dointvec,
864 },
865 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700866 .ctl_name = VM_PANIC_ON_OOM,
867 .procname = "panic_on_oom",
868 .data = &sysctl_panic_on_oom,
869 .maxlen = sizeof(sysctl_panic_on_oom),
870 .mode = 0644,
871 .proc_handler = &proc_dointvec,
872 },
873 {
David Rientjesfe071d72007-10-16 23:25:56 -0700874 .ctl_name = CTL_UNNUMBERED,
875 .procname = "oom_kill_allocating_task",
876 .data = &sysctl_oom_kill_allocating_task,
877 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
878 .mode = 0644,
879 .proc_handler = &proc_dointvec,
880 },
881 {
David Rientjesfef1bdd2008-02-07 00:14:07 -0800882 .ctl_name = CTL_UNNUMBERED,
883 .procname = "oom_dump_tasks",
884 .data = &sysctl_oom_dump_tasks,
885 .maxlen = sizeof(sysctl_oom_dump_tasks),
886 .mode = 0644,
887 .proc_handler = &proc_dointvec,
888 },
889 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 .ctl_name = VM_OVERCOMMIT_RATIO,
891 .procname = "overcommit_ratio",
892 .data = &sysctl_overcommit_ratio,
893 .maxlen = sizeof(sysctl_overcommit_ratio),
894 .mode = 0644,
895 .proc_handler = &proc_dointvec,
896 },
897 {
898 .ctl_name = VM_PAGE_CLUSTER,
899 .procname = "page-cluster",
900 .data = &page_cluster,
901 .maxlen = sizeof(int),
902 .mode = 0644,
903 .proc_handler = &proc_dointvec,
904 },
905 {
906 .ctl_name = VM_DIRTY_BACKGROUND,
907 .procname = "dirty_background_ratio",
908 .data = &dirty_background_ratio,
909 .maxlen = sizeof(dirty_background_ratio),
910 .mode = 0644,
911 .proc_handler = &proc_dointvec_minmax,
912 .strategy = &sysctl_intvec,
913 .extra1 = &zero,
914 .extra2 = &one_hundred,
915 },
916 {
917 .ctl_name = VM_DIRTY_RATIO,
918 .procname = "dirty_ratio",
919 .data = &vm_dirty_ratio,
920 .maxlen = sizeof(vm_dirty_ratio),
921 .mode = 0644,
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700922 .proc_handler = &dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 .strategy = &sysctl_intvec,
924 .extra1 = &zero,
925 .extra2 = &one_hundred,
926 },
927 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800929 .data = &dirty_writeback_interval,
930 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 .mode = 0644,
932 .proc_handler = &dirty_writeback_centisecs_handler,
933 },
934 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800936 .data = &dirty_expire_interval,
937 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 .mode = 0644,
Bart Samwelf6ef9432006-03-24 03:15:48 -0800939 .proc_handler = &proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 },
941 {
942 .ctl_name = VM_NR_PDFLUSH_THREADS,
943 .procname = "nr_pdflush_threads",
944 .data = &nr_pdflush_threads,
945 .maxlen = sizeof nr_pdflush_threads,
946 .mode = 0444 /* read-only*/,
947 .proc_handler = &proc_dointvec,
948 },
949 {
950 .ctl_name = VM_SWAPPINESS,
951 .procname = "swappiness",
952 .data = &vm_swappiness,
953 .maxlen = sizeof(vm_swappiness),
954 .mode = 0644,
955 .proc_handler = &proc_dointvec_minmax,
956 .strategy = &sysctl_intvec,
957 .extra1 = &zero,
958 .extra2 = &one_hundred,
959 },
960#ifdef CONFIG_HUGETLB_PAGE
961 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -0700963 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 .maxlen = sizeof(unsigned long),
965 .mode = 0644,
966 .proc_handler = &hugetlb_sysctl_handler,
967 .extra1 = (void *)&hugetlb_zero,
968 .extra2 = (void *)&hugetlb_infinity,
969 },
970 {
971 .ctl_name = VM_HUGETLB_GROUP,
972 .procname = "hugetlb_shm_group",
973 .data = &sysctl_hugetlb_shm_group,
974 .maxlen = sizeof(gid_t),
975 .mode = 0644,
976 .proc_handler = &proc_dointvec,
977 },
Mel Gorman396faf02007-07-17 04:03:13 -0700978 {
979 .ctl_name = CTL_UNNUMBERED,
980 .procname = "hugepages_treat_as_movable",
981 .data = &hugepages_treat_as_movable,
982 .maxlen = sizeof(int),
983 .mode = 0644,
984 .proc_handler = &hugetlb_treat_movable_handler,
985 },
Adam Litke54f9f802007-10-16 01:26:20 -0700986 {
987 .ctl_name = CTL_UNNUMBERED,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800988 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -0700989 .data = NULL,
990 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800991 .mode = 0644,
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -0800992 .proc_handler = &hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -0700993 .extra1 = (void *)&hugetlb_zero,
994 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -0800995 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996#endif
997 {
998 .ctl_name = VM_LOWMEM_RESERVE_RATIO,
999 .procname = "lowmem_reserve_ratio",
1000 .data = &sysctl_lowmem_reserve_ratio,
1001 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1002 .mode = 0644,
1003 .proc_handler = &lowmem_reserve_ratio_sysctl_handler,
1004 .strategy = &sysctl_intvec,
1005 },
1006 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001007 .ctl_name = VM_DROP_PAGECACHE,
1008 .procname = "drop_caches",
1009 .data = &sysctl_drop_caches,
1010 .maxlen = sizeof(int),
1011 .mode = 0644,
1012 .proc_handler = drop_caches_sysctl_handler,
1013 .strategy = &sysctl_intvec,
1014 },
1015 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 .ctl_name = VM_MIN_FREE_KBYTES,
1017 .procname = "min_free_kbytes",
1018 .data = &min_free_kbytes,
1019 .maxlen = sizeof(min_free_kbytes),
1020 .mode = 0644,
1021 .proc_handler = &min_free_kbytes_sysctl_handler,
1022 .strategy = &sysctl_intvec,
1023 .extra1 = &zero,
1024 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001025 {
1026 .ctl_name = VM_PERCPU_PAGELIST_FRACTION,
1027 .procname = "percpu_pagelist_fraction",
1028 .data = &percpu_pagelist_fraction,
1029 .maxlen = sizeof(percpu_pagelist_fraction),
1030 .mode = 0644,
1031 .proc_handler = &percpu_pagelist_fraction_sysctl_handler,
1032 .strategy = &sysctl_intvec,
1033 .extra1 = &min_percpu_pagelist_fract,
1034 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035#ifdef CONFIG_MMU
1036 {
1037 .ctl_name = VM_MAX_MAP_COUNT,
1038 .procname = "max_map_count",
1039 .data = &sysctl_max_map_count,
1040 .maxlen = sizeof(sysctl_max_map_count),
1041 .mode = 0644,
1042 .proc_handler = &proc_dointvec
1043 },
1044#endif
1045 {
1046 .ctl_name = VM_LAPTOP_MODE,
1047 .procname = "laptop_mode",
1048 .data = &laptop_mode,
1049 .maxlen = sizeof(laptop_mode),
1050 .mode = 0644,
Bart Samweled5b43f2006-03-24 03:15:49 -08001051 .proc_handler = &proc_dointvec_jiffies,
1052 .strategy = &sysctl_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 },
1054 {
1055 .ctl_name = VM_BLOCK_DUMP,
1056 .procname = "block_dump",
1057 .data = &block_dump,
1058 .maxlen = sizeof(block_dump),
1059 .mode = 0644,
1060 .proc_handler = &proc_dointvec,
1061 .strategy = &sysctl_intvec,
1062 .extra1 = &zero,
1063 },
1064 {
1065 .ctl_name = VM_VFS_CACHE_PRESSURE,
1066 .procname = "vfs_cache_pressure",
1067 .data = &sysctl_vfs_cache_pressure,
1068 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1069 .mode = 0644,
1070 .proc_handler = &proc_dointvec,
1071 .strategy = &sysctl_intvec,
1072 .extra1 = &zero,
1073 },
1074#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1075 {
1076 .ctl_name = VM_LEGACY_VA_LAYOUT,
1077 .procname = "legacy_va_layout",
1078 .data = &sysctl_legacy_va_layout,
1079 .maxlen = sizeof(sysctl_legacy_va_layout),
1080 .mode = 0644,
1081 .proc_handler = &proc_dointvec,
1082 .strategy = &sysctl_intvec,
1083 .extra1 = &zero,
1084 },
1085#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001086#ifdef CONFIG_NUMA
1087 {
1088 .ctl_name = VM_ZONE_RECLAIM_MODE,
1089 .procname = "zone_reclaim_mode",
1090 .data = &zone_reclaim_mode,
1091 .maxlen = sizeof(zone_reclaim_mode),
1092 .mode = 0644,
1093 .proc_handler = &proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001094 .strategy = &sysctl_intvec,
1095 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001096 },
Christoph Lameter96146342006-07-03 00:24:13 -07001097 {
1098 .ctl_name = VM_MIN_UNMAPPED,
1099 .procname = "min_unmapped_ratio",
1100 .data = &sysctl_min_unmapped_ratio,
1101 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1102 .mode = 0644,
1103 .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler,
1104 .strategy = &sysctl_intvec,
1105 .extra1 = &zero,
1106 .extra2 = &one_hundred,
1107 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001108 {
1109 .ctl_name = VM_MIN_SLAB,
1110 .procname = "min_slab_ratio",
1111 .data = &sysctl_min_slab_ratio,
1112 .maxlen = sizeof(sysctl_min_slab_ratio),
1113 .mode = 0644,
1114 .proc_handler = &sysctl_min_slab_ratio_sysctl_handler,
1115 .strategy = &sysctl_intvec,
1116 .extra1 = &zero,
1117 .extra2 = &one_hundred,
1118 },
Christoph Lameter17436602006-01-18 17:42:32 -08001119#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001120#ifdef CONFIG_SMP
1121 {
1122 .ctl_name = CTL_UNNUMBERED,
1123 .procname = "stat_interval",
1124 .data = &sysctl_stat_interval,
1125 .maxlen = sizeof(sysctl_stat_interval),
1126 .mode = 0644,
1127 .proc_handler = &proc_dointvec_jiffies,
1128 .strategy = &sysctl_jiffies,
1129 },
1130#endif
Eric Parised032182007-06-28 15:55:21 -04001131#ifdef CONFIG_SECURITY
1132 {
1133 .ctl_name = CTL_UNNUMBERED,
1134 .procname = "mmap_min_addr",
1135 .data = &mmap_min_addr,
1136 .maxlen = sizeof(unsigned long),
1137 .mode = 0644,
1138 .proc_handler = &proc_doulongvec_minmax,
1139 },
Lee Schermerhorn8daec962007-08-10 13:00:51 -07001140#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001141#ifdef CONFIG_NUMA
1142 {
1143 .ctl_name = CTL_UNNUMBERED,
1144 .procname = "numa_zonelist_order",
1145 .data = &numa_zonelist_order,
1146 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1147 .mode = 0644,
1148 .proc_handler = &numa_zonelist_order_handler,
1149 .strategy = &sysctl_string,
1150 },
1151#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001152#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001153 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001154 {
1155 .ctl_name = VM_VDSO_ENABLED,
1156 .procname = "vdso_enabled",
1157 .data = &vdso_enabled,
1158 .maxlen = sizeof(vdso_enabled),
1159 .mode = 0644,
1160 .proc_handler = &proc_dointvec,
1161 .strategy = &sysctl_intvec,
1162 .extra1 = &zero,
1163 },
1164#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001165#ifdef CONFIG_HIGHMEM
1166 {
1167 .ctl_name = CTL_UNNUMBERED,
1168 .procname = "highmem_is_dirtyable",
1169 .data = &vm_highmem_is_dirtyable,
1170 .maxlen = sizeof(vm_highmem_is_dirtyable),
1171 .mode = 0644,
1172 .proc_handler = &proc_dointvec_minmax,
1173 .strategy = &sysctl_intvec,
1174 .extra1 = &zero,
1175 .extra2 = &one,
1176 },
1177#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001178/*
1179 * NOTE: do not add new entries to this table unless you have read
1180 * Documentation/sysctl/ctl_unnumbered.txt
1181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 { .ctl_name = 0 }
1183};
1184
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001185#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001186static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001187 { .ctl_name = 0 }
1188};
1189#endif
1190
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001191static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 {
1193 .ctl_name = FS_NRINODE,
1194 .procname = "inode-nr",
1195 .data = &inodes_stat,
1196 .maxlen = 2*sizeof(int),
1197 .mode = 0444,
1198 .proc_handler = &proc_dointvec,
1199 },
1200 {
1201 .ctl_name = FS_STATINODE,
1202 .procname = "inode-state",
1203 .data = &inodes_stat,
1204 .maxlen = 7*sizeof(int),
1205 .mode = 0444,
1206 .proc_handler = &proc_dointvec,
1207 },
1208 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 .procname = "file-nr",
1210 .data = &files_stat,
1211 .maxlen = 3*sizeof(int),
1212 .mode = 0444,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -08001213 .proc_handler = &proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 },
1215 {
1216 .ctl_name = FS_MAXFILE,
1217 .procname = "file-max",
1218 .data = &files_stat.max_files,
1219 .maxlen = sizeof(int),
1220 .mode = 0644,
1221 .proc_handler = &proc_dointvec,
1222 },
1223 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001224 .ctl_name = CTL_UNNUMBERED,
1225 .procname = "nr_open",
1226 .data = &sysctl_nr_open,
1227 .maxlen = sizeof(int),
1228 .mode = 0644,
Al Viroeceea0b2008-05-10 10:08:32 -04001229 .proc_handler = &proc_dointvec_minmax,
1230 .extra1 = &sysctl_nr_open_min,
1231 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001232 },
1233 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 .ctl_name = FS_DENTRY,
1235 .procname = "dentry-state",
1236 .data = &dentry_stat,
1237 .maxlen = 6*sizeof(int),
1238 .mode = 0444,
1239 .proc_handler = &proc_dointvec,
1240 },
1241 {
1242 .ctl_name = FS_OVERFLOWUID,
1243 .procname = "overflowuid",
1244 .data = &fs_overflowuid,
1245 .maxlen = sizeof(int),
1246 .mode = 0644,
1247 .proc_handler = &proc_dointvec_minmax,
1248 .strategy = &sysctl_intvec,
1249 .extra1 = &minolduid,
1250 .extra2 = &maxolduid,
1251 },
1252 {
1253 .ctl_name = FS_OVERFLOWGID,
1254 .procname = "overflowgid",
1255 .data = &fs_overflowgid,
1256 .maxlen = sizeof(int),
1257 .mode = 0644,
1258 .proc_handler = &proc_dointvec_minmax,
1259 .strategy = &sysctl_intvec,
1260 .extra1 = &minolduid,
1261 .extra2 = &maxolduid,
1262 },
1263 {
1264 .ctl_name = FS_LEASES,
1265 .procname = "leases-enable",
1266 .data = &leases_enable,
1267 .maxlen = sizeof(int),
1268 .mode = 0644,
1269 .proc_handler = &proc_dointvec,
1270 },
1271#ifdef CONFIG_DNOTIFY
1272 {
1273 .ctl_name = FS_DIR_NOTIFY,
1274 .procname = "dir-notify-enable",
1275 .data = &dir_notify_enable,
1276 .maxlen = sizeof(int),
1277 .mode = 0644,
1278 .proc_handler = &proc_dointvec,
1279 },
1280#endif
1281#ifdef CONFIG_MMU
1282 {
1283 .ctl_name = FS_LEASE_TIME,
1284 .procname = "lease-break-time",
1285 .data = &lease_break_time,
1286 .maxlen = sizeof(int),
1287 .mode = 0644,
Kawai, Hidehiro76fdbb22007-07-19 01:48:26 -07001288 .proc_handler = &proc_dointvec_minmax,
1289 .strategy = &sysctl_intvec,
1290 .extra1 = &zero,
1291 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 },
1293 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 .procname = "aio-nr",
1295 .data = &aio_nr,
1296 .maxlen = sizeof(aio_nr),
1297 .mode = 0444,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001298 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 },
1300 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 .procname = "aio-max-nr",
1302 .data = &aio_max_nr,
1303 .maxlen = sizeof(aio_max_nr),
1304 .mode = 0644,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001305 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 },
Amy Griffis2d9048e2006-06-01 13:10:59 -07001307#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001308 {
1309 .ctl_name = FS_INOTIFY,
1310 .procname = "inotify",
1311 .mode = 0555,
1312 .child = inotify_table,
1313 },
1314#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001316 {
1317 .ctl_name = KERN_SETUID_DUMPABLE,
1318 .procname = "suid_dumpable",
1319 .data = &suid_dumpable,
1320 .maxlen = sizeof(int),
1321 .mode = 0644,
1322 .proc_handler = &proc_dointvec,
1323 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001324#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1325 {
1326 .ctl_name = CTL_UNNUMBERED,
1327 .procname = "binfmt_misc",
1328 .mode = 0555,
1329 .child = binfmt_misc_table,
1330 },
1331#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001332/*
1333 * NOTE: do not add new entries to this table unless you have read
1334 * Documentation/sysctl/ctl_unnumbered.txt
1335 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 { .ctl_name = 0 }
1337};
1338
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001339static struct ctl_table debug_table[] = {
Olof Johanssond0c3d532007-10-12 10:20:07 +10001340#if defined(CONFIG_X86) || defined(CONFIG_PPC)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001341 {
1342 .ctl_name = CTL_UNNUMBERED,
1343 .procname = "exception-trace",
1344 .data = &show_unhandled_signals,
1345 .maxlen = sizeof(int),
1346 .mode = 0644,
1347 .proc_handler = proc_dointvec
1348 },
1349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 { .ctl_name = 0 }
1351};
1352
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001353static struct ctl_table dev_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 { .ctl_name = 0 }
Robert Love0eeca282005-07-12 17:06:03 -04001355};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Al Viro330d57f2005-11-04 10:18:40 +00001357static DEFINE_SPINLOCK(sysctl_lock);
1358
1359/* called under sysctl_lock */
1360static int use_table(struct ctl_table_header *p)
1361{
1362 if (unlikely(p->unregistering))
1363 return 0;
1364 p->used++;
1365 return 1;
1366}
1367
1368/* called under sysctl_lock */
1369static void unuse_table(struct ctl_table_header *p)
1370{
1371 if (!--p->used)
1372 if (unlikely(p->unregistering))
1373 complete(p->unregistering);
1374}
1375
1376/* called under sysctl_lock, will reacquire if has to wait */
1377static void start_unregistering(struct ctl_table_header *p)
1378{
1379 /*
1380 * if p->used is 0, nobody will ever touch that entry again;
1381 * we'll eliminate all paths to it before dropping sysctl_lock
1382 */
1383 if (unlikely(p->used)) {
1384 struct completion wait;
1385 init_completion(&wait);
1386 p->unregistering = &wait;
1387 spin_unlock(&sysctl_lock);
1388 wait_for_completion(&wait);
1389 spin_lock(&sysctl_lock);
Al Virof7e6ced2008-07-15 01:44:23 -04001390 } else {
1391 /* anything non-NULL; we'll never dereference it */
1392 p->unregistering = ERR_PTR(-EINVAL);
Al Viro330d57f2005-11-04 10:18:40 +00001393 }
1394 /*
1395 * do not remove from the list until nobody holds it; walking the
1396 * list in do_sysctl() relies on that.
1397 */
1398 list_del_init(&p->ctl_entry);
1399}
1400
Al Virof7e6ced2008-07-15 01:44:23 -04001401void sysctl_head_get(struct ctl_table_header *head)
1402{
1403 spin_lock(&sysctl_lock);
1404 head->count++;
1405 spin_unlock(&sysctl_lock);
1406}
1407
1408void sysctl_head_put(struct ctl_table_header *head)
1409{
1410 spin_lock(&sysctl_lock);
1411 if (!--head->count)
1412 kfree(head);
1413 spin_unlock(&sysctl_lock);
1414}
1415
1416struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1417{
1418 if (!head)
1419 BUG();
1420 spin_lock(&sysctl_lock);
1421 if (!use_table(head))
1422 head = ERR_PTR(-ENOENT);
1423 spin_unlock(&sysctl_lock);
1424 return head;
1425}
1426
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001427void sysctl_head_finish(struct ctl_table_header *head)
1428{
1429 if (!head)
1430 return;
1431 spin_lock(&sysctl_lock);
1432 unuse_table(head);
1433 spin_unlock(&sysctl_lock);
1434}
1435
Al Viro73455092008-07-14 21:22:20 -04001436static struct ctl_table_set *
1437lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
1438{
1439 struct ctl_table_set *set = &root->default_set;
1440 if (root->lookup)
1441 set = root->lookup(root, namespaces);
1442 return set;
1443}
1444
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001445static struct list_head *
1446lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001447{
Al Viro73455092008-07-14 21:22:20 -04001448 struct ctl_table_set *set = lookup_header_set(root, namespaces);
1449 return &set->list;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001450}
1451
1452struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1453 struct ctl_table_header *prev)
1454{
1455 struct ctl_table_root *root;
1456 struct list_head *header_list;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001457 struct ctl_table_header *head;
1458 struct list_head *tmp;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001459
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001460 spin_lock(&sysctl_lock);
1461 if (prev) {
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001462 head = prev;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001463 tmp = &prev->ctl_entry;
1464 unuse_table(prev);
1465 goto next;
1466 }
1467 tmp = &root_table_header.ctl_entry;
1468 for (;;) {
1469 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1470
1471 if (!use_table(head))
1472 goto next;
1473 spin_unlock(&sysctl_lock);
1474 return head;
1475 next:
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001476 root = head->root;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001477 tmp = tmp->next;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001478 header_list = lookup_header_list(root, namespaces);
1479 if (tmp != header_list)
1480 continue;
1481
1482 do {
1483 root = list_entry(root->root_list.next,
1484 struct ctl_table_root, root_list);
1485 if (root == &sysctl_table_root)
1486 goto out;
1487 header_list = lookup_header_list(root, namespaces);
1488 } while (list_empty(header_list));
1489 tmp = header_list->next;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001490 }
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001491out:
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001492 spin_unlock(&sysctl_lock);
1493 return NULL;
1494}
1495
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001496struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1497{
1498 return __sysctl_head_next(current->nsproxy, prev);
1499}
1500
1501void register_sysctl_root(struct ctl_table_root *root)
1502{
1503 spin_lock(&sysctl_lock);
1504 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1505 spin_unlock(&sysctl_lock);
1506}
1507
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001508#ifdef CONFIG_SYSCTL_SYSCALL
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001509/* Perform the actual read/write of a sysctl table entry. */
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001510static int do_sysctl_strategy(struct ctl_table_root *root,
1511 struct ctl_table *table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001512 int __user *name, int nlen,
1513 void __user *oldval, size_t __user *oldlenp,
1514 void __user *newval, size_t newlen)
1515{
1516 int op = 0, rc;
1517
1518 if (oldval)
Al Viroe6305c42008-07-15 21:03:57 -04001519 op |= MAY_READ;
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001520 if (newval)
Al Viroe6305c42008-07-15 21:03:57 -04001521 op |= MAY_WRITE;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001522 if (sysctl_perm(root, table, op))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001523 return -EPERM;
1524
1525 if (table->strategy) {
1526 rc = table->strategy(table, name, nlen, oldval, oldlenp,
1527 newval, newlen);
1528 if (rc < 0)
1529 return rc;
1530 if (rc > 0)
1531 return 0;
1532 }
1533
1534 /* If there is no strategy routine, or if the strategy returns
1535 * zero, proceed with automatic r/w */
1536 if (table->data && table->maxlen) {
1537 rc = sysctl_data(table, name, nlen, oldval, oldlenp,
1538 newval, newlen);
1539 if (rc < 0)
1540 return rc;
1541 }
1542 return 0;
1543}
1544
1545static int parse_table(int __user *name, int nlen,
1546 void __user *oldval, size_t __user *oldlenp,
1547 void __user *newval, size_t newlen,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001548 struct ctl_table_root *root,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001549 struct ctl_table *table)
1550{
1551 int n;
1552repeat:
1553 if (!nlen)
1554 return -ENOTDIR;
1555 if (get_user(n, name))
1556 return -EFAULT;
1557 for ( ; table->ctl_name || table->procname; table++) {
1558 if (!table->ctl_name)
1559 continue;
1560 if (n == table->ctl_name) {
1561 int error;
1562 if (table->child) {
Al Viroe6305c42008-07-15 21:03:57 -04001563 if (sysctl_perm(root, table, MAY_EXEC))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001564 return -EPERM;
1565 name++;
1566 nlen--;
1567 table = table->child;
1568 goto repeat;
1569 }
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001570 error = do_sysctl_strategy(root, table, name, nlen,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001571 oldval, oldlenp,
1572 newval, newlen);
1573 return error;
1574 }
1575 }
1576 return -ENOTDIR;
1577}
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
1580 void __user *newval, size_t newlen)
1581{
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001582 struct ctl_table_header *head;
Al Viro330d57f2005-11-04 10:18:40 +00001583 int error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 if (nlen <= 0 || nlen >= CTL_MAXNAME)
1586 return -ENOTDIR;
1587 if (oldval) {
1588 int old_len;
1589 if (!oldlenp || get_user(old_len, oldlenp))
1590 return -EFAULT;
1591 }
Al Viro330d57f2005-11-04 10:18:40 +00001592
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001593 for (head = sysctl_head_next(NULL); head;
1594 head = sysctl_head_next(head)) {
Al Viro330d57f2005-11-04 10:18:40 +00001595 error = parse_table(name, nlen, oldval, oldlenp,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001596 newval, newlen,
1597 head->root, head->ctl_table);
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001598 if (error != -ENOTDIR) {
1599 sysctl_head_finish(head);
Al Viro330d57f2005-11-04 10:18:40 +00001600 break;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001601 }
1602 }
Al Viro330d57f2005-11-04 10:18:40 +00001603 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
1606asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
1607{
1608 struct __sysctl_args tmp;
1609 int error;
1610
1611 if (copy_from_user(&tmp, args, sizeof(tmp)))
1612 return -EFAULT;
1613
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001614 error = deprecated_sysctl_warning(&tmp);
1615 if (error)
1616 goto out;
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 lock_kernel();
1619 error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
1620 tmp.newval, tmp.newlen);
1621 unlock_kernel();
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001622out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 return error;
1624}
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001625#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627/*
Eric W. Biederman1ff007e2007-02-14 00:34:11 -08001628 * sysctl_perm does NOT grant the superuser all rights automatically, because
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 * some sysctl variables are readonly even to root.
1630 */
1631
1632static int test_perm(int mode, int op)
1633{
1634 if (!current->euid)
1635 mode >>= 6;
1636 else if (in_egroup_p(0))
1637 mode >>= 3;
Al Viroe6305c42008-07-15 21:03:57 -04001638 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return 0;
1640 return -EACCES;
1641}
1642
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001643int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
1645 int error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001646 int mode;
1647
Al Viroe6305c42008-07-15 21:03:57 -04001648 error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (error)
1650 return error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001651
1652 if (root->permissions)
1653 mode = root->permissions(root, current->nsproxy, table);
1654 else
1655 mode = table->mode;
1656
1657 return test_perm(mode, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001660static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1661{
1662 for (; table->ctl_name || table->procname; table++) {
1663 table->parent = parent;
1664 if (table->child)
1665 sysctl_set_parent(table, table->child);
1666 }
1667}
1668
1669static __init int sysctl_init(void)
1670{
1671 sysctl_set_parent(NULL, root_table);
Holger Schurig88f458e2008-04-29 01:02:36 -07001672#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1673 {
1674 int err;
1675 err = sysctl_check_table(current->nsproxy, root_table);
1676 }
1677#endif
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001678 return 0;
1679}
1680
1681core_initcall(sysctl_init);
1682
Al Virobfbcf032008-07-27 06:31:22 +01001683static struct ctl_table *is_branch_in(struct ctl_table *branch,
1684 struct ctl_table *table)
Al Viroae7edec2008-07-15 06:33:31 -04001685{
1686 struct ctl_table *p;
1687 const char *s = branch->procname;
1688
1689 /* branch should have named subdirectory as its first element */
1690 if (!s || !branch->child)
Al Virobfbcf032008-07-27 06:31:22 +01001691 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001692
1693 /* ... and nothing else */
1694 if (branch[1].procname || branch[1].ctl_name)
Al Virobfbcf032008-07-27 06:31:22 +01001695 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001696
1697 /* table should contain subdirectory with the same name */
1698 for (p = table; p->procname || p->ctl_name; p++) {
1699 if (!p->child)
1700 continue;
1701 if (p->procname && strcmp(p->procname, s) == 0)
Al Virobfbcf032008-07-27 06:31:22 +01001702 return p;
Al Viroae7edec2008-07-15 06:33:31 -04001703 }
Al Virobfbcf032008-07-27 06:31:22 +01001704 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001705}
1706
1707/* see if attaching q to p would be an improvement */
1708static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1709{
1710 struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
Al Virobfbcf032008-07-27 06:31:22 +01001711 struct ctl_table *next;
Al Viroae7edec2008-07-15 06:33:31 -04001712 int is_better = 0;
1713 int not_in_parent = !p->attached_by;
1714
Al Virobfbcf032008-07-27 06:31:22 +01001715 while ((next = is_branch_in(by, to)) != NULL) {
Al Viroae7edec2008-07-15 06:33:31 -04001716 if (by == q->attached_by)
1717 is_better = 1;
1718 if (to == p->attached_by)
1719 not_in_parent = 1;
1720 by = by->child;
Al Virobfbcf032008-07-27 06:31:22 +01001721 to = next->child;
Al Viroae7edec2008-07-15 06:33:31 -04001722 }
1723
1724 if (is_better && not_in_parent) {
1725 q->attached_by = by;
1726 q->attached_to = to;
1727 q->parent = p;
1728 }
1729}
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001732 * __register_sysctl_paths - register a sysctl hierarchy
1733 * @root: List of sysctl headers to register on
1734 * @namespaces: Data to compute which lists of sysctl entries are visible
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001735 * @path: The path to the directory the sysctl table is in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 * @table: the top-level table structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 *
1738 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001739 * array. A completely 0 filled entry terminates the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001741 * The members of the &struct ctl_table structure are used as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 *
1743 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1744 * must be unique within that level of sysctl
1745 *
1746 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1747 * enter a sysctl file
1748 *
1749 * data - a pointer to data for use by proc_handler
1750 *
1751 * maxlen - the maximum size in bytes of the data
1752 *
1753 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1754 *
1755 * child - a pointer to the child sysctl table if this entry is a directory, or
1756 * %NULL.
1757 *
1758 * proc_handler - the text handler routine (described below)
1759 *
1760 * strategy - the strategy routine (described below)
1761 *
1762 * de - for internal use by the sysctl routines
1763 *
1764 * extra1, extra2 - extra pointers usable by the proc handler routines
1765 *
1766 * Leaf nodes in the sysctl tree will be represented by a single file
1767 * under /proc; non-leaf nodes will be represented by directories.
1768 *
1769 * sysctl(2) can automatically manage read and write requests through
1770 * the sysctl table. The data and maxlen fields of the ctl_table
1771 * struct enable minimal validation of the values being written to be
1772 * performed, and the mode field allows minimal authentication.
1773 *
1774 * More sophisticated management can be enabled by the provision of a
1775 * strategy routine with the table entry. This will be called before
1776 * any automatic read or write of the data is performed.
1777 *
1778 * The strategy routine may return
1779 *
1780 * < 0 - Error occurred (error is passed to user process)
1781 *
1782 * 0 - OK - proceed with automatic read or write.
1783 *
1784 * > 0 - OK - read or write has been done by the strategy routine, so
1785 * return immediately.
1786 *
1787 * There must be a proc_handler routine for any terminal nodes
1788 * mirrored under /proc/sys (non-terminals are handled by a built-in
1789 * directory handler). Several default handlers are available to
1790 * cover common cases -
1791 *
1792 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1793 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1794 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1795 *
1796 * It is the handler's job to read the input buffer from user memory
1797 * and process it. The handler should return 0 on success.
1798 *
1799 * This routine returns %NULL on a failure to register, and a pointer
1800 * to the table header on success.
1801 */
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001802struct ctl_table_header *__register_sysctl_paths(
1803 struct ctl_table_root *root,
1804 struct nsproxy *namespaces,
1805 const struct ctl_path *path, struct ctl_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001807 struct ctl_table_header *header;
1808 struct ctl_table *new, **prevp;
1809 unsigned int n, npath;
Al Viroae7edec2008-07-15 06:33:31 -04001810 struct ctl_table_set *set;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001811
1812 /* Count the path components */
1813 for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath)
1814 ;
1815
1816 /*
1817 * For each path component, allocate a 2-element ctl_table array.
1818 * The first array element will be filled with the sysctl entry
1819 * for this, the second will be the sentinel (ctl_name == 0).
1820 *
1821 * We allocate everything in one go so that we don't have to
1822 * worry about freeing additional memory in unregister_sysctl_table.
1823 */
1824 header = kzalloc(sizeof(struct ctl_table_header) +
1825 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1826 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return NULL;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001828
1829 new = (struct ctl_table *) (header + 1);
1830
1831 /* Now connect the dots */
1832 prevp = &header->ctl_table;
1833 for (n = 0; n < npath; ++n, ++path) {
1834 /* Copy the procname */
1835 new->procname = path->procname;
1836 new->ctl_name = path->ctl_name;
1837 new->mode = 0555;
1838
1839 *prevp = new;
1840 prevp = &new->child;
1841
1842 new += 2;
1843 }
1844 *prevp = table;
Eric W. Biederman23eb06d2007-11-30 23:52:10 +11001845 header->ctl_table_arg = table;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001846
1847 INIT_LIST_HEAD(&header->ctl_entry);
1848 header->used = 0;
1849 header->unregistering = NULL;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001850 header->root = root;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001851 sysctl_set_parent(NULL, header->ctl_table);
Al Virof7e6ced2008-07-15 01:44:23 -04001852 header->count = 1;
Holger Schurig88f458e2008-04-29 01:02:36 -07001853#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001854 if (sysctl_check_table(namespaces, header->ctl_table)) {
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001855 kfree(header);
Eric W. Biedermanfc6cd252007-10-18 03:05:54 -07001856 return NULL;
1857 }
Holger Schurig88f458e2008-04-29 01:02:36 -07001858#endif
Al Viro330d57f2005-11-04 10:18:40 +00001859 spin_lock(&sysctl_lock);
Al Viro73455092008-07-14 21:22:20 -04001860 header->set = lookup_header_set(root, namespaces);
Al Viroae7edec2008-07-15 06:33:31 -04001861 header->attached_by = header->ctl_table;
1862 header->attached_to = root_table;
1863 header->parent = &root_table_header;
1864 for (set = header->set; set; set = set->parent) {
1865 struct ctl_table_header *p;
1866 list_for_each_entry(p, &set->list, ctl_entry) {
1867 if (p->unregistering)
1868 continue;
1869 try_attach(p, header);
1870 }
1871 }
1872 header->parent->count++;
Al Viro73455092008-07-14 21:22:20 -04001873 list_add_tail(&header->ctl_entry, &header->set->list);
Al Viro330d57f2005-11-04 10:18:40 +00001874 spin_unlock(&sysctl_lock);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001875
1876 return header;
1877}
1878
1879/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001880 * register_sysctl_table_path - register a sysctl table hierarchy
1881 * @path: The path to the directory the sysctl table is in.
1882 * @table: the top-level table structure
1883 *
1884 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1885 * array. A completely 0 filled entry terminates the table.
1886 *
1887 * See __register_sysctl_paths for more details.
1888 */
1889struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1890 struct ctl_table *table)
1891{
1892 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1893 path, table);
1894}
1895
1896/**
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001897 * register_sysctl_table - register a sysctl table hierarchy
1898 * @table: the top-level table structure
1899 *
1900 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1901 * array. A completely 0 filled entry terminates the table.
1902 *
1903 * See register_sysctl_paths for more details.
1904 */
1905struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1906{
1907 static const struct ctl_path null_path[] = { {} };
1908
1909 return register_sysctl_paths(null_path, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
1912/**
1913 * unregister_sysctl_table - unregister a sysctl table hierarchy
1914 * @header: the header returned from register_sysctl_table
1915 *
1916 * Unregisters the sysctl table and all children. proc entries may not
1917 * actually be removed until they are no longer used by anyone.
1918 */
1919void unregister_sysctl_table(struct ctl_table_header * header)
1920{
Al Viro330d57f2005-11-04 10:18:40 +00001921 might_sleep();
Pavel Emelyanovf1dad162007-12-04 23:45:24 -08001922
1923 if (header == NULL)
1924 return;
1925
Al Viro330d57f2005-11-04 10:18:40 +00001926 spin_lock(&sysctl_lock);
1927 start_unregistering(header);
Al Viroae7edec2008-07-15 06:33:31 -04001928 if (!--header->parent->count) {
1929 WARN_ON(1);
1930 kfree(header->parent);
1931 }
Al Virof7e6ced2008-07-15 01:44:23 -04001932 if (!--header->count)
1933 kfree(header);
Al Viro330d57f2005-11-04 10:18:40 +00001934 spin_unlock(&sysctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
Al Viro9043476f2008-07-15 08:54:06 -04001937int sysctl_is_seen(struct ctl_table_header *p)
1938{
1939 struct ctl_table_set *set = p->set;
1940 int res;
1941 spin_lock(&sysctl_lock);
1942 if (p->unregistering)
1943 res = 0;
1944 else if (!set->is_seen)
1945 res = 1;
1946 else
1947 res = set->is_seen(set);
1948 spin_unlock(&sysctl_lock);
1949 return res;
1950}
1951
Al Viro73455092008-07-14 21:22:20 -04001952void setup_sysctl_set(struct ctl_table_set *p,
1953 struct ctl_table_set *parent,
1954 int (*is_seen)(struct ctl_table_set *))
1955{
1956 INIT_LIST_HEAD(&p->list);
1957 p->parent = parent ? parent : &sysctl_table_root.default_set;
1958 p->is_seen = is_seen;
1959}
1960
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001961#else /* !CONFIG_SYSCTL */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001962struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001963{
1964 return NULL;
1965}
1966
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001967struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1968 struct ctl_table *table)
1969{
1970 return NULL;
1971}
1972
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001973void unregister_sysctl_table(struct ctl_table_header * table)
1974{
1975}
1976
Al Viro73455092008-07-14 21:22:20 -04001977void setup_sysctl_set(struct ctl_table_set *p,
1978 struct ctl_table_set *parent,
1979 int (*is_seen)(struct ctl_table_set *))
1980{
1981}
1982
Al Virof7e6ced2008-07-15 01:44:23 -04001983void sysctl_head_put(struct ctl_table_header *head)
1984{
1985}
1986
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001987#endif /* CONFIG_SYSCTL */
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/*
1990 * /proc/sys support
1991 */
1992
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001993#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001995static int _proc_do_string(void* data, int maxlen, int write,
1996 struct file *filp, void __user *buffer,
1997 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001998{
1999 size_t len;
2000 char __user *p;
2001 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002002
2003 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002004 *lenp = 0;
2005 return 0;
2006 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08002007
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002008 if (write) {
2009 len = 0;
2010 p = buffer;
2011 while (len < *lenp) {
2012 if (get_user(c, p++))
2013 return -EFAULT;
2014 if (c == 0 || c == '\n')
2015 break;
2016 len++;
2017 }
2018 if (len >= maxlen)
2019 len = maxlen-1;
2020 if(copy_from_user(data, buffer, len))
2021 return -EFAULT;
2022 ((char *) data)[len] = 0;
2023 *ppos += *lenp;
2024 } else {
2025 len = strlen(data);
2026 if (len > maxlen)
2027 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002028
2029 if (*ppos > len) {
2030 *lenp = 0;
2031 return 0;
2032 }
2033
2034 data += *ppos;
2035 len -= *ppos;
2036
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002037 if (len > *lenp)
2038 len = *lenp;
2039 if (len)
2040 if(copy_to_user(buffer, data, len))
2041 return -EFAULT;
2042 if (len < *lenp) {
2043 if(put_user('\n', ((char __user *) buffer) + len))
2044 return -EFAULT;
2045 len++;
2046 }
2047 *lenp = len;
2048 *ppos += len;
2049 }
2050 return 0;
2051}
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053/**
2054 * proc_dostring - read a string sysctl
2055 * @table: the sysctl table
2056 * @write: %TRUE if this is a write to the sysctl file
2057 * @filp: the file structure
2058 * @buffer: the user buffer
2059 * @lenp: the size of the user buffer
2060 * @ppos: file position
2061 *
2062 * Reads/writes a string from/to the user buffer. If the kernel
2063 * buffer provided is not large enough to hold the string, the
2064 * string is truncated. The copied string is %NULL-terminated.
2065 * If the string is being read by the user process, it is copied
2066 * and a newline '\n' is added. It is truncated if the buffer is
2067 * not large enough.
2068 *
2069 * Returns 0 on success.
2070 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002071int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 void __user *buffer, size_t *lenp, loff_t *ppos)
2073{
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002074 return _proc_do_string(table->data, table->maxlen, write, filp,
2075 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
2080 int *valp,
2081 int write, void *data)
2082{
2083 if (write) {
2084 *valp = *negp ? -*lvalp : *lvalp;
2085 } else {
2086 int val = *valp;
2087 if (val < 0) {
2088 *negp = -1;
2089 *lvalp = (unsigned long)-val;
2090 } else {
2091 *negp = 0;
2092 *lvalp = (unsigned long)val;
2093 }
2094 }
2095 return 0;
2096}
2097
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002098static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002099 int write, struct file *filp, void __user *buffer,
2100 size_t *lenp, loff_t *ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2102 int write, void *data),
2103 void *data)
2104{
2105#define TMPBUFLEN 21
2106 int *i, vleft, first=1, neg, val;
2107 unsigned long lval;
2108 size_t left, len;
2109
2110 char buf[TMPBUFLEN], *p;
2111 char __user *s = buffer;
2112
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002113 if (!tbl_data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 (*ppos && !write)) {
2115 *lenp = 0;
2116 return 0;
2117 }
2118
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002119 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 vleft = table->maxlen / sizeof(*i);
2121 left = *lenp;
2122
2123 if (!conv)
2124 conv = do_proc_dointvec_conv;
2125
2126 for (; left && vleft--; i++, first=0) {
2127 if (write) {
2128 while (left) {
2129 char c;
2130 if (get_user(c, s))
2131 return -EFAULT;
2132 if (!isspace(c))
2133 break;
2134 left--;
2135 s++;
2136 }
2137 if (!left)
2138 break;
2139 neg = 0;
2140 len = left;
2141 if (len > sizeof(buf) - 1)
2142 len = sizeof(buf) - 1;
2143 if (copy_from_user(buf, s, len))
2144 return -EFAULT;
2145 buf[len] = 0;
2146 p = buf;
2147 if (*p == '-' && left > 1) {
2148 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002149 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151 if (*p < '0' || *p > '9')
2152 break;
2153
2154 lval = simple_strtoul(p, &p, 0);
2155
2156 len = p-buf;
2157 if ((len < left) && *p && !isspace(*p))
2158 break;
2159 if (neg)
2160 val = -val;
2161 s += len;
2162 left -= len;
2163
2164 if (conv(&neg, &lval, i, 1, data))
2165 break;
2166 } else {
2167 p = buf;
2168 if (!first)
2169 *p++ = '\t';
2170
2171 if (conv(&neg, &lval, i, 0, data))
2172 break;
2173
2174 sprintf(p, "%s%lu", neg ? "-" : "", lval);
2175 len = strlen(buf);
2176 if (len > left)
2177 len = left;
2178 if(copy_to_user(s, buf, len))
2179 return -EFAULT;
2180 left -= len;
2181 s += len;
2182 }
2183 }
2184
2185 if (!write && !first && left) {
2186 if(put_user('\n', s))
2187 return -EFAULT;
2188 left--, s++;
2189 }
2190 if (write) {
2191 while (left) {
2192 char c;
2193 if (get_user(c, s++))
2194 return -EFAULT;
2195 if (!isspace(c))
2196 break;
2197 left--;
2198 }
2199 }
2200 if (write && first)
2201 return -EINVAL;
2202 *lenp -= left;
2203 *ppos += *lenp;
2204 return 0;
2205#undef TMPBUFLEN
2206}
2207
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002208static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002209 void __user *buffer, size_t *lenp, loff_t *ppos,
2210 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2211 int write, void *data),
2212 void *data)
2213{
2214 return __do_proc_dointvec(table->data, table, write, filp,
2215 buffer, lenp, ppos, conv, data);
2216}
2217
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218/**
2219 * proc_dointvec - read a vector of integers
2220 * @table: the sysctl table
2221 * @write: %TRUE if this is a write to the sysctl file
2222 * @filp: the file structure
2223 * @buffer: the user buffer
2224 * @lenp: the size of the user buffer
2225 * @ppos: file position
2226 *
2227 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2228 * values from/to the user buffer, treated as an ASCII string.
2229 *
2230 * Returns 0 on success.
2231 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002232int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 void __user *buffer, size_t *lenp, loff_t *ppos)
2234{
2235 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2236 NULL,NULL);
2237}
2238
2239#define OP_SET 0
2240#define OP_AND 1
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002241#define OP_OR 2
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243static int do_proc_dointvec_bset_conv(int *negp, unsigned long *lvalp,
2244 int *valp,
2245 int write, void *data)
2246{
2247 int op = *(int *)data;
2248 if (write) {
2249 int val = *negp ? -*lvalp : *lvalp;
2250 switch(op) {
2251 case OP_SET: *valp = val; break;
2252 case OP_AND: *valp &= val; break;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002253 case OP_OR: *valp |= val; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
2255 } else {
2256 int val = *valp;
2257 if (val < 0) {
2258 *negp = -1;
2259 *lvalp = (unsigned long)-val;
2260 } else {
2261 *negp = 0;
2262 *lvalp = (unsigned long)val;
2263 }
2264 }
2265 return 0;
2266}
2267
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002268/*
2269 * Taint values can only be increased
2270 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002271static int proc_dointvec_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002272 void __user *buffer, size_t *lenp, loff_t *ppos)
2273{
2274 int op;
2275
Bastian Blank91fcd412007-04-23 14:41:14 -07002276 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002277 return -EPERM;
2278
2279 op = OP_OR;
2280 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2281 do_proc_dointvec_bset_conv,&op);
2282}
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284struct do_proc_dointvec_minmax_conv_param {
2285 int *min;
2286 int *max;
2287};
2288
2289static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2290 int *valp,
2291 int write, void *data)
2292{
2293 struct do_proc_dointvec_minmax_conv_param *param = data;
2294 if (write) {
2295 int val = *negp ? -*lvalp : *lvalp;
2296 if ((param->min && *param->min > val) ||
2297 (param->max && *param->max < val))
2298 return -EINVAL;
2299 *valp = val;
2300 } else {
2301 int val = *valp;
2302 if (val < 0) {
2303 *negp = -1;
2304 *lvalp = (unsigned long)-val;
2305 } else {
2306 *negp = 0;
2307 *lvalp = (unsigned long)val;
2308 }
2309 }
2310 return 0;
2311}
2312
2313/**
2314 * proc_dointvec_minmax - read a vector of integers with min/max values
2315 * @table: the sysctl table
2316 * @write: %TRUE if this is a write to the sysctl file
2317 * @filp: the file structure
2318 * @buffer: the user buffer
2319 * @lenp: the size of the user buffer
2320 * @ppos: file position
2321 *
2322 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2323 * values from/to the user buffer, treated as an ASCII string.
2324 *
2325 * This routine will ensure the values are within the range specified by
2326 * table->extra1 (min) and table->extra2 (max).
2327 *
2328 * Returns 0 on success.
2329 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002330int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 void __user *buffer, size_t *lenp, loff_t *ppos)
2332{
2333 struct do_proc_dointvec_minmax_conv_param param = {
2334 .min = (int *) table->extra1,
2335 .max = (int *) table->extra2,
2336 };
2337 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2338 do_proc_dointvec_minmax_conv, &param);
2339}
2340
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002341static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 struct file *filp,
2343 void __user *buffer,
2344 size_t *lenp, loff_t *ppos,
2345 unsigned long convmul,
2346 unsigned long convdiv)
2347{
2348#define TMPBUFLEN 21
2349 unsigned long *i, *min, *max, val;
2350 int vleft, first=1, neg;
2351 size_t len, left;
2352 char buf[TMPBUFLEN], *p;
2353 char __user *s = buffer;
2354
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002355 if (!data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 (*ppos && !write)) {
2357 *lenp = 0;
2358 return 0;
2359 }
2360
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002361 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 min = (unsigned long *) table->extra1;
2363 max = (unsigned long *) table->extra2;
2364 vleft = table->maxlen / sizeof(unsigned long);
2365 left = *lenp;
2366
2367 for (; left && vleft--; i++, min++, max++, first=0) {
2368 if (write) {
2369 while (left) {
2370 char c;
2371 if (get_user(c, s))
2372 return -EFAULT;
2373 if (!isspace(c))
2374 break;
2375 left--;
2376 s++;
2377 }
2378 if (!left)
2379 break;
2380 neg = 0;
2381 len = left;
2382 if (len > TMPBUFLEN-1)
2383 len = TMPBUFLEN-1;
2384 if (copy_from_user(buf, s, len))
2385 return -EFAULT;
2386 buf[len] = 0;
2387 p = buf;
2388 if (*p == '-' && left > 1) {
2389 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002390 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
2392 if (*p < '0' || *p > '9')
2393 break;
2394 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2395 len = p-buf;
2396 if ((len < left) && *p && !isspace(*p))
2397 break;
2398 if (neg)
2399 val = -val;
2400 s += len;
2401 left -= len;
2402
2403 if(neg)
2404 continue;
2405 if ((min && val < *min) || (max && val > *max))
2406 continue;
2407 *i = val;
2408 } else {
2409 p = buf;
2410 if (!first)
2411 *p++ = '\t';
2412 sprintf(p, "%lu", convdiv * (*i) / convmul);
2413 len = strlen(buf);
2414 if (len > left)
2415 len = left;
2416 if(copy_to_user(s, buf, len))
2417 return -EFAULT;
2418 left -= len;
2419 s += len;
2420 }
2421 }
2422
2423 if (!write && !first && left) {
2424 if(put_user('\n', s))
2425 return -EFAULT;
2426 left--, s++;
2427 }
2428 if (write) {
2429 while (left) {
2430 char c;
2431 if (get_user(c, s++))
2432 return -EFAULT;
2433 if (!isspace(c))
2434 break;
2435 left--;
2436 }
2437 }
2438 if (write && first)
2439 return -EINVAL;
2440 *lenp -= left;
2441 *ppos += *lenp;
2442 return 0;
2443#undef TMPBUFLEN
2444}
2445
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002446static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002447 struct file *filp,
2448 void __user *buffer,
2449 size_t *lenp, loff_t *ppos,
2450 unsigned long convmul,
2451 unsigned long convdiv)
2452{
2453 return __do_proc_doulongvec_minmax(table->data, table, write,
2454 filp, buffer, lenp, ppos, convmul, convdiv);
2455}
2456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457/**
2458 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2459 * @table: the sysctl table
2460 * @write: %TRUE if this is a write to the sysctl file
2461 * @filp: the file structure
2462 * @buffer: the user buffer
2463 * @lenp: the size of the user buffer
2464 * @ppos: file position
2465 *
2466 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2467 * values from/to the user buffer, treated as an ASCII string.
2468 *
2469 * This routine will ensure the values are within the range specified by
2470 * table->extra1 (min) and table->extra2 (max).
2471 *
2472 * Returns 0 on success.
2473 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002474int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 void __user *buffer, size_t *lenp, loff_t *ppos)
2476{
2477 return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
2478}
2479
2480/**
2481 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2482 * @table: the sysctl table
2483 * @write: %TRUE if this is a write to the sysctl file
2484 * @filp: the file structure
2485 * @buffer: the user buffer
2486 * @lenp: the size of the user buffer
2487 * @ppos: file position
2488 *
2489 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2490 * values from/to the user buffer, treated as an ASCII string. The values
2491 * are treated as milliseconds, and converted to jiffies when they are stored.
2492 *
2493 * This routine will ensure the values are within the range specified by
2494 * table->extra1 (min) and table->extra2 (max).
2495 *
2496 * Returns 0 on success.
2497 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002498int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 struct file *filp,
2500 void __user *buffer,
2501 size_t *lenp, loff_t *ppos)
2502{
2503 return do_proc_doulongvec_minmax(table, write, filp, buffer,
2504 lenp, ppos, HZ, 1000l);
2505}
2506
2507
2508static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2509 int *valp,
2510 int write, void *data)
2511{
2512 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002513 if (*lvalp > LONG_MAX / HZ)
2514 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2516 } else {
2517 int val = *valp;
2518 unsigned long lval;
2519 if (val < 0) {
2520 *negp = -1;
2521 lval = (unsigned long)-val;
2522 } else {
2523 *negp = 0;
2524 lval = (unsigned long)val;
2525 }
2526 *lvalp = lval / HZ;
2527 }
2528 return 0;
2529}
2530
2531static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2532 int *valp,
2533 int write, void *data)
2534{
2535 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002536 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2537 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2539 } else {
2540 int val = *valp;
2541 unsigned long lval;
2542 if (val < 0) {
2543 *negp = -1;
2544 lval = (unsigned long)-val;
2545 } else {
2546 *negp = 0;
2547 lval = (unsigned long)val;
2548 }
2549 *lvalp = jiffies_to_clock_t(lval);
2550 }
2551 return 0;
2552}
2553
2554static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2555 int *valp,
2556 int write, void *data)
2557{
2558 if (write) {
2559 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2560 } else {
2561 int val = *valp;
2562 unsigned long lval;
2563 if (val < 0) {
2564 *negp = -1;
2565 lval = (unsigned long)-val;
2566 } else {
2567 *negp = 0;
2568 lval = (unsigned long)val;
2569 }
2570 *lvalp = jiffies_to_msecs(lval);
2571 }
2572 return 0;
2573}
2574
2575/**
2576 * proc_dointvec_jiffies - read a vector of integers as seconds
2577 * @table: the sysctl table
2578 * @write: %TRUE if this is a write to the sysctl file
2579 * @filp: the file structure
2580 * @buffer: the user buffer
2581 * @lenp: the size of the user buffer
2582 * @ppos: file position
2583 *
2584 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2585 * values from/to the user buffer, treated as an ASCII string.
2586 * The values read are assumed to be in seconds, and are converted into
2587 * jiffies.
2588 *
2589 * Returns 0 on success.
2590 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002591int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 void __user *buffer, size_t *lenp, loff_t *ppos)
2593{
2594 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2595 do_proc_dointvec_jiffies_conv,NULL);
2596}
2597
2598/**
2599 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2600 * @table: the sysctl table
2601 * @write: %TRUE if this is a write to the sysctl file
2602 * @filp: the file structure
2603 * @buffer: the user buffer
2604 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002605 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 *
2607 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2608 * values from/to the user buffer, treated as an ASCII string.
2609 * The values read are assumed to be in 1/USER_HZ seconds, and
2610 * are converted into jiffies.
2611 *
2612 * Returns 0 on success.
2613 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002614int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 void __user *buffer, size_t *lenp, loff_t *ppos)
2616{
2617 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2618 do_proc_dointvec_userhz_jiffies_conv,NULL);
2619}
2620
2621/**
2622 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2623 * @table: the sysctl table
2624 * @write: %TRUE if this is a write to the sysctl file
2625 * @filp: the file structure
2626 * @buffer: the user buffer
2627 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002628 * @ppos: file position
2629 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 *
2631 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2632 * values from/to the user buffer, treated as an ASCII string.
2633 * The values read are assumed to be in 1/1000 seconds, and
2634 * are converted into jiffies.
2635 *
2636 * Returns 0 on success.
2637 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002638int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 void __user *buffer, size_t *lenp, loff_t *ppos)
2640{
2641 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2642 do_proc_dointvec_ms_jiffies_conv, NULL);
2643}
2644
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002645static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002646 void __user *buffer, size_t *lenp, loff_t *ppos)
2647{
2648 struct pid *new_pid;
2649 pid_t tmp;
2650 int r;
2651
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002652 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002653
2654 r = __do_proc_dointvec(&tmp, table, write, filp, buffer,
2655 lenp, ppos, NULL, NULL);
2656 if (r || !write)
2657 return r;
2658
2659 new_pid = find_get_pid(tmp);
2660 if (!new_pid)
2661 return -ESRCH;
2662
2663 put_pid(xchg(&cad_pid, new_pid));
2664 return 0;
2665}
2666
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667#else /* CONFIG_PROC_FS */
2668
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002669int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 void __user *buffer, size_t *lenp, loff_t *ppos)
2671{
2672 return -ENOSYS;
2673}
2674
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002675int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 void __user *buffer, size_t *lenp, loff_t *ppos)
2677{
2678 return -ENOSYS;
2679}
2680
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002681int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 void __user *buffer, size_t *lenp, loff_t *ppos)
2683{
2684 return -ENOSYS;
2685}
2686
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002687int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 void __user *buffer, size_t *lenp, loff_t *ppos)
2689{
2690 return -ENOSYS;
2691}
2692
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002693int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 void __user *buffer, size_t *lenp, loff_t *ppos)
2695{
2696 return -ENOSYS;
2697}
2698
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002699int proc_dointvec_ms_jiffies(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_doulongvec_minmax(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_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 struct file *filp,
2713 void __user *buffer,
2714 size_t *lenp, loff_t *ppos)
2715{
2716 return -ENOSYS;
2717}
2718
2719
2720#endif /* CONFIG_PROC_FS */
2721
2722
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002723#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724/*
2725 * General sysctl support routines
2726 */
2727
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002728/* The generic sysctl data routine (used if no strategy routine supplied) */
2729int sysctl_data(struct ctl_table *table, int __user *name, int nlen,
2730 void __user *oldval, size_t __user *oldlenp,
2731 void __user *newval, size_t newlen)
2732{
2733 size_t len;
2734
2735 /* Get out of I don't have a variable */
2736 if (!table->data || !table->maxlen)
2737 return -ENOTDIR;
2738
2739 if (oldval && oldlenp) {
2740 if (get_user(len, oldlenp))
2741 return -EFAULT;
2742 if (len) {
2743 if (len > table->maxlen)
2744 len = table->maxlen;
2745 if (copy_to_user(oldval, table->data, len))
2746 return -EFAULT;
2747 if (put_user(len, oldlenp))
2748 return -EFAULT;
2749 }
2750 }
2751
2752 if (newval && newlen) {
2753 if (newlen > table->maxlen)
2754 newlen = table->maxlen;
2755
2756 if (copy_from_user(table->data, newval, newlen))
2757 return -EFAULT;
2758 }
2759 return 1;
2760}
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762/* The generic string strategy routine: */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002763int sysctl_string(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002765 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 if (!table->data || !table->maxlen)
2768 return -ENOTDIR;
2769
2770 if (oldval && oldlenp) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002771 size_t bufsize;
2772 if (get_user(bufsize, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002774 if (bufsize) {
2775 size_t len = strlen(table->data), copied;
2776
2777 /* This shouldn't trigger for a well-formed sysctl */
2778 if (len > table->maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 len = table->maxlen;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002780
2781 /* Copy up to a max of bufsize-1 bytes of the string */
2782 copied = (len >= bufsize) ? bufsize - 1 : len;
2783
2784 if (copy_to_user(oldval, table->data, copied) ||
2785 put_user(0, (char __user *)(oldval + copied)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002787 if (put_user(len, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return -EFAULT;
2789 }
2790 }
2791 if (newval && newlen) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002792 size_t len = newlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (len > table->maxlen)
2794 len = table->maxlen;
2795 if(copy_from_user(table->data, newval, len))
2796 return -EFAULT;
2797 if (len == table->maxlen)
2798 len--;
2799 ((char *) table->data)[len] = 0;
2800 }
Yi Yang82c9df82005-12-30 16:37:10 +08002801 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
2804/*
2805 * This function makes sure that all of the integers in the vector
2806 * are between the minimum and maximum values given in the arrays
2807 * table->extra1 and table->extra2, respectively.
2808 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002809int sysctl_intvec(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002811 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812{
2813
2814 if (newval && newlen) {
2815 int __user *vec = (int __user *) newval;
2816 int *min = (int *) table->extra1;
2817 int *max = (int *) table->extra2;
2818 size_t length;
2819 int i;
2820
2821 if (newlen % sizeof(int) != 0)
2822 return -EINVAL;
2823
2824 if (!table->extra1 && !table->extra2)
2825 return 0;
2826
2827 if (newlen > table->maxlen)
2828 newlen = table->maxlen;
2829 length = newlen / sizeof(int);
2830
2831 for (i = 0; i < length; i++) {
2832 int value;
2833 if (get_user(value, vec + i))
2834 return -EFAULT;
2835 if (min && value < min[i])
2836 return -EINVAL;
2837 if (max && value > max[i])
2838 return -EINVAL;
2839 }
2840 }
2841 return 0;
2842}
2843
2844/* Strategy function to convert jiffies to seconds */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002845int sysctl_jiffies(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002847 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002849 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002851
2852 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002854 if (olen) {
2855 int val;
2856
2857 if (olen < sizeof(int))
2858 return -EINVAL;
2859
2860 val = *(int *)(table->data) / HZ;
2861 if (put_user(val, (int __user *)oldval))
2862 return -EFAULT;
2863 if (put_user(sizeof(int), oldlenp))
2864 return -EFAULT;
2865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867 if (newval && newlen) {
2868 int new;
2869 if (newlen != sizeof(int))
2870 return -EINVAL;
2871 if (get_user(new, (int __user *)newval))
2872 return -EFAULT;
2873 *(int *)(table->data) = new*HZ;
2874 }
2875 return 1;
2876}
2877
2878/* Strategy function to convert jiffies to seconds */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002879int sysctl_ms_jiffies(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002881 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002883 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002885
2886 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002888 if (olen) {
2889 int val;
2890
2891 if (olen < sizeof(int))
2892 return -EINVAL;
2893
2894 val = jiffies_to_msecs(*(int *)(table->data));
2895 if (put_user(val, (int __user *)oldval))
2896 return -EFAULT;
2897 if (put_user(sizeof(int), oldlenp))
2898 return -EFAULT;
2899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 }
2901 if (newval && newlen) {
2902 int new;
2903 if (newlen != sizeof(int))
2904 return -EINVAL;
2905 if (get_user(new, (int __user *)newval))
2906 return -EFAULT;
2907 *(int *)(table->data) = msecs_to_jiffies(new);
2908 }
2909 return 1;
2910}
2911
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002912
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002913
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002914#else /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
2916
2917asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
2918{
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002919 struct __sysctl_args tmp;
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002920 int error;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002921
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002922 if (copy_from_user(&tmp, args, sizeof(tmp)))
2923 return -EFAULT;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002924
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002925 error = deprecated_sysctl_warning(&tmp);
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002926
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002927 /* If no error reading the parameters then just -ENOSYS ... */
2928 if (!error)
2929 error = -ENOSYS;
2930
2931 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002934int sysctl_data(struct ctl_table *table, int __user *name, int nlen,
2935 void __user *oldval, size_t __user *oldlenp,
2936 void __user *newval, size_t newlen)
2937{
2938 return -ENOSYS;
2939}
2940
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002941int sysctl_string(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002943 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
2945 return -ENOSYS;
2946}
2947
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002948int sysctl_intvec(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002950 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 return -ENOSYS;
2953}
2954
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002955int sysctl_jiffies(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002957 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
2959 return -ENOSYS;
2960}
2961
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002962int sysctl_ms_jiffies(struct ctl_table *table, int __user *name, int nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002964 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
2966 return -ENOSYS;
2967}
2968
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002969#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002971static int deprecated_sysctl_warning(struct __sysctl_args *args)
2972{
2973 static int msg_count;
2974 int name[CTL_MAXNAME];
2975 int i;
2976
Tetsuo Handa6fc48af2007-11-14 16:58:38 -08002977 /* Check args->nlen. */
2978 if (args->nlen < 0 || args->nlen > CTL_MAXNAME)
2979 return -ENOTDIR;
2980
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002981 /* Read in the sysctl name for better debug message logging */
2982 for (i = 0; i < args->nlen; i++)
2983 if (get_user(name[i], args->name + i))
2984 return -EFAULT;
2985
2986 /* Ignore accesses to kernel.version */
2987 if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION))
2988 return 0;
2989
2990 if (msg_count < 5) {
2991 msg_count++;
2992 printk(KERN_INFO
2993 "warning: process `%s' used the deprecated sysctl "
2994 "system call with ", current->comm);
2995 for (i = 0; i < args->nlen; i++)
2996 printk("%d.", name[i]);
2997 printk("\n");
2998 }
2999 return 0;
3000}
3001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002/*
3003 * No sense putting this after each symbol definition, twice,
3004 * exception granted :-)
3005 */
3006EXPORT_SYMBOL(proc_dointvec);
3007EXPORT_SYMBOL(proc_dointvec_jiffies);
3008EXPORT_SYMBOL(proc_dointvec_minmax);
3009EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3010EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3011EXPORT_SYMBOL(proc_dostring);
3012EXPORT_SYMBOL(proc_doulongvec_minmax);
3013EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3014EXPORT_SYMBOL(register_sysctl_table);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11003015EXPORT_SYMBOL(register_sysctl_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016EXPORT_SYMBOL(sysctl_intvec);
3017EXPORT_SYMBOL(sysctl_jiffies);
3018EXPORT_SYMBOL(sysctl_ms_jiffies);
3019EXPORT_SYMBOL(sysctl_string);
Eric W. Biederman49a0c452007-10-18 03:05:23 -07003020EXPORT_SYMBOL(sysctl_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021EXPORT_SYMBOL(unregister_sysctl_table);