blob: 2ccee08f92f11643b2b023e314bddfd9679c8c79 [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>
David Howells12e22c52009-04-03 16:42:35 +010051#include <linux/slow-work.h>
Peter Zijlstra1ccd1542009-04-09 10:53:45 +020052#include <linux/perf_counter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <asm/uaccess.h>
55#include <asm/processor.h>
56
Andi Kleen29cbc782006-09-30 01:47:55 +020057#ifdef CONFIG_X86
58#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010059#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010060#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020061#endif
62
Eric W. Biederman7058cb02007-10-18 03:05:58 -070063static int deprecated_sysctl_warning(struct __sysctl_args *args);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#if defined(CONFIG_SYSCTL)
66
67/* External variables not in a header file. */
68extern int C_A_D;
Ingo Molnar45807a12007-07-15 23:40:10 -070069extern int print_fatal_signals;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070extern int sysctl_overcommit_memory;
71extern int sysctl_overcommit_ratio;
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -070072extern int sysctl_panic_on_oom;
David Rientjesfe071d72007-10-16 23:25:56 -070073extern int sysctl_oom_kill_allocating_task;
David Rientjesfef1bdd2008-02-07 00:14:07 -080074extern int sysctl_oom_dump_tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075extern int max_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern int core_uses_pid;
Alan Coxd6e71142005-06-23 00:09:43 -070077extern int suid_dumpable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078extern char core_pattern[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern int pid_max;
80extern int min_free_kbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081extern int pid_max_min, pid_max_max;
Andrew Morton9d0243b2006-01-08 01:00:39 -080082extern int sysctl_drop_caches;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -080083extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +020084extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +010085extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -040086extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +000087#ifndef CONFIG_MMU
88extern int sysctl_nr_trim_pages;
89#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -070090#ifdef CONFIG_RCU_TORTURE_TEST
91extern int rcutorture_runnable;
92#endif /* #ifdef CONFIG_RCU_TORTURE_TEST */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070094/* Constants used for minimum and maximum */
Bron Gondwana195cf452008-02-04 22:29:20 -080095#ifdef CONFIG_DETECT_SOFTLOCKUP
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070096static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +020097static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -070098#endif
99
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700100static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700101static int __maybe_unused one = 1;
102static int __maybe_unused two = 2;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800103static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700104static int one_hundred = 100;
105
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700106/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
107static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
110static int maxolduid = 65535;
111static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800112static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114static int ngroups_max = NGROUPS_MAX;
115
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200116#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117extern char modprobe_path[];
Kees Cook3d433212009-04-02 15:49:29 -0700118extern int modules_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_CHR_DEV_SG
121extern int sg_big_buff;
122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
David S. Miller72c57ed2008-09-11 23:29:54 -0700124#ifdef CONFIG_SPARC
David S. Miller17f04fb2008-09-11 23:33:53 -0700125#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif
127
David S. Miller08714202008-11-16 23:49:24 -0800128#ifdef CONFIG_SPARC64
129extern int sysctl_tsb_ratio;
130#endif
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#ifdef __hppa__
133extern int pwrsw_enabled;
134extern int unaligned_enabled;
135#endif
136
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800137#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#ifdef CONFIG_MATHEMU
139extern int sysctl_ieee_emulation_warnings;
140#endif
141extern int sysctl_userprocess_debug;
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700142extern int spin_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#ifdef CONFIG_BSD_PROCESS_ACCT
146extern int acct_parm[];
147#endif
148
Jes Sorensend2b176e2006-02-28 09:42:23 -0800149#ifdef CONFIG_IA64
150extern int no_unaligned_warning;
Doug Chapman88fc2412009-01-15 10:38:56 -0800151extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800152#endif
153
Ingo Molnar23f78d42006-06-27 02:54:53 -0700154#ifdef CONFIG_RT_MUTEXES
155extern int max_lock_depth;
156#endif
157
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700158#ifdef CONFIG_PROC_SYSCTL
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700159static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700160 void __user *buffer, size_t *lenp, loff_t *ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -0700161static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800162 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700163#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700164
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700165static struct ctl_table root_table[];
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100166static struct ctl_table_root sysctl_table_root;
167static struct ctl_table_header root_table_header = {
Al Virob380b0d2008-09-04 17:05:57 +0100168 .count = 1,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100169 .ctl_table = root_table,
Al Viro73455092008-07-14 21:22:20 -0400170 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100171 .root = &sysctl_table_root,
Al Viro73455092008-07-14 21:22:20 -0400172 .set = &sysctl_table_root.default_set,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100173};
174static struct ctl_table_root sysctl_table_root = {
175 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
Al Viro73455092008-07-14 21:22:20 -0400176 .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100177};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700179static struct ctl_table kern_table[];
180static struct ctl_table vm_table[];
181static struct ctl_table fs_table[];
182static struct ctl_table debug_table[];
183static struct ctl_table dev_table[];
184extern struct ctl_table random_table[];
Amy Griffis2d9048e2006-06-01 13:10:59 -0700185#ifdef CONFIG_INOTIFY_USER
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700186extern struct ctl_table inotify_table[];
Robert Love0399cb02005-07-13 12:38:18 -0400187#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -0800188#ifdef CONFIG_EPOLL
189extern struct ctl_table epoll_table[];
190#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
193int sysctl_legacy_va_layout;
194#endif
195
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700196extern int prove_locking;
197extern int lock_stat;
Eric W. Biederman9bc9a6b2006-12-08 02:39:56 -0800198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/* The default sysctl tables: */
200
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700201static struct ctl_table root_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 {
203 .ctl_name = CTL_KERN,
204 .procname = "kernel",
205 .mode = 0555,
206 .child = kern_table,
207 },
208 {
209 .ctl_name = CTL_VM,
210 .procname = "vm",
211 .mode = 0555,
212 .child = vm_table,
213 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .ctl_name = CTL_FS,
216 .procname = "fs",
217 .mode = 0555,
218 .child = fs_table,
219 },
220 {
221 .ctl_name = CTL_DEBUG,
222 .procname = "debug",
223 .mode = 0555,
224 .child = debug_table,
225 },
226 {
227 .ctl_name = CTL_DEV,
228 .procname = "dev",
229 .mode = 0555,
230 .child = dev_table,
231 },
Andrew Morton2be7fe02007-07-15 23:41:21 -0700232/*
233 * NOTE: do not add new entries to this table unless you have read
234 * Documentation/sysctl/ctl_unnumbered.txt
235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 { .ctl_name = 0 }
237};
238
Ingo Molnar77e54a12007-07-09 18:52:00 +0200239#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100240static int min_sched_granularity_ns = 100000; /* 100 usecs */
241static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
242static int min_wakeup_granularity_ns; /* 0 usecs */
243static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200244#endif
245
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700246static struct ctl_table kern_table[] = {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200247#ifdef CONFIG_SCHED_DEBUG
248 {
249 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100250 .procname = "sched_min_granularity_ns",
251 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200252 .maxlen = sizeof(unsigned int),
253 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100254 .proc_handler = &sched_nr_latency_handler,
255 .strategy = &sysctl_intvec,
256 .extra1 = &min_sched_granularity_ns,
257 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200258 },
259 {
260 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra21805082007-08-25 18:41:53 +0200261 .procname = "sched_latency_ns",
262 .data = &sysctl_sched_latency,
263 .maxlen = sizeof(unsigned int),
264 .mode = 0644,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100265 .proc_handler = &sched_nr_latency_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200266 .strategy = &sysctl_intvec,
267 .extra1 = &min_sched_granularity_ns,
268 .extra2 = &max_sched_granularity_ns,
269 },
270 {
271 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200272 .procname = "sched_wakeup_granularity_ns",
273 .data = &sysctl_sched_wakeup_granularity,
274 .maxlen = sizeof(unsigned int),
275 .mode = 0644,
276 .proc_handler = &proc_dointvec_minmax,
277 .strategy = &sysctl_intvec,
278 .extra1 = &min_wakeup_granularity_ns,
279 .extra2 = &max_wakeup_granularity_ns,
280 },
281 {
282 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200283 .procname = "sched_shares_ratelimit",
284 .data = &sysctl_sched_shares_ratelimit,
285 .maxlen = sizeof(unsigned int),
286 .mode = 0644,
287 .proc_handler = &proc_dointvec,
288 },
289 {
290 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200291 .procname = "sched_shares_thresh",
292 .data = &sysctl_sched_shares_thresh,
293 .maxlen = sizeof(unsigned int),
294 .mode = 0644,
295 .proc_handler = &proc_dointvec_minmax,
296 .strategy = &sysctl_intvec,
297 .extra1 = &zero,
298 },
299 {
300 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200301 .procname = "sched_child_runs_first",
302 .data = &sysctl_sched_child_runs_first,
303 .maxlen = sizeof(unsigned int),
304 .mode = 0644,
305 .proc_handler = &proc_dointvec,
306 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200307 {
308 .ctl_name = CTL_UNNUMBERED,
309 .procname = "sched_features",
310 .data = &sysctl_sched_features,
311 .maxlen = sizeof(unsigned int),
312 .mode = 0644,
313 .proc_handler = &proc_dointvec,
314 },
Ingo Molnarda84d962007-10-15 17:00:18 +0200315 {
316 .ctl_name = CTL_UNNUMBERED,
317 .procname = "sched_migration_cost",
318 .data = &sysctl_sched_migration_cost,
319 .maxlen = sizeof(unsigned int),
320 .mode = 0644,
321 .proc_handler = &proc_dointvec,
322 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100323 {
324 .ctl_name = CTL_UNNUMBERED,
325 .procname = "sched_nr_migrate",
326 .data = &sysctl_sched_nr_migrate,
327 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100328 .mode = 0644,
329 .proc_handler = &proc_dointvec,
330 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530331 {
332 .ctl_name = CTL_UNNUMBERED,
333 .procname = "timer_migration",
334 .data = &sysctl_timer_migration,
335 .maxlen = sizeof(unsigned int),
336 .mode = 0644,
337 .proc_handler = &proc_dointvec,
338 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200339#endif
Ingo Molnar1799e352007-09-19 23:34:46 +0200340 {
341 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100342 .procname = "sched_rt_period_us",
343 .data = &sysctl_sched_rt_period,
344 .maxlen = sizeof(unsigned int),
345 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200346 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100347 },
348 {
349 .ctl_name = CTL_UNNUMBERED,
350 .procname = "sched_rt_runtime_us",
351 .data = &sysctl_sched_rt_runtime,
352 .maxlen = sizeof(int),
353 .mode = 0644,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200354 .proc_handler = &sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100355 },
356 {
357 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar1799e352007-09-19 23:34:46 +0200358 .procname = "sched_compat_yield",
359 .data = &sysctl_sched_compat_yield,
360 .maxlen = sizeof(unsigned int),
361 .mode = 0644,
362 .proc_handler = &proc_dointvec,
363 },
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700364#ifdef CONFIG_PROVE_LOCKING
365 {
366 .ctl_name = CTL_UNNUMBERED,
367 .procname = "prove_locking",
368 .data = &prove_locking,
369 .maxlen = sizeof(int),
370 .mode = 0644,
371 .proc_handler = &proc_dointvec,
372 },
373#endif
374#ifdef CONFIG_LOCK_STAT
375 {
376 .ctl_name = CTL_UNNUMBERED,
377 .procname = "lock_stat",
378 .data = &lock_stat,
379 .maxlen = sizeof(int),
380 .mode = 0644,
381 .proc_handler = &proc_dointvec,
382 },
383#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200384 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 .ctl_name = KERN_PANIC,
386 .procname = "panic",
387 .data = &panic_timeout,
388 .maxlen = sizeof(int),
389 .mode = 0644,
390 .proc_handler = &proc_dointvec,
391 },
392 {
393 .ctl_name = KERN_CORE_USES_PID,
394 .procname = "core_uses_pid",
395 .data = &core_uses_pid,
396 .maxlen = sizeof(int),
397 .mode = 0644,
398 .proc_handler = &proc_dointvec,
399 },
400 {
401 .ctl_name = KERN_CORE_PATTERN,
402 .procname = "core_pattern",
403 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700404 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 .mode = 0644,
406 .proc_handler = &proc_dostring,
407 .strategy = &sysctl_string,
408 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800409#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700412 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800413 .mode = 0644,
Andi Kleen25ddbb12008-10-15 22:01:41 -0700414 .proc_handler = &proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800416#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100417#ifdef CONFIG_LATENCYTOP
418 {
419 .procname = "latencytop",
420 .data = &latencytop_enabled,
421 .maxlen = sizeof(int),
422 .mode = 0644,
423 .proc_handler = &proc_dointvec,
424 },
425#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#ifdef CONFIG_BLK_DEV_INITRD
427 {
428 .ctl_name = KERN_REALROOTDEV,
429 .procname = "real-root-dev",
430 .data = &real_root_dev,
431 .maxlen = sizeof(int),
432 .mode = 0644,
433 .proc_handler = &proc_dointvec,
434 },
435#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700436 {
437 .ctl_name = CTL_UNNUMBERED,
438 .procname = "print-fatal-signals",
439 .data = &print_fatal_signals,
440 .maxlen = sizeof(int),
441 .mode = 0644,
442 .proc_handler = &proc_dointvec,
443 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700444#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 {
446 .ctl_name = KERN_SPARC_REBOOT,
447 .procname = "reboot-cmd",
448 .data = reboot_command,
449 .maxlen = 256,
450 .mode = 0644,
451 .proc_handler = &proc_dostring,
452 .strategy = &sysctl_string,
453 },
454 {
455 .ctl_name = KERN_SPARC_STOP_A,
456 .procname = "stop-a",
457 .data = &stop_a_enabled,
458 .maxlen = sizeof (int),
459 .mode = 0644,
460 .proc_handler = &proc_dointvec,
461 },
462 {
463 .ctl_name = KERN_SPARC_SCONS_PWROFF,
464 .procname = "scons-poweroff",
465 .data = &scons_pwroff,
466 .maxlen = sizeof (int),
467 .mode = 0644,
468 .proc_handler = &proc_dointvec,
469 },
470#endif
David S. Miller08714202008-11-16 23:49:24 -0800471#ifdef CONFIG_SPARC64
472 {
473 .ctl_name = CTL_UNNUMBERED,
474 .procname = "tsb-ratio",
475 .data = &sysctl_tsb_ratio,
476 .maxlen = sizeof (int),
477 .mode = 0644,
478 .proc_handler = &proc_dointvec,
479 },
480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#ifdef __hppa__
482 {
483 .ctl_name = KERN_HPPA_PWRSW,
484 .procname = "soft-power",
485 .data = &pwrsw_enabled,
486 .maxlen = sizeof (int),
487 .mode = 0644,
488 .proc_handler = &proc_dointvec,
489 },
490 {
491 .ctl_name = KERN_HPPA_UNALIGNED,
492 .procname = "unaligned-trap",
493 .data = &unaligned_enabled,
494 .maxlen = sizeof (int),
495 .mode = 0644,
496 .proc_handler = &proc_dointvec,
497 },
498#endif
499 {
500 .ctl_name = KERN_CTLALTDEL,
501 .procname = "ctrl-alt-del",
502 .data = &C_A_D,
503 .maxlen = sizeof(int),
504 .mode = 0644,
505 .proc_handler = &proc_dointvec,
506 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400507#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200508 {
509 .ctl_name = CTL_UNNUMBERED,
510 .procname = "ftrace_enabled",
511 .data = &ftrace_enabled,
512 .maxlen = sizeof(int),
513 .mode = 0644,
514 .proc_handler = &ftrace_enable_sysctl,
515 },
516#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500517#ifdef CONFIG_STACK_TRACER
518 {
519 .ctl_name = CTL_UNNUMBERED,
520 .procname = "stack_tracer_enabled",
521 .data = &stack_tracer_enabled,
522 .maxlen = sizeof(int),
523 .mode = 0644,
524 .proc_handler = &stack_trace_sysctl,
525 },
526#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400527#ifdef CONFIG_TRACING
528 {
529 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100530 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400531 .data = &ftrace_dump_on_oops,
532 .maxlen = sizeof(int),
533 .mode = 0644,
534 .proc_handler = &proc_dointvec,
535 },
536#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200537#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 {
539 .ctl_name = KERN_MODPROBE,
540 .procname = "modprobe",
541 .data = &modprobe_path,
542 .maxlen = KMOD_PATH_LEN,
543 .mode = 0644,
544 .proc_handler = &proc_dostring,
545 .strategy = &sysctl_string,
546 },
Kees Cook3d433212009-04-02 15:49:29 -0700547 {
548 .ctl_name = CTL_UNNUMBERED,
549 .procname = "modules_disabled",
550 .data = &modules_disabled,
551 .maxlen = sizeof(int),
552 .mode = 0644,
553 /* only handle a transition from default "0" to "1" */
554 .proc_handler = &proc_dointvec_minmax,
555 .extra1 = &one,
556 .extra2 = &one,
557 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif
Andrew Morton57ae2502006-06-23 02:05:47 -0700559#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 {
561 .ctl_name = KERN_HOTPLUG,
562 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100563 .data = &uevent_helper,
564 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 .mode = 0644,
566 .proc_handler = &proc_dostring,
567 .strategy = &sysctl_string,
568 },
569#endif
570#ifdef CONFIG_CHR_DEV_SG
571 {
572 .ctl_name = KERN_SG_BIG_BUFF,
573 .procname = "sg-big-buff",
574 .data = &sg_big_buff,
575 .maxlen = sizeof (int),
576 .mode = 0444,
577 .proc_handler = &proc_dointvec,
578 },
579#endif
580#ifdef CONFIG_BSD_PROCESS_ACCT
581 {
582 .ctl_name = KERN_ACCT,
583 .procname = "acct",
584 .data = &acct_parm,
585 .maxlen = 3*sizeof(int),
586 .mode = 0644,
587 .proc_handler = &proc_dointvec,
588 },
589#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590#ifdef CONFIG_MAGIC_SYSRQ
591 {
592 .ctl_name = KERN_SYSRQ,
593 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800594 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 .maxlen = sizeof (int),
596 .mode = 0644,
597 .proc_handler = &proc_dointvec,
598 },
599#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700600#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700603 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .maxlen = sizeof (int),
605 .mode = 0600,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700606 .proc_handler = &proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700608#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 {
610 .ctl_name = KERN_MAX_THREADS,
611 .procname = "threads-max",
612 .data = &max_threads,
613 .maxlen = sizeof(int),
614 .mode = 0644,
615 .proc_handler = &proc_dointvec,
616 },
617 {
618 .ctl_name = KERN_RANDOM,
619 .procname = "random",
620 .mode = 0555,
621 .child = random_table,
622 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 {
624 .ctl_name = KERN_OVERFLOWUID,
625 .procname = "overflowuid",
626 .data = &overflowuid,
627 .maxlen = sizeof(int),
628 .mode = 0644,
629 .proc_handler = &proc_dointvec_minmax,
630 .strategy = &sysctl_intvec,
631 .extra1 = &minolduid,
632 .extra2 = &maxolduid,
633 },
634 {
635 .ctl_name = KERN_OVERFLOWGID,
636 .procname = "overflowgid",
637 .data = &overflowgid,
638 .maxlen = sizeof(int),
639 .mode = 0644,
640 .proc_handler = &proc_dointvec_minmax,
641 .strategy = &sysctl_intvec,
642 .extra1 = &minolduid,
643 .extra2 = &maxolduid,
644 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800645#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#ifdef CONFIG_MATHEMU
647 {
648 .ctl_name = KERN_IEEE_EMULATION_WARNINGS,
649 .procname = "ieee_emulation_warnings",
650 .data = &sysctl_ieee_emulation_warnings,
651 .maxlen = sizeof(int),
652 .mode = 0644,
653 .proc_handler = &proc_dointvec,
654 },
655#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 {
657 .ctl_name = KERN_S390_USER_DEBUG_LOGGING,
658 .procname = "userprocess_debug",
659 .data = &sysctl_userprocess_debug,
660 .maxlen = sizeof(int),
661 .mode = 0644,
662 .proc_handler = &proc_dointvec,
663 },
664#endif
665 {
666 .ctl_name = KERN_PIDMAX,
667 .procname = "pid_max",
668 .data = &pid_max,
669 .maxlen = sizeof (int),
670 .mode = 0644,
671 .proc_handler = &proc_dointvec_minmax,
672 .strategy = sysctl_intvec,
673 .extra1 = &pid_max_min,
674 .extra2 = &pid_max_max,
675 },
676 {
677 .ctl_name = KERN_PANIC_ON_OOPS,
678 .procname = "panic_on_oops",
679 .data = &panic_on_oops,
680 .maxlen = sizeof(int),
681 .mode = 0644,
682 .proc_handler = &proc_dointvec,
683 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800684#if defined CONFIG_PRINTK
685 {
686 .ctl_name = KERN_PRINTK,
687 .procname = "printk",
688 .data = &console_loglevel,
689 .maxlen = 4*sizeof(int),
690 .mode = 0644,
691 .proc_handler = &proc_dointvec,
692 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 {
694 .ctl_name = KERN_PRINTK_RATELIMIT,
695 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700696 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 .maxlen = sizeof(int),
698 .mode = 0644,
699 .proc_handler = &proc_dointvec_jiffies,
700 .strategy = &sysctl_jiffies,
701 },
702 {
703 .ctl_name = KERN_PRINTK_RATELIMIT_BURST,
704 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700705 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 .maxlen = sizeof(int),
707 .mode = 0644,
708 .proc_handler = &proc_dointvec,
709 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 {
712 .ctl_name = KERN_NGROUPS_MAX,
713 .procname = "ngroups_max",
714 .data = &ngroups_max,
715 .maxlen = sizeof (int),
716 .mode = 0444,
717 .proc_handler = &proc_dointvec,
718 },
719#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
720 {
721 .ctl_name = KERN_UNKNOWN_NMI_PANIC,
722 .procname = "unknown_nmi_panic",
723 .data = &unknown_nmi_panic,
724 .maxlen = sizeof (int),
725 .mode = 0644,
Don Zickus2fbe7b22006-09-26 10:52:27 +0200726 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 },
Don Zickus407984f2006-09-26 10:52:27 +0200728 {
Don Zickus407984f2006-09-26 10:52:27 +0200729 .procname = "nmi_watchdog",
730 .data = &nmi_watchdog_enabled,
731 .maxlen = sizeof (int),
732 .mode = 0644,
733 .proc_handler = &proc_nmi_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 },
735#endif
736#if defined(CONFIG_X86)
737 {
Don Zickus8da5add2006-09-26 10:52:27 +0200738 .ctl_name = KERN_PANIC_ON_NMI,
739 .procname = "panic_on_unrecovered_nmi",
740 .data = &panic_on_unrecovered_nmi,
741 .maxlen = sizeof(int),
742 .mode = 0644,
743 .proc_handler = &proc_dointvec,
744 },
745 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 .ctl_name = KERN_BOOTLOADER_TYPE,
747 .procname = "bootloader_type",
748 .data = &bootloader_type,
749 .maxlen = sizeof (int),
750 .mode = 0444,
751 .proc_handler = &proc_dointvec,
752 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100753 {
754 .ctl_name = CTL_UNNUMBERED,
H. Peter Anvin50312962009-05-07 16:54:11 -0700755 .procname = "bootloader_version",
756 .data = &bootloader_version,
757 .maxlen = sizeof (int),
758 .mode = 0444,
759 .proc_handler = &proc_dointvec,
760 },
761 {
762 .ctl_name = CTL_UNNUMBERED,
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100763 .procname = "kstack_depth_to_print",
764 .data = &kstack_depth_to_print,
765 .maxlen = sizeof(int),
766 .mode = 0644,
767 .proc_handler = &proc_dointvec,
768 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100769 {
770 .ctl_name = CTL_UNNUMBERED,
771 .procname = "io_delay_type",
772 .data = &io_delay_type,
773 .maxlen = sizeof(int),
774 .mode = 0644,
775 .proc_handler = &proc_dointvec,
776 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800778#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 {
780 .ctl_name = KERN_RANDOMIZE,
781 .procname = "randomize_va_space",
782 .data = &randomize_va_space,
783 .maxlen = sizeof(int),
784 .mode = 0644,
785 .proc_handler = &proc_dointvec,
786 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800787#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800788#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700789 {
790 .ctl_name = KERN_SPIN_RETRY,
791 .procname = "spin_retry",
792 .data = &spin_retry,
793 .maxlen = sizeof (int),
794 .mode = 0644,
795 .proc_handler = &proc_dointvec,
796 },
797#endif
Len Brown673d5b42007-07-28 03:33:16 -0400798#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800799 {
Pavel Machekc255d842006-02-20 18:27:58 -0800800 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700801 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800802 .maxlen = sizeof (unsigned long),
803 .mode = 0644,
Stefan Seyfried7f99f062006-03-02 02:54:34 -0800804 .proc_handler = &proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800805 },
806#endif
Jes Sorensend2b176e2006-02-28 09:42:23 -0800807#ifdef CONFIG_IA64
808 {
809 .ctl_name = KERN_IA64_UNALIGNED,
810 .procname = "ignore-unaligned-usertrap",
811 .data = &no_unaligned_warning,
812 .maxlen = sizeof (int),
813 .mode = 0644,
814 .proc_handler = &proc_dointvec,
815 },
Doug Chapman88fc2412009-01-15 10:38:56 -0800816 {
817 .ctl_name = CTL_UNNUMBERED,
818 .procname = "unaligned-dump-stack",
819 .data = &unaligned_dump_stack,
820 .maxlen = sizeof (int),
821 .mode = 0644,
822 .proc_handler = &proc_dointvec,
823 },
Jes Sorensend2b176e2006-02-28 09:42:23 -0800824#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700825#ifdef CONFIG_DETECT_SOFTLOCKUP
826 {
827 .ctl_name = CTL_UNNUMBERED,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200828 .procname = "softlockup_panic",
829 .data = &softlockup_panic,
830 .maxlen = sizeof(int),
831 .mode = 0644,
Hiroshi Shimamoto4dca10a2008-07-07 18:37:04 -0700832 .proc_handler = &proc_dointvec_minmax,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200833 .strategy = &sysctl_intvec,
834 .extra1 = &zero,
835 .extra2 = &one,
836 },
837 {
838 .ctl_name = CTL_UNNUMBERED,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700839 .procname = "softlockup_thresh",
840 .data = &softlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200841 .maxlen = sizeof(int),
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700842 .mode = 0644,
Mandeep Singh Bainesbaf48f62009-01-12 21:15:17 -0800843 .proc_handler = &proc_dosoftlockup_thresh,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700844 .strategy = &sysctl_intvec,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200845 .extra1 = &neg_one,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700846 .extra2 = &sixty,
847 },
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800848#endif
849#ifdef CONFIG_DETECT_HUNG_TASK
850 {
851 .ctl_name = CTL_UNNUMBERED,
852 .procname = "hung_task_panic",
853 .data = &sysctl_hung_task_panic,
854 .maxlen = sizeof(int),
855 .mode = 0644,
856 .proc_handler = &proc_dointvec_minmax,
857 .strategy = &sysctl_intvec,
858 .extra1 = &zero,
859 .extra2 = &one,
860 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100861 {
862 .ctl_name = CTL_UNNUMBERED,
863 .procname = "hung_task_check_count",
864 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100865 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100866 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100867 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100868 .strategy = &sysctl_intvec,
869 },
870 {
871 .ctl_name = CTL_UNNUMBERED,
872 .procname = "hung_task_timeout_secs",
873 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100874 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100875 .mode = 0644,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800876 .proc_handler = &proc_dohung_task_timeout_secs,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100877 .strategy = &sysctl_intvec,
878 },
879 {
880 .ctl_name = CTL_UNNUMBERED,
881 .procname = "hung_task_warnings",
882 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100883 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100884 .mode = 0644,
Ingo Molnar90739082008-01-25 21:08:34 +0100885 .proc_handler = &proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100886 .strategy = &sysctl_intvec,
887 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700888#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200889#ifdef CONFIG_COMPAT
890 {
891 .ctl_name = KERN_COMPAT_LOG,
892 .procname = "compat-log",
893 .data = &compat_log,
894 .maxlen = sizeof (int),
895 .mode = 0644,
896 .proc_handler = &proc_dointvec,
897 },
898#endif
Ingo Molnar23f78d42006-06-27 02:54:53 -0700899#ifdef CONFIG_RT_MUTEXES
900 {
901 .ctl_name = KERN_MAX_LOCK_DEPTH,
902 .procname = "max_lock_depth",
903 .data = &max_lock_depth,
904 .maxlen = sizeof(int),
905 .mode = 0644,
906 .proc_handler = &proc_dointvec,
907 },
908#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700909 {
910 .ctl_name = CTL_UNNUMBERED,
911 .procname = "poweroff_cmd",
912 .data = &poweroff_cmd,
913 .maxlen = POWEROFF_CMD_PATH_LEN,
914 .mode = 0644,
915 .proc_handler = &proc_dostring,
916 .strategy = &sysctl_string,
917 },
David Howells0b77f5b2008-04-29 01:01:32 -0700918#ifdef CONFIG_KEYS
919 {
920 .ctl_name = CTL_UNNUMBERED,
921 .procname = "keys",
922 .mode = 0555,
923 .child = key_sysctls,
924 },
925#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700926#ifdef CONFIG_RCU_TORTURE_TEST
927 {
928 .ctl_name = CTL_UNNUMBERED,
929 .procname = "rcutorture_runnable",
930 .data = &rcutorture_runnable,
931 .maxlen = sizeof(int),
932 .mode = 0644,
933 .proc_handler = &proc_dointvec,
934 },
935#endif
David Howells12e22c52009-04-03 16:42:35 +0100936#ifdef CONFIG_SLOW_WORK
937 {
938 .ctl_name = CTL_UNNUMBERED,
939 .procname = "slow-work",
940 .mode = 0555,
941 .child = slow_work_sysctls,
942 },
943#endif
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200944#ifdef CONFIG_PERF_COUNTERS
945 {
946 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstra07647712009-06-11 11:18:36 +0200947 .procname = "perf_counter_paranoid",
948 .data = &sysctl_perf_counter_paranoid,
949 .maxlen = sizeof(sysctl_perf_counter_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200950 .mode = 0644,
951 .proc_handler = &proc_dointvec,
952 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +0200953 {
954 .ctl_name = CTL_UNNUMBERED,
955 .procname = "perf_counter_mlock_kb",
956 .data = &sysctl_perf_counter_mlock,
957 .maxlen = sizeof(sysctl_perf_counter_mlock),
958 .mode = 0644,
959 .proc_handler = &proc_dointvec,
960 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200961 {
962 .ctl_name = CTL_UNNUMBERED,
Peter Zijlstradf58ab22009-06-11 11:25:05 +0200963 .procname = "perf_counter_max_sample_rate",
964 .data = &sysctl_perf_counter_sample_rate,
965 .maxlen = sizeof(sysctl_perf_counter_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200966 .mode = 0644,
967 .proc_handler = &proc_dointvec,
968 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200969#endif
Andrew Mortoned2c12f2007-07-19 01:50:35 -0700970/*
971 * NOTE: do not add new entries to this table unless you have read
972 * Documentation/sysctl/ctl_unnumbered.txt
973 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 { .ctl_name = 0 }
975};
976
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700977static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 {
979 .ctl_name = VM_OVERCOMMIT_MEMORY,
980 .procname = "overcommit_memory",
981 .data = &sysctl_overcommit_memory,
982 .maxlen = sizeof(sysctl_overcommit_memory),
983 .mode = 0644,
984 .proc_handler = &proc_dointvec,
985 },
986 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700987 .ctl_name = VM_PANIC_ON_OOM,
988 .procname = "panic_on_oom",
989 .data = &sysctl_panic_on_oom,
990 .maxlen = sizeof(sysctl_panic_on_oom),
991 .mode = 0644,
992 .proc_handler = &proc_dointvec,
993 },
994 {
David Rientjesfe071d72007-10-16 23:25:56 -0700995 .ctl_name = CTL_UNNUMBERED,
996 .procname = "oom_kill_allocating_task",
997 .data = &sysctl_oom_kill_allocating_task,
998 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
999 .mode = 0644,
1000 .proc_handler = &proc_dointvec,
1001 },
1002 {
David Rientjesfef1bdd2008-02-07 00:14:07 -08001003 .ctl_name = CTL_UNNUMBERED,
1004 .procname = "oom_dump_tasks",
1005 .data = &sysctl_oom_dump_tasks,
1006 .maxlen = sizeof(sysctl_oom_dump_tasks),
1007 .mode = 0644,
1008 .proc_handler = &proc_dointvec,
1009 },
1010 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .ctl_name = VM_OVERCOMMIT_RATIO,
1012 .procname = "overcommit_ratio",
1013 .data = &sysctl_overcommit_ratio,
1014 .maxlen = sizeof(sysctl_overcommit_ratio),
1015 .mode = 0644,
1016 .proc_handler = &proc_dointvec,
1017 },
1018 {
1019 .ctl_name = VM_PAGE_CLUSTER,
1020 .procname = "page-cluster",
1021 .data = &page_cluster,
1022 .maxlen = sizeof(int),
1023 .mode = 0644,
1024 .proc_handler = &proc_dointvec,
1025 },
1026 {
1027 .ctl_name = VM_DIRTY_BACKGROUND,
1028 .procname = "dirty_background_ratio",
1029 .data = &dirty_background_ratio,
1030 .maxlen = sizeof(dirty_background_ratio),
1031 .mode = 0644,
David Rientjes2da02992009-01-06 14:39:31 -08001032 .proc_handler = &dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 .strategy = &sysctl_intvec,
1034 .extra1 = &zero,
1035 .extra2 = &one_hundred,
1036 },
1037 {
David Rientjes2da02992009-01-06 14:39:31 -08001038 .ctl_name = CTL_UNNUMBERED,
1039 .procname = "dirty_background_bytes",
1040 .data = &dirty_background_bytes,
1041 .maxlen = sizeof(dirty_background_bytes),
1042 .mode = 0644,
1043 .proc_handler = &dirty_background_bytes_handler,
1044 .strategy = &sysctl_intvec,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001045 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001046 },
1047 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .ctl_name = VM_DIRTY_RATIO,
1049 .procname = "dirty_ratio",
1050 .data = &vm_dirty_ratio,
1051 .maxlen = sizeof(vm_dirty_ratio),
1052 .mode = 0644,
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07001053 .proc_handler = &dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 .strategy = &sysctl_intvec,
1055 .extra1 = &zero,
1056 .extra2 = &one_hundred,
1057 },
1058 {
David Rientjes2da02992009-01-06 14:39:31 -08001059 .ctl_name = CTL_UNNUMBERED,
1060 .procname = "dirty_bytes",
1061 .data = &vm_dirty_bytes,
1062 .maxlen = sizeof(vm_dirty_bytes),
1063 .mode = 0644,
1064 .proc_handler = &dirty_bytes_handler,
1065 .strategy = &sysctl_intvec,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001066 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001067 },
1068 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001070 .data = &dirty_writeback_interval,
1071 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .mode = 0644,
1073 .proc_handler = &dirty_writeback_centisecs_handler,
1074 },
1075 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001077 .data = &dirty_expire_interval,
1078 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 .mode = 0644,
Alexey Dobriyan704503d2009-03-31 15:23:18 -07001080 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 },
1082 {
1083 .ctl_name = VM_NR_PDFLUSH_THREADS,
1084 .procname = "nr_pdflush_threads",
1085 .data = &nr_pdflush_threads,
1086 .maxlen = sizeof nr_pdflush_threads,
1087 .mode = 0444 /* read-only*/,
1088 .proc_handler = &proc_dointvec,
1089 },
1090 {
1091 .ctl_name = VM_SWAPPINESS,
1092 .procname = "swappiness",
1093 .data = &vm_swappiness,
1094 .maxlen = sizeof(vm_swappiness),
1095 .mode = 0644,
1096 .proc_handler = &proc_dointvec_minmax,
1097 .strategy = &sysctl_intvec,
1098 .extra1 = &zero,
1099 .extra2 = &one_hundred,
1100 },
1101#ifdef CONFIG_HUGETLB_PAGE
1102 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001104 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 .maxlen = sizeof(unsigned long),
1106 .mode = 0644,
1107 .proc_handler = &hugetlb_sysctl_handler,
1108 .extra1 = (void *)&hugetlb_zero,
1109 .extra2 = (void *)&hugetlb_infinity,
1110 },
1111 {
1112 .ctl_name = VM_HUGETLB_GROUP,
1113 .procname = "hugetlb_shm_group",
1114 .data = &sysctl_hugetlb_shm_group,
1115 .maxlen = sizeof(gid_t),
1116 .mode = 0644,
1117 .proc_handler = &proc_dointvec,
1118 },
Mel Gorman396faf02007-07-17 04:03:13 -07001119 {
1120 .ctl_name = CTL_UNNUMBERED,
1121 .procname = "hugepages_treat_as_movable",
1122 .data = &hugepages_treat_as_movable,
1123 .maxlen = sizeof(int),
1124 .mode = 0644,
1125 .proc_handler = &hugetlb_treat_movable_handler,
1126 },
Adam Litke54f9f802007-10-16 01:26:20 -07001127 {
1128 .ctl_name = CTL_UNNUMBERED,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001129 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001130 .data = NULL,
1131 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001132 .mode = 0644,
Nishanth Aravamudana3d0c6a2008-02-08 04:18:18 -08001133 .proc_handler = &hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -07001134 .extra1 = (void *)&hugetlb_zero,
1135 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001136 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137#endif
1138 {
1139 .ctl_name = VM_LOWMEM_RESERVE_RATIO,
1140 .procname = "lowmem_reserve_ratio",
1141 .data = &sysctl_lowmem_reserve_ratio,
1142 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1143 .mode = 0644,
1144 .proc_handler = &lowmem_reserve_ratio_sysctl_handler,
1145 .strategy = &sysctl_intvec,
1146 },
1147 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001148 .ctl_name = VM_DROP_PAGECACHE,
1149 .procname = "drop_caches",
1150 .data = &sysctl_drop_caches,
1151 .maxlen = sizeof(int),
1152 .mode = 0644,
1153 .proc_handler = drop_caches_sysctl_handler,
1154 .strategy = &sysctl_intvec,
1155 },
1156 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 .ctl_name = VM_MIN_FREE_KBYTES,
1158 .procname = "min_free_kbytes",
1159 .data = &min_free_kbytes,
1160 .maxlen = sizeof(min_free_kbytes),
1161 .mode = 0644,
1162 .proc_handler = &min_free_kbytes_sysctl_handler,
1163 .strategy = &sysctl_intvec,
1164 .extra1 = &zero,
1165 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001166 {
1167 .ctl_name = VM_PERCPU_PAGELIST_FRACTION,
1168 .procname = "percpu_pagelist_fraction",
1169 .data = &percpu_pagelist_fraction,
1170 .maxlen = sizeof(percpu_pagelist_fraction),
1171 .mode = 0644,
1172 .proc_handler = &percpu_pagelist_fraction_sysctl_handler,
1173 .strategy = &sysctl_intvec,
1174 .extra1 = &min_percpu_pagelist_fract,
1175 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176#ifdef CONFIG_MMU
1177 {
1178 .ctl_name = VM_MAX_MAP_COUNT,
1179 .procname = "max_map_count",
1180 .data = &sysctl_max_map_count,
1181 .maxlen = sizeof(sysctl_max_map_count),
1182 .mode = 0644,
1183 .proc_handler = &proc_dointvec
1184 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001185#else
1186 {
1187 .ctl_name = CTL_UNNUMBERED,
1188 .procname = "nr_trim_pages",
1189 .data = &sysctl_nr_trim_pages,
1190 .maxlen = sizeof(sysctl_nr_trim_pages),
1191 .mode = 0644,
1192 .proc_handler = &proc_dointvec_minmax,
1193 .strategy = &sysctl_intvec,
1194 .extra1 = &zero,
1195 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196#endif
1197 {
1198 .ctl_name = VM_LAPTOP_MODE,
1199 .procname = "laptop_mode",
1200 .data = &laptop_mode,
1201 .maxlen = sizeof(laptop_mode),
1202 .mode = 0644,
Bart Samweled5b43f2006-03-24 03:15:49 -08001203 .proc_handler = &proc_dointvec_jiffies,
1204 .strategy = &sysctl_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 },
1206 {
1207 .ctl_name = VM_BLOCK_DUMP,
1208 .procname = "block_dump",
1209 .data = &block_dump,
1210 .maxlen = sizeof(block_dump),
1211 .mode = 0644,
1212 .proc_handler = &proc_dointvec,
1213 .strategy = &sysctl_intvec,
1214 .extra1 = &zero,
1215 },
1216 {
1217 .ctl_name = VM_VFS_CACHE_PRESSURE,
1218 .procname = "vfs_cache_pressure",
1219 .data = &sysctl_vfs_cache_pressure,
1220 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1221 .mode = 0644,
1222 .proc_handler = &proc_dointvec,
1223 .strategy = &sysctl_intvec,
1224 .extra1 = &zero,
1225 },
1226#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1227 {
1228 .ctl_name = VM_LEGACY_VA_LAYOUT,
1229 .procname = "legacy_va_layout",
1230 .data = &sysctl_legacy_va_layout,
1231 .maxlen = sizeof(sysctl_legacy_va_layout),
1232 .mode = 0644,
1233 .proc_handler = &proc_dointvec,
1234 .strategy = &sysctl_intvec,
1235 .extra1 = &zero,
1236 },
1237#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001238#ifdef CONFIG_NUMA
1239 {
1240 .ctl_name = VM_ZONE_RECLAIM_MODE,
1241 .procname = "zone_reclaim_mode",
1242 .data = &zone_reclaim_mode,
1243 .maxlen = sizeof(zone_reclaim_mode),
1244 .mode = 0644,
1245 .proc_handler = &proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001246 .strategy = &sysctl_intvec,
1247 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001248 },
Christoph Lameter96146342006-07-03 00:24:13 -07001249 {
1250 .ctl_name = VM_MIN_UNMAPPED,
1251 .procname = "min_unmapped_ratio",
1252 .data = &sysctl_min_unmapped_ratio,
1253 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1254 .mode = 0644,
1255 .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler,
1256 .strategy = &sysctl_intvec,
1257 .extra1 = &zero,
1258 .extra2 = &one_hundred,
1259 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001260 {
1261 .ctl_name = VM_MIN_SLAB,
1262 .procname = "min_slab_ratio",
1263 .data = &sysctl_min_slab_ratio,
1264 .maxlen = sizeof(sysctl_min_slab_ratio),
1265 .mode = 0644,
1266 .proc_handler = &sysctl_min_slab_ratio_sysctl_handler,
1267 .strategy = &sysctl_intvec,
1268 .extra1 = &zero,
1269 .extra2 = &one_hundred,
1270 },
Christoph Lameter17436602006-01-18 17:42:32 -08001271#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001272#ifdef CONFIG_SMP
1273 {
1274 .ctl_name = CTL_UNNUMBERED,
1275 .procname = "stat_interval",
1276 .data = &sysctl_stat_interval,
1277 .maxlen = sizeof(sysctl_stat_interval),
1278 .mode = 0644,
1279 .proc_handler = &proc_dointvec_jiffies,
1280 .strategy = &sysctl_jiffies,
1281 },
1282#endif
Eric Parised032182007-06-28 15:55:21 -04001283 {
1284 .ctl_name = CTL_UNNUMBERED,
1285 .procname = "mmap_min_addr",
1286 .data = &mmap_min_addr,
1287 .maxlen = sizeof(unsigned long),
1288 .mode = 0644,
1289 .proc_handler = &proc_doulongvec_minmax,
1290 },
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001291#ifdef CONFIG_NUMA
1292 {
1293 .ctl_name = CTL_UNNUMBERED,
1294 .procname = "numa_zonelist_order",
1295 .data = &numa_zonelist_order,
1296 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1297 .mode = 0644,
1298 .proc_handler = &numa_zonelist_order_handler,
1299 .strategy = &sysctl_string,
1300 },
1301#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001302#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001303 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001304 {
1305 .ctl_name = VM_VDSO_ENABLED,
1306 .procname = "vdso_enabled",
1307 .data = &vdso_enabled,
1308 .maxlen = sizeof(vdso_enabled),
1309 .mode = 0644,
1310 .proc_handler = &proc_dointvec,
1311 .strategy = &sysctl_intvec,
1312 .extra1 = &zero,
1313 },
1314#endif
Bron Gondwana195cf452008-02-04 22:29:20 -08001315#ifdef CONFIG_HIGHMEM
1316 {
1317 .ctl_name = CTL_UNNUMBERED,
1318 .procname = "highmem_is_dirtyable",
1319 .data = &vm_highmem_is_dirtyable,
1320 .maxlen = sizeof(vm_highmem_is_dirtyable),
1321 .mode = 0644,
1322 .proc_handler = &proc_dointvec_minmax,
1323 .strategy = &sysctl_intvec,
1324 .extra1 = &zero,
1325 .extra2 = &one,
1326 },
1327#endif
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001328 {
1329 .ctl_name = CTL_UNNUMBERED,
1330 .procname = "scan_unevictable_pages",
1331 .data = &scan_unevictable_pages,
1332 .maxlen = sizeof(scan_unevictable_pages),
1333 .mode = 0644,
1334 .proc_handler = &scan_unevictable_handler,
1335 },
Andrew Morton2be7fe02007-07-15 23:41:21 -07001336/*
1337 * NOTE: do not add new entries to this table unless you have read
1338 * Documentation/sysctl/ctl_unnumbered.txt
1339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 { .ctl_name = 0 }
1341};
1342
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001343#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001344static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001345 { .ctl_name = 0 }
1346};
1347#endif
1348
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001349static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 {
1351 .ctl_name = FS_NRINODE,
1352 .procname = "inode-nr",
1353 .data = &inodes_stat,
1354 .maxlen = 2*sizeof(int),
1355 .mode = 0444,
1356 .proc_handler = &proc_dointvec,
1357 },
1358 {
1359 .ctl_name = FS_STATINODE,
1360 .procname = "inode-state",
1361 .data = &inodes_stat,
1362 .maxlen = 7*sizeof(int),
1363 .mode = 0444,
1364 .proc_handler = &proc_dointvec,
1365 },
1366 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 .procname = "file-nr",
1368 .data = &files_stat,
1369 .maxlen = 3*sizeof(int),
1370 .mode = 0444,
Dipankar Sarma529bf6b2006-03-07 21:55:35 -08001371 .proc_handler = &proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 },
1373 {
1374 .ctl_name = FS_MAXFILE,
1375 .procname = "file-max",
1376 .data = &files_stat.max_files,
1377 .maxlen = sizeof(int),
1378 .mode = 0644,
1379 .proc_handler = &proc_dointvec,
1380 },
1381 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001382 .ctl_name = CTL_UNNUMBERED,
1383 .procname = "nr_open",
1384 .data = &sysctl_nr_open,
1385 .maxlen = sizeof(int),
1386 .mode = 0644,
Al Viroeceea0b2008-05-10 10:08:32 -04001387 .proc_handler = &proc_dointvec_minmax,
1388 .extra1 = &sysctl_nr_open_min,
1389 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001390 },
1391 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 .ctl_name = FS_DENTRY,
1393 .procname = "dentry-state",
1394 .data = &dentry_stat,
1395 .maxlen = 6*sizeof(int),
1396 .mode = 0444,
1397 .proc_handler = &proc_dointvec,
1398 },
1399 {
1400 .ctl_name = FS_OVERFLOWUID,
1401 .procname = "overflowuid",
1402 .data = &fs_overflowuid,
1403 .maxlen = sizeof(int),
1404 .mode = 0644,
1405 .proc_handler = &proc_dointvec_minmax,
1406 .strategy = &sysctl_intvec,
1407 .extra1 = &minolduid,
1408 .extra2 = &maxolduid,
1409 },
1410 {
1411 .ctl_name = FS_OVERFLOWGID,
1412 .procname = "overflowgid",
1413 .data = &fs_overflowgid,
1414 .maxlen = sizeof(int),
1415 .mode = 0644,
1416 .proc_handler = &proc_dointvec_minmax,
1417 .strategy = &sysctl_intvec,
1418 .extra1 = &minolduid,
1419 .extra2 = &maxolduid,
1420 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001421#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 {
1423 .ctl_name = FS_LEASES,
1424 .procname = "leases-enable",
1425 .data = &leases_enable,
1426 .maxlen = sizeof(int),
1427 .mode = 0644,
1428 .proc_handler = &proc_dointvec,
1429 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431#ifdef CONFIG_DNOTIFY
1432 {
1433 .ctl_name = FS_DIR_NOTIFY,
1434 .procname = "dir-notify-enable",
1435 .data = &dir_notify_enable,
1436 .maxlen = sizeof(int),
1437 .mode = 0644,
1438 .proc_handler = &proc_dointvec,
1439 },
1440#endif
1441#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001442#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 {
1444 .ctl_name = FS_LEASE_TIME,
1445 .procname = "lease-break-time",
1446 .data = &lease_break_time,
1447 .maxlen = sizeof(int),
1448 .mode = 0644,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001449 .proc_handler = &proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001451#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001452#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 .procname = "aio-nr",
1455 .data = &aio_nr,
1456 .maxlen = sizeof(aio_nr),
1457 .mode = 0444,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001458 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 },
1460 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 .procname = "aio-max-nr",
1462 .data = &aio_max_nr,
1463 .maxlen = sizeof(aio_max_nr),
1464 .mode = 0644,
Zach Brownd55b5fd2005-11-07 00:59:31 -08001465 .proc_handler = &proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001467#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001468#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001469 {
1470 .ctl_name = FS_INOTIFY,
1471 .procname = "inotify",
1472 .mode = 0555,
1473 .child = inotify_table,
1474 },
1475#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001476#ifdef CONFIG_EPOLL
1477 {
1478 .procname = "epoll",
1479 .mode = 0555,
1480 .child = epoll_table,
1481 },
1482#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001484 {
1485 .ctl_name = KERN_SETUID_DUMPABLE,
1486 .procname = "suid_dumpable",
1487 .data = &suid_dumpable,
1488 .maxlen = sizeof(int),
1489 .mode = 0644,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001490 .proc_handler = &proc_dointvec_minmax,
1491 .strategy = &sysctl_intvec,
1492 .extra1 = &zero,
1493 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001494 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001495#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1496 {
1497 .ctl_name = CTL_UNNUMBERED,
1498 .procname = "binfmt_misc",
1499 .mode = 0555,
1500 .child = binfmt_misc_table,
1501 },
1502#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001503/*
1504 * NOTE: do not add new entries to this table unless you have read
1505 * Documentation/sysctl/ctl_unnumbered.txt
1506 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 { .ctl_name = 0 }
1508};
1509
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001510static struct ctl_table debug_table[] = {
Olof Johanssond0c3d532007-10-12 10:20:07 +10001511#if defined(CONFIG_X86) || defined(CONFIG_PPC)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001512 {
1513 .ctl_name = CTL_UNNUMBERED,
1514 .procname = "exception-trace",
1515 .data = &show_unhandled_signals,
1516 .maxlen = sizeof(int),
1517 .mode = 0644,
1518 .proc_handler = proc_dointvec
1519 },
1520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 { .ctl_name = 0 }
1522};
1523
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001524static struct ctl_table dev_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 { .ctl_name = 0 }
Robert Love0eeca282005-07-12 17:06:03 -04001526};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Al Viro330d57f2005-11-04 10:18:40 +00001528static DEFINE_SPINLOCK(sysctl_lock);
1529
1530/* called under sysctl_lock */
1531static int use_table(struct ctl_table_header *p)
1532{
1533 if (unlikely(p->unregistering))
1534 return 0;
1535 p->used++;
1536 return 1;
1537}
1538
1539/* called under sysctl_lock */
1540static void unuse_table(struct ctl_table_header *p)
1541{
1542 if (!--p->used)
1543 if (unlikely(p->unregistering))
1544 complete(p->unregistering);
1545}
1546
1547/* called under sysctl_lock, will reacquire if has to wait */
1548static void start_unregistering(struct ctl_table_header *p)
1549{
1550 /*
1551 * if p->used is 0, nobody will ever touch that entry again;
1552 * we'll eliminate all paths to it before dropping sysctl_lock
1553 */
1554 if (unlikely(p->used)) {
1555 struct completion wait;
1556 init_completion(&wait);
1557 p->unregistering = &wait;
1558 spin_unlock(&sysctl_lock);
1559 wait_for_completion(&wait);
1560 spin_lock(&sysctl_lock);
Al Virof7e6ced2008-07-15 01:44:23 -04001561 } else {
1562 /* anything non-NULL; we'll never dereference it */
1563 p->unregistering = ERR_PTR(-EINVAL);
Al Viro330d57f2005-11-04 10:18:40 +00001564 }
1565 /*
1566 * do not remove from the list until nobody holds it; walking the
1567 * list in do_sysctl() relies on that.
1568 */
1569 list_del_init(&p->ctl_entry);
1570}
1571
Al Virof7e6ced2008-07-15 01:44:23 -04001572void sysctl_head_get(struct ctl_table_header *head)
1573{
1574 spin_lock(&sysctl_lock);
1575 head->count++;
1576 spin_unlock(&sysctl_lock);
1577}
1578
1579void sysctl_head_put(struct ctl_table_header *head)
1580{
1581 spin_lock(&sysctl_lock);
1582 if (!--head->count)
1583 kfree(head);
1584 spin_unlock(&sysctl_lock);
1585}
1586
1587struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1588{
1589 if (!head)
1590 BUG();
1591 spin_lock(&sysctl_lock);
1592 if (!use_table(head))
1593 head = ERR_PTR(-ENOENT);
1594 spin_unlock(&sysctl_lock);
1595 return head;
1596}
1597
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001598void sysctl_head_finish(struct ctl_table_header *head)
1599{
1600 if (!head)
1601 return;
1602 spin_lock(&sysctl_lock);
1603 unuse_table(head);
1604 spin_unlock(&sysctl_lock);
1605}
1606
Al Viro73455092008-07-14 21:22:20 -04001607static struct ctl_table_set *
1608lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
1609{
1610 struct ctl_table_set *set = &root->default_set;
1611 if (root->lookup)
1612 set = root->lookup(root, namespaces);
1613 return set;
1614}
1615
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001616static struct list_head *
1617lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001618{
Al Viro73455092008-07-14 21:22:20 -04001619 struct ctl_table_set *set = lookup_header_set(root, namespaces);
1620 return &set->list;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001621}
1622
1623struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1624 struct ctl_table_header *prev)
1625{
1626 struct ctl_table_root *root;
1627 struct list_head *header_list;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001628 struct ctl_table_header *head;
1629 struct list_head *tmp;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001630
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001631 spin_lock(&sysctl_lock);
1632 if (prev) {
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001633 head = prev;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001634 tmp = &prev->ctl_entry;
1635 unuse_table(prev);
1636 goto next;
1637 }
1638 tmp = &root_table_header.ctl_entry;
1639 for (;;) {
1640 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1641
1642 if (!use_table(head))
1643 goto next;
1644 spin_unlock(&sysctl_lock);
1645 return head;
1646 next:
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001647 root = head->root;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001648 tmp = tmp->next;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001649 header_list = lookup_header_list(root, namespaces);
1650 if (tmp != header_list)
1651 continue;
1652
1653 do {
1654 root = list_entry(root->root_list.next,
1655 struct ctl_table_root, root_list);
1656 if (root == &sysctl_table_root)
1657 goto out;
1658 header_list = lookup_header_list(root, namespaces);
1659 } while (list_empty(header_list));
1660 tmp = header_list->next;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001661 }
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001662out:
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001663 spin_unlock(&sysctl_lock);
1664 return NULL;
1665}
1666
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001667struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1668{
1669 return __sysctl_head_next(current->nsproxy, prev);
1670}
1671
1672void register_sysctl_root(struct ctl_table_root *root)
1673{
1674 spin_lock(&sysctl_lock);
1675 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1676 spin_unlock(&sysctl_lock);
1677}
1678
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001679#ifdef CONFIG_SYSCTL_SYSCALL
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001680/* Perform the actual read/write of a sysctl table entry. */
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001681static int do_sysctl_strategy(struct ctl_table_root *root,
1682 struct ctl_table *table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001683 void __user *oldval, size_t __user *oldlenp,
1684 void __user *newval, size_t newlen)
1685{
1686 int op = 0, rc;
1687
1688 if (oldval)
Al Viroe6305c42008-07-15 21:03:57 -04001689 op |= MAY_READ;
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001690 if (newval)
Al Viroe6305c42008-07-15 21:03:57 -04001691 op |= MAY_WRITE;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001692 if (sysctl_perm(root, table, op))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001693 return -EPERM;
1694
1695 if (table->strategy) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001696 rc = table->strategy(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001697 if (rc < 0)
1698 return rc;
1699 if (rc > 0)
1700 return 0;
1701 }
1702
1703 /* If there is no strategy routine, or if the strategy returns
1704 * zero, proceed with automatic r/w */
1705 if (table->data && table->maxlen) {
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001706 rc = sysctl_data(table, oldval, oldlenp, newval, newlen);
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001707 if (rc < 0)
1708 return rc;
1709 }
1710 return 0;
1711}
1712
1713static int parse_table(int __user *name, int nlen,
1714 void __user *oldval, size_t __user *oldlenp,
1715 void __user *newval, size_t newlen,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001716 struct ctl_table_root *root,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001717 struct ctl_table *table)
1718{
1719 int n;
1720repeat:
1721 if (!nlen)
1722 return -ENOTDIR;
1723 if (get_user(n, name))
1724 return -EFAULT;
1725 for ( ; table->ctl_name || table->procname; table++) {
1726 if (!table->ctl_name)
1727 continue;
1728 if (n == table->ctl_name) {
1729 int error;
1730 if (table->child) {
Al Viroe6305c42008-07-15 21:03:57 -04001731 if (sysctl_perm(root, table, MAY_EXEC))
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001732 return -EPERM;
1733 name++;
1734 nlen--;
1735 table = table->child;
1736 goto repeat;
1737 }
Alexey Dobriyanf221e722008-10-15 22:04:23 -07001738 error = do_sysctl_strategy(root, table,
Pavel Emelyanov2c4c7152008-04-29 01:02:41 -07001739 oldval, oldlenp,
1740 newval, newlen);
1741 return error;
1742 }
1743 }
1744 return -ENOTDIR;
1745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
1748 void __user *newval, size_t newlen)
1749{
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001750 struct ctl_table_header *head;
Al Viro330d57f2005-11-04 10:18:40 +00001751 int error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (nlen <= 0 || nlen >= CTL_MAXNAME)
1754 return -ENOTDIR;
1755 if (oldval) {
1756 int old_len;
1757 if (!oldlenp || get_user(old_len, oldlenp))
1758 return -EFAULT;
1759 }
Al Viro330d57f2005-11-04 10:18:40 +00001760
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001761 for (head = sysctl_head_next(NULL); head;
1762 head = sysctl_head_next(head)) {
Al Viro330d57f2005-11-04 10:18:40 +00001763 error = parse_table(name, nlen, oldval, oldlenp,
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001764 newval, newlen,
1765 head->root, head->ctl_table);
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001766 if (error != -ENOTDIR) {
1767 sysctl_head_finish(head);
Al Viro330d57f2005-11-04 10:18:40 +00001768 break;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001769 }
1770 }
Al Viro330d57f2005-11-04 10:18:40 +00001771 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772}
1773
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01001774SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 struct __sysctl_args tmp;
1777 int error;
1778
1779 if (copy_from_user(&tmp, args, sizeof(tmp)))
1780 return -EFAULT;
1781
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001782 error = deprecated_sysctl_warning(&tmp);
1783 if (error)
1784 goto out;
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 lock_kernel();
1787 error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
1788 tmp.newval, tmp.newlen);
1789 unlock_kernel();
Eric W. Biederman7058cb02007-10-18 03:05:58 -07001790out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return error;
1792}
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001793#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795/*
Eric W. Biederman1ff007eb2007-02-14 00:34:11 -08001796 * sysctl_perm does NOT grant the superuser all rights automatically, because
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 * some sysctl variables are readonly even to root.
1798 */
1799
1800static int test_perm(int mode, int op)
1801{
David Howells76aac0e2008-11-14 10:39:12 +11001802 if (!current_euid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 mode >>= 6;
1804 else if (in_egroup_p(0))
1805 mode >>= 3;
Al Viroe6305c42008-07-15 21:03:57 -04001806 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return 0;
1808 return -EACCES;
1809}
1810
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001811int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 int error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001814 int mode;
1815
Al Viroe6305c42008-07-15 21:03:57 -04001816 error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (error)
1818 return error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001819
1820 if (root->permissions)
1821 mode = root->permissions(root, current->nsproxy, table);
1822 else
1823 mode = table->mode;
1824
1825 return test_perm(mode, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001828static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1829{
1830 for (; table->ctl_name || table->procname; table++) {
1831 table->parent = parent;
1832 if (table->child)
1833 sysctl_set_parent(table, table->child);
1834 }
1835}
1836
1837static __init int sysctl_init(void)
1838{
1839 sysctl_set_parent(NULL, root_table);
Holger Schurig88f458e2008-04-29 01:02:36 -07001840#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1841 {
1842 int err;
1843 err = sysctl_check_table(current->nsproxy, root_table);
1844 }
1845#endif
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001846 return 0;
1847}
1848
1849core_initcall(sysctl_init);
1850
Al Virobfbcf032008-07-27 06:31:22 +01001851static struct ctl_table *is_branch_in(struct ctl_table *branch,
1852 struct ctl_table *table)
Al Viroae7edec2008-07-15 06:33:31 -04001853{
1854 struct ctl_table *p;
1855 const char *s = branch->procname;
1856
1857 /* branch should have named subdirectory as its first element */
1858 if (!s || !branch->child)
Al Virobfbcf032008-07-27 06:31:22 +01001859 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001860
1861 /* ... and nothing else */
1862 if (branch[1].procname || branch[1].ctl_name)
Al Virobfbcf032008-07-27 06:31:22 +01001863 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001864
1865 /* table should contain subdirectory with the same name */
1866 for (p = table; p->procname || p->ctl_name; p++) {
1867 if (!p->child)
1868 continue;
1869 if (p->procname && strcmp(p->procname, s) == 0)
Al Virobfbcf032008-07-27 06:31:22 +01001870 return p;
Al Viroae7edec2008-07-15 06:33:31 -04001871 }
Al Virobfbcf032008-07-27 06:31:22 +01001872 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001873}
1874
1875/* see if attaching q to p would be an improvement */
1876static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1877{
1878 struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
Al Virobfbcf032008-07-27 06:31:22 +01001879 struct ctl_table *next;
Al Viroae7edec2008-07-15 06:33:31 -04001880 int is_better = 0;
1881 int not_in_parent = !p->attached_by;
1882
Al Virobfbcf032008-07-27 06:31:22 +01001883 while ((next = is_branch_in(by, to)) != NULL) {
Al Viroae7edec2008-07-15 06:33:31 -04001884 if (by == q->attached_by)
1885 is_better = 1;
1886 if (to == p->attached_by)
1887 not_in_parent = 1;
1888 by = by->child;
Al Virobfbcf032008-07-27 06:31:22 +01001889 to = next->child;
Al Viroae7edec2008-07-15 06:33:31 -04001890 }
1891
1892 if (is_better && not_in_parent) {
1893 q->attached_by = by;
1894 q->attached_to = to;
1895 q->parent = p;
1896 }
1897}
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001900 * __register_sysctl_paths - register a sysctl hierarchy
1901 * @root: List of sysctl headers to register on
1902 * @namespaces: Data to compute which lists of sysctl entries are visible
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001903 * @path: The path to the directory the sysctl table is in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * @table: the top-level table structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 *
1906 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001907 * array. A completely 0 filled entry terminates the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 *
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001909 * The members of the &struct ctl_table structure are used as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 *
1911 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
1912 * must be unique within that level of sysctl
1913 *
1914 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1915 * enter a sysctl file
1916 *
1917 * data - a pointer to data for use by proc_handler
1918 *
1919 * maxlen - the maximum size in bytes of the data
1920 *
1921 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1922 *
1923 * child - a pointer to the child sysctl table if this entry is a directory, or
1924 * %NULL.
1925 *
1926 * proc_handler - the text handler routine (described below)
1927 *
1928 * strategy - the strategy routine (described below)
1929 *
1930 * de - for internal use by the sysctl routines
1931 *
1932 * extra1, extra2 - extra pointers usable by the proc handler routines
1933 *
1934 * Leaf nodes in the sysctl tree will be represented by a single file
1935 * under /proc; non-leaf nodes will be represented by directories.
1936 *
1937 * sysctl(2) can automatically manage read and write requests through
1938 * the sysctl table. The data and maxlen fields of the ctl_table
1939 * struct enable minimal validation of the values being written to be
1940 * performed, and the mode field allows minimal authentication.
1941 *
1942 * More sophisticated management can be enabled by the provision of a
1943 * strategy routine with the table entry. This will be called before
1944 * any automatic read or write of the data is performed.
1945 *
1946 * The strategy routine may return
1947 *
1948 * < 0 - Error occurred (error is passed to user process)
1949 *
1950 * 0 - OK - proceed with automatic read or write.
1951 *
1952 * > 0 - OK - read or write has been done by the strategy routine, so
1953 * return immediately.
1954 *
1955 * There must be a proc_handler routine for any terminal nodes
1956 * mirrored under /proc/sys (non-terminals are handled by a built-in
1957 * directory handler). Several default handlers are available to
1958 * cover common cases -
1959 *
1960 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1961 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1962 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1963 *
1964 * It is the handler's job to read the input buffer from user memory
1965 * and process it. The handler should return 0 on success.
1966 *
1967 * This routine returns %NULL on a failure to register, and a pointer
1968 * to the table header on success.
1969 */
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001970struct ctl_table_header *__register_sysctl_paths(
1971 struct ctl_table_root *root,
1972 struct nsproxy *namespaces,
1973 const struct ctl_path *path, struct ctl_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001975 struct ctl_table_header *header;
1976 struct ctl_table *new, **prevp;
1977 unsigned int n, npath;
Al Viroae7edec2008-07-15 06:33:31 -04001978 struct ctl_table_set *set;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001979
1980 /* Count the path components */
1981 for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath)
1982 ;
1983
1984 /*
1985 * For each path component, allocate a 2-element ctl_table array.
1986 * The first array element will be filled with the sysctl entry
1987 * for this, the second will be the sentinel (ctl_name == 0).
1988 *
1989 * We allocate everything in one go so that we don't have to
1990 * worry about freeing additional memory in unregister_sysctl_table.
1991 */
1992 header = kzalloc(sizeof(struct ctl_table_header) +
1993 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1994 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return NULL;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001996
1997 new = (struct ctl_table *) (header + 1);
1998
1999 /* Now connect the dots */
2000 prevp = &header->ctl_table;
2001 for (n = 0; n < npath; ++n, ++path) {
2002 /* Copy the procname */
2003 new->procname = path->procname;
2004 new->ctl_name = path->ctl_name;
2005 new->mode = 0555;
2006
2007 *prevp = new;
2008 prevp = &new->child;
2009
2010 new += 2;
2011 }
2012 *prevp = table;
Eric W. Biederman23eb06d2007-11-30 23:52:10 +11002013 header->ctl_table_arg = table;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002014
2015 INIT_LIST_HEAD(&header->ctl_entry);
2016 header->used = 0;
2017 header->unregistering = NULL;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11002018 header->root = root;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002019 sysctl_set_parent(NULL, header->ctl_table);
Al Virof7e6ced2008-07-15 01:44:23 -04002020 header->count = 1;
Holger Schurig88f458e2008-04-29 01:02:36 -07002021#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11002022 if (sysctl_check_table(namespaces, header->ctl_table)) {
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002023 kfree(header);
Eric W. Biedermanfc6cd252007-10-18 03:05:54 -07002024 return NULL;
2025 }
Holger Schurig88f458e2008-04-29 01:02:36 -07002026#endif
Al Viro330d57f2005-11-04 10:18:40 +00002027 spin_lock(&sysctl_lock);
Al Viro73455092008-07-14 21:22:20 -04002028 header->set = lookup_header_set(root, namespaces);
Al Viroae7edec2008-07-15 06:33:31 -04002029 header->attached_by = header->ctl_table;
2030 header->attached_to = root_table;
2031 header->parent = &root_table_header;
2032 for (set = header->set; set; set = set->parent) {
2033 struct ctl_table_header *p;
2034 list_for_each_entry(p, &set->list, ctl_entry) {
2035 if (p->unregistering)
2036 continue;
2037 try_attach(p, header);
2038 }
2039 }
2040 header->parent->count++;
Al Viro73455092008-07-14 21:22:20 -04002041 list_add_tail(&header->ctl_entry, &header->set->list);
Al Viro330d57f2005-11-04 10:18:40 +00002042 spin_unlock(&sysctl_lock);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002043
2044 return header;
2045}
2046
2047/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11002048 * register_sysctl_table_path - register a sysctl table hierarchy
2049 * @path: The path to the directory the sysctl table is in.
2050 * @table: the top-level table structure
2051 *
2052 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
2053 * array. A completely 0 filled entry terminates the table.
2054 *
2055 * See __register_sysctl_paths for more details.
2056 */
2057struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
2058 struct ctl_table *table)
2059{
2060 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
2061 path, table);
2062}
2063
2064/**
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002065 * register_sysctl_table - register a sysctl table hierarchy
2066 * @table: the top-level table structure
2067 *
2068 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
2069 * array. A completely 0 filled entry terminates the table.
2070 *
2071 * See register_sysctl_paths for more details.
2072 */
2073struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
2074{
2075 static const struct ctl_path null_path[] = { {} };
2076
2077 return register_sysctl_paths(null_path, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080/**
2081 * unregister_sysctl_table - unregister a sysctl table hierarchy
2082 * @header: the header returned from register_sysctl_table
2083 *
2084 * Unregisters the sysctl table and all children. proc entries may not
2085 * actually be removed until they are no longer used by anyone.
2086 */
2087void unregister_sysctl_table(struct ctl_table_header * header)
2088{
Al Viro330d57f2005-11-04 10:18:40 +00002089 might_sleep();
Pavel Emelyanovf1dad162007-12-04 23:45:24 -08002090
2091 if (header == NULL)
2092 return;
2093
Al Viro330d57f2005-11-04 10:18:40 +00002094 spin_lock(&sysctl_lock);
2095 start_unregistering(header);
Al Viroae7edec2008-07-15 06:33:31 -04002096 if (!--header->parent->count) {
2097 WARN_ON(1);
2098 kfree(header->parent);
2099 }
Al Virof7e6ced2008-07-15 01:44:23 -04002100 if (!--header->count)
2101 kfree(header);
Al Viro330d57f2005-11-04 10:18:40 +00002102 spin_unlock(&sysctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
Al Viro90434762008-07-15 08:54:06 -04002105int sysctl_is_seen(struct ctl_table_header *p)
2106{
2107 struct ctl_table_set *set = p->set;
2108 int res;
2109 spin_lock(&sysctl_lock);
2110 if (p->unregistering)
2111 res = 0;
2112 else if (!set->is_seen)
2113 res = 1;
2114 else
2115 res = set->is_seen(set);
2116 spin_unlock(&sysctl_lock);
2117 return res;
2118}
2119
Al Viro73455092008-07-14 21:22:20 -04002120void setup_sysctl_set(struct ctl_table_set *p,
2121 struct ctl_table_set *parent,
2122 int (*is_seen)(struct ctl_table_set *))
2123{
2124 INIT_LIST_HEAD(&p->list);
2125 p->parent = parent ? parent : &sysctl_table_root.default_set;
2126 p->is_seen = is_seen;
2127}
2128
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002129#else /* !CONFIG_SYSCTL */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002130struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002131{
2132 return NULL;
2133}
2134
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002135struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
2136 struct ctl_table *table)
2137{
2138 return NULL;
2139}
2140
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002141void unregister_sysctl_table(struct ctl_table_header * table)
2142{
2143}
2144
Al Viro73455092008-07-14 21:22:20 -04002145void setup_sysctl_set(struct ctl_table_set *p,
2146 struct ctl_table_set *parent,
2147 int (*is_seen)(struct ctl_table_set *))
2148{
2149}
2150
Al Virof7e6ced2008-07-15 01:44:23 -04002151void sysctl_head_put(struct ctl_table_header *head)
2152{
2153}
2154
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002155#endif /* CONFIG_SYSCTL */
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157/*
2158 * /proc/sys support
2159 */
2160
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002161#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07002163static int _proc_do_string(void* data, int maxlen, int write,
2164 struct file *filp, void __user *buffer,
2165 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002166{
2167 size_t len;
2168 char __user *p;
2169 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002170
2171 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002172 *lenp = 0;
2173 return 0;
2174 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08002175
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002176 if (write) {
2177 len = 0;
2178 p = buffer;
2179 while (len < *lenp) {
2180 if (get_user(c, p++))
2181 return -EFAULT;
2182 if (c == 0 || c == '\n')
2183 break;
2184 len++;
2185 }
2186 if (len >= maxlen)
2187 len = maxlen-1;
2188 if(copy_from_user(data, buffer, len))
2189 return -EFAULT;
2190 ((char *) data)[len] = 0;
2191 *ppos += *lenp;
2192 } else {
2193 len = strlen(data);
2194 if (len > maxlen)
2195 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002196
2197 if (*ppos > len) {
2198 *lenp = 0;
2199 return 0;
2200 }
2201
2202 data += *ppos;
2203 len -= *ppos;
2204
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002205 if (len > *lenp)
2206 len = *lenp;
2207 if (len)
2208 if(copy_to_user(buffer, data, len))
2209 return -EFAULT;
2210 if (len < *lenp) {
2211 if(put_user('\n', ((char __user *) buffer) + len))
2212 return -EFAULT;
2213 len++;
2214 }
2215 *lenp = len;
2216 *ppos += len;
2217 }
2218 return 0;
2219}
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221/**
2222 * proc_dostring - read a string sysctl
2223 * @table: the sysctl table
2224 * @write: %TRUE if this is a write to the sysctl file
2225 * @filp: the file structure
2226 * @buffer: the user buffer
2227 * @lenp: the size of the user buffer
2228 * @ppos: file position
2229 *
2230 * Reads/writes a string from/to the user buffer. If the kernel
2231 * buffer provided is not large enough to hold the string, the
2232 * string is truncated. The copied string is %NULL-terminated.
2233 * If the string is being read by the user process, it is copied
2234 * and a newline '\n' is added. It is truncated if the buffer is
2235 * not large enough.
2236 *
2237 * Returns 0 on success.
2238 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002239int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 void __user *buffer, size_t *lenp, loff_t *ppos)
2241{
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002242 return _proc_do_string(table->data, table->maxlen, write, filp,
2243 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
2245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
2248 int *valp,
2249 int write, void *data)
2250{
2251 if (write) {
2252 *valp = *negp ? -*lvalp : *lvalp;
2253 } else {
2254 int val = *valp;
2255 if (val < 0) {
2256 *negp = -1;
2257 *lvalp = (unsigned long)-val;
2258 } else {
2259 *negp = 0;
2260 *lvalp = (unsigned long)val;
2261 }
2262 }
2263 return 0;
2264}
2265
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002266static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002267 int write, struct file *filp, void __user *buffer,
2268 size_t *lenp, loff_t *ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2270 int write, void *data),
2271 void *data)
2272{
2273#define TMPBUFLEN 21
2274 int *i, vleft, first=1, neg, val;
2275 unsigned long lval;
2276 size_t left, len;
2277
2278 char buf[TMPBUFLEN], *p;
2279 char __user *s = buffer;
2280
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002281 if (!tbl_data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 (*ppos && !write)) {
2283 *lenp = 0;
2284 return 0;
2285 }
2286
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002287 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 vleft = table->maxlen / sizeof(*i);
2289 left = *lenp;
2290
2291 if (!conv)
2292 conv = do_proc_dointvec_conv;
2293
2294 for (; left && vleft--; i++, first=0) {
2295 if (write) {
2296 while (left) {
2297 char c;
2298 if (get_user(c, s))
2299 return -EFAULT;
2300 if (!isspace(c))
2301 break;
2302 left--;
2303 s++;
2304 }
2305 if (!left)
2306 break;
2307 neg = 0;
2308 len = left;
2309 if (len > sizeof(buf) - 1)
2310 len = sizeof(buf) - 1;
2311 if (copy_from_user(buf, s, len))
2312 return -EFAULT;
2313 buf[len] = 0;
2314 p = buf;
2315 if (*p == '-' && left > 1) {
2316 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002317 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319 if (*p < '0' || *p > '9')
2320 break;
2321
2322 lval = simple_strtoul(p, &p, 0);
2323
2324 len = p-buf;
2325 if ((len < left) && *p && !isspace(*p))
2326 break;
2327 if (neg)
2328 val = -val;
2329 s += len;
2330 left -= len;
2331
2332 if (conv(&neg, &lval, i, 1, data))
2333 break;
2334 } else {
2335 p = buf;
2336 if (!first)
2337 *p++ = '\t';
2338
2339 if (conv(&neg, &lval, i, 0, data))
2340 break;
2341
2342 sprintf(p, "%s%lu", neg ? "-" : "", lval);
2343 len = strlen(buf);
2344 if (len > left)
2345 len = left;
2346 if(copy_to_user(s, buf, len))
2347 return -EFAULT;
2348 left -= len;
2349 s += len;
2350 }
2351 }
2352
2353 if (!write && !first && left) {
2354 if(put_user('\n', s))
2355 return -EFAULT;
2356 left--, s++;
2357 }
2358 if (write) {
2359 while (left) {
2360 char c;
2361 if (get_user(c, s++))
2362 return -EFAULT;
2363 if (!isspace(c))
2364 break;
2365 left--;
2366 }
2367 }
2368 if (write && first)
2369 return -EINVAL;
2370 *lenp -= left;
2371 *ppos += *lenp;
2372 return 0;
2373#undef TMPBUFLEN
2374}
2375
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002376static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002377 void __user *buffer, size_t *lenp, loff_t *ppos,
2378 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2379 int write, void *data),
2380 void *data)
2381{
2382 return __do_proc_dointvec(table->data, table, write, filp,
2383 buffer, lenp, ppos, conv, data);
2384}
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386/**
2387 * proc_dointvec - read a vector of integers
2388 * @table: the sysctl table
2389 * @write: %TRUE if this is a write to the sysctl file
2390 * @filp: the file structure
2391 * @buffer: the user buffer
2392 * @lenp: the size of the user buffer
2393 * @ppos: file position
2394 *
2395 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2396 * values from/to the user buffer, treated as an ASCII string.
2397 *
2398 * Returns 0 on success.
2399 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002400int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 void __user *buffer, size_t *lenp, loff_t *ppos)
2402{
2403 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2404 NULL,NULL);
2405}
2406
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002407/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002408 * Taint values can only be increased
2409 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002410 */
Andi Kleen25ddbb12008-10-15 22:01:41 -07002411static int proc_taint(struct ctl_table *table, int write, struct file *filp,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002412 void __user *buffer, size_t *lenp, loff_t *ppos)
2413{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002414 struct ctl_table t;
2415 unsigned long tmptaint = get_taint();
2416 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002417
Bastian Blank91fcd412007-04-23 14:41:14 -07002418 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002419 return -EPERM;
2420
Andi Kleen25ddbb12008-10-15 22:01:41 -07002421 t = *table;
2422 t.data = &tmptaint;
2423 err = proc_doulongvec_minmax(&t, write, filp, buffer, lenp, ppos);
2424 if (err < 0)
2425 return err;
2426
2427 if (write) {
2428 /*
2429 * Poor man's atomic or. Not worth adding a primitive
2430 * to everyone's atomic.h for this
2431 */
2432 int i;
2433 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2434 if ((tmptaint >> i) & 1)
2435 add_taint(i);
2436 }
2437 }
2438
2439 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002440}
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442struct do_proc_dointvec_minmax_conv_param {
2443 int *min;
2444 int *max;
2445};
2446
2447static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2448 int *valp,
2449 int write, void *data)
2450{
2451 struct do_proc_dointvec_minmax_conv_param *param = data;
2452 if (write) {
2453 int val = *negp ? -*lvalp : *lvalp;
2454 if ((param->min && *param->min > val) ||
2455 (param->max && *param->max < val))
2456 return -EINVAL;
2457 *valp = val;
2458 } else {
2459 int val = *valp;
2460 if (val < 0) {
2461 *negp = -1;
2462 *lvalp = (unsigned long)-val;
2463 } else {
2464 *negp = 0;
2465 *lvalp = (unsigned long)val;
2466 }
2467 }
2468 return 0;
2469}
2470
2471/**
2472 * proc_dointvec_minmax - read a vector of integers with min/max values
2473 * @table: the sysctl table
2474 * @write: %TRUE if this is a write to the sysctl file
2475 * @filp: the file structure
2476 * @buffer: the user buffer
2477 * @lenp: the size of the user buffer
2478 * @ppos: file position
2479 *
2480 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2481 * values from/to the user buffer, treated as an ASCII string.
2482 *
2483 * This routine will ensure the values are within the range specified by
2484 * table->extra1 (min) and table->extra2 (max).
2485 *
2486 * Returns 0 on success.
2487 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002488int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 void __user *buffer, size_t *lenp, loff_t *ppos)
2490{
2491 struct do_proc_dointvec_minmax_conv_param param = {
2492 .min = (int *) table->extra1,
2493 .max = (int *) table->extra2,
2494 };
2495 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2496 do_proc_dointvec_minmax_conv, &param);
2497}
2498
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002499static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 struct file *filp,
2501 void __user *buffer,
2502 size_t *lenp, loff_t *ppos,
2503 unsigned long convmul,
2504 unsigned long convdiv)
2505{
2506#define TMPBUFLEN 21
2507 unsigned long *i, *min, *max, val;
2508 int vleft, first=1, neg;
2509 size_t len, left;
2510 char buf[TMPBUFLEN], *p;
2511 char __user *s = buffer;
2512
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002513 if (!data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 (*ppos && !write)) {
2515 *lenp = 0;
2516 return 0;
2517 }
2518
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002519 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 min = (unsigned long *) table->extra1;
2521 max = (unsigned long *) table->extra2;
2522 vleft = table->maxlen / sizeof(unsigned long);
2523 left = *lenp;
2524
2525 for (; left && vleft--; i++, min++, max++, first=0) {
2526 if (write) {
2527 while (left) {
2528 char c;
2529 if (get_user(c, s))
2530 return -EFAULT;
2531 if (!isspace(c))
2532 break;
2533 left--;
2534 s++;
2535 }
2536 if (!left)
2537 break;
2538 neg = 0;
2539 len = left;
2540 if (len > TMPBUFLEN-1)
2541 len = TMPBUFLEN-1;
2542 if (copy_from_user(buf, s, len))
2543 return -EFAULT;
2544 buf[len] = 0;
2545 p = buf;
2546 if (*p == '-' && left > 1) {
2547 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002548 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 }
2550 if (*p < '0' || *p > '9')
2551 break;
2552 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2553 len = p-buf;
2554 if ((len < left) && *p && !isspace(*p))
2555 break;
2556 if (neg)
2557 val = -val;
2558 s += len;
2559 left -= len;
2560
2561 if(neg)
2562 continue;
2563 if ((min && val < *min) || (max && val > *max))
2564 continue;
2565 *i = val;
2566 } else {
2567 p = buf;
2568 if (!first)
2569 *p++ = '\t';
2570 sprintf(p, "%lu", convdiv * (*i) / convmul);
2571 len = strlen(buf);
2572 if (len > left)
2573 len = left;
2574 if(copy_to_user(s, buf, len))
2575 return -EFAULT;
2576 left -= len;
2577 s += len;
2578 }
2579 }
2580
2581 if (!write && !first && left) {
2582 if(put_user('\n', s))
2583 return -EFAULT;
2584 left--, s++;
2585 }
2586 if (write) {
2587 while (left) {
2588 char c;
2589 if (get_user(c, s++))
2590 return -EFAULT;
2591 if (!isspace(c))
2592 break;
2593 left--;
2594 }
2595 }
2596 if (write && first)
2597 return -EINVAL;
2598 *lenp -= left;
2599 *ppos += *lenp;
2600 return 0;
2601#undef TMPBUFLEN
2602}
2603
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002604static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002605 struct file *filp,
2606 void __user *buffer,
2607 size_t *lenp, loff_t *ppos,
2608 unsigned long convmul,
2609 unsigned long convdiv)
2610{
2611 return __do_proc_doulongvec_minmax(table->data, table, write,
2612 filp, buffer, lenp, ppos, convmul, convdiv);
2613}
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615/**
2616 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2617 * @table: the sysctl table
2618 * @write: %TRUE if this is a write to the sysctl file
2619 * @filp: the file structure
2620 * @buffer: the user buffer
2621 * @lenp: the size of the user buffer
2622 * @ppos: file position
2623 *
2624 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2625 * values from/to the user buffer, treated as an ASCII string.
2626 *
2627 * This routine will ensure the values are within the range specified by
2628 * table->extra1 (min) and table->extra2 (max).
2629 *
2630 * Returns 0 on success.
2631 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002632int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 void __user *buffer, size_t *lenp, loff_t *ppos)
2634{
2635 return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
2636}
2637
2638/**
2639 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2640 * @table: the sysctl table
2641 * @write: %TRUE if this is a write to the sysctl file
2642 * @filp: the file structure
2643 * @buffer: the user buffer
2644 * @lenp: the size of the user buffer
2645 * @ppos: file position
2646 *
2647 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2648 * values from/to the user buffer, treated as an ASCII string. The values
2649 * are treated as milliseconds, and converted to jiffies when they are stored.
2650 *
2651 * This routine will ensure the values are within the range specified by
2652 * table->extra1 (min) and table->extra2 (max).
2653 *
2654 * Returns 0 on success.
2655 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002656int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 struct file *filp,
2658 void __user *buffer,
2659 size_t *lenp, loff_t *ppos)
2660{
2661 return do_proc_doulongvec_minmax(table, write, filp, buffer,
2662 lenp, ppos, HZ, 1000l);
2663}
2664
2665
2666static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2667 int *valp,
2668 int write, void *data)
2669{
2670 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002671 if (*lvalp > LONG_MAX / HZ)
2672 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2674 } else {
2675 int val = *valp;
2676 unsigned long lval;
2677 if (val < 0) {
2678 *negp = -1;
2679 lval = (unsigned long)-val;
2680 } else {
2681 *negp = 0;
2682 lval = (unsigned long)val;
2683 }
2684 *lvalp = lval / HZ;
2685 }
2686 return 0;
2687}
2688
2689static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2690 int *valp,
2691 int write, void *data)
2692{
2693 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002694 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2695 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2697 } else {
2698 int val = *valp;
2699 unsigned long lval;
2700 if (val < 0) {
2701 *negp = -1;
2702 lval = (unsigned long)-val;
2703 } else {
2704 *negp = 0;
2705 lval = (unsigned long)val;
2706 }
2707 *lvalp = jiffies_to_clock_t(lval);
2708 }
2709 return 0;
2710}
2711
2712static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2713 int *valp,
2714 int write, void *data)
2715{
2716 if (write) {
2717 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2718 } else {
2719 int val = *valp;
2720 unsigned long lval;
2721 if (val < 0) {
2722 *negp = -1;
2723 lval = (unsigned long)-val;
2724 } else {
2725 *negp = 0;
2726 lval = (unsigned long)val;
2727 }
2728 *lvalp = jiffies_to_msecs(lval);
2729 }
2730 return 0;
2731}
2732
2733/**
2734 * proc_dointvec_jiffies - read a vector of integers as seconds
2735 * @table: the sysctl table
2736 * @write: %TRUE if this is a write to the sysctl file
2737 * @filp: the file structure
2738 * @buffer: the user buffer
2739 * @lenp: the size of the user buffer
2740 * @ppos: file position
2741 *
2742 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2743 * values from/to the user buffer, treated as an ASCII string.
2744 * The values read are assumed to be in seconds, and are converted into
2745 * jiffies.
2746 *
2747 * Returns 0 on success.
2748 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002749int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 void __user *buffer, size_t *lenp, loff_t *ppos)
2751{
2752 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2753 do_proc_dointvec_jiffies_conv,NULL);
2754}
2755
2756/**
2757 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2758 * @table: the sysctl table
2759 * @write: %TRUE if this is a write to the sysctl file
2760 * @filp: the file structure
2761 * @buffer: the user buffer
2762 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002763 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 *
2765 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2766 * values from/to the user buffer, treated as an ASCII string.
2767 * The values read are assumed to be in 1/USER_HZ seconds, and
2768 * are converted into jiffies.
2769 *
2770 * Returns 0 on success.
2771 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002772int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 void __user *buffer, size_t *lenp, loff_t *ppos)
2774{
2775 return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
2776 do_proc_dointvec_userhz_jiffies_conv,NULL);
2777}
2778
2779/**
2780 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2781 * @table: the sysctl table
2782 * @write: %TRUE if this is a write to the sysctl file
2783 * @filp: the file structure
2784 * @buffer: the user buffer
2785 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002786 * @ppos: file position
2787 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 *
2789 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2790 * values from/to the user buffer, treated as an ASCII string.
2791 * The values read are assumed to be in 1/1000 seconds, and
2792 * are converted into jiffies.
2793 *
2794 * Returns 0 on success.
2795 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002796int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 void __user *buffer, size_t *lenp, loff_t *ppos)
2798{
2799 return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
2800 do_proc_dointvec_ms_jiffies_conv, NULL);
2801}
2802
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002803static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002804 void __user *buffer, size_t *lenp, loff_t *ppos)
2805{
2806 struct pid *new_pid;
2807 pid_t tmp;
2808 int r;
2809
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002810 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002811
2812 r = __do_proc_dointvec(&tmp, table, write, filp, buffer,
2813 lenp, ppos, NULL, NULL);
2814 if (r || !write)
2815 return r;
2816
2817 new_pid = find_get_pid(tmp);
2818 if (!new_pid)
2819 return -ESRCH;
2820
2821 put_pid(xchg(&cad_pid, new_pid));
2822 return 0;
2823}
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825#else /* CONFIG_PROC_FS */
2826
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002827int proc_dostring(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 void __user *buffer, size_t *lenp, loff_t *ppos)
2829{
2830 return -ENOSYS;
2831}
2832
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002833int proc_dointvec(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 void __user *buffer, size_t *lenp, loff_t *ppos)
2835{
2836 return -ENOSYS;
2837}
2838
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002839int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 void __user *buffer, size_t *lenp, loff_t *ppos)
2841{
2842 return -ENOSYS;
2843}
2844
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002845int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 void __user *buffer, size_t *lenp, loff_t *ppos)
2847{
2848 return -ENOSYS;
2849}
2850
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002851int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 void __user *buffer, size_t *lenp, loff_t *ppos)
2853{
2854 return -ENOSYS;
2855}
2856
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002857int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 void __user *buffer, size_t *lenp, loff_t *ppos)
2859{
2860 return -ENOSYS;
2861}
2862
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002863int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 void __user *buffer, size_t *lenp, loff_t *ppos)
2865{
2866 return -ENOSYS;
2867}
2868
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002869int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 struct file *filp,
2871 void __user *buffer,
2872 size_t *lenp, loff_t *ppos)
2873{
2874 return -ENOSYS;
2875}
2876
2877
2878#endif /* CONFIG_PROC_FS */
2879
2880
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07002881#ifdef CONFIG_SYSCTL_SYSCALL
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882/*
2883 * General sysctl support routines
2884 */
2885
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002886/* The generic sysctl data routine (used if no strategy routine supplied) */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002887int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07002888 void __user *oldval, size_t __user *oldlenp,
2889 void __user *newval, size_t newlen)
2890{
2891 size_t len;
2892
2893 /* Get out of I don't have a variable */
2894 if (!table->data || !table->maxlen)
2895 return -ENOTDIR;
2896
2897 if (oldval && oldlenp) {
2898 if (get_user(len, oldlenp))
2899 return -EFAULT;
2900 if (len) {
2901 if (len > table->maxlen)
2902 len = table->maxlen;
2903 if (copy_to_user(oldval, table->data, len))
2904 return -EFAULT;
2905 if (put_user(len, oldlenp))
2906 return -EFAULT;
2907 }
2908 }
2909
2910 if (newval && newlen) {
2911 if (newlen > table->maxlen)
2912 newlen = table->maxlen;
2913
2914 if (copy_from_user(table->data, newval, newlen))
2915 return -EFAULT;
2916 }
2917 return 1;
2918}
2919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920/* The generic string strategy routine: */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002921int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002923 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (!table->data || !table->maxlen)
2926 return -ENOTDIR;
2927
2928 if (oldval && oldlenp) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002929 size_t bufsize;
2930 if (get_user(bufsize, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002932 if (bufsize) {
2933 size_t len = strlen(table->data), copied;
2934
2935 /* This shouldn't trigger for a well-formed sysctl */
2936 if (len > table->maxlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 len = table->maxlen;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002938
2939 /* Copy up to a max of bufsize-1 bytes of the string */
2940 copied = (len >= bufsize) ? bufsize - 1 : len;
2941
2942 if (copy_to_user(oldval, table->data, copied) ||
2943 put_user(0, (char __user *)(oldval + copied)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return -EFAULT;
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002945 if (put_user(len, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return -EFAULT;
2947 }
2948 }
2949 if (newval && newlen) {
Linus Torvaldsde9e0072005-12-31 17:00:29 -08002950 size_t len = newlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 if (len > table->maxlen)
2952 len = table->maxlen;
2953 if(copy_from_user(table->data, newval, len))
2954 return -EFAULT;
2955 if (len == table->maxlen)
2956 len--;
2957 ((char *) table->data)[len] = 0;
2958 }
Yi Yang82c9df82005-12-30 16:37:10 +08002959 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960}
2961
2962/*
2963 * This function makes sure that all of the integers in the vector
2964 * are between the minimum and maximum values given in the arrays
2965 * table->extra1 and table->extra2, respectively.
2966 */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07002967int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08002969 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
2971
2972 if (newval && newlen) {
2973 int __user *vec = (int __user *) newval;
2974 int *min = (int *) table->extra1;
2975 int *max = (int *) table->extra2;
2976 size_t length;
2977 int i;
2978
2979 if (newlen % sizeof(int) != 0)
2980 return -EINVAL;
2981
2982 if (!table->extra1 && !table->extra2)
2983 return 0;
2984
2985 if (newlen > table->maxlen)
2986 newlen = table->maxlen;
2987 length = newlen / sizeof(int);
2988
2989 for (i = 0; i < length; i++) {
2990 int value;
2991 if (get_user(value, vec + i))
2992 return -EFAULT;
2993 if (min && value < min[i])
2994 return -EINVAL;
2995 if (max && value > max[i])
2996 return -EINVAL;
2997 }
2998 }
2999 return 0;
3000}
3001
3002/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003003int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003005 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003007 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003009
3010 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003012 if (olen) {
3013 int val;
3014
3015 if (olen < sizeof(int))
3016 return -EINVAL;
3017
3018 val = *(int *)(table->data) / HZ;
3019 if (put_user(val, (int __user *)oldval))
3020 return -EFAULT;
3021 if (put_user(sizeof(int), oldlenp))
3022 return -EFAULT;
3023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025 if (newval && newlen) {
3026 int new;
3027 if (newlen != sizeof(int))
3028 return -EINVAL;
3029 if (get_user(new, (int __user *)newval))
3030 return -EFAULT;
3031 *(int *)(table->data) = new*HZ;
3032 }
3033 return 1;
3034}
3035
3036/* Strategy function to convert jiffies to seconds */
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003037int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003039 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040{
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003041 if (oldval && oldlenp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 size_t olen;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003043
3044 if (get_user(olen, oldlenp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return -EFAULT;
Alexey Dobriyan3ee75ac2007-02-10 01:44:39 -08003046 if (olen) {
3047 int val;
3048
3049 if (olen < sizeof(int))
3050 return -EINVAL;
3051
3052 val = jiffies_to_msecs(*(int *)(table->data));
3053 if (put_user(val, (int __user *)oldval))
3054 return -EFAULT;
3055 if (put_user(sizeof(int), oldlenp))
3056 return -EFAULT;
3057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 }
3059 if (newval && newlen) {
3060 int new;
3061 if (newlen != sizeof(int))
3062 return -EINVAL;
3063 if (get_user(new, (int __user *)newval))
3064 return -EFAULT;
3065 *(int *)(table->data) = msecs_to_jiffies(new);
3066 }
3067 return 1;
3068}
3069
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08003070
Eric W. Biedermanc4b8b762006-12-08 02:39:55 -08003071
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07003072#else /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
3074
Heiko Carstens1e7bfb22009-01-14 14:14:29 +01003075SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
Eric W. Biederman0e009be2006-11-05 23:52:11 -08003077 struct __sysctl_args tmp;
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003078 int error;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08003079
Eric W. Biederman0e009be2006-11-05 23:52:11 -08003080 if (copy_from_user(&tmp, args, sizeof(tmp)))
3081 return -EFAULT;
Eric W. Biederman0e009be2006-11-05 23:52:11 -08003082
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003083 error = deprecated_sysctl_warning(&tmp);
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07003084
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003085 /* If no error reading the parameters then just -ENOSYS ... */
3086 if (!error)
3087 error = -ENOSYS;
3088
3089 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003092int sysctl_data(struct ctl_table *table,
Eric W. Biederman49a0c452007-10-18 03:05:23 -07003093 void __user *oldval, size_t __user *oldlenp,
3094 void __user *newval, size_t newlen)
3095{
3096 return -ENOSYS;
3097}
3098
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003099int sysctl_string(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003101 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
3103 return -ENOSYS;
3104}
3105
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003106int sysctl_intvec(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003108 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
3110 return -ENOSYS;
3111}
3112
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003113int sysctl_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003115 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
3117 return -ENOSYS;
3118}
3119
Alexey Dobriyanf221e722008-10-15 22:04:23 -07003120int sysctl_ms_jiffies(struct ctl_table *table,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 void __user *oldval, size_t __user *oldlenp,
Alexey Dobriyan1f29bcd2006-12-10 02:19:10 -08003122 void __user *newval, size_t newlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
3124 return -ENOSYS;
3125}
3126
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07003127#endif /* CONFIG_SYSCTL_SYSCALL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003129static int deprecated_sysctl_warning(struct __sysctl_args *args)
3130{
3131 static int msg_count;
3132 int name[CTL_MAXNAME];
3133 int i;
3134
Tetsuo Handa6fc48af2007-11-14 16:58:38 -08003135 /* Check args->nlen. */
3136 if (args->nlen < 0 || args->nlen > CTL_MAXNAME)
3137 return -ENOTDIR;
3138
Eric W. Biederman7058cb02007-10-18 03:05:58 -07003139 /* Read in the sysctl name for better debug message logging */
3140 for (i = 0; i < args->nlen; i++)
3141 if (get_user(name[i], args->name + i))
3142 return -EFAULT;
3143
3144 /* Ignore accesses to kernel.version */
3145 if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION))
3146 return 0;
3147
3148 if (msg_count < 5) {
3149 msg_count++;
3150 printk(KERN_INFO
3151 "warning: process `%s' used the deprecated sysctl "
3152 "system call with ", current->comm);
3153 for (i = 0; i < args->nlen; i++)
3154 printk("%d.", name[i]);
3155 printk("\n");
3156 }
3157 return 0;
3158}
3159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160/*
3161 * No sense putting this after each symbol definition, twice,
3162 * exception granted :-)
3163 */
3164EXPORT_SYMBOL(proc_dointvec);
3165EXPORT_SYMBOL(proc_dointvec_jiffies);
3166EXPORT_SYMBOL(proc_dointvec_minmax);
3167EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
3168EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
3169EXPORT_SYMBOL(proc_dostring);
3170EXPORT_SYMBOL(proc_doulongvec_minmax);
3171EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
3172EXPORT_SYMBOL(register_sysctl_table);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11003173EXPORT_SYMBOL(register_sysctl_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174EXPORT_SYMBOL(sysctl_intvec);
3175EXPORT_SYMBOL(sysctl_jiffies);
3176EXPORT_SYMBOL(sysctl_ms_jiffies);
3177EXPORT_SYMBOL(sysctl_string);
Eric W. Biederman49a0c452007-10-18 03:05:23 -07003178EXPORT_SYMBOL(sysctl_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179EXPORT_SYMBOL(unregister_sysctl_table);