Home | History | Annotate | Line # | Download | only in sysctl
sysctl.c revision 1.61
      1  1.61     lukem /*	$NetBSD: sysctl.c,v 1.61 2002/11/30 03:10:54 lukem Exp $	*/
      2   1.9   thorpej 
      3   1.1       cgd /*
      4   1.1       cgd  * Copyright (c) 1993
      5   1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.14  christos #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38  1.14  christos __COPYRIGHT(
     39   1.1       cgd "@(#) Copyright (c) 1993\n\
     40  1.14  christos 	The Regents of the University of California.  All rights reserved.\n");
     41   1.1       cgd #endif /* not lint */
     42   1.1       cgd 
     43   1.1       cgd #ifndef lint
     44   1.9   thorpej #if 0
     45   1.9   thorpej static char sccsid[] = "@(#)sysctl.c	8.1 (Berkeley) 6/6/93";
     46   1.9   thorpej #else
     47  1.61     lukem __RCSID("$NetBSD: sysctl.c,v 1.61 2002/11/30 03:10:54 lukem Exp $");
     48   1.9   thorpej #endif
     49   1.1       cgd #endif /* not lint */
     50   1.1       cgd 
     51   1.1       cgd #include <sys/param.h>
     52   1.1       cgd #include <sys/gmon.h>
     53   1.1       cgd #include <sys/stat.h>
     54   1.1       cgd #include <sys/sysctl.h>
     55   1.1       cgd #include <sys/socket.h>
     56  1.17   thorpej #include <sys/mount.h>
     57  1.19   thorpej #include <sys/mbuf.h>
     58  1.22    bouyer #include <sys/resource.h>
     59  1.38       mrg #include <uvm/uvm_param.h>
     60   1.1       cgd #include <machine/cpu.h>
     61   1.1       cgd 
     62  1.17   thorpej #include <ufs/ufs/dinode.h>
     63  1.17   thorpej #include <ufs/ufs/dir.h>
     64  1.17   thorpej #include <ufs/ffs/fs.h>
     65  1.17   thorpej #include <ufs/ffs/ffs_extern.h>
     66  1.17   thorpej 
     67  1.17   thorpej #include <nfs/rpcv2.h>
     68  1.17   thorpej #include <nfs/nfsproto.h>
     69  1.17   thorpej #include <nfs/nfs.h>
     70  1.17   thorpej 
     71   1.1       cgd #include <netinet/in.h>
     72   1.1       cgd #include <netinet/in_systm.h>
     73   1.1       cgd #include <netinet/ip.h>
     74   1.1       cgd #include <netinet/ip_icmp.h>
     75   1.1       cgd #include <netinet/icmp_var.h>
     76   1.1       cgd #include <netinet/ip_var.h>
     77   1.1       cgd #include <netinet/udp.h>
     78   1.1       cgd #include <netinet/udp_var.h>
     79   1.8   thorpej #include <netinet/tcp.h>
     80   1.8   thorpej #include <netinet/tcp_timer.h>
     81   1.8   thorpej #include <netinet/tcp_var.h>
     82   1.1       cgd 
     83  1.20    itojun #ifdef INET6
     84  1.24    itojun #include <netinet/ip6.h>
     85  1.24    itojun #include <netinet/icmp6.h>
     86  1.20    itojun #include <netinet6/ip6_var.h>
     87  1.20    itojun #include <netinet6/udp6.h>
     88  1.20    itojun #include <netinet6/udp6_var.h>
     89  1.20    itojun #ifdef TCP6
     90  1.20    itojun #include <netinet6/tcp6.h>
     91  1.20    itojun #include <netinet6/tcp6_timer.h>
     92  1.20    itojun #include <netinet6/tcp6_var.h>
     93  1.20    itojun #endif
     94  1.20    itojun #include <netinet6/pim6_var.h>
     95  1.20    itojun #endif /* INET6 */
     96  1.20    itojun 
     97  1.56  christos #include "../../sys/compat/linux/common/linux_exec.h"
     98  1.60      manu #include "../../sys/compat/irix/irix_sysctl.h"
     99  1.56  christos 
    100  1.20    itojun #ifdef IPSEC
    101  1.20    itojun #include <net/route.h>
    102  1.20    itojun #include <netinet6/ipsec.h>
    103  1.20    itojun #include <netkey/key_var.h>
    104  1.20    itojun #endif /* IPSEC */
    105  1.48  jdolecek 
    106  1.48  jdolecek #include <sys/pipe.h>
    107  1.20    itojun 
    108  1.14  christos #include <err.h>
    109  1.14  christos #include <ctype.h>
    110   1.1       cgd #include <errno.h>
    111   1.1       cgd #include <stdio.h>
    112   1.1       cgd #include <stdlib.h>
    113   1.1       cgd #include <string.h>
    114  1.15      tron #include <unistd.h>
    115   1.1       cgd 
    116   1.1       cgd struct ctlname topname[] = CTL_NAMES;
    117   1.1       cgd struct ctlname kernname[] = CTL_KERN_NAMES;
    118   1.1       cgd struct ctlname vmname[] = CTL_VM_NAMES;
    119  1.17   thorpej struct ctlname vfsname[] = CTL_VFS_NAMES;
    120   1.1       cgd struct ctlname netname[] = CTL_NET_NAMES;
    121   1.1       cgd struct ctlname hwname[] = CTL_HW_NAMES;
    122   1.1       cgd struct ctlname username[] = CTL_USER_NAMES;
    123  1.10   thorpej struct ctlname ddbname[] = CTL_DDB_NAMES;
    124   1.1       cgd struct ctlname debugname[CTL_DEBUG_MAXID];
    125   1.1       cgd #ifdef CTL_MACHDEP_NAMES
    126   1.1       cgd struct ctlname machdepname[] = CTL_MACHDEP_NAMES;
    127   1.1       cgd #endif
    128  1.56  christos struct ctlname emulname[] = CTL_EMUL_NAMES;
    129  1.56  christos struct ctlname vendorname[] = { { 0, 0 } };
    130  1.56  christos 
    131  1.22    bouyer /* this one is dummy, it's used only for '-a' or '-A' */
    132  1.22    bouyer struct ctlname procname[] = { {0, 0}, {"curproc", CTLTYPE_NODE} };
    133  1.22    bouyer 
    134   1.1       cgd char names[BUFSIZ];
    135   1.1       cgd 
    136   1.1       cgd struct list {
    137   1.1       cgd 	struct	ctlname *list;
    138   1.1       cgd 	int	size;
    139   1.1       cgd };
    140   1.1       cgd struct list toplist = { topname, CTL_MAXID };
    141   1.1       cgd struct list secondlevel[] = {
    142   1.1       cgd 	{ 0, 0 },			/* CTL_UNSPEC */
    143   1.1       cgd 	{ kernname, KERN_MAXID },	/* CTL_KERN */
    144   1.1       cgd 	{ vmname, VM_MAXID },		/* CTL_VM */
    145  1.17   thorpej 	{ vfsname, VFS_MAXID },		/* CTL_VFS */
    146   1.1       cgd 	{ netname, NET_MAXID },		/* CTL_NET */
    147   1.1       cgd 	{ 0, CTL_DEBUG_MAXID },		/* CTL_DEBUG */
    148   1.1       cgd 	{ hwname, HW_MAXID },		/* CTL_HW */
    149   1.1       cgd #ifdef CTL_MACHDEP_NAMES
    150   1.1       cgd 	{ machdepname, CPU_MAXID },	/* CTL_MACHDEP */
    151   1.1       cgd #else
    152   1.1       cgd 	{ 0, 0 },			/* CTL_MACHDEP */
    153   1.1       cgd #endif
    154   1.1       cgd 	{ username, USER_MAXID },	/* CTL_USER_NAMES */
    155  1.10   thorpej 	{ ddbname, DDBCTL_MAXID },	/* CTL_DDB_NAMES */
    156  1.22    bouyer 	{ procname, 2 },		/* dummy name */
    157  1.56  christos 	{ vendorname, 0 },		/* CTL_VENDOR_NAMES */
    158  1.56  christos 	{ emulname, EMUL_MAXID },	/* CTL_EMUL_NAMES */
    159  1.56  christos 
    160  1.43      fvdl 	{ 0, 0},
    161   1.1       cgd };
    162   1.1       cgd 
    163  1.58  sommerfe int	Aflag, aflag, nflag, qflag, wflag;
    164   1.1       cgd 
    165   1.1       cgd /*
    166   1.1       cgd  * Variables requiring special processing.
    167   1.1       cgd  */
    168   1.1       cgd #define	CLOCK		0x00000001
    169   1.1       cgd #define	BOOTTIME	0x00000002
    170   1.1       cgd #define	CONSDEV		0x00000004
    171  1.32    simonb #define	DISKINFO	0x00000008
    172  1.32    simonb #define	CPTIME		0x00000010
    173   1.1       cgd 
    174  1.22    bouyer /*
    175  1.22    bouyer  * A dummy type for limits, which requires special parsing
    176  1.22    bouyer  */
    177  1.22    bouyer #define CTLTYPE_LIMIT	((~0x1) << 31)
    178  1.22    bouyer 
    179  1.53    simonb int main(int, char *[]);
    180  1.14  christos 
    181  1.53    simonb static void listall(const char *, struct list *);
    182  1.53    simonb static void parse(char *, int);
    183  1.53    simonb static void debuginit(void);
    184  1.53    simonb static int sysctl_inet(char *, char **, int[], int, int *);
    185  1.20    itojun #ifdef INET6
    186  1.53    simonb static int sysctl_inet6(char *, char **, int[], int, int *);
    187  1.20    itojun #endif
    188  1.53    simonb static int sysctl_vfs(char *, char **, int[], int, int *);
    189  1.53    simonb static int sysctl_proc(char *, char **, int[], int, int *);
    190  1.56  christos static int sysctl_3rd(struct list *, char *, char **, int[], int, int *);
    191  1.56  christos 
    192  1.56  christos #ifdef IPSEC
    193  1.56  christos struct ctlname keynames[] = KEYCTL_NAMES;
    194  1.56  christos struct list keyvars = { keynames, KEYCTL_MAXID };
    195  1.56  christos #endif /*IPSEC*/
    196  1.56  christos struct ctlname vfsgenname[] = CTL_VFSGENCTL_NAMES;
    197  1.56  christos struct list vfsgenvars = { vfsgenname, VFSGEN_MAXID };
    198  1.56  christos struct ctlname mbufnames[] = CTL_MBUF_NAMES;
    199  1.56  christos struct list mbufvars = { mbufnames, MBUF_MAXID };
    200  1.56  christos struct ctlname pipenames[] = CTL_PIPE_NAMES;
    201  1.56  christos struct list pipevars = { pipenames, KERN_PIPE_MAXID };
    202  1.56  christos struct ctlname tkstatnames[] = KERN_TKSTAT_NAMES;
    203  1.56  christos struct list tkstatvars = { tkstatnames, KERN_TKSTAT_MAXID };
    204  1.56  christos 
    205  1.56  christos static int sysctl_linux(char *, char **, int[], int, int *);
    206  1.60      manu static int sysctl_irix(char *, char **, int[], int, int *);
    207  1.53    simonb static int findname(char *, char *, char **, struct list *);
    208  1.53    simonb static void usage(void);
    209  1.14  christos 
    210  1.55  christos #define USEAPP(s, a) \
    211  1.55  christos     if (flags) printf("%s: use '%s' to view this information\n", s, a)
    212  1.50     lukem 
    213  1.50     lukem 
    214   1.1       cgd int
    215  1.53    simonb main(int argc, char *argv[])
    216   1.1       cgd {
    217  1.27    tsarna 	char *fn = NULL;
    218   1.1       cgd 	int ch, lvl1;
    219   1.1       cgd 
    220  1.58  sommerfe 	while ((ch = getopt(argc, argv, "Aaf:nqw")) != -1) {
    221   1.1       cgd 		switch (ch) {
    222   1.1       cgd 
    223   1.1       cgd 		case 'A':
    224   1.1       cgd 			Aflag = 1;
    225   1.1       cgd 			break;
    226   1.1       cgd 
    227   1.1       cgd 		case 'a':
    228   1.1       cgd 			aflag = 1;
    229   1.1       cgd 			break;
    230   1.1       cgd 
    231  1.27    tsarna 		case 'f':
    232  1.27    tsarna 			fn = optarg;
    233  1.27    tsarna 			wflag = 1;
    234  1.27    tsarna 			break;
    235  1.27    tsarna 
    236   1.1       cgd 		case 'n':
    237   1.1       cgd 			nflag = 1;
    238   1.1       cgd 			break;
    239   1.1       cgd 
    240  1.58  sommerfe 		case 'q':
    241  1.58  sommerfe 			qflag = 1;
    242  1.58  sommerfe 			break;
    243  1.58  sommerfe 
    244   1.1       cgd 		case 'w':
    245   1.1       cgd 			wflag = 1;
    246   1.1       cgd 			break;
    247   1.1       cgd 
    248   1.1       cgd 		default:
    249   1.1       cgd 			usage();
    250   1.1       cgd 		}
    251   1.1       cgd 	}
    252  1.58  sommerfe 
    253  1.58  sommerfe 	if (qflag && !wflag)
    254  1.58  sommerfe 		usage();
    255  1.58  sommerfe 
    256   1.1       cgd 	argc -= optind;
    257   1.1       cgd 	argv += optind;
    258   1.1       cgd 
    259   1.1       cgd 	if (Aflag || aflag) {
    260   1.1       cgd 		debuginit();
    261   1.1       cgd 		for (lvl1 = 1; lvl1 < CTL_MAXID; lvl1++)
    262   1.1       cgd 			listall(topname[lvl1].ctl_name, &secondlevel[lvl1]);
    263  1.14  christos 		return 0;
    264   1.1       cgd 	}
    265  1.27    tsarna 
    266  1.27    tsarna 	if (fn) {
    267  1.27    tsarna 		FILE *fp;
    268  1.27    tsarna 		char *l;
    269  1.58  sommerfe 
    270  1.27    tsarna 		fp = fopen(fn, "r");
    271  1.27    tsarna 		if (fp == NULL) {
    272  1.27    tsarna 			err(1, "%s", fn);
    273  1.27    tsarna 		} else {
    274  1.41     enami 			for (; (l = fparseln(fp, NULL, NULL, NULL, 0)) != NULL;
    275  1.41     enami 			    free(l)) {
    276  1.41     enami 				if (*l)
    277  1.27    tsarna 					parse(l, 1);
    278  1.27    tsarna 			}
    279  1.27    tsarna 			fclose(fp);
    280  1.27    tsarna 		}
    281  1.27    tsarna 	} else {
    282  1.27    tsarna 		if (argc == 0)
    283  1.27    tsarna 			usage();
    284  1.27    tsarna 		while (argc-- > 0)
    285  1.27    tsarna 			parse(*argv++, 1);
    286  1.27    tsarna 	}
    287  1.14  christos 	return 0;
    288   1.1       cgd }
    289   1.1       cgd 
    290   1.1       cgd /*
    291   1.1       cgd  * List all variables known to the system.
    292   1.1       cgd  */
    293  1.14  christos static void
    294  1.53    simonb listall(const char *prefix, struct list *lp)
    295   1.1       cgd {
    296   1.1       cgd 	int lvl2;
    297   1.1       cgd 	char *cp, name[BUFSIZ];
    298   1.1       cgd 
    299   1.1       cgd 	if (lp->list == 0)
    300   1.1       cgd 		return;
    301   1.1       cgd 	strcpy(name, prefix);
    302   1.1       cgd 	cp = &name[strlen(name)];
    303   1.1       cgd 	*cp++ = '.';
    304   1.1       cgd 	for (lvl2 = 0; lvl2 < lp->size; lvl2++) {
    305   1.1       cgd 		if (lp->list[lvl2].ctl_name == 0)
    306   1.1       cgd 			continue;
    307   1.1       cgd 		strcpy(cp, lp->list[lvl2].ctl_name);
    308   1.1       cgd 		parse(name, Aflag);
    309   1.1       cgd 	}
    310   1.1       cgd }
    311   1.1       cgd 
    312   1.1       cgd /*
    313   1.1       cgd  * Parse a name into a MIB entry.
    314   1.1       cgd  * Lookup and print out the MIB entry if it exists.
    315   1.1       cgd  * Set a new value if requested.
    316   1.1       cgd  */
    317  1.14  christos static void
    318  1.53    simonb parse(char *string, int flags)
    319   1.1       cgd {
    320   1.5       cgd 	int indx, type, state, len;
    321   1.1       cgd 	int special = 0;
    322   1.1       cgd 	void *newval = 0;
    323   1.1       cgd 	int intval, newsize = 0;
    324   1.1       cgd 	quad_t quadval;
    325   1.5       cgd 	size_t size;
    326   1.1       cgd 	struct list *lp;
    327   1.1       cgd 	int mib[CTL_MAXNAME];
    328  1.14  christos 	char *cp, *bufp, buf[BUFSIZ];
    329  1.46       chs 	double loads[3];
    330   1.1       cgd 
    331   1.1       cgd 	bufp = buf;
    332   1.1       cgd 	snprintf(buf, BUFSIZ, "%s", string);
    333   1.1       cgd 	if ((cp = strchr(string, '=')) != NULL) {
    334  1.14  christos 		if (!wflag)
    335  1.14  christos 			errx(2, "Must specify -w to set variables");
    336   1.1       cgd 		*strchr(buf, '=') = '\0';
    337   1.1       cgd 		*cp++ = '\0';
    338  1.14  christos 		while (isspace((unsigned char) *cp))
    339   1.1       cgd 			cp++;
    340   1.1       cgd 		newval = cp;
    341   1.1       cgd 		newsize = strlen(cp);
    342   1.1       cgd 	}
    343   1.1       cgd 	if ((indx = findname(string, "top", &bufp, &toplist)) == -1)
    344   1.1       cgd 		return;
    345   1.1       cgd 	mib[0] = indx;
    346   1.1       cgd 	if (indx == CTL_DEBUG)
    347   1.1       cgd 		debuginit();
    348  1.22    bouyer 	if (mib[0] == CTL_PROC) {
    349  1.22    bouyer 		type = CTLTYPE_NODE;
    350  1.22    bouyer 		len = 1;
    351  1.22    bouyer 	} else {
    352  1.22    bouyer 		lp = &secondlevel[indx];
    353  1.22    bouyer 		if (lp->list == 0) {
    354  1.22    bouyer 			warnx("Class `%s' is not implemented",
    355  1.50     lukem 			    topname[indx].ctl_name);
    356  1.22    bouyer 			return;
    357  1.22    bouyer 		}
    358  1.22    bouyer 		if (bufp == NULL) {
    359  1.22    bouyer 			listall(topname[indx].ctl_name, lp);
    360  1.22    bouyer 			return;
    361  1.22    bouyer 		}
    362  1.22    bouyer 		if ((indx = findname(string, "second", &bufp, lp)) == -1)
    363  1.22    bouyer 			return;
    364  1.22    bouyer 		mib[1] = indx;
    365  1.22    bouyer 		type = lp->list[indx].ctl_type;
    366  1.22    bouyer 		len = 2;
    367   1.1       cgd 	}
    368   1.1       cgd 	switch (mib[0]) {
    369   1.1       cgd 
    370   1.1       cgd 	case CTL_KERN:
    371   1.1       cgd 		switch (mib[1]) {
    372   1.1       cgd 		case KERN_PROF:
    373   1.1       cgd 			mib[2] = GPROF_STATE;
    374   1.1       cgd 			size = sizeof state;
    375   1.1       cgd 			if (sysctl(mib, 3, &state, &size, NULL, 0) < 0) {
    376   1.1       cgd 				if (flags == 0)
    377   1.1       cgd 					return;
    378   1.1       cgd 				if (!nflag)
    379  1.33    simonb 					printf("%s: ", string);
    380  1.50     lukem 				printf(
    381  1.50     lukem 				    "kernel is not compiled for profiling\n");
    382   1.1       cgd 				return;
    383   1.1       cgd 			}
    384   1.1       cgd 			if (!nflag)
    385  1.33    simonb 				printf("%s: %s\n", string,
    386   1.1       cgd 				    state == GMON_PROF_OFF ? "off" : "running");
    387   1.1       cgd 			return;
    388   1.1       cgd 		case KERN_VNODE:
    389   1.1       cgd 		case KERN_FILE:
    390  1.50     lukem 			USEAPP(string, "pstat");
    391   1.1       cgd 			return;
    392   1.1       cgd 		case KERN_PROC:
    393  1.32    simonb 		case KERN_PROC2:
    394  1.34    simonb 		case KERN_PROC_ARGS:
    395  1.50     lukem 			USEAPP(string, "ps");
    396   1.1       cgd 			return;
    397   1.1       cgd 		case KERN_CLOCKRATE:
    398   1.1       cgd 			special |= CLOCK;
    399   1.1       cgd 			break;
    400   1.1       cgd 		case KERN_BOOTTIME:
    401   1.1       cgd 			special |= BOOTTIME;
    402   1.1       cgd 			break;
    403  1.12  jonathan 		case KERN_NTPTIME:
    404  1.50     lukem 			USEAPP(string, "ntpdc -c kerninfo");
    405  1.12  jonathan 			return;
    406  1.19   thorpej 		case KERN_MBUF:
    407  1.56  christos 			len = sysctl_3rd(&mbufvars, string, &bufp, mib, flags,
    408  1.56  christos 			    &type);
    409  1.19   thorpej 			if (len < 0)
    410  1.19   thorpej 				return;
    411  1.19   thorpej 			break;
    412  1.32    simonb 		case KERN_CP_TIME:
    413  1.32    simonb 			special |= CPTIME;
    414  1.40    simonb 			break;
    415  1.40    simonb 		case KERN_MSGBUF:
    416  1.50     lukem 			USEAPP(string, "dmesg");
    417  1.40    simonb 			return;
    418  1.40    simonb 		case KERN_CONSDEV:
    419  1.40    simonb 			special |= CONSDEV;
    420  1.32    simonb 			break;
    421  1.47  jdolecek 		case KERN_PIPE:
    422  1.56  christos 			len = sysctl_3rd(&pipevars, string, &bufp, mib, flags,
    423  1.56  christos 			    &type);
    424  1.47  jdolecek 			if (len < 0)
    425  1.47  jdolecek 				return;
    426  1.47  jdolecek 			break;
    427  1.54    simonb 		case KERN_TKSTAT:
    428  1.56  christos 			len = sysctl_3rd(&tkstatvars, string, &bufp, mib, flags,
    429  1.56  christos 			    &type);
    430  1.54    simonb 			if (len < 0)
    431  1.54    simonb 				return;
    432  1.54    simonb 			break;
    433   1.1       cgd 		}
    434   1.1       cgd 		break;
    435   1.1       cgd 
    436   1.1       cgd 	case CTL_HW:
    437  1.51    simonb 		switch (mib[1]) {
    438  1.51    simonb 		case HW_DISKSTATS:
    439  1.51    simonb 			USEAPP(string, "iostat");
    440  1.51    simonb 			return;
    441  1.51    simonb 		}
    442   1.1       cgd 		break;
    443   1.1       cgd 
    444   1.1       cgd 	case CTL_VM:
    445  1.46       chs 		switch (mib[1]) {
    446  1.46       chs 		case VM_LOADAVG:
    447   1.1       cgd 			getloadavg(loads, 3);
    448   1.1       cgd 			if (!nflag)
    449  1.33    simonb 				printf("%s: ", string);
    450  1.33    simonb 			printf("%.2f %.2f %.2f\n", loads[0], loads[1],
    451  1.33    simonb 			    loads[2]);
    452   1.1       cgd 			return;
    453  1.46       chs 
    454  1.46       chs 		case VM_METER:
    455  1.46       chs 		case VM_UVMEXP:
    456  1.46       chs 		case VM_UVMEXP2:
    457  1.55  christos 			USEAPP(string, "vmstat' or 'systat");
    458  1.46       chs 			return;
    459   1.1       cgd 		}
    460  1.46       chs 		break;
    461   1.1       cgd 
    462   1.1       cgd 	case CTL_NET:
    463   1.1       cgd 		if (mib[1] == PF_INET) {
    464   1.1       cgd 			len = sysctl_inet(string, &bufp, mib, flags, &type);
    465   1.1       cgd 			if (len >= 0)
    466   1.1       cgd 				break;
    467   1.1       cgd 			return;
    468   1.1       cgd 		}
    469  1.20    itojun #ifdef INET6
    470  1.20    itojun 		else if (mib[1] == PF_INET6) {
    471  1.20    itojun 			len = sysctl_inet6(string, &bufp, mib, flags, &type);
    472  1.20    itojun 			if (len >= 0)
    473  1.20    itojun 				break;
    474  1.20    itojun 			return;
    475  1.20    itojun 		}
    476  1.20    itojun #endif /* INET6 */
    477  1.20    itojun #ifdef IPSEC
    478  1.20    itojun 		else if (mib[1] == PF_KEY) {
    479  1.56  christos 			len = sysctl_3rd(&keyvars, string, &bufp, mib, flags,
    480  1.56  christos 			    &type);
    481  1.20    itojun 			if (len >= 0)
    482  1.20    itojun 				break;
    483  1.20    itojun 			return;
    484  1.20    itojun 		}
    485  1.20    itojun #endif /* IPSEC */
    486   1.1       cgd 		if (flags == 0)
    487   1.1       cgd 			return;
    488  1.50     lukem 		USEAPP(string, "netstat");
    489   1.1       cgd 		return;
    490   1.1       cgd 
    491   1.1       cgd 	case CTL_DEBUG:
    492   1.1       cgd 		mib[2] = CTL_DEBUG_VALUE;
    493   1.1       cgd 		len = 3;
    494   1.1       cgd 		break;
    495   1.1       cgd 
    496   1.1       cgd 	case CTL_MACHDEP:
    497   1.1       cgd #ifdef CPU_CONSDEV
    498   1.1       cgd 		if (mib[1] == CPU_CONSDEV)
    499   1.1       cgd 			special |= CONSDEV;
    500   1.1       cgd #endif
    501  1.26      fvdl #ifdef CPU_DISKINFO
    502  1.26      fvdl 		if (mib[1] == CPU_DISKINFO)
    503  1.26      fvdl 			special |= DISKINFO;
    504  1.26      fvdl #endif
    505   1.1       cgd 		break;
    506   1.1       cgd 
    507  1.13      fvdl 	case CTL_VFS:
    508  1.56  christos 		if (mib[1] == VFS_GENERIC) {
    509  1.56  christos 			len = sysctl_3rd(&vfsgenvars, string, &bufp, mib, flags,
    510  1.56  christos 			    &type);
    511  1.56  christos 			/* Don't bother with VFS_CONF. */
    512  1.56  christos 			if (mib[2] == VFS_CONF)
    513  1.56  christos 				len = -1;
    514  1.56  christos 		} else
    515  1.17   thorpej 			len = sysctl_vfs(string, &bufp, mib, flags, &type);
    516  1.18   thorpej 		if (len < 0)
    517  1.18   thorpej 			return;
    518  1.18   thorpej 
    519  1.18   thorpej 		/* XXX Special-case for NFS stats. */
    520  1.18   thorpej 		if (mib[1] == 2 && mib[2] == NFS_NFSSTATS) {
    521  1.50     lukem 			USEAPP(string, "nfsstat");
    522  1.18   thorpej 			return;
    523  1.18   thorpej 		}
    524  1.18   thorpej 		break;
    525  1.17   thorpej 
    526  1.43      fvdl 	case CTL_VENDOR:
    527   1.1       cgd 	case CTL_USER:
    528  1.10   thorpej 	case CTL_DDB:
    529   1.1       cgd 		break;
    530  1.22    bouyer 	case CTL_PROC:
    531  1.22    bouyer 		len = sysctl_proc(string, &bufp, mib, flags, &type);
    532  1.22    bouyer 		if (len < 0)
    533  1.22    bouyer 			return;
    534  1.22    bouyer 		break;
    535  1.56  christos 	case CTL_EMUL:
    536  1.56  christos 		switch (mib[1]) {
    537  1.60      manu 		case EMUL_IRIX:
    538  1.60      manu 		    len = sysctl_irix(string, &bufp, mib, flags, &type);
    539  1.60      manu 		    break;
    540  1.56  christos 		case EMUL_LINUX:
    541  1.56  christos 		    len = sysctl_linux(string, &bufp, mib, flags, &type);
    542  1.56  christos 		    break;
    543  1.56  christos 		default:
    544  1.56  christos 		    warnx("Illegal emul level value: %d", mib[0]);
    545  1.56  christos 		    break;
    546  1.56  christos 		}
    547  1.56  christos 		if (len < 0)
    548  1.56  christos 			return;
    549  1.56  christos 		break;
    550   1.1       cgd 	default:
    551  1.14  christos 		warnx("Illegal top level value: %d", mib[0]);
    552   1.1       cgd 		return;
    553  1.58  sommerfe 
    554   1.1       cgd 	}
    555   1.1       cgd 	if (bufp) {
    556  1.14  christos 		warnx("Name %s in %s is unknown", bufp, string);
    557   1.1       cgd 		return;
    558   1.1       cgd 	}
    559   1.1       cgd 	if (newsize > 0) {
    560   1.1       cgd 		switch (type) {
    561   1.1       cgd 		case CTLTYPE_INT:
    562   1.1       cgd 			intval = atoi(newval);
    563   1.1       cgd 			newval = &intval;
    564   1.1       cgd 			newsize = sizeof intval;
    565   1.1       cgd 			break;
    566   1.1       cgd 
    567  1.22    bouyer 		case CTLTYPE_LIMIT:
    568  1.22    bouyer 			if (strcmp(newval, "unlimited") == 0) {
    569  1.22    bouyer 				quadval = RLIM_INFINITY;
    570  1.22    bouyer 				newval = &quadval;
    571  1.22    bouyer 				newsize = sizeof quadval;
    572  1.22    bouyer 				break;
    573  1.22    bouyer 			}
    574  1.22    bouyer 			/* FALLTHROUGH */
    575   1.1       cgd 		case CTLTYPE_QUAD:
    576  1.42     lukem 			sscanf(newval, "%lld", (long long *)&quadval);
    577   1.1       cgd 			newval = &quadval;
    578   1.1       cgd 			newsize = sizeof quadval;
    579   1.1       cgd 			break;
    580   1.1       cgd 		}
    581   1.1       cgd 	}
    582   1.1       cgd 	size = BUFSIZ;
    583   1.1       cgd 	if (sysctl(mib, len, buf, &size, newsize ? newval : 0, newsize) == -1) {
    584   1.1       cgd 		if (flags == 0)
    585   1.1       cgd 			return;
    586   1.1       cgd 		switch (errno) {
    587   1.1       cgd 		case EOPNOTSUPP:
    588  1.50     lukem 			printf("%s: the value is not available\n", string);
    589   1.1       cgd 			return;
    590   1.1       cgd 		case ENOTDIR:
    591  1.50     lukem 			printf("%s: the specification is incomplete\n", string);
    592   1.1       cgd 			return;
    593   1.1       cgd 		case ENOMEM:
    594  1.50     lukem 			printf("%s: this type is unknown to this program\n",
    595   1.1       cgd 			    string);
    596   1.1       cgd 			return;
    597   1.1       cgd 		default:
    598  1.50     lukem 			printf("%s: sysctl() failed with %s\n",
    599  1.50     lukem 			    string, strerror(errno));
    600   1.1       cgd 			return;
    601   1.1       cgd 		}
    602   1.1       cgd 	}
    603  1.58  sommerfe 	if (qflag && (newsize > 0))
    604  1.58  sommerfe 		return;
    605   1.1       cgd 	if (special & CLOCK) {
    606   1.1       cgd 		struct clockinfo *clkp = (struct clockinfo *)buf;
    607   1.1       cgd 
    608   1.1       cgd 		if (!nflag)
    609  1.33    simonb 			printf("%s: ", string);
    610  1.33    simonb 		printf(
    611   1.4   mycroft 		    "tick = %d, tickadj = %d, hz = %d, profhz = %d, stathz = %d\n",
    612   1.4   mycroft 		    clkp->tick, clkp->tickadj, clkp->hz, clkp->profhz, clkp->stathz);
    613   1.1       cgd 		return;
    614   1.1       cgd 	}
    615   1.1       cgd 	if (special & BOOTTIME) {
    616   1.1       cgd 		struct timeval *btp = (struct timeval *)buf;
    617   1.7       cgd 		time_t boottime;
    618   1.1       cgd 
    619   1.7       cgd 		if (!nflag) {
    620   1.7       cgd 			boottime = btp->tv_sec;
    621  1.31    simonb 			/* ctime() provides the trailing newline */
    622  1.33    simonb 			printf("%s = %s", string, ctime(&boottime));
    623   1.7       cgd 		} else
    624  1.33    simonb 			printf("%ld\n", (long) btp->tv_sec);
    625   1.1       cgd 		return;
    626   1.1       cgd 	}
    627   1.1       cgd 	if (special & CONSDEV) {
    628   1.1       cgd 		dev_t dev = *(dev_t *)buf;
    629   1.1       cgd 
    630   1.1       cgd 		if (!nflag)
    631  1.33    simonb 			printf("%s = %s\n", string, devname(dev, S_IFCHR));
    632   1.1       cgd 		else
    633  1.33    simonb 			printf("0x%x\n", dev);
    634   1.1       cgd 		return;
    635   1.1       cgd 	}
    636  1.26      fvdl 	if (special & DISKINFO) {
    637  1.26      fvdl 		/* Don't know a good way to deal with this i386 specific one */
    638  1.32    simonb 		return;
    639  1.32    simonb 	}
    640  1.32    simonb 	if (special & CPTIME) {
    641  1.35    simonb 		u_int64_t *cp_time = (u_int64_t *)buf;
    642  1.32    simonb 
    643  1.32    simonb 		if (!nflag)
    644  1.33    simonb 			printf("%s: ", string);
    645  1.36      matt 		printf("user = %llu, nice = %llu, sys = %llu, intr = %llu, "
    646  1.36      matt 		    "idle = %llu\n", (unsigned long long) cp_time[0],
    647  1.36      matt 		    (unsigned long long) cp_time[1],
    648  1.36      matt 		    (unsigned long long) cp_time[2],
    649  1.36      matt 		    (unsigned long long) cp_time[3],
    650  1.36      matt 		    (unsigned long long) cp_time[4]);
    651  1.26      fvdl 		return;
    652  1.26      fvdl 	}
    653  1.58  sommerfe 
    654   1.1       cgd 	switch (type) {
    655   1.1       cgd 	case CTLTYPE_INT:
    656   1.1       cgd 		if (newsize == 0) {
    657   1.1       cgd 			if (!nflag)
    658  1.33    simonb 				printf("%s = ", string);
    659  1.33    simonb 			printf("%d\n", *(int *)buf);
    660   1.1       cgd 		} else {
    661   1.1       cgd 			if (!nflag)
    662  1.33    simonb 				printf("%s: %d -> ", string, *(int *)buf);
    663  1.33    simonb 			printf("%d\n", *(int *)newval);
    664   1.1       cgd 		}
    665   1.1       cgd 		return;
    666   1.1       cgd 
    667   1.1       cgd 	case CTLTYPE_STRING:
    668  1.59    simonb 		/* If sysctl() didn't return any data, don't print a string. */
    669  1.59    simonb 		if (size == 0)
    670  1.59    simonb 			buf[0] = '\0';
    671   1.1       cgd 		if (newsize == 0) {
    672   1.1       cgd 			if (!nflag)
    673  1.33    simonb 				printf("%s = ", string);
    674  1.33    simonb 			printf("%s\n", buf);
    675   1.1       cgd 		} else {
    676   1.1       cgd 			if (!nflag)
    677  1.33    simonb 				printf("%s: %s -> ", string, buf);
    678  1.33    simonb 			printf("%s\n", (char *) newval);
    679   1.1       cgd 		}
    680   1.1       cgd 		return;
    681   1.1       cgd 
    682  1.22    bouyer 	case CTLTYPE_LIMIT:
    683  1.22    bouyer #define PRINTF_LIMIT(lim) { \
    684  1.22    bouyer if ((lim) == RLIM_INFINITY) \
    685  1.33    simonb 	printf("unlimited");\
    686  1.22    bouyer else \
    687  1.42     lukem 	printf("%lld", (long long)(lim)); \
    688  1.22    bouyer }
    689  1.22    bouyer 
    690  1.22    bouyer 		if (newsize == 0) {
    691  1.22    bouyer 			if (!nflag)
    692  1.33    simonb 				printf("%s = ", string);
    693  1.22    bouyer 			PRINTF_LIMIT((long long)(*(quad_t *)buf));
    694  1.22    bouyer 		} else {
    695  1.22    bouyer 			if (!nflag) {
    696  1.33    simonb 				printf("%s: ", string);
    697  1.22    bouyer 				PRINTF_LIMIT((long long)(*(quad_t *)buf));
    698  1.33    simonb 				printf(" -> ");
    699  1.22    bouyer 			}
    700  1.22    bouyer 			PRINTF_LIMIT((long long)(*(quad_t *)newval));
    701  1.22    bouyer 		}
    702  1.33    simonb 		printf("\n");
    703  1.22    bouyer 		return;
    704  1.22    bouyer #undef PRINTF_LIMIT
    705  1.22    bouyer 
    706   1.1       cgd 	case CTLTYPE_QUAD:
    707   1.1       cgd 		if (newsize == 0) {
    708   1.1       cgd 			if (!nflag)
    709  1.33    simonb 				printf("%s = ", string);
    710  1.42     lukem 			printf("%lld\n", (long long)(*(quad_t *)buf));
    711   1.1       cgd 		} else {
    712   1.1       cgd 			if (!nflag)
    713  1.42     lukem 				printf("%s: %lld -> ", string,
    714  1.16   thorpej 				    (long long)(*(quad_t *)buf));
    715  1.42     lukem 			printf("%lld\n", (long long)(*(quad_t *)newval));
    716   1.1       cgd 		}
    717   1.1       cgd 		return;
    718   1.1       cgd 
    719   1.1       cgd 	case CTLTYPE_STRUCT:
    720  1.14  christos 		warnx("%s: unknown structure returned", string);
    721   1.1       cgd 		return;
    722   1.1       cgd 
    723   1.1       cgd 	default:
    724   1.1       cgd 	case CTLTYPE_NODE:
    725  1.14  christos 		warnx("%s: unknown type returned", string);
    726   1.1       cgd 		return;
    727   1.1       cgd 	}
    728   1.1       cgd }
    729   1.1       cgd 
    730   1.1       cgd /*
    731   1.1       cgd  * Initialize the set of debugging names
    732   1.1       cgd  */
    733  1.14  christos static void
    734  1.53    simonb debuginit(void)
    735   1.1       cgd {
    736   1.5       cgd 	int mib[3], loc, i;
    737   1.5       cgd 	size_t size;
    738   1.1       cgd 
    739   1.1       cgd 	if (secondlevel[CTL_DEBUG].list != 0)
    740   1.1       cgd 		return;
    741   1.1       cgd 	secondlevel[CTL_DEBUG].list = debugname;
    742   1.1       cgd 	mib[0] = CTL_DEBUG;
    743   1.1       cgd 	mib[2] = CTL_DEBUG_NAME;
    744   1.1       cgd 	for (loc = 0, i = 0; i < CTL_DEBUG_MAXID; i++) {
    745   1.1       cgd 		mib[1] = i;
    746   1.1       cgd 		size = BUFSIZ - loc;
    747   1.1       cgd 		if (sysctl(mib, 3, &names[loc], &size, NULL, 0) == -1)
    748   1.1       cgd 			continue;
    749   1.1       cgd 		debugname[i].ctl_name = &names[loc];
    750   1.1       cgd 		debugname[i].ctl_type = CTLTYPE_INT;
    751   1.1       cgd 		loc += size;
    752   1.1       cgd 	}
    753   1.1       cgd }
    754   1.1       cgd 
    755   1.1       cgd struct ctlname inetname[] = CTL_IPPROTO_NAMES;
    756   1.1       cgd struct ctlname ipname[] = IPCTL_NAMES;
    757   1.1       cgd struct ctlname icmpname[] = ICMPCTL_NAMES;
    758   1.8   thorpej struct ctlname tcpname[] = TCPCTL_NAMES;
    759   1.1       cgd struct ctlname udpname[] = UDPCTL_NAMES;
    760  1.20    itojun #ifdef IPSEC
    761  1.20    itojun struct ctlname ipsecname[] = IPSECCTL_NAMES;
    762  1.20    itojun #endif
    763   1.1       cgd struct list inetlist = { inetname, IPPROTO_MAXID };
    764   1.1       cgd struct list inetvars[] = {
    765  1.20    itojun /*0*/	{ ipname, IPCTL_MAXID },	/* ip */
    766   1.1       cgd 	{ icmpname, ICMPCTL_MAXID },	/* icmp */
    767   1.1       cgd 	{ 0, 0 },			/* igmp */
    768   1.1       cgd 	{ 0, 0 },			/* ggmp */
    769   1.1       cgd 	{ 0, 0 },
    770   1.1       cgd 	{ 0, 0 },
    771   1.8   thorpej 	{ tcpname, TCPCTL_MAXID },	/* tcp */
    772   1.1       cgd 	{ 0, 0 },
    773   1.1       cgd 	{ 0, 0 },			/* egp */
    774   1.1       cgd 	{ 0, 0 },
    775  1.20    itojun /*10*/	{ 0, 0 },
    776   1.1       cgd 	{ 0, 0 },
    777   1.1       cgd 	{ 0, 0 },			/* pup */
    778   1.1       cgd 	{ 0, 0 },
    779   1.1       cgd 	{ 0, 0 },
    780   1.1       cgd 	{ 0, 0 },
    781   1.1       cgd 	{ 0, 0 },
    782   1.1       cgd 	{ udpname, UDPCTL_MAXID },	/* udp */
    783  1.20    itojun 	{ 0, 0 },
    784  1.20    itojun 	{ 0, 0 },
    785  1.20    itojun /*20*/	{ 0, 0 },
    786  1.20    itojun 	{ 0, 0 },
    787  1.20    itojun 	{ 0, 0 },			/* idp */
    788  1.20    itojun 	{ 0, 0 },
    789  1.20    itojun 	{ 0, 0 },
    790  1.20    itojun 	{ 0, 0 },
    791  1.20    itojun 	{ 0, 0 },
    792  1.20    itojun 	{ 0, 0 },
    793  1.20    itojun 	{ 0, 0 },
    794  1.20    itojun 	{ 0, 0 },
    795  1.20    itojun /*30*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    796  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    797  1.20    itojun /*40*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    798  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    799  1.20    itojun #ifdef IPSEC
    800  1.20    itojun 	{ ipsecname, IPSECCTL_MAXID },	/* esp - for backward compatibility */
    801  1.20    itojun 	{ ipsecname, IPSECCTL_MAXID },	/* ah */
    802  1.20    itojun #else
    803  1.20    itojun 	{ 0, 0 },
    804  1.20    itojun 	{ 0, 0 },
    805  1.20    itojun #endif
    806   1.1       cgd };
    807   1.1       cgd 
    808   1.1       cgd /*
    809   1.1       cgd  * handle internet requests
    810   1.1       cgd  */
    811  1.14  christos static int
    812  1.53    simonb sysctl_inet(char *string, char **bufpp, int mib[], int flags, int *typep)
    813   1.1       cgd {
    814   1.1       cgd 	struct list *lp;
    815   1.1       cgd 	int indx;
    816   1.1       cgd 
    817   1.1       cgd 	if (*bufpp == NULL) {
    818   1.1       cgd 		listall(string, &inetlist);
    819   1.1       cgd 		return (-1);
    820   1.1       cgd 	}
    821   1.1       cgd 	if ((indx = findname(string, "third", bufpp, &inetlist)) == -1)
    822   1.1       cgd 		return (-1);
    823   1.1       cgd 	mib[2] = indx;
    824  1.20    itojun 	if (indx <= IPPROTO_MAXID && inetvars[indx].list != NULL)
    825   1.1       cgd 		lp = &inetvars[indx];
    826   1.1       cgd 	else if (!flags)
    827   1.1       cgd 		return (-1);
    828   1.1       cgd 	else {
    829  1.50     lukem 		printf("%s: no variables defined for protocol\n", string);
    830   1.1       cgd 		return (-1);
    831   1.1       cgd 	}
    832   1.1       cgd 	if (*bufpp == NULL) {
    833   1.1       cgd 		listall(string, lp);
    834   1.1       cgd 		return (-1);
    835   1.1       cgd 	}
    836   1.1       cgd 	if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
    837   1.1       cgd 		return (-1);
    838   1.1       cgd 	mib[3] = indx;
    839   1.1       cgd 	*typep = lp->list[indx].ctl_type;
    840   1.1       cgd 	return (4);
    841  1.17   thorpej }
    842  1.20    itojun 
    843  1.20    itojun #ifdef INET6
    844  1.20    itojun struct ctlname inet6name[] = CTL_IPV6PROTO_NAMES;
    845  1.20    itojun struct ctlname ip6name[] = IPV6CTL_NAMES;
    846  1.20    itojun struct ctlname icmp6name[] = ICMPV6CTL_NAMES;
    847  1.20    itojun struct ctlname udp6name[] = UDP6CTL_NAMES;
    848  1.37    itojun struct ctlname pim6name[] = PIM6CTL_NAMES;
    849  1.20    itojun struct ctlname ipsec6name[] = IPSEC6CTL_NAMES;
    850  1.20    itojun struct list inet6list = { inet6name, IPV6PROTO_MAXID };
    851  1.20    itojun struct list inet6vars[] = {
    852  1.20    itojun /*0*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    853  1.20    itojun 	{ 0, 0 },
    854  1.49    itojun 	{ tcpname, TCPCTL_MAXID },	/* tcp6 */
    855  1.20    itojun 	{ 0, 0 },
    856  1.20    itojun 	{ 0, 0 },
    857  1.20    itojun 	{ 0, 0 },
    858  1.20    itojun /*10*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    859  1.20    itojun 	{ 0, 0 },
    860  1.20    itojun 	{ 0, 0 },
    861  1.20    itojun 	{ udp6name, UDP6CTL_MAXID },	/* udp6 */
    862  1.20    itojun 	{ 0, 0 },
    863  1.20    itojun 	{ 0, 0 },
    864  1.20    itojun /*20*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    865  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    866  1.20    itojun /*30*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    867  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    868  1.20    itojun /*40*/	{ 0, 0 },
    869  1.20    itojun 	{ ip6name, IPV6CTL_MAXID },	/* ipv6 */
    870  1.20    itojun 	{ 0, 0 },
    871  1.20    itojun 	{ 0, 0 },
    872  1.20    itojun 	{ 0, 0 },
    873  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    874  1.20    itojun #ifdef IPSEC
    875  1.20    itojun /*50*/	{ ipsec6name, IPSECCTL_MAXID },	/* esp6 - for backward compatibility */
    876  1.20    itojun 	{ ipsec6name, IPSECCTL_MAXID },	/* ah6 */
    877  1.20    itojun #else
    878  1.20    itojun 	{ 0, 0 },
    879  1.20    itojun 	{ 0, 0 },
    880  1.20    itojun #endif
    881  1.20    itojun 	{ 0, 0 },
    882  1.20    itojun 	{ 0, 0 },
    883  1.20    itojun 	{ 0, 0 },
    884  1.20    itojun 	{ 0, 0 },
    885  1.20    itojun 	{ 0, 0 },
    886  1.20    itojun 	{ 0, 0 },
    887  1.20    itojun 	{ icmp6name, ICMPV6CTL_MAXID },	/* icmp6 */
    888  1.20    itojun 	{ 0, 0 },
    889  1.20    itojun /*60*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    890  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    891  1.20    itojun /*70*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    892  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    893  1.20    itojun /*80*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    894  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    895  1.20    itojun /*90*/	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    896  1.20    itojun 	{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
    897  1.20    itojun /*100*/	{ 0, 0 },
    898  1.20    itojun 	{ 0, 0 },
    899  1.20    itojun 	{ 0, 0 },
    900  1.37    itojun 	{ pim6name, PIM6CTL_MAXID },	/* pim6 */
    901  1.20    itojun };
    902  1.20    itojun 
    903  1.20    itojun /*
    904  1.20    itojun  * handle internet6 requests
    905  1.20    itojun  */
    906  1.20    itojun static int
    907  1.53    simonb sysctl_inet6(char *string, char **bufpp, int mib[], int flags, int *typep)
    908  1.20    itojun {
    909  1.20    itojun 	struct list *lp;
    910  1.20    itojun 	int indx;
    911  1.20    itojun 
    912  1.20    itojun 	if (*bufpp == NULL) {
    913  1.20    itojun 		listall(string, &inet6list);
    914  1.20    itojun 		return (-1);
    915  1.20    itojun 	}
    916  1.20    itojun 	if ((indx = findname(string, "third", bufpp, &inet6list)) == -1)
    917  1.20    itojun 		return (-1);
    918  1.20    itojun 	mib[2] = indx;
    919  1.20    itojun 	if (indx <= sizeof(inet6vars)/sizeof(inet6vars[0])
    920  1.20    itojun 	 && inet6vars[indx].list != NULL) {
    921  1.20    itojun 		lp = &inet6vars[indx];
    922  1.20    itojun 	} else if (!flags) {
    923  1.20    itojun 		return (-1);
    924  1.20    itojun 	} else {
    925  1.20    itojun 		fprintf(stderr, "%s: no variables defined for this protocol\n",
    926  1.20    itojun 		    string);
    927  1.20    itojun 		return (-1);
    928  1.20    itojun 	}
    929  1.20    itojun 	if (*bufpp == NULL) {
    930  1.20    itojun 		listall(string, lp);
    931  1.20    itojun 		return (-1);
    932  1.20    itojun 	}
    933  1.20    itojun 	if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
    934  1.20    itojun 		return (-1);
    935  1.20    itojun 	mib[3] = indx;
    936  1.20    itojun 	*typep = lp->list[indx].ctl_type;
    937  1.20    itojun 	return (4);
    938  1.20    itojun }
    939  1.20    itojun #endif /* INET6 */
    940  1.20    itojun 
    941  1.17   thorpej struct ctlname ffsname[] = FFS_NAMES;
    942  1.17   thorpej struct ctlname nfsname[] = NFS_NAMES;
    943  1.17   thorpej struct list vfsvars[] = {
    944  1.17   thorpej 	{ 0, 0 },			/* generic */
    945  1.17   thorpej 	{ ffsname, FFS_MAXID },		/* FFS */
    946  1.17   thorpej 	{ nfsname, NFS_MAXID },		/* NFS */
    947  1.17   thorpej 	{ 0, 0 },			/* MFS */
    948  1.17   thorpej 	{ 0, 0 },			/* MSDOS */
    949  1.17   thorpej 	{ 0, 0 },			/* LFS */
    950  1.17   thorpej 	{ 0, 0 },			/* old LOFS */
    951  1.17   thorpej 	{ 0, 0 },			/* FDESC */
    952  1.17   thorpej 	{ 0, 0 },			/* PORTAL */
    953  1.17   thorpej 	{ 0, 0 },			/* NULL */
    954  1.17   thorpej 	{ 0, 0 },			/* UMAP */
    955  1.17   thorpej 	{ 0, 0 },			/* KERNFS */
    956  1.17   thorpej 	{ 0, 0 },			/* PROCFS */
    957  1.17   thorpej 	{ 0, 0 },			/* AFS */
    958  1.17   thorpej 	{ 0, 0 },			/* CD9660 */
    959  1.17   thorpej 	{ 0, 0 },			/* UNION */
    960  1.17   thorpej 	{ 0, 0 },			/* ADOSFS */
    961  1.17   thorpej 	{ 0, 0 },			/* EXT2FS */
    962  1.17   thorpej 	{ 0, 0 },			/* CODA */
    963  1.17   thorpej 	{ 0, 0 },			/* FILECORE */
    964  1.17   thorpej };
    965  1.17   thorpej 
    966  1.17   thorpej /*
    967  1.17   thorpej  * handle vfs requests
    968  1.17   thorpej  */
    969  1.17   thorpej static int
    970  1.53    simonb sysctl_vfs(char *string, char **bufpp, int mib[], int flags, int *typep)
    971  1.17   thorpej {
    972  1.17   thorpej 	struct list *lp = &vfsvars[mib[1]];
    973  1.17   thorpej 	int indx;
    974  1.17   thorpej 
    975  1.17   thorpej 	if (lp->list == NULL) {
    976  1.17   thorpej 		if (flags)
    977  1.50     lukem 			printf("%s: no variables defined for file system\n",
    978  1.17   thorpej 			    string);
    979  1.17   thorpej 		return (-1);
    980  1.17   thorpej 	}
    981  1.17   thorpej 	if (*bufpp == NULL) {
    982  1.17   thorpej 		listall(string, lp);
    983  1.17   thorpej 		return (-1);
    984  1.17   thorpej 	}
    985  1.17   thorpej 	if ((indx = findname(string, "third", bufpp, lp)) == -1)
    986  1.17   thorpej 		return (-1);
    987  1.17   thorpej 	mib[2] = indx;
    988  1.17   thorpej 	*typep = lp->list[indx].ctl_type;
    989  1.17   thorpej 	return (3);
    990  1.17   thorpej }
    991  1.17   thorpej 
    992  1.17   thorpej /*
    993  1.56  christos  * handle 3rd level requests.
    994  1.17   thorpej  */
    995  1.17   thorpej static int
    996  1.56  christos sysctl_3rd(struct list *lp, char *string, char **bufpp, int mib[], int flags,
    997  1.56  christos     int *typep)
    998  1.17   thorpej {
    999  1.17   thorpej 	int indx;
   1000  1.17   thorpej 
   1001  1.17   thorpej 	if (*bufpp == NULL) {
   1002  1.17   thorpej 		listall(string, lp);
   1003  1.17   thorpej 		return (-1);
   1004  1.17   thorpej 	}
   1005  1.17   thorpej 	if ((indx = findname(string, "third", bufpp, lp)) == -1)
   1006  1.17   thorpej 		return (-1);
   1007  1.19   thorpej 	mib[2] = indx;
   1008  1.19   thorpej 	*typep = lp->list[indx].ctl_type;
   1009  1.19   thorpej 	return (3);
   1010  1.19   thorpej }
   1011  1.19   thorpej 
   1012  1.22    bouyer struct ctlname procnames[] = PROC_PID_NAMES;
   1013  1.22    bouyer struct list procvars = {procnames, PROC_PID_MAXID};
   1014  1.22    bouyer struct ctlname proclimitnames[] = PROC_PID_LIMIT_NAMES;
   1015  1.22    bouyer struct list proclimitvars = {proclimitnames, PROC_PID_LIMIT_MAXID};
   1016  1.22    bouyer struct ctlname proclimittypenames[] = PROC_PID_LIMIT_TYPE_NAMES;
   1017  1.22    bouyer struct list proclimittypevars = {proclimittypenames,
   1018  1.22    bouyer     PROC_PID_LIMIT_TYPE_MAXID};
   1019  1.22    bouyer /*
   1020  1.22    bouyer  * handle kern.proc requests
   1021  1.22    bouyer  */
   1022  1.22    bouyer static int
   1023  1.53    simonb sysctl_proc(char *string, char **bufpp, int mib[], int flags, int *typep)
   1024  1.22    bouyer {
   1025  1.22    bouyer 	char *cp, name[BUFSIZ];
   1026  1.22    bouyer 	struct list *lp;
   1027  1.22    bouyer 	int indx;
   1028  1.22    bouyer 
   1029  1.22    bouyer 	if (*bufpp == NULL) {
   1030  1.22    bouyer 		strcpy(name, string);
   1031  1.22    bouyer 		cp = &name[strlen(name)];
   1032  1.22    bouyer 		*cp++ = '.';
   1033  1.22    bouyer 		strcpy(cp, "curproc");
   1034  1.46       chs 		parse(name, Aflag);
   1035  1.22    bouyer 		return (-1);
   1036  1.22    bouyer 	}
   1037  1.22    bouyer 	cp = strsep(bufpp, ".");
   1038  1.22    bouyer 	if (cp == NULL) {
   1039  1.22    bouyer 		warnx("%s: incomplete specification", string);
   1040  1.22    bouyer 		return (-1);
   1041  1.22    bouyer 	}
   1042  1.22    bouyer 	if (strcmp(cp, "curproc") == 0) {
   1043  1.22    bouyer 		mib[1] = PROC_CURPROC;
   1044  1.22    bouyer 	} else {
   1045  1.22    bouyer 		mib[1] = atoi(cp);
   1046  1.22    bouyer 		if (mib[1] == 0) {
   1047  1.22    bouyer 			warnx("second level name %s in %s is invalid", cp,
   1048  1.22    bouyer 			    string);
   1049  1.22    bouyer 			return (-1);
   1050  1.22    bouyer 		}
   1051  1.22    bouyer 	}
   1052  1.22    bouyer 	*typep = CTLTYPE_NODE;
   1053  1.22    bouyer 	lp = &procvars;
   1054  1.22    bouyer 	if (*bufpp == NULL) {
   1055  1.22    bouyer 		listall(string, lp);
   1056  1.22    bouyer 		return (-1);
   1057  1.22    bouyer 	}
   1058  1.22    bouyer 	if ((indx = findname(string, "third", bufpp, lp)) == -1)
   1059  1.22    bouyer 		return (-1);
   1060  1.22    bouyer 	mib[2] = indx;
   1061  1.22    bouyer 	*typep = lp->list[indx].ctl_type;
   1062  1.22    bouyer 	if (*typep != CTLTYPE_NODE)
   1063  1.22    bouyer 		return(3);
   1064  1.22    bouyer 	lp = &proclimitvars;
   1065  1.22    bouyer 	if (*bufpp == NULL) {
   1066  1.22    bouyer 		listall(string, lp);
   1067  1.22    bouyer 		return (-1);
   1068  1.22    bouyer 	}
   1069  1.22    bouyer 	if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
   1070  1.22    bouyer 		return (-1);
   1071  1.22    bouyer 	mib[3] = indx;
   1072  1.22    bouyer 	lp = &proclimittypevars;
   1073  1.22    bouyer 	if (*bufpp == NULL) {
   1074  1.22    bouyer 		listall(string, lp);
   1075  1.22    bouyer 		return (-1);
   1076  1.22    bouyer 	}
   1077  1.22    bouyer 	if ((indx = findname(string, "fifth", bufpp, lp)) == -1)
   1078  1.22    bouyer 		return (-1);
   1079  1.22    bouyer 	mib[4] = indx;
   1080  1.22    bouyer 	*typep = CTLTYPE_LIMIT;
   1081  1.22    bouyer 	return(5);
   1082  1.22    bouyer }
   1083  1.22    bouyer 
   1084  1.56  christos struct ctlname linuxnames[] = EMUL_LINUX_NAMES;
   1085  1.56  christos struct list linuxvars = { linuxnames, EMUL_LINUX_MAXID };
   1086  1.56  christos struct ctlname linuxkernnames[] = EMUL_LINUX_KERN_NAMES;
   1087  1.56  christos struct list linuxkernvars = { linuxkernnames, EMUL_LINUX_KERN_MAXID };
   1088  1.47  jdolecek 
   1089  1.47  jdolecek static int
   1090  1.56  christos sysctl_linux(char *string, char **bufpp, int mib[], int flags, int *typep)
   1091  1.47  jdolecek {
   1092  1.56  christos 	struct list *lp = &linuxvars;
   1093  1.54    simonb 	int indx;
   1094  1.56  christos 	char name[BUFSIZ], *cp;
   1095  1.54    simonb 
   1096  1.54    simonb 	if (*bufpp == NULL) {
   1097  1.56  christos 		(void)strcpy(name, string);
   1098  1.56  christos 		cp = &name[strlen(name)];
   1099  1.56  christos 		*cp++ = '.';
   1100  1.56  christos 		(void)strcpy(cp, "kern");
   1101  1.56  christos 		listall(name, &linuxkernvars);
   1102  1.54    simonb 		return (-1);
   1103  1.54    simonb 	}
   1104  1.54    simonb 	if ((indx = findname(string, "third", bufpp, lp)) == -1)
   1105  1.54    simonb 		return (-1);
   1106  1.54    simonb 	mib[2] = indx;
   1107  1.56  christos 	lp = &linuxkernvars;
   1108  1.60      manu 	*typep = lp->list[indx].ctl_type;
   1109  1.60      manu 	if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
   1110  1.60      manu 		return (-1);
   1111  1.60      manu 	mib[3] = indx;
   1112  1.60      manu 	*typep = lp->list[indx].ctl_type;
   1113  1.60      manu 	return (4);
   1114  1.60      manu }
   1115  1.60      manu 
   1116  1.60      manu struct ctlname irixnames[] = EMUL_IRIX_NAMES;
   1117  1.60      manu struct list irixvars = { irixnames, EMUL_IRIX_MAXID };
   1118  1.60      manu struct ctlname irixkernnames[] = EMUL_IRIX_KERN_NAMES;
   1119  1.60      manu struct list irixkernvars = { irixkernnames, EMUL_IRIX_KERN_MAXID };
   1120  1.60      manu 
   1121  1.60      manu static int
   1122  1.60      manu sysctl_irix(char *string, char **bufpp, int mib[], int flags, int *typep)
   1123  1.60      manu {
   1124  1.60      manu 	struct list *lp = &irixvars;
   1125  1.60      manu 	int indx;
   1126  1.60      manu 	char name[BUFSIZ], *cp;
   1127  1.60      manu 
   1128  1.60      manu 	if (*bufpp == NULL) {
   1129  1.60      manu 		(void)strcpy(name, string);
   1130  1.60      manu 		cp = &name[strlen(name)];
   1131  1.60      manu 		*cp++ = '.';
   1132  1.60      manu 		(void)strcpy(cp, "kern");
   1133  1.60      manu 		listall(name, &irixkernvars);
   1134  1.60      manu 		return (-1);
   1135  1.60      manu 	}
   1136  1.60      manu 	if ((indx = findname(string, "third", bufpp, lp)) == -1)
   1137  1.60      manu 		return (-1);
   1138  1.60      manu 	mib[2] = indx;
   1139  1.60      manu 	lp = &irixkernvars;
   1140  1.54    simonb 	*typep = lp->list[indx].ctl_type;
   1141  1.56  christos 	if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
   1142  1.19   thorpej 		return (-1);
   1143  1.56  christos 	mib[3] = indx;
   1144  1.17   thorpej 	*typep = lp->list[indx].ctl_type;
   1145  1.56  christos 	return (4);
   1146   1.1       cgd }
   1147   1.1       cgd 
   1148   1.1       cgd /*
   1149   1.1       cgd  * Scan a list of names searching for a particular name.
   1150   1.1       cgd  */
   1151  1.14  christos static int
   1152  1.53    simonb findname(char *string, char *level, char **bufp, struct list *namelist)
   1153   1.1       cgd {
   1154   1.1       cgd 	char *name;
   1155   1.1       cgd 	int i;
   1156   1.1       cgd 
   1157   1.1       cgd 	if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
   1158  1.14  christos 		warnx("%s: incomplete specification", string);
   1159   1.1       cgd 		return (-1);
   1160   1.1       cgd 	}
   1161   1.1       cgd 	for (i = 0; i < namelist->size; i++)
   1162   1.1       cgd 		if (namelist->list[i].ctl_name != NULL &&
   1163   1.1       cgd 		    strcmp(name, namelist->list[i].ctl_name) == 0)
   1164   1.1       cgd 			break;
   1165   1.1       cgd 	if (i == namelist->size) {
   1166  1.14  christos 		warnx("%s level name %s in %s is invalid",
   1167   1.1       cgd 		    level, name, string);
   1168   1.1       cgd 		return (-1);
   1169   1.1       cgd 	}
   1170   1.1       cgd 	return (i);
   1171   1.1       cgd }
   1172   1.1       cgd 
   1173  1.14  christos static void
   1174  1.53    simonb usage(void)
   1175   1.1       cgd {
   1176  1.45       cgd 	const char *progname = getprogname();
   1177  1.45       cgd 
   1178  1.50     lukem 	(void)fprintf(stderr,
   1179  1.50     lukem 	    "Usage:\t%s %s\n\t%s %s\n\t%s %s\n\t%s %s\n\t%s %s\n",
   1180  1.58  sommerfe 	    progname, "[-n] variable ...",
   1181  1.58  sommerfe 	    progname, "[-n] [-q] -w variable=value ...",
   1182  1.45       cgd 	    progname, "[-n] -a",
   1183  1.45       cgd 	    progname, "[-n] -A",
   1184  1.58  sommerfe 	    progname, "[-n] [-q] -f file");
   1185   1.1       cgd 	exit(1);
   1186   1.1       cgd }
   1187