blob: 0f9adda85f97dc5eab713f5e8c8f49de7d617c6d [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>
Dave Youngd33ed522010-03-10 15:23:59 -080026#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/proc_fs.h>
Andrew Morgan72c2d582007-10-18 03:05:59 -070028#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/ctype.h>
Vegard Nossumdfec0722008-04-04 00:51:41 +020030#include <linux/kmemcheck.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>
Ingo Molnar3fff4c42009-09-22 16:18:09 +020039#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/initrd.h>
David Howells0b77f5b2008-04-29 01:01:32 -070042#include <linux/key.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/times.h>
44#include <linux/limits.h>
45#include <linux/dcache.h>
46#include <linux/syscalls.h>
Adrian Bunkc748e132008-07-23 21:27:03 -070047#include <linux/vmstat.h>
Pavel Machekc255d842006-02-20 18:27:58 -080048#include <linux/nfs_fs.h>
49#include <linux/acpi.h>
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -070050#include <linux/reboot.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020051#include <linux/ftrace.h>
David Howells12e22c52009-04-03 16:42:35 +010052#include <linux/slow-work.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020053#include <linux/perf_event.h>
Masami Hiramatsub2be84d2010-02-25 08:34:15 -050054#include <linux/kprobes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <asm/uaccess.h>
57#include <asm/processor.h>
58
Andi Kleen29cbc782006-09-30 01:47:55 +020059#ifdef CONFIG_X86
60#include <asm/nmi.h>
Chuck Ebbert0741f4d2006-12-07 02:14:11 +010061#include <asm/stacktrace.h>
Ingo Molnar6e7c4022008-01-30 13:30:05 +010062#include <asm/io.h>
Andi Kleen29cbc782006-09-30 01:47:55 +020063#endif
Dave Youngc55b7c32010-03-10 15:24:08 -080064#ifdef CONFIG_BSD_PROCESS_ACCT
65#include <linux/acct.h>
66#endif
Dave Young4f0e0562010-03-10 15:24:09 -080067#ifdef CONFIG_RT_MUTEXES
68#include <linux/rtmutex.h>
69#endif
Dave Young2edf5e42010-03-10 15:24:10 -080070#if defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_LOCK_STAT)
71#include <linux/lockdep.h>
72#endif
Dave Young15485a42010-03-10 15:24:07 -080073#ifdef CONFIG_CHR_DEV_SG
74#include <scsi/sg.h>
75#endif
Andi Kleen29cbc782006-09-30 01:47:55 +020076
Don Zickus58687ac2010-05-07 17:11:44 -040077#ifdef CONFIG_LOCKUP_DETECTOR
Don Zickus504d7cf2010-02-12 17:19:19 -050078#include <linux/nmi.h>
79#endif
80
Eric W. Biederman7058cb02007-10-18 03:05:58 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#if defined(CONFIG_SYSCTL)
83
84/* External variables not in a header file. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern int sysctl_overcommit_memory;
86extern int sysctl_overcommit_ratio;
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -070087extern int sysctl_panic_on_oom;
David Rientjesfe071d72007-10-16 23:25:56 -070088extern int sysctl_oom_kill_allocating_task;
David Rientjesfef1bdd2008-02-07 00:14:07 -080089extern int sysctl_oom_dump_tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090extern int max_threads;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091extern int core_uses_pid;
Alan Coxd6e71142005-06-23 00:09:43 -070092extern int suid_dumpable;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093extern char core_pattern[];
Neil Hormana2939802009-09-23 15:56:56 -070094extern unsigned int core_pipe_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095extern int pid_max;
96extern int min_free_kbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097extern int pid_max_min, pid_max_max;
Andrew Morton9d0243b2006-01-08 01:00:39 -080098extern int sysctl_drop_caches;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -080099extern int percpu_pagelist_fraction;
Andi Kleenbebfa102006-06-26 13:56:52 +0200100extern int compat_log;
Arjan van de Ven97455122008-01-25 21:08:34 +0100101extern int latencytop_enabled;
Al Viroeceea0b2008-05-10 10:08:32 -0400102extern int sysctl_nr_open_min, sysctl_nr_open_max;
Paul Mundtdd8632a2009-01-08 12:04:47 +0000103#ifndef CONFIG_MMU
104extern int sysctl_nr_trim_pages;
105#endif
Jens Axboecb684b52009-09-15 21:53:11 +0200106#ifdef CONFIG_BLOCK
Jens Axboe5e605b62009-08-05 09:07:21 +0200107extern int blk_iopoll_enabled;
Jens Axboecb684b52009-09-15 21:53:11 +0200108#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700110/* Constants used for minimum and maximum */
Bron Gondwana195cf4532008-02-04 22:29:20 -0800111#ifdef CONFIG_DETECT_SOFTLOCKUP
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700112static int sixty = 60;
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200113static int neg_one = -1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700114#endif
115
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700116static int zero;
Linus Torvaldscd5f9a42009-04-06 13:38:46 -0700117static int __maybe_unused one = 1;
118static int __maybe_unused two = 2;
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800119static unsigned long one_ul = 1;
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700120static int one_hundred = 100;
Dave Youngaf913222009-09-22 16:43:33 -0700121#ifdef CONFIG_PRINTK
122static int ten_thousand = 10000;
123#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700124
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700125/* this is needed for the proc_doulongvec_minmax of vm_dirty_bytes */
126static unsigned long dirty_bytes_min = 2 * PAGE_SIZE;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
129static int maxolduid = 65535;
130static int minolduid;
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800131static int min_percpu_pagelist_fract = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133static int ngroups_max = NGROUPS_MAX;
134
David S. Miller72c57ed2008-09-11 23:29:54 -0700135#ifdef CONFIG_SPARC
David S. Miller17f04fb2008-09-11 23:33:53 -0700136#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif
138
David S. Miller08714202008-11-16 23:49:24 -0800139#ifdef CONFIG_SPARC64
140extern int sysctl_tsb_ratio;
141#endif
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#ifdef __hppa__
144extern int pwrsw_enabled;
145extern int unaligned_enabled;
146#endif
147
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800148#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#ifdef CONFIG_MATHEMU
150extern int sysctl_ieee_emulation_warnings;
151#endif
152extern int sysctl_userprocess_debug;
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700153extern int spin_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#endif
155
Jes Sorensend2b176e2006-02-28 09:42:23 -0800156#ifdef CONFIG_IA64
157extern int no_unaligned_warning;
Doug Chapman88fc2412009-01-15 10:38:56 -0800158extern int unaligned_dump_stack;
Jes Sorensend2b176e2006-02-28 09:42:23 -0800159#endif
160
Ingo Molnar3fff4c42009-09-22 16:18:09 +0200161extern struct ratelimit_state printk_ratelimit_state;
162
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700163#ifdef CONFIG_PROC_SYSCTL
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700164static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700165 void __user *buffer, size_t *lenp, loff_t *ppos);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700166static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800167 void __user *buffer, size_t *lenp, loff_t *ppos);
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700168#endif
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700169
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700170static struct ctl_table root_table[];
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100171static struct ctl_table_root sysctl_table_root;
172static struct ctl_table_header root_table_header = {
Al Virob380b0d2008-09-04 17:05:57 +0100173 .count = 1,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100174 .ctl_table = root_table,
Al Viro73455092008-07-14 21:22:20 -0400175 .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100176 .root = &sysctl_table_root,
Al Viro73455092008-07-14 21:22:20 -0400177 .set = &sysctl_table_root.default_set,
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100178};
179static struct ctl_table_root sysctl_table_root = {
180 .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list),
Al Viro73455092008-07-14 21:22:20 -0400181 .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry),
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +1100182};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700184static struct ctl_table kern_table[];
185static struct ctl_table vm_table[];
186static struct ctl_table fs_table[];
187static struct ctl_table debug_table[];
188static struct ctl_table dev_table[];
189extern struct ctl_table random_table[];
Amy Griffis2d9048e2006-06-01 13:10:59 -0700190#ifdef CONFIG_INOTIFY_USER
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700191extern struct ctl_table inotify_table[];
Robert Love0399cb02005-07-13 12:38:18 -0400192#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -0800193#ifdef CONFIG_EPOLL
194extern struct ctl_table epoll_table[];
195#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
198int sysctl_legacy_va_layout;
199#endif
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/* The default sysctl tables: */
202
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700203static struct ctl_table root_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 .procname = "kernel",
206 .mode = 0555,
207 .child = kern_table,
208 },
209 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .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 .procname = "fs",
216 .mode = 0555,
217 .child = fs_table,
218 },
219 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 .procname = "debug",
221 .mode = 0555,
222 .child = debug_table,
223 },
224 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 .procname = "dev",
226 .mode = 0555,
227 .child = dev_table,
228 },
Andrew Morton2be7fe02007-07-15 23:41:21 -0700229/*
230 * NOTE: do not add new entries to this table unless you have read
231 * Documentation/sysctl/ctl_unnumbered.txt
232 */
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700233 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Ingo Molnar77e54a12007-07-09 18:52:00 +0200236#ifdef CONFIG_SCHED_DEBUG
Eric Dumazet73c4efd2007-12-18 15:21:13 +0100237static int min_sched_granularity_ns = 100000; /* 100 usecs */
238static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */
239static int min_wakeup_granularity_ns; /* 0 usecs */
240static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100241static int min_sched_tunable_scaling = SCHED_TUNABLESCALING_NONE;
242static int max_sched_tunable_scaling = SCHED_TUNABLESCALING_END-1;
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100243static int min_sched_shares_ratelimit = 100000; /* 100 usec */
244static int max_sched_shares_ratelimit = NSEC_PER_SEC; /* 1 second */
Ingo Molnar77e54a12007-07-09 18:52:00 +0200245#endif
246
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700247static struct ctl_table kern_table[] = {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200248 {
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200249 .procname = "sched_child_runs_first",
250 .data = &sysctl_sched_child_runs_first,
251 .maxlen = sizeof(unsigned int),
252 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800253 .proc_handler = proc_dointvec,
Mike Galbraith2bba22c2009-09-09 15:41:37 +0200254 },
Ingo Molnar77e54a12007-07-09 18:52:00 +0200255#ifdef CONFIG_SCHED_DEBUG
256 {
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100257 .procname = "sched_min_granularity_ns",
258 .data = &sysctl_sched_min_granularity,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200259 .maxlen = sizeof(unsigned int),
260 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800261 .proc_handler = sched_proc_update_handler,
Peter Zijlstrab2be5e92007-11-09 22:39:37 +0100262 .extra1 = &min_sched_granularity_ns,
263 .extra2 = &max_sched_granularity_ns,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200264 },
265 {
Peter Zijlstra21805082007-08-25 18:41:53 +0200266 .procname = "sched_latency_ns",
267 .data = &sysctl_sched_latency,
268 .maxlen = sizeof(unsigned int),
269 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800270 .proc_handler = sched_proc_update_handler,
Peter Zijlstra21805082007-08-25 18:41:53 +0200271 .extra1 = &min_sched_granularity_ns,
272 .extra2 = &max_sched_granularity_ns,
273 },
274 {
Ingo Molnar77e54a12007-07-09 18:52:00 +0200275 .procname = "sched_wakeup_granularity_ns",
276 .data = &sysctl_sched_wakeup_granularity,
277 .maxlen = sizeof(unsigned int),
278 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800279 .proc_handler = sched_proc_update_handler,
Ingo Molnar77e54a12007-07-09 18:52:00 +0200280 .extra1 = &min_wakeup_granularity_ns,
281 .extra2 = &max_wakeup_granularity_ns,
282 },
283 {
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200284 .procname = "sched_shares_ratelimit",
285 .data = &sysctl_sched_shares_ratelimit,
286 .maxlen = sizeof(unsigned int),
287 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800288 .proc_handler = sched_proc_update_handler,
Christian Ehrhardtacb4a842009-11-30 12:16:48 +0100289 .extra1 = &min_sched_shares_ratelimit,
290 .extra2 = &max_sched_shares_ratelimit,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200291 },
292 {
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100293 .procname = "sched_tunable_scaling",
294 .data = &sysctl_sched_tunable_scaling,
295 .maxlen = sizeof(enum sched_tunable_scaling),
296 .mode = 0644,
Linus Torvalds702a7c72009-12-12 11:34:10 -0800297 .proc_handler = sched_proc_update_handler,
Christian Ehrhardt1983a922009-11-30 12:16:47 +0100298 .extra1 = &min_sched_tunable_scaling,
299 .extra2 = &max_sched_tunable_scaling,
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200300 },
301 {
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200302 .procname = "sched_shares_thresh",
303 .data = &sysctl_sched_shares_thresh,
304 .maxlen = sizeof(unsigned int),
305 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800306 .proc_handler = proc_dointvec_minmax,
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200307 .extra1 = &zero,
308 },
309 {
Ingo Molnarda84d962007-10-15 17:00:18 +0200310 .procname = "sched_migration_cost",
311 .data = &sysctl_sched_migration_cost,
312 .maxlen = sizeof(unsigned int),
313 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800314 .proc_handler = proc_dointvec,
Ingo Molnarda84d962007-10-15 17:00:18 +0200315 },
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100316 {
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100317 .procname = "sched_nr_migrate",
318 .data = &sysctl_sched_nr_migrate,
319 .maxlen = sizeof(unsigned int),
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100320 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800321 .proc_handler = proc_dointvec,
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100322 },
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530323 {
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200324 .procname = "sched_time_avg",
325 .data = &sysctl_sched_time_avg,
326 .maxlen = sizeof(unsigned int),
327 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800328 .proc_handler = proc_dointvec,
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200329 },
330 {
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530331 .procname = "timer_migration",
332 .data = &sysctl_timer_migration,
333 .maxlen = sizeof(unsigned int),
334 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800335 .proc_handler = proc_dointvec_minmax,
Arun R Bharadwajbfdb4d92009-06-23 10:00:58 +0530336 .extra1 = &zero,
337 .extra2 = &one,
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +0530338 },
Peter Zijlstra1fc84aa2007-08-25 18:41:52 +0200339#endif
Ingo Molnar1799e352007-09-19 23:34:46 +0200340 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100341 .procname = "sched_rt_period_us",
342 .data = &sysctl_sched_rt_period,
343 .maxlen = sizeof(unsigned int),
344 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800345 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100346 },
347 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100348 .procname = "sched_rt_runtime_us",
349 .data = &sysctl_sched_rt_runtime,
350 .maxlen = sizeof(int),
351 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800352 .proc_handler = sched_rt_handler,
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100353 },
354 {
Ingo Molnar1799e352007-09-19 23:34:46 +0200355 .procname = "sched_compat_yield",
356 .data = &sysctl_sched_compat_yield,
357 .maxlen = sizeof(unsigned int),
358 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800359 .proc_handler = proc_dointvec,
Ingo Molnar1799e352007-09-19 23:34:46 +0200360 },
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700361#ifdef CONFIG_PROVE_LOCKING
362 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700363 .procname = "prove_locking",
364 .data = &prove_locking,
365 .maxlen = sizeof(int),
366 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800367 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700368 },
369#endif
370#ifdef CONFIG_LOCK_STAT
371 {
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700372 .procname = "lock_stat",
373 .data = &lock_stat,
374 .maxlen = sizeof(int),
375 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800376 .proc_handler = proc_dointvec,
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700377 },
378#endif
Ingo Molnar77e54a12007-07-09 18:52:00 +0200379 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 .procname = "panic",
381 .data = &panic_timeout,
382 .maxlen = sizeof(int),
383 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800384 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 },
386 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 .procname = "core_uses_pid",
388 .data = &core_uses_pid,
389 .maxlen = sizeof(int),
390 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800391 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 },
393 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 .procname = "core_pattern",
395 .data = core_pattern,
Dan Aloni71ce92f2007-05-16 22:11:16 -0700396 .maxlen = CORENAME_MAX_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800398 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 },
Neil Hormana2939802009-09-23 15:56:56 -0700400 {
Neil Hormana2939802009-09-23 15:56:56 -0700401 .procname = "core_pipe_limit",
402 .data = &core_pipe_limit,
403 .maxlen = sizeof(unsigned int),
404 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800405 .proc_handler = proc_dointvec,
Neil Hormana2939802009-09-23 15:56:56 -0700406 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800407#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 .procname = "tainted",
Andi Kleen25ddbb12008-10-15 22:01:41 -0700410 .maxlen = sizeof(long),
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800411 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800412 .proc_handler = proc_taint,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 },
Theodore Ts'o34f5a392007-02-10 01:45:24 -0800414#endif
Arjan van de Ven97455122008-01-25 21:08:34 +0100415#ifdef CONFIG_LATENCYTOP
416 {
417 .procname = "latencytop",
418 .data = &latencytop_enabled,
419 .maxlen = sizeof(int),
420 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800421 .proc_handler = proc_dointvec,
Arjan van de Ven97455122008-01-25 21:08:34 +0100422 },
423#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#ifdef CONFIG_BLK_DEV_INITRD
425 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .procname = "real-root-dev",
427 .data = &real_root_dev,
428 .maxlen = sizeof(int),
429 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800430 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 },
432#endif
Ingo Molnar45807a12007-07-15 23:40:10 -0700433 {
Ingo Molnar45807a12007-07-15 23:40:10 -0700434 .procname = "print-fatal-signals",
435 .data = &print_fatal_signals,
436 .maxlen = sizeof(int),
437 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800438 .proc_handler = proc_dointvec,
Ingo Molnar45807a12007-07-15 23:40:10 -0700439 },
David S. Miller72c57ed2008-09-11 23:29:54 -0700440#ifdef CONFIG_SPARC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 .procname = "reboot-cmd",
443 .data = reboot_command,
444 .maxlen = 256,
445 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800446 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 },
448 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .procname = "stop-a",
450 .data = &stop_a_enabled,
451 .maxlen = sizeof (int),
452 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800453 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 },
455 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 .procname = "scons-poweroff",
457 .data = &scons_pwroff,
458 .maxlen = sizeof (int),
459 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800460 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 },
462#endif
David S. Miller08714202008-11-16 23:49:24 -0800463#ifdef CONFIG_SPARC64
464 {
David S. Miller08714202008-11-16 23:49:24 -0800465 .procname = "tsb-ratio",
466 .data = &sysctl_tsb_ratio,
467 .maxlen = sizeof (int),
468 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800469 .proc_handler = proc_dointvec,
David S. Miller08714202008-11-16 23:49:24 -0800470 },
471#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#ifdef __hppa__
473 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 .procname = "soft-power",
475 .data = &pwrsw_enabled,
476 .maxlen = sizeof (int),
477 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800478 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 },
480 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 .procname = "unaligned-trap",
482 .data = &unaligned_enabled,
483 .maxlen = sizeof (int),
484 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800485 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 },
487#endif
488 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 .procname = "ctrl-alt-del",
490 .data = &C_A_D,
491 .maxlen = sizeof(int),
492 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800493 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 },
Steven Rostedt606576c2008-10-06 19:06:12 -0400495#ifdef CONFIG_FUNCTION_TRACER
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200496 {
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200497 .procname = "ftrace_enabled",
498 .data = &ftrace_enabled,
499 .maxlen = sizeof(int),
500 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800501 .proc_handler = ftrace_enable_sysctl,
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200502 },
503#endif
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500504#ifdef CONFIG_STACK_TRACER
505 {
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500506 .procname = "stack_tracer_enabled",
507 .data = &stack_tracer_enabled,
508 .maxlen = sizeof(int),
509 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800510 .proc_handler = stack_trace_sysctl,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500511 },
512#endif
Steven Rostedt944ac422008-10-23 19:26:08 -0400513#ifdef CONFIG_TRACING
514 {
Peter Zijlstra3299b4d2008-11-04 11:58:21 +0100515 .procname = "ftrace_dump_on_oops",
Steven Rostedt944ac422008-10-23 19:26:08 -0400516 .data = &ftrace_dump_on_oops,
517 .maxlen = sizeof(int),
518 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800519 .proc_handler = proc_dointvec,
Steven Rostedt944ac422008-10-23 19:26:08 -0400520 },
521#endif
Johannes Berga1ef5ad2008-07-08 19:00:17 +0200522#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .procname = "modprobe",
525 .data = &modprobe_path,
526 .maxlen = KMOD_PATH_LEN,
527 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800528 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 },
Kees Cook3d433212009-04-02 15:49:29 -0700530 {
Kees Cook3d433212009-04-02 15:49:29 -0700531 .procname = "modules_disabled",
532 .data = &modules_disabled,
533 .maxlen = sizeof(int),
534 .mode = 0644,
535 /* only handle a transition from default "0" to "1" */
Eric W. Biederman6d456112009-11-16 03:11:48 -0800536 .proc_handler = proc_dointvec_minmax,
Kees Cook3d433212009-04-02 15:49:29 -0700537 .extra1 = &one,
538 .extra2 = &one,
539 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540#endif
Andrew Morton57ae2502006-06-23 02:05:47 -0700541#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .procname = "hotplug",
Kay Sievers312c0042005-11-16 09:00:00 +0100544 .data = &uevent_helper,
545 .maxlen = UEVENT_HELPER_PATH_LEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800547 .proc_handler = proc_dostring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 },
549#endif
550#ifdef CONFIG_CHR_DEV_SG
551 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 .procname = "sg-big-buff",
553 .data = &sg_big_buff,
554 .maxlen = sizeof (int),
555 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800556 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 },
558#endif
559#ifdef CONFIG_BSD_PROCESS_ACCT
560 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 .procname = "acct",
562 .data = &acct_parm,
563 .maxlen = 3*sizeof(int),
564 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800565 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 },
567#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568#ifdef CONFIG_MAGIC_SYSRQ
569 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 .procname = "sysrq",
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800571 .data = &__sysrq_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 .maxlen = sizeof (int),
573 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800574 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 },
576#endif
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700577#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 .procname = "cad_pid",
Cedric Le Goater9ec52092006-10-02 02:19:00 -0700580 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 .maxlen = sizeof (int),
582 .mode = 0600,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800583 .proc_handler = proc_do_cad_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 },
Randy Dunlapd6f8ff72006-10-19 23:28:34 -0700585#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 .procname = "threads-max",
588 .data = &max_threads,
589 .maxlen = sizeof(int),
590 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800591 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 },
593 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 .procname = "random",
595 .mode = 0555,
596 .child = random_table,
597 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 .procname = "overflowuid",
600 .data = &overflowuid,
601 .maxlen = sizeof(int),
602 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800603 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 .extra1 = &minolduid,
605 .extra2 = &maxolduid,
606 },
607 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 .procname = "overflowgid",
609 .data = &overflowgid,
610 .maxlen = sizeof(int),
611 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800612 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 .extra1 = &minolduid,
614 .extra2 = &maxolduid,
615 },
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800616#ifdef CONFIG_S390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#ifdef CONFIG_MATHEMU
618 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 .procname = "ieee_emulation_warnings",
620 .data = &sysctl_ieee_emulation_warnings,
621 .maxlen = sizeof(int),
622 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800623 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 },
625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 .procname = "userprocess_debug",
628 .data = &sysctl_userprocess_debug,
629 .maxlen = sizeof(int),
630 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800631 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 },
633#endif
634 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 .procname = "pid_max",
636 .data = &pid_max,
637 .maxlen = sizeof (int),
638 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800639 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 .extra1 = &pid_max_min,
641 .extra2 = &pid_max_max,
642 },
643 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 .procname = "panic_on_oops",
645 .data = &panic_on_oops,
646 .maxlen = sizeof(int),
647 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800648 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800650#if defined CONFIG_PRINTK
651 {
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800652 .procname = "printk",
653 .data = &console_loglevel,
654 .maxlen = 4*sizeof(int),
655 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800656 .proc_handler = proc_dointvec,
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800657 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 .procname = "printk_ratelimit",
Dave Young717115e2008-07-25 01:45:58 -0700660 .data = &printk_ratelimit_state.interval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 .maxlen = sizeof(int),
662 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800663 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 },
665 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 .procname = "printk_ratelimit_burst",
Dave Young717115e2008-07-25 01:45:58 -0700667 .data = &printk_ratelimit_state.burst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .maxlen = sizeof(int),
669 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800670 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 },
Dave Youngaf913222009-09-22 16:43:33 -0700672 {
Dave Youngaf913222009-09-22 16:43:33 -0700673 .procname = "printk_delay",
674 .data = &printk_delay_msec,
675 .maxlen = sizeof(int),
676 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800677 .proc_handler = proc_dointvec_minmax,
Dave Youngaf913222009-09-22 16:43:33 -0700678 .extra1 = &zero,
679 .extra2 = &ten_thousand,
680 },
Joe Perches7ef3d2f2008-02-08 04:21:25 -0800681#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .procname = "ngroups_max",
684 .data = &ngroups_max,
685 .maxlen = sizeof (int),
686 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800687 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 },
Don Zickus58687ac2010-05-07 17:11:44 -0400689#if defined(CONFIG_LOCKUP_DETECTOR)
Don Zickus504d7cf2010-02-12 17:19:19 -0500690 {
Don Zickus58687ac2010-05-07 17:11:44 -0400691 .procname = "watchdog",
692 .data = &watchdog_enabled,
Don Zickus504d7cf2010-02-12 17:19:19 -0500693 .maxlen = sizeof (int),
694 .mode = 0644,
Don Zickus58687ac2010-05-07 17:11:44 -0400695 .proc_handler = proc_dowatchdog_enabled,
696 },
697 {
698 .procname = "watchdog_thresh",
699 .data = &softlockup_thresh,
700 .maxlen = sizeof(int),
701 .mode = 0644,
702 .proc_handler = proc_dowatchdog_thresh,
703 .extra1 = &neg_one,
704 .extra2 = &sixty,
Don Zickus504d7cf2010-02-12 17:19:19 -0500705 },
706#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400707#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) && !defined(CONFIG_LOCKUP_DETECTOR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .procname = "unknown_nmi_panic",
710 .data = &unknown_nmi_panic,
711 .maxlen = sizeof (int),
712 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800713 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 },
Don Zickus407984f2006-09-26 10:52:27 +0200715 {
Don Zickus407984f2006-09-26 10:52:27 +0200716 .procname = "nmi_watchdog",
717 .data = &nmi_watchdog_enabled,
718 .maxlen = sizeof (int),
719 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800720 .proc_handler = proc_nmi_enabled,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 },
722#endif
723#if defined(CONFIG_X86)
724 {
Don Zickus8da5add2006-09-26 10:52:27 +0200725 .procname = "panic_on_unrecovered_nmi",
726 .data = &panic_on_unrecovered_nmi,
727 .maxlen = sizeof(int),
728 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800729 .proc_handler = proc_dointvec,
Don Zickus8da5add2006-09-26 10:52:27 +0200730 },
731 {
Kurt Garloff5211a242009-06-24 14:32:11 -0700732 .procname = "panic_on_io_nmi",
733 .data = &panic_on_io_nmi,
734 .maxlen = sizeof(int),
735 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800736 .proc_handler = proc_dointvec,
Kurt Garloff5211a242009-06-24 14:32:11 -0700737 },
738 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .procname = "bootloader_type",
740 .data = &bootloader_type,
741 .maxlen = sizeof (int),
742 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800743 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 },
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100745 {
H. Peter Anvin50312962009-05-07 16:54:11 -0700746 .procname = "bootloader_version",
747 .data = &bootloader_version,
748 .maxlen = sizeof (int),
749 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800750 .proc_handler = proc_dointvec,
H. Peter Anvin50312962009-05-07 16:54:11 -0700751 },
752 {
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100753 .procname = "kstack_depth_to_print",
754 .data = &kstack_depth_to_print,
755 .maxlen = sizeof(int),
756 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800757 .proc_handler = proc_dointvec,
Chuck Ebbert0741f4d2006-12-07 02:14:11 +0100758 },
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100759 {
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100760 .procname = "io_delay_type",
761 .data = &io_delay_type,
762 .maxlen = sizeof(int),
763 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800764 .proc_handler = proc_dointvec,
Ingo Molnar6e7c4022008-01-30 13:30:05 +0100765 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766#endif
Luke Yang7a9166e2006-02-20 18:28:07 -0800767#if defined(CONFIG_MMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 .procname = "randomize_va_space",
770 .data = &randomize_va_space,
771 .maxlen = sizeof(int),
772 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800773 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 },
Luke Yang7a9166e2006-02-20 18:28:07 -0800775#endif
Martin Schwidefsky0152fb32006-01-14 13:21:00 -0800776#if defined(CONFIG_S390) && defined(CONFIG_SMP)
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700777 {
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700778 .procname = "spin_retry",
779 .data = &spin_retry,
780 .maxlen = sizeof (int),
781 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800782 .proc_handler = proc_dointvec,
Martin Schwidefsky951f22d2005-07-27 11:44:57 -0700783 },
784#endif
Len Brown673d5b42007-07-28 03:33:16 -0400785#if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
Pavel Machekc255d842006-02-20 18:27:58 -0800786 {
Pavel Machekc255d842006-02-20 18:27:58 -0800787 .procname = "acpi_video_flags",
Pavel Machek77afcf72007-07-19 01:47:41 -0700788 .data = &acpi_realmode_flags,
Pavel Machekc255d842006-02-20 18:27:58 -0800789 .maxlen = sizeof (unsigned long),
790 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800791 .proc_handler = proc_doulongvec_minmax,
Pavel Machekc255d842006-02-20 18:27:58 -0800792 },
793#endif
Jes Sorensend2b176e2006-02-28 09:42:23 -0800794#ifdef CONFIG_IA64
795 {
Jes Sorensend2b176e2006-02-28 09:42:23 -0800796 .procname = "ignore-unaligned-usertrap",
797 .data = &no_unaligned_warning,
798 .maxlen = sizeof (int),
799 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800800 .proc_handler = proc_dointvec,
Jes Sorensend2b176e2006-02-28 09:42:23 -0800801 },
Doug Chapman88fc2412009-01-15 10:38:56 -0800802 {
Doug Chapman88fc2412009-01-15 10:38:56 -0800803 .procname = "unaligned-dump-stack",
804 .data = &unaligned_dump_stack,
805 .maxlen = sizeof (int),
806 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800807 .proc_handler = proc_dointvec,
Doug Chapman88fc2412009-01-15 10:38:56 -0800808 },
Jes Sorensend2b176e2006-02-28 09:42:23 -0800809#endif
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700810#ifdef CONFIG_DETECT_SOFTLOCKUP
811 {
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200812 .procname = "softlockup_panic",
813 .data = &softlockup_panic,
814 .maxlen = sizeof(int),
815 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800816 .proc_handler = proc_dointvec_minmax,
Ingo Molnar9c44bc02008-05-12 21:21:04 +0200817 .extra1 = &zero,
818 .extra2 = &one,
819 },
820 {
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700821 .procname = "softlockup_thresh",
822 .data = &softlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200823 .maxlen = sizeof(int),
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700824 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800825 .proc_handler = proc_dosoftlockup_thresh,
Dimitri Sivanich9383d962008-05-12 21:21:14 +0200826 .extra1 = &neg_one,
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700827 .extra2 = &sixty,
828 },
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800829#endif
830#ifdef CONFIG_DETECT_HUNG_TASK
831 {
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800832 .procname = "hung_task_panic",
833 .data = &sysctl_hung_task_panic,
834 .maxlen = sizeof(int),
835 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800836 .proc_handler = proc_dointvec_minmax,
Mandeep Singh Bainese162b392009-01-15 11:08:40 -0800837 .extra1 = &zero,
838 .extra2 = &one,
839 },
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100840 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100841 .procname = "hung_task_check_count",
842 .data = &sysctl_hung_task_check_count,
Ingo Molnar90739082008-01-25 21:08:34 +0100843 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100844 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800845 .proc_handler = proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100846 },
847 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100848 .procname = "hung_task_timeout_secs",
849 .data = &sysctl_hung_task_timeout_secs,
Ingo Molnar90739082008-01-25 21:08:34 +0100850 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100851 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800852 .proc_handler = proc_dohung_task_timeout_secs,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100853 },
854 {
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100855 .procname = "hung_task_warnings",
856 .data = &sysctl_hung_task_warnings,
Ingo Molnar90739082008-01-25 21:08:34 +0100857 .maxlen = sizeof(unsigned long),
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100858 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800859 .proc_handler = proc_doulongvec_minmax,
Ingo Molnar82a1fcb2008-01-25 21:08:02 +0100860 },
Ravikiran G Thirumalaic4f3b632007-10-16 23:26:09 -0700861#endif
Andi Kleenbebfa102006-06-26 13:56:52 +0200862#ifdef CONFIG_COMPAT
863 {
Andi Kleenbebfa102006-06-26 13:56:52 +0200864 .procname = "compat-log",
865 .data = &compat_log,
866 .maxlen = sizeof (int),
867 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800868 .proc_handler = proc_dointvec,
Andi Kleenbebfa102006-06-26 13:56:52 +0200869 },
870#endif
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700871#ifdef CONFIG_RT_MUTEXES
872 {
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700873 .procname = "max_lock_depth",
874 .data = &max_lock_depth,
875 .maxlen = sizeof(int),
876 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800877 .proc_handler = proc_dointvec,
Ingo Molnar23f78d4a2006-06-27 02:54:53 -0700878 },
879#endif
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700880 {
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700881 .procname = "poweroff_cmd",
882 .data = &poweroff_cmd,
883 .maxlen = POWEROFF_CMD_PATH_LEN,
884 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800885 .proc_handler = proc_dostring,
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -0700886 },
David Howells0b77f5b2008-04-29 01:01:32 -0700887#ifdef CONFIG_KEYS
888 {
David Howells0b77f5b2008-04-29 01:01:32 -0700889 .procname = "keys",
890 .mode = 0555,
891 .child = key_sysctls,
892 },
893#endif
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700894#ifdef CONFIG_RCU_TORTURE_TEST
895 {
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700896 .procname = "rcutorture_runnable",
897 .data = &rcutorture_runnable,
898 .maxlen = sizeof(int),
899 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800900 .proc_handler = proc_dointvec,
Paul E. McKenney31a72bc2008-06-18 09:26:49 -0700901 },
902#endif
David Howells12e22c52009-04-03 16:42:35 +0100903#ifdef CONFIG_SLOW_WORK
904 {
David Howells12e22c52009-04-03 16:42:35 +0100905 .procname = "slow-work",
906 .mode = 0555,
907 .child = slow_work_sysctls,
908 },
909#endif
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200910#ifdef CONFIG_PERF_EVENTS
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200911 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200912 .procname = "perf_event_paranoid",
913 .data = &sysctl_perf_event_paranoid,
914 .maxlen = sizeof(sysctl_perf_event_paranoid),
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200915 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800916 .proc_handler = proc_dointvec,
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200917 },
Peter Zijlstrac5078f72009-05-05 17:50:24 +0200918 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200919 .procname = "perf_event_mlock_kb",
920 .data = &sysctl_perf_event_mlock,
921 .maxlen = sizeof(sysctl_perf_event_mlock),
Peter Zijlstrac5078f72009-05-05 17:50:24 +0200922 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800923 .proc_handler = proc_dointvec,
Peter Zijlstrac5078f72009-05-05 17:50:24 +0200924 },
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200925 {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200926 .procname = "perf_event_max_sample_rate",
927 .data = &sysctl_perf_event_sample_rate,
928 .maxlen = sizeof(sysctl_perf_event_sample_rate),
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200929 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800930 .proc_handler = proc_dointvec,
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200931 },
Peter Zijlstra1ccd1542009-04-09 10:53:45 +0200932#endif
Vegard Nossumdfec0722008-04-04 00:51:41 +0200933#ifdef CONFIG_KMEMCHECK
934 {
Vegard Nossumdfec0722008-04-04 00:51:41 +0200935 .procname = "kmemcheck",
936 .data = &kmemcheck_enabled,
937 .maxlen = sizeof(int),
938 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800939 .proc_handler = proc_dointvec,
Vegard Nossumdfec0722008-04-04 00:51:41 +0200940 },
941#endif
Jens Axboecb684b52009-09-15 21:53:11 +0200942#ifdef CONFIG_BLOCK
Jens Axboe5e605b62009-08-05 09:07:21 +0200943 {
Jens Axboe5e605b62009-08-05 09:07:21 +0200944 .procname = "blk_iopoll",
945 .data = &blk_iopoll_enabled,
946 .maxlen = sizeof(int),
947 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800948 .proc_handler = proc_dointvec,
Jens Axboe5e605b62009-08-05 09:07:21 +0200949 },
Jens Axboecb684b52009-09-15 21:53:11 +0200950#endif
Andrew Mortoned2c12f2007-07-19 01:50:35 -0700951/*
952 * NOTE: do not add new entries to this table unless you have read
953 * Documentation/sysctl/ctl_unnumbered.txt
954 */
Eric W. Biederman6fce56e2009-04-03 02:30:53 -0700955 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956};
957
Eric W. Biedermand8217f02007-10-18 03:05:22 -0700958static struct ctl_table vm_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 .procname = "overcommit_memory",
961 .data = &sysctl_overcommit_memory,
962 .maxlen = sizeof(sysctl_overcommit_memory),
963 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800964 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 },
966 {
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700967 .procname = "panic_on_oom",
968 .data = &sysctl_panic_on_oom,
969 .maxlen = sizeof(sysctl_panic_on_oom),
970 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800971 .proc_handler = proc_dointvec,
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700972 },
973 {
David Rientjesfe071d72007-10-16 23:25:56 -0700974 .procname = "oom_kill_allocating_task",
975 .data = &sysctl_oom_kill_allocating_task,
976 .maxlen = sizeof(sysctl_oom_kill_allocating_task),
977 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800978 .proc_handler = proc_dointvec,
David Rientjesfe071d72007-10-16 23:25:56 -0700979 },
980 {
David Rientjesfef1bdd2008-02-07 00:14:07 -0800981 .procname = "oom_dump_tasks",
982 .data = &sysctl_oom_dump_tasks,
983 .maxlen = sizeof(sysctl_oom_dump_tasks),
984 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800985 .proc_handler = proc_dointvec,
David Rientjesfef1bdd2008-02-07 00:14:07 -0800986 },
987 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 .procname = "overcommit_ratio",
989 .data = &sysctl_overcommit_ratio,
990 .maxlen = sizeof(sysctl_overcommit_ratio),
991 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800992 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 },
994 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 .procname = "page-cluster",
996 .data = &page_cluster,
997 .maxlen = sizeof(int),
998 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800999 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 },
1001 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 .procname = "dirty_background_ratio",
1003 .data = &dirty_background_ratio,
1004 .maxlen = sizeof(dirty_background_ratio),
1005 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001006 .proc_handler = dirty_background_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 .extra1 = &zero,
1008 .extra2 = &one_hundred,
1009 },
1010 {
David Rientjes2da02992009-01-06 14:39:31 -08001011 .procname = "dirty_background_bytes",
1012 .data = &dirty_background_bytes,
1013 .maxlen = sizeof(dirty_background_bytes),
1014 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001015 .proc_handler = dirty_background_bytes_handler,
Sven Wegenerfc3501d2009-02-11 13:04:23 -08001016 .extra1 = &one_ul,
David Rientjes2da02992009-01-06 14:39:31 -08001017 },
1018 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 .procname = "dirty_ratio",
1020 .data = &vm_dirty_ratio,
1021 .maxlen = sizeof(vm_dirty_ratio),
1022 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001023 .proc_handler = dirty_ratio_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 .extra1 = &zero,
1025 .extra2 = &one_hundred,
1026 },
1027 {
David Rientjes2da02992009-01-06 14:39:31 -08001028 .procname = "dirty_bytes",
1029 .data = &vm_dirty_bytes,
1030 .maxlen = sizeof(vm_dirty_bytes),
1031 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001032 .proc_handler = dirty_bytes_handler,
Andrea Righi9e4a5bd2009-04-30 15:08:57 -07001033 .extra1 = &dirty_bytes_min,
David Rientjes2da02992009-01-06 14:39:31 -08001034 },
1035 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 .procname = "dirty_writeback_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001037 .data = &dirty_writeback_interval,
1038 .maxlen = sizeof(dirty_writeback_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001040 .proc_handler = dirty_writeback_centisecs_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 },
1042 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 .procname = "dirty_expire_centisecs",
Bart Samwelf6ef9432006-03-24 03:15:48 -08001044 .data = &dirty_expire_interval,
1045 .maxlen = sizeof(dirty_expire_interval),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001047 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 },
1049 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .procname = "nr_pdflush_threads",
1051 .data = &nr_pdflush_threads,
1052 .maxlen = sizeof nr_pdflush_threads,
1053 .mode = 0444 /* read-only*/,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001054 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 },
1056 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .procname = "swappiness",
1058 .data = &vm_swappiness,
1059 .maxlen = sizeof(vm_swappiness),
1060 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001061 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 .extra1 = &zero,
1063 .extra2 = &one_hundred,
1064 },
1065#ifdef CONFIG_HUGETLB_PAGE
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001066 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .procname = "nr_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001068 .data = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 .maxlen = sizeof(unsigned long),
1070 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001071 .proc_handler = hugetlb_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .extra1 = (void *)&hugetlb_zero,
1073 .extra2 = (void *)&hugetlb_infinity,
Lee Schermerhorn06808b02009-12-14 17:58:21 -08001074 },
1075#ifdef CONFIG_NUMA
1076 {
1077 .procname = "nr_hugepages_mempolicy",
1078 .data = NULL,
1079 .maxlen = sizeof(unsigned long),
1080 .mode = 0644,
1081 .proc_handler = &hugetlb_mempolicy_sysctl_handler,
1082 .extra1 = (void *)&hugetlb_zero,
1083 .extra2 = (void *)&hugetlb_infinity,
1084 },
1085#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 .procname = "hugetlb_shm_group",
1088 .data = &sysctl_hugetlb_shm_group,
1089 .maxlen = sizeof(gid_t),
1090 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001091 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 },
Mel Gorman396faf02007-07-17 04:03:13 -07001093 {
Mel Gorman396faf02007-07-17 04:03:13 -07001094 .procname = "hugepages_treat_as_movable",
1095 .data = &hugepages_treat_as_movable,
1096 .maxlen = sizeof(int),
1097 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001098 .proc_handler = hugetlb_treat_movable_handler,
Mel Gorman396faf02007-07-17 04:03:13 -07001099 },
Adam Litke54f9f802007-10-16 01:26:20 -07001100 {
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001101 .procname = "nr_overcommit_hugepages",
Andi Kleene5ff2152008-07-23 21:27:42 -07001102 .data = NULL,
1103 .maxlen = sizeof(unsigned long),
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001104 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001105 .proc_handler = hugetlb_overcommit_handler,
Andi Kleene5ff2152008-07-23 21:27:42 -07001106 .extra1 = (void *)&hugetlb_zero,
1107 .extra2 = (void *)&hugetlb_infinity,
Nishanth Aravamudand1c3fb12007-12-17 16:20:12 -08001108 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#endif
1110 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 .procname = "lowmem_reserve_ratio",
1112 .data = &sysctl_lowmem_reserve_ratio,
1113 .maxlen = sizeof(sysctl_lowmem_reserve_ratio),
1114 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001115 .proc_handler = lowmem_reserve_ratio_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 },
1117 {
Andrew Morton9d0243b2006-01-08 01:00:39 -08001118 .procname = "drop_caches",
1119 .data = &sysctl_drop_caches,
1120 .maxlen = sizeof(int),
1121 .mode = 0644,
1122 .proc_handler = drop_caches_sysctl_handler,
Andrew Morton9d0243b2006-01-08 01:00:39 -08001123 },
1124 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 .procname = "min_free_kbytes",
1126 .data = &min_free_kbytes,
1127 .maxlen = sizeof(min_free_kbytes),
1128 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001129 .proc_handler = min_free_kbytes_sysctl_handler,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .extra1 = &zero,
1131 },
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001132 {
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001133 .procname = "percpu_pagelist_fraction",
1134 .data = &percpu_pagelist_fraction,
1135 .maxlen = sizeof(percpu_pagelist_fraction),
1136 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001137 .proc_handler = percpu_pagelist_fraction_sysctl_handler,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -08001138 .extra1 = &min_percpu_pagelist_fract,
1139 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140#ifdef CONFIG_MMU
1141 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 .procname = "max_map_count",
1143 .data = &sysctl_max_map_count,
1144 .maxlen = sizeof(sysctl_max_map_count),
1145 .mode = 0644,
WANG Cong3e261202009-12-17 15:27:05 -08001146 .proc_handler = proc_dointvec_minmax,
Amerigo Wang70da2342009-12-14 17:59:52 -08001147 .extra1 = &zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 },
Paul Mundtdd8632a2009-01-08 12:04:47 +00001149#else
1150 {
Paul Mundtdd8632a2009-01-08 12:04:47 +00001151 .procname = "nr_trim_pages",
1152 .data = &sysctl_nr_trim_pages,
1153 .maxlen = sizeof(sysctl_nr_trim_pages),
1154 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001155 .proc_handler = proc_dointvec_minmax,
Paul Mundtdd8632a2009-01-08 12:04:47 +00001156 .extra1 = &zero,
1157 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158#endif
1159 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 .procname = "laptop_mode",
1161 .data = &laptop_mode,
1162 .maxlen = sizeof(laptop_mode),
1163 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001164 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 },
1166 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 .procname = "block_dump",
1168 .data = &block_dump,
1169 .maxlen = sizeof(block_dump),
1170 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001171 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 .extra1 = &zero,
1173 },
1174 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 .procname = "vfs_cache_pressure",
1176 .data = &sysctl_vfs_cache_pressure,
1177 .maxlen = sizeof(sysctl_vfs_cache_pressure),
1178 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001179 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 .extra1 = &zero,
1181 },
1182#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
1183 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 .procname = "legacy_va_layout",
1185 .data = &sysctl_legacy_va_layout,
1186 .maxlen = sizeof(sysctl_legacy_va_layout),
1187 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001188 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 .extra1 = &zero,
1190 },
1191#endif
Christoph Lameter17436602006-01-18 17:42:32 -08001192#ifdef CONFIG_NUMA
1193 {
Christoph Lameter17436602006-01-18 17:42:32 -08001194 .procname = "zone_reclaim_mode",
1195 .data = &zone_reclaim_mode,
1196 .maxlen = sizeof(zone_reclaim_mode),
1197 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001198 .proc_handler = proc_dointvec,
Christoph Lameterc84db232006-02-01 03:05:29 -08001199 .extra1 = &zero,
Christoph Lameter17436602006-01-18 17:42:32 -08001200 },
Christoph Lameter96146342006-07-03 00:24:13 -07001201 {
Christoph Lameter96146342006-07-03 00:24:13 -07001202 .procname = "min_unmapped_ratio",
1203 .data = &sysctl_min_unmapped_ratio,
1204 .maxlen = sizeof(sysctl_min_unmapped_ratio),
1205 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001206 .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler,
Christoph Lameter96146342006-07-03 00:24:13 -07001207 .extra1 = &zero,
1208 .extra2 = &one_hundred,
1209 },
Christoph Lameter0ff38492006-09-25 23:31:52 -07001210 {
Christoph Lameter0ff38492006-09-25 23:31:52 -07001211 .procname = "min_slab_ratio",
1212 .data = &sysctl_min_slab_ratio,
1213 .maxlen = sizeof(sysctl_min_slab_ratio),
1214 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001215 .proc_handler = sysctl_min_slab_ratio_sysctl_handler,
Christoph Lameter0ff38492006-09-25 23:31:52 -07001216 .extra1 = &zero,
1217 .extra2 = &one_hundred,
1218 },
Christoph Lameter17436602006-01-18 17:42:32 -08001219#endif
Christoph Lameter77461ab2007-05-09 02:35:13 -07001220#ifdef CONFIG_SMP
1221 {
Christoph Lameter77461ab2007-05-09 02:35:13 -07001222 .procname = "stat_interval",
1223 .data = &sysctl_stat_interval,
1224 .maxlen = sizeof(sysctl_stat_interval),
1225 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001226 .proc_handler = proc_dointvec_jiffies,
Christoph Lameter77461ab2007-05-09 02:35:13 -07001227 },
1228#endif
David Howells6e141542009-12-15 19:27:45 +00001229#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -04001230 {
Eric Parised032182007-06-28 15:55:21 -04001231 .procname = "mmap_min_addr",
Eric Paris788084a2009-07-31 12:54:11 -04001232 .data = &dac_mmap_min_addr,
1233 .maxlen = sizeof(unsigned long),
Eric Parised032182007-06-28 15:55:21 -04001234 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001235 .proc_handler = mmap_min_addr_handler,
Eric Parised032182007-06-28 15:55:21 -04001236 },
David Howells6e141542009-12-15 19:27:45 +00001237#endif
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001238#ifdef CONFIG_NUMA
1239 {
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001240 .procname = "numa_zonelist_order",
1241 .data = &numa_zonelist_order,
1242 .maxlen = NUMA_ZONELIST_ORDER_LEN,
1243 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001244 .proc_handler = numa_zonelist_order_handler,
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -07001245 },
1246#endif
Al Viro2b8232c2007-10-13 08:16:04 +01001247#if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
Paul Mundt5c36e652007-03-01 10:07:42 +09001248 (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
Ingo Molnare6e54942006-06-27 02:53:50 -07001249 {
Ingo Molnare6e54942006-06-27 02:53:50 -07001250 .procname = "vdso_enabled",
1251 .data = &vdso_enabled,
1252 .maxlen = sizeof(vdso_enabled),
1253 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001254 .proc_handler = proc_dointvec,
Ingo Molnare6e54942006-06-27 02:53:50 -07001255 .extra1 = &zero,
1256 },
1257#endif
Bron Gondwana195cf4532008-02-04 22:29:20 -08001258#ifdef CONFIG_HIGHMEM
1259 {
Bron Gondwana195cf4532008-02-04 22:29:20 -08001260 .procname = "highmem_is_dirtyable",
1261 .data = &vm_highmem_is_dirtyable,
1262 .maxlen = sizeof(vm_highmem_is_dirtyable),
1263 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001264 .proc_handler = proc_dointvec_minmax,
Bron Gondwana195cf4532008-02-04 22:29:20 -08001265 .extra1 = &zero,
1266 .extra2 = &one,
1267 },
1268#endif
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001269 {
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001270 .procname = "scan_unevictable_pages",
1271 .data = &scan_unevictable_pages,
1272 .maxlen = sizeof(scan_unevictable_pages),
1273 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001274 .proc_handler = scan_unevictable_handler,
Peter Zijlstra4be6f6b2009-04-13 14:39:33 -07001275 },
Andi Kleen6a460792009-09-16 11:50:15 +02001276#ifdef CONFIG_MEMORY_FAILURE
1277 {
Andi Kleen6a460792009-09-16 11:50:15 +02001278 .procname = "memory_failure_early_kill",
1279 .data = &sysctl_memory_failure_early_kill,
1280 .maxlen = sizeof(sysctl_memory_failure_early_kill),
1281 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001282 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001283 .extra1 = &zero,
1284 .extra2 = &one,
1285 },
1286 {
Andi Kleen6a460792009-09-16 11:50:15 +02001287 .procname = "memory_failure_recovery",
1288 .data = &sysctl_memory_failure_recovery,
1289 .maxlen = sizeof(sysctl_memory_failure_recovery),
1290 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001291 .proc_handler = proc_dointvec_minmax,
Andi Kleen6a460792009-09-16 11:50:15 +02001292 .extra1 = &zero,
1293 .extra2 = &one,
1294 },
1295#endif
1296
Andrew Morton2be7fe02007-07-15 23:41:21 -07001297/*
1298 * NOTE: do not add new entries to this table unless you have read
1299 * Documentation/sysctl/ctl_unnumbered.txt
1300 */
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001301 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302};
1303
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001304#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001305static struct ctl_table binfmt_misc_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001306 { }
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001307};
1308#endif
1309
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001310static struct ctl_table fs_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 .procname = "inode-nr",
1313 .data = &inodes_stat,
1314 .maxlen = 2*sizeof(int),
1315 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001316 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 },
1318 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 .procname = "inode-state",
1320 .data = &inodes_stat,
1321 .maxlen = 7*sizeof(int),
1322 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001323 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 },
1325 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 .procname = "file-nr",
1327 .data = &files_stat,
1328 .maxlen = 3*sizeof(int),
1329 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001330 .proc_handler = proc_nr_files,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 },
1332 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 .procname = "file-max",
1334 .data = &files_stat.max_files,
1335 .maxlen = sizeof(int),
1336 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001337 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 },
1339 {
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001340 .procname = "nr_open",
1341 .data = &sysctl_nr_open,
1342 .maxlen = sizeof(int),
1343 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001344 .proc_handler = proc_dointvec_minmax,
Al Viroeceea0b2008-05-10 10:08:32 -04001345 .extra1 = &sysctl_nr_open_min,
1346 .extra2 = &sysctl_nr_open_max,
Eric Dumazet9cfe0152008-02-06 01:37:16 -08001347 },
1348 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 .procname = "dentry-state",
1350 .data = &dentry_stat,
1351 .maxlen = 6*sizeof(int),
1352 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001353 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 },
1355 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 .procname = "overflowuid",
1357 .data = &fs_overflowuid,
1358 .maxlen = sizeof(int),
1359 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001360 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 .extra1 = &minolduid,
1362 .extra2 = &maxolduid,
1363 },
1364 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 .procname = "overflowgid",
1366 .data = &fs_overflowgid,
1367 .maxlen = sizeof(int),
1368 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001369 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .extra1 = &minolduid,
1371 .extra2 = &maxolduid,
1372 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001373#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 .procname = "leases-enable",
1376 .data = &leases_enable,
1377 .maxlen = sizeof(int),
1378 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001379 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001381#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382#ifdef CONFIG_DNOTIFY
1383 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .procname = "dir-notify-enable",
1385 .data = &dir_notify_enable,
1386 .maxlen = sizeof(int),
1387 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001388 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 },
1390#endif
1391#ifdef CONFIG_MMU
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001392#ifdef CONFIG_FILE_LOCKING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .procname = "lease-break-time",
1395 .data = &lease_break_time,
1396 .maxlen = sizeof(int),
1397 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001398 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 },
Thomas Petazzonibfcd17a2008-08-06 15:12:22 +02001400#endif
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001401#ifdef CONFIG_AIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 .procname = "aio-nr",
1404 .data = &aio_nr,
1405 .maxlen = sizeof(aio_nr),
1406 .mode = 0444,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001407 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 },
1409 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .procname = "aio-max-nr",
1411 .data = &aio_max_nr,
1412 .maxlen = sizeof(aio_max_nr),
1413 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001414 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 },
Thomas Petazzoniebf3f092008-10-15 22:05:12 -07001416#endif /* CONFIG_AIO */
Amy Griffis2d9048e2006-06-01 13:10:59 -07001417#ifdef CONFIG_INOTIFY_USER
Robert Love0399cb02005-07-13 12:38:18 -04001418 {
Robert Love0399cb02005-07-13 12:38:18 -04001419 .procname = "inotify",
1420 .mode = 0555,
1421 .child = inotify_table,
1422 },
1423#endif
Davide Libenzi7ef99642008-12-01 13:13:55 -08001424#ifdef CONFIG_EPOLL
1425 {
1426 .procname = "epoll",
1427 .mode = 0555,
1428 .child = epoll_table,
1429 },
1430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431#endif
Alan Coxd6e71142005-06-23 00:09:43 -07001432 {
Alan Coxd6e71142005-06-23 00:09:43 -07001433 .procname = "suid_dumpable",
1434 .data = &suid_dumpable,
1435 .maxlen = sizeof(int),
1436 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -08001437 .proc_handler = proc_dointvec_minmax,
Matthew Wilcox8e654fb2009-04-02 16:58:33 -07001438 .extra1 = &zero,
1439 .extra2 = &two,
Alan Coxd6e71142005-06-23 00:09:43 -07001440 },
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001441#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
1442 {
Eric W. Biederman2abc26f2007-02-14 00:34:07 -08001443 .procname = "binfmt_misc",
1444 .mode = 0555,
1445 .child = binfmt_misc_table,
1446 },
1447#endif
Andrew Morton2be7fe02007-07-15 23:41:21 -07001448/*
1449 * NOTE: do not add new entries to this table unless you have read
1450 * Documentation/sysctl/ctl_unnumbered.txt
1451 */
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001452 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453};
1454
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001455static struct ctl_table debug_table[] = {
David S. Miller4b177642010-03-01 00:02:23 -08001456#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_SPARC)
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001457 {
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +02001458 .procname = "exception-trace",
1459 .data = &show_unhandled_signals,
1460 .maxlen = sizeof(int),
1461 .mode = 0644,
1462 .proc_handler = proc_dointvec
1463 },
1464#endif
Masami Hiramatsub2be84d2010-02-25 08:34:15 -05001465#if defined(CONFIG_OPTPROBES)
1466 {
1467 .procname = "kprobes-optimization",
1468 .data = &sysctl_kprobes_optimization,
1469 .maxlen = sizeof(int),
1470 .mode = 0644,
1471 .proc_handler = proc_kprobes_optimization_handler,
1472 .extra1 = &zero,
1473 .extra2 = &one,
1474 },
1475#endif
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001476 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477};
1478
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001479static struct ctl_table dev_table[] = {
Eric W. Biederman6fce56e2009-04-03 02:30:53 -07001480 { }
Robert Love0eeca282005-07-12 17:06:03 -04001481};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Al Viro330d57f2005-11-04 10:18:40 +00001483static DEFINE_SPINLOCK(sysctl_lock);
1484
1485/* called under sysctl_lock */
1486static int use_table(struct ctl_table_header *p)
1487{
1488 if (unlikely(p->unregistering))
1489 return 0;
1490 p->used++;
1491 return 1;
1492}
1493
1494/* called under sysctl_lock */
1495static void unuse_table(struct ctl_table_header *p)
1496{
1497 if (!--p->used)
1498 if (unlikely(p->unregistering))
1499 complete(p->unregistering);
1500}
1501
1502/* called under sysctl_lock, will reacquire if has to wait */
1503static void start_unregistering(struct ctl_table_header *p)
1504{
1505 /*
1506 * if p->used is 0, nobody will ever touch that entry again;
1507 * we'll eliminate all paths to it before dropping sysctl_lock
1508 */
1509 if (unlikely(p->used)) {
1510 struct completion wait;
1511 init_completion(&wait);
1512 p->unregistering = &wait;
1513 spin_unlock(&sysctl_lock);
1514 wait_for_completion(&wait);
1515 spin_lock(&sysctl_lock);
Al Virof7e6ced2008-07-15 01:44:23 -04001516 } else {
1517 /* anything non-NULL; we'll never dereference it */
1518 p->unregistering = ERR_PTR(-EINVAL);
Al Viro330d57f2005-11-04 10:18:40 +00001519 }
1520 /*
1521 * do not remove from the list until nobody holds it; walking the
1522 * list in do_sysctl() relies on that.
1523 */
1524 list_del_init(&p->ctl_entry);
1525}
1526
Al Virof7e6ced2008-07-15 01:44:23 -04001527void sysctl_head_get(struct ctl_table_header *head)
1528{
1529 spin_lock(&sysctl_lock);
1530 head->count++;
1531 spin_unlock(&sysctl_lock);
1532}
1533
1534void sysctl_head_put(struct ctl_table_header *head)
1535{
1536 spin_lock(&sysctl_lock);
1537 if (!--head->count)
1538 kfree(head);
1539 spin_unlock(&sysctl_lock);
1540}
1541
1542struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
1543{
1544 if (!head)
1545 BUG();
1546 spin_lock(&sysctl_lock);
1547 if (!use_table(head))
1548 head = ERR_PTR(-ENOENT);
1549 spin_unlock(&sysctl_lock);
1550 return head;
1551}
1552
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001553void sysctl_head_finish(struct ctl_table_header *head)
1554{
1555 if (!head)
1556 return;
1557 spin_lock(&sysctl_lock);
1558 unuse_table(head);
1559 spin_unlock(&sysctl_lock);
1560}
1561
Al Viro73455092008-07-14 21:22:20 -04001562static struct ctl_table_set *
1563lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces)
1564{
1565 struct ctl_table_set *set = &root->default_set;
1566 if (root->lookup)
1567 set = root->lookup(root, namespaces);
1568 return set;
1569}
1570
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001571static struct list_head *
1572lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces)
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001573{
Al Viro73455092008-07-14 21:22:20 -04001574 struct ctl_table_set *set = lookup_header_set(root, namespaces);
1575 return &set->list;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001576}
1577
1578struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces,
1579 struct ctl_table_header *prev)
1580{
1581 struct ctl_table_root *root;
1582 struct list_head *header_list;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001583 struct ctl_table_header *head;
1584 struct list_head *tmp;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001585
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001586 spin_lock(&sysctl_lock);
1587 if (prev) {
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001588 head = prev;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001589 tmp = &prev->ctl_entry;
1590 unuse_table(prev);
1591 goto next;
1592 }
1593 tmp = &root_table_header.ctl_entry;
1594 for (;;) {
1595 head = list_entry(tmp, struct ctl_table_header, ctl_entry);
1596
1597 if (!use_table(head))
1598 goto next;
1599 spin_unlock(&sysctl_lock);
1600 return head;
1601 next:
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001602 root = head->root;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001603 tmp = tmp->next;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001604 header_list = lookup_header_list(root, namespaces);
1605 if (tmp != header_list)
1606 continue;
1607
1608 do {
1609 root = list_entry(root->root_list.next,
1610 struct ctl_table_root, root_list);
1611 if (root == &sysctl_table_root)
1612 goto out;
1613 header_list = lookup_header_list(root, namespaces);
1614 } while (list_empty(header_list));
1615 tmp = header_list->next;
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001616 }
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001617out:
Eric W. Biederman805b5d52007-02-14 00:34:11 -08001618 spin_unlock(&sysctl_lock);
1619 return NULL;
1620}
1621
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001622struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev)
1623{
1624 return __sysctl_head_next(current->nsproxy, prev);
1625}
1626
1627void register_sysctl_root(struct ctl_table_root *root)
1628{
1629 spin_lock(&sysctl_lock);
1630 list_add_tail(&root->root_list, &sysctl_table_root.root_list);
1631 spin_unlock(&sysctl_lock);
1632}
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634/*
Eric W. Biederman1ff007e2007-02-14 00:34:11 -08001635 * sysctl_perm does NOT grant the superuser all rights automatically, because
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 * some sysctl variables are readonly even to root.
1637 */
1638
1639static int test_perm(int mode, int op)
1640{
David Howells76aac0e2008-11-14 10:39:12 +11001641 if (!current_euid())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 mode >>= 6;
1643 else if (in_egroup_p(0))
1644 mode >>= 3;
Al Viroe6305c42008-07-15 21:03:57 -04001645 if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647 return -EACCES;
1648}
1649
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001650int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 int error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001653 int mode;
1654
Al Viroe6305c42008-07-15 21:03:57 -04001655 error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (error)
1657 return error;
Pavel Emelyanovd7321cd2008-04-29 01:02:44 -07001658
1659 if (root->permissions)
1660 mode = root->permissions(root, current->nsproxy, table);
1661 else
1662 mode = table->mode;
1663
1664 return test_perm(mode, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001667static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table)
1668{
Eric W. Biederman2315ffa2009-04-03 03:18:02 -07001669 for (; table->procname; table++) {
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001670 table->parent = parent;
1671 if (table->child)
1672 sysctl_set_parent(table, table->child);
1673 }
1674}
1675
1676static __init int sysctl_init(void)
1677{
1678 sysctl_set_parent(NULL, root_table);
Holger Schurig88f458e2008-04-29 01:02:36 -07001679#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
1680 {
1681 int err;
1682 err = sysctl_check_table(current->nsproxy, root_table);
1683 }
1684#endif
Eric W. Biedermand912b0c2007-02-14 00:34:13 -08001685 return 0;
1686}
1687
1688core_initcall(sysctl_init);
1689
Al Virobfbcf032008-07-27 06:31:22 +01001690static struct ctl_table *is_branch_in(struct ctl_table *branch,
1691 struct ctl_table *table)
Al Viroae7edec2008-07-15 06:33:31 -04001692{
1693 struct ctl_table *p;
1694 const char *s = branch->procname;
1695
1696 /* branch should have named subdirectory as its first element */
1697 if (!s || !branch->child)
Al Virobfbcf032008-07-27 06:31:22 +01001698 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001699
1700 /* ... and nothing else */
Eric W. Biederman2315ffa2009-04-03 03:18:02 -07001701 if (branch[1].procname)
Al Virobfbcf032008-07-27 06:31:22 +01001702 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001703
1704 /* table should contain subdirectory with the same name */
Eric W. Biederman2315ffa2009-04-03 03:18:02 -07001705 for (p = table; p->procname; p++) {
Al Viroae7edec2008-07-15 06:33:31 -04001706 if (!p->child)
1707 continue;
1708 if (p->procname && strcmp(p->procname, s) == 0)
Al Virobfbcf032008-07-27 06:31:22 +01001709 return p;
Al Viroae7edec2008-07-15 06:33:31 -04001710 }
Al Virobfbcf032008-07-27 06:31:22 +01001711 return NULL;
Al Viroae7edec2008-07-15 06:33:31 -04001712}
1713
1714/* see if attaching q to p would be an improvement */
1715static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q)
1716{
1717 struct ctl_table *to = p->ctl_table, *by = q->ctl_table;
Al Virobfbcf032008-07-27 06:31:22 +01001718 struct ctl_table *next;
Al Viroae7edec2008-07-15 06:33:31 -04001719 int is_better = 0;
1720 int not_in_parent = !p->attached_by;
1721
Al Virobfbcf032008-07-27 06:31:22 +01001722 while ((next = is_branch_in(by, to)) != NULL) {
Al Viroae7edec2008-07-15 06:33:31 -04001723 if (by == q->attached_by)
1724 is_better = 1;
1725 if (to == p->attached_by)
1726 not_in_parent = 1;
1727 by = by->child;
Al Virobfbcf032008-07-27 06:31:22 +01001728 to = next->child;
Al Viroae7edec2008-07-15 06:33:31 -04001729 }
1730
1731 if (is_better && not_in_parent) {
1732 q->attached_by = by;
1733 q->attached_to = to;
1734 q->parent = p;
1735 }
1736}
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001739 * __register_sysctl_paths - register a sysctl hierarchy
1740 * @root: List of sysctl headers to register on
1741 * @namespaces: Data to compute which lists of sysctl entries are visible
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001742 * @path: The path to the directory the sysctl table is in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * @table: the top-level table structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 *
1745 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001746 * array. A completely 0 filled entry terminates the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 *
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001748 * The members of the &struct ctl_table structure are used as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
1751 * enter a sysctl file
1752 *
1753 * data - a pointer to data for use by proc_handler
1754 *
1755 * maxlen - the maximum size in bytes of the data
1756 *
1757 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
1758 *
1759 * child - a pointer to the child sysctl table if this entry is a directory, or
1760 * %NULL.
1761 *
1762 * proc_handler - the text handler routine (described below)
1763 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 * de - for internal use by the sysctl routines
1765 *
1766 * extra1, extra2 - extra pointers usable by the proc handler routines
1767 *
1768 * Leaf nodes in the sysctl tree will be represented by a single file
1769 * under /proc; non-leaf nodes will be represented by directories.
1770 *
1771 * sysctl(2) can automatically manage read and write requests through
1772 * the sysctl table. The data and maxlen fields of the ctl_table
1773 * struct enable minimal validation of the values being written to be
1774 * performed, and the mode field allows minimal authentication.
1775 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 * There must be a proc_handler routine for any terminal nodes
1777 * mirrored under /proc/sys (non-terminals are handled by a built-in
1778 * directory handler). Several default handlers are available to
1779 * cover common cases -
1780 *
1781 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1782 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(),
1783 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
1784 *
1785 * It is the handler's job to read the input buffer from user memory
1786 * and process it. The handler should return 0 on success.
1787 *
1788 * This routine returns %NULL on a failure to register, and a pointer
1789 * to the table header on success.
1790 */
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001791struct ctl_table_header *__register_sysctl_paths(
1792 struct ctl_table_root *root,
1793 struct nsproxy *namespaces,
1794 const struct ctl_path *path, struct ctl_table *table)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001796 struct ctl_table_header *header;
1797 struct ctl_table *new, **prevp;
1798 unsigned int n, npath;
Al Viroae7edec2008-07-15 06:33:31 -04001799 struct ctl_table_set *set;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001800
1801 /* Count the path components */
Eric W. Biederman2315ffa2009-04-03 03:18:02 -07001802 for (npath = 0; path[npath].procname; ++npath)
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001803 ;
1804
1805 /*
1806 * For each path component, allocate a 2-element ctl_table array.
1807 * The first array element will be filled with the sysctl entry
Eric W. Biederman2315ffa2009-04-03 03:18:02 -07001808 * for this, the second will be the sentinel (procname == 0).
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001809 *
1810 * We allocate everything in one go so that we don't have to
1811 * worry about freeing additional memory in unregister_sysctl_table.
1812 */
1813 header = kzalloc(sizeof(struct ctl_table_header) +
1814 (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL);
1815 if (!header)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return NULL;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001817
1818 new = (struct ctl_table *) (header + 1);
1819
1820 /* Now connect the dots */
1821 prevp = &header->ctl_table;
1822 for (n = 0; n < npath; ++n, ++path) {
1823 /* Copy the procname */
1824 new->procname = path->procname;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001825 new->mode = 0555;
1826
1827 *prevp = new;
1828 prevp = &new->child;
1829
1830 new += 2;
1831 }
1832 *prevp = table;
Eric W. Biederman23eb06d2007-11-30 23:52:10 +11001833 header->ctl_table_arg = table;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001834
1835 INIT_LIST_HEAD(&header->ctl_entry);
1836 header->used = 0;
1837 header->unregistering = NULL;
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001838 header->root = root;
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001839 sysctl_set_parent(NULL, header->ctl_table);
Al Virof7e6ced2008-07-15 01:44:23 -04001840 header->count = 1;
Holger Schurig88f458e2008-04-29 01:02:36 -07001841#ifdef CONFIG_SYSCTL_SYSCALL_CHECK
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001842 if (sysctl_check_table(namespaces, header->ctl_table)) {
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001843 kfree(header);
Eric W. Biedermanfc6cd252007-10-18 03:05:54 -07001844 return NULL;
1845 }
Holger Schurig88f458e2008-04-29 01:02:36 -07001846#endif
Al Viro330d57f2005-11-04 10:18:40 +00001847 spin_lock(&sysctl_lock);
Al Viro73455092008-07-14 21:22:20 -04001848 header->set = lookup_header_set(root, namespaces);
Al Viroae7edec2008-07-15 06:33:31 -04001849 header->attached_by = header->ctl_table;
1850 header->attached_to = root_table;
1851 header->parent = &root_table_header;
1852 for (set = header->set; set; set = set->parent) {
1853 struct ctl_table_header *p;
1854 list_for_each_entry(p, &set->list, ctl_entry) {
1855 if (p->unregistering)
1856 continue;
1857 try_attach(p, header);
1858 }
1859 }
1860 header->parent->count++;
Al Viro73455092008-07-14 21:22:20 -04001861 list_add_tail(&header->ctl_entry, &header->set->list);
Al Viro330d57f2005-11-04 10:18:40 +00001862 spin_unlock(&sysctl_lock);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001863
1864 return header;
1865}
1866
1867/**
Eric W. Biedermane51b6ba2007-11-30 23:54:00 +11001868 * register_sysctl_table_path - register a sysctl table hierarchy
1869 * @path: The path to the directory the sysctl table is in.
1870 * @table: the top-level table structure
1871 *
1872 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1873 * array. A completely 0 filled entry terminates the table.
1874 *
1875 * See __register_sysctl_paths for more details.
1876 */
1877struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1878 struct ctl_table *table)
1879{
1880 return __register_sysctl_paths(&sysctl_table_root, current->nsproxy,
1881 path, table);
1882}
1883
1884/**
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001885 * register_sysctl_table - register a sysctl table hierarchy
1886 * @table: the top-level table structure
1887 *
1888 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
1889 * array. A completely 0 filled entry terminates the table.
1890 *
1891 * See register_sysctl_paths for more details.
1892 */
1893struct ctl_table_header *register_sysctl_table(struct ctl_table *table)
1894{
1895 static const struct ctl_path null_path[] = { {} };
1896
1897 return register_sysctl_paths(null_path, table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
1899
1900/**
1901 * unregister_sysctl_table - unregister a sysctl table hierarchy
1902 * @header: the header returned from register_sysctl_table
1903 *
1904 * Unregisters the sysctl table and all children. proc entries may not
1905 * actually be removed until they are no longer used by anyone.
1906 */
1907void unregister_sysctl_table(struct ctl_table_header * header)
1908{
Al Viro330d57f2005-11-04 10:18:40 +00001909 might_sleep();
Pavel Emelyanovf1dad162007-12-04 23:45:24 -08001910
1911 if (header == NULL)
1912 return;
1913
Al Viro330d57f2005-11-04 10:18:40 +00001914 spin_lock(&sysctl_lock);
1915 start_unregistering(header);
Al Viroae7edec2008-07-15 06:33:31 -04001916 if (!--header->parent->count) {
1917 WARN_ON(1);
1918 kfree(header->parent);
1919 }
Al Virof7e6ced2008-07-15 01:44:23 -04001920 if (!--header->count)
1921 kfree(header);
Al Viro330d57f2005-11-04 10:18:40 +00001922 spin_unlock(&sysctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
Al Viro9043476f2008-07-15 08:54:06 -04001925int sysctl_is_seen(struct ctl_table_header *p)
1926{
1927 struct ctl_table_set *set = p->set;
1928 int res;
1929 spin_lock(&sysctl_lock);
1930 if (p->unregistering)
1931 res = 0;
1932 else if (!set->is_seen)
1933 res = 1;
1934 else
1935 res = set->is_seen(set);
1936 spin_unlock(&sysctl_lock);
1937 return res;
1938}
1939
Al Viro73455092008-07-14 21:22:20 -04001940void setup_sysctl_set(struct ctl_table_set *p,
1941 struct ctl_table_set *parent,
1942 int (*is_seen)(struct ctl_table_set *))
1943{
1944 INIT_LIST_HEAD(&p->list);
1945 p->parent = parent ? parent : &sysctl_table_root.default_set;
1946 p->is_seen = is_seen;
1947}
1948
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001949#else /* !CONFIG_SYSCTL */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07001950struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001951{
1952 return NULL;
1953}
1954
Eric W. Biederman29e796f2007-11-30 23:50:18 +11001955struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
1956 struct ctl_table *table)
1957{
1958 return NULL;
1959}
1960
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001961void unregister_sysctl_table(struct ctl_table_header * table)
1962{
1963}
1964
Al Viro73455092008-07-14 21:22:20 -04001965void setup_sysctl_set(struct ctl_table_set *p,
1966 struct ctl_table_set *parent,
1967 int (*is_seen)(struct ctl_table_set *))
1968{
1969}
1970
Al Virof7e6ced2008-07-15 01:44:23 -04001971void sysctl_head_put(struct ctl_table_header *head)
1972{
1973}
1974
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001975#endif /* CONFIG_SYSCTL */
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977/*
1978 * /proc/sys support
1979 */
1980
Eric W. Biedermanb89a8172006-09-27 01:51:04 -07001981#ifdef CONFIG_PROC_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001983static int _proc_do_string(void* data, int maxlen, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001984 void __user *buffer,
Adrian Bunkb1ba4dd2006-10-02 02:18:05 -07001985 size_t *lenp, loff_t *ppos)
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001986{
1987 size_t len;
1988 char __user *p;
1989 char c;
Oleg Nesterov8d060872007-02-10 01:46:38 -08001990
1991 if (!data || !maxlen || !*lenp) {
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001992 *lenp = 0;
1993 return 0;
1994 }
Oleg Nesterov8d060872007-02-10 01:46:38 -08001995
Sam Vilainf5dd3d62006-10-02 02:18:04 -07001996 if (write) {
1997 len = 0;
1998 p = buffer;
1999 while (len < *lenp) {
2000 if (get_user(c, p++))
2001 return -EFAULT;
2002 if (c == 0 || c == '\n')
2003 break;
2004 len++;
2005 }
2006 if (len >= maxlen)
2007 len = maxlen-1;
2008 if(copy_from_user(data, buffer, len))
2009 return -EFAULT;
2010 ((char *) data)[len] = 0;
2011 *ppos += *lenp;
2012 } else {
2013 len = strlen(data);
2014 if (len > maxlen)
2015 len = maxlen;
Oleg Nesterov8d060872007-02-10 01:46:38 -08002016
2017 if (*ppos > len) {
2018 *lenp = 0;
2019 return 0;
2020 }
2021
2022 data += *ppos;
2023 len -= *ppos;
2024
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002025 if (len > *lenp)
2026 len = *lenp;
2027 if (len)
2028 if(copy_to_user(buffer, data, len))
2029 return -EFAULT;
2030 if (len < *lenp) {
2031 if(put_user('\n', ((char __user *) buffer) + len))
2032 return -EFAULT;
2033 len++;
2034 }
2035 *lenp = len;
2036 *ppos += len;
2037 }
2038 return 0;
2039}
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041/**
2042 * proc_dostring - read a string sysctl
2043 * @table: the sysctl table
2044 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 * @buffer: the user buffer
2046 * @lenp: the size of the user buffer
2047 * @ppos: file position
2048 *
2049 * Reads/writes a string from/to the user buffer. If the kernel
2050 * buffer provided is not large enough to hold the string, the
2051 * string is truncated. The copied string is %NULL-terminated.
2052 * If the string is being read by the user process, it is copied
2053 * and a newline '\n' is added. It is truncated if the buffer is
2054 * not large enough.
2055 *
2056 * Returns 0 on success.
2057 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002058int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 void __user *buffer, size_t *lenp, loff_t *ppos)
2060{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002061 return _proc_do_string(table->data, table->maxlen, write,
Sam Vilainf5dd3d62006-10-02 02:18:04 -07002062 buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
2067 int *valp,
2068 int write, void *data)
2069{
2070 if (write) {
2071 *valp = *negp ? -*lvalp : *lvalp;
2072 } else {
2073 int val = *valp;
2074 if (val < 0) {
2075 *negp = -1;
2076 *lvalp = (unsigned long)-val;
2077 } else {
2078 *negp = 0;
2079 *lvalp = (unsigned long)val;
2080 }
2081 }
2082 return 0;
2083}
2084
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002085static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002086 int write, void __user *buffer,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002087 size_t *lenp, loff_t *ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2089 int write, void *data),
2090 void *data)
2091{
2092#define TMPBUFLEN 21
Sukanto Ghosh7338f292009-06-17 16:27:50 -07002093 int *i, vleft, first = 1, neg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 unsigned long lval;
2095 size_t left, len;
2096
2097 char buf[TMPBUFLEN], *p;
2098 char __user *s = buffer;
2099
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002100 if (!tbl_data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 (*ppos && !write)) {
2102 *lenp = 0;
2103 return 0;
2104 }
2105
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002106 i = (int *) tbl_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 vleft = table->maxlen / sizeof(*i);
2108 left = *lenp;
2109
2110 if (!conv)
2111 conv = do_proc_dointvec_conv;
2112
2113 for (; left && vleft--; i++, first=0) {
2114 if (write) {
2115 while (left) {
2116 char c;
2117 if (get_user(c, s))
2118 return -EFAULT;
2119 if (!isspace(c))
2120 break;
2121 left--;
2122 s++;
2123 }
2124 if (!left)
2125 break;
2126 neg = 0;
2127 len = left;
2128 if (len > sizeof(buf) - 1)
2129 len = sizeof(buf) - 1;
2130 if (copy_from_user(buf, s, len))
2131 return -EFAULT;
2132 buf[len] = 0;
2133 p = buf;
2134 if (*p == '-' && left > 1) {
2135 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002136 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
2138 if (*p < '0' || *p > '9')
2139 break;
2140
2141 lval = simple_strtoul(p, &p, 0);
2142
2143 len = p-buf;
2144 if ((len < left) && *p && !isspace(*p))
2145 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 s += len;
2147 left -= len;
2148
2149 if (conv(&neg, &lval, i, 1, data))
2150 break;
2151 } else {
2152 p = buf;
2153 if (!first)
2154 *p++ = '\t';
2155
2156 if (conv(&neg, &lval, i, 0, data))
2157 break;
2158
2159 sprintf(p, "%s%lu", neg ? "-" : "", lval);
2160 len = strlen(buf);
2161 if (len > left)
2162 len = left;
2163 if(copy_to_user(s, buf, len))
2164 return -EFAULT;
2165 left -= len;
2166 s += len;
2167 }
2168 }
2169
2170 if (!write && !first && left) {
2171 if(put_user('\n', s))
2172 return -EFAULT;
2173 left--, s++;
2174 }
2175 if (write) {
2176 while (left) {
2177 char c;
2178 if (get_user(c, s++))
2179 return -EFAULT;
2180 if (!isspace(c))
2181 break;
2182 left--;
2183 }
2184 }
2185 if (write && first)
2186 return -EINVAL;
2187 *lenp -= left;
2188 *ppos += *lenp;
2189 return 0;
2190#undef TMPBUFLEN
2191}
2192
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002193static int do_proc_dointvec(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002194 void __user *buffer, size_t *lenp, loff_t *ppos,
2195 int (*conv)(int *negp, unsigned long *lvalp, int *valp,
2196 int write, void *data),
2197 void *data)
2198{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002199 return __do_proc_dointvec(table->data, table, write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002200 buffer, lenp, ppos, conv, data);
2201}
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203/**
2204 * proc_dointvec - read a vector of integers
2205 * @table: the sysctl table
2206 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 * @buffer: the user buffer
2208 * @lenp: the size of the user buffer
2209 * @ppos: file position
2210 *
2211 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2212 * values from/to the user buffer, treated as an ASCII string.
2213 *
2214 * Returns 0 on success.
2215 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002216int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 void __user *buffer, size_t *lenp, loff_t *ppos)
2218{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002219 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 NULL,NULL);
2221}
2222
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002223/*
Andi Kleen25ddbb12008-10-15 22:01:41 -07002224 * Taint values can only be increased
2225 * This means we can safely use a temporary.
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002226 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002227static int proc_taint(struct ctl_table *table, int write,
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002228 void __user *buffer, size_t *lenp, loff_t *ppos)
2229{
Andi Kleen25ddbb12008-10-15 22:01:41 -07002230 struct ctl_table t;
2231 unsigned long tmptaint = get_taint();
2232 int err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002233
Bastian Blank91fcd412007-04-23 14:41:14 -07002234 if (write && !capable(CAP_SYS_ADMIN))
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002235 return -EPERM;
2236
Andi Kleen25ddbb12008-10-15 22:01:41 -07002237 t = *table;
2238 t.data = &tmptaint;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002239 err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
Andi Kleen25ddbb12008-10-15 22:01:41 -07002240 if (err < 0)
2241 return err;
2242
2243 if (write) {
2244 /*
2245 * Poor man's atomic or. Not worth adding a primitive
2246 * to everyone's atomic.h for this
2247 */
2248 int i;
2249 for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) {
2250 if ((tmptaint >> i) & 1)
2251 add_taint(i);
2252 }
2253 }
2254
2255 return err;
Theodore Ts'o34f5a392007-02-10 01:45:24 -08002256}
2257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258struct do_proc_dointvec_minmax_conv_param {
2259 int *min;
2260 int *max;
2261};
2262
2263static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp,
2264 int *valp,
2265 int write, void *data)
2266{
2267 struct do_proc_dointvec_minmax_conv_param *param = data;
2268 if (write) {
2269 int val = *negp ? -*lvalp : *lvalp;
2270 if ((param->min && *param->min > val) ||
2271 (param->max && *param->max < val))
2272 return -EINVAL;
2273 *valp = val;
2274 } else {
2275 int val = *valp;
2276 if (val < 0) {
2277 *negp = -1;
2278 *lvalp = (unsigned long)-val;
2279 } else {
2280 *negp = 0;
2281 *lvalp = (unsigned long)val;
2282 }
2283 }
2284 return 0;
2285}
2286
2287/**
2288 * proc_dointvec_minmax - read a vector of integers with min/max values
2289 * @table: the sysctl table
2290 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 * @buffer: the user buffer
2292 * @lenp: the size of the user buffer
2293 * @ppos: file position
2294 *
2295 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2296 * values from/to the user buffer, treated as an ASCII string.
2297 *
2298 * This routine will ensure the values are within the range specified by
2299 * table->extra1 (min) and table->extra2 (max).
2300 *
2301 * Returns 0 on success.
2302 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002303int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 void __user *buffer, size_t *lenp, loff_t *ppos)
2305{
2306 struct do_proc_dointvec_minmax_conv_param param = {
2307 .min = (int *) table->extra1,
2308 .max = (int *) table->extra2,
2309 };
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002310 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 do_proc_dointvec_minmax_conv, &param);
2312}
2313
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002314static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 void __user *buffer,
2316 size_t *lenp, loff_t *ppos,
2317 unsigned long convmul,
2318 unsigned long convdiv)
2319{
2320#define TMPBUFLEN 21
2321 unsigned long *i, *min, *max, val;
2322 int vleft, first=1, neg;
2323 size_t len, left;
2324 char buf[TMPBUFLEN], *p;
2325 char __user *s = buffer;
2326
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002327 if (!data || !table->maxlen || !*lenp ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 (*ppos && !write)) {
2329 *lenp = 0;
2330 return 0;
2331 }
2332
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002333 i = (unsigned long *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 min = (unsigned long *) table->extra1;
2335 max = (unsigned long *) table->extra2;
2336 vleft = table->maxlen / sizeof(unsigned long);
2337 left = *lenp;
2338
2339 for (; left && vleft--; i++, min++, max++, first=0) {
2340 if (write) {
2341 while (left) {
2342 char c;
2343 if (get_user(c, s))
2344 return -EFAULT;
2345 if (!isspace(c))
2346 break;
2347 left--;
2348 s++;
2349 }
2350 if (!left)
2351 break;
2352 neg = 0;
2353 len = left;
2354 if (len > TMPBUFLEN-1)
2355 len = TMPBUFLEN-1;
2356 if (copy_from_user(buf, s, len))
2357 return -EFAULT;
2358 buf[len] = 0;
2359 p = buf;
2360 if (*p == '-' && left > 1) {
2361 neg = 1;
BP, Praveenbd9b0ba2006-12-06 20:39:09 -08002362 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
2364 if (*p < '0' || *p > '9')
2365 break;
2366 val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
2367 len = p-buf;
2368 if ((len < left) && *p && !isspace(*p))
2369 break;
2370 if (neg)
2371 val = -val;
2372 s += len;
2373 left -= len;
2374
2375 if(neg)
2376 continue;
2377 if ((min && val < *min) || (max && val > *max))
2378 continue;
2379 *i = val;
2380 } else {
2381 p = buf;
2382 if (!first)
2383 *p++ = '\t';
2384 sprintf(p, "%lu", convdiv * (*i) / convmul);
2385 len = strlen(buf);
2386 if (len > left)
2387 len = left;
2388 if(copy_to_user(s, buf, len))
2389 return -EFAULT;
2390 left -= len;
2391 s += len;
2392 }
2393 }
2394
2395 if (!write && !first && left) {
2396 if(put_user('\n', s))
2397 return -EFAULT;
2398 left--, s++;
2399 }
2400 if (write) {
2401 while (left) {
2402 char c;
2403 if (get_user(c, s++))
2404 return -EFAULT;
2405 if (!isspace(c))
2406 break;
2407 left--;
2408 }
2409 }
2410 if (write && first)
2411 return -EINVAL;
2412 *lenp -= left;
2413 *ppos += *lenp;
2414 return 0;
2415#undef TMPBUFLEN
2416}
2417
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002418static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002419 void __user *buffer,
2420 size_t *lenp, loff_t *ppos,
2421 unsigned long convmul,
2422 unsigned long convdiv)
2423{
2424 return __do_proc_doulongvec_minmax(table->data, table, write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002425 buffer, lenp, ppos, convmul, convdiv);
Kirill Korotaevfcfbd542006-10-02 02:18:23 -07002426}
2427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428/**
2429 * proc_doulongvec_minmax - read a vector of long integers with min/max values
2430 * @table: the sysctl table
2431 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 * @buffer: the user buffer
2433 * @lenp: the size of the user buffer
2434 * @ppos: file position
2435 *
2436 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2437 * values from/to the user buffer, treated as an ASCII string.
2438 *
2439 * This routine will ensure the values are within the range specified by
2440 * table->extra1 (min) and table->extra2 (max).
2441 *
2442 * Returns 0 on success.
2443 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002444int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 void __user *buffer, size_t *lenp, loff_t *ppos)
2446{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002447 return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
2449
2450/**
2451 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
2452 * @table: the sysctl table
2453 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 * @buffer: the user buffer
2455 * @lenp: the size of the user buffer
2456 * @ppos: file position
2457 *
2458 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
2459 * values from/to the user buffer, treated as an ASCII string. The values
2460 * are treated as milliseconds, and converted to jiffies when they are stored.
2461 *
2462 * This routine will ensure the values are within the range specified by
2463 * table->extra1 (min) and table->extra2 (max).
2464 *
2465 * Returns 0 on success.
2466 */
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002467int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 void __user *buffer,
2469 size_t *lenp, loff_t *ppos)
2470{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002471 return do_proc_doulongvec_minmax(table, write, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 lenp, ppos, HZ, 1000l);
2473}
2474
2475
2476static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
2477 int *valp,
2478 int write, void *data)
2479{
2480 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002481 if (*lvalp > LONG_MAX / HZ)
2482 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
2484 } else {
2485 int val = *valp;
2486 unsigned long lval;
2487 if (val < 0) {
2488 *negp = -1;
2489 lval = (unsigned long)-val;
2490 } else {
2491 *negp = 0;
2492 lval = (unsigned long)val;
2493 }
2494 *lvalp = lval / HZ;
2495 }
2496 return 0;
2497}
2498
2499static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
2500 int *valp,
2501 int write, void *data)
2502{
2503 if (write) {
Bart Samwelcba9f332006-03-24 03:15:50 -08002504 if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
2505 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
2507 } else {
2508 int val = *valp;
2509 unsigned long lval;
2510 if (val < 0) {
2511 *negp = -1;
2512 lval = (unsigned long)-val;
2513 } else {
2514 *negp = 0;
2515 lval = (unsigned long)val;
2516 }
2517 *lvalp = jiffies_to_clock_t(lval);
2518 }
2519 return 0;
2520}
2521
2522static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp,
2523 int *valp,
2524 int write, void *data)
2525{
2526 if (write) {
2527 *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
2528 } else {
2529 int val = *valp;
2530 unsigned long lval;
2531 if (val < 0) {
2532 *negp = -1;
2533 lval = (unsigned long)-val;
2534 } else {
2535 *negp = 0;
2536 lval = (unsigned long)val;
2537 }
2538 *lvalp = jiffies_to_msecs(lval);
2539 }
2540 return 0;
2541}
2542
2543/**
2544 * proc_dointvec_jiffies - read a vector of integers as seconds
2545 * @table: the sysctl table
2546 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 * @buffer: the user buffer
2548 * @lenp: the size of the user buffer
2549 * @ppos: file position
2550 *
2551 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2552 * values from/to the user buffer, treated as an ASCII string.
2553 * The values read are assumed to be in seconds, and are converted into
2554 * jiffies.
2555 *
2556 * Returns 0 on success.
2557 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002558int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 void __user *buffer, size_t *lenp, loff_t *ppos)
2560{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002561 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 do_proc_dointvec_jiffies_conv,NULL);
2563}
2564
2565/**
2566 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
2567 * @table: the sysctl table
2568 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 * @buffer: the user buffer
2570 * @lenp: the size of the user buffer
Randy Dunlap1e5d5332005-11-07 01:01:06 -08002571 * @ppos: pointer to the file position
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 *
2573 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2574 * values from/to the user buffer, treated as an ASCII string.
2575 * The values read are assumed to be in 1/USER_HZ seconds, and
2576 * are converted into jiffies.
2577 *
2578 * Returns 0 on success.
2579 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002580int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 void __user *buffer, size_t *lenp, loff_t *ppos)
2582{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002583 return do_proc_dointvec(table,write,buffer,lenp,ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 do_proc_dointvec_userhz_jiffies_conv,NULL);
2585}
2586
2587/**
2588 * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
2589 * @table: the sysctl table
2590 * @write: %TRUE if this is a write to the sysctl file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 * @buffer: the user buffer
2592 * @lenp: the size of the user buffer
Martin Waitz67be2dd2005-05-01 08:59:26 -07002593 * @ppos: file position
2594 * @ppos: the current position in the file
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 *
2596 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
2597 * values from/to the user buffer, treated as an ASCII string.
2598 * The values read are assumed to be in 1/1000 seconds, and
2599 * are converted into jiffies.
2600 *
2601 * Returns 0 on success.
2602 */
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002603int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 void __user *buffer, size_t *lenp, loff_t *ppos)
2605{
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002606 return do_proc_dointvec(table, write, buffer, lenp, ppos,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 do_proc_dointvec_ms_jiffies_conv, NULL);
2608}
2609
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002610static int proc_do_cad_pid(struct ctl_table *table, int write,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002611 void __user *buffer, size_t *lenp, loff_t *ppos)
2612{
2613 struct pid *new_pid;
2614 pid_t tmp;
2615 int r;
2616
Pavel Emelyanov6c5f3e72008-02-08 04:19:20 -08002617 tmp = pid_vnr(cad_pid);
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002618
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002619 r = __do_proc_dointvec(&tmp, table, write, buffer,
Cedric Le Goater9ec52092006-10-02 02:19:00 -07002620 lenp, ppos, NULL, NULL);
2621 if (r || !write)
2622 return r;
2623
2624 new_pid = find_get_pid(tmp);
2625 if (!new_pid)
2626 return -ESRCH;
2627
2628 put_pid(xchg(&cad_pid, new_pid));
2629 return 0;
2630}
2631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632#else /* CONFIG_PROC_FS */
2633
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002634int proc_dostring(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 void __user *buffer, size_t *lenp, loff_t *ppos)
2636{
2637 return -ENOSYS;
2638}
2639
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002640int proc_dointvec(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 void __user *buffer, size_t *lenp, loff_t *ppos)
2642{
2643 return -ENOSYS;
2644}
2645
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002646int proc_dointvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 void __user *buffer, size_t *lenp, loff_t *ppos)
2648{
2649 return -ENOSYS;
2650}
2651
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002652int proc_dointvec_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 void __user *buffer, size_t *lenp, loff_t *ppos)
2654{
2655 return -ENOSYS;
2656}
2657
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002658int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 void __user *buffer, size_t *lenp, loff_t *ppos)
2660{
2661 return -ENOSYS;
2662}
2663
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002664int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 void __user *buffer, size_t *lenp, loff_t *ppos)
2666{
2667 return -ENOSYS;
2668}
2669
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002670int proc_doulongvec_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 void __user *buffer, size_t *lenp, loff_t *ppos)
2672{
2673 return -ENOSYS;
2674}
2675
Eric W. Biedermand8217f02007-10-18 03:05:22 -07002676int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 void __user *buffer,
2678 size_t *lenp, loff_t *ppos)
2679{
2680 return -ENOSYS;
2681}
2682
2683
2684#endif /* CONFIG_PROC_FS */
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686/*
2687 * No sense putting this after each symbol definition, twice,
2688 * exception granted :-)
2689 */
2690EXPORT_SYMBOL(proc_dointvec);
2691EXPORT_SYMBOL(proc_dointvec_jiffies);
2692EXPORT_SYMBOL(proc_dointvec_minmax);
2693EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2694EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
2695EXPORT_SYMBOL(proc_dostring);
2696EXPORT_SYMBOL(proc_doulongvec_minmax);
2697EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
2698EXPORT_SYMBOL(register_sysctl_table);
Eric W. Biederman29e796f2007-11-30 23:50:18 +11002699EXPORT_SYMBOL(register_sysctl_paths);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700EXPORT_SYMBOL(unregister_sysctl_table);