sysctl.c 51.5 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * sysctl.c: General linux system control interface
 *
 * Begun 24 March 1995, Stephen Tweedie
 * Added /proc support, Dec 1995
 * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
 * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
 * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
 * Dynamic registration fixes, Stephen Tweedie.
 * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
 * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
 *  Horn.
 * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
 * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
 * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
 *  Wendling.
 * The list_for_each() macro wasn't appropriate for the sysctl loop.
 *  Removed it and replaced it with older style, 03/23/00, Bill Wendling
 */

#include <linux/config.h>
22
#include <linux/module.h>
Linus Torvalds's avatar
Linus Torvalds committed
23
#include <linux/mm.h>
24
#include <linux/swap.h>
Linus Torvalds's avatar
Linus Torvalds committed
25
#include <linux/slab.h>
Linus Torvalds's avatar
Linus Torvalds committed
26 27 28 29 30 31 32
#include <linux/sysctl.h>
#include <linux/proc_fs.h>
#include <linux/ctype.h>
#include <linux/utsname.h>
#include <linux/capability.h>
#include <linux/smp_lock.h>
#include <linux/init.h>
33
#include <linux/kernel.h>
Linus Torvalds's avatar
Linus Torvalds committed
34 35
#include <linux/sysrq.h>
#include <linux/highuid.h>
Andrew Morton's avatar
Andrew Morton committed
36
#include <linux/writeback.h>
37
#include <linux/hugetlb.h>
38
#include <linux/security.h>
Russell King's avatar
Russell King committed
39
#include <linux/initrd.h>
40
#include <linux/times.h>
41
#include <linux/limits.h>
42
#include <linux/dcache.h>
43
#include <linux/syscalls.h>
44

Linus Torvalds's avatar
Linus Torvalds committed
45
#include <asm/uaccess.h>
46
#include <asm/processor.h>
Linus Torvalds's avatar
Linus Torvalds committed
47 48 49 50 51 52 53 54 55 56 57

#ifdef CONFIG_ROOT_NFS
#include <linux/nfs_fs.h>
#endif

#if defined(CONFIG_SYSCTL)

/* External variables not in a header file. */
extern int panic_timeout;
extern int C_A_D;
extern int sysctl_overcommit_memory;
Andrew Morton's avatar
Andrew Morton committed
58
extern int sysctl_overcommit_ratio;
Linus Torvalds's avatar
Linus Torvalds committed
59 60
extern int max_threads;
extern int sysrq_enabled;
Linus Torvalds's avatar
Linus Torvalds committed
61
extern int core_uses_pid;
Alan Cox's avatar
Alan Cox committed
62
extern char core_pattern[];
Linus Torvalds's avatar
Linus Torvalds committed
63
extern int cad_pid;
Ingo Molnar's avatar
Ingo Molnar committed
64
extern int pid_max;
65
extern int sysctl_lower_zone_protection;
66
extern int min_free_kbytes;
67 68
extern int printk_ratelimit_jiffies;
extern int printk_ratelimit_burst;
69
extern int pid_max_min, pid_max_max;
Linus Torvalds's avatar
Linus Torvalds committed
70

71
#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
72 73 74 75 76
int unknown_nmi_panic;
extern int proc_unknown_nmi_panic(ctl_table *, int, struct file *,
				  void __user *, size_t *, loff_t *);
#endif

Linus Torvalds's avatar
Linus Torvalds committed
77 78 79 80
/* this is needed for the proc_dointvec_minmax for [fs_]overflow UID and GID */
static int maxolduid = 65535;
static int minolduid;

81 82
static int ngroups_max = NGROUPS_MAX;

Linus Torvalds's avatar
Linus Torvalds committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
#ifdef CONFIG_KMOD
extern char modprobe_path[];
#endif
#ifdef CONFIG_HOTPLUG
extern char hotplug_path[];
#endif
#ifdef CONFIG_CHR_DEV_SG
extern int sg_big_buff;
#endif
#ifdef CONFIG_SYSVIPC
extern size_t shm_ctlmax;
extern size_t shm_ctlall;
extern int shm_ctlmni;
extern int msg_ctlmax;
extern int msg_ctlmnb;
extern int msg_ctlmni;
extern int sem_ctls[];
#endif

#ifdef __sparc__
extern char reboot_command [];
extern int stop_a_enabled;
105
extern int scons_pwroff;
Linus Torvalds's avatar
Linus Torvalds committed
106
#endif
Linus Torvalds's avatar
Linus Torvalds committed
107

108 109 110 111 112
#ifdef __hppa__
extern int pwrsw_enabled;
extern int unaligned_enabled;
#endif

Linus Torvalds's avatar
Linus Torvalds committed
113
#ifdef CONFIG_ARCH_S390
Linus Torvalds's avatar
Linus Torvalds committed
114
#ifdef CONFIG_MATHEMU
Linus Torvalds's avatar
Linus Torvalds committed
115 116 117 118 119
extern int sysctl_ieee_emulation_warnings;
#endif
extern int sysctl_userprocess_debug;
#endif

120 121
extern int sysctl_hz_timer;

Linus Torvalds's avatar
Linus Torvalds committed
122 123 124 125
#ifdef CONFIG_BSD_PROCESS_ACCT
extern int acct_parm[];
#endif

126
static int parse_table(int __user *, int, void __user *, size_t __user *, void __user *, size_t,
Linus Torvalds's avatar
Linus Torvalds committed
127 128
		       ctl_table *, void **);
static int proc_doutsstring(ctl_table *table, int write, struct file *filp,
129
		  void __user *buffer, size_t *lenp, loff_t *ppos);
Linus Torvalds's avatar
Linus Torvalds committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144

static ctl_table root_table[];
static struct ctl_table_header root_table_header =
	{ root_table, LIST_HEAD_INIT(root_table_header.ctl_entry) };

static ctl_table kern_table[];
static ctl_table vm_table[];
#ifdef CONFIG_NET
extern ctl_table net_table[];
#endif
static ctl_table proc_table[];
static ctl_table fs_table[];
static ctl_table debug_table[];
static ctl_table dev_table[];
extern ctl_table random_table[];
Andrew Morton's avatar
Andrew Morton committed
145 146 147
#ifdef CONFIG_UNIX98_PTYS
extern ctl_table pty_table[];
#endif
Linus Torvalds's avatar
Linus Torvalds committed
148

149 150 151 152
#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
int sysctl_legacy_va_layout;
#endif

Linus Torvalds's avatar
Linus Torvalds committed
153 154 155 156
/* /proc declarations: */

#ifdef CONFIG_PROC_FS

157 158
static ssize_t proc_readsys(struct file *, char __user *, size_t, loff_t *);
static ssize_t proc_writesys(struct file *, const char __user *, size_t, loff_t *);
159
static int proc_opensys(struct inode *, struct file *);
Linus Torvalds's avatar
Linus Torvalds committed
160 161

struct file_operations proc_sys_file_operations = {
162
	.open		= proc_opensys,
163 164
	.read		= proc_readsys,
	.write		= proc_writesys,
Linus Torvalds's avatar
Linus Torvalds committed
165 166 167 168 169 170 171 172 173 174 175
};

extern struct proc_dir_entry *proc_sys_root;

static void register_proc_table(ctl_table *, struct proc_dir_entry *);
static void unregister_proc_table(ctl_table *, struct proc_dir_entry *);
#endif

/* The default sysctl tables: */

static ctl_table root_table[] = {
176 177 178 179 180 181 182 183 184 185 186 187
	{
		.ctl_name	= CTL_KERN,
		.procname	= "kernel",
		.mode		= 0555,
		.child		= kern_table,
	},
	{
		.ctl_name	= CTL_VM,
		.procname	= "vm",
		.mode		= 0555,
		.child		= vm_table,
	},
Linus Torvalds's avatar
Linus Torvalds committed
188
#ifdef CONFIG_NET
189 190 191 192 193 194
	{
		.ctl_name	= CTL_NET,
		.procname	= "net",
		.mode		= 0555,
		.child		= net_table,
	},
Linus Torvalds's avatar
Linus Torvalds committed
195
#endif
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
	{
		.ctl_name	= CTL_PROC,
		.procname	= "proc",
		.mode		= 0555,
		.child		= proc_table,
	},
	{
		.ctl_name	= CTL_FS,
		.procname	= "fs",
		.mode		= 0555,
		.child		= fs_table,
	},
	{
		.ctl_name	= CTL_DEBUG,
		.procname	= "debug",
		.mode		= 0555,
		.child		= debug_table,
	},
	{
		.ctl_name	= CTL_DEV,
		.procname	= "dev",
		.mode		= 0555,
		.child		= dev_table,
	},
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
221 222 223
};

static ctl_table kern_table[] = {
224 225 226 227
	{
		.ctl_name	= KERN_OSTYPE,
		.procname	= "ostype",
		.data		= system_utsname.sysname,
228
		.maxlen		= sizeof(system_utsname.sysname),
229 230 231 232 233 234 235 236
		.mode		= 0444,
		.proc_handler	= &proc_doutsstring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_OSRELEASE,
		.procname	= "osrelease",
		.data		= system_utsname.release,
237
		.maxlen		= sizeof(system_utsname.release),
238 239 240 241 242 243 244 245
		.mode		= 0444,
		.proc_handler	= &proc_doutsstring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_VERSION,
		.procname	= "version",
		.data		= system_utsname.version,
246
		.maxlen		= sizeof(system_utsname.version),
247 248 249 250 251 252 253 254
		.mode		= 0444,
		.proc_handler	= &proc_doutsstring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_NODENAME,
		.procname	= "hostname",
		.data		= system_utsname.nodename,
255
		.maxlen		= sizeof(system_utsname.nodename),
256 257 258 259 260 261 262 263
		.mode		= 0644,
		.proc_handler	= &proc_doutsstring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_DOMAINNAME,
		.procname	= "domainname",
		.data		= system_utsname.domainname,
264
		.maxlen		= sizeof(system_utsname.domainname),
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
		.mode		= 0644,
		.proc_handler	= &proc_doutsstring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_PANIC,
		.procname	= "panic",
		.data		= &panic_timeout,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_CORE_USES_PID,
		.procname	= "core_uses_pid",
		.data		= &core_uses_pid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_CORE_PATTERN,
		.procname	= "core_pattern",
		.data		= core_pattern,
		.maxlen		= 64,
		.mode		= 0644,
		.proc_handler	= &proc_dostring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_TAINTED,
		.procname	= "tainted",
		.data		= &tainted,
		.maxlen		= sizeof(int),
299
		.mode		= 0444,
300 301 302 303 304 305 306 307 308 309
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_CAP_BSET,
		.procname	= "cap-bound",
		.data		= &cap_bset,
		.maxlen		= sizeof(kernel_cap_t),
		.mode		= 0600,
		.proc_handler	= &proc_dointvec_bset,
	},
Linus Torvalds's avatar
Linus Torvalds committed
310
#ifdef CONFIG_BLK_DEV_INITRD
311 312 313 314 315 316 317 318
	{
		.ctl_name	= KERN_REALROOTDEV,
		.procname	= "real-root-dev",
		.data		= &real_root_dev,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
319 320
#endif
#ifdef __sparc__
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
	{
		.ctl_name	= KERN_SPARC_REBOOT,
		.procname	= "reboot-cmd",
		.data		= reboot_command,
		.maxlen		= 256,
		.mode		= 0644,
		.proc_handler	= &proc_dostring,
		.strategy	= &sysctl_string,
	},
	{
		.ctl_name	= KERN_SPARC_STOP_A,
		.procname	= "stop-a",
		.data		= &stop_a_enabled,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
338 339 340 341 342 343 344 345
	{
		.ctl_name	= KERN_SPARC_SCONS_PWROFF,
		.procname	= "scons-poweroff",
		.data		= &scons_pwroff,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
346
#endif
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
#ifdef __hppa__
	{
		.ctl_name	= KERN_HPPA_PWRSW,
		.procname	= "soft-power",
		.data		= &pwrsw_enabled,
		.maxlen		= sizeof (int),
	 	.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_HPPA_UNALIGNED,
		.procname	= "unaligned-trap",
		.data		= &unaligned_enabled,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
364
#endif
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	{
		.ctl_name	= KERN_CTLALTDEL,
		.procname	= "ctrl-alt-del",
		.data		= &C_A_D,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_PRINTK,
		.procname	= "printk",
		.data		= &console_loglevel,
		.maxlen		= 4*sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
381
#ifdef CONFIG_KMOD
382 383 384 385
	{
		.ctl_name	= KERN_MODPROBE,
		.procname	= "modprobe",
		.data		= &modprobe_path,
386
		.maxlen		= KMOD_PATH_LEN,
387 388 389 390
		.mode		= 0644,
		.proc_handler	= &proc_dostring,
		.strategy	= &sysctl_string,
	},
Linus Torvalds's avatar
Linus Torvalds committed
391 392
#endif
#ifdef CONFIG_HOTPLUG
393 394 395 396
	{
		.ctl_name	= KERN_HOTPLUG,
		.procname	= "hotplug",
		.data		= &hotplug_path,
397
		.maxlen		= HOTPLUG_PATH_LEN,
398 399 400 401
		.mode		= 0644,
		.proc_handler	= &proc_dostring,
		.strategy	= &sysctl_string,
	},
Linus Torvalds's avatar
Linus Torvalds committed
402 403
#endif
#ifdef CONFIG_CHR_DEV_SG
404 405 406 407 408 409 410 411
	{
		.ctl_name	= KERN_SG_BIG_BUFF,
		.procname	= "sg-big-buff",
		.data		= &sg_big_buff,
		.maxlen		= sizeof (int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
412 413
#endif
#ifdef CONFIG_BSD_PROCESS_ACCT
414 415 416 417 418 419 420 421
	{
		.ctl_name	= KERN_ACCT,
		.procname	= "acct",
		.data		= &acct_parm,
		.maxlen		= 3*sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
422 423
#endif
#ifdef CONFIG_SYSVIPC
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
	{
		.ctl_name	= KERN_SHMMAX,
		.procname	= "shmmax",
		.data		= &shm_ctlmax,
		.maxlen		= sizeof (size_t),
		.mode		= 0644,
		.proc_handler	= &proc_doulongvec_minmax,
	},
	{
		.ctl_name	= KERN_SHMALL,
		.procname	= "shmall",
		.data		= &shm_ctlall,
		.maxlen		= sizeof (size_t),
		.mode		= 0644,
		.proc_handler	= &proc_doulongvec_minmax,
	},
	{
		.ctl_name	= KERN_SHMMNI,
		.procname	= "shmmni",
		.data		= &shm_ctlmni,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_MSGMAX,
		.procname	= "msgmax",
		.data		= &msg_ctlmax,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_MSGMNI,
		.procname	= "msgmni",
		.data		= &msg_ctlmni,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_MSGMNB,
		.procname	=  "msgmnb",
		.data		= &msg_ctlmnb,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_SEM,
		.procname	= "sem",
		.data		= &sem_ctls,
		.maxlen		= 4*sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
480 481
#endif
#ifdef CONFIG_MAGIC_SYSRQ
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
	{
		.ctl_name	= KERN_SYSRQ,
		.procname	= "sysrq",
		.data		= &sysrq_enabled,
		.maxlen		= sizeof (int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
#endif
	{
		.ctl_name	= KERN_CADPID,
		.procname	= "cad_pid",
		.data		= &cad_pid,
		.maxlen		= sizeof (int),
		.mode		= 0600,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_MAX_THREADS,
		.procname	= "threads-max",
		.data		= &max_threads,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= KERN_RANDOM,
		.procname	= "random",
		.mode		= 0555,
		.child		= random_table,
	},
Andrew Morton's avatar
Andrew Morton committed
513 514 515 516 517 518 519 520
#ifdef CONFIG_UNIX98_PTYS
	{
		.ctl_name	= KERN_PTY,
		.procname	= "pty",
		.mode		= 0555,
		.child		= pty_table,
	},
#endif
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
	{
		.ctl_name	= KERN_OVERFLOWUID,
		.procname	= "overflowuid",
		.data		= &overflowuid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &minolduid,
		.extra2		= &maxolduid,
	},
	{
		.ctl_name	= KERN_OVERFLOWGID,
		.procname	= "overflowgid",
		.data		= &overflowgid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &minolduid,
		.extra2		= &maxolduid,
	},
Linus Torvalds's avatar
Linus Torvalds committed
543
#ifdef CONFIG_ARCH_S390
Linus Torvalds's avatar
Linus Torvalds committed
544
#ifdef CONFIG_MATHEMU
545 546 547 548 549 550 551 552
	{
		.ctl_name	= KERN_IEEE_EMULATION_WARNINGS,
		.procname	= "ieee_emulation_warnings",
		.data		= &sysctl_ieee_emulation_warnings,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
553 554 555 556 557 558 559 560 561 562
#endif
#ifdef CONFIG_NO_IDLE_HZ
	{
		.ctl_name       = KERN_HZ_TIMER,
		.procname       = "hz_timer",
		.data           = &sysctl_hz_timer,
		.maxlen         = sizeof(int),
		.mode           = 0644,
		.proc_handler   = &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
563
#endif
564 565 566 567 568 569 570 571
	{
		.ctl_name	= KERN_S390_USER_DEBUG_LOGGING,
		.procname	= "userprocess_debug",
		.data		= &sysctl_userprocess_debug,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Linus Torvalds's avatar
Linus Torvalds committed
572
#endif
573 574 575 576 577
	{
		.ctl_name	= KERN_PIDMAX,
		.procname	= "pid_max",
		.data		= &pid_max,
		.maxlen		= sizeof (int),
Andrew Morton's avatar
Andrew Morton committed
578
		.mode		= 0644,
579 580 581 582
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= sysctl_intvec,
		.extra1		= &pid_max_min,
		.extra2		= &pid_max_max,
583 584 585 586 587 588 589 590 591
	},
	{
		.ctl_name	= KERN_PANIC_ON_OOPS,
		.procname	= "panic_on_oops",
		.data		= &panic_on_oops,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
592 593 594 595 596 597 598
	{
		.ctl_name	= KERN_PRINTK_RATELIMIT,
		.procname	= "printk_ratelimit",
		.data		= &printk_ratelimit_jiffies,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_jiffies,
Andrew Morton's avatar
Andrew Morton committed
599
		.strategy	= &sysctl_jiffies,
600 601 602 603 604 605 606 607 608
	},
	{
		.ctl_name	= KERN_PRINTK_RATELIMIT_BURST,
		.procname	= "printk_ratelimit_burst",
		.data		= &printk_ratelimit_burst,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
609 610 611 612 613 614 615 616
	{
		.ctl_name	= KERN_NGROUPS_MAX,
		.procname	= "ngroups_max",
		.data		= &ngroups_max,
		.maxlen		= sizeof (int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
617
#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
618 619 620 621 622 623 624 625
	{
		.ctl_name       = KERN_UNKNOWN_NMI_PANIC,
		.procname       = "unknown_nmi_panic",
		.data           = &unknown_nmi_panic,
		.maxlen         = sizeof (int),
		.mode           = 0644,
		.proc_handler   = &proc_unknown_nmi_panic,
	},
626 627 628 629 630 631 632 633 634 635
#endif
#if defined(CONFIG_X86)
	{
		.ctl_name	= KERN_BOOTLOADER_TYPE,
		.procname	= "bootloader_type",
		.data		= &bootloader_type,
		.maxlen		= sizeof (int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
636
#endif
637
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
638 639
};

Andrew Morton's avatar
Andrew Morton committed
640 641
/* Constants for minimum and maximum testing in vm_table.
   We use these as one-element integer vectors. */
642
static int zero;
Andrew Morton's avatar
Andrew Morton committed
643 644 645
static int one_hundred = 100;


Linus Torvalds's avatar
Linus Torvalds committed
646
static ctl_table vm_table[] = {
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
	{
		.ctl_name	= VM_OVERCOMMIT_MEMORY,
		.procname	= "overcommit_memory",
		.data		= &sysctl_overcommit_memory,
		.maxlen		= sizeof(sysctl_overcommit_memory),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= VM_OVERCOMMIT_RATIO,
		.procname	= "overcommit_ratio",
		.data		= &sysctl_overcommit_ratio,
		.maxlen		= sizeof(sysctl_overcommit_ratio),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= VM_PAGE_CLUSTER,
		.procname	= "page-cluster", 
		.data		= &page_cluster,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= VM_DIRTY_BACKGROUND,
		.procname	= "dirty_background_ratio",
		.data		= &dirty_background_ratio,
		.maxlen		= sizeof(dirty_background_ratio),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
		.extra2		= &one_hundred,
	},
	{
		.ctl_name	= VM_DIRTY_RATIO,
		.procname	= "dirty_ratio",
		.data		= &vm_dirty_ratio,
		.maxlen		= sizeof(vm_dirty_ratio),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
		.extra2		= &one_hundred,
	},
	{
		.ctl_name	= VM_DIRTY_WB_CS,
		.procname	= "dirty_writeback_centisecs",
		.data		= &dirty_writeback_centisecs,
		.maxlen		= sizeof(dirty_writeback_centisecs),
		.mode		= 0644,
Andries E. Brouwer's avatar
Andries E. Brouwer committed
699
		.proc_handler	= &dirty_writeback_centisecs_handler,
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
	},
	{
		.ctl_name	= VM_DIRTY_EXPIRE_CS,
		.procname	= "dirty_expire_centisecs",
		.data		= &dirty_expire_centisecs,
		.maxlen		= sizeof(dirty_expire_centisecs),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= VM_NR_PDFLUSH_THREADS,
		.procname	= "nr_pdflush_threads",
		.data		= &nr_pdflush_threads,
		.maxlen		= sizeof nr_pdflush_threads,
		.mode		= 0444 /* read-only*/,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= VM_SWAPPINESS,
		.procname	= "swappiness",
		.data		= &vm_swappiness,
		.maxlen		= sizeof(vm_swappiness),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
		.extra2		= &one_hundred,
	},
Andrew Morton's avatar
Andrew Morton committed
728
#ifdef CONFIG_HUGETLB_PAGE
729 730 731
	 {
		.ctl_name	= VM_HUGETLB_PAGES,
		.procname	= "nr_hugepages",
Andrew Morton's avatar
Andrew Morton committed
732 733
		.data		= &max_huge_pages,
		.maxlen		= sizeof(unsigned long),
734 735
		.mode		= 0644,
		.proc_handler	= &hugetlb_sysctl_handler,
Andrew Morton's avatar
Andrew Morton committed
736 737
		.extra1		= (void *)&hugetlb_zero,
		.extra2		= (void *)&hugetlb_infinity,
738
	 },
739 740 741 742 743 744 745 746
	 {
		.ctl_name	= VM_HUGETLB_GROUP,
		.procname	= "hugetlb_shm_group",
		.data		= &sysctl_hugetlb_shm_group,
		.maxlen		= sizeof(gid_t),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	 },
Andrew Morton's avatar
Andrew Morton committed
747
#endif
748 749 750 751 752 753
	{
		.ctl_name	= VM_LOWER_ZONE_PROTECTION,
		.procname	= "lower_zone_protection",
		.data		= &sysctl_lower_zone_protection,
		.maxlen		= sizeof(sysctl_lower_zone_protection),
		.mode		= 0644,
754
		.proc_handler	= &lower_zone_protection_sysctl_handler,
755 756 757
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
758 759 760 761 762 763 764 765 766 767
	{
		.ctl_name	= VM_MIN_FREE_KBYTES,
		.procname	= "min_free_kbytes",
		.data		= &min_free_kbytes,
		.maxlen		= sizeof(min_free_kbytes),
		.mode		= 0644,
		.proc_handler	= &min_free_kbytes_sysctl_handler,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
David Howells's avatar
David Howells committed
768
#ifdef CONFIG_MMU
769 770 771 772 773 774 775 776
	{
		.ctl_name	= VM_MAX_MAP_COUNT,
		.procname	= "max_map_count",
		.data		= &sysctl_max_map_count,
		.maxlen		= sizeof(sysctl_max_map_count),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec
	},
David Howells's avatar
David Howells committed
777
#endif
Andrew Morton's avatar
Andrew Morton committed
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
	{
		.ctl_name	= VM_LAPTOP_MODE,
		.procname	= "laptop_mode",
		.data		= &laptop_mode,
		.maxlen		= sizeof(laptop_mode),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
	{
		.ctl_name	= VM_BLOCK_DUMP,
		.procname	= "block_dump",
		.data		= &block_dump,
		.maxlen		= sizeof(block_dump),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
798 799 800 801 802 803 804 805 806 807
	{
		.ctl_name	= VM_VFS_CACHE_PRESSURE,
		.procname	= "vfs_cache_pressure",
		.data		= &sysctl_vfs_cache_pressure,
		.maxlen		= sizeof(sysctl_vfs_cache_pressure),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
808 809 810 811 812 813 814 815 816 817 818 819
#ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
	{
		.ctl_name	= VM_LEGACY_VA_LAYOUT,
		.procname	= "legacy_va_layout",
		.data		= &sysctl_legacy_va_layout,
		.maxlen		= sizeof(sysctl_legacy_va_layout),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
		.strategy	= &sysctl_intvec,
		.extra1		= &zero,
	},
#endif
820
#ifdef CONFIG_SWAP
821 822 823 824 825 826 827 828 829
	{
		.ctl_name	= VM_SWAP_TOKEN_TIMEOUT,
		.procname	= "swap_token_timeout",
		.data		= &swap_token_default_timeout,
		.maxlen		= sizeof(swap_token_default_timeout),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_jiffies,
		.strategy	= &sysctl_jiffies,
	},
830
#endif
831
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
832 833 834
};

static ctl_table proc_table[] = {
835
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
836 837 838
};

static ctl_table fs_table[] = {
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908
	{
		.ctl_name	= FS_NRINODE,
		.procname	= "inode-nr",
		.data		= &inodes_stat,
		.maxlen		= 2*sizeof(int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_STATINODE,
		.procname	= "inode-state",
		.data		= &inodes_stat,
		.maxlen		= 7*sizeof(int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_NRFILE,
		.procname	= "file-nr",
		.data		= &files_stat,
		.maxlen		= 3*sizeof(int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_MAXFILE,
		.procname	= "file-max",
		.data		= &files_stat.max_files,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_DENTRY,
		.procname	= "dentry-state",
		.data		= &dentry_stat,
		.maxlen		= 6*sizeof(int),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_OVERFLOWUID,
		.procname	= "overflowuid",
		.data		= &fs_overflowuid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &minolduid,
		.extra2		= &maxolduid,
	},
	{
		.ctl_name	= FS_OVERFLOWGID,
		.procname	= "overflowgid",
		.data		= &fs_overflowgid,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec_minmax,
		.strategy	= &sysctl_intvec,
		.extra1		= &minolduid,
		.extra2		= &maxolduid,
	},
	{
		.ctl_name	= FS_LEASES,
		.procname	= "leases-enable",
		.data		= &leases_enable,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
909
#ifdef CONFIG_DNOTIFY
910 911 912 913 914 915 916 917
	{
		.ctl_name	= FS_DIR_NOTIFY,
		.procname	= "dir-notify-enable",
		.data		= &dir_notify_enable,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
918
#endif
David Howells's avatar
David Howells committed
919
#ifdef CONFIG_MMU
920 921 922 923 924 925 926 927
	{
		.ctl_name	= FS_LEASE_TIME,
		.procname	= "lease-break-time",
		.data		= &lease_break_time,
		.maxlen		= sizeof(int),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
Andrew Morton's avatar
Andrew Morton committed
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
	{
		.ctl_name	= FS_AIO_NR,
		.procname	= "aio-nr",
		.data		= &aio_nr,
		.maxlen		= sizeof(aio_nr),
		.mode		= 0444,
		.proc_handler	= &proc_dointvec,
	},
	{
		.ctl_name	= FS_AIO_MAX_NR,
		.procname	= "aio-max-nr",
		.data		= &aio_max_nr,
		.maxlen		= sizeof(aio_max_nr),
		.mode		= 0644,
		.proc_handler	= &proc_dointvec,
	},
David Howells's avatar
David Howells committed
944
#endif
945
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
946 947 948
};

static ctl_table debug_table[] = {
949
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
950 951 952
};

static ctl_table dev_table[] = {
953
	{ .ctl_name = 0 }
Linus Torvalds's avatar
Linus Torvalds committed
954 955 956 957 958 959 960 961 962 963 964 965
};  

extern void init_irq_proc (void);

void __init sysctl_init(void)
{
#ifdef CONFIG_PROC_FS
	register_proc_table(root_table, proc_sys_root);
	init_irq_proc();
#endif
}

966 967
int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp,
	       void __user *newval, size_t newlen)
Linus Torvalds's avatar
Linus Torvalds committed
968 969 970
{
	struct list_head *tmp;

Linus Torvalds's avatar
Linus Torvalds committed
971
	if (nlen <= 0 || nlen >= CTL_MAXNAME)
Linus Torvalds's avatar
Linus Torvalds committed
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
		return -ENOTDIR;
	if (oldval) {
		int old_len;
		if (!oldlenp || get_user(old_len, oldlenp))
			return -EFAULT;
	}
	tmp = &root_table_header.ctl_entry;
	do {
		struct ctl_table_header *head =
			list_entry(tmp, struct ctl_table_header, ctl_entry);
		void *context = NULL;
		int error = parse_table(name, nlen, oldval, oldlenp, 
					newval, newlen, head->ctl_table,
					&context);
		if (context)
			kfree(context);
		if (error != -ENOTDIR)
			return error;
		tmp = tmp->next;
	} while (tmp != &root_table_header.ctl_entry);
	return -ENOTDIR;
}

995
asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
Linus Torvalds's avatar
Linus Torvalds committed
996 997 998 999 1000 1001
{
	struct __sysctl_args tmp;
	int error;

	if (copy_from_user(&tmp, args, sizeof(tmp)))
		return -EFAULT;
1002

Linus Torvalds's avatar
Linus Torvalds committed
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
	lock_kernel();
	error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp,
			  tmp.newval, tmp.newlen);
	unlock_kernel();
	return error;
}

/*
 * ctl_perm does NOT grant the superuser all rights automatically, because
 * some sysctl variables are readonly even to root.
 */

static int test_perm(int mode, int op)
{
	if (!current->euid)
		mode >>= 6;
	else if (in_egroup_p(0))
		mode >>= 3;
	if ((mode & op & 0007) == op)
		return 0;
	return -EACCES;
}

static inline int ctl_perm(ctl_table *table, int op)
{
1028 1029 1030 1031
	int error;
	error = security_sysctl(table, op);
	if (error)
		return error;
Linus Torvalds's avatar
Linus Torvalds committed
1032 1033 1034
	return test_perm(table->mode, op);
}

1035
static int parse_table(int __user *name, int nlen,
1036 1037
		       void __user *oldval, size_t __user *oldlenp,
		       void __user *newval, size_t newlen,
Linus Torvalds's avatar
Linus Torvalds committed
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
		       ctl_table *table, void **context)
{
	int n;
repeat:
	if (!nlen)
		return -ENOTDIR;
	if (get_user(n, name))
		return -EFAULT;
	for ( ; table->ctl_name; table++) {
		if (n == table->ctl_name || table->ctl_name == CTL_ANY) {
			int error;
			if (table->child) {
				if (ctl_perm(table, 001))
					return -EPERM;
				if (table->strategy) {
					error = table->strategy(
						table, name, nlen,
						oldval, oldlenp,
						newval, newlen, context);
					if (error)
						return error;
				}
				name++;
				nlen--;
				table = table->child;
				goto repeat;
			}
			error = do_sysctl_strategy(table, name, nlen,
						   oldval, oldlenp,
						   newval, newlen, context);
			return error;
		}
	}
	return -ENOTDIR;
}

/* Perform the actual read/write of a sysctl table entry. */
int do_sysctl_strategy (ctl_table *table, 
1076
			int __user *name, int nlen,
1077 1078
			void __user *oldval, size_t __user *oldlenp,
			void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
1079
{
Linus Torvalds's avatar
Linus Torvalds committed
1080 1081
	int op = 0, rc;
	size_t len;
Linus Torvalds's avatar
Linus Torvalds committed
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102

	if (oldval)
		op |= 004;
	if (newval) 
		op |= 002;
	if (ctl_perm(table, op))
		return -EPERM;

	if (table->strategy) {
		rc = table->strategy(table, name, nlen, oldval, oldlenp,
				     newval, newlen, context);
		if (rc < 0)
			return rc;
		if (rc > 0)
			return 0;
	}

	/* If there is no strategy routine, or if the strategy returns
	 * zero, proceed with automatic r/w */
	if (table->data && table->maxlen) {
		if (oldval && oldlenp) {
1103 1104
			if (get_user(len, oldlenp))
				return -EFAULT;
Linus Torvalds's avatar
Linus Torvalds committed
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
			if (len) {
				if (len > table->maxlen)
					len = table->maxlen;
				if(copy_to_user(oldval, table->data, len))
					return -EFAULT;
				if(put_user(len, oldlenp))
					return -EFAULT;
			}
		}
		if (newval && newlen) {
			len = newlen;
			if (len > table->maxlen)
				len = table->maxlen;
			if(copy_from_user(table->data, newval, len))
				return -EFAULT;
		}
	}
	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
1125
/**
Dave Jones's avatar
Dave Jones committed
1126
 * register_sysctl_table - register a sysctl hierarchy
Linus Torvalds's avatar
Linus Torvalds committed
1127 1128 1129
 * @table: the top-level table structure
 * @insert_at_head: whether the entry should be inserted in front or at the end
 *
Dave Jones's avatar
Dave Jones committed
1130
 * Register a sysctl table hierarchy. @table should be a filled in ctl_table
Linus Torvalds's avatar
Linus Torvalds committed
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
 * array. An entry with a ctl_name of 0 terminates the table. 
 *
 * The members of the &ctl_table structure are used as follows:
 *
 * ctl_name - This is the numeric sysctl value used by sysctl(2). The number
 *            must be unique within that level of sysctl
 *
 * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not
 *            enter a sysctl file
 *
 * data - a pointer to data for use by proc_handler
 *
 * maxlen - the maximum size in bytes of the data
 *
 * mode - the file permissions for the /proc/sys file, and for sysctl(2)
 *
 * child - a pointer to the child sysctl table if this entry is a directory, or
 *         %NULL.
 *
 * proc_handler - the text handler routine (described below)
 *
 * strategy - the strategy routine (described below)
 *
 * de - for internal use by the sysctl routines
 *
 * extra1, extra2 - extra pointers usable by the proc handler routines
 *
 * Leaf nodes in the sysctl tree will be represented by a single file
 * under /proc; non-leaf nodes will be represented by directories.
 *
 * sysctl(2) can automatically manage read and write requests through
 * the sysctl table.  The data and maxlen fields of the ctl_table
 * struct enable minimal validation of the values being written to be
 * performed, and the mode field allows minimal authentication.
 *
 * More sophisticated management can be enabled by the provision of a
 * strategy routine with the table entry.  This will be called before
 * any automatic read or write of the data is performed.
 *
 * The strategy routine may return
 *
 * < 0 - Error occurred (error is passed to user process)
 *
 * 0   - OK - proceed with automatic read or write.
 *
 * > 0 - OK - read or write has been done by the strategy routine, so
 *       return immediately.
 *
 * There must be a proc_handler routine for any terminal nodes
 * mirrored under /proc/sys (non-terminals are handled by a built-in
 * directory handler).  Several default handlers are available to
 * cover common cases -
 *
 * proc_dostring(), proc_dointvec(), proc_dointvec_jiffies(),
1185 1186
 * proc_dointvec_userhz_jiffies(), proc_dointvec_minmax(), 
 * proc_doulongvec_ms_jiffies_minmax(), proc_doulongvec_minmax()
Linus Torvalds's avatar
Linus Torvalds committed
1187 1188 1189 1190 1191 1192 1193
 *
 * It is the handler's job to read the input buffer from user memory
 * and process it. The handler should return 0 on success.
 *
 * This routine returns %NULL on a failure to register, and a pointer
 * to the table header on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1194 1195 1196 1197 1198 1199
struct ctl_table_header *register_sysctl_table(ctl_table * table, 
					       int insert_at_head)
{
	struct ctl_table_header *tmp;
	tmp = kmalloc(sizeof(struct ctl_table_header), GFP_KERNEL);
	if (!tmp)
Linus Torvalds's avatar
Linus Torvalds committed
1200
		return NULL;
Linus Torvalds's avatar
Linus Torvalds committed
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
	tmp->ctl_table = table;
	INIT_LIST_HEAD(&tmp->ctl_entry);
	if (insert_at_head)
		list_add(&tmp->ctl_entry, &root_table_header.ctl_entry);
	else
		list_add_tail(&tmp->ctl_entry, &root_table_header.ctl_entry);
#ifdef CONFIG_PROC_FS
	register_proc_table(table, proc_sys_root);
#endif
	return tmp;
}

Linus Torvalds's avatar
Linus Torvalds committed
1213
/**
Dave Jones's avatar
Dave Jones committed
1214
 * unregister_sysctl_table - unregister a sysctl table hierarchy
Linus Torvalds's avatar
Linus Torvalds committed
1215 1216 1217 1218
 * @header: the header returned from register_sysctl_table
 *
 * Unregisters the sysctl table and all children. proc entries may not
 * actually be removed until they are no longer used by anyone.
Linus Torvalds's avatar
Linus Torvalds committed
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
 */
void unregister_sysctl_table(struct ctl_table_header * header)
{
	list_del(&header->ctl_entry);
#ifdef CONFIG_PROC_FS
	unregister_proc_table(header->ctl_table, proc_sys_root);
#endif
	kfree(header);
}

/*
 * /proc/sys support
 */

#ifdef CONFIG_PROC_FS

/* Scan the sysctl entries in table and add them all into /proc */
static void register_proc_table(ctl_table * table, struct proc_dir_entry *root)
{
	struct proc_dir_entry *de;
	int len;
	mode_t mode;
	
	for (; table->ctl_name; table++) {
		/* Can't do anything without a proc name. */
		if (!table->procname)
			continue;
		/* Maybe we can't do anything with it... */
		if (!table->proc_handler && !table->child) {
			printk(KERN_WARNING "SYSCTL: Can't register %s\n",
				table->procname);
			continue;
		}

		len = strlen(table->procname);
		mode = table->mode;

		de = NULL;
		if (table->proc_handler)
			mode |= S_IFREG;
		else {
			mode |= S_IFDIR;
			for (de = root->subdir; de; de = de->next) {
				if (proc_match(len, table->procname, de))
					break;
			}
			/* If the subdir exists already, de is non-NULL */
		}

		if (!de) {
			de = create_proc_entry(table->procname, mode, root);
			if (!de)
				continue;
			de->data = (void *) table;
1273
			if (table->proc_handler)
Linus Torvalds's avatar
Linus Torvalds committed
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
				de->proc_fops = &proc_sys_file_operations;
		}
		table->de = de;
		if (de->mode & S_IFDIR)
			register_proc_table(table->child, de);
	}
}

/*
 * Unregister a /proc sysctl table and any subdirectories.
 */
static void unregister_proc_table(ctl_table * table, struct proc_dir_entry *root)
{
	struct proc_dir_entry *de;
	for (; table->ctl_name; table++) {
		if (!(de = table->de))
			continue;
		if (de->mode & S_IFDIR) {
			if (!table->child) {
				printk (KERN_ALERT "Help - malformed sysctl tree on free\n");
				continue;
			}
			unregister_proc_table(table->child, de);

			/* Don't unregister directories which still have entries.. */
			if (de->subdir)
				continue;
		}

		/* Don't unregister proc entries that are still being used.. */
		if (atomic_read(&de->count))
			continue;

		table->de = NULL;
		remove_proc_entry(table->procname, root);
	}
}

1312
static ssize_t do_rw_proc(int write, struct file * file, char __user * buf,
Linus Torvalds's avatar
Linus Torvalds committed
1313 1314 1315 1316 1317 1318 1319 1320
			  size_t count, loff_t *ppos)
{
	int op;
	struct proc_dir_entry *de;
	struct ctl_table *table;
	size_t res;
	ssize_t error;
	
Alexander Viro's avatar
Alexander Viro committed
1321
	de = PDE(file->f_dentry->d_inode);
Linus Torvalds's avatar
Linus Torvalds committed
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
	if (!de || !de->data)
		return -ENOTDIR;
	table = (struct ctl_table *) de->data;
	if (!table || !table->proc_handler)
		return -ENOTDIR;
	op = (write ? 002 : 004);
	if (ctl_perm(table, op))
		return -EPERM;
	
	res = count;

1333
	error = (*table->proc_handler) (table, write, file, buf, &res, ppos);
Linus Torvalds's avatar
Linus Torvalds committed
1334 1335 1336 1337 1338
	if (error)
		return error;
	return res;
}

1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
static int proc_opensys(struct inode *inode, struct file *file)
{
	if (file->f_mode & FMODE_WRITE) {
		/*
		 * sysctl entries that are not writable,
		 * are _NOT_ writable, capabilities or not.
		 */
		if (!(inode->i_mode & S_IWUSR))
			return -EPERM;
	}

	return 0;
}

1353
static ssize_t proc_readsys(struct file * file, char __user * buf,
Linus Torvalds's avatar
Linus Torvalds committed
1354 1355 1356 1357 1358
			    size_t count, loff_t *ppos)
{
	return do_rw_proc(0, file, buf, count, ppos);
}

1359
static ssize_t proc_writesys(struct file * file, const char __user * buf,
Linus Torvalds's avatar
Linus Torvalds committed
1360 1361
			     size_t count, loff_t *ppos)
{
1362
	return do_rw_proc(1, file, (char __user *) buf, count, ppos);
Linus Torvalds's avatar
Linus Torvalds committed
1363 1364
}

Linus Torvalds's avatar
Linus Torvalds committed
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
/**
 * proc_dostring - read a string sysctl
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes a string from/to the user buffer. If the kernel
 * buffer provided is not large enough to hold the string, the
 * string is truncated. The copied string is %NULL-terminated.
 * If the string is being read by the user process, it is copied
 * and a newline '\n' is added. It is truncated if the buffer is
 * not large enough.
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1382
int proc_dostring(ctl_table *table, int write, struct file *filp,
1383
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1384
{
Linus Torvalds's avatar
Linus Torvalds committed
1385
	size_t len;
1386 1387
	char __user *p;
	char c;
Linus Torvalds's avatar
Linus Torvalds committed
1388 1389
	
	if (!table->data || !table->maxlen || !*lenp ||
1390
	    (*ppos && !write)) {
Linus Torvalds's avatar
Linus Torvalds committed
1391 1392 1393 1394 1395 1396 1397 1398
		*lenp = 0;
		return 0;
	}
	
	if (write) {
		len = 0;
		p = buffer;
		while (len < *lenp) {
1399
			if (get_user(c, p++))
Linus Torvalds's avatar
Linus Torvalds committed
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
				return -EFAULT;
			if (c == 0 || c == '\n')
				break;
			len++;
		}
		if (len >= table->maxlen)
			len = table->maxlen-1;
		if(copy_from_user(table->data, buffer, len))
			return -EFAULT;
		((char *) table->data)[len] = 0;
1410
		*ppos += *lenp;
Linus Torvalds's avatar
Linus Torvalds committed
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
	} else {
		len = strlen(table->data);
		if (len > table->maxlen)
			len = table->maxlen;
		if (len > *lenp)
			len = *lenp;
		if (len)
			if(copy_to_user(buffer, table->data, len))
				return -EFAULT;
		if (len < *lenp) {
1421
			if(put_user('\n', ((char __user *) buffer) + len))
Linus Torvalds's avatar
Linus Torvalds committed
1422 1423 1424 1425
				return -EFAULT;
			len++;
		}
		*lenp = len;
1426
		*ppos += len;
Linus Torvalds's avatar
Linus Torvalds committed
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
	}
	return 0;
}

/*
 *	Special case of dostring for the UTS structure. This has locks
 *	to observe. Should this be in kernel/sys.c ????
 */
 
static int proc_doutsstring(ctl_table *table, int write, struct file *filp,
1437
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1438 1439 1440 1441 1442
{
	int r;

	if (!write) {
		down_read(&uts_sem);
1443
		r=proc_dostring(table,0,filp,buffer,lenp, ppos);
Linus Torvalds's avatar
Linus Torvalds committed
1444 1445 1446
		up_read(&uts_sem);
	} else {
		down_write(&uts_sem);
1447
		r=proc_dostring(table,1,filp,buffer,lenp, ppos);
Linus Torvalds's avatar
Linus Torvalds committed
1448 1449 1450 1451 1452
		up_write(&uts_sem);
	}
	return r;
}

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
static int do_proc_dointvec_conv(int *negp, unsigned long *lvalp,
				 int *valp,
				 int write, void *data)
{
	if (write) {
		*valp = *negp ? -*lvalp : *lvalp;
	} else {
		int val = *valp;
		if (val < 0) {
			*negp = -1;
			*lvalp = (unsigned long)-val;
		} else {
			*negp = 0;
			*lvalp = (unsigned long)val;
		}
	}
	return 0;
}
Linus Torvalds's avatar
Linus Torvalds committed
1471 1472

static int do_proc_dointvec(ctl_table *table, int write, struct file *filp,
1473
		  void __user *buffer, size_t *lenp, loff_t *ppos,
1474 1475 1476
		  int (*conv)(int *negp, unsigned long *lvalp, int *valp,
			      int write, void *data),
		  void *data)
Linus Torvalds's avatar
Linus Torvalds committed
1477
{
1478
#define TMPBUFLEN 21
Linus Torvalds's avatar
Linus Torvalds committed
1479
	int *i, vleft, first=1, neg, val;
1480
	unsigned long lval;
Linus Torvalds's avatar
Linus Torvalds committed
1481 1482
	size_t left, len;
	
Linus Torvalds's avatar
Linus Torvalds committed
1483
	char buf[TMPBUFLEN], *p;
1484
	char __user *s = buffer;
Linus Torvalds's avatar
Linus Torvalds committed
1485 1486
	
	if (!table->data || !table->maxlen || !*lenp ||
1487
	    (*ppos && !write)) {
Linus Torvalds's avatar
Linus Torvalds committed
1488 1489 1490 1491 1492
		*lenp = 0;
		return 0;
	}
	
	i = (int *) table->data;
1493
	vleft = table->maxlen / sizeof(*i);
Linus Torvalds's avatar
Linus Torvalds committed
1494
	left = *lenp;
1495 1496 1497 1498

	if (!conv)
		conv = do_proc_dointvec_conv;

Linus Torvalds's avatar
Linus Torvalds committed
1499 1500 1501 1502
	for (; left && vleft--; i++, first=0) {
		if (write) {
			while (left) {
				char c;
1503
				if (get_user(c, s))
Linus Torvalds's avatar
Linus Torvalds committed
1504 1505 1506 1507
					return -EFAULT;
				if (!isspace(c))
					break;
				left--;
1508
				s++;
Linus Torvalds's avatar
Linus Torvalds committed
1509 1510 1511 1512 1513
			}
			if (!left)
				break;
			neg = 0;
			len = left;
1514 1515
			if (len > sizeof(buf) - 1)
				len = sizeof(buf) - 1;
1516
			if (copy_from_user(buf, s, len))
Linus Torvalds's avatar
Linus Torvalds committed
1517 1518 1519 1520 1521 1522 1523 1524 1525
				return -EFAULT;
			buf[len] = 0;
			p = buf;
			if (*p == '-' && left > 1) {
				neg = 1;
				left--, p++;
			}
			if (*p < '0' || *p > '9')
				break;
1526 1527 1528

			lval = simple_strtoul(p, &p, 0);

Linus Torvalds's avatar
Linus Torvalds committed
1529 1530 1531 1532 1533
			len = p-buf;
			if ((len < left) && *p && !isspace(*p))
				break;
			if (neg)
				val = -val;
1534
			s += len;
Linus Torvalds's avatar
Linus Torvalds committed
1535
			left -= len;
1536 1537 1538

			if (conv(&neg, &lval, i, 1, data))
				break;
Linus Torvalds's avatar
Linus Torvalds committed
1539 1540 1541 1542
		} else {
			p = buf;
			if (!first)
				*p++ = '\t';
1543 1544 1545 1546 1547
	
			if (conv(&neg, &lval, i, 0, data))
				break;

			sprintf(p, "%s%lu", neg ? "-" : "", lval);
Linus Torvalds's avatar
Linus Torvalds committed
1548 1549 1550
			len = strlen(buf);
			if (len > left)
				len = left;
1551
			if(copy_to_user(s, buf, len))
Linus Torvalds's avatar
Linus Torvalds committed
1552 1553
				return -EFAULT;
			left -= len;
1554
			s += len;
Linus Torvalds's avatar
Linus Torvalds committed
1555 1556 1557 1558
		}
	}

	if (!write && !first && left) {
1559
		if(put_user('\n', s))
Linus Torvalds's avatar
Linus Torvalds committed
1560
			return -EFAULT;
1561
		left--, s++;
Linus Torvalds's avatar
Linus Torvalds committed
1562 1563 1564 1565
	}
	if (write) {
		while (left) {
			char c;
1566
			if (get_user(c, s++))
Linus Torvalds's avatar
Linus Torvalds committed
1567 1568 1569 1570 1571 1572 1573 1574 1575
				return -EFAULT;
			if (!isspace(c))
				break;
			left--;
		}
	}
	if (write && first)
		return -EINVAL;
	*lenp -= left;
1576
	*ppos += *lenp;
Linus Torvalds's avatar
Linus Torvalds committed
1577
	return 0;
1578
#undef TMPBUFLEN
Linus Torvalds's avatar
Linus Torvalds committed
1579 1580
}

Linus Torvalds's avatar
Linus Torvalds committed
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
/**
 * proc_dointvec - read a vector of integers
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
 * values from/to the user buffer, treated as an ASCII string. 
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1594
int proc_dointvec(ctl_table *table, int write, struct file *filp,
1595
		     void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1596
{
1597
    return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
		    	    NULL,NULL);
}

#define OP_SET	0
#define OP_AND	1
#define OP_OR	2
#define OP_MAX	3
#define OP_MIN	4

static int do_proc_dointvec_bset_conv(int *negp, unsigned long *lvalp,
				      int *valp,
				      int write, void *data)
{
	int op = *(int *)data;
	if (write) {
		int val = *negp ? -*lvalp : *lvalp;
		switch(op) {
		case OP_SET:	*valp = val; break;
		case OP_AND:	*valp &= val; break;
		case OP_OR:	*valp |= val; break;
		case OP_MAX:	if(*valp < val)
					*valp = val;
				break;
		case OP_MIN:	if(*valp > val)
				*valp = val;
				break;
		}
	} else {
		int val = *valp;
		if (val < 0) {
			*negp = -1;
			*lvalp = (unsigned long)-val;
		} else {
			*negp = 0;
			*lvalp = (unsigned long)val;
		}
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1636 1637 1638 1639 1640 1641 1642
}

/*
 *	init may raise the set.
 */
 
int proc_dointvec_bset(ctl_table *table, int write, struct file *filp,
1643
			void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1644
{
1645 1646
	int op;

Linus Torvalds's avatar
Linus Torvalds committed
1647 1648 1649
	if (!capable(CAP_SYS_MODULE)) {
		return -EPERM;
	}
1650 1651

	op = (current->pid == 1) ? OP_SET : OP_AND;
1652
	return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
				do_proc_dointvec_bset_conv,&op);
}

struct do_proc_dointvec_minmax_conv_param {
	int *min;
	int *max;
};

static int do_proc_dointvec_minmax_conv(int *negp, unsigned long *lvalp, 
					int *valp, 
					int write, void *data)
{
	struct do_proc_dointvec_minmax_conv_param *param = data;
	if (write) {
		int val = *negp ? -*lvalp : *lvalp;
		if ((param->min && *param->min > val) ||
		    (param->max && *param->max < val))
			return -EINVAL;
		*valp = val;
	} else {
		int val = *valp;
		if (val < 0) {
			*negp = -1;
			*lvalp = (unsigned long)-val;
		} else {
			*negp = 0;
			*lvalp = (unsigned long)val;
		}
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1683 1684
}

Linus Torvalds's avatar
Linus Torvalds committed
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
/**
 * proc_dointvec_minmax - read a vector of integers with min/max values
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
 * values from/to the user buffer, treated as an ASCII string.
 *
 * This routine will ensure the values are within the range specified by
 * table->extra1 (min) and table->extra2 (max).
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1701
int proc_dointvec_minmax(ctl_table *table, int write, struct file *filp,
1702
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1703
{
1704 1705 1706 1707
	struct do_proc_dointvec_minmax_conv_param param = {
		.min = (int *) table->extra1,
		.max = (int *) table->extra2,
	};
1708
	return do_proc_dointvec(table, write, filp, buffer, lenp, ppos,
1709
				do_proc_dointvec_minmax_conv, &param);
Linus Torvalds's avatar
Linus Torvalds committed
1710 1711 1712 1713
}

static int do_proc_doulongvec_minmax(ctl_table *table, int write,
				     struct file *filp,
1714 1715
				     void __user *buffer,
				     size_t *lenp, loff_t *ppos,
Linus Torvalds's avatar
Linus Torvalds committed
1716 1717 1718
				     unsigned long convmul,
				     unsigned long convdiv)
{
1719
#define TMPBUFLEN 21
Linus Torvalds's avatar
Linus Torvalds committed
1720
	unsigned long *i, *min, *max, val;
Linus Torvalds's avatar
Linus Torvalds committed
1721 1722
	int vleft, first=1, neg;
	size_t len, left;
Linus Torvalds's avatar
Linus Torvalds committed
1723
	char buf[TMPBUFLEN], *p;
1724
	char __user *s = buffer;
Linus Torvalds's avatar
Linus Torvalds committed
1725 1726
	
	if (!table->data || !table->maxlen || !*lenp ||
1727
	    (*ppos && !write)) {
Linus Torvalds's avatar
Linus Torvalds committed
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
		*lenp = 0;
		return 0;
	}
	
	i = (unsigned long *) table->data;
	min = (unsigned long *) table->extra1;
	max = (unsigned long *) table->extra2;
	vleft = table->maxlen / sizeof(unsigned long);
	left = *lenp;
	
1738
	for (; left && vleft--; i++, min++, max++, first=0) {
Linus Torvalds's avatar
Linus Torvalds committed
1739 1740 1741
		if (write) {
			while (left) {
				char c;
1742
				if (get_user(c, s))
Linus Torvalds's avatar
Linus Torvalds committed
1743 1744 1745 1746
					return -EFAULT;
				if (!isspace(c))
					break;
				left--;
1747
				s++;
Linus Torvalds's avatar
Linus Torvalds committed
1748 1749 1750 1751 1752 1753 1754
			}
			if (!left)
				break;
			neg = 0;
			len = left;
			if (len > TMPBUFLEN-1)
				len = TMPBUFLEN-1;
1755
			if (copy_from_user(buf, s, len))
Linus Torvalds's avatar
Linus Torvalds committed
1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
				return -EFAULT;
			buf[len] = 0;
			p = buf;
			if (*p == '-' && left > 1) {
				neg = 1;
				left--, p++;
			}
			if (*p < '0' || *p > '9')
				break;
			val = simple_strtoul(p, &p, 0) * convmul / convdiv ;
			len = p-buf;
			if ((len < left) && *p && !isspace(*p))
				break;
			if (neg)
				val = -val;
1771
			s += len;
Linus Torvalds's avatar
Linus Torvalds committed
1772 1773 1774 1775
			left -= len;

			if(neg)
				continue;
1776
			if ((min && val < *min) || (max && val > *max))
Linus Torvalds's avatar
Linus Torvalds committed
1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
				continue;
			*i = val;
		} else {
			p = buf;
			if (!first)
				*p++ = '\t';
			sprintf(p, "%lu", convdiv * (*i) / convmul);
			len = strlen(buf);
			if (len > left)
				len = left;
1787
			if(copy_to_user(s, buf, len))
Linus Torvalds's avatar
Linus Torvalds committed
1788 1789
				return -EFAULT;
			left -= len;
1790
			s += len;
Linus Torvalds's avatar
Linus Torvalds committed
1791 1792 1793 1794
		}
	}

	if (!write && !first && left) {
1795
		if(put_user('\n', s))
Linus Torvalds's avatar
Linus Torvalds committed
1796
			return -EFAULT;
1797
		left--, s++;
Linus Torvalds's avatar
Linus Torvalds committed
1798 1799 1800 1801
	}
	if (write) {
		while (left) {
			char c;
1802
			if (get_user(c, s++))
Linus Torvalds's avatar
Linus Torvalds committed
1803 1804 1805 1806 1807 1808 1809 1810 1811
				return -EFAULT;
			if (!isspace(c))
				break;
			left--;
		}
	}
	if (write && first)
		return -EINVAL;
	*lenp -= left;
1812
	*ppos += *lenp;
Linus Torvalds's avatar
Linus Torvalds committed
1813 1814 1815 1816
	return 0;
#undef TMPBUFLEN
}

Linus Torvalds's avatar
Linus Torvalds committed
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832
/**
 * proc_doulongvec_minmax - read a vector of long integers with min/max values
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
 * values from/to the user buffer, treated as an ASCII string.
 *
 * This routine will ensure the values are within the range specified by
 * table->extra1 (min) and table->extra2 (max).
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1833
int proc_doulongvec_minmax(ctl_table *table, int write, struct file *filp,
1834
			   void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1835
{
1836
    return do_proc_doulongvec_minmax(table, write, filp, buffer, lenp, ppos, 1l, 1l);
Linus Torvalds's avatar
Linus Torvalds committed
1837 1838
}

Linus Torvalds's avatar
Linus Torvalds committed
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855
/**
 * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
 * values from/to the user buffer, treated as an ASCII string. The values
 * are treated as milliseconds, and converted to jiffies when they are stored.
 *
 * This routine will ensure the values are within the range specified by
 * table->extra1 (min) and table->extra2 (max).
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1856 1857
int proc_doulongvec_ms_jiffies_minmax(ctl_table *table, int write,
				      struct file *filp,
1858 1859
				      void __user *buffer,
				      size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1860 1861
{
    return do_proc_doulongvec_minmax(table, write, filp, buffer,
1862
				     lenp, ppos, HZ, 1000l);
Linus Torvalds's avatar
Linus Torvalds committed
1863 1864 1865
}


1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
static int do_proc_dointvec_jiffies_conv(int *negp, unsigned long *lvalp,
					 int *valp,
					 int write, void *data)
{
	if (write) {
		*valp = *negp ? -(*lvalp*HZ) : (*lvalp*HZ);
	} else {
		int val = *valp;
		unsigned long lval;
		if (val < 0) {
			*negp = -1;
			lval = (unsigned long)-val;
		} else {
			*negp = 0;
			lval = (unsigned long)val;
		}
		*lvalp = lval / HZ;
	}
	return 0;
}

static int do_proc_dointvec_userhz_jiffies_conv(int *negp, unsigned long *lvalp,
						int *valp,
						int write, void *data)
{
	if (write) {
		*valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
	} else {
		int val = *valp;
		unsigned long lval;
		if (val < 0) {
			*negp = -1;
			lval = (unsigned long)-val;
		} else {
			*negp = 0;
			lval = (unsigned long)val;
		}
		*lvalp = jiffies_to_clock_t(lval);
	}
	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
/**
 * proc_dointvec_jiffies - read a vector of integers as seconds
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
 * values from/to the user buffer, treated as an ASCII string. 
 * The values read are assumed to be in seconds, and are converted into
 * jiffies.
 *
 * Returns 0 on success.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1923
int proc_dointvec_jiffies(ctl_table *table, int write, struct file *filp,
1924
			  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1925
{
1926
    return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
		    	    do_proc_dointvec_jiffies_conv,NULL);
}

/**
 * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
 * @table: the sysctl table
 * @write: %TRUE if this is a write to the sysctl file
 * @filp: the file structure
 * @buffer: the user buffer
 * @lenp: the size of the user buffer
 *
 * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
 * values from/to the user buffer, treated as an ASCII string. 
 * The values read are assumed to be in 1/USER_HZ seconds, and 
 * are converted into jiffies.
 *
 * Returns 0 on success.
 */
int proc_dointvec_userhz_jiffies(ctl_table *table, int write, struct file *filp,
1946
				 void __user *buffer, size_t *lenp, loff_t *ppos)
1947
{
1948
    return do_proc_dointvec(table,write,filp,buffer,lenp,ppos,
1949
		    	    do_proc_dointvec_userhz_jiffies_conv,NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1950 1951 1952 1953 1954
}

#else /* CONFIG_PROC_FS */

int proc_dostring(ctl_table *table, int write, struct file *filp,
1955
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1956 1957 1958 1959 1960
{
	return -ENOSYS;
}

static int proc_doutsstring(ctl_table *table, int write, struct file *filp,
1961
			    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1962 1963 1964 1965 1966
{
	return -ENOSYS;
}

int proc_dointvec(ctl_table *table, int write, struct file *filp,
1967
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1968 1969 1970 1971 1972
{
	return -ENOSYS;
}

int proc_dointvec_bset(ctl_table *table, int write, struct file *filp,
1973
			void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1974 1975 1976 1977 1978
{
	return -ENOSYS;
}

int proc_dointvec_minmax(ctl_table *table, int write, struct file *filp,
1979
		    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1980 1981 1982 1983 1984
{
	return -ENOSYS;
}

int proc_dointvec_jiffies(ctl_table *table, int write, struct file *filp,
1985
		    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1986 1987 1988 1989
{
	return -ENOSYS;
}

1990
int proc_dointvec_userhz_jiffies(ctl_table *table, int write, struct file *filp,
1991
		    void __user *buffer, size_t *lenp, loff_t *ppos)
1992 1993 1994 1995
{
	return -ENOSYS;
}

Linus Torvalds's avatar
Linus Torvalds committed
1996
int proc_doulongvec_minmax(ctl_table *table, int write, struct file *filp,
1997
		    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
1998 1999 2000 2001 2002 2003
{
	return -ENOSYS;
}

int proc_doulongvec_ms_jiffies_minmax(ctl_table *table, int write,
				      struct file *filp,
2004 2005
				      void __user *buffer,
				      size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
{
    return -ENOSYS;
}


#endif /* CONFIG_PROC_FS */


/*
 * General sysctl support routines 
 */

/* The generic string strategy routine: */
2019
int sysctl_string(ctl_table *table, int __user *name, int nlen,
2020 2021
		  void __user *oldval, size_t __user *oldlenp,
		  void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2022
{
Linus Torvalds's avatar
Linus Torvalds committed
2023
	size_t l, len;
Linus Torvalds's avatar
Linus Torvalds committed
2024 2025 2026 2027 2028
	
	if (!table->data || !table->maxlen) 
		return -ENOTDIR;
	
	if (oldval && oldlenp) {
2029
		if (get_user(len, oldlenp))
Linus Torvalds's avatar
Linus Torvalds committed
2030 2031 2032 2033 2034 2035 2036 2037
			return -EFAULT;
		if (len) {
			l = strlen(table->data);
			if (len > l) len = l;
			if (len >= table->maxlen)
				len = table->maxlen;
			if(copy_to_user(oldval, table->data, len))
				return -EFAULT;
2038
			if(put_user(0, ((char __user *) oldval) + len))
Linus Torvalds's avatar
Linus Torvalds committed
2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
				return -EFAULT;
			if(put_user(len, oldlenp))
				return -EFAULT;
		}
	}
	if (newval && newlen) {
		len = newlen;
		if (len > table->maxlen)
			len = table->maxlen;
		if(copy_from_user(table->data, newval, len))
			return -EFAULT;
		if (len == table->maxlen)
			len--;
		((char *) table->data)[len] = 0;
	}
	return 0;
}

/*
 * This function makes sure that all of the integers in the vector
 * are between the minimum and maximum values given in the arrays
 * table->extra1 and table->extra2, respectively.
 */
2062 2063 2064
int sysctl_intvec(ctl_table *table, int __user *name, int nlen,
		void __user *oldval, size_t __user *oldlenp,
		void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2065 2066 2067
{

	if (newval && newlen) {
2068 2069 2070 2071 2072 2073
		int __user *vec = (int __user *) newval;
		int *min = (int *) table->extra1;
		int *max = (int *) table->extra2;
		size_t length;
		int i;

Linus Torvalds's avatar
Linus Torvalds committed
2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085
		if (newlen % sizeof(int) != 0)
			return -EINVAL;

		if (!table->extra1 && !table->extra2)
			return 0;

		if (newlen > table->maxlen)
			newlen = table->maxlen;
		length = newlen / sizeof(int);

		for (i = 0; i < length; i++) {
			int value;
2086 2087
			if (get_user(value, vec + i))
				return -EFAULT;
Linus Torvalds's avatar
Linus Torvalds committed
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
			if (min && value < min[i])
				return -EINVAL;
			if (max && value > max[i])
				return -EINVAL;
		}
	}
	return 0;
}

/* Strategy function to convert jiffies to seconds */ 
2098 2099 2100
int sysctl_jiffies(ctl_table *table, int __user *name, int nlen,
		void __user *oldval, size_t __user *oldlenp,
		void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2101 2102 2103 2104 2105 2106 2107 2108 2109
{
	if (oldval) {
		size_t olen;
		if (oldlenp) { 
			if (get_user(olen, oldlenp))
				return -EFAULT;
			if (olen!=sizeof(int))
				return -EINVAL; 
		}
2110
		if (put_user(*(int *)(table->data)/HZ, (int __user *)oldval) ||
Linus Torvalds's avatar
Linus Torvalds committed
2111 2112 2113 2114 2115 2116 2117
		    (oldlenp && put_user(sizeof(int),oldlenp)))
			return -EFAULT;
	}
	if (newval && newlen) { 
		int new;
		if (newlen != sizeof(int))
			return -EINVAL; 
2118
		if (get_user(new, (int __user *)newval))
Linus Torvalds's avatar
Linus Torvalds committed
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
			return -EFAULT;
		*(int *)(table->data) = new*HZ; 
	}
	return 1;
}


#else /* CONFIG_SYSCTL */


Andrew Morton's avatar
Andrew Morton committed
2129
asmlinkage long sys_sysctl(struct __sysctl_args __user *args)
Linus Torvalds's avatar
Linus Torvalds committed
2130 2131 2132 2133
{
	return -ENOSYS;
}

2134 2135 2136
int sysctl_string(ctl_table *table, int __user *name, int nlen,
		  void __user *oldval, size_t __user *oldlenp,
		  void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2137 2138 2139 2140
{
	return -ENOSYS;
}

2141 2142 2143
int sysctl_intvec(ctl_table *table, int __user *name, int nlen,
		void __user *oldval, size_t __user *oldlenp,
		void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2144 2145 2146 2147
{
	return -ENOSYS;
}

2148 2149 2150
int sysctl_jiffies(ctl_table *table, int __user *name, int nlen,
		void __user *oldval, size_t __user *oldlenp,
		void __user *newval, size_t newlen, void **context)
Linus Torvalds's avatar
Linus Torvalds committed
2151 2152 2153 2154 2155
{
	return -ENOSYS;
}

int proc_dostring(ctl_table *table, int write, struct file *filp,
2156
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2157 2158 2159 2160 2161
{
	return -ENOSYS;
}

int proc_dointvec(ctl_table *table, int write, struct file *filp,
2162
		  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2163 2164 2165 2166 2167
{
	return -ENOSYS;
}

int proc_dointvec_bset(ctl_table *table, int write, struct file *filp,
2168
			void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2169 2170 2171 2172 2173
{
	return -ENOSYS;
}

int proc_dointvec_minmax(ctl_table *table, int write, struct file *filp,
2174
		    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2175 2176 2177 2178 2179
{
	return -ENOSYS;
}

int proc_dointvec_jiffies(ctl_table *table, int write, struct file *filp,
2180
			  void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2181 2182 2183 2184
{
	return -ENOSYS;
}

2185
int proc_dointvec_userhz_jiffies(ctl_table *table, int write, struct file *filp,
2186
			  void __user *buffer, size_t *lenp, loff_t *ppos)
2187 2188 2189 2190
{
	return -ENOSYS;
}

Linus Torvalds's avatar
Linus Torvalds committed
2191
int proc_doulongvec_minmax(ctl_table *table, int write, struct file *filp,
2192
		    void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2193 2194 2195 2196 2197 2198
{
	return -ENOSYS;
}

int proc_doulongvec_ms_jiffies_minmax(ctl_table *table, int write,
				      struct file *filp,
2199 2200
				      void __user *buffer,
				      size_t *lenp, loff_t *ppos)
Linus Torvalds's avatar
Linus Torvalds committed
2201 2202 2203 2204 2205 2206 2207
{
    return -ENOSYS;
}

struct ctl_table_header * register_sysctl_table(ctl_table * table, 
						int insert_at_head)
{
2208
	return NULL;
Linus Torvalds's avatar
Linus Torvalds committed
2209 2210 2211 2212 2213 2214 2215
}

void unregister_sysctl_table(struct ctl_table_header * table)
{
}

#endif /* CONFIG_SYSCTL */
2216 2217 2218 2219 2220 2221 2222 2223

/*
 * No sense putting this after each symbol definition, twice,
 * exception granted :-)
 */
EXPORT_SYMBOL(proc_dointvec);
EXPORT_SYMBOL(proc_dointvec_jiffies);
EXPORT_SYMBOL(proc_dointvec_minmax);
2224
EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
2225 2226 2227 2228 2229 2230 2231 2232
EXPORT_SYMBOL(proc_dostring);
EXPORT_SYMBOL(proc_doulongvec_minmax);
EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
EXPORT_SYMBOL(register_sysctl_table);
EXPORT_SYMBOL(sysctl_intvec);
EXPORT_SYMBOL(sysctl_jiffies);
EXPORT_SYMBOL(sysctl_string);
EXPORT_SYMBOL(unregister_sysctl_table);