blob: 84754f5801e6c5ef334db465f7b6276fba85008e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysctl.c: General linux system control interface
3 *
4 * Begun 24 March 1995, Stephen Tweedie
5 * Added /proc support, Dec 1995
6 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
7 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
8 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
9 * Dynamic registration fixes, Stephen Tweedie.
10 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
11 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
12 * Horn.
13 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
14 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
15 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
16 * Wendling.
17 * The list_for_each() macro wasn't appropriate for the sysctl loop.
18 * Removed it and replaced it with older style, 03/23/00, Bill Wendling
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/mm.h>
23#include <linux/swap.h>
24#include <linux/slab.h>
25#include <linux/sysctl.h>
26#include <linux/proc_fs.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070027#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/ctype.h>
29#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/smp_lock.h>
Adrian Bunk62239ac2007-07-17 04:03:45 -070031#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/init.h>
33#include <linux/kernel.h>
Kay Sievers0296b222005-11-11 05:33:52 +010034#include <linux/kobject.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030035#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/sysrq.h>
37#include <linux/highuid.h>
38#include <linux/writeback.h>
39#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070041#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/times.h>
43#include <linux/limits.h>
44#include <linux/dcache.h>
45#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070046#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080047#include <linux/nfs_fs.h>
48#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070049#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020050#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <asm/uaccess.h>
53#include <asm/processor.h>
54
Andi Kleen29cbc782006-09-30 01:47:55 +020055#ifdef CONFIG_X86
56#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010057#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010058#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020059#endif
60
Eric W. Biederman7058cb02007-10-18 03:05:58 -070061static int deprecated_sysctl_warning(struct __sysctl_args *args);
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#if defined(CONFIG_SYSCTL)
64
65/* External variables not in a header file. */
66extern int C_A_D;
Ingo Molnar45807a12007-07-15 23:40:10 -070067extern int print_fatal_signals;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068extern int sysctl_overcommit_memory;
69extern int sysctl_overcommit_ratio;
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -070070extern int sysctl_panic_on_oom;
David Rientjesfe071d72007-10-16 23:25:56 -070071extern int sysctl_oom_kill_allocating_task;
David Rientjesfef1bdd2008-02-07 00:14:07 -080072extern int sysctl_oom_dump_tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern int max_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074extern int core_uses_pid;
Alan Coxd6e71142005-06-23 00:09:43 -070075extern int suid_dumpable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern char core_pattern[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070077extern int pid_max;
78extern int min_free_kbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern int pid_max_min, pid_max_max;
Andrew Morton9d0243b2006-01-08 01:00:39 -080080extern int sysctl_drop_caches;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -080081extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +020082extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +010083extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -040084extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul E. McKenney31a72bc2008-06-18 09:26:49 -070085#ifdef CONFIG_RCU_TORTURE_TEST
86extern int rcutorture_runnable;
87#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070089/* Constants used for minimum and maximum */
Ingo Molnar1c4cd6d2008-05-12 21:21:14 +020090#if defined(CONFIG_HIGHMEM) || defined(CONFIG_DETECT_SOFTLOCKUP)
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070091static int one = 1;
Bron Gondwana195cf4532008-02-04 22:29:20 -080092#endif
93
94#ifdef CONFIG_DETECT_SOFTLOCKUP
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070095static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +020096static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070097#endif
98
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +020099#if defined(CONFIG_MMU) && defined(CONFIG_FILE_LOCKING)
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700100static int two = 2;
101#endif
102
103static int zero;
104static int one_hundred = 100;
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
107static int maxolduid = 65535;
108static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800109static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static int ngroups_max = NGROUPS_MAX;
112
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200113#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114extern char modprobe_path[];
115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#ifdef CONFIG_CHR_DEV_SG
117extern int sg_big_buff;
118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
David S. Miller72c57ed2008-09-11 23:29:54 -0700120#ifdef CONFIG_SPARC
David S. Miller17f04fb2008-09-11 23:33:53 -0700121#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif
123
124#ifdef __hppa__
125extern int pwrsw_enabled;
126extern int unaligned_enabled;
127#endif
128
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800129#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#ifdef CONFIG_MATHEMU
131extern int sysctl_ieee_emulation_warnings;
132#endif
133extern int sysctl_userprocess_debug;
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700134extern int spin_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#endif
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#ifdef CONFIG_BSD_PROCESS_ACCT
138extern int acct_parm[];
139#endif
140
Jes Sorensend2b176e2006-02-28 09:42:23 -0800141#ifdef CONFIG_IA64
142extern int no_unaligned_warning;
143#endif
144
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700145#ifdef CONFIG_RT_MUTEXES
146extern int max_lock_depth;
147#endif
148
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700149#ifdef CONFIG_PROC_SYSCTL
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700150static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700151 void __user *buffer, size_t *lenp, loff_t *ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700152static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800153 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700154#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700155
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700156static struct ctl_table root_table[];
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100157static struct ctl_table_root sysctl_table_root;
158static struct ctl_table_header root_table_header = {
Al Virob380b0d2008-09-04 17:05:57 +0100159 .count = 1,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100160 .ctl_table = root_table,
Al Viro73455092008-07-14 21:22:20 -0400161 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100162 .root = &sysctl_table_root,
Al Viro73455092008-07-14 21:22:20 -0400163 .set = &sysctl_table_root.default_set,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100164};
165static struct ctl_table_root sysctl_table_root = {
166 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
Al Viro73455092008-07-14 21:22:20 -0400167 .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100168};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700170static struct ctl_table kern_table[];
171static struct ctl_table vm_table[];
172static struct ctl_table fs_table[];
173static struct ctl_table debug_table[];
174static struct ctl_table dev_table[];
175extern struct ctl_table random_table[];
Amy Griffis2d9048e2006-06-01 13:10:59 -0700176#ifdef CONFIG_INOTIFY_USER
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700177extern struct ctl_table inotify_table[];
Robert Love0399cb02005-07-13 12:38:18 -0400178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
181int sysctl_legacy_va_layout;
182#endif
183
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700184extern int prove_locking;
185extern int lock_stat;
Eric W. Biederman9bc9a6b2006-12-08 02:39:56 -0800186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/* The default sysctl tables: */
188
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700189static struct ctl_table root_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 {
191 .ctl_name = CTL_KERN,
192 .procname = "kernel",
193 .mode = 0555,
194 .child = kern_table,
195 },
196 {
197 .ctl_name = CTL_VM,
198 .procname = "vm",
199 .mode = 0555,
200 .child = vm_table,
201 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .ctl_name = CTL_FS,
204 .procname = "fs",
205 .mode = 0555,
206 .child = fs_table,
207 },
208 {
209 .ctl_name = CTL_DEBUG,
210 .procname = "debug",
211 .mode = 0555,
212 .child = debug_table,
213 },
214 {
215 .ctl_name = CTL_DEV,
216 .procname = "dev",
217 .mode = 0555,
218 .child = dev_table,
219 },
Andrew Morton2be7fe02007-07-15 23:41:21 -0700220/*
221 * NOTE: do not add new entries to this table unless you have read
222 * Documentation/sysctl/ctl_unnumbered.txt
223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 { .ctl_name = 0 }
225};
226
Ingo Molnar77e54a12007-07-09 18:52:00 +0200227#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100228static int min_sched_granularity_ns = 100000; /* 100 usecs */
229static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
230static int min_wakeup_granularity_ns; /* 0 usecs */
231static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200232#endif
233
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700234static struct ctl_table kern_table[] = {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200235#ifdef CONFIG_SCHED_DEBUG
236 {
237 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100238 .procname = "sched_min_granularity_ns",
239 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200240 .maxlen = sizeof(unsigned int),
241 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100242 .proc_handler = &sched_nr_latency_handler,
243 .strategy = &sysctl_intvec,
244 .extra1 = &min_sched_granularity_ns,
245 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200246 },
247 {
248 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra21805082007-08-25 18:41:53 +0200249 .procname = "sched_latency_ns",
250 .data = &sysctl_sched_latency,
251 .maxlen = sizeof(unsigned int),
252 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100253 .proc_handler = &sched_nr_latency_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200254 .strategy = &sysctl_intvec,
255 .extra1 = &min_sched_granularity_ns,
256 .extra2 = &max_sched_granularity_ns,
257 },
258 {
259 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200260 .procname = "sched_wakeup_granularity_ns",
261 .data = &sysctl_sched_wakeup_granularity,
262 .maxlen = sizeof(unsigned int),
263 .mode = 0644,
264 .proc_handler = &proc_dointvec_minmax,
265 .strategy = &sysctl_intvec,
266 .extra1 = &min_wakeup_granularity_ns,
267 .extra2 = &max_wakeup_granularity_ns,
268 },
269 {
270 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200271 .procname = "sched_shares_ratelimit",
272 .data = &sysctl_sched_shares_ratelimit,
273 .maxlen = sizeof(unsigned int),
274 .mode = 0644,
275 .proc_handler = &proc_dointvec,
276 },
277 {
278 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200279 .procname = "sched_shares_thresh",
280 .data = &sysctl_sched_shares_thresh,
281 .maxlen = sizeof(unsigned int),
282 .mode = 0644,
283 .proc_handler = &proc_dointvec_minmax,
284 .strategy = &sysctl_intvec,
285 .extra1 = &zero,
286 },
287 {
288 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200289 .procname = "sched_child_runs_first",
290 .data = &sysctl_sched_child_runs_first,
291 .maxlen = sizeof(unsigned int),
292 .mode = 0644,
293 .proc_handler = &proc_dointvec,
294 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200295 {
296 .ctl_name = CTL_UNNUMBERED,
297 .procname = "sched_features",
298 .data = &sysctl_sched_features,
299 .maxlen = sizeof(unsigned int),
300 .mode = 0644,
301 .proc_handler = &proc_dointvec,
302 },
Ingo Molnarda84d962007-10-15 17:00:18 +0200303 {
304 .ctl_name = CTL_UNNUMBERED,
305 .procname = "sched_migration_cost",
306 .data = &sysctl_sched_migration_cost,
307 .maxlen = sizeof(unsigned int),
308 .mode = 0644,
309 .proc_handler = &proc_dointvec,
310 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100311 {
312 .ctl_name = CTL_UNNUMBERED,
313 .procname = "sched_nr_migrate",
314 .data = &sysctl_sched_nr_migrate,
315 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100316 .mode = 0644,
317 .proc_handler = &proc_dointvec,
318 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200319#endif
Ingo Molnar1799e352007-09-19 23:34:46 +0200320 {
321 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100322 .procname = "sched_rt_period_us",
323 .data = &sysctl_sched_rt_period,
324 .maxlen = sizeof(unsigned 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,
330 .procname = "sched_rt_runtime_us",
331 .data = &sysctl_sched_rt_runtime,
332 .maxlen = sizeof(int),
333 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200334 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100335 },
336 {
337 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar1799e352007-09-19 23:34:46 +0200338 .procname = "sched_compat_yield",
339 .data = &sysctl_sched_compat_yield,
340 .maxlen = sizeof(unsigned int),
341 .mode = 0644,
342 .proc_handler = &proc_dointvec,
343 },
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700344#ifdef CONFIG_PROVE_LOCKING
345 {
346 .ctl_name = CTL_UNNUMBERED,
347 .procname = "prove_locking",
348 .data = &prove_locking,
349 .maxlen = sizeof(int),
350 .mode = 0644,
351 .proc_handler = &proc_dointvec,
352 },
353#endif
354#ifdef CONFIG_LOCK_STAT
355 {
356 .ctl_name = CTL_UNNUMBERED,
357 .procname = "lock_stat",
358 .data = &lock_stat,
359 .maxlen = sizeof(int),
360 .mode = 0644,
361 .proc_handler = &proc_dointvec,
362 },
363#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200364 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 .ctl_name = KERN_PANIC,
366 .procname = "panic",
367 .data = &panic_timeout,
368 .maxlen = sizeof(int),
369 .mode = 0644,
370 .proc_handler = &proc_dointvec,
371 },
372 {
373 .ctl_name = KERN_CORE_USES_PID,
374 .procname = "core_uses_pid",
375 .data = &core_uses_pid,
376 .maxlen = sizeof(int),
377 .mode = 0644,
378 .proc_handler = &proc_dointvec,
379 },
380 {
381 .ctl_name = KERN_CORE_PATTERN,
382 .procname = "core_pattern",
383 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700384 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .mode = 0644,
386 .proc_handler = &proc_dostring,
387 .strategy = &sysctl_string,
388 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800389#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700392 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800393 .mode = 0644,
Andi Kleen25ddbb12008-10-15 22:01:41 -0700394 .proc_handler = &proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800396#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100397#ifdef CONFIG_LATENCYTOP
398 {
399 .procname = "latencytop",
400 .data = &latencytop_enabled,
401 .maxlen = sizeof(int),
402 .mode = 0644,
403 .proc_handler = &proc_dointvec,
404 },
405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406#ifdef CONFIG_BLK_DEV_INITRD
407 {
408 .ctl_name = KERN_REALROOTDEV,
409 .procname = "real-root-dev",
410 .data = &real_root_dev,
411 .maxlen = sizeof(int),
412 .mode = 0644,
413 .proc_handler = &proc_dointvec,
414 },
415#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700416 {
417 .ctl_name = CTL_UNNUMBERED,
418 .procname = "print-fatal-signals",
419 .data = &print_fatal_signals,
420 .maxlen = sizeof(int),
421 .mode = 0644,
422 .proc_handler = &proc_dointvec,
423 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700424#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 {
426 .ctl_name = KERN_SPARC_REBOOT,
427 .procname = "reboot-cmd",
428 .data = reboot_command,
429 .maxlen = 256,
430 .mode = 0644,
431 .proc_handler = &proc_dostring,
432 .strategy = &sysctl_string,
433 },
434 {
435 .ctl_name = KERN_SPARC_STOP_A,
436 .procname = "stop-a",
437 .data = &stop_a_enabled,
438 .maxlen = sizeof (int),
439 .mode = 0644,
440 .proc_handler = &proc_dointvec,
441 },
442 {
443 .ctl_name = KERN_SPARC_SCONS_PWROFF,
444 .procname = "scons-poweroff",
445 .data = &scons_pwroff,
446 .maxlen = sizeof (int),
447 .mode = 0644,
448 .proc_handler = &proc_dointvec,
449 },
450#endif
451#ifdef __hppa__
452 {
453 .ctl_name = KERN_HPPA_PWRSW,
454 .procname = "soft-power",
455 .data = &pwrsw_enabled,
456 .maxlen = sizeof (int),
457 .mode = 0644,
458 .proc_handler = &proc_dointvec,
459 },
460 {
461 .ctl_name = KERN_HPPA_UNALIGNED,
462 .procname = "unaligned-trap",
463 .data = &unaligned_enabled,
464 .maxlen = sizeof (int),
465 .mode = 0644,
466 .proc_handler = &proc_dointvec,
467 },
468#endif
469 {
470 .ctl_name = KERN_CTLALTDEL,
471 .procname = "ctrl-alt-del",
472 .data = &C_A_D,
473 .maxlen = sizeof(int),
474 .mode = 0644,
475 .proc_handler = &proc_dointvec,
476 },
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200477#ifdef CONFIG_FTRACE
478 {
479 .ctl_name = CTL_UNNUMBERED,
480 .procname = "ftrace_enabled",
481 .data = &ftrace_enabled,
482 .maxlen = sizeof(int),
483 .mode = 0644,
484 .proc_handler = &ftrace_enable_sysctl,
485 },
486#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400487#ifdef CONFIG_TRACING
488 {
489 .ctl_name = CTL_UNNUMBERED,
490 .procname = "ftrace_dump_on_opps",
491 .data = &ftrace_dump_on_oops,
492 .maxlen = sizeof(int),
493 .mode = 0644,
494 .proc_handler = &proc_dointvec,
495 },
496#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200497#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 {
499 .ctl_name = KERN_MODPROBE,
500 .procname = "modprobe",
501 .data = &modprobe_path,
502 .maxlen = KMOD_PATH_LEN,
503 .mode = 0644,
504 .proc_handler = &proc_dostring,
505 .strategy = &sysctl_string,
506 },
507#endif
Andrew Morton57ae2502006-06-23 02:05:47 -0700508#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 {
510 .ctl_name = KERN_HOTPLUG,
511 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100512 .data = &uevent_helper,
513 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 .mode = 0644,
515 .proc_handler = &proc_dostring,
516 .strategy = &sysctl_string,
517 },
518#endif
519#ifdef CONFIG_CHR_DEV_SG
520 {
521 .ctl_name = KERN_SG_BIG_BUFF,
522 .procname = "sg-big-buff",
523 .data = &sg_big_buff,
524 .maxlen = sizeof (int),
525 .mode = 0444,
526 .proc_handler = &proc_dointvec,
527 },
528#endif
529#ifdef CONFIG_BSD_PROCESS_ACCT
530 {
531 .ctl_name = KERN_ACCT,
532 .procname = "acct",
533 .data = &acct_parm,
534 .maxlen = 3*sizeof(int),
535 .mode = 0644,
536 .proc_handler = &proc_dointvec,
537 },
538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#ifdef CONFIG_MAGIC_SYSRQ
540 {
541 .ctl_name = KERN_SYSRQ,
542 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800543 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 .maxlen = sizeof (int),
545 .mode = 0644,
546 .proc_handler = &proc_dointvec,
547 },
548#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700549#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700552 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 .maxlen = sizeof (int),
554 .mode = 0600,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700555 .proc_handler = &proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700557#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 {
559 .ctl_name = KERN_MAX_THREADS,
560 .procname = "threads-max",
561 .data = &max_threads,
562 .maxlen = sizeof(int),
563 .mode = 0644,
564 .proc_handler = &proc_dointvec,
565 },
566 {
567 .ctl_name = KERN_RANDOM,
568 .procname = "random",
569 .mode = 0555,
570 .child = random_table,
571 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 {
573 .ctl_name = KERN_OVERFLOWUID,
574 .procname = "overflowuid",
575 .data = &overflowuid,
576 .maxlen = sizeof(int),
577 .mode = 0644,
578 .proc_handler = &proc_dointvec_minmax,
579 .strategy = &sysctl_intvec,
580 .extra1 = &minolduid,
581 .extra2 = &maxolduid,
582 },
583 {
584 .ctl_name = KERN_OVERFLOWGID,
585 .procname = "overflowgid",
586 .data = &overflowgid,
587 .maxlen = sizeof(int),
588 .mode = 0644,
589 .proc_handler = &proc_dointvec_minmax,
590 .strategy = &sysctl_intvec,
591 .extra1 = &minolduid,
592 .extra2 = &maxolduid,
593 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800594#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#ifdef CONFIG_MATHEMU
596 {
597 .ctl_name = KERN_IEEE_EMULATION_WARNINGS,
598 .procname = "ieee_emulation_warnings",
599 .data = &sysctl_ieee_emulation_warnings,
600 .maxlen = sizeof(int),
601 .mode = 0644,
602 .proc_handler = &proc_dointvec,
603 },
604#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 {
606 .ctl_name = KERN_S390_USER_DEBUG_LOGGING,
607 .procname = "userprocess_debug",
608 .data = &sysctl_userprocess_debug,
609 .maxlen = sizeof(int),
610 .mode = 0644,
611 .proc_handler = &proc_dointvec,
612 },
613#endif
614 {
615 .ctl_name = KERN_PIDMAX,
616 .procname = "pid_max",
617 .data = &pid_max,
618 .maxlen = sizeof (int),
619 .mode = 0644,
620 .proc_handler = &proc_dointvec_minmax,
621 .strategy = sysctl_intvec,
622 .extra1 = &pid_max_min,
623 .extra2 = &pid_max_max,
624 },
625 {
626 .ctl_name = KERN_PANIC_ON_OOPS,
627 .procname = "panic_on_oops",
628 .data = &panic_on_oops,
629 .maxlen = sizeof(int),
630 .mode = 0644,
631 .proc_handler = &proc_dointvec,
632 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800633#if defined CONFIG_PRINTK
634 {
635 .ctl_name = KERN_PRINTK,
636 .procname = "printk",
637 .data = &console_loglevel,
638 .maxlen = 4*sizeof(int),
639 .mode = 0644,
640 .proc_handler = &proc_dointvec,
641 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 {
643 .ctl_name = KERN_PRINTK_RATELIMIT,
644 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700645 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 .maxlen = sizeof(int),
647 .mode = 0644,
648 .proc_handler = &proc_dointvec_jiffies,
649 .strategy = &sysctl_jiffies,
650 },
651 {
652 .ctl_name = KERN_PRINTK_RATELIMIT_BURST,
653 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700654 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 .maxlen = sizeof(int),
656 .mode = 0644,
657 .proc_handler = &proc_dointvec,
658 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800659#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 {
661 .ctl_name = KERN_NGROUPS_MAX,
662 .procname = "ngroups_max",
663 .data = &ngroups_max,
664 .maxlen = sizeof (int),
665 .mode = 0444,
666 .proc_handler = &proc_dointvec,
667 },
668#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
669 {
670 .ctl_name = KERN_UNKNOWN_NMI_PANIC,
671 .procname = "unknown_nmi_panic",
672 .data = &unknown_nmi_panic,
673 .maxlen = sizeof (int),
674 .mode = 0644,
Don Zickus2fbe7b22006-09-26 10:52:27 +0200675 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 },
Don Zickus407984f2006-09-26 10:52:27 +0200677 {
Don Zickus407984f2006-09-26 10:52:27 +0200678 .procname = "nmi_watchdog",
679 .data = &nmi_watchdog_enabled,
680 .maxlen = sizeof (int),
681 .mode = 0644,
682 .proc_handler = &proc_nmi_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 },
684#endif
685#if defined(CONFIG_X86)
686 {
Don Zickus8da5add2006-09-26 10:52:27 +0200687 .ctl_name = KERN_PANIC_ON_NMI,
688 .procname = "panic_on_unrecovered_nmi",
689 .data = &panic_on_unrecovered_nmi,
690 .maxlen = sizeof(int),
691 .mode = 0644,
692 .proc_handler = &proc_dointvec,
693 },
694 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .ctl_name = KERN_BOOTLOADER_TYPE,
696 .procname = "bootloader_type",
697 .data = &bootloader_type,
698 .maxlen = sizeof (int),
699 .mode = 0444,
700 .proc_handler = &proc_dointvec,
701 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100702 {
703 .ctl_name = CTL_UNNUMBERED,
704 .procname = "kstack_depth_to_print",
705 .data = &kstack_depth_to_print,
706 .maxlen = sizeof(int),
707 .mode = 0644,
708 .proc_handler = &proc_dointvec,
709 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100710 {
711 .ctl_name = CTL_UNNUMBERED,
712 .procname = "io_delay_type",
713 .data = &io_delay_type,
714 .maxlen = sizeof(int),
715 .mode = 0644,
716 .proc_handler = &proc_dointvec,
717 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800719#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 {
721 .ctl_name = KERN_RANDOMIZE,
722 .procname = "randomize_va_space",
723 .data = &randomize_va_space,
724 .maxlen = sizeof(int),
725 .mode = 0644,
726 .proc_handler = &proc_dointvec,
727 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800728#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800729#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700730 {
731 .ctl_name = KERN_SPIN_RETRY,
732 .procname = "spin_retry",
733 .data = &spin_retry,
734 .maxlen = sizeof (int),
735 .mode = 0644,
736 .proc_handler = &proc_dointvec,
737 },
738#endif
Len Brown673d5b42007-07-28 03:33:16 -0400739#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800740 {
Pavel Machekc255d842006-02-20 18:27:58 -0800741 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700742 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800743 .maxlen = sizeof (unsigned long),
744 .mode = 0644,
Stefan Seyfried7f99f062006-03-02 02:54:34 -0800745 .proc_handler = &proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800746 },
747#endif
Jes Sorensend2b176e2006-02-28 09:42:23 -0800748#ifdef CONFIG_IA64
749 {
750 .ctl_name = KERN_IA64_UNALIGNED,
751 .procname = "ignore-unaligned-usertrap",
752 .data = &no_unaligned_warning,
753 .maxlen = sizeof (int),
754 .mode = 0644,
755 .proc_handler = &proc_dointvec,
756 },
757#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700758#ifdef CONFIG_DETECT_SOFTLOCKUP
759 {
760 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200761 .procname = "softlockup_panic",
762 .data = &softlockup_panic,
763 .maxlen = sizeof(int),
764 .mode = 0644,
Hiroshi Shimamoto4dca10a2008-07-07 18:37:04 -0700765 .proc_handler = &proc_dointvec_minmax,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200766 .strategy = &sysctl_intvec,
767 .extra1 = &zero,
768 .extra2 = &one,
769 },
770 {
771 .ctl_name = CTL_UNNUMBERED,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700772 .procname = "softlockup_thresh",
773 .data = &softlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200774 .maxlen = sizeof(int),
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700775 .mode = 0644,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200776 .proc_handler = &proc_dointvec_minmax,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700777 .strategy = &sysctl_intvec,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200778 .extra1 = &neg_one,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700779 .extra2 = &sixty,
780 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100781 {
782 .ctl_name = CTL_UNNUMBERED,
783 .procname = "hung_task_check_count",
784 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100785 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100786 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100787 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100788 .strategy = &sysctl_intvec,
789 },
790 {
791 .ctl_name = CTL_UNNUMBERED,
792 .procname = "hung_task_timeout_secs",
793 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100794 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100795 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100796 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100797 .strategy = &sysctl_intvec,
798 },
799 {
800 .ctl_name = CTL_UNNUMBERED,
801 .procname = "hung_task_warnings",
802 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100803 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100804 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100805 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100806 .strategy = &sysctl_intvec,
807 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700808#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200809#ifdef CONFIG_COMPAT
810 {
811 .ctl_name = KERN_COMPAT_LOG,
812 .procname = "compat-log",
813 .data = &compat_log,
814 .maxlen = sizeof (int),
815 .mode = 0644,
816 .proc_handler = &proc_dointvec,
817 },
818#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700819#ifdef CONFIG_RT_MUTEXES
820 {
821 .ctl_name = KERN_MAX_LOCK_DEPTH,
822 .procname = "max_lock_depth",
823 .data = &max_lock_depth,
824 .maxlen = sizeof(int),
825 .mode = 0644,
826 .proc_handler = &proc_dointvec,
827 },
828#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700829 {
830 .ctl_name = CTL_UNNUMBERED,
831 .procname = "poweroff_cmd",
832 .data = &poweroff_cmd,
833 .maxlen = POWEROFF_CMD_PATH_LEN,
834 .mode = 0644,
835 .proc_handler = &proc_dostring,
836 .strategy = &sysctl_string,
837 },
David Howells0b77f5b2008-04-29 01:01:32 -0700838#ifdef CONFIG_KEYS
839 {
840 .ctl_name = CTL_UNNUMBERED,
841 .procname = "keys",
842 .mode = 0555,
843 .child = key_sysctls,
844 },
845#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700846#ifdef CONFIG_RCU_TORTURE_TEST
847 {
848 .ctl_name = CTL_UNNUMBERED,
849 .procname = "rcutorture_runnable",
850 .data = &rcutorture_runnable,
851 .maxlen = sizeof(int),
852 .mode = 0644,
853 .proc_handler = &proc_dointvec,
854 },
855#endif
Lee Schermerhornaf936a12008-10-18 20:26:53 -0700856#ifdef CONFIG_UNEVICTABLE_LRU
857 {
858 .ctl_name = CTL_UNNUMBERED,
859 .procname = "scan_unevictable_pages",
860 .data = &scan_unevictable_pages,
861 .maxlen = sizeof(scan_unevictable_pages),
862 .mode = 0644,
863 .proc_handler = &scan_unevictable_handler,
864 },
865#endif
Andrew Mortoned2c12f2007-07-19 01:50:35 -0700866/*
867 * NOTE: do not add new entries to this table unless you have read
868 * Documentation/sysctl/ctl_unnumbered.txt
869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 { .ctl_name = 0 }
871};
872
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700873static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 {
875 .ctl_name = VM_OVERCOMMIT_MEMORY,
876 .procname = "overcommit_memory",
877 .data = &sysctl_overcommit_memory,
878 .maxlen = sizeof(sysctl_overcommit_memory),
879 .mode = 0644,
880 .proc_handler = &proc_dointvec,
881 },
882 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700883 .ctl_name = VM_PANIC_ON_OOM,
884 .procname = "panic_on_oom",
885 .data = &sysctl_panic_on_oom,
886 .maxlen = sizeof(sysctl_panic_on_oom),
887 .mode = 0644,
888 .proc_handler = &proc_dointvec,
889 },
890 {
David Rientjesfe071d72007-10-16 23:25:56 -0700891 .ctl_name = CTL_UNNUMBERED,
892 .procname = "oom_kill_allocating_task",
893 .data = &sysctl_oom_kill_allocating_task,
894 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
895 .mode = 0644,
896 .proc_handler = &proc_dointvec,
897 },
898 {
David Rientjesfef1bdd2008-02-07 00:14:07 -0800899 .ctl_name = CTL_UNNUMBERED,
900 .procname = "oom_dump_tasks",
901 .data = &sysctl_oom_dump_tasks,
902 .maxlen = sizeof(sysctl_oom_dump_tasks),
903 .mode = 0644,
904 .proc_handler = &proc_dointvec,
905 },
906 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 .ctl_name = VM_OVERCOMMIT_RATIO,
908 .procname = "overcommit_ratio",
909 .data = &sysctl_overcommit_ratio,
910 .maxlen = sizeof(sysctl_overcommit_ratio),
911 .mode = 0644,
912 .proc_handler = &proc_dointvec,
913 },
914 {
915 .ctl_name = VM_PAGE_CLUSTER,
916 .procname = "page-cluster",
917 .data = &page_cluster,
918 .maxlen = sizeof(int),
919 .mode = 0644,
920 .proc_handler = &proc_dointvec,
921 },
922 {
923 .ctl_name = VM_DIRTY_BACKGROUND,
924 .procname = "dirty_background_ratio",
925 .data = &dirty_background_ratio,
926 .maxlen = sizeof(dirty_background_ratio),
927 .mode = 0644,
928 .proc_handler = &proc_dointvec_minmax,
929 .strategy = &sysctl_intvec,
930 .extra1 = &zero,
931 .extra2 = &one_hundred,
932 },
933 {
934 .ctl_name = VM_DIRTY_RATIO,
935 .procname = "dirty_ratio",
936 .data = &vm_dirty_ratio,
937 .maxlen = sizeof(vm_dirty_ratio),
938 .mode = 0644,
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700939 .proc_handler = &dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 .strategy = &sysctl_intvec,
941 .extra1 = &zero,
942 .extra2 = &one_hundred,
943 },
944 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800946 .data = &dirty_writeback_interval,
947 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 .mode = 0644,
949 .proc_handler = &dirty_writeback_centisecs_handler,
950 },
951 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -0800953 .data = &dirty_expire_interval,
954 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 .mode = 0644,
Bart Samwelf6ef9432006-03-24 03:15:48 -0800956 .proc_handler = &proc_dointvec_userhz_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 },
958 {
959 .ctl_name = VM_NR_PDFLUSH_THREADS,
960 .procname = "nr_pdflush_threads",
961 .data = &nr_pdflush_threads,
962 .maxlen = sizeof nr_pdflush_threads,
963 .mode = 0444 /* read-only*/,
964 .proc_handler = &proc_dointvec,
965 },
966 {
967 .ctl_name = VM_SWAPPINESS,
968 .procname = "swappiness",
969 .data = &vm_swappiness,
970 .maxlen = sizeof(vm_swappiness),
971 .mode = 0644,
972 .proc_handler = &proc_dointvec_minmax,
973 .strategy = &sysctl_intvec,
974 .extra1 = &zero,
975 .extra2 = &one_hundred,
976 },
977#ifdef CONFIG_HUGETLB_PAGE
978 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -0700980 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 .maxlen = sizeof(unsigned long),
982 .mode = 0644,
983 .proc_handler = &hugetlb_sysctl_handler,
984 .extra1 = (void *)&hugetlb_zero,
985 .extra2 = (void *)&hugetlb_infinity,
986 },
987 {
988 .ctl_name = VM_HUGETLB_GROUP,
989 .procname = "hugetlb_shm_group",
990 .data = &sysctl_hugetlb_shm_group,
991 .maxlen = sizeof(gid_t),
992 .mode = 0644,
993 .proc_handler = &proc_dointvec,
994 },
Mel Gorman396faf02007-07-17 04:03:13 -0700995 {
996 .ctl_name = CTL_UNNUMBERED,
997 .procname = "hugepages_treat_as_movable",
998 .data = &hugepages_treat_as_movable,
999 .maxlen = sizeof(int),
1000 .mode = 0644,
1001 .proc_handler = &hugetlb_treat_movable_handler,
1002 },
Adam Litke54f9f802007-10-16 01:26:20 -07001003 {
1004 .ctl_name = CTL_UNNUMBERED,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001005 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001006 .data = NULL,
1007 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001008 .mode = 0644,
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001009 .proc_handler = &hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -07001010 .extra1 = (void *)&hugetlb_zero,
1011 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001012 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013#endif
1014 {
1015 .ctl_name = VM_LOWMEM_RESERVE_RATIO,
1016 .procname = "lowmem_reserve_ratio",
1017 .data = &sysctl_lowmem_reserve_ratio,
1018 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1019 .mode = 0644,
1020 .proc_handler = &lowmem_reserve_ratio_sysctl_handler,
1021 .strategy = &sysctl_intvec,
1022 },
1023 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001024 .ctl_name = VM_DROP_PAGECACHE,
1025 .procname = "drop_caches",
1026 .data = &sysctl_drop_caches,
1027 .maxlen = sizeof(int),
1028 .mode = 0644,
1029 .proc_handler = drop_caches_sysctl_handler,
1030 .strategy = &sysctl_intvec,
1031 },
1032 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 .ctl_name = VM_MIN_FREE_KBYTES,
1034 .procname = "min_free_kbytes",
1035 .data = &min_free_kbytes,
1036 .maxlen = sizeof(min_free_kbytes),
1037 .mode = 0644,
1038 .proc_handler = &min_free_kbytes_sysctl_handler,
1039 .strategy = &sysctl_intvec,
1040 .extra1 = &zero,
1041 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001042 {
1043 .ctl_name = VM_PERCPU_PAGELIST_FRACTION,
1044 .procname = "percpu_pagelist_fraction",
1045 .data = &percpu_pagelist_fraction,
1046 .maxlen = sizeof(percpu_pagelist_fraction),
1047 .mode = 0644,
1048 .proc_handler = &percpu_pagelist_fraction_sysctl_handler,
1049 .strategy = &sysctl_intvec,
1050 .extra1 = &min_percpu_pagelist_fract,
1051 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052#ifdef CONFIG_MMU
1053 {
1054 .ctl_name = VM_MAX_MAP_COUNT,
1055 .procname = "max_map_count",
1056 .data = &sysctl_max_map_count,
1057 .maxlen = sizeof(sysctl_max_map_count),
1058 .mode = 0644,
1059 .proc_handler = &proc_dointvec
1060 },
1061#endif
1062 {
1063 .ctl_name = VM_LAPTOP_MODE,
1064 .procname = "laptop_mode",
1065 .data = &laptop_mode,
1066 .maxlen = sizeof(laptop_mode),
1067 .mode = 0644,
Bart Samweled5b43f2006-03-24 03:15:49 -08001068 .proc_handler = &proc_dointvec_jiffies,
1069 .strategy = &sysctl_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 },
1071 {
1072 .ctl_name = VM_BLOCK_DUMP,
1073 .procname = "block_dump",
1074 .data = &block_dump,
1075 .maxlen = sizeof(block_dump),
1076 .mode = 0644,
1077 .proc_handler = &proc_dointvec,
1078 .strategy = &sysctl_intvec,
1079 .extra1 = &zero,
1080 },
1081 {
1082 .ctl_name = VM_VFS_CACHE_PRESSURE,
1083 .procname = "vfs_cache_pressure",
1084 .data = &sysctl_vfs_cache_pressure,
1085 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1086 .mode = 0644,
1087 .proc_handler = &proc_dointvec,
1088 .strategy = &sysctl_intvec,
1089 .extra1 = &zero,
1090 },
1091#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1092 {
1093 .ctl_name = VM_LEGACY_VA_LAYOUT,
1094 .procname = "legacy_va_layout",
1095 .data = &sysctl_legacy_va_layout,
1096 .maxlen = sizeof(sysctl_legacy_va_layout),
1097 .mode = 0644,
1098 .proc_handler = &proc_dointvec,
1099 .strategy = &sysctl_intvec,
1100 .extra1 = &zero,
1101 },
1102#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001103#ifdef CONFIG_NUMA
1104 {
1105 .ctl_name = VM_ZONE_RECLAIM_MODE,
1106 .procname = "zone_reclaim_mode",
1107 .data = &zone_reclaim_mode,
1108 .maxlen = sizeof(zone_reclaim_mode),
1109 .mode = 0644,
1110 .proc_handler = &proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001111 .strategy = &sysctl_intvec,
1112 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001113 },
Christoph Lameter96146342006-07-03 00:24:13 -07001114 {
1115 .ctl_name = VM_MIN_UNMAPPED,
1116 .procname = "min_unmapped_ratio",
1117 .data = &sysctl_min_unmapped_ratio,
1118 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1119 .mode = 0644,
1120 .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler,
1121 .strategy = &sysctl_intvec,
1122 .extra1 = &zero,
1123 .extra2 = &one_hundred,
1124 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001125 {
1126 .ctl_name = VM_MIN_SLAB,
1127 .procname = "min_slab_ratio",
1128 .data = &sysctl_min_slab_ratio,
1129 .maxlen = sizeof(sysctl_min_slab_ratio),
1130 .mode = 0644,
1131 .proc_handler = &sysctl_min_slab_ratio_sysctl_handler,
1132 .strategy = &sysctl_intvec,
1133 .extra1 = &zero,
1134 .extra2 = &one_hundred,
1135 },
Christoph Lameter17436602006-01-18 17:42:32 -08001136#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001137#ifdef CONFIG_SMP
1138 {
1139 .ctl_name = CTL_UNNUMBERED,
1140 .procname = "stat_interval",
1141 .data = &sysctl_stat_interval,
1142 .maxlen = sizeof(sysctl_stat_interval),
1143 .mode = 0644,
1144 .proc_handler = &proc_dointvec_jiffies,
1145 .strategy = &sysctl_jiffies,
1146 },
1147#endif
Eric Parised032182007-06-28 15:55:21 -04001148#ifdef CONFIG_SECURITY
1149 {
1150 .ctl_name = CTL_UNNUMBERED,
1151 .procname = "mmap_min_addr",
1152 .data = &mmap_min_addr,
1153 .maxlen = sizeof(unsigned long),
1154 .mode = 0644,
1155 .proc_handler = &proc_doulongvec_minmax,
1156 },
Lee Schermerhorn8daec962007-08-10 13:00:51 -07001157#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001158#ifdef CONFIG_NUMA
1159 {
1160 .ctl_name = CTL_UNNUMBERED,
1161 .procname = "numa_zonelist_order",
1162 .data = &numa_zonelist_order,
1163 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1164 .mode = 0644,
1165 .proc_handler = &numa_zonelist_order_handler,
1166 .strategy = &sysctl_string,
1167 },
1168#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001169#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001170 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001171 {
1172 .ctl_name = VM_VDSO_ENABLED,
1173 .procname = "vdso_enabled",
1174 .data = &vdso_enabled,
1175 .maxlen = sizeof(vdso_enabled),
1176 .mode = 0644,
1177 .proc_handler = &proc_dointvec,
1178 .strategy = &sysctl_intvec,
1179 .extra1 = &zero,
1180 },
1181#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001182#ifdef CONFIG_HIGHMEM
1183 {
1184 .ctl_name = CTL_UNNUMBERED,
1185 .procname = "highmem_is_dirtyable",
1186 .data = &vm_highmem_is_dirtyable,
1187 .maxlen = sizeof(vm_highmem_is_dirtyable),
1188 .mode = 0644,
1189 .proc_handler = &proc_dointvec_minmax,
1190 .strategy = &sysctl_intvec,
1191 .extra1 = &zero,
1192 .extra2 = &one,
1193 },
1194#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001195/*
1196 * NOTE: do not add new entries to this table unless you have read
1197 * Documentation/sysctl/ctl_unnumbered.txt
1198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 { .ctl_name = 0 }
1200};
1201
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001202#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001203static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001204 { .ctl_name = 0 }
1205};
1206#endif
1207
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001208static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 {
1210 .ctl_name = FS_NRINODE,
1211 .procname = "inode-nr",
1212 .data = &inodes_stat,
1213 .maxlen = 2*sizeof(int),
1214 .mode = 0444,
1215 .proc_handler = &proc_dointvec,
1216 },
1217 {
1218 .ctl_name = FS_STATINODE,
1219 .procname = "inode-state",
1220 .data = &inodes_stat,
1221 .maxlen = 7*sizeof(int),
1222 .mode = 0444,
1223 .proc_handler = &proc_dointvec,
1224 },
1225 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 .procname = "file-nr",
1227 .data = &files_stat,
1228 .maxlen = 3*sizeof(int),
1229 .mode = 0444,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -08001230 .proc_handler = &proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 },
1232 {
1233 .ctl_name = FS_MAXFILE,
1234 .procname = "file-max",
1235 .data = &files_stat.max_files,
1236 .maxlen = sizeof(int),
1237 .mode = 0644,
1238 .proc_handler = &proc_dointvec,
1239 },
1240 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001241 .ctl_name = CTL_UNNUMBERED,
1242 .procname = "nr_open",
1243 .data = &sysctl_nr_open,
1244 .maxlen = sizeof(int),
1245 .mode = 0644,
Al Viroeceea0b2008-05-10 10:08:32 -04001246 .proc_handler = &proc_dointvec_minmax,
1247 .extra1 = &sysctl_nr_open_min,
1248 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001249 },
1250 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 .ctl_name = FS_DENTRY,
1252 .procname = "dentry-state",
1253 .data = &dentry_stat,
1254 .maxlen = 6*sizeof(int),
1255 .mode = 0444,
1256 .proc_handler = &proc_dointvec,
1257 },
1258 {
1259 .ctl_name = FS_OVERFLOWUID,
1260 .procname = "overflowuid",
1261 .data = &fs_overflowuid,
1262 .maxlen = sizeof(int),
1263 .mode = 0644,
1264 .proc_handler = &proc_dointvec_minmax,
1265 .strategy = &sysctl_intvec,
1266 .extra1 = &minolduid,
1267 .extra2 = &maxolduid,
1268 },
1269 {
1270 .ctl_name = FS_OVERFLOWGID,
1271 .procname = "overflowgid",
1272 .data = &fs_overflowgid,
1273 .maxlen = sizeof(int),
1274 .mode = 0644,
1275 .proc_handler = &proc_dointvec_minmax,
1276 .strategy = &sysctl_intvec,
1277 .extra1 = &minolduid,
1278 .extra2 = &maxolduid,
1279 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001280#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 {
1282 .ctl_name = FS_LEASES,
1283 .procname = "leases-enable",
1284 .data = &leases_enable,
1285 .maxlen = sizeof(int),
1286 .mode = 0644,
1287 .proc_handler = &proc_dointvec,
1288 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290#ifdef CONFIG_DNOTIFY
1291 {
1292 .ctl_name = FS_DIR_NOTIFY,
1293 .procname = "dir-notify-enable",
1294 .data = &dir_notify_enable,
1295 .maxlen = sizeof(int),
1296 .mode = 0644,
1297 .proc_handler = &proc_dointvec,
1298 },
1299#endif
1300#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001301#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 {
1303 .ctl_name = FS_LEASE_TIME,
1304 .procname = "lease-break-time",
1305 .data = &lease_break_time,
1306 .maxlen = sizeof(int),
1307 .mode = 0644,
Kawai, Hidehiro76fdbb22007-07-19 01:48:26 -07001308 .proc_handler = &proc_dointvec_minmax,
1309 .strategy = &sysctl_intvec,
1310 .extra1 = &zero,
1311 .extra2 = &two,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001313#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001314#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 .procname = "aio-nr",
1317 .data = &aio_nr,
1318 .maxlen = sizeof(aio_nr),
1319 .mode = 0444,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001320 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 },
1322 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 .procname = "aio-max-nr",
1324 .data = &aio_max_nr,
1325 .maxlen = sizeof(aio_max_nr),
1326 .mode = 0644,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001327 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001329#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001330#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001331 {
1332 .ctl_name = FS_INOTIFY,
1333 .procname = "inotify",
1334 .mode = 0555,
1335 .child = inotify_table,
1336 },
1337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001339 {
1340 .ctl_name = KERN_SETUID_DUMPABLE,
1341 .procname = "suid_dumpable",
1342 .data = &suid_dumpable,
1343 .maxlen = sizeof(int),
1344 .mode = 0644,
1345 .proc_handler = &proc_dointvec,
1346 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001347#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1348 {
1349 .ctl_name = CTL_UNNUMBERED,
1350 .procname = "binfmt_misc",
1351 .mode = 0555,
1352 .child = binfmt_misc_table,
1353 },
1354#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001355/*
1356 * NOTE: do not add new entries to this table unless you have read
1357 * Documentation/sysctl/ctl_unnumbered.txt
1358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 { .ctl_name = 0 }
1360};
1361
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001362static struct ctl_table debug_table[] = {
Olof Johanssond0c3d532007-10-12 10:20:07 +10001363#if defined(CONFIG_X86) || defined(CONFIG_PPC)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001364 {
1365 .ctl_name = CTL_UNNUMBERED,
1366 .procname = "exception-trace",
1367 .data = &show_unhandled_signals,
1368 .maxlen = sizeof(int),
1369 .mode = 0644,
1370 .proc_handler = proc_dointvec
1371 },
1372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 { .ctl_name = 0 }
1374};
1375
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001376static struct ctl_table dev_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 { .ctl_name = 0 }
Robert Love0eeca282005-07-12 17:06:03 -04001378};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Al Viro330d57f2005-11-04 10:18:40 +00001380static DEFINE_SPINLOCK(sysctl_lock);
1381
1382/* called under sysctl_lock */
1383static int use_table(struct ctl_table_header *p)
1384{
1385 if (unlikely(p->unregistering))
1386 return 0;
1387 p->used++;
1388 return 1;
1389}
1390
1391/* called under sysctl_lock */
1392static void unuse_table(struct ctl_table_header *p)
1393{
1394 if (!--p->used)
1395 if (unlikely(p->unregistering))
1396 complete(p->unregistering);
1397}
1398
1399/* called under sysctl_lock, will reacquire if has to wait */
1400static void start_unregistering(struct ctl_table_header *p)
1401{
1402 /*
1403 * if p->used is 0, nobody will ever touch that entry again;
1404 * we'll eliminate all paths to it before dropping sysctl_lock
1405 */
1406 if (unlikely(p->used)) {
1407 struct completion wait;
1408 init_completion(&wait);
1409 p->unregistering = &wait;
1410 spin_unlock(&sysctl_lock);
1411 wait_for_completion(&wait);
1412 spin_lock(&sysctl_lock);
Al Virof7e6ced2008-07-15 01:44:23 -04001413 } else {
1414 /* anything non-NULL; we'll never dereference it */
1415 p->unregistering = ERR_PTR(-EINVAL);
Al Viro330d57f2005-11-04 10:18:40 +00001416 }
1417 /*
1418 * do not remove from the list until nobody holds it; walking the
1419 * list in do_sysctl() relies on that.
1420 */
1421 list_del_init(&p->ctl_entry);
1422}
1423
Al Virof7e6ced2008-07-15 01:44:23 -04001424void sysctl_head_get(struct ctl_table_header *head)
1425{
1426 spin_lock(&sysctl_lock);
1427 head->count++;
1428 spin_unlock(&sysctl_lock);
1429}
1430
1431void sysctl_head_put(struct ctl_table_header *head)
1432{
1433 spin_lock(&sysctl_lock);
1434 if (!--head->count)
1435 kfree(head);
1436 spin_unlock(&sysctl_lock);
1437}
1438
1439struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1440{
1441 if (!head)
1442 BUG();
1443 spin_lock(&sysctl_lock);
1444 if (!use_table(head))
1445 head = ERR_PTR(-ENOENT);
1446 spin_unlock(&sysctl_lock);
1447 return head;
1448}
1449
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001450void sysctl_head_finish(struct ctl_table_header *head)
1451{
1452 if (!head)
1453 return;
1454 spin_lock(&sysctl_lock);
1455 unuse_table(head);
1456 spin_unlock(&sysctl_lock);
1457}
1458
Al Viro73455092008-07-14 21:22:20 -04001459static struct ctl_table_set *
1460lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
1461{
1462 struct ctl_table_set *set = &root->default_set;
1463 if (root->lookup)
1464 set = root->lookup(root, namespaces);
1465 return set;
1466}
1467
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001468static struct list_head *
1469lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001470{
Al Viro73455092008-07-14 21:22:20 -04001471 struct ctl_table_set *set = lookup_header_set(root, namespaces);
1472 return &set->list;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001473}
1474
1475struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1476 struct ctl_table_header *prev)
1477{
1478 struct ctl_table_root *root;
1479 struct list_head *header_list;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001480 struct ctl_table_header *head;
1481 struct list_head *tmp;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001482
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001483 spin_lock(&sysctl_lock);
1484 if (prev) {
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001485 head = prev;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001486 tmp = &prev->ctl_entry;
1487 unuse_table(prev);
1488 goto next;
1489 }
1490 tmp = &root_table_header.ctl_entry;
1491 for (;;) {
1492 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1493
1494 if (!use_table(head))
1495 goto next;
1496 spin_unlock(&sysctl_lock);
1497 return head;
1498 next:
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001499 root = head->root;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001500 tmp = tmp->next;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001501 header_list = lookup_header_list(root, namespaces);
1502 if (tmp != header_list)
1503 continue;
1504
1505 do {
1506 root = list_entry(root->root_list.next,
1507 struct ctl_table_root, root_list);
1508 if (root == &sysctl_table_root)
1509 goto out;
1510 header_list = lookup_header_list(root, namespaces);
1511 } while (list_empty(header_list));
1512 tmp = header_list->next;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001513 }
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001514out:
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001515 spin_unlock(&sysctl_lock);
1516 return NULL;
1517}
1518
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001519struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1520{
1521 return __sysctl_head_next(current->nsproxy, prev);
1522}
1523
1524void register_sysctl_root(struct ctl_table_root *root)
1525{
1526 spin_lock(&sysctl_lock);
1527 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1528 spin_unlock(&sysctl_lock);
1529}
1530
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001531#ifdef CONFIG_SYSCTL_SYSCALL
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001532/* Perform the actual read/write of a sysctl table entry. */
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001533static int do_sysctl_strategy(struct ctl_table_root *root,
1534 struct ctl_table *table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001535 void __user *oldval, size_t __user *oldlenp,
1536 void __user *newval, size_t newlen)
1537{
1538 int op = 0, rc;
1539
1540 if (oldval)
Al Viroe6305c42008-07-15 21:03:57 -04001541 op |= MAY_READ;
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001542 if (newval)
Al Viroe6305c42008-07-15 21:03:57 -04001543 op |= MAY_WRITE;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001544 if (sysctl_perm(root, table, op))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001545 return -EPERM;
1546
1547 if (table->strategy) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001548 rc = table->strategy(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001549 if (rc < 0)
1550 return rc;
1551 if (rc > 0)
1552 return 0;
1553 }
1554
1555 /* If there is no strategy routine, or if the strategy returns
1556 * zero, proceed with automatic r/w */
1557 if (table->data && table->maxlen) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001558 rc = sysctl_data(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001559 if (rc < 0)
1560 return rc;
1561 }
1562 return 0;
1563}
1564
1565static int parse_table(int __user *name, int nlen,
1566 void __user *oldval, size_t __user *oldlenp,
1567 void __user *newval, size_t newlen,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001568 struct ctl_table_root *root,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001569 struct ctl_table *table)
1570{
1571 int n;
1572repeat:
1573 if (!nlen)
1574 return -ENOTDIR;
1575 if (get_user(n, name))
1576 return -EFAULT;
1577 for ( ; table->ctl_name || table->procname; table++) {
1578 if (!table->ctl_name)
1579 continue;
1580 if (n == table->ctl_name) {
1581 int error;
1582 if (table->child) {
Al Viroe6305c42008-07-15 21:03:57 -04001583 if (sysctl_perm(root, table, MAY_EXEC))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001584 return -EPERM;
1585 name++;
1586 nlen--;
1587 table = table->child;
1588 goto repeat;
1589 }
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001590 error = do_sysctl_strategy(root, table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001591 oldval, oldlenp,
1592 newval, newlen);
1593 return error;
1594 }
1595 }
1596 return -ENOTDIR;
1597}
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
1600 void __user *newval, size_t newlen)
1601{
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001602 struct ctl_table_header *head;
Al Viro330d57f2005-11-04 10:18:40 +00001603 int error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 if (nlen <= 0 || nlen >= CTL_MAXNAME)
1606 return -ENOTDIR;
1607 if (oldval) {
1608 int old_len;
1609 if (!oldlenp || get_user(old_len, oldlenp))
1610 return -EFAULT;
1611 }
Al Viro330d57f2005-11-04 10:18:40 +00001612
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001613 for (head = sysctl_head_next(NULL); head;
1614 head = sysctl_head_next(head)) {
Al Viro330d57f2005-11-04 10:18:40 +00001615 error = parse_table(name, nlen, oldval, oldlenp,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001616 newval, newlen,
1617 head->root, head->ctl_table);
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001618 if (error != -ENOTDIR) {
1619 sysctl_head_finish(head);
Al Viro330d57f2005-11-04 10:18:40 +00001620 break;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001621 }
1622 }
Al Viro330d57f2005-11-04 10:18:40 +00001623 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
1626asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
1627{
1628 struct __sysctl_args tmp;
1629 int error;
1630
1631 if (copy_from_user(&tmp, args, sizeof(tmp)))
1632 return -EFAULT;
1633
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001634 error = deprecated_sysctl_warning(&tmp);
1635 if (error)
1636 goto out;
1637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 lock_kernel();
1639 error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
1640 tmp.newval, tmp.newlen);
1641 unlock_kernel();
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001642out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return error;
1644}
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001645#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647/*
Eric W. Biederman1ff007e2007-02-14 00:34:11 -08001648 * sysctl_perm does NOT grant the superuser all rights automatically, because
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 * some sysctl variables are readonly even to root.
1650 */
1651
1652static int test_perm(int mode, int op)
1653{
1654 if (!current->euid)
1655 mode >>= 6;
1656 else if (in_egroup_p(0))
1657 mode >>= 3;
Al Viroe6305c42008-07-15 21:03:57 -04001658 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 return 0;
1660 return -EACCES;
1661}
1662
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001663int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 int error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001666 int mode;
1667
Al Viroe6305c42008-07-15 21:03:57 -04001668 error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (error)
1670 return error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001671
1672 if (root->permissions)
1673 mode = root->permissions(root, current->nsproxy, table);
1674 else
1675 mode = table->mode;
1676
1677 return test_perm(mode, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001680static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1681{
1682 for (; table->ctl_name || table->procname; table++) {
1683 table->parent = parent;
1684 if (table->child)
1685 sysctl_set_parent(table, table->child);
1686 }
1687}
1688
1689static __init int sysctl_init(void)
1690{
1691 sysctl_set_parent(NULL, root_table);
Holger Schurig88f458e2008-04-29 01:02:36 -07001692#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1693 {
1694 int err;
1695 err = sysctl_check_table(current->nsproxy, root_table);
1696 }
1697#endif
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001698 return 0;
1699}
1700
1701core_initcall(sysctl_init);
1702
Al Virobfbcf032008-07-27 06:31:22 +01001703static struct ctl_table *is_branch_in(struct ctl_table *branch,
1704 struct ctl_table *table)
Al Viroae7edec2008-07-15 06:33:31 -04001705{
1706 struct ctl_table *p;
1707 const char *s = branch->procname;
1708
1709 /* branch should have named subdirectory as its first element */
1710 if (!s || !branch->child)
Al Virobfbcf032008-07-27 06:31:22 +01001711 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001712
1713 /* ... and nothing else */
1714 if (branch[1].procname || branch[1].ctl_name)
Al Virobfbcf032008-07-27 06:31:22 +01001715 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001716
1717 /* table should contain subdirectory with the same name */
1718 for (p = table; p->procname || p->ctl_name; p++) {
1719 if (!p->child)
1720 continue;
1721 if (p->procname && strcmp(p->procname, s) == 0)
Al Virobfbcf032008-07-27 06:31:22 +01001722 return p;
Al Viroae7edec2008-07-15 06:33:31 -04001723 }
Al Virobfbcf032008-07-27 06:31:22 +01001724 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001725}
1726
1727/* see if attaching q to p would be an improvement */
1728static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1729{
1730 struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
Al Virobfbcf032008-07-27 06:31:22 +01001731 struct ctl_table *next;
Al Viroae7edec2008-07-15 06:33:31 -04001732 int is_better = 0;
1733 int not_in_parent = !p->attached_by;
1734
Al Virobfbcf032008-07-27 06:31:22 +01001735 while ((next = is_branch_in(by, to)) != NULL) {
Al Viroae7edec2008-07-15 06:33:31 -04001736 if (by == q->attached_by)
1737 is_better = 1;
1738 if (to == p->attached_by)
1739 not_in_parent = 1;
1740 by = by->child;
Al Virobfbcf032008-07-27 06:31:22 +01001741 to = next->child;
Al Viroae7edec2008-07-15 06:33:31 -04001742 }
1743
1744 if (is_better && not_in_parent) {
1745 q->attached_by = by;
1746 q->attached_to = to;
1747 q->parent = p;
1748 }
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001752 * __register_sysctl_paths - register a sysctl hierarchy
1753 * @root: List of sysctl headers to register on
1754 * @namespaces: Data to compute which lists of sysctl entries are visible
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001755 * @path: The path to the directory the sysctl table is in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 * @table: the top-level table structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 *
1758 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001759 * array. A completely 0 filled entry terminates the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 *
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001761 * The members of the &struct ctl_table structure are used as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 *
1763 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1764 * must be unique within that level of sysctl
1765 *
1766 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1767 * enter a sysctl file
1768 *
1769 * data - a pointer to data for use by proc_handler
1770 *
1771 * maxlen - the maximum size in bytes of the data
1772 *
1773 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1774 *
1775 * child - a pointer to the child sysctl table if this entry is a directory, or
1776 * %NULL.
1777 *
1778 * proc_handler - the text handler routine (described below)
1779 *
1780 * strategy - the strategy routine (described below)
1781 *
1782 * de - for internal use by the sysctl routines
1783 *
1784 * extra1, extra2 - extra pointers usable by the proc handler routines
1785 *
1786 * Leaf nodes in the sysctl tree will be represented by a single file
1787 * under /proc; non-leaf nodes will be represented by directories.
1788 *
1789 * sysctl(2) can automatically manage read and write requests through
1790 * the sysctl table. The data and maxlen fields of the ctl_table
1791 * struct enable minimal validation of the values being written to be
1792 * performed, and the mode field allows minimal authentication.
1793 *
1794 * More sophisticated management can be enabled by the provision of a
1795 * strategy routine with the table entry. This will be called before
1796 * any automatic read or write of the data is performed.
1797 *
1798 * The strategy routine may return
1799 *
1800 * < 0 - Error occurred (error is passed to user process)
1801 *
1802 * 0 - OK - proceed with automatic read or write.
1803 *
1804 * > 0 - OK - read or write has been done by the strategy routine, so
1805 * return immediately.
1806 *
1807 * There must be a proc_handler routine for any terminal nodes
1808 * mirrored under /proc/sys (non-terminals are handled by a built-in
1809 * directory handler). Several default handlers are available to
1810 * cover common cases -
1811 *
1812 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1813 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1814 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1815 *
1816 * It is the handler's job to read the input buffer from user memory
1817 * and process it. The handler should return 0 on success.
1818 *
1819 * This routine returns %NULL on a failure to register, and a pointer
1820 * to the table header on success.
1821 */
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001822struct ctl_table_header *__register_sysctl_paths(
1823 struct ctl_table_root *root,
1824 struct nsproxy *namespaces,
1825 const struct ctl_path *path, struct ctl_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001827 struct ctl_table_header *header;
1828 struct ctl_table *new, **prevp;
1829 unsigned int n, npath;
Al Viroae7edec2008-07-15 06:33:31 -04001830 struct ctl_table_set *set;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001831
1832 /* Count the path components */
1833 for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath)
1834 ;
1835
1836 /*
1837 * For each path component, allocate a 2-element ctl_table array.
1838 * The first array element will be filled with the sysctl entry
1839 * for this, the second will be the sentinel (ctl_name == 0).
1840 *
1841 * We allocate everything in one go so that we don't have to
1842 * worry about freeing additional memory in unregister_sysctl_table.
1843 */
1844 header = kzalloc(sizeof(struct ctl_table_header) +
1845 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1846 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return NULL;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001848
1849 new = (struct ctl_table *) (header + 1);
1850
1851 /* Now connect the dots */
1852 prevp = &header->ctl_table;
1853 for (n = 0; n < npath; ++n, ++path) {
1854 /* Copy the procname */
1855 new->procname = path->procname;
1856 new->ctl_name = path->ctl_name;
1857 new->mode = 0555;
1858
1859 *prevp = new;
1860 prevp = &new->child;
1861
1862 new += 2;
1863 }
1864 *prevp = table;
Eric W. Biederman23eb06d2007-11-30 23:52:10 +11001865 header->ctl_table_arg = table;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001866
1867 INIT_LIST_HEAD(&header->ctl_entry);
1868 header->used = 0;
1869 header->unregistering = NULL;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001870 header->root = root;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001871 sysctl_set_parent(NULL, header->ctl_table);
Al Virof7e6ced2008-07-15 01:44:23 -04001872 header->count = 1;
Holger Schurig88f458e2008-04-29 01:02:36 -07001873#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001874 if (sysctl_check_table(namespaces, header->ctl_table)) {
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001875 kfree(header);
Eric W. Biedermanfc6cd252007-10-18 03:05:54 -07001876 return NULL;
1877 }
Holger Schurig88f458e2008-04-29 01:02:36 -07001878#endif
Al Viro330d57f2005-11-04 10:18:40 +00001879 spin_lock(&sysctl_lock);
Al Viro73455092008-07-14 21:22:20 -04001880 header->set = lookup_header_set(root, namespaces);
Al Viroae7edec2008-07-15 06:33:31 -04001881 header->attached_by = header->ctl_table;
1882 header->attached_to = root_table;
1883 header->parent = &root_table_header;
1884 for (set = header->set; set; set = set->parent) {
1885 struct ctl_table_header *p;
1886 list_for_each_entry(p, &set->list, ctl_entry) {
1887 if (p->unregistering)
1888 continue;
1889 try_attach(p, header);
1890 }
1891 }
1892 header->parent->count++;
Al Viro73455092008-07-14 21:22:20 -04001893 list_add_tail(&header->ctl_entry, &header->set->list);
Al Viro330d57f2005-11-04 10:18:40 +00001894 spin_unlock(&sysctl_lock);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001895
1896 return header;
1897}
1898
1899/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001900 * register_sysctl_table_path - register a sysctl table hierarchy
1901 * @path: The path to the directory the sysctl table is in.
1902 * @table: the top-level table structure
1903 *
1904 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1905 * array. A completely 0 filled entry terminates the table.
1906 *
1907 * See __register_sysctl_paths for more details.
1908 */
1909struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1910 struct ctl_table *table)
1911{
1912 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1913 path, table);
1914}
1915
1916/**
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001917 * register_sysctl_table - register a sysctl table hierarchy
1918 * @table: the top-level table structure
1919 *
1920 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1921 * array. A completely 0 filled entry terminates the table.
1922 *
1923 * See register_sysctl_paths for more details.
1924 */
1925struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1926{
1927 static const struct ctl_path null_path[] = { {} };
1928
1929 return register_sysctl_paths(null_path, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
1932/**
1933 * unregister_sysctl_table - unregister a sysctl table hierarchy
1934 * @header: the header returned from register_sysctl_table
1935 *
1936 * Unregisters the sysctl table and all children. proc entries may not
1937 * actually be removed until they are no longer used by anyone.
1938 */
1939void unregister_sysctl_table(struct ctl_table_header * header)
1940{
Al Viro330d57f2005-11-04 10:18:40 +00001941 might_sleep();
Pavel Emelyanovf1dad162007-12-04 23:45:24 -08001942
1943 if (header == NULL)
1944 return;
1945
Al Viro330d57f2005-11-04 10:18:40 +00001946 spin_lock(&sysctl_lock);
1947 start_unregistering(header);
Al Viroae7edec2008-07-15 06:33:31 -04001948 if (!--header->parent->count) {
1949 WARN_ON(1);
1950 kfree(header->parent);
1951 }
Al Virof7e6ced2008-07-15 01:44:23 -04001952 if (!--header->count)
1953 kfree(header);
Al Viro330d57f2005-11-04 10:18:40 +00001954 spin_unlock(&sysctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Al Viro9043476f2008-07-15 08:54:06 -04001957int sysctl_is_seen(struct ctl_table_header *p)
1958{
1959 struct ctl_table_set *set = p->set;
1960 int res;
1961 spin_lock(&sysctl_lock);
1962 if (p->unregistering)
1963 res = 0;
1964 else if (!set->is_seen)
1965 res = 1;
1966 else
1967 res = set->is_seen(set);
1968 spin_unlock(&sysctl_lock);
1969 return res;
1970}
1971
Al Viro73455092008-07-14 21:22:20 -04001972void setup_sysctl_set(struct ctl_table_set *p,
1973 struct ctl_table_set *parent,
1974 int (*is_seen)(struct ctl_table_set *))
1975{
1976 INIT_LIST_HEAD(&p->list);
1977 p->parent = parent ? parent : &sysctl_table_root.default_set;
1978 p->is_seen = is_seen;
1979}
1980
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001981#else /* !CONFIG_SYSCTL */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001982struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001983{
1984 return NULL;
1985}
1986
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001987struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1988 struct ctl_table *table)
1989{
1990 return NULL;
1991}
1992
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001993void unregister_sysctl_table(struct ctl_table_header * table)
1994{
1995}
1996
Al Viro73455092008-07-14 21:22:20 -04001997void setup_sysctl_set(struct ctl_table_set *p,
1998 struct ctl_table_set *parent,
1999 int (*is_seen)(struct ctl_table_set *))
2000{
2001}
2002
Al Virof7e6ced2008-07-15 01:44:23 -04002003void sysctl_head_put(struct ctl_table_header *head)
2004{
2005}
2006
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002007#endif /* CONFIG_SYSCTL */
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009/*
2010 * /proc/sys support
2011 */
2012
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002013#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07002015static int _proc_do_string(void* data, int maxlen, int write,
2016 struct file *filp, void __user *buffer,
2017 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002018{
2019 size_t len;
2020 char __user *p;
2021 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002022
2023 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002024 *lenp = 0;
2025 return 0;
2026 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08002027
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002028 if (write) {
2029 len = 0;
2030 p = buffer;
2031 while (len < *lenp) {
2032 if (get_user(c, p++))
2033 return -EFAULT;
2034 if (c == 0 || c == '\n')
2035 break;
2036 len++;
2037 }
2038 if (len >= maxlen)
2039 len = maxlen-1;
2040 if(copy_from_user(data, buffer, len))
2041 return -EFAULT;
2042 ((char *) data)[len] = 0;
2043 *ppos += *lenp;
2044 } else {
2045 len = strlen(data);
2046 if (len > maxlen)
2047 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002048
2049 if (*ppos > len) {
2050 *lenp = 0;
2051 return 0;
2052 }
2053
2054 data += *ppos;
2055 len -= *ppos;
2056
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002057 if (len > *lenp)
2058 len = *lenp;
2059 if (len)
2060 if(copy_to_user(buffer, data, len))
2061 return -EFAULT;
2062 if (len < *lenp) {
2063 if(put_user('\n', ((char __user *) buffer) + len))
2064 return -EFAULT;
2065 len++;
2066 }
2067 *lenp = len;
2068 *ppos += len;
2069 }
2070 return 0;
2071}
2072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073/**
2074 * proc_dostring - read a string sysctl
2075 * @table: the sysctl table
2076 * @write: %TRUE if this is a write to the sysctl file
2077 * @filp: the file structure
2078 * @buffer: the user buffer
2079 * @lenp: the size of the user buffer
2080 * @ppos: file position
2081 *
2082 * Reads/writes a string from/to the user buffer. If the kernel
2083 * buffer provided is not large enough to hold the string, the
2084 * string is truncated. The copied string is %NULL-terminated.
2085 * If the string is being read by the user process, it is copied
2086 * and a newline '\n' is added. It is truncated if the buffer is
2087 * not large enough.
2088 *
2089 * Returns 0 on success.
2090 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002091int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 void __user *buffer, size_t *lenp, loff_t *ppos)
2093{
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002094 return _proc_do_string(table->data, table->maxlen, write, filp,
2095 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
2100 int *valp,
2101 int write, void *data)
2102{
2103 if (write) {
2104 *valp = *negp ? -*lvalp : *lvalp;
2105 } else {
2106 int val = *valp;
2107 if (val < 0) {
2108 *negp = -1;
2109 *lvalp = (unsigned long)-val;
2110 } else {
2111 *negp = 0;
2112 *lvalp = (unsigned long)val;
2113 }
2114 }
2115 return 0;
2116}
2117
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002118static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002119 int write, struct file *filp, void __user *buffer,
2120 size_t *lenp, loff_t *ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2122 int write, void *data),
2123 void *data)
2124{
2125#define TMPBUFLEN 21
2126 int *i, vleft, first=1, neg, val;
2127 unsigned long lval;
2128 size_t left, len;
2129
2130 char buf[TMPBUFLEN], *p;
2131 char __user *s = buffer;
2132
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002133 if (!tbl_data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 (*ppos && !write)) {
2135 *lenp = 0;
2136 return 0;
2137 }
2138
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002139 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 vleft = table->maxlen / sizeof(*i);
2141 left = *lenp;
2142
2143 if (!conv)
2144 conv = do_proc_dointvec_conv;
2145
2146 for (; left && vleft--; i++, first=0) {
2147 if (write) {
2148 while (left) {
2149 char c;
2150 if (get_user(c, s))
2151 return -EFAULT;
2152 if (!isspace(c))
2153 break;
2154 left--;
2155 s++;
2156 }
2157 if (!left)
2158 break;
2159 neg = 0;
2160 len = left;
2161 if (len > sizeof(buf) - 1)
2162 len = sizeof(buf) - 1;
2163 if (copy_from_user(buf, s, len))
2164 return -EFAULT;
2165 buf[len] = 0;
2166 p = buf;
2167 if (*p == '-' && left > 1) {
2168 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002169 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 }
2171 if (*p < '0' || *p > '9')
2172 break;
2173
2174 lval = simple_strtoul(p, &p, 0);
2175
2176 len = p-buf;
2177 if ((len < left) && *p && !isspace(*p))
2178 break;
2179 if (neg)
2180 val = -val;
2181 s += len;
2182 left -= len;
2183
2184 if (conv(&neg, &lval, i, 1, data))
2185 break;
2186 } else {
2187 p = buf;
2188 if (!first)
2189 *p++ = '\t';
2190
2191 if (conv(&neg, &lval, i, 0, data))
2192 break;
2193
2194 sprintf(p, "%s%lu", neg ? "-" : "", lval);
2195 len = strlen(buf);
2196 if (len > left)
2197 len = left;
2198 if(copy_to_user(s, buf, len))
2199 return -EFAULT;
2200 left -= len;
2201 s += len;
2202 }
2203 }
2204
2205 if (!write && !first && left) {
2206 if(put_user('\n', s))
2207 return -EFAULT;
2208 left--, s++;
2209 }
2210 if (write) {
2211 while (left) {
2212 char c;
2213 if (get_user(c, s++))
2214 return -EFAULT;
2215 if (!isspace(c))
2216 break;
2217 left--;
2218 }
2219 }
2220 if (write && first)
2221 return -EINVAL;
2222 *lenp -= left;
2223 *ppos += *lenp;
2224 return 0;
2225#undef TMPBUFLEN
2226}
2227
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002228static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002229 void __user *buffer, size_t *lenp, loff_t *ppos,
2230 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2231 int write, void *data),
2232 void *data)
2233{
2234 return __do_proc_dointvec(table->data, table, write, filp,
2235 buffer, lenp, ppos, conv, data);
2236}
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238/**
2239 * proc_dointvec - read a vector of integers
2240 * @table: the sysctl table
2241 * @write: %TRUE if this is a write to the sysctl file
2242 * @filp: the file structure
2243 * @buffer: the user buffer
2244 * @lenp: the size of the user buffer
2245 * @ppos: file position
2246 *
2247 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2248 * values from/to the user buffer, treated as an ASCII string.
2249 *
2250 * Returns 0 on success.
2251 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002252int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 void __user *buffer, size_t *lenp, loff_t *ppos)
2254{
2255 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2256 NULL,NULL);
2257}
2258
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002259/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002260 * Taint values can only be increased
2261 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002262 */
Andi Kleen25ddbb12008-10-15 22:01:41 -07002263static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002264 void __user *buffer, size_t *lenp, loff_t *ppos)
2265{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002266 struct ctl_table t;
2267 unsigned long tmptaint = get_taint();
2268 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002269
Bastian Blank91fcd412007-04-23 14:41:14 -07002270 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002271 return -EPERM;
2272
Andi Kleen25ddbb12008-10-15 22:01:41 -07002273 t = *table;
2274 t.data = &tmptaint;
2275 err = proc_doulongvec_minmax(&t, write, filp, buffer, lenp, ppos);
2276 if (err < 0)
2277 return err;
2278
2279 if (write) {
2280 /*
2281 * Poor man's atomic or. Not worth adding a primitive
2282 * to everyone's atomic.h for this
2283 */
2284 int i;
2285 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2286 if ((tmptaint >> i) & 1)
2287 add_taint(i);
2288 }
2289 }
2290
2291 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002292}
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294struct do_proc_dointvec_minmax_conv_param {
2295 int *min;
2296 int *max;
2297};
2298
2299static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2300 int *valp,
2301 int write, void *data)
2302{
2303 struct do_proc_dointvec_minmax_conv_param *param = data;
2304 if (write) {
2305 int val = *negp ? -*lvalp : *lvalp;
2306 if ((param->min && *param->min > val) ||
2307 (param->max && *param->max < val))
2308 return -EINVAL;
2309 *valp = val;
2310 } else {
2311 int val = *valp;
2312 if (val < 0) {
2313 *negp = -1;
2314 *lvalp = (unsigned long)-val;
2315 } else {
2316 *negp = 0;
2317 *lvalp = (unsigned long)val;
2318 }
2319 }
2320 return 0;
2321}
2322
2323/**
2324 * proc_dointvec_minmax - read a vector of integers with min/max values
2325 * @table: the sysctl table
2326 * @write: %TRUE if this is a write to the sysctl file
2327 * @filp: the file structure
2328 * @buffer: the user buffer
2329 * @lenp: the size of the user buffer
2330 * @ppos: file position
2331 *
2332 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2333 * values from/to the user buffer, treated as an ASCII string.
2334 *
2335 * This routine will ensure the values are within the range specified by
2336 * table->extra1 (min) and table->extra2 (max).
2337 *
2338 * Returns 0 on success.
2339 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002340int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 void __user *buffer, size_t *lenp, loff_t *ppos)
2342{
2343 struct do_proc_dointvec_minmax_conv_param param = {
2344 .min = (int *) table->extra1,
2345 .max = (int *) table->extra2,
2346 };
2347 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2348 do_proc_dointvec_minmax_conv, &param);
2349}
2350
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002351static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 struct file *filp,
2353 void __user *buffer,
2354 size_t *lenp, loff_t *ppos,
2355 unsigned long convmul,
2356 unsigned long convdiv)
2357{
2358#define TMPBUFLEN 21
2359 unsigned long *i, *min, *max, val;
2360 int vleft, first=1, neg;
2361 size_t len, left;
2362 char buf[TMPBUFLEN], *p;
2363 char __user *s = buffer;
2364
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002365 if (!data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 (*ppos && !write)) {
2367 *lenp = 0;
2368 return 0;
2369 }
2370
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002371 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 min = (unsigned long *) table->extra1;
2373 max = (unsigned long *) table->extra2;
2374 vleft = table->maxlen / sizeof(unsigned long);
2375 left = *lenp;
2376
2377 for (; left && vleft--; i++, min++, max++, first=0) {
2378 if (write) {
2379 while (left) {
2380 char c;
2381 if (get_user(c, s))
2382 return -EFAULT;
2383 if (!isspace(c))
2384 break;
2385 left--;
2386 s++;
2387 }
2388 if (!left)
2389 break;
2390 neg = 0;
2391 len = left;
2392 if (len > TMPBUFLEN-1)
2393 len = TMPBUFLEN-1;
2394 if (copy_from_user(buf, s, len))
2395 return -EFAULT;
2396 buf[len] = 0;
2397 p = buf;
2398 if (*p == '-' && left > 1) {
2399 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002400 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 }
2402 if (*p < '0' || *p > '9')
2403 break;
2404 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2405 len = p-buf;
2406 if ((len < left) && *p && !isspace(*p))
2407 break;
2408 if (neg)
2409 val = -val;
2410 s += len;
2411 left -= len;
2412
2413 if(neg)
2414 continue;
2415 if ((min && val < *min) || (max && val > *max))
2416 continue;
2417 *i = val;
2418 } else {
2419 p = buf;
2420 if (!first)
2421 *p++ = '\t';
2422 sprintf(p, "%lu", convdiv * (*i) / convmul);
2423 len = strlen(buf);
2424 if (len > left)
2425 len = left;
2426 if(copy_to_user(s, buf, len))
2427 return -EFAULT;
2428 left -= len;
2429 s += len;
2430 }
2431 }
2432
2433 if (!write && !first && left) {
2434 if(put_user('\n', s))
2435 return -EFAULT;
2436 left--, s++;
2437 }
2438 if (write) {
2439 while (left) {
2440 char c;
2441 if (get_user(c, s++))
2442 return -EFAULT;
2443 if (!isspace(c))
2444 break;
2445 left--;
2446 }
2447 }
2448 if (write && first)
2449 return -EINVAL;
2450 *lenp -= left;
2451 *ppos += *lenp;
2452 return 0;
2453#undef TMPBUFLEN
2454}
2455
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002456static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002457 struct file *filp,
2458 void __user *buffer,
2459 size_t *lenp, loff_t *ppos,
2460 unsigned long convmul,
2461 unsigned long convdiv)
2462{
2463 return __do_proc_doulongvec_minmax(table->data, table, write,
2464 filp, buffer, lenp, ppos, convmul, convdiv);
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467/**
2468 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2469 * @table: the sysctl table
2470 * @write: %TRUE if this is a write to the sysctl file
2471 * @filp: the file structure
2472 * @buffer: the user buffer
2473 * @lenp: the size of the user buffer
2474 * @ppos: file position
2475 *
2476 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2477 * values from/to the user buffer, treated as an ASCII string.
2478 *
2479 * This routine will ensure the values are within the range specified by
2480 * table->extra1 (min) and table->extra2 (max).
2481 *
2482 * Returns 0 on success.
2483 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002484int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 void __user *buffer, size_t *lenp, loff_t *ppos)
2486{
2487 return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
2488}
2489
2490/**
2491 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2492 * @table: the sysctl table
2493 * @write: %TRUE if this is a write to the sysctl file
2494 * @filp: the file structure
2495 * @buffer: the user buffer
2496 * @lenp: the size of the user buffer
2497 * @ppos: file position
2498 *
2499 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2500 * values from/to the user buffer, treated as an ASCII string. The values
2501 * are treated as milliseconds, and converted to jiffies when they are stored.
2502 *
2503 * This routine will ensure the values are within the range specified by
2504 * table->extra1 (min) and table->extra2 (max).
2505 *
2506 * Returns 0 on success.
2507 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002508int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 struct file *filp,
2510 void __user *buffer,
2511 size_t *lenp, loff_t *ppos)
2512{
2513 return do_proc_doulongvec_minmax(table, write, filp, buffer,
2514 lenp, ppos, HZ, 1000l);
2515}
2516
2517
2518static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2519 int *valp,
2520 int write, void *data)
2521{
2522 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002523 if (*lvalp > LONG_MAX / HZ)
2524 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2526 } else {
2527 int val = *valp;
2528 unsigned long lval;
2529 if (val < 0) {
2530 *negp = -1;
2531 lval = (unsigned long)-val;
2532 } else {
2533 *negp = 0;
2534 lval = (unsigned long)val;
2535 }
2536 *lvalp = lval / HZ;
2537 }
2538 return 0;
2539}
2540
2541static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2542 int *valp,
2543 int write, void *data)
2544{
2545 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002546 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2547 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2549 } else {
2550 int val = *valp;
2551 unsigned long lval;
2552 if (val < 0) {
2553 *negp = -1;
2554 lval = (unsigned long)-val;
2555 } else {
2556 *negp = 0;
2557 lval = (unsigned long)val;
2558 }
2559 *lvalp = jiffies_to_clock_t(lval);
2560 }
2561 return 0;
2562}
2563
2564static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2565 int *valp,
2566 int write, void *data)
2567{
2568 if (write) {
2569 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2570 } else {
2571 int val = *valp;
2572 unsigned long lval;
2573 if (val < 0) {
2574 *negp = -1;
2575 lval = (unsigned long)-val;
2576 } else {
2577 *negp = 0;
2578 lval = (unsigned long)val;
2579 }
2580 *lvalp = jiffies_to_msecs(lval);
2581 }
2582 return 0;
2583}
2584
2585/**
2586 * proc_dointvec_jiffies - read a vector of integers as seconds
2587 * @table: the sysctl table
2588 * @write: %TRUE if this is a write to the sysctl file
2589 * @filp: the file structure
2590 * @buffer: the user buffer
2591 * @lenp: the size of the user buffer
2592 * @ppos: file position
2593 *
2594 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2595 * values from/to the user buffer, treated as an ASCII string.
2596 * The values read are assumed to be in seconds, and are converted into
2597 * jiffies.
2598 *
2599 * Returns 0 on success.
2600 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002601int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 void __user *buffer, size_t *lenp, loff_t *ppos)
2603{
2604 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2605 do_proc_dointvec_jiffies_conv,NULL);
2606}
2607
2608/**
2609 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2610 * @table: the sysctl table
2611 * @write: %TRUE if this is a write to the sysctl file
2612 * @filp: the file structure
2613 * @buffer: the user buffer
2614 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002615 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 *
2617 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2618 * values from/to the user buffer, treated as an ASCII string.
2619 * The values read are assumed to be in 1/USER_HZ seconds, and
2620 * are converted into jiffies.
2621 *
2622 * Returns 0 on success.
2623 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002624int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 void __user *buffer, size_t *lenp, loff_t *ppos)
2626{
2627 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2628 do_proc_dointvec_userhz_jiffies_conv,NULL);
2629}
2630
2631/**
2632 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2633 * @table: the sysctl table
2634 * @write: %TRUE if this is a write to the sysctl file
2635 * @filp: the file structure
2636 * @buffer: the user buffer
2637 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002638 * @ppos: file position
2639 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 *
2641 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2642 * values from/to the user buffer, treated as an ASCII string.
2643 * The values read are assumed to be in 1/1000 seconds, and
2644 * are converted into jiffies.
2645 *
2646 * Returns 0 on success.
2647 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002648int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 void __user *buffer, size_t *lenp, loff_t *ppos)
2650{
2651 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2652 do_proc_dointvec_ms_jiffies_conv, NULL);
2653}
2654
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002655static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002656 void __user *buffer, size_t *lenp, loff_t *ppos)
2657{
2658 struct pid *new_pid;
2659 pid_t tmp;
2660 int r;
2661
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002662 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002663
2664 r = __do_proc_dointvec(&tmp, table, write, filp, buffer,
2665 lenp, ppos, NULL, NULL);
2666 if (r || !write)
2667 return r;
2668
2669 new_pid = find_get_pid(tmp);
2670 if (!new_pid)
2671 return -ESRCH;
2672
2673 put_pid(xchg(&cad_pid, new_pid));
2674 return 0;
2675}
2676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677#else /* CONFIG_PROC_FS */
2678
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002679int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 void __user *buffer, size_t *lenp, loff_t *ppos)
2681{
2682 return -ENOSYS;
2683}
2684
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002685int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 void __user *buffer, size_t *lenp, loff_t *ppos)
2687{
2688 return -ENOSYS;
2689}
2690
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002691int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 void __user *buffer, size_t *lenp, loff_t *ppos)
2693{
2694 return -ENOSYS;
2695}
2696
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002697int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 void __user *buffer, size_t *lenp, loff_t *ppos)
2699{
2700 return -ENOSYS;
2701}
2702
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002703int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 void __user *buffer, size_t *lenp, loff_t *ppos)
2705{
2706 return -ENOSYS;
2707}
2708
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002709int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 void __user *buffer, size_t *lenp, loff_t *ppos)
2711{
2712 return -ENOSYS;
2713}
2714
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002715int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 void __user *buffer, size_t *lenp, loff_t *ppos)
2717{
2718 return -ENOSYS;
2719}
2720
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002721int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 struct file *filp,
2723 void __user *buffer,
2724 size_t *lenp, loff_t *ppos)
2725{
2726 return -ENOSYS;
2727}
2728
2729
2730#endif /* CONFIG_PROC_FS */
2731
2732
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002733#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734/*
2735 * General sysctl support routines
2736 */
2737
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002738/* The generic sysctl data routine (used if no strategy routine supplied) */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002739int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002740 void __user *oldval, size_t __user *oldlenp,
2741 void __user *newval, size_t newlen)
2742{
2743 size_t len;
2744
2745 /* Get out of I don't have a variable */
2746 if (!table->data || !table->maxlen)
2747 return -ENOTDIR;
2748
2749 if (oldval && oldlenp) {
2750 if (get_user(len, oldlenp))
2751 return -EFAULT;
2752 if (len) {
2753 if (len > table->maxlen)
2754 len = table->maxlen;
2755 if (copy_to_user(oldval, table->data, len))
2756 return -EFAULT;
2757 if (put_user(len, oldlenp))
2758 return -EFAULT;
2759 }
2760 }
2761
2762 if (newval && newlen) {
2763 if (newlen > table->maxlen)
2764 newlen = table->maxlen;
2765
2766 if (copy_from_user(table->data, newval, newlen))
2767 return -EFAULT;
2768 }
2769 return 1;
2770}
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772/* The generic string strategy routine: */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002773int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002775 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (!table->data || !table->maxlen)
2778 return -ENOTDIR;
2779
2780 if (oldval && oldlenp) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002781 size_t bufsize;
2782 if (get_user(bufsize, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002784 if (bufsize) {
2785 size_t len = strlen(table->data), copied;
2786
2787 /* This shouldn't trigger for a well-formed sysctl */
2788 if (len > table->maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 len = table->maxlen;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002790
2791 /* Copy up to a max of bufsize-1 bytes of the string */
2792 copied = (len >= bufsize) ? bufsize - 1 : len;
2793
2794 if (copy_to_user(oldval, table->data, copied) ||
2795 put_user(0, (char __user *)(oldval + copied)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002797 if (put_user(len, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 return -EFAULT;
2799 }
2800 }
2801 if (newval && newlen) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002802 size_t len = newlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (len > table->maxlen)
2804 len = table->maxlen;
2805 if(copy_from_user(table->data, newval, len))
2806 return -EFAULT;
2807 if (len == table->maxlen)
2808 len--;
2809 ((char *) table->data)[len] = 0;
2810 }
Yi Yang82c9df82005-12-30 16:37:10 +08002811 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
2814/*
2815 * This function makes sure that all of the integers in the vector
2816 * are between the minimum and maximum values given in the arrays
2817 * table->extra1 and table->extra2, respectively.
2818 */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002819int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002821 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
2823
2824 if (newval && newlen) {
2825 int __user *vec = (int __user *) newval;
2826 int *min = (int *) table->extra1;
2827 int *max = (int *) table->extra2;
2828 size_t length;
2829 int i;
2830
2831 if (newlen % sizeof(int) != 0)
2832 return -EINVAL;
2833
2834 if (!table->extra1 && !table->extra2)
2835 return 0;
2836
2837 if (newlen > table->maxlen)
2838 newlen = table->maxlen;
2839 length = newlen / sizeof(int);
2840
2841 for (i = 0; i < length; i++) {
2842 int value;
2843 if (get_user(value, vec + i))
2844 return -EFAULT;
2845 if (min && value < min[i])
2846 return -EINVAL;
2847 if (max && value > max[i])
2848 return -EINVAL;
2849 }
2850 }
2851 return 0;
2852}
2853
2854/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002855int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002857 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002859 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002861
2862 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002864 if (olen) {
2865 int val;
2866
2867 if (olen < sizeof(int))
2868 return -EINVAL;
2869
2870 val = *(int *)(table->data) / HZ;
2871 if (put_user(val, (int __user *)oldval))
2872 return -EFAULT;
2873 if (put_user(sizeof(int), oldlenp))
2874 return -EFAULT;
2875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 }
2877 if (newval && newlen) {
2878 int new;
2879 if (newlen != sizeof(int))
2880 return -EINVAL;
2881 if (get_user(new, (int __user *)newval))
2882 return -EFAULT;
2883 *(int *)(table->data) = new*HZ;
2884 }
2885 return 1;
2886}
2887
2888/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002889int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002891 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002893 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002895
2896 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08002898 if (olen) {
2899 int val;
2900
2901 if (olen < sizeof(int))
2902 return -EINVAL;
2903
2904 val = jiffies_to_msecs(*(int *)(table->data));
2905 if (put_user(val, (int __user *)oldval))
2906 return -EFAULT;
2907 if (put_user(sizeof(int), oldlenp))
2908 return -EFAULT;
2909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 }
2911 if (newval && newlen) {
2912 int new;
2913 if (newlen != sizeof(int))
2914 return -EINVAL;
2915 if (get_user(new, (int __user *)newval))
2916 return -EFAULT;
2917 *(int *)(table->data) = msecs_to_jiffies(new);
2918 }
2919 return 1;
2920}
2921
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002922
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08002923
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002924#else /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
2926
2927asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
2928{
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002929 struct __sysctl_args tmp;
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002930 int error;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002931
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002932 if (copy_from_user(&tmp, args, sizeof(tmp)))
2933 return -EFAULT;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08002934
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002935 error = deprecated_sysctl_warning(&tmp);
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002936
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002937 /* If no error reading the parameters then just -ENOSYS ... */
2938 if (!error)
2939 error = -ENOSYS;
2940
2941 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942}
2943
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002944int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002945 void __user *oldval, size_t __user *oldlenp,
2946 void __user *newval, size_t newlen)
2947{
2948 return -ENOSYS;
2949}
2950
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002951int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002953 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954{
2955 return -ENOSYS;
2956}
2957
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002958int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002960 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
2962 return -ENOSYS;
2963}
2964
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002965int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002967 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
2969 return -ENOSYS;
2970}
2971
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002972int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002974 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
2976 return -ENOSYS;
2977}
2978
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002979#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002981static int deprecated_sysctl_warning(struct __sysctl_args *args)
2982{
2983 static int msg_count;
2984 int name[CTL_MAXNAME];
2985 int i;
2986
Tetsuo Handa6fc48af2007-11-14 16:58:38 -08002987 /* Check args->nlen. */
2988 if (args->nlen < 0 || args->nlen > CTL_MAXNAME)
2989 return -ENOTDIR;
2990
Eric W. Biederman7058cb02007-10-18 03:05:58 -07002991 /* Read in the sysctl name for better debug message logging */
2992 for (i = 0; i < args->nlen; i++)
2993 if (get_user(name[i], args->name + i))
2994 return -EFAULT;
2995
2996 /* Ignore accesses to kernel.version */
2997 if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION))
2998 return 0;
2999
3000 if (msg_count < 5) {
3001 msg_count++;
3002 printk(KERN_INFO
3003 "warning: process `%s' used the deprecated sysctl "
3004 "system call with ", current->comm);
3005 for (i = 0; i < args->nlen; i++)
3006 printk("%d.", name[i]);
3007 printk("\n");
3008 }
3009 return 0;
3010}
3011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012/*
3013 * No sense putting this after each symbol definition, twice,
3014 * exception granted :-)
3015 */
3016EXPORT_SYMBOL(proc_dointvec);
3017EXPORT_SYMBOL(proc_dointvec_jiffies);
3018EXPORT_SYMBOL(proc_dointvec_minmax);
3019EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3020EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3021EXPORT_SYMBOL(proc_dostring);
3022EXPORT_SYMBOL(proc_doulongvec_minmax);
3023EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3024EXPORT_SYMBOL(register_sysctl_table);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11003025EXPORT_SYMBOL(register_sysctl_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026EXPORT_SYMBOL(sysctl_intvec);
3027EXPORT_SYMBOL(sysctl_jiffies);
3028EXPORT_SYMBOL(sysctl_ms_jiffies);
3029EXPORT_SYMBOL(sysctl_string);
Eric W. Biederman49a0c452007-10-18 03:05:23 -07003030EXPORT_SYMBOL(sysctl_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031EXPORT_SYMBOL(unregister_sysctl_table);