11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * sysctl.c: General linux system control interface 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Begun 24 March 1995, Stephen Tweedie 51da177e4SLinus Torvalds * Added /proc support, Dec 1995 61da177e4SLinus Torvalds * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas. 71da177e4SLinus Torvalds * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver. 81da177e4SLinus Torvalds * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver. 91da177e4SLinus Torvalds * Dynamic registration fixes, Stephen Tweedie. 101da177e4SLinus Torvalds * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn. 111da177e4SLinus Torvalds * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris 121da177e4SLinus Torvalds * Horn. 131da177e4SLinus Torvalds * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer. 141da177e4SLinus Torvalds * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer. 151da177e4SLinus Torvalds * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill 161da177e4SLinus Torvalds * Wendling. 171da177e4SLinus Torvalds * The list_for_each() macro wasn't appropriate for the sysctl loop. 181da177e4SLinus Torvalds * Removed it and replaced it with older style, 03/23/00, Bill Wendling 191da177e4SLinus Torvalds */ 201da177e4SLinus Torvalds 211da177e4SLinus Torvalds #include <linux/module.h> 221da177e4SLinus Torvalds #include <linux/mm.h> 231da177e4SLinus Torvalds #include <linux/swap.h> 241da177e4SLinus Torvalds #include <linux/slab.h> 251da177e4SLinus Torvalds #include <linux/sysctl.h> 261da177e4SLinus Torvalds #include <linux/proc_fs.h> 2772c2d582SAndrew Morgan #include <linux/security.h> 281da177e4SLinus Torvalds #include <linux/ctype.h> 291da177e4SLinus Torvalds #include <linux/utsname.h> 301da177e4SLinus Torvalds #include <linux/smp_lock.h> 3162239ac2SAdrian Bunk #include <linux/fs.h> 321da177e4SLinus Torvalds #include <linux/init.h> 331da177e4SLinus Torvalds #include <linux/kernel.h> 340296b228SKay Sievers #include <linux/kobject.h> 3520380731SArnaldo Carvalho de Melo #include <linux/net.h> 361da177e4SLinus Torvalds #include <linux/sysrq.h> 371da177e4SLinus Torvalds #include <linux/highuid.h> 381da177e4SLinus Torvalds #include <linux/writeback.h> 391da177e4SLinus Torvalds #include <linux/hugetlb.h> 401da177e4SLinus Torvalds #include <linux/initrd.h> 410b77f5bfSDavid Howells #include <linux/key.h> 421da177e4SLinus Torvalds #include <linux/times.h> 431da177e4SLinus Torvalds #include <linux/limits.h> 441da177e4SLinus Torvalds #include <linux/dcache.h> 451da177e4SLinus Torvalds #include <linux/syscalls.h> 46c748e134SAdrian Bunk #include <linux/vmstat.h> 47c255d844SPavel Machek #include <linux/nfs_fs.h> 48c255d844SPavel Machek #include <linux/acpi.h> 4910a0a8d4SJeremy Fitzhardinge #include <linux/reboot.h> 50b0fc494fSSteven Rostedt #include <linux/ftrace.h> 5112e22c5eSDavid Howells #include <linux/slow-work.h> 521da177e4SLinus Torvalds 531da177e4SLinus Torvalds #include <asm/uaccess.h> 541da177e4SLinus Torvalds #include <asm/processor.h> 551da177e4SLinus Torvalds 5629cbc78bSAndi Kleen #ifdef CONFIG_X86 5729cbc78bSAndi Kleen #include <asm/nmi.h> 580741f4d2SChuck Ebbert #include <asm/stacktrace.h> 596e7c4025SIngo Molnar #include <asm/io.h> 6029cbc78bSAndi Kleen #endif 6129cbc78bSAndi Kleen 627058cb02SEric W. Biederman static int deprecated_sysctl_warning(struct __sysctl_args *args); 637058cb02SEric W. Biederman 641da177e4SLinus Torvalds #if defined(CONFIG_SYSCTL) 651da177e4SLinus Torvalds 661da177e4SLinus Torvalds /* External variables not in a header file. */ 671da177e4SLinus Torvalds extern int C_A_D; 6845807a1dSIngo Molnar extern int print_fatal_signals; 691da177e4SLinus Torvalds extern int sysctl_overcommit_memory; 701da177e4SLinus Torvalds extern int sysctl_overcommit_ratio; 71fadd8fbdSKAMEZAWA Hiroyuki extern int sysctl_panic_on_oom; 72fe071d7eSDavid Rientjes extern int sysctl_oom_kill_allocating_task; 73fef1bdd6SDavid Rientjes extern int sysctl_oom_dump_tasks; 741da177e4SLinus Torvalds extern int max_threads; 751da177e4SLinus Torvalds extern int core_uses_pid; 76d6e71144SAlan Cox extern int suid_dumpable; 771da177e4SLinus Torvalds extern char core_pattern[]; 781da177e4SLinus Torvalds extern int pid_max; 791da177e4SLinus Torvalds extern int min_free_kbytes; 801da177e4SLinus Torvalds extern int pid_max_min, pid_max_max; 819d0243bcSAndrew Morton extern int sysctl_drop_caches; 828ad4b1fbSRohit Seth extern int percpu_pagelist_fraction; 83bebfa101SAndi Kleen extern int compat_log; 849745512cSArjan van de Ven extern int latencytop_enabled; 85eceea0b3SAl Viro extern int sysctl_nr_open_min, sysctl_nr_open_max; 86dd8632a1SPaul Mundt #ifndef CONFIG_MMU 87dd8632a1SPaul Mundt extern int sysctl_nr_trim_pages; 88dd8632a1SPaul Mundt #endif 8931a72bceSPaul E. McKenney #ifdef CONFIG_RCU_TORTURE_TEST 9031a72bceSPaul E. McKenney extern int rcutorture_runnable; 9131a72bceSPaul E. McKenney #endif /* #ifdef CONFIG_RCU_TORTURE_TEST */ 921da177e4SLinus Torvalds 93c4f3b63fSRavikiran G Thirumalai /* Constants used for minimum and maximum */ 94195cf453SBron Gondwana #ifdef CONFIG_DETECT_SOFTLOCKUP 95c4f3b63fSRavikiran G Thirumalai static int sixty = 60; 969383d967SDimitri Sivanich static int neg_one = -1; 97c4f3b63fSRavikiran G Thirumalai #endif 98c4f3b63fSRavikiran G Thirumalai 99c4f3b63fSRavikiran G Thirumalai static int zero; 100cd5f9a4cSLinus Torvalds static int __maybe_unused one = 1; 101cd5f9a4cSLinus Torvalds static int __maybe_unused two = 2; 102fc3501d4SSven Wegener static unsigned long one_ul = 1; 103c4f3b63fSRavikiran G Thirumalai static int one_hundred = 100; 104fafd688eSPeter W Morreale static int one_thousand = 1000; 105c4f3b63fSRavikiran G Thirumalai 1061da177e4SLinus Torvalds /* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */ 1071da177e4SLinus Torvalds static int maxolduid = 65535; 1081da177e4SLinus Torvalds static int minolduid; 1098ad4b1fbSRohit Seth static int min_percpu_pagelist_fract = 8; 1101da177e4SLinus Torvalds 1111da177e4SLinus Torvalds static int ngroups_max = NGROUPS_MAX; 1121da177e4SLinus Torvalds 113a1ef5adbSJohannes Berg #ifdef CONFIG_MODULES 1141da177e4SLinus Torvalds extern char modprobe_path[]; 1151da177e4SLinus Torvalds #endif 1161da177e4SLinus Torvalds #ifdef CONFIG_CHR_DEV_SG 1171da177e4SLinus Torvalds extern int sg_big_buff; 1181da177e4SLinus Torvalds #endif 1191da177e4SLinus Torvalds 12072c57ed5SDavid S. Miller #ifdef CONFIG_SPARC 12117f04fbbSDavid S. Miller #include <asm/system.h> 1221da177e4SLinus Torvalds #endif 1231da177e4SLinus Torvalds 1240871420fSDavid S. Miller #ifdef CONFIG_SPARC64 1250871420fSDavid S. Miller extern int sysctl_tsb_ratio; 1260871420fSDavid S. Miller #endif 1270871420fSDavid S. Miller 1281da177e4SLinus Torvalds #ifdef __hppa__ 1291da177e4SLinus Torvalds extern int pwrsw_enabled; 1301da177e4SLinus Torvalds extern int unaligned_enabled; 1311da177e4SLinus Torvalds #endif 1321da177e4SLinus Torvalds 133347a8dc3SMartin Schwidefsky #ifdef CONFIG_S390 1341da177e4SLinus Torvalds #ifdef CONFIG_MATHEMU 1351da177e4SLinus Torvalds extern int sysctl_ieee_emulation_warnings; 1361da177e4SLinus Torvalds #endif 1371da177e4SLinus Torvalds extern int sysctl_userprocess_debug; 138951f22d5SMartin Schwidefsky extern int spin_retry; 1391da177e4SLinus Torvalds #endif 1401da177e4SLinus Torvalds 1411da177e4SLinus Torvalds #ifdef CONFIG_BSD_PROCESS_ACCT 1421da177e4SLinus Torvalds extern int acct_parm[]; 1431da177e4SLinus Torvalds #endif 1441da177e4SLinus Torvalds 145d2b176edSJes Sorensen #ifdef CONFIG_IA64 146d2b176edSJes Sorensen extern int no_unaligned_warning; 14788fc241fSDoug Chapman extern int unaligned_dump_stack; 148d2b176edSJes Sorensen #endif 149d2b176edSJes Sorensen 15023f78d4aSIngo Molnar #ifdef CONFIG_RT_MUTEXES 15123f78d4aSIngo Molnar extern int max_lock_depth; 15223f78d4aSIngo Molnar #endif 15323f78d4aSIngo Molnar 154d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL 155d8217f07SEric W. Biederman static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp, 1569ec52099SCedric Le Goater void __user *buffer, size_t *lenp, loff_t *ppos); 15725ddbb18SAndi Kleen static int proc_taint(struct ctl_table *table, int write, struct file *filp, 15834f5a398STheodore Ts'o void __user *buffer, size_t *lenp, loff_t *ppos); 159d6f8ff73SRandy Dunlap #endif 1609ec52099SCedric Le Goater 161d8217f07SEric W. Biederman static struct ctl_table root_table[]; 162e51b6ba0SEric W. Biederman static struct ctl_table_root sysctl_table_root; 163e51b6ba0SEric W. Biederman static struct ctl_table_header root_table_header = { 164b380b0d4SAl Viro .count = 1, 165e51b6ba0SEric W. Biederman .ctl_table = root_table, 16673455092SAl Viro .ctl_entry = LIST_HEAD_INIT(sysctl_table_root.default_set.list), 167e51b6ba0SEric W. Biederman .root = &sysctl_table_root, 16873455092SAl Viro .set = &sysctl_table_root.default_set, 169e51b6ba0SEric W. Biederman }; 170e51b6ba0SEric W. Biederman static struct ctl_table_root sysctl_table_root = { 171e51b6ba0SEric W. Biederman .root_list = LIST_HEAD_INIT(sysctl_table_root.root_list), 17273455092SAl Viro .default_set.list = LIST_HEAD_INIT(root_table_header.ctl_entry), 173e51b6ba0SEric W. Biederman }; 1741da177e4SLinus Torvalds 175d8217f07SEric W. Biederman static struct ctl_table kern_table[]; 176d8217f07SEric W. Biederman static struct ctl_table vm_table[]; 177d8217f07SEric W. Biederman static struct ctl_table fs_table[]; 178d8217f07SEric W. Biederman static struct ctl_table debug_table[]; 179d8217f07SEric W. Biederman static struct ctl_table dev_table[]; 180d8217f07SEric W. Biederman extern struct ctl_table random_table[]; 1812d9048e2SAmy Griffis #ifdef CONFIG_INOTIFY_USER 182d8217f07SEric W. Biederman extern struct ctl_table inotify_table[]; 1830399cb08SRobert Love #endif 1847ef9964eSDavide Libenzi #ifdef CONFIG_EPOLL 1857ef9964eSDavide Libenzi extern struct ctl_table epoll_table[]; 1867ef9964eSDavide Libenzi #endif 1871da177e4SLinus Torvalds 1881da177e4SLinus Torvalds #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT 1891da177e4SLinus Torvalds int sysctl_legacy_va_layout; 1901da177e4SLinus Torvalds #endif 1911da177e4SLinus Torvalds 192f20786ffSPeter Zijlstra extern int prove_locking; 193f20786ffSPeter Zijlstra extern int lock_stat; 1949bc9a6bdSEric W. Biederman 1951da177e4SLinus Torvalds /* The default sysctl tables: */ 1961da177e4SLinus Torvalds 197d8217f07SEric W. Biederman static struct ctl_table root_table[] = { 1981da177e4SLinus Torvalds { 1991da177e4SLinus Torvalds .ctl_name = CTL_KERN, 2001da177e4SLinus Torvalds .procname = "kernel", 2011da177e4SLinus Torvalds .mode = 0555, 2021da177e4SLinus Torvalds .child = kern_table, 2031da177e4SLinus Torvalds }, 2041da177e4SLinus Torvalds { 2051da177e4SLinus Torvalds .ctl_name = CTL_VM, 2061da177e4SLinus Torvalds .procname = "vm", 2071da177e4SLinus Torvalds .mode = 0555, 2081da177e4SLinus Torvalds .child = vm_table, 2091da177e4SLinus Torvalds }, 2101da177e4SLinus Torvalds { 2111da177e4SLinus Torvalds .ctl_name = CTL_FS, 2121da177e4SLinus Torvalds .procname = "fs", 2131da177e4SLinus Torvalds .mode = 0555, 2141da177e4SLinus Torvalds .child = fs_table, 2151da177e4SLinus Torvalds }, 2161da177e4SLinus Torvalds { 2171da177e4SLinus Torvalds .ctl_name = CTL_DEBUG, 2181da177e4SLinus Torvalds .procname = "debug", 2191da177e4SLinus Torvalds .mode = 0555, 2201da177e4SLinus Torvalds .child = debug_table, 2211da177e4SLinus Torvalds }, 2221da177e4SLinus Torvalds { 2231da177e4SLinus Torvalds .ctl_name = CTL_DEV, 2241da177e4SLinus Torvalds .procname = "dev", 2251da177e4SLinus Torvalds .mode = 0555, 2261da177e4SLinus Torvalds .child = dev_table, 2271da177e4SLinus Torvalds }, 2282be7fe07SAndrew Morton /* 2292be7fe07SAndrew Morton * NOTE: do not add new entries to this table unless you have read 2302be7fe07SAndrew Morton * Documentation/sysctl/ctl_unnumbered.txt 2312be7fe07SAndrew Morton */ 2321da177e4SLinus Torvalds { .ctl_name = 0 } 2331da177e4SLinus Torvalds }; 2341da177e4SLinus Torvalds 23577e54a1fSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 23673c4efd2SEric Dumazet static int min_sched_granularity_ns = 100000; /* 100 usecs */ 23773c4efd2SEric Dumazet static int max_sched_granularity_ns = NSEC_PER_SEC; /* 1 second */ 23873c4efd2SEric Dumazet static int min_wakeup_granularity_ns; /* 0 usecs */ 23973c4efd2SEric Dumazet static int max_wakeup_granularity_ns = NSEC_PER_SEC; /* 1 second */ 24077e54a1fSIngo Molnar #endif 24177e54a1fSIngo Molnar 242d8217f07SEric W. Biederman static struct ctl_table kern_table[] = { 24377e54a1fSIngo Molnar #ifdef CONFIG_SCHED_DEBUG 24477e54a1fSIngo Molnar { 24577e54a1fSIngo Molnar .ctl_name = CTL_UNNUMBERED, 246b2be5e96SPeter Zijlstra .procname = "sched_min_granularity_ns", 247b2be5e96SPeter Zijlstra .data = &sysctl_sched_min_granularity, 24877e54a1fSIngo Molnar .maxlen = sizeof(unsigned int), 24977e54a1fSIngo Molnar .mode = 0644, 250b2be5e96SPeter Zijlstra .proc_handler = &sched_nr_latency_handler, 251b2be5e96SPeter Zijlstra .strategy = &sysctl_intvec, 252b2be5e96SPeter Zijlstra .extra1 = &min_sched_granularity_ns, 253b2be5e96SPeter Zijlstra .extra2 = &max_sched_granularity_ns, 25477e54a1fSIngo Molnar }, 25577e54a1fSIngo Molnar { 25677e54a1fSIngo Molnar .ctl_name = CTL_UNNUMBERED, 25721805085SPeter Zijlstra .procname = "sched_latency_ns", 25821805085SPeter Zijlstra .data = &sysctl_sched_latency, 25921805085SPeter Zijlstra .maxlen = sizeof(unsigned int), 26021805085SPeter Zijlstra .mode = 0644, 261b2be5e96SPeter Zijlstra .proc_handler = &sched_nr_latency_handler, 26221805085SPeter Zijlstra .strategy = &sysctl_intvec, 26321805085SPeter Zijlstra .extra1 = &min_sched_granularity_ns, 26421805085SPeter Zijlstra .extra2 = &max_sched_granularity_ns, 26521805085SPeter Zijlstra }, 26621805085SPeter Zijlstra { 26721805085SPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 26877e54a1fSIngo Molnar .procname = "sched_wakeup_granularity_ns", 26977e54a1fSIngo Molnar .data = &sysctl_sched_wakeup_granularity, 27077e54a1fSIngo Molnar .maxlen = sizeof(unsigned int), 27177e54a1fSIngo Molnar .mode = 0644, 27277e54a1fSIngo Molnar .proc_handler = &proc_dointvec_minmax, 27377e54a1fSIngo Molnar .strategy = &sysctl_intvec, 27477e54a1fSIngo Molnar .extra1 = &min_wakeup_granularity_ns, 27577e54a1fSIngo Molnar .extra2 = &max_wakeup_granularity_ns, 27677e54a1fSIngo Molnar }, 27777e54a1fSIngo Molnar { 27877e54a1fSIngo Molnar .ctl_name = CTL_UNNUMBERED, 2792398f2c6SPeter Zijlstra .procname = "sched_shares_ratelimit", 2802398f2c6SPeter Zijlstra .data = &sysctl_sched_shares_ratelimit, 2812398f2c6SPeter Zijlstra .maxlen = sizeof(unsigned int), 2822398f2c6SPeter Zijlstra .mode = 0644, 2832398f2c6SPeter Zijlstra .proc_handler = &proc_dointvec, 2842398f2c6SPeter Zijlstra }, 2852398f2c6SPeter Zijlstra { 2862398f2c6SPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 287ffda12a1SPeter Zijlstra .procname = "sched_shares_thresh", 288ffda12a1SPeter Zijlstra .data = &sysctl_sched_shares_thresh, 289ffda12a1SPeter Zijlstra .maxlen = sizeof(unsigned int), 290ffda12a1SPeter Zijlstra .mode = 0644, 291ffda12a1SPeter Zijlstra .proc_handler = &proc_dointvec_minmax, 292ffda12a1SPeter Zijlstra .strategy = &sysctl_intvec, 293ffda12a1SPeter Zijlstra .extra1 = &zero, 294ffda12a1SPeter Zijlstra }, 295ffda12a1SPeter Zijlstra { 296ffda12a1SPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 29777e54a1fSIngo Molnar .procname = "sched_child_runs_first", 29877e54a1fSIngo Molnar .data = &sysctl_sched_child_runs_first, 29977e54a1fSIngo Molnar .maxlen = sizeof(unsigned int), 30077e54a1fSIngo Molnar .mode = 0644, 30177e54a1fSIngo Molnar .proc_handler = &proc_dointvec, 30277e54a1fSIngo Molnar }, 3031fc84aaaSPeter Zijlstra { 3041fc84aaaSPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 3051fc84aaaSPeter Zijlstra .procname = "sched_features", 3061fc84aaaSPeter Zijlstra .data = &sysctl_sched_features, 3071fc84aaaSPeter Zijlstra .maxlen = sizeof(unsigned int), 3081fc84aaaSPeter Zijlstra .mode = 0644, 3091fc84aaaSPeter Zijlstra .proc_handler = &proc_dointvec, 3101fc84aaaSPeter Zijlstra }, 311da84d961SIngo Molnar { 312da84d961SIngo Molnar .ctl_name = CTL_UNNUMBERED, 313da84d961SIngo Molnar .procname = "sched_migration_cost", 314da84d961SIngo Molnar .data = &sysctl_sched_migration_cost, 315da84d961SIngo Molnar .maxlen = sizeof(unsigned int), 316da84d961SIngo Molnar .mode = 0644, 317da84d961SIngo Molnar .proc_handler = &proc_dointvec, 318da84d961SIngo Molnar }, 319b82d9fddSPeter Zijlstra { 320b82d9fddSPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 321b82d9fddSPeter Zijlstra .procname = "sched_nr_migrate", 322b82d9fddSPeter Zijlstra .data = &sysctl_sched_nr_migrate, 323b82d9fddSPeter Zijlstra .maxlen = sizeof(unsigned int), 324fa85ae24SPeter Zijlstra .mode = 0644, 325fa85ae24SPeter Zijlstra .proc_handler = &proc_dointvec, 326fa85ae24SPeter Zijlstra }, 327*cd1bb94bSArun R Bharadwaj { 328*cd1bb94bSArun R Bharadwaj .ctl_name = CTL_UNNUMBERED, 329*cd1bb94bSArun R Bharadwaj .procname = "timer_migration", 330*cd1bb94bSArun R Bharadwaj .data = &sysctl_timer_migration, 331*cd1bb94bSArun R Bharadwaj .maxlen = sizeof(unsigned int), 332*cd1bb94bSArun R Bharadwaj .mode = 0644, 333*cd1bb94bSArun R Bharadwaj .proc_handler = &proc_dointvec, 334*cd1bb94bSArun R Bharadwaj }, 3351fc84aaaSPeter Zijlstra #endif 3361799e35dSIngo Molnar { 3371799e35dSIngo Molnar .ctl_name = CTL_UNNUMBERED, 3389f0c1e56SPeter Zijlstra .procname = "sched_rt_period_us", 3399f0c1e56SPeter Zijlstra .data = &sysctl_sched_rt_period, 3409f0c1e56SPeter Zijlstra .maxlen = sizeof(unsigned int), 3419f0c1e56SPeter Zijlstra .mode = 0644, 342d0b27fa7SPeter Zijlstra .proc_handler = &sched_rt_handler, 3439f0c1e56SPeter Zijlstra }, 3449f0c1e56SPeter Zijlstra { 3459f0c1e56SPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 3469f0c1e56SPeter Zijlstra .procname = "sched_rt_runtime_us", 3479f0c1e56SPeter Zijlstra .data = &sysctl_sched_rt_runtime, 3489f0c1e56SPeter Zijlstra .maxlen = sizeof(int), 3499f0c1e56SPeter Zijlstra .mode = 0644, 350d0b27fa7SPeter Zijlstra .proc_handler = &sched_rt_handler, 3519f0c1e56SPeter Zijlstra }, 3529f0c1e56SPeter Zijlstra { 3539f0c1e56SPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 3541799e35dSIngo Molnar .procname = "sched_compat_yield", 3551799e35dSIngo Molnar .data = &sysctl_sched_compat_yield, 3561799e35dSIngo Molnar .maxlen = sizeof(unsigned int), 3571799e35dSIngo Molnar .mode = 0644, 3581799e35dSIngo Molnar .proc_handler = &proc_dointvec, 3591799e35dSIngo Molnar }, 360f20786ffSPeter Zijlstra #ifdef CONFIG_PROVE_LOCKING 361f20786ffSPeter Zijlstra { 362f20786ffSPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 363f20786ffSPeter Zijlstra .procname = "prove_locking", 364f20786ffSPeter Zijlstra .data = &prove_locking, 365f20786ffSPeter Zijlstra .maxlen = sizeof(int), 366f20786ffSPeter Zijlstra .mode = 0644, 367f20786ffSPeter Zijlstra .proc_handler = &proc_dointvec, 368f20786ffSPeter Zijlstra }, 369f20786ffSPeter Zijlstra #endif 370f20786ffSPeter Zijlstra #ifdef CONFIG_LOCK_STAT 371f20786ffSPeter Zijlstra { 372f20786ffSPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 373f20786ffSPeter Zijlstra .procname = "lock_stat", 374f20786ffSPeter Zijlstra .data = &lock_stat, 375f20786ffSPeter Zijlstra .maxlen = sizeof(int), 376f20786ffSPeter Zijlstra .mode = 0644, 377f20786ffSPeter Zijlstra .proc_handler = &proc_dointvec, 378f20786ffSPeter Zijlstra }, 379f20786ffSPeter Zijlstra #endif 38077e54a1fSIngo Molnar { 3811da177e4SLinus Torvalds .ctl_name = KERN_PANIC, 3821da177e4SLinus Torvalds .procname = "panic", 3831da177e4SLinus Torvalds .data = &panic_timeout, 3841da177e4SLinus Torvalds .maxlen = sizeof(int), 3851da177e4SLinus Torvalds .mode = 0644, 3861da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 3871da177e4SLinus Torvalds }, 3881da177e4SLinus Torvalds { 3891da177e4SLinus Torvalds .ctl_name = KERN_CORE_USES_PID, 3901da177e4SLinus Torvalds .procname = "core_uses_pid", 3911da177e4SLinus Torvalds .data = &core_uses_pid, 3921da177e4SLinus Torvalds .maxlen = sizeof(int), 3931da177e4SLinus Torvalds .mode = 0644, 3941da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 3951da177e4SLinus Torvalds }, 3961da177e4SLinus Torvalds { 3971da177e4SLinus Torvalds .ctl_name = KERN_CORE_PATTERN, 3981da177e4SLinus Torvalds .procname = "core_pattern", 3991da177e4SLinus Torvalds .data = core_pattern, 40071ce92f3SDan Aloni .maxlen = CORENAME_MAX_SIZE, 4011da177e4SLinus Torvalds .mode = 0644, 4021da177e4SLinus Torvalds .proc_handler = &proc_dostring, 4031da177e4SLinus Torvalds .strategy = &sysctl_string, 4041da177e4SLinus Torvalds }, 40534f5a398STheodore Ts'o #ifdef CONFIG_PROC_SYSCTL 4061da177e4SLinus Torvalds { 4071da177e4SLinus Torvalds .procname = "tainted", 40825ddbb18SAndi Kleen .maxlen = sizeof(long), 40934f5a398STheodore Ts'o .mode = 0644, 41025ddbb18SAndi Kleen .proc_handler = &proc_taint, 4111da177e4SLinus Torvalds }, 41234f5a398STheodore Ts'o #endif 4139745512cSArjan van de Ven #ifdef CONFIG_LATENCYTOP 4149745512cSArjan van de Ven { 4159745512cSArjan van de Ven .procname = "latencytop", 4169745512cSArjan van de Ven .data = &latencytop_enabled, 4179745512cSArjan van de Ven .maxlen = sizeof(int), 4189745512cSArjan van de Ven .mode = 0644, 4199745512cSArjan van de Ven .proc_handler = &proc_dointvec, 4209745512cSArjan van de Ven }, 4219745512cSArjan van de Ven #endif 4221da177e4SLinus Torvalds #ifdef CONFIG_BLK_DEV_INITRD 4231da177e4SLinus Torvalds { 4241da177e4SLinus Torvalds .ctl_name = KERN_REALROOTDEV, 4251da177e4SLinus Torvalds .procname = "real-root-dev", 4261da177e4SLinus Torvalds .data = &real_root_dev, 4271da177e4SLinus Torvalds .maxlen = sizeof(int), 4281da177e4SLinus Torvalds .mode = 0644, 4291da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 4301da177e4SLinus Torvalds }, 4311da177e4SLinus Torvalds #endif 43245807a1dSIngo Molnar { 43345807a1dSIngo Molnar .ctl_name = CTL_UNNUMBERED, 43445807a1dSIngo Molnar .procname = "print-fatal-signals", 43545807a1dSIngo Molnar .data = &print_fatal_signals, 43645807a1dSIngo Molnar .maxlen = sizeof(int), 43745807a1dSIngo Molnar .mode = 0644, 43845807a1dSIngo Molnar .proc_handler = &proc_dointvec, 43945807a1dSIngo Molnar }, 44072c57ed5SDavid S. Miller #ifdef CONFIG_SPARC 4411da177e4SLinus Torvalds { 4421da177e4SLinus Torvalds .ctl_name = KERN_SPARC_REBOOT, 4431da177e4SLinus Torvalds .procname = "reboot-cmd", 4441da177e4SLinus Torvalds .data = reboot_command, 4451da177e4SLinus Torvalds .maxlen = 256, 4461da177e4SLinus Torvalds .mode = 0644, 4471da177e4SLinus Torvalds .proc_handler = &proc_dostring, 4481da177e4SLinus Torvalds .strategy = &sysctl_string, 4491da177e4SLinus Torvalds }, 4501da177e4SLinus Torvalds { 4511da177e4SLinus Torvalds .ctl_name = KERN_SPARC_STOP_A, 4521da177e4SLinus Torvalds .procname = "stop-a", 4531da177e4SLinus Torvalds .data = &stop_a_enabled, 4541da177e4SLinus Torvalds .maxlen = sizeof (int), 4551da177e4SLinus Torvalds .mode = 0644, 4561da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 4571da177e4SLinus Torvalds }, 4581da177e4SLinus Torvalds { 4591da177e4SLinus Torvalds .ctl_name = KERN_SPARC_SCONS_PWROFF, 4601da177e4SLinus Torvalds .procname = "scons-poweroff", 4611da177e4SLinus Torvalds .data = &scons_pwroff, 4621da177e4SLinus Torvalds .maxlen = sizeof (int), 4631da177e4SLinus Torvalds .mode = 0644, 4641da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 4651da177e4SLinus Torvalds }, 4661da177e4SLinus Torvalds #endif 4670871420fSDavid S. Miller #ifdef CONFIG_SPARC64 4680871420fSDavid S. Miller { 4690871420fSDavid S. Miller .ctl_name = CTL_UNNUMBERED, 4700871420fSDavid S. Miller .procname = "tsb-ratio", 4710871420fSDavid S. Miller .data = &sysctl_tsb_ratio, 4720871420fSDavid S. Miller .maxlen = sizeof (int), 4730871420fSDavid S. Miller .mode = 0644, 4740871420fSDavid S. Miller .proc_handler = &proc_dointvec, 4750871420fSDavid S. Miller }, 4760871420fSDavid S. Miller #endif 4771da177e4SLinus Torvalds #ifdef __hppa__ 4781da177e4SLinus Torvalds { 4791da177e4SLinus Torvalds .ctl_name = KERN_HPPA_PWRSW, 4801da177e4SLinus Torvalds .procname = "soft-power", 4811da177e4SLinus Torvalds .data = &pwrsw_enabled, 4821da177e4SLinus Torvalds .maxlen = sizeof (int), 4831da177e4SLinus Torvalds .mode = 0644, 4841da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 4851da177e4SLinus Torvalds }, 4861da177e4SLinus Torvalds { 4871da177e4SLinus Torvalds .ctl_name = KERN_HPPA_UNALIGNED, 4881da177e4SLinus Torvalds .procname = "unaligned-trap", 4891da177e4SLinus Torvalds .data = &unaligned_enabled, 4901da177e4SLinus Torvalds .maxlen = sizeof (int), 4911da177e4SLinus Torvalds .mode = 0644, 4921da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 4931da177e4SLinus Torvalds }, 4941da177e4SLinus Torvalds #endif 4951da177e4SLinus Torvalds { 4961da177e4SLinus Torvalds .ctl_name = KERN_CTLALTDEL, 4971da177e4SLinus Torvalds .procname = "ctrl-alt-del", 4981da177e4SLinus Torvalds .data = &C_A_D, 4991da177e4SLinus Torvalds .maxlen = sizeof(int), 5001da177e4SLinus Torvalds .mode = 0644, 5011da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 5021da177e4SLinus Torvalds }, 503606576ceSSteven Rostedt #ifdef CONFIG_FUNCTION_TRACER 504b0fc494fSSteven Rostedt { 505b0fc494fSSteven Rostedt .ctl_name = CTL_UNNUMBERED, 506b0fc494fSSteven Rostedt .procname = "ftrace_enabled", 507b0fc494fSSteven Rostedt .data = &ftrace_enabled, 508b0fc494fSSteven Rostedt .maxlen = sizeof(int), 509b0fc494fSSteven Rostedt .mode = 0644, 510b0fc494fSSteven Rostedt .proc_handler = &ftrace_enable_sysctl, 511b0fc494fSSteven Rostedt }, 512b0fc494fSSteven Rostedt #endif 513f38f1d2aSSteven Rostedt #ifdef CONFIG_STACK_TRACER 514f38f1d2aSSteven Rostedt { 515f38f1d2aSSteven Rostedt .ctl_name = CTL_UNNUMBERED, 516f38f1d2aSSteven Rostedt .procname = "stack_tracer_enabled", 517f38f1d2aSSteven Rostedt .data = &stack_tracer_enabled, 518f38f1d2aSSteven Rostedt .maxlen = sizeof(int), 519f38f1d2aSSteven Rostedt .mode = 0644, 520f38f1d2aSSteven Rostedt .proc_handler = &stack_trace_sysctl, 521f38f1d2aSSteven Rostedt }, 522f38f1d2aSSteven Rostedt #endif 523944ac425SSteven Rostedt #ifdef CONFIG_TRACING 524944ac425SSteven Rostedt { 525944ac425SSteven Rostedt .ctl_name = CTL_UNNUMBERED, 5263299b4ddSPeter Zijlstra .procname = "ftrace_dump_on_oops", 527944ac425SSteven Rostedt .data = &ftrace_dump_on_oops, 528944ac425SSteven Rostedt .maxlen = sizeof(int), 529944ac425SSteven Rostedt .mode = 0644, 530944ac425SSteven Rostedt .proc_handler = &proc_dointvec, 531944ac425SSteven Rostedt }, 532944ac425SSteven Rostedt #endif 533a1ef5adbSJohannes Berg #ifdef CONFIG_MODULES 5341da177e4SLinus Torvalds { 5351da177e4SLinus Torvalds .ctl_name = KERN_MODPROBE, 5361da177e4SLinus Torvalds .procname = "modprobe", 5371da177e4SLinus Torvalds .data = &modprobe_path, 5381da177e4SLinus Torvalds .maxlen = KMOD_PATH_LEN, 5391da177e4SLinus Torvalds .mode = 0644, 5401da177e4SLinus Torvalds .proc_handler = &proc_dostring, 5411da177e4SLinus Torvalds .strategy = &sysctl_string, 5421da177e4SLinus Torvalds }, 5431da177e4SLinus Torvalds #endif 54457ae2508SAndrew Morton #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET) 5451da177e4SLinus Torvalds { 5461da177e4SLinus Torvalds .ctl_name = KERN_HOTPLUG, 5471da177e4SLinus Torvalds .procname = "hotplug", 548312c004dSKay Sievers .data = &uevent_helper, 549312c004dSKay Sievers .maxlen = UEVENT_HELPER_PATH_LEN, 5501da177e4SLinus Torvalds .mode = 0644, 5511da177e4SLinus Torvalds .proc_handler = &proc_dostring, 5521da177e4SLinus Torvalds .strategy = &sysctl_string, 5531da177e4SLinus Torvalds }, 5541da177e4SLinus Torvalds #endif 5551da177e4SLinus Torvalds #ifdef CONFIG_CHR_DEV_SG 5561da177e4SLinus Torvalds { 5571da177e4SLinus Torvalds .ctl_name = KERN_SG_BIG_BUFF, 5581da177e4SLinus Torvalds .procname = "sg-big-buff", 5591da177e4SLinus Torvalds .data = &sg_big_buff, 5601da177e4SLinus Torvalds .maxlen = sizeof (int), 5611da177e4SLinus Torvalds .mode = 0444, 5621da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 5631da177e4SLinus Torvalds }, 5641da177e4SLinus Torvalds #endif 5651da177e4SLinus Torvalds #ifdef CONFIG_BSD_PROCESS_ACCT 5661da177e4SLinus Torvalds { 5671da177e4SLinus Torvalds .ctl_name = KERN_ACCT, 5681da177e4SLinus Torvalds .procname = "acct", 5691da177e4SLinus Torvalds .data = &acct_parm, 5701da177e4SLinus Torvalds .maxlen = 3*sizeof(int), 5711da177e4SLinus Torvalds .mode = 0644, 5721da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 5731da177e4SLinus Torvalds }, 5741da177e4SLinus Torvalds #endif 5751da177e4SLinus Torvalds #ifdef CONFIG_MAGIC_SYSRQ 5761da177e4SLinus Torvalds { 5771da177e4SLinus Torvalds .ctl_name = KERN_SYSRQ, 5781da177e4SLinus Torvalds .procname = "sysrq", 5795d6f647fSIngo Molnar .data = &__sysrq_enabled, 5801da177e4SLinus Torvalds .maxlen = sizeof (int), 5811da177e4SLinus Torvalds .mode = 0644, 5821da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 5831da177e4SLinus Torvalds }, 5841da177e4SLinus Torvalds #endif 585d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL 5861da177e4SLinus Torvalds { 5871da177e4SLinus Torvalds .procname = "cad_pid", 5889ec52099SCedric Le Goater .data = NULL, 5891da177e4SLinus Torvalds .maxlen = sizeof (int), 5901da177e4SLinus Torvalds .mode = 0600, 5919ec52099SCedric Le Goater .proc_handler = &proc_do_cad_pid, 5921da177e4SLinus Torvalds }, 593d6f8ff73SRandy Dunlap #endif 5941da177e4SLinus Torvalds { 5951da177e4SLinus Torvalds .ctl_name = KERN_MAX_THREADS, 5961da177e4SLinus Torvalds .procname = "threads-max", 5971da177e4SLinus Torvalds .data = &max_threads, 5981da177e4SLinus Torvalds .maxlen = sizeof(int), 5991da177e4SLinus Torvalds .mode = 0644, 6001da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 6011da177e4SLinus Torvalds }, 6021da177e4SLinus Torvalds { 6031da177e4SLinus Torvalds .ctl_name = KERN_RANDOM, 6041da177e4SLinus Torvalds .procname = "random", 6051da177e4SLinus Torvalds .mode = 0555, 6061da177e4SLinus Torvalds .child = random_table, 6071da177e4SLinus Torvalds }, 6081da177e4SLinus Torvalds { 6091da177e4SLinus Torvalds .ctl_name = KERN_OVERFLOWUID, 6101da177e4SLinus Torvalds .procname = "overflowuid", 6111da177e4SLinus Torvalds .data = &overflowuid, 6121da177e4SLinus Torvalds .maxlen = sizeof(int), 6131da177e4SLinus Torvalds .mode = 0644, 6141da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 6151da177e4SLinus Torvalds .strategy = &sysctl_intvec, 6161da177e4SLinus Torvalds .extra1 = &minolduid, 6171da177e4SLinus Torvalds .extra2 = &maxolduid, 6181da177e4SLinus Torvalds }, 6191da177e4SLinus Torvalds { 6201da177e4SLinus Torvalds .ctl_name = KERN_OVERFLOWGID, 6211da177e4SLinus Torvalds .procname = "overflowgid", 6221da177e4SLinus Torvalds .data = &overflowgid, 6231da177e4SLinus Torvalds .maxlen = sizeof(int), 6241da177e4SLinus Torvalds .mode = 0644, 6251da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 6261da177e4SLinus Torvalds .strategy = &sysctl_intvec, 6271da177e4SLinus Torvalds .extra1 = &minolduid, 6281da177e4SLinus Torvalds .extra2 = &maxolduid, 6291da177e4SLinus Torvalds }, 630347a8dc3SMartin Schwidefsky #ifdef CONFIG_S390 6311da177e4SLinus Torvalds #ifdef CONFIG_MATHEMU 6321da177e4SLinus Torvalds { 6331da177e4SLinus Torvalds .ctl_name = KERN_IEEE_EMULATION_WARNINGS, 6341da177e4SLinus Torvalds .procname = "ieee_emulation_warnings", 6351da177e4SLinus Torvalds .data = &sysctl_ieee_emulation_warnings, 6361da177e4SLinus Torvalds .maxlen = sizeof(int), 6371da177e4SLinus Torvalds .mode = 0644, 6381da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 6391da177e4SLinus Torvalds }, 6401da177e4SLinus Torvalds #endif 6411da177e4SLinus Torvalds { 6421da177e4SLinus Torvalds .ctl_name = KERN_S390_USER_DEBUG_LOGGING, 6431da177e4SLinus Torvalds .procname = "userprocess_debug", 6441da177e4SLinus Torvalds .data = &sysctl_userprocess_debug, 6451da177e4SLinus Torvalds .maxlen = sizeof(int), 6461da177e4SLinus Torvalds .mode = 0644, 6471da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 6481da177e4SLinus Torvalds }, 6491da177e4SLinus Torvalds #endif 6501da177e4SLinus Torvalds { 6511da177e4SLinus Torvalds .ctl_name = KERN_PIDMAX, 6521da177e4SLinus Torvalds .procname = "pid_max", 6531da177e4SLinus Torvalds .data = &pid_max, 6541da177e4SLinus Torvalds .maxlen = sizeof (int), 6551da177e4SLinus Torvalds .mode = 0644, 6561da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 6571da177e4SLinus Torvalds .strategy = sysctl_intvec, 6581da177e4SLinus Torvalds .extra1 = &pid_max_min, 6591da177e4SLinus Torvalds .extra2 = &pid_max_max, 6601da177e4SLinus Torvalds }, 6611da177e4SLinus Torvalds { 6621da177e4SLinus Torvalds .ctl_name = KERN_PANIC_ON_OOPS, 6631da177e4SLinus Torvalds .procname = "panic_on_oops", 6641da177e4SLinus Torvalds .data = &panic_on_oops, 6651da177e4SLinus Torvalds .maxlen = sizeof(int), 6661da177e4SLinus Torvalds .mode = 0644, 6671da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 6681da177e4SLinus Torvalds }, 6697ef3d2fdSJoe Perches #if defined CONFIG_PRINTK 6707ef3d2fdSJoe Perches { 6717ef3d2fdSJoe Perches .ctl_name = KERN_PRINTK, 6727ef3d2fdSJoe Perches .procname = "printk", 6737ef3d2fdSJoe Perches .data = &console_loglevel, 6747ef3d2fdSJoe Perches .maxlen = 4*sizeof(int), 6757ef3d2fdSJoe Perches .mode = 0644, 6767ef3d2fdSJoe Perches .proc_handler = &proc_dointvec, 6777ef3d2fdSJoe Perches }, 6781da177e4SLinus Torvalds { 6791da177e4SLinus Torvalds .ctl_name = KERN_PRINTK_RATELIMIT, 6801da177e4SLinus Torvalds .procname = "printk_ratelimit", 681717115e1SDave Young .data = &printk_ratelimit_state.interval, 6821da177e4SLinus Torvalds .maxlen = sizeof(int), 6831da177e4SLinus Torvalds .mode = 0644, 6841da177e4SLinus Torvalds .proc_handler = &proc_dointvec_jiffies, 6851da177e4SLinus Torvalds .strategy = &sysctl_jiffies, 6861da177e4SLinus Torvalds }, 6871da177e4SLinus Torvalds { 6881da177e4SLinus Torvalds .ctl_name = KERN_PRINTK_RATELIMIT_BURST, 6891da177e4SLinus Torvalds .procname = "printk_ratelimit_burst", 690717115e1SDave Young .data = &printk_ratelimit_state.burst, 6911da177e4SLinus Torvalds .maxlen = sizeof(int), 6921da177e4SLinus Torvalds .mode = 0644, 6931da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 6941da177e4SLinus Torvalds }, 6957ef3d2fdSJoe Perches #endif 6961da177e4SLinus Torvalds { 6971da177e4SLinus Torvalds .ctl_name = KERN_NGROUPS_MAX, 6981da177e4SLinus Torvalds .procname = "ngroups_max", 6991da177e4SLinus Torvalds .data = &ngroups_max, 7001da177e4SLinus Torvalds .maxlen = sizeof (int), 7011da177e4SLinus Torvalds .mode = 0444, 7021da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 7031da177e4SLinus Torvalds }, 7041da177e4SLinus Torvalds #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) 7051da177e4SLinus Torvalds { 7061da177e4SLinus Torvalds .ctl_name = KERN_UNKNOWN_NMI_PANIC, 7071da177e4SLinus Torvalds .procname = "unknown_nmi_panic", 7081da177e4SLinus Torvalds .data = &unknown_nmi_panic, 7091da177e4SLinus Torvalds .maxlen = sizeof (int), 7101da177e4SLinus Torvalds .mode = 0644, 7112fbe7b25SDon Zickus .proc_handler = &proc_dointvec, 7121da177e4SLinus Torvalds }, 713407984f1SDon Zickus { 714407984f1SDon Zickus .procname = "nmi_watchdog", 715407984f1SDon Zickus .data = &nmi_watchdog_enabled, 716407984f1SDon Zickus .maxlen = sizeof (int), 717407984f1SDon Zickus .mode = 0644, 718407984f1SDon Zickus .proc_handler = &proc_nmi_enabled, 7191da177e4SLinus Torvalds }, 7201da177e4SLinus Torvalds #endif 7211da177e4SLinus Torvalds #if defined(CONFIG_X86) 7221da177e4SLinus Torvalds { 7238da5addaSDon Zickus .ctl_name = KERN_PANIC_ON_NMI, 7248da5addaSDon Zickus .procname = "panic_on_unrecovered_nmi", 7258da5addaSDon Zickus .data = &panic_on_unrecovered_nmi, 7268da5addaSDon Zickus .maxlen = sizeof(int), 7278da5addaSDon Zickus .mode = 0644, 7288da5addaSDon Zickus .proc_handler = &proc_dointvec, 7298da5addaSDon Zickus }, 7308da5addaSDon Zickus { 7311da177e4SLinus Torvalds .ctl_name = KERN_BOOTLOADER_TYPE, 7321da177e4SLinus Torvalds .procname = "bootloader_type", 7331da177e4SLinus Torvalds .data = &bootloader_type, 7341da177e4SLinus Torvalds .maxlen = sizeof (int), 7351da177e4SLinus Torvalds .mode = 0444, 7361da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 7371da177e4SLinus Torvalds }, 7380741f4d2SChuck Ebbert { 7390741f4d2SChuck Ebbert .ctl_name = CTL_UNNUMBERED, 7400741f4d2SChuck Ebbert .procname = "kstack_depth_to_print", 7410741f4d2SChuck Ebbert .data = &kstack_depth_to_print, 7420741f4d2SChuck Ebbert .maxlen = sizeof(int), 7430741f4d2SChuck Ebbert .mode = 0644, 7440741f4d2SChuck Ebbert .proc_handler = &proc_dointvec, 7450741f4d2SChuck Ebbert }, 7466e7c4025SIngo Molnar { 7476e7c4025SIngo Molnar .ctl_name = CTL_UNNUMBERED, 7486e7c4025SIngo Molnar .procname = "io_delay_type", 7496e7c4025SIngo Molnar .data = &io_delay_type, 7506e7c4025SIngo Molnar .maxlen = sizeof(int), 7516e7c4025SIngo Molnar .mode = 0644, 7526e7c4025SIngo Molnar .proc_handler = &proc_dointvec, 7536e7c4025SIngo Molnar }, 7541da177e4SLinus Torvalds #endif 7557a9166e3SLuke Yang #if defined(CONFIG_MMU) 7561da177e4SLinus Torvalds { 7571da177e4SLinus Torvalds .ctl_name = KERN_RANDOMIZE, 7581da177e4SLinus Torvalds .procname = "randomize_va_space", 7591da177e4SLinus Torvalds .data = &randomize_va_space, 7601da177e4SLinus Torvalds .maxlen = sizeof(int), 7611da177e4SLinus Torvalds .mode = 0644, 7621da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 7631da177e4SLinus Torvalds }, 7647a9166e3SLuke Yang #endif 7650152fb37SMartin Schwidefsky #if defined(CONFIG_S390) && defined(CONFIG_SMP) 766951f22d5SMartin Schwidefsky { 767951f22d5SMartin Schwidefsky .ctl_name = KERN_SPIN_RETRY, 768951f22d5SMartin Schwidefsky .procname = "spin_retry", 769951f22d5SMartin Schwidefsky .data = &spin_retry, 770951f22d5SMartin Schwidefsky .maxlen = sizeof (int), 771951f22d5SMartin Schwidefsky .mode = 0644, 772951f22d5SMartin Schwidefsky .proc_handler = &proc_dointvec, 773951f22d5SMartin Schwidefsky }, 774951f22d5SMartin Schwidefsky #endif 775673d5b43SLen Brown #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86) 776c255d844SPavel Machek { 777c255d844SPavel Machek .procname = "acpi_video_flags", 77877afcf78SPavel Machek .data = &acpi_realmode_flags, 779c255d844SPavel Machek .maxlen = sizeof (unsigned long), 780c255d844SPavel Machek .mode = 0644, 7817f99f06fSStefan Seyfried .proc_handler = &proc_doulongvec_minmax, 782c255d844SPavel Machek }, 783c255d844SPavel Machek #endif 784d2b176edSJes Sorensen #ifdef CONFIG_IA64 785d2b176edSJes Sorensen { 786d2b176edSJes Sorensen .ctl_name = KERN_IA64_UNALIGNED, 787d2b176edSJes Sorensen .procname = "ignore-unaligned-usertrap", 788d2b176edSJes Sorensen .data = &no_unaligned_warning, 789d2b176edSJes Sorensen .maxlen = sizeof (int), 790d2b176edSJes Sorensen .mode = 0644, 791d2b176edSJes Sorensen .proc_handler = &proc_dointvec, 792d2b176edSJes Sorensen }, 79388fc241fSDoug Chapman { 79488fc241fSDoug Chapman .ctl_name = CTL_UNNUMBERED, 79588fc241fSDoug Chapman .procname = "unaligned-dump-stack", 79688fc241fSDoug Chapman .data = &unaligned_dump_stack, 79788fc241fSDoug Chapman .maxlen = sizeof (int), 79888fc241fSDoug Chapman .mode = 0644, 79988fc241fSDoug Chapman .proc_handler = &proc_dointvec, 80088fc241fSDoug Chapman }, 801d2b176edSJes Sorensen #endif 802c4f3b63fSRavikiran G Thirumalai #ifdef CONFIG_DETECT_SOFTLOCKUP 803c4f3b63fSRavikiran G Thirumalai { 804c4f3b63fSRavikiran G Thirumalai .ctl_name = CTL_UNNUMBERED, 8059c44bc03SIngo Molnar .procname = "softlockup_panic", 8069c44bc03SIngo Molnar .data = &softlockup_panic, 8079c44bc03SIngo Molnar .maxlen = sizeof(int), 8089c44bc03SIngo Molnar .mode = 0644, 8094dca10a9SHiroshi Shimamoto .proc_handler = &proc_dointvec_minmax, 8109c44bc03SIngo Molnar .strategy = &sysctl_intvec, 8119c44bc03SIngo Molnar .extra1 = &zero, 8129c44bc03SIngo Molnar .extra2 = &one, 8139c44bc03SIngo Molnar }, 8149c44bc03SIngo Molnar { 8159c44bc03SIngo Molnar .ctl_name = CTL_UNNUMBERED, 816c4f3b63fSRavikiran G Thirumalai .procname = "softlockup_thresh", 817c4f3b63fSRavikiran G Thirumalai .data = &softlockup_thresh, 8189383d967SDimitri Sivanich .maxlen = sizeof(int), 819c4f3b63fSRavikiran G Thirumalai .mode = 0644, 820baf48f65SMandeep Singh Baines .proc_handler = &proc_dosoftlockup_thresh, 821c4f3b63fSRavikiran G Thirumalai .strategy = &sysctl_intvec, 8229383d967SDimitri Sivanich .extra1 = &neg_one, 823c4f3b63fSRavikiran G Thirumalai .extra2 = &sixty, 824c4f3b63fSRavikiran G Thirumalai }, 825e162b39aSMandeep Singh Baines #endif 826e162b39aSMandeep Singh Baines #ifdef CONFIG_DETECT_HUNG_TASK 827e162b39aSMandeep Singh Baines { 828e162b39aSMandeep Singh Baines .ctl_name = CTL_UNNUMBERED, 829e162b39aSMandeep Singh Baines .procname = "hung_task_panic", 830e162b39aSMandeep Singh Baines .data = &sysctl_hung_task_panic, 831e162b39aSMandeep Singh Baines .maxlen = sizeof(int), 832e162b39aSMandeep Singh Baines .mode = 0644, 833e162b39aSMandeep Singh Baines .proc_handler = &proc_dointvec_minmax, 834e162b39aSMandeep Singh Baines .strategy = &sysctl_intvec, 835e162b39aSMandeep Singh Baines .extra1 = &zero, 836e162b39aSMandeep Singh Baines .extra2 = &one, 837e162b39aSMandeep Singh Baines }, 83882a1fcb9SIngo Molnar { 83982a1fcb9SIngo Molnar .ctl_name = CTL_UNNUMBERED, 84082a1fcb9SIngo Molnar .procname = "hung_task_check_count", 84182a1fcb9SIngo Molnar .data = &sysctl_hung_task_check_count, 84290739081SIngo Molnar .maxlen = sizeof(unsigned long), 84382a1fcb9SIngo Molnar .mode = 0644, 84490739081SIngo Molnar .proc_handler = &proc_doulongvec_minmax, 84582a1fcb9SIngo Molnar .strategy = &sysctl_intvec, 84682a1fcb9SIngo Molnar }, 84782a1fcb9SIngo Molnar { 84882a1fcb9SIngo Molnar .ctl_name = CTL_UNNUMBERED, 84982a1fcb9SIngo Molnar .procname = "hung_task_timeout_secs", 85082a1fcb9SIngo Molnar .data = &sysctl_hung_task_timeout_secs, 85190739081SIngo Molnar .maxlen = sizeof(unsigned long), 85282a1fcb9SIngo Molnar .mode = 0644, 853e162b39aSMandeep Singh Baines .proc_handler = &proc_dohung_task_timeout_secs, 85482a1fcb9SIngo Molnar .strategy = &sysctl_intvec, 85582a1fcb9SIngo Molnar }, 85682a1fcb9SIngo Molnar { 85782a1fcb9SIngo Molnar .ctl_name = CTL_UNNUMBERED, 85882a1fcb9SIngo Molnar .procname = "hung_task_warnings", 85982a1fcb9SIngo Molnar .data = &sysctl_hung_task_warnings, 86090739081SIngo Molnar .maxlen = sizeof(unsigned long), 86182a1fcb9SIngo Molnar .mode = 0644, 86290739081SIngo Molnar .proc_handler = &proc_doulongvec_minmax, 86382a1fcb9SIngo Molnar .strategy = &sysctl_intvec, 86482a1fcb9SIngo Molnar }, 865c4f3b63fSRavikiran G Thirumalai #endif 866bebfa101SAndi Kleen #ifdef CONFIG_COMPAT 867bebfa101SAndi Kleen { 868bebfa101SAndi Kleen .ctl_name = KERN_COMPAT_LOG, 869bebfa101SAndi Kleen .procname = "compat-log", 870bebfa101SAndi Kleen .data = &compat_log, 871bebfa101SAndi Kleen .maxlen = sizeof (int), 872bebfa101SAndi Kleen .mode = 0644, 873bebfa101SAndi Kleen .proc_handler = &proc_dointvec, 874bebfa101SAndi Kleen }, 875bebfa101SAndi Kleen #endif 87623f78d4aSIngo Molnar #ifdef CONFIG_RT_MUTEXES 87723f78d4aSIngo Molnar { 87823f78d4aSIngo Molnar .ctl_name = KERN_MAX_LOCK_DEPTH, 87923f78d4aSIngo Molnar .procname = "max_lock_depth", 88023f78d4aSIngo Molnar .data = &max_lock_depth, 88123f78d4aSIngo Molnar .maxlen = sizeof(int), 88223f78d4aSIngo Molnar .mode = 0644, 88323f78d4aSIngo Molnar .proc_handler = &proc_dointvec, 88423f78d4aSIngo Molnar }, 88523f78d4aSIngo Molnar #endif 88610a0a8d4SJeremy Fitzhardinge { 88710a0a8d4SJeremy Fitzhardinge .ctl_name = CTL_UNNUMBERED, 88810a0a8d4SJeremy Fitzhardinge .procname = "poweroff_cmd", 88910a0a8d4SJeremy Fitzhardinge .data = &poweroff_cmd, 89010a0a8d4SJeremy Fitzhardinge .maxlen = POWEROFF_CMD_PATH_LEN, 89110a0a8d4SJeremy Fitzhardinge .mode = 0644, 89210a0a8d4SJeremy Fitzhardinge .proc_handler = &proc_dostring, 89310a0a8d4SJeremy Fitzhardinge .strategy = &sysctl_string, 89410a0a8d4SJeremy Fitzhardinge }, 8950b77f5bfSDavid Howells #ifdef CONFIG_KEYS 8960b77f5bfSDavid Howells { 8970b77f5bfSDavid Howells .ctl_name = CTL_UNNUMBERED, 8980b77f5bfSDavid Howells .procname = "keys", 8990b77f5bfSDavid Howells .mode = 0555, 9000b77f5bfSDavid Howells .child = key_sysctls, 9010b77f5bfSDavid Howells }, 9020b77f5bfSDavid Howells #endif 90331a72bceSPaul E. McKenney #ifdef CONFIG_RCU_TORTURE_TEST 90431a72bceSPaul E. McKenney { 90531a72bceSPaul E. McKenney .ctl_name = CTL_UNNUMBERED, 90631a72bceSPaul E. McKenney .procname = "rcutorture_runnable", 90731a72bceSPaul E. McKenney .data = &rcutorture_runnable, 90831a72bceSPaul E. McKenney .maxlen = sizeof(int), 90931a72bceSPaul E. McKenney .mode = 0644, 91031a72bceSPaul E. McKenney .proc_handler = &proc_dointvec, 91131a72bceSPaul E. McKenney }, 91231a72bceSPaul E. McKenney #endif 91312e22c5eSDavid Howells #ifdef CONFIG_SLOW_WORK 91412e22c5eSDavid Howells { 91512e22c5eSDavid Howells .ctl_name = CTL_UNNUMBERED, 91612e22c5eSDavid Howells .procname = "slow-work", 91712e22c5eSDavid Howells .mode = 0555, 91812e22c5eSDavid Howells .child = slow_work_sysctls, 91912e22c5eSDavid Howells }, 92012e22c5eSDavid Howells #endif 921ed2c12f3SAndrew Morton /* 922ed2c12f3SAndrew Morton * NOTE: do not add new entries to this table unless you have read 923ed2c12f3SAndrew Morton * Documentation/sysctl/ctl_unnumbered.txt 924ed2c12f3SAndrew Morton */ 9251da177e4SLinus Torvalds { .ctl_name = 0 } 9261da177e4SLinus Torvalds }; 9271da177e4SLinus Torvalds 928d8217f07SEric W. Biederman static struct ctl_table vm_table[] = { 9291da177e4SLinus Torvalds { 9301da177e4SLinus Torvalds .ctl_name = VM_OVERCOMMIT_MEMORY, 9311da177e4SLinus Torvalds .procname = "overcommit_memory", 9321da177e4SLinus Torvalds .data = &sysctl_overcommit_memory, 9331da177e4SLinus Torvalds .maxlen = sizeof(sysctl_overcommit_memory), 9341da177e4SLinus Torvalds .mode = 0644, 9351da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 9361da177e4SLinus Torvalds }, 9371da177e4SLinus Torvalds { 938fadd8fbdSKAMEZAWA Hiroyuki .ctl_name = VM_PANIC_ON_OOM, 939fadd8fbdSKAMEZAWA Hiroyuki .procname = "panic_on_oom", 940fadd8fbdSKAMEZAWA Hiroyuki .data = &sysctl_panic_on_oom, 941fadd8fbdSKAMEZAWA Hiroyuki .maxlen = sizeof(sysctl_panic_on_oom), 942fadd8fbdSKAMEZAWA Hiroyuki .mode = 0644, 943fadd8fbdSKAMEZAWA Hiroyuki .proc_handler = &proc_dointvec, 944fadd8fbdSKAMEZAWA Hiroyuki }, 945fadd8fbdSKAMEZAWA Hiroyuki { 946fe071d7eSDavid Rientjes .ctl_name = CTL_UNNUMBERED, 947fe071d7eSDavid Rientjes .procname = "oom_kill_allocating_task", 948fe071d7eSDavid Rientjes .data = &sysctl_oom_kill_allocating_task, 949fe071d7eSDavid Rientjes .maxlen = sizeof(sysctl_oom_kill_allocating_task), 950fe071d7eSDavid Rientjes .mode = 0644, 951fe071d7eSDavid Rientjes .proc_handler = &proc_dointvec, 952fe071d7eSDavid Rientjes }, 953fe071d7eSDavid Rientjes { 954fef1bdd6SDavid Rientjes .ctl_name = CTL_UNNUMBERED, 955fef1bdd6SDavid Rientjes .procname = "oom_dump_tasks", 956fef1bdd6SDavid Rientjes .data = &sysctl_oom_dump_tasks, 957fef1bdd6SDavid Rientjes .maxlen = sizeof(sysctl_oom_dump_tasks), 958fef1bdd6SDavid Rientjes .mode = 0644, 959fef1bdd6SDavid Rientjes .proc_handler = &proc_dointvec, 960fef1bdd6SDavid Rientjes }, 961fef1bdd6SDavid Rientjes { 9621da177e4SLinus Torvalds .ctl_name = VM_OVERCOMMIT_RATIO, 9631da177e4SLinus Torvalds .procname = "overcommit_ratio", 9641da177e4SLinus Torvalds .data = &sysctl_overcommit_ratio, 9651da177e4SLinus Torvalds .maxlen = sizeof(sysctl_overcommit_ratio), 9661da177e4SLinus Torvalds .mode = 0644, 9671da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 9681da177e4SLinus Torvalds }, 9691da177e4SLinus Torvalds { 9701da177e4SLinus Torvalds .ctl_name = VM_PAGE_CLUSTER, 9711da177e4SLinus Torvalds .procname = "page-cluster", 9721da177e4SLinus Torvalds .data = &page_cluster, 9731da177e4SLinus Torvalds .maxlen = sizeof(int), 9741da177e4SLinus Torvalds .mode = 0644, 9751da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 9761da177e4SLinus Torvalds }, 9771da177e4SLinus Torvalds { 9781da177e4SLinus Torvalds .ctl_name = VM_DIRTY_BACKGROUND, 9791da177e4SLinus Torvalds .procname = "dirty_background_ratio", 9801da177e4SLinus Torvalds .data = &dirty_background_ratio, 9811da177e4SLinus Torvalds .maxlen = sizeof(dirty_background_ratio), 9821da177e4SLinus Torvalds .mode = 0644, 9832da02997SDavid Rientjes .proc_handler = &dirty_background_ratio_handler, 9841da177e4SLinus Torvalds .strategy = &sysctl_intvec, 9851da177e4SLinus Torvalds .extra1 = &zero, 9861da177e4SLinus Torvalds .extra2 = &one_hundred, 9871da177e4SLinus Torvalds }, 9881da177e4SLinus Torvalds { 9892da02997SDavid Rientjes .ctl_name = CTL_UNNUMBERED, 9902da02997SDavid Rientjes .procname = "dirty_background_bytes", 9912da02997SDavid Rientjes .data = &dirty_background_bytes, 9922da02997SDavid Rientjes .maxlen = sizeof(dirty_background_bytes), 9932da02997SDavid Rientjes .mode = 0644, 9942da02997SDavid Rientjes .proc_handler = &dirty_background_bytes_handler, 9952da02997SDavid Rientjes .strategy = &sysctl_intvec, 996fc3501d4SSven Wegener .extra1 = &one_ul, 9972da02997SDavid Rientjes }, 9982da02997SDavid Rientjes { 9991da177e4SLinus Torvalds .ctl_name = VM_DIRTY_RATIO, 10001da177e4SLinus Torvalds .procname = "dirty_ratio", 10011da177e4SLinus Torvalds .data = &vm_dirty_ratio, 10021da177e4SLinus Torvalds .maxlen = sizeof(vm_dirty_ratio), 10031da177e4SLinus Torvalds .mode = 0644, 100404fbfdc1SPeter Zijlstra .proc_handler = &dirty_ratio_handler, 10051da177e4SLinus Torvalds .strategy = &sysctl_intvec, 10061da177e4SLinus Torvalds .extra1 = &zero, 10071da177e4SLinus Torvalds .extra2 = &one_hundred, 10081da177e4SLinus Torvalds }, 10091da177e4SLinus Torvalds { 10102da02997SDavid Rientjes .ctl_name = CTL_UNNUMBERED, 10112da02997SDavid Rientjes .procname = "dirty_bytes", 10122da02997SDavid Rientjes .data = &vm_dirty_bytes, 10132da02997SDavid Rientjes .maxlen = sizeof(vm_dirty_bytes), 10142da02997SDavid Rientjes .mode = 0644, 10152da02997SDavid Rientjes .proc_handler = &dirty_bytes_handler, 10162da02997SDavid Rientjes .strategy = &sysctl_intvec, 1017fc3501d4SSven Wegener .extra1 = &one_ul, 10182da02997SDavid Rientjes }, 10192da02997SDavid Rientjes { 10201da177e4SLinus Torvalds .procname = "dirty_writeback_centisecs", 1021f6ef9438SBart Samwel .data = &dirty_writeback_interval, 1022f6ef9438SBart Samwel .maxlen = sizeof(dirty_writeback_interval), 10231da177e4SLinus Torvalds .mode = 0644, 10241da177e4SLinus Torvalds .proc_handler = &dirty_writeback_centisecs_handler, 10251da177e4SLinus Torvalds }, 10261da177e4SLinus Torvalds { 10271da177e4SLinus Torvalds .procname = "dirty_expire_centisecs", 1028f6ef9438SBart Samwel .data = &dirty_expire_interval, 1029f6ef9438SBart Samwel .maxlen = sizeof(dirty_expire_interval), 10301da177e4SLinus Torvalds .mode = 0644, 1031704503d8SAlexey Dobriyan .proc_handler = &proc_dointvec, 10321da177e4SLinus Torvalds }, 10331da177e4SLinus Torvalds { 10341da177e4SLinus Torvalds .ctl_name = VM_NR_PDFLUSH_THREADS, 10351da177e4SLinus Torvalds .procname = "nr_pdflush_threads", 10361da177e4SLinus Torvalds .data = &nr_pdflush_threads, 10371da177e4SLinus Torvalds .maxlen = sizeof nr_pdflush_threads, 10381da177e4SLinus Torvalds .mode = 0444 /* read-only*/, 10391da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 10401da177e4SLinus Torvalds }, 10411da177e4SLinus Torvalds { 1042fafd688eSPeter W Morreale .ctl_name = CTL_UNNUMBERED, 1043fafd688eSPeter W Morreale .procname = "nr_pdflush_threads_min", 1044fafd688eSPeter W Morreale .data = &nr_pdflush_threads_min, 1045fafd688eSPeter W Morreale .maxlen = sizeof nr_pdflush_threads_min, 1046fafd688eSPeter W Morreale .mode = 0644 /* read-write */, 1047fafd688eSPeter W Morreale .proc_handler = &proc_dointvec_minmax, 1048fafd688eSPeter W Morreale .strategy = &sysctl_intvec, 1049fafd688eSPeter W Morreale .extra1 = &one, 1050fafd688eSPeter W Morreale .extra2 = &nr_pdflush_threads_max, 1051fafd688eSPeter W Morreale }, 1052fafd688eSPeter W Morreale { 1053fafd688eSPeter W Morreale .ctl_name = CTL_UNNUMBERED, 1054fafd688eSPeter W Morreale .procname = "nr_pdflush_threads_max", 1055fafd688eSPeter W Morreale .data = &nr_pdflush_threads_max, 1056fafd688eSPeter W Morreale .maxlen = sizeof nr_pdflush_threads_max, 1057fafd688eSPeter W Morreale .mode = 0644 /* read-write */, 1058fafd688eSPeter W Morreale .proc_handler = &proc_dointvec_minmax, 1059fafd688eSPeter W Morreale .strategy = &sysctl_intvec, 1060fafd688eSPeter W Morreale .extra1 = &nr_pdflush_threads_min, 1061fafd688eSPeter W Morreale .extra2 = &one_thousand, 1062fafd688eSPeter W Morreale }, 1063fafd688eSPeter W Morreale { 10641da177e4SLinus Torvalds .ctl_name = VM_SWAPPINESS, 10651da177e4SLinus Torvalds .procname = "swappiness", 10661da177e4SLinus Torvalds .data = &vm_swappiness, 10671da177e4SLinus Torvalds .maxlen = sizeof(vm_swappiness), 10681da177e4SLinus Torvalds .mode = 0644, 10691da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 10701da177e4SLinus Torvalds .strategy = &sysctl_intvec, 10711da177e4SLinus Torvalds .extra1 = &zero, 10721da177e4SLinus Torvalds .extra2 = &one_hundred, 10731da177e4SLinus Torvalds }, 10741da177e4SLinus Torvalds #ifdef CONFIG_HUGETLB_PAGE 10751da177e4SLinus Torvalds { 10761da177e4SLinus Torvalds .procname = "nr_hugepages", 1077e5ff2159SAndi Kleen .data = NULL, 10781da177e4SLinus Torvalds .maxlen = sizeof(unsigned long), 10791da177e4SLinus Torvalds .mode = 0644, 10801da177e4SLinus Torvalds .proc_handler = &hugetlb_sysctl_handler, 10811da177e4SLinus Torvalds .extra1 = (void *)&hugetlb_zero, 10821da177e4SLinus Torvalds .extra2 = (void *)&hugetlb_infinity, 10831da177e4SLinus Torvalds }, 10841da177e4SLinus Torvalds { 10851da177e4SLinus Torvalds .ctl_name = VM_HUGETLB_GROUP, 10861da177e4SLinus Torvalds .procname = "hugetlb_shm_group", 10871da177e4SLinus Torvalds .data = &sysctl_hugetlb_shm_group, 10881da177e4SLinus Torvalds .maxlen = sizeof(gid_t), 10891da177e4SLinus Torvalds .mode = 0644, 10901da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 10911da177e4SLinus Torvalds }, 1092396faf03SMel Gorman { 1093396faf03SMel Gorman .ctl_name = CTL_UNNUMBERED, 1094396faf03SMel Gorman .procname = "hugepages_treat_as_movable", 1095396faf03SMel Gorman .data = &hugepages_treat_as_movable, 1096396faf03SMel Gorman .maxlen = sizeof(int), 1097396faf03SMel Gorman .mode = 0644, 1098396faf03SMel Gorman .proc_handler = &hugetlb_treat_movable_handler, 1099396faf03SMel Gorman }, 110054f9f80dSAdam Litke { 110154f9f80dSAdam Litke .ctl_name = CTL_UNNUMBERED, 1102d1c3fb1fSNishanth Aravamudan .procname = "nr_overcommit_hugepages", 1103e5ff2159SAndi Kleen .data = NULL, 1104e5ff2159SAndi Kleen .maxlen = sizeof(unsigned long), 1105d1c3fb1fSNishanth Aravamudan .mode = 0644, 1106a3d0c6aaSNishanth Aravamudan .proc_handler = &hugetlb_overcommit_handler, 1107e5ff2159SAndi Kleen .extra1 = (void *)&hugetlb_zero, 1108e5ff2159SAndi Kleen .extra2 = (void *)&hugetlb_infinity, 1109d1c3fb1fSNishanth Aravamudan }, 11101da177e4SLinus Torvalds #endif 11111da177e4SLinus Torvalds { 11121da177e4SLinus Torvalds .ctl_name = VM_LOWMEM_RESERVE_RATIO, 11131da177e4SLinus Torvalds .procname = "lowmem_reserve_ratio", 11141da177e4SLinus Torvalds .data = &sysctl_lowmem_reserve_ratio, 11151da177e4SLinus Torvalds .maxlen = sizeof(sysctl_lowmem_reserve_ratio), 11161da177e4SLinus Torvalds .mode = 0644, 11171da177e4SLinus Torvalds .proc_handler = &lowmem_reserve_ratio_sysctl_handler, 11181da177e4SLinus Torvalds .strategy = &sysctl_intvec, 11191da177e4SLinus Torvalds }, 11201da177e4SLinus Torvalds { 11219d0243bcSAndrew Morton .ctl_name = VM_DROP_PAGECACHE, 11229d0243bcSAndrew Morton .procname = "drop_caches", 11239d0243bcSAndrew Morton .data = &sysctl_drop_caches, 11249d0243bcSAndrew Morton .maxlen = sizeof(int), 11259d0243bcSAndrew Morton .mode = 0644, 11269d0243bcSAndrew Morton .proc_handler = drop_caches_sysctl_handler, 11279d0243bcSAndrew Morton .strategy = &sysctl_intvec, 11289d0243bcSAndrew Morton }, 11299d0243bcSAndrew Morton { 11301da177e4SLinus Torvalds .ctl_name = VM_MIN_FREE_KBYTES, 11311da177e4SLinus Torvalds .procname = "min_free_kbytes", 11321da177e4SLinus Torvalds .data = &min_free_kbytes, 11331da177e4SLinus Torvalds .maxlen = sizeof(min_free_kbytes), 11341da177e4SLinus Torvalds .mode = 0644, 11351da177e4SLinus Torvalds .proc_handler = &min_free_kbytes_sysctl_handler, 11361da177e4SLinus Torvalds .strategy = &sysctl_intvec, 11371da177e4SLinus Torvalds .extra1 = &zero, 11381da177e4SLinus Torvalds }, 11398ad4b1fbSRohit Seth { 11408ad4b1fbSRohit Seth .ctl_name = VM_PERCPU_PAGELIST_FRACTION, 11418ad4b1fbSRohit Seth .procname = "percpu_pagelist_fraction", 11428ad4b1fbSRohit Seth .data = &percpu_pagelist_fraction, 11438ad4b1fbSRohit Seth .maxlen = sizeof(percpu_pagelist_fraction), 11448ad4b1fbSRohit Seth .mode = 0644, 11458ad4b1fbSRohit Seth .proc_handler = &percpu_pagelist_fraction_sysctl_handler, 11468ad4b1fbSRohit Seth .strategy = &sysctl_intvec, 11478ad4b1fbSRohit Seth .extra1 = &min_percpu_pagelist_fract, 11488ad4b1fbSRohit Seth }, 11491da177e4SLinus Torvalds #ifdef CONFIG_MMU 11501da177e4SLinus Torvalds { 11511da177e4SLinus Torvalds .ctl_name = VM_MAX_MAP_COUNT, 11521da177e4SLinus Torvalds .procname = "max_map_count", 11531da177e4SLinus Torvalds .data = &sysctl_max_map_count, 11541da177e4SLinus Torvalds .maxlen = sizeof(sysctl_max_map_count), 11551da177e4SLinus Torvalds .mode = 0644, 11561da177e4SLinus Torvalds .proc_handler = &proc_dointvec 11571da177e4SLinus Torvalds }, 1158dd8632a1SPaul Mundt #else 1159dd8632a1SPaul Mundt { 1160dd8632a1SPaul Mundt .ctl_name = CTL_UNNUMBERED, 1161dd8632a1SPaul Mundt .procname = "nr_trim_pages", 1162dd8632a1SPaul Mundt .data = &sysctl_nr_trim_pages, 1163dd8632a1SPaul Mundt .maxlen = sizeof(sysctl_nr_trim_pages), 1164dd8632a1SPaul Mundt .mode = 0644, 1165dd8632a1SPaul Mundt .proc_handler = &proc_dointvec_minmax, 1166dd8632a1SPaul Mundt .strategy = &sysctl_intvec, 1167dd8632a1SPaul Mundt .extra1 = &zero, 1168dd8632a1SPaul Mundt }, 11691da177e4SLinus Torvalds #endif 11701da177e4SLinus Torvalds { 11711da177e4SLinus Torvalds .ctl_name = VM_LAPTOP_MODE, 11721da177e4SLinus Torvalds .procname = "laptop_mode", 11731da177e4SLinus Torvalds .data = &laptop_mode, 11741da177e4SLinus Torvalds .maxlen = sizeof(laptop_mode), 11751da177e4SLinus Torvalds .mode = 0644, 1176ed5b43f1SBart Samwel .proc_handler = &proc_dointvec_jiffies, 1177ed5b43f1SBart Samwel .strategy = &sysctl_jiffies, 11781da177e4SLinus Torvalds }, 11791da177e4SLinus Torvalds { 11801da177e4SLinus Torvalds .ctl_name = VM_BLOCK_DUMP, 11811da177e4SLinus Torvalds .procname = "block_dump", 11821da177e4SLinus Torvalds .data = &block_dump, 11831da177e4SLinus Torvalds .maxlen = sizeof(block_dump), 11841da177e4SLinus Torvalds .mode = 0644, 11851da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 11861da177e4SLinus Torvalds .strategy = &sysctl_intvec, 11871da177e4SLinus Torvalds .extra1 = &zero, 11881da177e4SLinus Torvalds }, 11891da177e4SLinus Torvalds { 11901da177e4SLinus Torvalds .ctl_name = VM_VFS_CACHE_PRESSURE, 11911da177e4SLinus Torvalds .procname = "vfs_cache_pressure", 11921da177e4SLinus Torvalds .data = &sysctl_vfs_cache_pressure, 11931da177e4SLinus Torvalds .maxlen = sizeof(sysctl_vfs_cache_pressure), 11941da177e4SLinus Torvalds .mode = 0644, 11951da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 11961da177e4SLinus Torvalds .strategy = &sysctl_intvec, 11971da177e4SLinus Torvalds .extra1 = &zero, 11981da177e4SLinus Torvalds }, 11991da177e4SLinus Torvalds #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT 12001da177e4SLinus Torvalds { 12011da177e4SLinus Torvalds .ctl_name = VM_LEGACY_VA_LAYOUT, 12021da177e4SLinus Torvalds .procname = "legacy_va_layout", 12031da177e4SLinus Torvalds .data = &sysctl_legacy_va_layout, 12041da177e4SLinus Torvalds .maxlen = sizeof(sysctl_legacy_va_layout), 12051da177e4SLinus Torvalds .mode = 0644, 12061da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 12071da177e4SLinus Torvalds .strategy = &sysctl_intvec, 12081da177e4SLinus Torvalds .extra1 = &zero, 12091da177e4SLinus Torvalds }, 12101da177e4SLinus Torvalds #endif 12111743660bSChristoph Lameter #ifdef CONFIG_NUMA 12121743660bSChristoph Lameter { 12131743660bSChristoph Lameter .ctl_name = VM_ZONE_RECLAIM_MODE, 12141743660bSChristoph Lameter .procname = "zone_reclaim_mode", 12151743660bSChristoph Lameter .data = &zone_reclaim_mode, 12161743660bSChristoph Lameter .maxlen = sizeof(zone_reclaim_mode), 12171743660bSChristoph Lameter .mode = 0644, 12181743660bSChristoph Lameter .proc_handler = &proc_dointvec, 1219c84db23cSChristoph Lameter .strategy = &sysctl_intvec, 1220c84db23cSChristoph Lameter .extra1 = &zero, 12211743660bSChristoph Lameter }, 12229614634fSChristoph Lameter { 12239614634fSChristoph Lameter .ctl_name = VM_MIN_UNMAPPED, 12249614634fSChristoph Lameter .procname = "min_unmapped_ratio", 12259614634fSChristoph Lameter .data = &sysctl_min_unmapped_ratio, 12269614634fSChristoph Lameter .maxlen = sizeof(sysctl_min_unmapped_ratio), 12279614634fSChristoph Lameter .mode = 0644, 12289614634fSChristoph Lameter .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler, 12299614634fSChristoph Lameter .strategy = &sysctl_intvec, 12309614634fSChristoph Lameter .extra1 = &zero, 12319614634fSChristoph Lameter .extra2 = &one_hundred, 12329614634fSChristoph Lameter }, 12330ff38490SChristoph Lameter { 12340ff38490SChristoph Lameter .ctl_name = VM_MIN_SLAB, 12350ff38490SChristoph Lameter .procname = "min_slab_ratio", 12360ff38490SChristoph Lameter .data = &sysctl_min_slab_ratio, 12370ff38490SChristoph Lameter .maxlen = sizeof(sysctl_min_slab_ratio), 12380ff38490SChristoph Lameter .mode = 0644, 12390ff38490SChristoph Lameter .proc_handler = &sysctl_min_slab_ratio_sysctl_handler, 12400ff38490SChristoph Lameter .strategy = &sysctl_intvec, 12410ff38490SChristoph Lameter .extra1 = &zero, 12420ff38490SChristoph Lameter .extra2 = &one_hundred, 12430ff38490SChristoph Lameter }, 12441743660bSChristoph Lameter #endif 124577461ab3SChristoph Lameter #ifdef CONFIG_SMP 124677461ab3SChristoph Lameter { 124777461ab3SChristoph Lameter .ctl_name = CTL_UNNUMBERED, 124877461ab3SChristoph Lameter .procname = "stat_interval", 124977461ab3SChristoph Lameter .data = &sysctl_stat_interval, 125077461ab3SChristoph Lameter .maxlen = sizeof(sysctl_stat_interval), 125177461ab3SChristoph Lameter .mode = 0644, 125277461ab3SChristoph Lameter .proc_handler = &proc_dointvec_jiffies, 125377461ab3SChristoph Lameter .strategy = &sysctl_jiffies, 125477461ab3SChristoph Lameter }, 125577461ab3SChristoph Lameter #endif 1256ed032189SEric Paris #ifdef CONFIG_SECURITY 1257ed032189SEric Paris { 1258ed032189SEric Paris .ctl_name = CTL_UNNUMBERED, 1259ed032189SEric Paris .procname = "mmap_min_addr", 1260ed032189SEric Paris .data = &mmap_min_addr, 1261ed032189SEric Paris .maxlen = sizeof(unsigned long), 1262ed032189SEric Paris .mode = 0644, 1263ed032189SEric Paris .proc_handler = &proc_doulongvec_minmax, 1264ed032189SEric Paris }, 12658daec965SLee Schermerhorn #endif 1266f0c0b2b8SKAMEZAWA Hiroyuki #ifdef CONFIG_NUMA 1267f0c0b2b8SKAMEZAWA Hiroyuki { 1268f0c0b2b8SKAMEZAWA Hiroyuki .ctl_name = CTL_UNNUMBERED, 1269f0c0b2b8SKAMEZAWA Hiroyuki .procname = "numa_zonelist_order", 1270f0c0b2b8SKAMEZAWA Hiroyuki .data = &numa_zonelist_order, 1271f0c0b2b8SKAMEZAWA Hiroyuki .maxlen = NUMA_ZONELIST_ORDER_LEN, 1272f0c0b2b8SKAMEZAWA Hiroyuki .mode = 0644, 1273f0c0b2b8SKAMEZAWA Hiroyuki .proc_handler = &numa_zonelist_order_handler, 1274f0c0b2b8SKAMEZAWA Hiroyuki .strategy = &sysctl_string, 1275f0c0b2b8SKAMEZAWA Hiroyuki }, 1276f0c0b2b8SKAMEZAWA Hiroyuki #endif 12772b8232ceSAl Viro #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \ 12785c36e657SPaul Mundt (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) 1279e6e5494cSIngo Molnar { 1280e6e5494cSIngo Molnar .ctl_name = VM_VDSO_ENABLED, 1281e6e5494cSIngo Molnar .procname = "vdso_enabled", 1282e6e5494cSIngo Molnar .data = &vdso_enabled, 1283e6e5494cSIngo Molnar .maxlen = sizeof(vdso_enabled), 1284e6e5494cSIngo Molnar .mode = 0644, 1285e6e5494cSIngo Molnar .proc_handler = &proc_dointvec, 1286e6e5494cSIngo Molnar .strategy = &sysctl_intvec, 1287e6e5494cSIngo Molnar .extra1 = &zero, 1288e6e5494cSIngo Molnar }, 1289e6e5494cSIngo Molnar #endif 1290195cf453SBron Gondwana #ifdef CONFIG_HIGHMEM 1291195cf453SBron Gondwana { 1292195cf453SBron Gondwana .ctl_name = CTL_UNNUMBERED, 1293195cf453SBron Gondwana .procname = "highmem_is_dirtyable", 1294195cf453SBron Gondwana .data = &vm_highmem_is_dirtyable, 1295195cf453SBron Gondwana .maxlen = sizeof(vm_highmem_is_dirtyable), 1296195cf453SBron Gondwana .mode = 0644, 1297195cf453SBron Gondwana .proc_handler = &proc_dointvec_minmax, 1298195cf453SBron Gondwana .strategy = &sysctl_intvec, 1299195cf453SBron Gondwana .extra1 = &zero, 1300195cf453SBron Gondwana .extra2 = &one, 1301195cf453SBron Gondwana }, 1302195cf453SBron Gondwana #endif 13034be6f6bbSPeter Zijlstra #ifdef CONFIG_UNEVICTABLE_LRU 13044be6f6bbSPeter Zijlstra { 13054be6f6bbSPeter Zijlstra .ctl_name = CTL_UNNUMBERED, 13064be6f6bbSPeter Zijlstra .procname = "scan_unevictable_pages", 13074be6f6bbSPeter Zijlstra .data = &scan_unevictable_pages, 13084be6f6bbSPeter Zijlstra .maxlen = sizeof(scan_unevictable_pages), 13094be6f6bbSPeter Zijlstra .mode = 0644, 13104be6f6bbSPeter Zijlstra .proc_handler = &scan_unevictable_handler, 13114be6f6bbSPeter Zijlstra }, 13124be6f6bbSPeter Zijlstra #endif 13132be7fe07SAndrew Morton /* 13142be7fe07SAndrew Morton * NOTE: do not add new entries to this table unless you have read 13152be7fe07SAndrew Morton * Documentation/sysctl/ctl_unnumbered.txt 13162be7fe07SAndrew Morton */ 13171da177e4SLinus Torvalds { .ctl_name = 0 } 13181da177e4SLinus Torvalds }; 13191da177e4SLinus Torvalds 13202abc26fcSEric W. Biederman #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) 1321d8217f07SEric W. Biederman static struct ctl_table binfmt_misc_table[] = { 13222abc26fcSEric W. Biederman { .ctl_name = 0 } 13232abc26fcSEric W. Biederman }; 13242abc26fcSEric W. Biederman #endif 13252abc26fcSEric W. Biederman 1326d8217f07SEric W. Biederman static struct ctl_table fs_table[] = { 13271da177e4SLinus Torvalds { 13281da177e4SLinus Torvalds .ctl_name = FS_NRINODE, 13291da177e4SLinus Torvalds .procname = "inode-nr", 13301da177e4SLinus Torvalds .data = &inodes_stat, 13311da177e4SLinus Torvalds .maxlen = 2*sizeof(int), 13321da177e4SLinus Torvalds .mode = 0444, 13331da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 13341da177e4SLinus Torvalds }, 13351da177e4SLinus Torvalds { 13361da177e4SLinus Torvalds .ctl_name = FS_STATINODE, 13371da177e4SLinus Torvalds .procname = "inode-state", 13381da177e4SLinus Torvalds .data = &inodes_stat, 13391da177e4SLinus Torvalds .maxlen = 7*sizeof(int), 13401da177e4SLinus Torvalds .mode = 0444, 13411da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 13421da177e4SLinus Torvalds }, 13431da177e4SLinus Torvalds { 13441da177e4SLinus Torvalds .procname = "file-nr", 13451da177e4SLinus Torvalds .data = &files_stat, 13461da177e4SLinus Torvalds .maxlen = 3*sizeof(int), 13471da177e4SLinus Torvalds .mode = 0444, 1348529bf6beSDipankar Sarma .proc_handler = &proc_nr_files, 13491da177e4SLinus Torvalds }, 13501da177e4SLinus Torvalds { 13511da177e4SLinus Torvalds .ctl_name = FS_MAXFILE, 13521da177e4SLinus Torvalds .procname = "file-max", 13531da177e4SLinus Torvalds .data = &files_stat.max_files, 13541da177e4SLinus Torvalds .maxlen = sizeof(int), 13551da177e4SLinus Torvalds .mode = 0644, 13561da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 13571da177e4SLinus Torvalds }, 13581da177e4SLinus Torvalds { 13599cfe015aSEric Dumazet .ctl_name = CTL_UNNUMBERED, 13609cfe015aSEric Dumazet .procname = "nr_open", 13619cfe015aSEric Dumazet .data = &sysctl_nr_open, 13629cfe015aSEric Dumazet .maxlen = sizeof(int), 13639cfe015aSEric Dumazet .mode = 0644, 1364eceea0b3SAl Viro .proc_handler = &proc_dointvec_minmax, 1365eceea0b3SAl Viro .extra1 = &sysctl_nr_open_min, 1366eceea0b3SAl Viro .extra2 = &sysctl_nr_open_max, 13679cfe015aSEric Dumazet }, 13689cfe015aSEric Dumazet { 13691da177e4SLinus Torvalds .ctl_name = FS_DENTRY, 13701da177e4SLinus Torvalds .procname = "dentry-state", 13711da177e4SLinus Torvalds .data = &dentry_stat, 13721da177e4SLinus Torvalds .maxlen = 6*sizeof(int), 13731da177e4SLinus Torvalds .mode = 0444, 13741da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 13751da177e4SLinus Torvalds }, 13761da177e4SLinus Torvalds { 13771da177e4SLinus Torvalds .ctl_name = FS_OVERFLOWUID, 13781da177e4SLinus Torvalds .procname = "overflowuid", 13791da177e4SLinus Torvalds .data = &fs_overflowuid, 13801da177e4SLinus Torvalds .maxlen = sizeof(int), 13811da177e4SLinus Torvalds .mode = 0644, 13821da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 13831da177e4SLinus Torvalds .strategy = &sysctl_intvec, 13841da177e4SLinus Torvalds .extra1 = &minolduid, 13851da177e4SLinus Torvalds .extra2 = &maxolduid, 13861da177e4SLinus Torvalds }, 13871da177e4SLinus Torvalds { 13881da177e4SLinus Torvalds .ctl_name = FS_OVERFLOWGID, 13891da177e4SLinus Torvalds .procname = "overflowgid", 13901da177e4SLinus Torvalds .data = &fs_overflowgid, 13911da177e4SLinus Torvalds .maxlen = sizeof(int), 13921da177e4SLinus Torvalds .mode = 0644, 13931da177e4SLinus Torvalds .proc_handler = &proc_dointvec_minmax, 13941da177e4SLinus Torvalds .strategy = &sysctl_intvec, 13951da177e4SLinus Torvalds .extra1 = &minolduid, 13961da177e4SLinus Torvalds .extra2 = &maxolduid, 13971da177e4SLinus Torvalds }, 1398bfcd17a6SThomas Petazzoni #ifdef CONFIG_FILE_LOCKING 13991da177e4SLinus Torvalds { 14001da177e4SLinus Torvalds .ctl_name = FS_LEASES, 14011da177e4SLinus Torvalds .procname = "leases-enable", 14021da177e4SLinus Torvalds .data = &leases_enable, 14031da177e4SLinus Torvalds .maxlen = sizeof(int), 14041da177e4SLinus Torvalds .mode = 0644, 14051da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 14061da177e4SLinus Torvalds }, 1407bfcd17a6SThomas Petazzoni #endif 14081da177e4SLinus Torvalds #ifdef CONFIG_DNOTIFY 14091da177e4SLinus Torvalds { 14101da177e4SLinus Torvalds .ctl_name = FS_DIR_NOTIFY, 14111da177e4SLinus Torvalds .procname = "dir-notify-enable", 14121da177e4SLinus Torvalds .data = &dir_notify_enable, 14131da177e4SLinus Torvalds .maxlen = sizeof(int), 14141da177e4SLinus Torvalds .mode = 0644, 14151da177e4SLinus Torvalds .proc_handler = &proc_dointvec, 14161da177e4SLinus Torvalds }, 14171da177e4SLinus Torvalds #endif 14181da177e4SLinus Torvalds #ifdef CONFIG_MMU 1419bfcd17a6SThomas Petazzoni #ifdef CONFIG_FILE_LOCKING 14201da177e4SLinus Torvalds { 14211da177e4SLinus Torvalds .ctl_name = FS_LEASE_TIME, 14221da177e4SLinus Torvalds .procname = "lease-break-time", 14231da177e4SLinus Torvalds .data = &lease_break_time, 14241da177e4SLinus Torvalds .maxlen = sizeof(int), 14251da177e4SLinus Torvalds .mode = 0644, 14268e654fbaSMatthew Wilcox .proc_handler = &proc_dointvec, 14271da177e4SLinus Torvalds }, 1428bfcd17a6SThomas Petazzoni #endif 1429ebf3f09cSThomas Petazzoni #ifdef CONFIG_AIO 14301da177e4SLinus Torvalds { 14311da177e4SLinus Torvalds .procname = "aio-nr", 14321da177e4SLinus Torvalds .data = &aio_nr, 14331da177e4SLinus Torvalds .maxlen = sizeof(aio_nr), 14341da177e4SLinus Torvalds .mode = 0444, 1435d55b5fdaSZach Brown .proc_handler = &proc_doulongvec_minmax, 14361da177e4SLinus Torvalds }, 14371da177e4SLinus Torvalds { 14381da177e4SLinus Torvalds .procname = "aio-max-nr", 14391da177e4SLinus Torvalds .data = &aio_max_nr, 14401da177e4SLinus Torvalds .maxlen = sizeof(aio_max_nr), 14411da177e4SLinus Torvalds .mode = 0644, 1442d55b5fdaSZach Brown .proc_handler = &proc_doulongvec_minmax, 14431da177e4SLinus Torvalds }, 1444ebf3f09cSThomas Petazzoni #endif /* CONFIG_AIO */ 14452d9048e2SAmy Griffis #ifdef CONFIG_INOTIFY_USER 14460399cb08SRobert Love { 14470399cb08SRobert Love .ctl_name = FS_INOTIFY, 14480399cb08SRobert Love .procname = "inotify", 14490399cb08SRobert Love .mode = 0555, 14500399cb08SRobert Love .child = inotify_table, 14510399cb08SRobert Love }, 14520399cb08SRobert Love #endif 14537ef9964eSDavide Libenzi #ifdef CONFIG_EPOLL 14547ef9964eSDavide Libenzi { 14557ef9964eSDavide Libenzi .procname = "epoll", 14567ef9964eSDavide Libenzi .mode = 0555, 14577ef9964eSDavide Libenzi .child = epoll_table, 14587ef9964eSDavide Libenzi }, 14597ef9964eSDavide Libenzi #endif 14601da177e4SLinus Torvalds #endif 1461d6e71144SAlan Cox { 1462d6e71144SAlan Cox .ctl_name = KERN_SETUID_DUMPABLE, 1463d6e71144SAlan Cox .procname = "suid_dumpable", 1464d6e71144SAlan Cox .data = &suid_dumpable, 1465d6e71144SAlan Cox .maxlen = sizeof(int), 1466d6e71144SAlan Cox .mode = 0644, 14678e654fbaSMatthew Wilcox .proc_handler = &proc_dointvec_minmax, 14688e654fbaSMatthew Wilcox .strategy = &sysctl_intvec, 14698e654fbaSMatthew Wilcox .extra1 = &zero, 14708e654fbaSMatthew Wilcox .extra2 = &two, 1471d6e71144SAlan Cox }, 14722abc26fcSEric W. Biederman #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) 14732abc26fcSEric W. Biederman { 14742abc26fcSEric W. Biederman .ctl_name = CTL_UNNUMBERED, 14752abc26fcSEric W. Biederman .procname = "binfmt_misc", 14762abc26fcSEric W. Biederman .mode = 0555, 14772abc26fcSEric W. Biederman .child = binfmt_misc_table, 14782abc26fcSEric W. Biederman }, 14792abc26fcSEric W. Biederman #endif 14802be7fe07SAndrew Morton /* 14812be7fe07SAndrew Morton * NOTE: do not add new entries to this table unless you have read 14822be7fe07SAndrew Morton * Documentation/sysctl/ctl_unnumbered.txt 14832be7fe07SAndrew Morton */ 14841da177e4SLinus Torvalds { .ctl_name = 0 } 14851da177e4SLinus Torvalds }; 14861da177e4SLinus Torvalds 1487d8217f07SEric W. Biederman static struct ctl_table debug_table[] = { 1488d0c3d534SOlof Johansson #if defined(CONFIG_X86) || defined(CONFIG_PPC) 1489abd4f750SMasoud Asgharifard Sharbiani { 1490abd4f750SMasoud Asgharifard Sharbiani .ctl_name = CTL_UNNUMBERED, 1491abd4f750SMasoud Asgharifard Sharbiani .procname = "exception-trace", 1492abd4f750SMasoud Asgharifard Sharbiani .data = &show_unhandled_signals, 1493abd4f750SMasoud Asgharifard Sharbiani .maxlen = sizeof(int), 1494abd4f750SMasoud Asgharifard Sharbiani .mode = 0644, 1495abd4f750SMasoud Asgharifard Sharbiani .proc_handler = proc_dointvec 1496abd4f750SMasoud Asgharifard Sharbiani }, 1497abd4f750SMasoud Asgharifard Sharbiani #endif 14981da177e4SLinus Torvalds { .ctl_name = 0 } 14991da177e4SLinus Torvalds }; 15001da177e4SLinus Torvalds 1501d8217f07SEric W. Biederman static struct ctl_table dev_table[] = { 15021da177e4SLinus Torvalds { .ctl_name = 0 } 15031da177e4SLinus Torvalds }; 15041da177e4SLinus Torvalds 1505330d57fbSAl Viro static DEFINE_SPINLOCK(sysctl_lock); 1506330d57fbSAl Viro 1507330d57fbSAl Viro /* called under sysctl_lock */ 1508330d57fbSAl Viro static int use_table(struct ctl_table_header *p) 1509330d57fbSAl Viro { 1510330d57fbSAl Viro if (unlikely(p->unregistering)) 1511330d57fbSAl Viro return 0; 1512330d57fbSAl Viro p->used++; 1513330d57fbSAl Viro return 1; 1514330d57fbSAl Viro } 1515330d57fbSAl Viro 1516330d57fbSAl Viro /* called under sysctl_lock */ 1517330d57fbSAl Viro static void unuse_table(struct ctl_table_header *p) 1518330d57fbSAl Viro { 1519330d57fbSAl Viro if (!--p->used) 1520330d57fbSAl Viro if (unlikely(p->unregistering)) 1521330d57fbSAl Viro complete(p->unregistering); 1522330d57fbSAl Viro } 1523330d57fbSAl Viro 1524330d57fbSAl Viro /* called under sysctl_lock, will reacquire if has to wait */ 1525330d57fbSAl Viro static void start_unregistering(struct ctl_table_header *p) 1526330d57fbSAl Viro { 1527330d57fbSAl Viro /* 1528330d57fbSAl Viro * if p->used is 0, nobody will ever touch that entry again; 1529330d57fbSAl Viro * we'll eliminate all paths to it before dropping sysctl_lock 1530330d57fbSAl Viro */ 1531330d57fbSAl Viro if (unlikely(p->used)) { 1532330d57fbSAl Viro struct completion wait; 1533330d57fbSAl Viro init_completion(&wait); 1534330d57fbSAl Viro p->unregistering = &wait; 1535330d57fbSAl Viro spin_unlock(&sysctl_lock); 1536330d57fbSAl Viro wait_for_completion(&wait); 1537330d57fbSAl Viro spin_lock(&sysctl_lock); 1538f7e6ced4SAl Viro } else { 1539f7e6ced4SAl Viro /* anything non-NULL; we'll never dereference it */ 1540f7e6ced4SAl Viro p->unregistering = ERR_PTR(-EINVAL); 1541330d57fbSAl Viro } 1542330d57fbSAl Viro /* 1543330d57fbSAl Viro * do not remove from the list until nobody holds it; walking the 1544330d57fbSAl Viro * list in do_sysctl() relies on that. 1545330d57fbSAl Viro */ 1546330d57fbSAl Viro list_del_init(&p->ctl_entry); 1547330d57fbSAl Viro } 1548330d57fbSAl Viro 1549f7e6ced4SAl Viro void sysctl_head_get(struct ctl_table_header *head) 1550f7e6ced4SAl Viro { 1551f7e6ced4SAl Viro spin_lock(&sysctl_lock); 1552f7e6ced4SAl Viro head->count++; 1553f7e6ced4SAl Viro spin_unlock(&sysctl_lock); 1554f7e6ced4SAl Viro } 1555f7e6ced4SAl Viro 1556f7e6ced4SAl Viro void sysctl_head_put(struct ctl_table_header *head) 1557f7e6ced4SAl Viro { 1558f7e6ced4SAl Viro spin_lock(&sysctl_lock); 1559f7e6ced4SAl Viro if (!--head->count) 1560f7e6ced4SAl Viro kfree(head); 1561f7e6ced4SAl Viro spin_unlock(&sysctl_lock); 1562f7e6ced4SAl Viro } 1563f7e6ced4SAl Viro 1564f7e6ced4SAl Viro struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head) 1565f7e6ced4SAl Viro { 1566f7e6ced4SAl Viro if (!head) 1567f7e6ced4SAl Viro BUG(); 1568f7e6ced4SAl Viro spin_lock(&sysctl_lock); 1569f7e6ced4SAl Viro if (!use_table(head)) 1570f7e6ced4SAl Viro head = ERR_PTR(-ENOENT); 1571f7e6ced4SAl Viro spin_unlock(&sysctl_lock); 1572f7e6ced4SAl Viro return head; 1573f7e6ced4SAl Viro } 1574f7e6ced4SAl Viro 1575805b5d5eSEric W. Biederman void sysctl_head_finish(struct ctl_table_header *head) 1576805b5d5eSEric W. Biederman { 1577805b5d5eSEric W. Biederman if (!head) 1578805b5d5eSEric W. Biederman return; 1579805b5d5eSEric W. Biederman spin_lock(&sysctl_lock); 1580805b5d5eSEric W. Biederman unuse_table(head); 1581805b5d5eSEric W. Biederman spin_unlock(&sysctl_lock); 1582805b5d5eSEric W. Biederman } 1583805b5d5eSEric W. Biederman 158473455092SAl Viro static struct ctl_table_set * 158573455092SAl Viro lookup_header_set(struct ctl_table_root *root, struct nsproxy *namespaces) 158673455092SAl Viro { 158773455092SAl Viro struct ctl_table_set *set = &root->default_set; 158873455092SAl Viro if (root->lookup) 158973455092SAl Viro set = root->lookup(root, namespaces); 159073455092SAl Viro return set; 159173455092SAl Viro } 159273455092SAl Viro 1593e51b6ba0SEric W. Biederman static struct list_head * 1594e51b6ba0SEric W. Biederman lookup_header_list(struct ctl_table_root *root, struct nsproxy *namespaces) 1595805b5d5eSEric W. Biederman { 159673455092SAl Viro struct ctl_table_set *set = lookup_header_set(root, namespaces); 159773455092SAl Viro return &set->list; 1598e51b6ba0SEric W. Biederman } 1599e51b6ba0SEric W. Biederman 1600e51b6ba0SEric W. Biederman struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces, 1601e51b6ba0SEric W. Biederman struct ctl_table_header *prev) 1602e51b6ba0SEric W. Biederman { 1603e51b6ba0SEric W. Biederman struct ctl_table_root *root; 1604e51b6ba0SEric W. Biederman struct list_head *header_list; 1605805b5d5eSEric W. Biederman struct ctl_table_header *head; 1606805b5d5eSEric W. Biederman struct list_head *tmp; 1607e51b6ba0SEric W. Biederman 1608805b5d5eSEric W. Biederman spin_lock(&sysctl_lock); 1609805b5d5eSEric W. Biederman if (prev) { 1610e51b6ba0SEric W. Biederman head = prev; 1611805b5d5eSEric W. Biederman tmp = &prev->ctl_entry; 1612805b5d5eSEric W. Biederman unuse_table(prev); 1613805b5d5eSEric W. Biederman goto next; 1614805b5d5eSEric W. Biederman } 1615805b5d5eSEric W. Biederman tmp = &root_table_header.ctl_entry; 1616805b5d5eSEric W. Biederman for (;;) { 1617805b5d5eSEric W. Biederman head = list_entry(tmp, struct ctl_table_header, ctl_entry); 1618805b5d5eSEric W. Biederman 1619805b5d5eSEric W. Biederman if (!use_table(head)) 1620805b5d5eSEric W. Biederman goto next; 1621805b5d5eSEric W. Biederman spin_unlock(&sysctl_lock); 1622805b5d5eSEric W. Biederman return head; 1623805b5d5eSEric W. Biederman next: 1624e51b6ba0SEric W. Biederman root = head->root; 1625805b5d5eSEric W. Biederman tmp = tmp->next; 1626e51b6ba0SEric W. Biederman header_list = lookup_header_list(root, namespaces); 1627e51b6ba0SEric W. Biederman if (tmp != header_list) 1628e51b6ba0SEric W. Biederman continue; 1629e51b6ba0SEric W. Biederman 1630e51b6ba0SEric W. Biederman do { 1631e51b6ba0SEric W. Biederman root = list_entry(root->root_list.next, 1632e51b6ba0SEric W. Biederman struct ctl_table_root, root_list); 1633e51b6ba0SEric W. Biederman if (root == &sysctl_table_root) 1634e51b6ba0SEric W. Biederman goto out; 1635e51b6ba0SEric W. Biederman header_list = lookup_header_list(root, namespaces); 1636e51b6ba0SEric W. Biederman } while (list_empty(header_list)); 1637e51b6ba0SEric W. Biederman tmp = header_list->next; 1638805b5d5eSEric W. Biederman } 1639e51b6ba0SEric W. Biederman out: 1640805b5d5eSEric W. Biederman spin_unlock(&sysctl_lock); 1641805b5d5eSEric W. Biederman return NULL; 1642805b5d5eSEric W. Biederman } 1643805b5d5eSEric W. Biederman 1644e51b6ba0SEric W. Biederman struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev) 1645e51b6ba0SEric W. Biederman { 1646e51b6ba0SEric W. Biederman return __sysctl_head_next(current->nsproxy, prev); 1647e51b6ba0SEric W. Biederman } 1648e51b6ba0SEric W. Biederman 1649e51b6ba0SEric W. Biederman void register_sysctl_root(struct ctl_table_root *root) 1650e51b6ba0SEric W. Biederman { 1651e51b6ba0SEric W. Biederman spin_lock(&sysctl_lock); 1652e51b6ba0SEric W. Biederman list_add_tail(&root->root_list, &sysctl_table_root.root_list); 1653e51b6ba0SEric W. Biederman spin_unlock(&sysctl_lock); 1654e51b6ba0SEric W. Biederman } 1655e51b6ba0SEric W. Biederman 1656b89a8171SEric W. Biederman #ifdef CONFIG_SYSCTL_SYSCALL 16572c4c7155SPavel Emelyanov /* Perform the actual read/write of a sysctl table entry. */ 1658d7321cd6SPavel Emelyanov static int do_sysctl_strategy(struct ctl_table_root *root, 1659d7321cd6SPavel Emelyanov struct ctl_table *table, 16602c4c7155SPavel Emelyanov void __user *oldval, size_t __user *oldlenp, 16612c4c7155SPavel Emelyanov void __user *newval, size_t newlen) 16622c4c7155SPavel Emelyanov { 16632c4c7155SPavel Emelyanov int op = 0, rc; 16642c4c7155SPavel Emelyanov 16652c4c7155SPavel Emelyanov if (oldval) 1666e6305c43SAl Viro op |= MAY_READ; 16672c4c7155SPavel Emelyanov if (newval) 1668e6305c43SAl Viro op |= MAY_WRITE; 1669d7321cd6SPavel Emelyanov if (sysctl_perm(root, table, op)) 16702c4c7155SPavel Emelyanov return -EPERM; 16712c4c7155SPavel Emelyanov 16722c4c7155SPavel Emelyanov if (table->strategy) { 1673f221e726SAlexey Dobriyan rc = table->strategy(table, oldval, oldlenp, newval, newlen); 16742c4c7155SPavel Emelyanov if (rc < 0) 16752c4c7155SPavel Emelyanov return rc; 16762c4c7155SPavel Emelyanov if (rc > 0) 16772c4c7155SPavel Emelyanov return 0; 16782c4c7155SPavel Emelyanov } 16792c4c7155SPavel Emelyanov 16802c4c7155SPavel Emelyanov /* If there is no strategy routine, or if the strategy returns 16812c4c7155SPavel Emelyanov * zero, proceed with automatic r/w */ 16822c4c7155SPavel Emelyanov if (table->data && table->maxlen) { 1683f221e726SAlexey Dobriyan rc = sysctl_data(table, oldval, oldlenp, newval, newlen); 16842c4c7155SPavel Emelyanov if (rc < 0) 16852c4c7155SPavel Emelyanov return rc; 16862c4c7155SPavel Emelyanov } 16872c4c7155SPavel Emelyanov return 0; 16882c4c7155SPavel Emelyanov } 16892c4c7155SPavel Emelyanov 16902c4c7155SPavel Emelyanov static int parse_table(int __user *name, int nlen, 16912c4c7155SPavel Emelyanov void __user *oldval, size_t __user *oldlenp, 16922c4c7155SPavel Emelyanov void __user *newval, size_t newlen, 1693d7321cd6SPavel Emelyanov struct ctl_table_root *root, 16942c4c7155SPavel Emelyanov struct ctl_table *table) 16952c4c7155SPavel Emelyanov { 16962c4c7155SPavel Emelyanov int n; 16972c4c7155SPavel Emelyanov repeat: 16982c4c7155SPavel Emelyanov if (!nlen) 16992c4c7155SPavel Emelyanov return -ENOTDIR; 17002c4c7155SPavel Emelyanov if (get_user(n, name)) 17012c4c7155SPavel Emelyanov return -EFAULT; 17022c4c7155SPavel Emelyanov for ( ; table->ctl_name || table->procname; table++) { 17032c4c7155SPavel Emelyanov if (!table->ctl_name) 17042c4c7155SPavel Emelyanov continue; 17052c4c7155SPavel Emelyanov if (n == table->ctl_name) { 17062c4c7155SPavel Emelyanov int error; 17072c4c7155SPavel Emelyanov if (table->child) { 1708e6305c43SAl Viro if (sysctl_perm(root, table, MAY_EXEC)) 17092c4c7155SPavel Emelyanov return -EPERM; 17102c4c7155SPavel Emelyanov name++; 17112c4c7155SPavel Emelyanov nlen--; 17122c4c7155SPavel Emelyanov table = table->child; 17132c4c7155SPavel Emelyanov goto repeat; 17142c4c7155SPavel Emelyanov } 1715f221e726SAlexey Dobriyan error = do_sysctl_strategy(root, table, 17162c4c7155SPavel Emelyanov oldval, oldlenp, 17172c4c7155SPavel Emelyanov newval, newlen); 17182c4c7155SPavel Emelyanov return error; 17192c4c7155SPavel Emelyanov } 17202c4c7155SPavel Emelyanov } 17212c4c7155SPavel Emelyanov return -ENOTDIR; 17222c4c7155SPavel Emelyanov } 17232c4c7155SPavel Emelyanov 17241da177e4SLinus Torvalds int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp, 17251da177e4SLinus Torvalds void __user *newval, size_t newlen) 17261da177e4SLinus Torvalds { 1727805b5d5eSEric W. Biederman struct ctl_table_header *head; 1728330d57fbSAl Viro int error = -ENOTDIR; 17291da177e4SLinus Torvalds 17301da177e4SLinus Torvalds if (nlen <= 0 || nlen >= CTL_MAXNAME) 17311da177e4SLinus Torvalds return -ENOTDIR; 17321da177e4SLinus Torvalds if (oldval) { 17331da177e4SLinus Torvalds int old_len; 17341da177e4SLinus Torvalds if (!oldlenp || get_user(old_len, oldlenp)) 17351da177e4SLinus Torvalds return -EFAULT; 17361da177e4SLinus Torvalds } 1737330d57fbSAl Viro 1738805b5d5eSEric W. Biederman for (head = sysctl_head_next(NULL); head; 1739805b5d5eSEric W. Biederman head = sysctl_head_next(head)) { 1740330d57fbSAl Viro error = parse_table(name, nlen, oldval, oldlenp, 1741d7321cd6SPavel Emelyanov newval, newlen, 1742d7321cd6SPavel Emelyanov head->root, head->ctl_table); 1743805b5d5eSEric W. Biederman if (error != -ENOTDIR) { 1744805b5d5eSEric W. Biederman sysctl_head_finish(head); 1745330d57fbSAl Viro break; 1746805b5d5eSEric W. Biederman } 1747805b5d5eSEric W. Biederman } 17481da177e4SLinus Torvalds return error; 17491da177e4SLinus Torvalds } 17501da177e4SLinus Torvalds 17511e7bfb21SHeiko Carstens SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args) 17521da177e4SLinus Torvalds { 17531da177e4SLinus Torvalds struct __sysctl_args tmp; 17541da177e4SLinus Torvalds int error; 17551da177e4SLinus Torvalds 17561da177e4SLinus Torvalds if (copy_from_user(&tmp, args, sizeof(tmp))) 17571da177e4SLinus Torvalds return -EFAULT; 17581da177e4SLinus Torvalds 17597058cb02SEric W. Biederman error = deprecated_sysctl_warning(&tmp); 17607058cb02SEric W. Biederman if (error) 17617058cb02SEric W. Biederman goto out; 17627058cb02SEric W. Biederman 17631da177e4SLinus Torvalds lock_kernel(); 17641da177e4SLinus Torvalds error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp, 17651da177e4SLinus Torvalds tmp.newval, tmp.newlen); 17661da177e4SLinus Torvalds unlock_kernel(); 17677058cb02SEric W. Biederman out: 17681da177e4SLinus Torvalds return error; 17691da177e4SLinus Torvalds } 1770b89a8171SEric W. Biederman #endif /* CONFIG_SYSCTL_SYSCALL */ 17711da177e4SLinus Torvalds 17721da177e4SLinus Torvalds /* 17731ff007ebSEric W. Biederman * sysctl_perm does NOT grant the superuser all rights automatically, because 17741da177e4SLinus Torvalds * some sysctl variables are readonly even to root. 17751da177e4SLinus Torvalds */ 17761da177e4SLinus Torvalds 17771da177e4SLinus Torvalds static int test_perm(int mode, int op) 17781da177e4SLinus Torvalds { 177976aac0e9SDavid Howells if (!current_euid()) 17801da177e4SLinus Torvalds mode >>= 6; 17811da177e4SLinus Torvalds else if (in_egroup_p(0)) 17821da177e4SLinus Torvalds mode >>= 3; 1783e6305c43SAl Viro if ((op & ~mode & (MAY_READ|MAY_WRITE|MAY_EXEC)) == 0) 17841da177e4SLinus Torvalds return 0; 17851da177e4SLinus Torvalds return -EACCES; 17861da177e4SLinus Torvalds } 17871da177e4SLinus Torvalds 1788d7321cd6SPavel Emelyanov int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op) 17891da177e4SLinus Torvalds { 17901da177e4SLinus Torvalds int error; 1791d7321cd6SPavel Emelyanov int mode; 1792d7321cd6SPavel Emelyanov 1793e6305c43SAl Viro error = security_sysctl(table, op & (MAY_READ | MAY_WRITE | MAY_EXEC)); 17941da177e4SLinus Torvalds if (error) 17951da177e4SLinus Torvalds return error; 1796d7321cd6SPavel Emelyanov 1797d7321cd6SPavel Emelyanov if (root->permissions) 1798d7321cd6SPavel Emelyanov mode = root->permissions(root, current->nsproxy, table); 1799d7321cd6SPavel Emelyanov else 1800d7321cd6SPavel Emelyanov mode = table->mode; 1801d7321cd6SPavel Emelyanov 1802d7321cd6SPavel Emelyanov return test_perm(mode, op); 18031da177e4SLinus Torvalds } 18041da177e4SLinus Torvalds 1805d912b0ccSEric W. Biederman static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table) 1806d912b0ccSEric W. Biederman { 1807d912b0ccSEric W. Biederman for (; table->ctl_name || table->procname; table++) { 1808d912b0ccSEric W. Biederman table->parent = parent; 1809d912b0ccSEric W. Biederman if (table->child) 1810d912b0ccSEric W. Biederman sysctl_set_parent(table, table->child); 1811d912b0ccSEric W. Biederman } 1812d912b0ccSEric W. Biederman } 1813d912b0ccSEric W. Biederman 1814d912b0ccSEric W. Biederman static __init int sysctl_init(void) 1815d912b0ccSEric W. Biederman { 1816d912b0ccSEric W. Biederman sysctl_set_parent(NULL, root_table); 181788f458e4SHolger Schurig #ifdef CONFIG_SYSCTL_SYSCALL_CHECK 181888f458e4SHolger Schurig { 181988f458e4SHolger Schurig int err; 1820e51b6ba0SEric W. Biederman err = sysctl_check_table(current->nsproxy, root_table); 182188f458e4SHolger Schurig } 182288f458e4SHolger Schurig #endif 1823d912b0ccSEric W. Biederman return 0; 1824d912b0ccSEric W. Biederman } 1825d912b0ccSEric W. Biederman 1826d912b0ccSEric W. Biederman core_initcall(sysctl_init); 1827d912b0ccSEric W. Biederman 1828bfbcf034SAl Viro static struct ctl_table *is_branch_in(struct ctl_table *branch, 1829bfbcf034SAl Viro struct ctl_table *table) 1830ae7edeccSAl Viro { 1831ae7edeccSAl Viro struct ctl_table *p; 1832ae7edeccSAl Viro const char *s = branch->procname; 1833ae7edeccSAl Viro 1834ae7edeccSAl Viro /* branch should have named subdirectory as its first element */ 1835ae7edeccSAl Viro if (!s || !branch->child) 1836bfbcf034SAl Viro return NULL; 1837ae7edeccSAl Viro 1838ae7edeccSAl Viro /* ... and nothing else */ 1839ae7edeccSAl Viro if (branch[1].procname || branch[1].ctl_name) 1840bfbcf034SAl Viro return NULL; 1841ae7edeccSAl Viro 1842ae7edeccSAl Viro /* table should contain subdirectory with the same name */ 1843ae7edeccSAl Viro for (p = table; p->procname || p->ctl_name; p++) { 1844ae7edeccSAl Viro if (!p->child) 1845ae7edeccSAl Viro continue; 1846ae7edeccSAl Viro if (p->procname && strcmp(p->procname, s) == 0) 1847bfbcf034SAl Viro return p; 1848ae7edeccSAl Viro } 1849bfbcf034SAl Viro return NULL; 1850ae7edeccSAl Viro } 1851ae7edeccSAl Viro 1852ae7edeccSAl Viro /* see if attaching q to p would be an improvement */ 1853ae7edeccSAl Viro static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q) 1854ae7edeccSAl Viro { 1855ae7edeccSAl Viro struct ctl_table *to = p->ctl_table, *by = q->ctl_table; 1856bfbcf034SAl Viro struct ctl_table *next; 1857ae7edeccSAl Viro int is_better = 0; 1858ae7edeccSAl Viro int not_in_parent = !p->attached_by; 1859ae7edeccSAl Viro 1860bfbcf034SAl Viro while ((next = is_branch_in(by, to)) != NULL) { 1861ae7edeccSAl Viro if (by == q->attached_by) 1862ae7edeccSAl Viro is_better = 1; 1863ae7edeccSAl Viro if (to == p->attached_by) 1864ae7edeccSAl Viro not_in_parent = 1; 1865ae7edeccSAl Viro by = by->child; 1866bfbcf034SAl Viro to = next->child; 1867ae7edeccSAl Viro } 1868ae7edeccSAl Viro 1869ae7edeccSAl Viro if (is_better && not_in_parent) { 1870ae7edeccSAl Viro q->attached_by = by; 1871ae7edeccSAl Viro q->attached_to = to; 1872ae7edeccSAl Viro q->parent = p; 1873ae7edeccSAl Viro } 1874ae7edeccSAl Viro } 1875ae7edeccSAl Viro 18761da177e4SLinus Torvalds /** 1877e51b6ba0SEric W. Biederman * __register_sysctl_paths - register a sysctl hierarchy 1878e51b6ba0SEric W. Biederman * @root: List of sysctl headers to register on 1879e51b6ba0SEric W. Biederman * @namespaces: Data to compute which lists of sysctl entries are visible 188029e796fdSEric W. Biederman * @path: The path to the directory the sysctl table is in. 18811da177e4SLinus Torvalds * @table: the top-level table structure 18821da177e4SLinus Torvalds * 18831da177e4SLinus Torvalds * Register a sysctl table hierarchy. @table should be a filled in ctl_table 188429e796fdSEric W. Biederman * array. A completely 0 filled entry terminates the table. 18851da177e4SLinus Torvalds * 1886d8217f07SEric W. Biederman * The members of the &struct ctl_table structure are used as follows: 18871da177e4SLinus Torvalds * 18881da177e4SLinus Torvalds * ctl_name - This is the numeric sysctl value used by sysctl(2). The number 18891da177e4SLinus Torvalds * must be unique within that level of sysctl 18901da177e4SLinus Torvalds * 18911da177e4SLinus Torvalds * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not 18921da177e4SLinus Torvalds * enter a sysctl file 18931da177e4SLinus Torvalds * 18941da177e4SLinus Torvalds * data - a pointer to data for use by proc_handler 18951da177e4SLinus Torvalds * 18961da177e4SLinus Torvalds * maxlen - the maximum size in bytes of the data 18971da177e4SLinus Torvalds * 18981da177e4SLinus Torvalds * mode - the file permissions for the /proc/sys file, and for sysctl(2) 18991da177e4SLinus Torvalds * 19001da177e4SLinus Torvalds * child - a pointer to the child sysctl table if this entry is a directory, or 19011da177e4SLinus Torvalds * %NULL. 19021da177e4SLinus Torvalds * 19031da177e4SLinus Torvalds * proc_handler - the text handler routine (described below) 19041da177e4SLinus Torvalds * 19051da177e4SLinus Torvalds * strategy - the strategy routine (described below) 19061da177e4SLinus Torvalds * 19071da177e4SLinus Torvalds * de - for internal use by the sysctl routines 19081da177e4SLinus Torvalds * 19091da177e4SLinus Torvalds * extra1, extra2 - extra pointers usable by the proc handler routines 19101da177e4SLinus Torvalds * 19111da177e4SLinus Torvalds * Leaf nodes in the sysctl tree will be represented by a single file 19121da177e4SLinus Torvalds * under /proc; non-leaf nodes will be represented by directories. 19131da177e4SLinus Torvalds * 19141da177e4SLinus Torvalds * sysctl(2) can automatically manage read and write requests through 19151da177e4SLinus Torvalds * the sysctl table. The data and maxlen fields of the ctl_table 19161da177e4SLinus Torvalds * struct enable minimal validation of the values being written to be 19171da177e4SLinus Torvalds * performed, and the mode field allows minimal authentication. 19181da177e4SLinus Torvalds * 19191da177e4SLinus Torvalds * More sophisticated management can be enabled by the provision of a 19201da177e4SLinus Torvalds * strategy routine with the table entry. This will be called before 19211da177e4SLinus Torvalds * any automatic read or write of the data is performed. 19221da177e4SLinus Torvalds * 19231da177e4SLinus Torvalds * The strategy routine may return 19241da177e4SLinus Torvalds * 19251da177e4SLinus Torvalds * < 0 - Error occurred (error is passed to user process) 19261da177e4SLinus Torvalds * 19271da177e4SLinus Torvalds * 0 - OK - proceed with automatic read or write. 19281da177e4SLinus Torvalds * 19291da177e4SLinus Torvalds * > 0 - OK - read or write has been done by the strategy routine, so 19301da177e4SLinus Torvalds * return immediately. 19311da177e4SLinus Torvalds * 19321da177e4SLinus Torvalds * There must be a proc_handler routine for any terminal nodes 19331da177e4SLinus Torvalds * mirrored under /proc/sys (non-terminals are handled by a built-in 19341da177e4SLinus Torvalds * directory handler). Several default handlers are available to 19351da177e4SLinus Torvalds * cover common cases - 19361da177e4SLinus Torvalds * 19371da177e4SLinus Torvalds * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(), 19381da177e4SLinus Torvalds * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(), 19391da177e4SLinus Torvalds * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax() 19401da177e4SLinus Torvalds * 19411da177e4SLinus Torvalds * It is the handler's job to read the input buffer from user memory 19421da177e4SLinus Torvalds * and process it. The handler should return 0 on success. 19431da177e4SLinus Torvalds * 19441da177e4SLinus Torvalds * This routine returns %NULL on a failure to register, and a pointer 19451da177e4SLinus Torvalds * to the table header on success. 19461da177e4SLinus Torvalds */ 1947e51b6ba0SEric W. Biederman struct ctl_table_header *__register_sysctl_paths( 1948e51b6ba0SEric W. Biederman struct ctl_table_root *root, 1949e51b6ba0SEric W. Biederman struct nsproxy *namespaces, 1950e51b6ba0SEric W. Biederman const struct ctl_path *path, struct ctl_table *table) 19511da177e4SLinus Torvalds { 195229e796fdSEric W. Biederman struct ctl_table_header *header; 195329e796fdSEric W. Biederman struct ctl_table *new, **prevp; 195429e796fdSEric W. Biederman unsigned int n, npath; 1955ae7edeccSAl Viro struct ctl_table_set *set; 195629e796fdSEric W. Biederman 195729e796fdSEric W. Biederman /* Count the path components */ 195829e796fdSEric W. Biederman for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath) 195929e796fdSEric W. Biederman ; 196029e796fdSEric W. Biederman 196129e796fdSEric W. Biederman /* 196229e796fdSEric W. Biederman * For each path component, allocate a 2-element ctl_table array. 196329e796fdSEric W. Biederman * The first array element will be filled with the sysctl entry 196429e796fdSEric W. Biederman * for this, the second will be the sentinel (ctl_name == 0). 196529e796fdSEric W. Biederman * 196629e796fdSEric W. Biederman * We allocate everything in one go so that we don't have to 196729e796fdSEric W. Biederman * worry about freeing additional memory in unregister_sysctl_table. 196829e796fdSEric W. Biederman */ 196929e796fdSEric W. Biederman header = kzalloc(sizeof(struct ctl_table_header) + 197029e796fdSEric W. Biederman (2 * npath * sizeof(struct ctl_table)), GFP_KERNEL); 197129e796fdSEric W. Biederman if (!header) 19721da177e4SLinus Torvalds return NULL; 197329e796fdSEric W. Biederman 197429e796fdSEric W. Biederman new = (struct ctl_table *) (header + 1); 197529e796fdSEric W. Biederman 197629e796fdSEric W. Biederman /* Now connect the dots */ 197729e796fdSEric W. Biederman prevp = &header->ctl_table; 197829e796fdSEric W. Biederman for (n = 0; n < npath; ++n, ++path) { 197929e796fdSEric W. Biederman /* Copy the procname */ 198029e796fdSEric W. Biederman new->procname = path->procname; 198129e796fdSEric W. Biederman new->ctl_name = path->ctl_name; 198229e796fdSEric W. Biederman new->mode = 0555; 198329e796fdSEric W. Biederman 198429e796fdSEric W. Biederman *prevp = new; 198529e796fdSEric W. Biederman prevp = &new->child; 198629e796fdSEric W. Biederman 198729e796fdSEric W. Biederman new += 2; 198829e796fdSEric W. Biederman } 198929e796fdSEric W. Biederman *prevp = table; 199023eb06deSEric W. Biederman header->ctl_table_arg = table; 199129e796fdSEric W. Biederman 199229e796fdSEric W. Biederman INIT_LIST_HEAD(&header->ctl_entry); 199329e796fdSEric W. Biederman header->used = 0; 199429e796fdSEric W. Biederman header->unregistering = NULL; 1995e51b6ba0SEric W. Biederman header->root = root; 199629e796fdSEric W. Biederman sysctl_set_parent(NULL, header->ctl_table); 1997f7e6ced4SAl Viro header->count = 1; 199888f458e4SHolger Schurig #ifdef CONFIG_SYSCTL_SYSCALL_CHECK 1999e51b6ba0SEric W. Biederman if (sysctl_check_table(namespaces, header->ctl_table)) { 200029e796fdSEric W. Biederman kfree(header); 2001fc6cd25bSEric W. Biederman return NULL; 2002fc6cd25bSEric W. Biederman } 200388f458e4SHolger Schurig #endif 2004330d57fbSAl Viro spin_lock(&sysctl_lock); 200573455092SAl Viro header->set = lookup_header_set(root, namespaces); 2006ae7edeccSAl Viro header->attached_by = header->ctl_table; 2007ae7edeccSAl Viro header->attached_to = root_table; 2008ae7edeccSAl Viro header->parent = &root_table_header; 2009ae7edeccSAl Viro for (set = header->set; set; set = set->parent) { 2010ae7edeccSAl Viro struct ctl_table_header *p; 2011ae7edeccSAl Viro list_for_each_entry(p, &set->list, ctl_entry) { 2012ae7edeccSAl Viro if (p->unregistering) 2013ae7edeccSAl Viro continue; 2014ae7edeccSAl Viro try_attach(p, header); 2015ae7edeccSAl Viro } 2016ae7edeccSAl Viro } 2017ae7edeccSAl Viro header->parent->count++; 201873455092SAl Viro list_add_tail(&header->ctl_entry, &header->set->list); 2019330d57fbSAl Viro spin_unlock(&sysctl_lock); 202029e796fdSEric W. Biederman 202129e796fdSEric W. Biederman return header; 202229e796fdSEric W. Biederman } 202329e796fdSEric W. Biederman 202429e796fdSEric W. Biederman /** 2025e51b6ba0SEric W. Biederman * register_sysctl_table_path - register a sysctl table hierarchy 2026e51b6ba0SEric W. Biederman * @path: The path to the directory the sysctl table is in. 2027e51b6ba0SEric W. Biederman * @table: the top-level table structure 2028e51b6ba0SEric W. Biederman * 2029e51b6ba0SEric W. Biederman * Register a sysctl table hierarchy. @table should be a filled in ctl_table 2030e51b6ba0SEric W. Biederman * array. A completely 0 filled entry terminates the table. 2031e51b6ba0SEric W. Biederman * 2032e51b6ba0SEric W. Biederman * See __register_sysctl_paths for more details. 2033e51b6ba0SEric W. Biederman */ 2034e51b6ba0SEric W. Biederman struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path, 2035e51b6ba0SEric W. Biederman struct ctl_table *table) 2036e51b6ba0SEric W. Biederman { 2037e51b6ba0SEric W. Biederman return __register_sysctl_paths(&sysctl_table_root, current->nsproxy, 2038e51b6ba0SEric W. Biederman path, table); 2039e51b6ba0SEric W. Biederman } 2040e51b6ba0SEric W. Biederman 2041e51b6ba0SEric W. Biederman /** 204229e796fdSEric W. Biederman * register_sysctl_table - register a sysctl table hierarchy 204329e796fdSEric W. Biederman * @table: the top-level table structure 204429e796fdSEric W. Biederman * 204529e796fdSEric W. Biederman * Register a sysctl table hierarchy. @table should be a filled in ctl_table 204629e796fdSEric W. Biederman * array. A completely 0 filled entry terminates the table. 204729e796fdSEric W. Biederman * 204829e796fdSEric W. Biederman * See register_sysctl_paths for more details. 204929e796fdSEric W. Biederman */ 205029e796fdSEric W. Biederman struct ctl_table_header *register_sysctl_table(struct ctl_table *table) 205129e796fdSEric W. Biederman { 205229e796fdSEric W. Biederman static const struct ctl_path null_path[] = { {} }; 205329e796fdSEric W. Biederman 205429e796fdSEric W. Biederman return register_sysctl_paths(null_path, table); 20551da177e4SLinus Torvalds } 20561da177e4SLinus Torvalds 20571da177e4SLinus Torvalds /** 20581da177e4SLinus Torvalds * unregister_sysctl_table - unregister a sysctl table hierarchy 20591da177e4SLinus Torvalds * @header: the header returned from register_sysctl_table 20601da177e4SLinus Torvalds * 20611da177e4SLinus Torvalds * Unregisters the sysctl table and all children. proc entries may not 20621da177e4SLinus Torvalds * actually be removed until they are no longer used by anyone. 20631da177e4SLinus Torvalds */ 20641da177e4SLinus Torvalds void unregister_sysctl_table(struct ctl_table_header * header) 20651da177e4SLinus Torvalds { 2066330d57fbSAl Viro might_sleep(); 2067f1dad166SPavel Emelyanov 2068f1dad166SPavel Emelyanov if (header == NULL) 2069f1dad166SPavel Emelyanov return; 2070f1dad166SPavel Emelyanov 2071330d57fbSAl Viro spin_lock(&sysctl_lock); 2072330d57fbSAl Viro start_unregistering(header); 2073ae7edeccSAl Viro if (!--header->parent->count) { 2074ae7edeccSAl Viro WARN_ON(1); 2075ae7edeccSAl Viro kfree(header->parent); 2076ae7edeccSAl Viro } 2077f7e6ced4SAl Viro if (!--header->count) 20781da177e4SLinus Torvalds kfree(header); 2079f7e6ced4SAl Viro spin_unlock(&sysctl_lock); 20801da177e4SLinus Torvalds } 20811da177e4SLinus Torvalds 20829043476fSAl Viro int sysctl_is_seen(struct ctl_table_header *p) 20839043476fSAl Viro { 20849043476fSAl Viro struct ctl_table_set *set = p->set; 20859043476fSAl Viro int res; 20869043476fSAl Viro spin_lock(&sysctl_lock); 20879043476fSAl Viro if (p->unregistering) 20889043476fSAl Viro res = 0; 20899043476fSAl Viro else if (!set->is_seen) 20909043476fSAl Viro res = 1; 20919043476fSAl Viro else 20929043476fSAl Viro res = set->is_seen(set); 20939043476fSAl Viro spin_unlock(&sysctl_lock); 20949043476fSAl Viro return res; 20959043476fSAl Viro } 20969043476fSAl Viro 209773455092SAl Viro void setup_sysctl_set(struct ctl_table_set *p, 209873455092SAl Viro struct ctl_table_set *parent, 209973455092SAl Viro int (*is_seen)(struct ctl_table_set *)) 210073455092SAl Viro { 210173455092SAl Viro INIT_LIST_HEAD(&p->list); 210273455092SAl Viro p->parent = parent ? parent : &sysctl_table_root.default_set; 210373455092SAl Viro p->is_seen = is_seen; 210473455092SAl Viro } 210573455092SAl Viro 2106b89a8171SEric W. Biederman #else /* !CONFIG_SYSCTL */ 2107d8217f07SEric W. Biederman struct ctl_table_header *register_sysctl_table(struct ctl_table * table) 2108b89a8171SEric W. Biederman { 2109b89a8171SEric W. Biederman return NULL; 2110b89a8171SEric W. Biederman } 2111b89a8171SEric W. Biederman 211229e796fdSEric W. Biederman struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path, 211329e796fdSEric W. Biederman struct ctl_table *table) 211429e796fdSEric W. Biederman { 211529e796fdSEric W. Biederman return NULL; 211629e796fdSEric W. Biederman } 211729e796fdSEric W. Biederman 2118b89a8171SEric W. Biederman void unregister_sysctl_table(struct ctl_table_header * table) 2119b89a8171SEric W. Biederman { 2120b89a8171SEric W. Biederman } 2121b89a8171SEric W. Biederman 212273455092SAl Viro void setup_sysctl_set(struct ctl_table_set *p, 212373455092SAl Viro struct ctl_table_set *parent, 212473455092SAl Viro int (*is_seen)(struct ctl_table_set *)) 212573455092SAl Viro { 212673455092SAl Viro } 212773455092SAl Viro 2128f7e6ced4SAl Viro void sysctl_head_put(struct ctl_table_header *head) 2129f7e6ced4SAl Viro { 2130f7e6ced4SAl Viro } 2131f7e6ced4SAl Viro 2132b89a8171SEric W. Biederman #endif /* CONFIG_SYSCTL */ 2133b89a8171SEric W. Biederman 21341da177e4SLinus Torvalds /* 21351da177e4SLinus Torvalds * /proc/sys support 21361da177e4SLinus Torvalds */ 21371da177e4SLinus Torvalds 2138b89a8171SEric W. Biederman #ifdef CONFIG_PROC_SYSCTL 21391da177e4SLinus Torvalds 2140b1ba4dddSAdrian Bunk static int _proc_do_string(void* data, int maxlen, int write, 2141b1ba4dddSAdrian Bunk struct file *filp, void __user *buffer, 2142b1ba4dddSAdrian Bunk size_t *lenp, loff_t *ppos) 2143f5dd3d6fSSam Vilain { 2144f5dd3d6fSSam Vilain size_t len; 2145f5dd3d6fSSam Vilain char __user *p; 2146f5dd3d6fSSam Vilain char c; 2147f5dd3d6fSSam Vilain 21488d060877SOleg Nesterov if (!data || !maxlen || !*lenp) { 2149f5dd3d6fSSam Vilain *lenp = 0; 2150f5dd3d6fSSam Vilain return 0; 2151f5dd3d6fSSam Vilain } 2152f5dd3d6fSSam Vilain 2153f5dd3d6fSSam Vilain if (write) { 2154f5dd3d6fSSam Vilain len = 0; 2155f5dd3d6fSSam Vilain p = buffer; 2156f5dd3d6fSSam Vilain while (len < *lenp) { 2157f5dd3d6fSSam Vilain if (get_user(c, p++)) 2158f5dd3d6fSSam Vilain return -EFAULT; 2159f5dd3d6fSSam Vilain if (c == 0 || c == '\n') 2160f5dd3d6fSSam Vilain break; 2161f5dd3d6fSSam Vilain len++; 2162f5dd3d6fSSam Vilain } 2163f5dd3d6fSSam Vilain if (len >= maxlen) 2164f5dd3d6fSSam Vilain len = maxlen-1; 2165f5dd3d6fSSam Vilain if(copy_from_user(data, buffer, len)) 2166f5dd3d6fSSam Vilain return -EFAULT; 2167f5dd3d6fSSam Vilain ((char *) data)[len] = 0; 2168f5dd3d6fSSam Vilain *ppos += *lenp; 2169f5dd3d6fSSam Vilain } else { 2170f5dd3d6fSSam Vilain len = strlen(data); 2171f5dd3d6fSSam Vilain if (len > maxlen) 2172f5dd3d6fSSam Vilain len = maxlen; 21738d060877SOleg Nesterov 21748d060877SOleg Nesterov if (*ppos > len) { 21758d060877SOleg Nesterov *lenp = 0; 21768d060877SOleg Nesterov return 0; 21778d060877SOleg Nesterov } 21788d060877SOleg Nesterov 21798d060877SOleg Nesterov data += *ppos; 21808d060877SOleg Nesterov len -= *ppos; 21818d060877SOleg Nesterov 2182f5dd3d6fSSam Vilain if (len > *lenp) 2183f5dd3d6fSSam Vilain len = *lenp; 2184f5dd3d6fSSam Vilain if (len) 2185f5dd3d6fSSam Vilain if(copy_to_user(buffer, data, len)) 2186f5dd3d6fSSam Vilain return -EFAULT; 2187f5dd3d6fSSam Vilain if (len < *lenp) { 2188f5dd3d6fSSam Vilain if(put_user('\n', ((char __user *) buffer) + len)) 2189f5dd3d6fSSam Vilain return -EFAULT; 2190f5dd3d6fSSam Vilain len++; 2191f5dd3d6fSSam Vilain } 2192f5dd3d6fSSam Vilain *lenp = len; 2193f5dd3d6fSSam Vilain *ppos += len; 2194f5dd3d6fSSam Vilain } 2195f5dd3d6fSSam Vilain return 0; 2196f5dd3d6fSSam Vilain } 2197f5dd3d6fSSam Vilain 21981da177e4SLinus Torvalds /** 21991da177e4SLinus Torvalds * proc_dostring - read a string sysctl 22001da177e4SLinus Torvalds * @table: the sysctl table 22011da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 22021da177e4SLinus Torvalds * @filp: the file structure 22031da177e4SLinus Torvalds * @buffer: the user buffer 22041da177e4SLinus Torvalds * @lenp: the size of the user buffer 22051da177e4SLinus Torvalds * @ppos: file position 22061da177e4SLinus Torvalds * 22071da177e4SLinus Torvalds * Reads/writes a string from/to the user buffer. If the kernel 22081da177e4SLinus Torvalds * buffer provided is not large enough to hold the string, the 22091da177e4SLinus Torvalds * string is truncated. The copied string is %NULL-terminated. 22101da177e4SLinus Torvalds * If the string is being read by the user process, it is copied 22111da177e4SLinus Torvalds * and a newline '\n' is added. It is truncated if the buffer is 22121da177e4SLinus Torvalds * not large enough. 22131da177e4SLinus Torvalds * 22141da177e4SLinus Torvalds * Returns 0 on success. 22151da177e4SLinus Torvalds */ 2216d8217f07SEric W. Biederman int proc_dostring(struct ctl_table *table, int write, struct file *filp, 22171da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 22181da177e4SLinus Torvalds { 2219f5dd3d6fSSam Vilain return _proc_do_string(table->data, table->maxlen, write, filp, 2220f5dd3d6fSSam Vilain buffer, lenp, ppos); 22211da177e4SLinus Torvalds } 22221da177e4SLinus Torvalds 22231da177e4SLinus Torvalds 22241da177e4SLinus Torvalds static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp, 22251da177e4SLinus Torvalds int *valp, 22261da177e4SLinus Torvalds int write, void *data) 22271da177e4SLinus Torvalds { 22281da177e4SLinus Torvalds if (write) { 22291da177e4SLinus Torvalds *valp = *negp ? -*lvalp : *lvalp; 22301da177e4SLinus Torvalds } else { 22311da177e4SLinus Torvalds int val = *valp; 22321da177e4SLinus Torvalds if (val < 0) { 22331da177e4SLinus Torvalds *negp = -1; 22341da177e4SLinus Torvalds *lvalp = (unsigned long)-val; 22351da177e4SLinus Torvalds } else { 22361da177e4SLinus Torvalds *negp = 0; 22371da177e4SLinus Torvalds *lvalp = (unsigned long)val; 22381da177e4SLinus Torvalds } 22391da177e4SLinus Torvalds } 22401da177e4SLinus Torvalds return 0; 22411da177e4SLinus Torvalds } 22421da177e4SLinus Torvalds 2243d8217f07SEric W. Biederman static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table, 2244fcfbd547SKirill Korotaev int write, struct file *filp, void __user *buffer, 2245fcfbd547SKirill Korotaev size_t *lenp, loff_t *ppos, 22461da177e4SLinus Torvalds int (*conv)(int *negp, unsigned long *lvalp, int *valp, 22471da177e4SLinus Torvalds int write, void *data), 22481da177e4SLinus Torvalds void *data) 22491da177e4SLinus Torvalds { 22501da177e4SLinus Torvalds #define TMPBUFLEN 21 22511da177e4SLinus Torvalds int *i, vleft, first=1, neg, val; 22521da177e4SLinus Torvalds unsigned long lval; 22531da177e4SLinus Torvalds size_t left, len; 22541da177e4SLinus Torvalds 22551da177e4SLinus Torvalds char buf[TMPBUFLEN], *p; 22561da177e4SLinus Torvalds char __user *s = buffer; 22571da177e4SLinus Torvalds 2258fcfbd547SKirill Korotaev if (!tbl_data || !table->maxlen || !*lenp || 22591da177e4SLinus Torvalds (*ppos && !write)) { 22601da177e4SLinus Torvalds *lenp = 0; 22611da177e4SLinus Torvalds return 0; 22621da177e4SLinus Torvalds } 22631da177e4SLinus Torvalds 2264fcfbd547SKirill Korotaev i = (int *) tbl_data; 22651da177e4SLinus Torvalds vleft = table->maxlen / sizeof(*i); 22661da177e4SLinus Torvalds left = *lenp; 22671da177e4SLinus Torvalds 22681da177e4SLinus Torvalds if (!conv) 22691da177e4SLinus Torvalds conv = do_proc_dointvec_conv; 22701da177e4SLinus Torvalds 22711da177e4SLinus Torvalds for (; left && vleft--; i++, first=0) { 22721da177e4SLinus Torvalds if (write) { 22731da177e4SLinus Torvalds while (left) { 22741da177e4SLinus Torvalds char c; 22751da177e4SLinus Torvalds if (get_user(c, s)) 22761da177e4SLinus Torvalds return -EFAULT; 22771da177e4SLinus Torvalds if (!isspace(c)) 22781da177e4SLinus Torvalds break; 22791da177e4SLinus Torvalds left--; 22801da177e4SLinus Torvalds s++; 22811da177e4SLinus Torvalds } 22821da177e4SLinus Torvalds if (!left) 22831da177e4SLinus Torvalds break; 22841da177e4SLinus Torvalds neg = 0; 22851da177e4SLinus Torvalds len = left; 22861da177e4SLinus Torvalds if (len > sizeof(buf) - 1) 22871da177e4SLinus Torvalds len = sizeof(buf) - 1; 22881da177e4SLinus Torvalds if (copy_from_user(buf, s, len)) 22891da177e4SLinus Torvalds return -EFAULT; 22901da177e4SLinus Torvalds buf[len] = 0; 22911da177e4SLinus Torvalds p = buf; 22921da177e4SLinus Torvalds if (*p == '-' && left > 1) { 22931da177e4SLinus Torvalds neg = 1; 2294bd9b0bacSBP, Praveen p++; 22951da177e4SLinus Torvalds } 22961da177e4SLinus Torvalds if (*p < '0' || *p > '9') 22971da177e4SLinus Torvalds break; 22981da177e4SLinus Torvalds 22991da177e4SLinus Torvalds lval = simple_strtoul(p, &p, 0); 23001da177e4SLinus Torvalds 23011da177e4SLinus Torvalds len = p-buf; 23021da177e4SLinus Torvalds if ((len < left) && *p && !isspace(*p)) 23031da177e4SLinus Torvalds break; 23041da177e4SLinus Torvalds if (neg) 23051da177e4SLinus Torvalds val = -val; 23061da177e4SLinus Torvalds s += len; 23071da177e4SLinus Torvalds left -= len; 23081da177e4SLinus Torvalds 23091da177e4SLinus Torvalds if (conv(&neg, &lval, i, 1, data)) 23101da177e4SLinus Torvalds break; 23111da177e4SLinus Torvalds } else { 23121da177e4SLinus Torvalds p = buf; 23131da177e4SLinus Torvalds if (!first) 23141da177e4SLinus Torvalds *p++ = '\t'; 23151da177e4SLinus Torvalds 23161da177e4SLinus Torvalds if (conv(&neg, &lval, i, 0, data)) 23171da177e4SLinus Torvalds break; 23181da177e4SLinus Torvalds 23191da177e4SLinus Torvalds sprintf(p, "%s%lu", neg ? "-" : "", lval); 23201da177e4SLinus Torvalds len = strlen(buf); 23211da177e4SLinus Torvalds if (len > left) 23221da177e4SLinus Torvalds len = left; 23231da177e4SLinus Torvalds if(copy_to_user(s, buf, len)) 23241da177e4SLinus Torvalds return -EFAULT; 23251da177e4SLinus Torvalds left -= len; 23261da177e4SLinus Torvalds s += len; 23271da177e4SLinus Torvalds } 23281da177e4SLinus Torvalds } 23291da177e4SLinus Torvalds 23301da177e4SLinus Torvalds if (!write && !first && left) { 23311da177e4SLinus Torvalds if(put_user('\n', s)) 23321da177e4SLinus Torvalds return -EFAULT; 23331da177e4SLinus Torvalds left--, s++; 23341da177e4SLinus Torvalds } 23351da177e4SLinus Torvalds if (write) { 23361da177e4SLinus Torvalds while (left) { 23371da177e4SLinus Torvalds char c; 23381da177e4SLinus Torvalds if (get_user(c, s++)) 23391da177e4SLinus Torvalds return -EFAULT; 23401da177e4SLinus Torvalds if (!isspace(c)) 23411da177e4SLinus Torvalds break; 23421da177e4SLinus Torvalds left--; 23431da177e4SLinus Torvalds } 23441da177e4SLinus Torvalds } 23451da177e4SLinus Torvalds if (write && first) 23461da177e4SLinus Torvalds return -EINVAL; 23471da177e4SLinus Torvalds *lenp -= left; 23481da177e4SLinus Torvalds *ppos += *lenp; 23491da177e4SLinus Torvalds return 0; 23501da177e4SLinus Torvalds #undef TMPBUFLEN 23511da177e4SLinus Torvalds } 23521da177e4SLinus Torvalds 2353d8217f07SEric W. Biederman static int do_proc_dointvec(struct ctl_table *table, int write, struct file *filp, 2354fcfbd547SKirill Korotaev void __user *buffer, size_t *lenp, loff_t *ppos, 2355fcfbd547SKirill Korotaev int (*conv)(int *negp, unsigned long *lvalp, int *valp, 2356fcfbd547SKirill Korotaev int write, void *data), 2357fcfbd547SKirill Korotaev void *data) 2358fcfbd547SKirill Korotaev { 2359fcfbd547SKirill Korotaev return __do_proc_dointvec(table->data, table, write, filp, 2360fcfbd547SKirill Korotaev buffer, lenp, ppos, conv, data); 2361fcfbd547SKirill Korotaev } 2362fcfbd547SKirill Korotaev 23631da177e4SLinus Torvalds /** 23641da177e4SLinus Torvalds * proc_dointvec - read a vector of integers 23651da177e4SLinus Torvalds * @table: the sysctl table 23661da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 23671da177e4SLinus Torvalds * @filp: the file structure 23681da177e4SLinus Torvalds * @buffer: the user buffer 23691da177e4SLinus Torvalds * @lenp: the size of the user buffer 23701da177e4SLinus Torvalds * @ppos: file position 23711da177e4SLinus Torvalds * 23721da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned int) integer 23731da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 23741da177e4SLinus Torvalds * 23751da177e4SLinus Torvalds * Returns 0 on success. 23761da177e4SLinus Torvalds */ 2377d8217f07SEric W. Biederman int proc_dointvec(struct ctl_table *table, int write, struct file *filp, 23781da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 23791da177e4SLinus Torvalds { 23801da177e4SLinus Torvalds return do_proc_dointvec(table,write,filp,buffer,lenp,ppos, 23811da177e4SLinus Torvalds NULL,NULL); 23821da177e4SLinus Torvalds } 23831da177e4SLinus Torvalds 238434f5a398STheodore Ts'o /* 238534f5a398STheodore Ts'o * Taint values can only be increased 238625ddbb18SAndi Kleen * This means we can safely use a temporary. 238734f5a398STheodore Ts'o */ 238825ddbb18SAndi Kleen static int proc_taint(struct ctl_table *table, int write, struct file *filp, 238934f5a398STheodore Ts'o void __user *buffer, size_t *lenp, loff_t *ppos) 239034f5a398STheodore Ts'o { 239125ddbb18SAndi Kleen struct ctl_table t; 239225ddbb18SAndi Kleen unsigned long tmptaint = get_taint(); 239325ddbb18SAndi Kleen int err; 239434f5a398STheodore Ts'o 239591fcd412SBastian Blank if (write && !capable(CAP_SYS_ADMIN)) 239634f5a398STheodore Ts'o return -EPERM; 239734f5a398STheodore Ts'o 239825ddbb18SAndi Kleen t = *table; 239925ddbb18SAndi Kleen t.data = &tmptaint; 240025ddbb18SAndi Kleen err = proc_doulongvec_minmax(&t, write, filp, buffer, lenp, ppos); 240125ddbb18SAndi Kleen if (err < 0) 240225ddbb18SAndi Kleen return err; 240325ddbb18SAndi Kleen 240425ddbb18SAndi Kleen if (write) { 240525ddbb18SAndi Kleen /* 240625ddbb18SAndi Kleen * Poor man's atomic or. Not worth adding a primitive 240725ddbb18SAndi Kleen * to everyone's atomic.h for this 240825ddbb18SAndi Kleen */ 240925ddbb18SAndi Kleen int i; 241025ddbb18SAndi Kleen for (i = 0; i < BITS_PER_LONG && tmptaint >> i; i++) { 241125ddbb18SAndi Kleen if ((tmptaint >> i) & 1) 241225ddbb18SAndi Kleen add_taint(i); 241325ddbb18SAndi Kleen } 241425ddbb18SAndi Kleen } 241525ddbb18SAndi Kleen 241625ddbb18SAndi Kleen return err; 241734f5a398STheodore Ts'o } 241834f5a398STheodore Ts'o 24191da177e4SLinus Torvalds struct do_proc_dointvec_minmax_conv_param { 24201da177e4SLinus Torvalds int *min; 24211da177e4SLinus Torvalds int *max; 24221da177e4SLinus Torvalds }; 24231da177e4SLinus Torvalds 24241da177e4SLinus Torvalds static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp, 24251da177e4SLinus Torvalds int *valp, 24261da177e4SLinus Torvalds int write, void *data) 24271da177e4SLinus Torvalds { 24281da177e4SLinus Torvalds struct do_proc_dointvec_minmax_conv_param *param = data; 24291da177e4SLinus Torvalds if (write) { 24301da177e4SLinus Torvalds int val = *negp ? -*lvalp : *lvalp; 24311da177e4SLinus Torvalds if ((param->min && *param->min > val) || 24321da177e4SLinus Torvalds (param->max && *param->max < val)) 24331da177e4SLinus Torvalds return -EINVAL; 24341da177e4SLinus Torvalds *valp = val; 24351da177e4SLinus Torvalds } else { 24361da177e4SLinus Torvalds int val = *valp; 24371da177e4SLinus Torvalds if (val < 0) { 24381da177e4SLinus Torvalds *negp = -1; 24391da177e4SLinus Torvalds *lvalp = (unsigned long)-val; 24401da177e4SLinus Torvalds } else { 24411da177e4SLinus Torvalds *negp = 0; 24421da177e4SLinus Torvalds *lvalp = (unsigned long)val; 24431da177e4SLinus Torvalds } 24441da177e4SLinus Torvalds } 24451da177e4SLinus Torvalds return 0; 24461da177e4SLinus Torvalds } 24471da177e4SLinus Torvalds 24481da177e4SLinus Torvalds /** 24491da177e4SLinus Torvalds * proc_dointvec_minmax - read a vector of integers with min/max values 24501da177e4SLinus Torvalds * @table: the sysctl table 24511da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 24521da177e4SLinus Torvalds * @filp: the file structure 24531da177e4SLinus Torvalds * @buffer: the user buffer 24541da177e4SLinus Torvalds * @lenp: the size of the user buffer 24551da177e4SLinus Torvalds * @ppos: file position 24561da177e4SLinus Torvalds * 24571da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned int) integer 24581da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 24591da177e4SLinus Torvalds * 24601da177e4SLinus Torvalds * This routine will ensure the values are within the range specified by 24611da177e4SLinus Torvalds * table->extra1 (min) and table->extra2 (max). 24621da177e4SLinus Torvalds * 24631da177e4SLinus Torvalds * Returns 0 on success. 24641da177e4SLinus Torvalds */ 2465d8217f07SEric W. Biederman int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp, 24661da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 24671da177e4SLinus Torvalds { 24681da177e4SLinus Torvalds struct do_proc_dointvec_minmax_conv_param param = { 24691da177e4SLinus Torvalds .min = (int *) table->extra1, 24701da177e4SLinus Torvalds .max = (int *) table->extra2, 24711da177e4SLinus Torvalds }; 24721da177e4SLinus Torvalds return do_proc_dointvec(table, write, filp, buffer, lenp, ppos, 24731da177e4SLinus Torvalds do_proc_dointvec_minmax_conv, ¶m); 24741da177e4SLinus Torvalds } 24751da177e4SLinus Torvalds 2476d8217f07SEric W. Biederman static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int write, 24771da177e4SLinus Torvalds struct file *filp, 24781da177e4SLinus Torvalds void __user *buffer, 24791da177e4SLinus Torvalds size_t *lenp, loff_t *ppos, 24801da177e4SLinus Torvalds unsigned long convmul, 24811da177e4SLinus Torvalds unsigned long convdiv) 24821da177e4SLinus Torvalds { 24831da177e4SLinus Torvalds #define TMPBUFLEN 21 24841da177e4SLinus Torvalds unsigned long *i, *min, *max, val; 24851da177e4SLinus Torvalds int vleft, first=1, neg; 24861da177e4SLinus Torvalds size_t len, left; 24871da177e4SLinus Torvalds char buf[TMPBUFLEN], *p; 24881da177e4SLinus Torvalds char __user *s = buffer; 24891da177e4SLinus Torvalds 2490fcfbd547SKirill Korotaev if (!data || !table->maxlen || !*lenp || 24911da177e4SLinus Torvalds (*ppos && !write)) { 24921da177e4SLinus Torvalds *lenp = 0; 24931da177e4SLinus Torvalds return 0; 24941da177e4SLinus Torvalds } 24951da177e4SLinus Torvalds 2496fcfbd547SKirill Korotaev i = (unsigned long *) data; 24971da177e4SLinus Torvalds min = (unsigned long *) table->extra1; 24981da177e4SLinus Torvalds max = (unsigned long *) table->extra2; 24991da177e4SLinus Torvalds vleft = table->maxlen / sizeof(unsigned long); 25001da177e4SLinus Torvalds left = *lenp; 25011da177e4SLinus Torvalds 25021da177e4SLinus Torvalds for (; left && vleft--; i++, min++, max++, first=0) { 25031da177e4SLinus Torvalds if (write) { 25041da177e4SLinus Torvalds while (left) { 25051da177e4SLinus Torvalds char c; 25061da177e4SLinus Torvalds if (get_user(c, s)) 25071da177e4SLinus Torvalds return -EFAULT; 25081da177e4SLinus Torvalds if (!isspace(c)) 25091da177e4SLinus Torvalds break; 25101da177e4SLinus Torvalds left--; 25111da177e4SLinus Torvalds s++; 25121da177e4SLinus Torvalds } 25131da177e4SLinus Torvalds if (!left) 25141da177e4SLinus Torvalds break; 25151da177e4SLinus Torvalds neg = 0; 25161da177e4SLinus Torvalds len = left; 25171da177e4SLinus Torvalds if (len > TMPBUFLEN-1) 25181da177e4SLinus Torvalds len = TMPBUFLEN-1; 25191da177e4SLinus Torvalds if (copy_from_user(buf, s, len)) 25201da177e4SLinus Torvalds return -EFAULT; 25211da177e4SLinus Torvalds buf[len] = 0; 25221da177e4SLinus Torvalds p = buf; 25231da177e4SLinus Torvalds if (*p == '-' && left > 1) { 25241da177e4SLinus Torvalds neg = 1; 2525bd9b0bacSBP, Praveen p++; 25261da177e4SLinus Torvalds } 25271da177e4SLinus Torvalds if (*p < '0' || *p > '9') 25281da177e4SLinus Torvalds break; 25291da177e4SLinus Torvalds val = simple_strtoul(p, &p, 0) * convmul / convdiv ; 25301da177e4SLinus Torvalds len = p-buf; 25311da177e4SLinus Torvalds if ((len < left) && *p && !isspace(*p)) 25321da177e4SLinus Torvalds break; 25331da177e4SLinus Torvalds if (neg) 25341da177e4SLinus Torvalds val = -val; 25351da177e4SLinus Torvalds s += len; 25361da177e4SLinus Torvalds left -= len; 25371da177e4SLinus Torvalds 25381da177e4SLinus Torvalds if(neg) 25391da177e4SLinus Torvalds continue; 25401da177e4SLinus Torvalds if ((min && val < *min) || (max && val > *max)) 25411da177e4SLinus Torvalds continue; 25421da177e4SLinus Torvalds *i = val; 25431da177e4SLinus Torvalds } else { 25441da177e4SLinus Torvalds p = buf; 25451da177e4SLinus Torvalds if (!first) 25461da177e4SLinus Torvalds *p++ = '\t'; 25471da177e4SLinus Torvalds sprintf(p, "%lu", convdiv * (*i) / convmul); 25481da177e4SLinus Torvalds len = strlen(buf); 25491da177e4SLinus Torvalds if (len > left) 25501da177e4SLinus Torvalds len = left; 25511da177e4SLinus Torvalds if(copy_to_user(s, buf, len)) 25521da177e4SLinus Torvalds return -EFAULT; 25531da177e4SLinus Torvalds left -= len; 25541da177e4SLinus Torvalds s += len; 25551da177e4SLinus Torvalds } 25561da177e4SLinus Torvalds } 25571da177e4SLinus Torvalds 25581da177e4SLinus Torvalds if (!write && !first && left) { 25591da177e4SLinus Torvalds if(put_user('\n', s)) 25601da177e4SLinus Torvalds return -EFAULT; 25611da177e4SLinus Torvalds left--, s++; 25621da177e4SLinus Torvalds } 25631da177e4SLinus Torvalds if (write) { 25641da177e4SLinus Torvalds while (left) { 25651da177e4SLinus Torvalds char c; 25661da177e4SLinus Torvalds if (get_user(c, s++)) 25671da177e4SLinus Torvalds return -EFAULT; 25681da177e4SLinus Torvalds if (!isspace(c)) 25691da177e4SLinus Torvalds break; 25701da177e4SLinus Torvalds left--; 25711da177e4SLinus Torvalds } 25721da177e4SLinus Torvalds } 25731da177e4SLinus Torvalds if (write && first) 25741da177e4SLinus Torvalds return -EINVAL; 25751da177e4SLinus Torvalds *lenp -= left; 25761da177e4SLinus Torvalds *ppos += *lenp; 25771da177e4SLinus Torvalds return 0; 25781da177e4SLinus Torvalds #undef TMPBUFLEN 25791da177e4SLinus Torvalds } 25801da177e4SLinus Torvalds 2581d8217f07SEric W. Biederman static int do_proc_doulongvec_minmax(struct ctl_table *table, int write, 2582fcfbd547SKirill Korotaev struct file *filp, 2583fcfbd547SKirill Korotaev void __user *buffer, 2584fcfbd547SKirill Korotaev size_t *lenp, loff_t *ppos, 2585fcfbd547SKirill Korotaev unsigned long convmul, 2586fcfbd547SKirill Korotaev unsigned long convdiv) 2587fcfbd547SKirill Korotaev { 2588fcfbd547SKirill Korotaev return __do_proc_doulongvec_minmax(table->data, table, write, 2589fcfbd547SKirill Korotaev filp, buffer, lenp, ppos, convmul, convdiv); 2590fcfbd547SKirill Korotaev } 2591fcfbd547SKirill Korotaev 25921da177e4SLinus Torvalds /** 25931da177e4SLinus Torvalds * proc_doulongvec_minmax - read a vector of long integers with min/max values 25941da177e4SLinus Torvalds * @table: the sysctl table 25951da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 25961da177e4SLinus Torvalds * @filp: the file structure 25971da177e4SLinus Torvalds * @buffer: the user buffer 25981da177e4SLinus Torvalds * @lenp: the size of the user buffer 25991da177e4SLinus Torvalds * @ppos: file position 26001da177e4SLinus Torvalds * 26011da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long 26021da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 26031da177e4SLinus Torvalds * 26041da177e4SLinus Torvalds * This routine will ensure the values are within the range specified by 26051da177e4SLinus Torvalds * table->extra1 (min) and table->extra2 (max). 26061da177e4SLinus Torvalds * 26071da177e4SLinus Torvalds * Returns 0 on success. 26081da177e4SLinus Torvalds */ 2609d8217f07SEric W. Biederman int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp, 26101da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 26111da177e4SLinus Torvalds { 26121da177e4SLinus Torvalds return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l); 26131da177e4SLinus Torvalds } 26141da177e4SLinus Torvalds 26151da177e4SLinus Torvalds /** 26161da177e4SLinus Torvalds * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values 26171da177e4SLinus Torvalds * @table: the sysctl table 26181da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 26191da177e4SLinus Torvalds * @filp: the file structure 26201da177e4SLinus Torvalds * @buffer: the user buffer 26211da177e4SLinus Torvalds * @lenp: the size of the user buffer 26221da177e4SLinus Torvalds * @ppos: file position 26231da177e4SLinus Torvalds * 26241da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long 26251da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. The values 26261da177e4SLinus Torvalds * are treated as milliseconds, and converted to jiffies when they are stored. 26271da177e4SLinus Torvalds * 26281da177e4SLinus Torvalds * This routine will ensure the values are within the range specified by 26291da177e4SLinus Torvalds * table->extra1 (min) and table->extra2 (max). 26301da177e4SLinus Torvalds * 26311da177e4SLinus Torvalds * Returns 0 on success. 26321da177e4SLinus Torvalds */ 2633d8217f07SEric W. Biederman int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write, 26341da177e4SLinus Torvalds struct file *filp, 26351da177e4SLinus Torvalds void __user *buffer, 26361da177e4SLinus Torvalds size_t *lenp, loff_t *ppos) 26371da177e4SLinus Torvalds { 26381da177e4SLinus Torvalds return do_proc_doulongvec_minmax(table, write, filp, buffer, 26391da177e4SLinus Torvalds lenp, ppos, HZ, 1000l); 26401da177e4SLinus Torvalds } 26411da177e4SLinus Torvalds 26421da177e4SLinus Torvalds 26431da177e4SLinus Torvalds static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp, 26441da177e4SLinus Torvalds int *valp, 26451da177e4SLinus Torvalds int write, void *data) 26461da177e4SLinus Torvalds { 26471da177e4SLinus Torvalds if (write) { 2648cba9f33dSBart Samwel if (*lvalp > LONG_MAX / HZ) 2649cba9f33dSBart Samwel return 1; 26501da177e4SLinus Torvalds *valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ); 26511da177e4SLinus Torvalds } else { 26521da177e4SLinus Torvalds int val = *valp; 26531da177e4SLinus Torvalds unsigned long lval; 26541da177e4SLinus Torvalds if (val < 0) { 26551da177e4SLinus Torvalds *negp = -1; 26561da177e4SLinus Torvalds lval = (unsigned long)-val; 26571da177e4SLinus Torvalds } else { 26581da177e4SLinus Torvalds *negp = 0; 26591da177e4SLinus Torvalds lval = (unsigned long)val; 26601da177e4SLinus Torvalds } 26611da177e4SLinus Torvalds *lvalp = lval / HZ; 26621da177e4SLinus Torvalds } 26631da177e4SLinus Torvalds return 0; 26641da177e4SLinus Torvalds } 26651da177e4SLinus Torvalds 26661da177e4SLinus Torvalds static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp, 26671da177e4SLinus Torvalds int *valp, 26681da177e4SLinus Torvalds int write, void *data) 26691da177e4SLinus Torvalds { 26701da177e4SLinus Torvalds if (write) { 2671cba9f33dSBart Samwel if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ) 2672cba9f33dSBart Samwel return 1; 26731da177e4SLinus Torvalds *valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp); 26741da177e4SLinus Torvalds } else { 26751da177e4SLinus Torvalds int val = *valp; 26761da177e4SLinus Torvalds unsigned long lval; 26771da177e4SLinus Torvalds if (val < 0) { 26781da177e4SLinus Torvalds *negp = -1; 26791da177e4SLinus Torvalds lval = (unsigned long)-val; 26801da177e4SLinus Torvalds } else { 26811da177e4SLinus Torvalds *negp = 0; 26821da177e4SLinus Torvalds lval = (unsigned long)val; 26831da177e4SLinus Torvalds } 26841da177e4SLinus Torvalds *lvalp = jiffies_to_clock_t(lval); 26851da177e4SLinus Torvalds } 26861da177e4SLinus Torvalds return 0; 26871da177e4SLinus Torvalds } 26881da177e4SLinus Torvalds 26891da177e4SLinus Torvalds static int do_proc_dointvec_ms_jiffies_conv(int *negp, unsigned long *lvalp, 26901da177e4SLinus Torvalds int *valp, 26911da177e4SLinus Torvalds int write, void *data) 26921da177e4SLinus Torvalds { 26931da177e4SLinus Torvalds if (write) { 26941da177e4SLinus Torvalds *valp = msecs_to_jiffies(*negp ? -*lvalp : *lvalp); 26951da177e4SLinus Torvalds } else { 26961da177e4SLinus Torvalds int val = *valp; 26971da177e4SLinus Torvalds unsigned long lval; 26981da177e4SLinus Torvalds if (val < 0) { 26991da177e4SLinus Torvalds *negp = -1; 27001da177e4SLinus Torvalds lval = (unsigned long)-val; 27011da177e4SLinus Torvalds } else { 27021da177e4SLinus Torvalds *negp = 0; 27031da177e4SLinus Torvalds lval = (unsigned long)val; 27041da177e4SLinus Torvalds } 27051da177e4SLinus Torvalds *lvalp = jiffies_to_msecs(lval); 27061da177e4SLinus Torvalds } 27071da177e4SLinus Torvalds return 0; 27081da177e4SLinus Torvalds } 27091da177e4SLinus Torvalds 27101da177e4SLinus Torvalds /** 27111da177e4SLinus Torvalds * proc_dointvec_jiffies - read a vector of integers as seconds 27121da177e4SLinus Torvalds * @table: the sysctl table 27131da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 27141da177e4SLinus Torvalds * @filp: the file structure 27151da177e4SLinus Torvalds * @buffer: the user buffer 27161da177e4SLinus Torvalds * @lenp: the size of the user buffer 27171da177e4SLinus Torvalds * @ppos: file position 27181da177e4SLinus Torvalds * 27191da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned int) integer 27201da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 27211da177e4SLinus Torvalds * The values read are assumed to be in seconds, and are converted into 27221da177e4SLinus Torvalds * jiffies. 27231da177e4SLinus Torvalds * 27241da177e4SLinus Torvalds * Returns 0 on success. 27251da177e4SLinus Torvalds */ 2726d8217f07SEric W. Biederman int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp, 27271da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 27281da177e4SLinus Torvalds { 27291da177e4SLinus Torvalds return do_proc_dointvec(table,write,filp,buffer,lenp,ppos, 27301da177e4SLinus Torvalds do_proc_dointvec_jiffies_conv,NULL); 27311da177e4SLinus Torvalds } 27321da177e4SLinus Torvalds 27331da177e4SLinus Torvalds /** 27341da177e4SLinus Torvalds * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds 27351da177e4SLinus Torvalds * @table: the sysctl table 27361da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 27371da177e4SLinus Torvalds * @filp: the file structure 27381da177e4SLinus Torvalds * @buffer: the user buffer 27391da177e4SLinus Torvalds * @lenp: the size of the user buffer 27401e5d5331SRandy Dunlap * @ppos: pointer to the file position 27411da177e4SLinus Torvalds * 27421da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned int) integer 27431da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 27441da177e4SLinus Torvalds * The values read are assumed to be in 1/USER_HZ seconds, and 27451da177e4SLinus Torvalds * are converted into jiffies. 27461da177e4SLinus Torvalds * 27471da177e4SLinus Torvalds * Returns 0 on success. 27481da177e4SLinus Torvalds */ 2749d8217f07SEric W. Biederman int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp, 27501da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 27511da177e4SLinus Torvalds { 27521da177e4SLinus Torvalds return do_proc_dointvec(table,write,filp,buffer,lenp,ppos, 27531da177e4SLinus Torvalds do_proc_dointvec_userhz_jiffies_conv,NULL); 27541da177e4SLinus Torvalds } 27551da177e4SLinus Torvalds 27561da177e4SLinus Torvalds /** 27571da177e4SLinus Torvalds * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds 27581da177e4SLinus Torvalds * @table: the sysctl table 27591da177e4SLinus Torvalds * @write: %TRUE if this is a write to the sysctl file 27601da177e4SLinus Torvalds * @filp: the file structure 27611da177e4SLinus Torvalds * @buffer: the user buffer 27621da177e4SLinus Torvalds * @lenp: the size of the user buffer 276367be2dd1SMartin Waitz * @ppos: file position 276467be2dd1SMartin Waitz * @ppos: the current position in the file 27651da177e4SLinus Torvalds * 27661da177e4SLinus Torvalds * Reads/writes up to table->maxlen/sizeof(unsigned int) integer 27671da177e4SLinus Torvalds * values from/to the user buffer, treated as an ASCII string. 27681da177e4SLinus Torvalds * The values read are assumed to be in 1/1000 seconds, and 27691da177e4SLinus Torvalds * are converted into jiffies. 27701da177e4SLinus Torvalds * 27711da177e4SLinus Torvalds * Returns 0 on success. 27721da177e4SLinus Torvalds */ 2773d8217f07SEric W. Biederman int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp, 27741da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 27751da177e4SLinus Torvalds { 27761da177e4SLinus Torvalds return do_proc_dointvec(table, write, filp, buffer, lenp, ppos, 27771da177e4SLinus Torvalds do_proc_dointvec_ms_jiffies_conv, NULL); 27781da177e4SLinus Torvalds } 27791da177e4SLinus Torvalds 2780d8217f07SEric W. Biederman static int proc_do_cad_pid(struct ctl_table *table, int write, struct file *filp, 27819ec52099SCedric Le Goater void __user *buffer, size_t *lenp, loff_t *ppos) 27829ec52099SCedric Le Goater { 27839ec52099SCedric Le Goater struct pid *new_pid; 27849ec52099SCedric Le Goater pid_t tmp; 27859ec52099SCedric Le Goater int r; 27869ec52099SCedric Le Goater 27876c5f3e7bSPavel Emelyanov tmp = pid_vnr(cad_pid); 27889ec52099SCedric Le Goater 27899ec52099SCedric Le Goater r = __do_proc_dointvec(&tmp, table, write, filp, buffer, 27909ec52099SCedric Le Goater lenp, ppos, NULL, NULL); 27919ec52099SCedric Le Goater if (r || !write) 27929ec52099SCedric Le Goater return r; 27939ec52099SCedric Le Goater 27949ec52099SCedric Le Goater new_pid = find_get_pid(tmp); 27959ec52099SCedric Le Goater if (!new_pid) 27969ec52099SCedric Le Goater return -ESRCH; 27979ec52099SCedric Le Goater 27989ec52099SCedric Le Goater put_pid(xchg(&cad_pid, new_pid)); 27999ec52099SCedric Le Goater return 0; 28009ec52099SCedric Le Goater } 28019ec52099SCedric Le Goater 28021da177e4SLinus Torvalds #else /* CONFIG_PROC_FS */ 28031da177e4SLinus Torvalds 2804d8217f07SEric W. Biederman int proc_dostring(struct ctl_table *table, int write, struct file *filp, 28051da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28061da177e4SLinus Torvalds { 28071da177e4SLinus Torvalds return -ENOSYS; 28081da177e4SLinus Torvalds } 28091da177e4SLinus Torvalds 2810d8217f07SEric W. Biederman int proc_dointvec(struct ctl_table *table, int write, struct file *filp, 28111da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28121da177e4SLinus Torvalds { 28131da177e4SLinus Torvalds return -ENOSYS; 28141da177e4SLinus Torvalds } 28151da177e4SLinus Torvalds 2816d8217f07SEric W. Biederman int proc_dointvec_minmax(struct ctl_table *table, int write, struct file *filp, 28171da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28181da177e4SLinus Torvalds { 28191da177e4SLinus Torvalds return -ENOSYS; 28201da177e4SLinus Torvalds } 28211da177e4SLinus Torvalds 2822d8217f07SEric W. Biederman int proc_dointvec_jiffies(struct ctl_table *table, int write, struct file *filp, 28231da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28241da177e4SLinus Torvalds { 28251da177e4SLinus Torvalds return -ENOSYS; 28261da177e4SLinus Torvalds } 28271da177e4SLinus Torvalds 2828d8217f07SEric W. Biederman int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write, struct file *filp, 28291da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28301da177e4SLinus Torvalds { 28311da177e4SLinus Torvalds return -ENOSYS; 28321da177e4SLinus Torvalds } 28331da177e4SLinus Torvalds 2834d8217f07SEric W. Biederman int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, struct file *filp, 28351da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28361da177e4SLinus Torvalds { 28371da177e4SLinus Torvalds return -ENOSYS; 28381da177e4SLinus Torvalds } 28391da177e4SLinus Torvalds 2840d8217f07SEric W. Biederman int proc_doulongvec_minmax(struct ctl_table *table, int write, struct file *filp, 28411da177e4SLinus Torvalds void __user *buffer, size_t *lenp, loff_t *ppos) 28421da177e4SLinus Torvalds { 28431da177e4SLinus Torvalds return -ENOSYS; 28441da177e4SLinus Torvalds } 28451da177e4SLinus Torvalds 2846d8217f07SEric W. Biederman int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write, 28471da177e4SLinus Torvalds struct file *filp, 28481da177e4SLinus Torvalds void __user *buffer, 28491da177e4SLinus Torvalds size_t *lenp, loff_t *ppos) 28501da177e4SLinus Torvalds { 28511da177e4SLinus Torvalds return -ENOSYS; 28521da177e4SLinus Torvalds } 28531da177e4SLinus Torvalds 28541da177e4SLinus Torvalds 28551da177e4SLinus Torvalds #endif /* CONFIG_PROC_FS */ 28561da177e4SLinus Torvalds 28571da177e4SLinus Torvalds 2858b89a8171SEric W. Biederman #ifdef CONFIG_SYSCTL_SYSCALL 28591da177e4SLinus Torvalds /* 28601da177e4SLinus Torvalds * General sysctl support routines 28611da177e4SLinus Torvalds */ 28621da177e4SLinus Torvalds 286349a0c458SEric W. Biederman /* The generic sysctl data routine (used if no strategy routine supplied) */ 2864f221e726SAlexey Dobriyan int sysctl_data(struct ctl_table *table, 286549a0c458SEric W. Biederman void __user *oldval, size_t __user *oldlenp, 286649a0c458SEric W. Biederman void __user *newval, size_t newlen) 286749a0c458SEric W. Biederman { 286849a0c458SEric W. Biederman size_t len; 286949a0c458SEric W. Biederman 287049a0c458SEric W. Biederman /* Get out of I don't have a variable */ 287149a0c458SEric W. Biederman if (!table->data || !table->maxlen) 287249a0c458SEric W. Biederman return -ENOTDIR; 287349a0c458SEric W. Biederman 287449a0c458SEric W. Biederman if (oldval && oldlenp) { 287549a0c458SEric W. Biederman if (get_user(len, oldlenp)) 287649a0c458SEric W. Biederman return -EFAULT; 287749a0c458SEric W. Biederman if (len) { 287849a0c458SEric W. Biederman if (len > table->maxlen) 287949a0c458SEric W. Biederman len = table->maxlen; 288049a0c458SEric W. Biederman if (copy_to_user(oldval, table->data, len)) 288149a0c458SEric W. Biederman return -EFAULT; 288249a0c458SEric W. Biederman if (put_user(len, oldlenp)) 288349a0c458SEric W. Biederman return -EFAULT; 288449a0c458SEric W. Biederman } 288549a0c458SEric W. Biederman } 288649a0c458SEric W. Biederman 288749a0c458SEric W. Biederman if (newval && newlen) { 288849a0c458SEric W. Biederman if (newlen > table->maxlen) 288949a0c458SEric W. Biederman newlen = table->maxlen; 289049a0c458SEric W. Biederman 289149a0c458SEric W. Biederman if (copy_from_user(table->data, newval, newlen)) 289249a0c458SEric W. Biederman return -EFAULT; 289349a0c458SEric W. Biederman } 289449a0c458SEric W. Biederman return 1; 289549a0c458SEric W. Biederman } 289649a0c458SEric W. Biederman 28971da177e4SLinus Torvalds /* The generic string strategy routine: */ 2898f221e726SAlexey Dobriyan int sysctl_string(struct ctl_table *table, 28991da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 29001f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 29011da177e4SLinus Torvalds { 29021da177e4SLinus Torvalds if (!table->data || !table->maxlen) 29031da177e4SLinus Torvalds return -ENOTDIR; 29041da177e4SLinus Torvalds 29051da177e4SLinus Torvalds if (oldval && oldlenp) { 2906de9e007dSLinus Torvalds size_t bufsize; 2907de9e007dSLinus Torvalds if (get_user(bufsize, oldlenp)) 29081da177e4SLinus Torvalds return -EFAULT; 2909de9e007dSLinus Torvalds if (bufsize) { 2910de9e007dSLinus Torvalds size_t len = strlen(table->data), copied; 2911de9e007dSLinus Torvalds 2912de9e007dSLinus Torvalds /* This shouldn't trigger for a well-formed sysctl */ 2913de9e007dSLinus Torvalds if (len > table->maxlen) 29141da177e4SLinus Torvalds len = table->maxlen; 2915de9e007dSLinus Torvalds 2916de9e007dSLinus Torvalds /* Copy up to a max of bufsize-1 bytes of the string */ 2917de9e007dSLinus Torvalds copied = (len >= bufsize) ? bufsize - 1 : len; 2918de9e007dSLinus Torvalds 2919de9e007dSLinus Torvalds if (copy_to_user(oldval, table->data, copied) || 2920de9e007dSLinus Torvalds put_user(0, (char __user *)(oldval + copied))) 29211da177e4SLinus Torvalds return -EFAULT; 29221da177e4SLinus Torvalds if (put_user(len, oldlenp)) 29231da177e4SLinus Torvalds return -EFAULT; 29241da177e4SLinus Torvalds } 29251da177e4SLinus Torvalds } 29261da177e4SLinus Torvalds if (newval && newlen) { 2927de9e007dSLinus Torvalds size_t len = newlen; 29281da177e4SLinus Torvalds if (len > table->maxlen) 29291da177e4SLinus Torvalds len = table->maxlen; 29301da177e4SLinus Torvalds if(copy_from_user(table->data, newval, len)) 29311da177e4SLinus Torvalds return -EFAULT; 29321da177e4SLinus Torvalds if (len == table->maxlen) 29331da177e4SLinus Torvalds len--; 29341da177e4SLinus Torvalds ((char *) table->data)[len] = 0; 29351da177e4SLinus Torvalds } 293682c9df82SYi Yang return 1; 29371da177e4SLinus Torvalds } 29381da177e4SLinus Torvalds 29391da177e4SLinus Torvalds /* 29401da177e4SLinus Torvalds * This function makes sure that all of the integers in the vector 29411da177e4SLinus Torvalds * are between the minimum and maximum values given in the arrays 29421da177e4SLinus Torvalds * table->extra1 and table->extra2, respectively. 29431da177e4SLinus Torvalds */ 2944f221e726SAlexey Dobriyan int sysctl_intvec(struct ctl_table *table, 29451da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 29461f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 29471da177e4SLinus Torvalds { 29481da177e4SLinus Torvalds 29491da177e4SLinus Torvalds if (newval && newlen) { 29501da177e4SLinus Torvalds int __user *vec = (int __user *) newval; 29511da177e4SLinus Torvalds int *min = (int *) table->extra1; 29521da177e4SLinus Torvalds int *max = (int *) table->extra2; 29531da177e4SLinus Torvalds size_t length; 29541da177e4SLinus Torvalds int i; 29551da177e4SLinus Torvalds 29561da177e4SLinus Torvalds if (newlen % sizeof(int) != 0) 29571da177e4SLinus Torvalds return -EINVAL; 29581da177e4SLinus Torvalds 29591da177e4SLinus Torvalds if (!table->extra1 && !table->extra2) 29601da177e4SLinus Torvalds return 0; 29611da177e4SLinus Torvalds 29621da177e4SLinus Torvalds if (newlen > table->maxlen) 29631da177e4SLinus Torvalds newlen = table->maxlen; 29641da177e4SLinus Torvalds length = newlen / sizeof(int); 29651da177e4SLinus Torvalds 29661da177e4SLinus Torvalds for (i = 0; i < length; i++) { 29671da177e4SLinus Torvalds int value; 29681da177e4SLinus Torvalds if (get_user(value, vec + i)) 29691da177e4SLinus Torvalds return -EFAULT; 29701da177e4SLinus Torvalds if (min && value < min[i]) 29711da177e4SLinus Torvalds return -EINVAL; 29721da177e4SLinus Torvalds if (max && value > max[i]) 29731da177e4SLinus Torvalds return -EINVAL; 29741da177e4SLinus Torvalds } 29751da177e4SLinus Torvalds } 29761da177e4SLinus Torvalds return 0; 29771da177e4SLinus Torvalds } 29781da177e4SLinus Torvalds 29791da177e4SLinus Torvalds /* Strategy function to convert jiffies to seconds */ 2980f221e726SAlexey Dobriyan int sysctl_jiffies(struct ctl_table *table, 29811da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 29821f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 29831da177e4SLinus Torvalds { 29843ee75ac3SAlexey Dobriyan if (oldval && oldlenp) { 29851da177e4SLinus Torvalds size_t olen; 29863ee75ac3SAlexey Dobriyan 29871da177e4SLinus Torvalds if (get_user(olen, oldlenp)) 29881da177e4SLinus Torvalds return -EFAULT; 29893ee75ac3SAlexey Dobriyan if (olen) { 29903ee75ac3SAlexey Dobriyan int val; 29913ee75ac3SAlexey Dobriyan 29923ee75ac3SAlexey Dobriyan if (olen < sizeof(int)) 29931da177e4SLinus Torvalds return -EINVAL; 29943ee75ac3SAlexey Dobriyan 29953ee75ac3SAlexey Dobriyan val = *(int *)(table->data) / HZ; 29963ee75ac3SAlexey Dobriyan if (put_user(val, (int __user *)oldval)) 29971da177e4SLinus Torvalds return -EFAULT; 29983ee75ac3SAlexey Dobriyan if (put_user(sizeof(int), oldlenp)) 29993ee75ac3SAlexey Dobriyan return -EFAULT; 30003ee75ac3SAlexey Dobriyan } 30011da177e4SLinus Torvalds } 30021da177e4SLinus Torvalds if (newval && newlen) { 30031da177e4SLinus Torvalds int new; 30041da177e4SLinus Torvalds if (newlen != sizeof(int)) 30051da177e4SLinus Torvalds return -EINVAL; 30061da177e4SLinus Torvalds if (get_user(new, (int __user *)newval)) 30071da177e4SLinus Torvalds return -EFAULT; 30081da177e4SLinus Torvalds *(int *)(table->data) = new*HZ; 30091da177e4SLinus Torvalds } 30101da177e4SLinus Torvalds return 1; 30111da177e4SLinus Torvalds } 30121da177e4SLinus Torvalds 30131da177e4SLinus Torvalds /* Strategy function to convert jiffies to seconds */ 3014f221e726SAlexey Dobriyan int sysctl_ms_jiffies(struct ctl_table *table, 30151da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 30161f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 30171da177e4SLinus Torvalds { 30183ee75ac3SAlexey Dobriyan if (oldval && oldlenp) { 30191da177e4SLinus Torvalds size_t olen; 30203ee75ac3SAlexey Dobriyan 30211da177e4SLinus Torvalds if (get_user(olen, oldlenp)) 30221da177e4SLinus Torvalds return -EFAULT; 30233ee75ac3SAlexey Dobriyan if (olen) { 30243ee75ac3SAlexey Dobriyan int val; 30253ee75ac3SAlexey Dobriyan 30263ee75ac3SAlexey Dobriyan if (olen < sizeof(int)) 30271da177e4SLinus Torvalds return -EINVAL; 30283ee75ac3SAlexey Dobriyan 30293ee75ac3SAlexey Dobriyan val = jiffies_to_msecs(*(int *)(table->data)); 30303ee75ac3SAlexey Dobriyan if (put_user(val, (int __user *)oldval)) 30311da177e4SLinus Torvalds return -EFAULT; 30323ee75ac3SAlexey Dobriyan if (put_user(sizeof(int), oldlenp)) 30333ee75ac3SAlexey Dobriyan return -EFAULT; 30343ee75ac3SAlexey Dobriyan } 30351da177e4SLinus Torvalds } 30361da177e4SLinus Torvalds if (newval && newlen) { 30371da177e4SLinus Torvalds int new; 30381da177e4SLinus Torvalds if (newlen != sizeof(int)) 30391da177e4SLinus Torvalds return -EINVAL; 30401da177e4SLinus Torvalds if (get_user(new, (int __user *)newval)) 30411da177e4SLinus Torvalds return -EFAULT; 30421da177e4SLinus Torvalds *(int *)(table->data) = msecs_to_jiffies(new); 30431da177e4SLinus Torvalds } 30441da177e4SLinus Torvalds return 1; 30451da177e4SLinus Torvalds } 30461da177e4SLinus Torvalds 3047c4b8b769SEric W. Biederman 3048c4b8b769SEric W. Biederman 3049b89a8171SEric W. Biederman #else /* CONFIG_SYSCTL_SYSCALL */ 30501da177e4SLinus Torvalds 30511da177e4SLinus Torvalds 30521e7bfb21SHeiko Carstens SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args) 30531da177e4SLinus Torvalds { 30540e009be8SEric W. Biederman struct __sysctl_args tmp; 30557058cb02SEric W. Biederman int error; 30560e009be8SEric W. Biederman 30570e009be8SEric W. Biederman if (copy_from_user(&tmp, args, sizeof(tmp))) 30580e009be8SEric W. Biederman return -EFAULT; 30590e009be8SEric W. Biederman 30607058cb02SEric W. Biederman error = deprecated_sysctl_warning(&tmp); 3061b89a8171SEric W. Biederman 30627058cb02SEric W. Biederman /* If no error reading the parameters then just -ENOSYS ... */ 30637058cb02SEric W. Biederman if (!error) 30647058cb02SEric W. Biederman error = -ENOSYS; 30657058cb02SEric W. Biederman 30667058cb02SEric W. Biederman return error; 30671da177e4SLinus Torvalds } 30681da177e4SLinus Torvalds 3069f221e726SAlexey Dobriyan int sysctl_data(struct ctl_table *table, 307049a0c458SEric W. Biederman void __user *oldval, size_t __user *oldlenp, 307149a0c458SEric W. Biederman void __user *newval, size_t newlen) 307249a0c458SEric W. Biederman { 307349a0c458SEric W. Biederman return -ENOSYS; 307449a0c458SEric W. Biederman } 307549a0c458SEric W. Biederman 3076f221e726SAlexey Dobriyan int sysctl_string(struct ctl_table *table, 30771da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 30781f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 30791da177e4SLinus Torvalds { 30801da177e4SLinus Torvalds return -ENOSYS; 30811da177e4SLinus Torvalds } 30821da177e4SLinus Torvalds 3083f221e726SAlexey Dobriyan int sysctl_intvec(struct ctl_table *table, 30841da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 30851f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 30861da177e4SLinus Torvalds { 30871da177e4SLinus Torvalds return -ENOSYS; 30881da177e4SLinus Torvalds } 30891da177e4SLinus Torvalds 3090f221e726SAlexey Dobriyan int sysctl_jiffies(struct ctl_table *table, 30911da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 30921f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 30931da177e4SLinus Torvalds { 30941da177e4SLinus Torvalds return -ENOSYS; 30951da177e4SLinus Torvalds } 30961da177e4SLinus Torvalds 3097f221e726SAlexey Dobriyan int sysctl_ms_jiffies(struct ctl_table *table, 30981da177e4SLinus Torvalds void __user *oldval, size_t __user *oldlenp, 30991f29bcd7SAlexey Dobriyan void __user *newval, size_t newlen) 31001da177e4SLinus Torvalds { 31011da177e4SLinus Torvalds return -ENOSYS; 31021da177e4SLinus Torvalds } 31031da177e4SLinus Torvalds 3104b89a8171SEric W. Biederman #endif /* CONFIG_SYSCTL_SYSCALL */ 31051da177e4SLinus Torvalds 31067058cb02SEric W. Biederman static int deprecated_sysctl_warning(struct __sysctl_args *args) 31077058cb02SEric W. Biederman { 31087058cb02SEric W. Biederman static int msg_count; 31097058cb02SEric W. Biederman int name[CTL_MAXNAME]; 31107058cb02SEric W. Biederman int i; 31117058cb02SEric W. Biederman 31126fc48af8STetsuo Handa /* Check args->nlen. */ 31136fc48af8STetsuo Handa if (args->nlen < 0 || args->nlen > CTL_MAXNAME) 31146fc48af8STetsuo Handa return -ENOTDIR; 31156fc48af8STetsuo Handa 31167058cb02SEric W. Biederman /* Read in the sysctl name for better debug message logging */ 31177058cb02SEric W. Biederman for (i = 0; i < args->nlen; i++) 31187058cb02SEric W. Biederman if (get_user(name[i], args->name + i)) 31197058cb02SEric W. Biederman return -EFAULT; 31207058cb02SEric W. Biederman 31217058cb02SEric W. Biederman /* Ignore accesses to kernel.version */ 31227058cb02SEric W. Biederman if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION)) 31237058cb02SEric W. Biederman return 0; 31247058cb02SEric W. Biederman 31257058cb02SEric W. Biederman if (msg_count < 5) { 31267058cb02SEric W. Biederman msg_count++; 31277058cb02SEric W. Biederman printk(KERN_INFO 31287058cb02SEric W. Biederman "warning: process `%s' used the deprecated sysctl " 31297058cb02SEric W. Biederman "system call with ", current->comm); 31307058cb02SEric W. Biederman for (i = 0; i < args->nlen; i++) 31317058cb02SEric W. Biederman printk("%d.", name[i]); 31327058cb02SEric W. Biederman printk("\n"); 31337058cb02SEric W. Biederman } 31347058cb02SEric W. Biederman return 0; 31357058cb02SEric W. Biederman } 31367058cb02SEric W. Biederman 31371da177e4SLinus Torvalds /* 31381da177e4SLinus Torvalds * No sense putting this after each symbol definition, twice, 31391da177e4SLinus Torvalds * exception granted :-) 31401da177e4SLinus Torvalds */ 31411da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec); 31421da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_jiffies); 31431da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_minmax); 31441da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_userhz_jiffies); 31451da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_ms_jiffies); 31461da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dostring); 31471da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_minmax); 31481da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax); 31491da177e4SLinus Torvalds EXPORT_SYMBOL(register_sysctl_table); 315029e796fdSEric W. Biederman EXPORT_SYMBOL(register_sysctl_paths); 31511da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_intvec); 31521da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_jiffies); 31531da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_ms_jiffies); 31541da177e4SLinus Torvalds EXPORT_SYMBOL(sysctl_string); 315549a0c458SEric W. Biederman EXPORT_SYMBOL(sysctl_data); 31561da177e4SLinus Torvalds EXPORT_SYMBOL(unregister_sysctl_table); 3157