2001-03-09 04:02:10 +03:00
|
|
|
/* $NetBSD: sysctl.c,v 1.46 2001/03/09 01:02:11 chs Exp $ */
|
2000-01-17 05:32:06 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
|
|
|
__COPYRIGHT(
|
|
|
|
"@(#) Copyright (c) 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)sysctl.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#else
|
2001-03-09 04:02:10 +03:00
|
|
|
__RCSID("$NetBSD: sysctl.c,v 1.46 2001/03/09 01:02:11 chs Exp $");
|
2000-01-17 05:32:06 +03:00
|
|
|
#endif
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/gmon.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/resource.h>
|
2000-06-26 19:37:26 +04:00
|
|
|
#include <uvm/uvm_param.h>
|
2000-01-17 05:32:06 +03:00
|
|
|
#include <machine/cpu.h>
|
|
|
|
|
|
|
|
#include <ufs/ufs/dinode.h>
|
|
|
|
#include <ufs/ufs/dir.h>
|
|
|
|
#include <ufs/ffs/fs.h>
|
|
|
|
#include <ufs/ffs/ffs_extern.h>
|
|
|
|
|
|
|
|
#include <nfs/rpcv2.h>
|
|
|
|
#include <nfs/nfsproto.h>
|
|
|
|
#include <nfs/nfs.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_icmp.h>
|
|
|
|
#include <netinet/icmp_var.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/udp_var.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <netinet/tcp_timer.h>
|
|
|
|
#include <netinet/tcp_var.h>
|
|
|
|
|
|
|
|
#ifdef INET6
|
2000-02-06 14:12:40 +03:00
|
|
|
#include <netinet/ip6.h>
|
|
|
|
#include <netinet/icmp6.h>
|
2000-01-17 05:32:06 +03:00
|
|
|
#include <netinet6/ip6_var.h>
|
|
|
|
#include <netinet6/udp6.h>
|
|
|
|
#include <netinet6/udp6_var.h>
|
|
|
|
#ifdef TCP6
|
|
|
|
#include <netinet6/tcp6.h>
|
|
|
|
#include <netinet6/tcp6_timer.h>
|
|
|
|
#include <netinet6/tcp6_var.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet6/pim6_var.h>
|
|
|
|
#endif /* INET6 */
|
|
|
|
|
|
|
|
#ifdef IPSEC
|
|
|
|
#include <net/route.h>
|
|
|
|
#include <netinet6/ipsec.h>
|
|
|
|
#include <netkey/key_var.h>
|
|
|
|
#endif /* IPSEC */
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2000-03-13 01:56:48 +03:00
|
|
|
#include <util.h>
|
2000-01-17 05:32:06 +03:00
|
|
|
|
|
|
|
struct ctlname topname[] = CTL_NAMES;
|
|
|
|
struct ctlname kernname[] = CTL_KERN_NAMES;
|
|
|
|
struct ctlname vmname[] = CTL_VM_NAMES;
|
|
|
|
struct ctlname vfsname[] = CTL_VFS_NAMES;
|
|
|
|
struct ctlname netname[] = CTL_NET_NAMES;
|
|
|
|
struct ctlname hwname[] = CTL_HW_NAMES;
|
|
|
|
struct ctlname username[] = CTL_USER_NAMES;
|
|
|
|
struct ctlname ddbname[] = CTL_DDB_NAMES;
|
|
|
|
struct ctlname debugname[CTL_DEBUG_MAXID];
|
|
|
|
#ifdef CTL_MACHDEP_NAMES
|
|
|
|
struct ctlname machdepname[] = CTL_MACHDEP_NAMES;
|
|
|
|
#endif
|
|
|
|
/* this one is dummy, it's used only for '-a' or '-A' */
|
|
|
|
struct ctlname procname[] = { {0, 0}, {"curproc", CTLTYPE_NODE} };
|
|
|
|
|
|
|
|
char names[BUFSIZ];
|
|
|
|
|
|
|
|
struct list {
|
|
|
|
struct ctlname *list;
|
|
|
|
int size;
|
|
|
|
};
|
|
|
|
struct list toplist = { topname, CTL_MAXID };
|
|
|
|
struct list secondlevel[] = {
|
|
|
|
{ 0, 0 }, /* CTL_UNSPEC */
|
|
|
|
{ kernname, KERN_MAXID }, /* CTL_KERN */
|
|
|
|
{ vmname, VM_MAXID }, /* CTL_VM */
|
|
|
|
{ vfsname, VFS_MAXID }, /* CTL_VFS */
|
|
|
|
{ netname, NET_MAXID }, /* CTL_NET */
|
|
|
|
{ 0, CTL_DEBUG_MAXID }, /* CTL_DEBUG */
|
|
|
|
{ hwname, HW_MAXID }, /* CTL_HW */
|
|
|
|
#ifdef CTL_MACHDEP_NAMES
|
|
|
|
{ machdepname, CPU_MAXID }, /* CTL_MACHDEP */
|
|
|
|
#else
|
|
|
|
{ 0, 0 }, /* CTL_MACHDEP */
|
|
|
|
#endif
|
|
|
|
{ username, USER_MAXID }, /* CTL_USER_NAMES */
|
|
|
|
{ ddbname, DDBCTL_MAXID }, /* CTL_DDB_NAMES */
|
|
|
|
{ procname, 2 }, /* dummy name */
|
2001-01-10 00:31:02 +03:00
|
|
|
{ 0, 0},
|
2000-01-17 05:32:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
int Aflag, aflag, nflag, wflag;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Variables requiring special processing.
|
|
|
|
*/
|
|
|
|
#define CLOCK 0x00000001
|
|
|
|
#define BOOTTIME 0x00000002
|
|
|
|
#define CONSDEV 0x00000004
|
2000-05-27 19:05:14 +04:00
|
|
|
#define DISKINFO 0x00000008
|
|
|
|
#define CPTIME 0x00000010
|
2000-01-17 05:32:06 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A dummy type for limits, which requires special parsing
|
|
|
|
*/
|
|
|
|
#define CTLTYPE_LIMIT ((~0x1) << 31)
|
|
|
|
|
|
|
|
int main __P((int, char *[]));
|
|
|
|
|
2000-07-15 05:44:35 +04:00
|
|
|
static void listall __P((const char *, struct list *));
|
2000-01-17 05:32:06 +03:00
|
|
|
static void parse __P((char *, int));
|
|
|
|
static void debuginit __P((void));
|
|
|
|
static int sysctl_inet __P((char *, char **, int[], int, int *));
|
|
|
|
#ifdef INET6
|
|
|
|
static int sysctl_inet6 __P((char *, char **, int[], int, int *));
|
|
|
|
#endif
|
|
|
|
#ifdef IPSEC
|
|
|
|
static int sysctl_key __P((char *, char **, int[], int, int *));
|
|
|
|
#endif
|
|
|
|
static int sysctl_vfs __P((char *, char **, int[], int, int *));
|
|
|
|
static int sysctl_vfsgen __P((char *, char **, int[], int, int *));
|
|
|
|
static int sysctl_mbuf __P((char *, char **, int[], int, int *));
|
|
|
|
static int sysctl_proc __P((char *, char **, int[], int, int *));
|
|
|
|
static int findname __P((char *, char *, char **, struct list *));
|
|
|
|
static void usage __P((void));
|
|
|
|
|
|
|
|
int
|
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char *argv[];
|
|
|
|
{
|
2000-03-13 01:56:48 +03:00
|
|
|
char *fn = NULL;
|
2000-01-17 05:32:06 +03:00
|
|
|
int ch, lvl1;
|
|
|
|
|
2000-03-13 01:56:48 +03:00
|
|
|
while ((ch = getopt(argc, argv, "Aaf:nw")) != -1) {
|
2000-01-17 05:32:06 +03:00
|
|
|
switch (ch) {
|
|
|
|
|
|
|
|
case 'A':
|
|
|
|
Aflag = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'a':
|
|
|
|
aflag = 1;
|
|
|
|
break;
|
|
|
|
|
2000-03-13 01:56:48 +03:00
|
|
|
case 'f':
|
|
|
|
fn = optarg;
|
|
|
|
wflag = 1;
|
|
|
|
break;
|
|
|
|
|
2000-01-17 05:32:06 +03:00
|
|
|
case 'n':
|
|
|
|
nflag = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w':
|
|
|
|
wflag = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (Aflag || aflag) {
|
|
|
|
debuginit();
|
|
|
|
for (lvl1 = 1; lvl1 < CTL_MAXID; lvl1++)
|
|
|
|
listall(topname[lvl1].ctl_name, &secondlevel[lvl1]);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-03-13 01:56:48 +03:00
|
|
|
|
|
|
|
if (fn) {
|
|
|
|
FILE *fp;
|
|
|
|
char *l;
|
|
|
|
|
|
|
|
fp = fopen(fn, "r");
|
|
|
|
if (fp == NULL) {
|
|
|
|
err(1, "%s", fn);
|
|
|
|
} else {
|
2000-07-19 14:05:43 +04:00
|
|
|
for (; (l = fparseln(fp, NULL, NULL, NULL, 0)) != NULL;
|
|
|
|
free(l)) {
|
|
|
|
if (*l)
|
2000-03-13 01:56:48 +03:00
|
|
|
parse(l, 1);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (argc == 0)
|
|
|
|
usage();
|
|
|
|
while (argc-- > 0)
|
|
|
|
parse(*argv++, 1);
|
|
|
|
}
|
2000-01-17 05:32:06 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* List all variables known to the system.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
listall(prefix, lp)
|
2000-07-15 05:44:35 +04:00
|
|
|
const char *prefix;
|
2000-01-17 05:32:06 +03:00
|
|
|
struct list *lp;
|
|
|
|
{
|
|
|
|
int lvl2;
|
|
|
|
char *cp, name[BUFSIZ];
|
|
|
|
|
|
|
|
if (lp->list == 0)
|
|
|
|
return;
|
|
|
|
strcpy(name, prefix);
|
|
|
|
cp = &name[strlen(name)];
|
|
|
|
*cp++ = '.';
|
|
|
|
for (lvl2 = 0; lvl2 < lp->size; lvl2++) {
|
|
|
|
if (lp->list[lvl2].ctl_name == 0)
|
|
|
|
continue;
|
|
|
|
strcpy(cp, lp->list[lvl2].ctl_name);
|
|
|
|
parse(name, Aflag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a name into a MIB entry.
|
|
|
|
* Lookup and print out the MIB entry if it exists.
|
|
|
|
* Set a new value if requested.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
parse(string, flags)
|
|
|
|
char *string;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
int indx, type, state, len;
|
|
|
|
int special = 0;
|
|
|
|
void *newval = 0;
|
|
|
|
int intval, newsize = 0;
|
|
|
|
quad_t quadval;
|
|
|
|
size_t size;
|
|
|
|
struct list *lp;
|
|
|
|
int mib[CTL_MAXNAME];
|
|
|
|
char *cp, *bufp, buf[BUFSIZ];
|
2001-03-09 04:02:10 +03:00
|
|
|
double loads[3];
|
2000-01-17 05:32:06 +03:00
|
|
|
|
|
|
|
bufp = buf;
|
|
|
|
snprintf(buf, BUFSIZ, "%s", string);
|
|
|
|
if ((cp = strchr(string, '=')) != NULL) {
|
|
|
|
if (!wflag)
|
|
|
|
errx(2, "Must specify -w to set variables");
|
|
|
|
*strchr(buf, '=') = '\0';
|
|
|
|
*cp++ = '\0';
|
|
|
|
while (isspace((unsigned char) *cp))
|
|
|
|
cp++;
|
|
|
|
newval = cp;
|
|
|
|
newsize = strlen(cp);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "top", &bufp, &toplist)) == -1)
|
|
|
|
return;
|
|
|
|
mib[0] = indx;
|
|
|
|
if (indx == CTL_DEBUG)
|
|
|
|
debuginit();
|
|
|
|
if (mib[0] == CTL_PROC) {
|
|
|
|
type = CTLTYPE_NODE;
|
|
|
|
len = 1;
|
|
|
|
} else {
|
|
|
|
lp = &secondlevel[indx];
|
|
|
|
if (lp->list == 0) {
|
|
|
|
warnx("Class `%s' is not implemented",
|
2000-03-13 01:56:48 +03:00
|
|
|
topname[indx].ctl_name);
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bufp == NULL) {
|
|
|
|
listall(topname[indx].ctl_name, lp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "second", &bufp, lp)) == -1)
|
|
|
|
return;
|
|
|
|
mib[1] = indx;
|
|
|
|
type = lp->list[indx].ctl_type;
|
|
|
|
len = 2;
|
|
|
|
}
|
|
|
|
switch (mib[0]) {
|
|
|
|
|
|
|
|
case CTL_KERN:
|
|
|
|
switch (mib[1]) {
|
|
|
|
case KERN_PROF:
|
|
|
|
mib[2] = GPROF_STATE;
|
|
|
|
size = sizeof state;
|
|
|
|
if (sysctl(mib, 3, &state, &size, NULL, 0) < 0) {
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: ", string);
|
2000-01-17 05:32:06 +03:00
|
|
|
warnx("Kernel is not compiled for profiling");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: %s\n", string,
|
2000-01-17 05:32:06 +03:00
|
|
|
state == GMON_PROF_OFF ? "off" : "running");
|
|
|
|
return;
|
|
|
|
case KERN_VNODE:
|
|
|
|
case KERN_FILE:
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
warnx("Use pstat to view %s information", string);
|
|
|
|
return;
|
|
|
|
case KERN_PROC:
|
2000-05-27 19:05:14 +04:00
|
|
|
case KERN_PROC2:
|
2000-05-27 19:30:12 +04:00
|
|
|
case KERN_PROC_ARGS:
|
2000-01-17 05:32:06 +03:00
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
warnx("Use ps to view %s information", string);
|
|
|
|
return;
|
|
|
|
case KERN_CLOCKRATE:
|
|
|
|
special |= CLOCK;
|
|
|
|
break;
|
|
|
|
case KERN_BOOTTIME:
|
|
|
|
special |= BOOTTIME;
|
|
|
|
break;
|
|
|
|
case KERN_NTPTIME:
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
2001-03-09 04:02:10 +03:00
|
|
|
warnx("Use ntpdc -c kerninfo to view %s information",
|
2000-01-17 05:32:06 +03:00
|
|
|
string);
|
|
|
|
return;
|
|
|
|
case KERN_MBUF:
|
|
|
|
len = sysctl_mbuf(string, &bufp, mib, flags, &type);
|
|
|
|
if (len < 0)
|
|
|
|
return;
|
|
|
|
break;
|
2000-05-27 19:05:14 +04:00
|
|
|
case KERN_CP_TIME:
|
|
|
|
special |= CPTIME;
|
|
|
|
break;
|
2000-07-15 11:07:02 +04:00
|
|
|
case KERN_MSGBUF:
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
warnx("Use dmesg to view %s information", string);
|
|
|
|
return;
|
|
|
|
case KERN_CONSDEV:
|
|
|
|
special |= CONSDEV;
|
|
|
|
break;
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CTL_HW:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CTL_VM:
|
2001-03-09 04:02:10 +03:00
|
|
|
switch (mib[1]) {
|
|
|
|
case VM_LOADAVG:
|
2000-01-17 05:32:06 +03:00
|
|
|
getloadavg(loads, 3);
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: ", string);
|
|
|
|
printf("%.2f %.2f %.2f\n", loads[0], loads[1],
|
|
|
|
loads[2]);
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
2000-02-12 21:00:58 +03:00
|
|
|
|
2001-03-09 04:02:10 +03:00
|
|
|
case VM_METER:
|
|
|
|
case VM_UVMEXP:
|
|
|
|
case VM_UVMEXP2:
|
|
|
|
if (flags) {
|
|
|
|
warnx("Use vmstat or systat to view %s"
|
|
|
|
"information", string);
|
2000-02-12 21:00:58 +03:00
|
|
|
}
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
2001-03-09 04:02:10 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-01-17 05:32:06 +03:00
|
|
|
|
|
|
|
case CTL_NET:
|
|
|
|
if (mib[1] == PF_INET) {
|
|
|
|
len = sysctl_inet(string, &bufp, mib, flags, &type);
|
|
|
|
if (len >= 0)
|
|
|
|
break;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifdef INET6
|
|
|
|
else if (mib[1] == PF_INET6) {
|
|
|
|
len = sysctl_inet6(string, &bufp, mib, flags, &type);
|
|
|
|
if (len >= 0)
|
|
|
|
break;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* INET6 */
|
|
|
|
#ifdef IPSEC
|
|
|
|
else if (mib[1] == PF_KEY) {
|
|
|
|
len = sysctl_key(string, &bufp, mib, flags, &type);
|
|
|
|
if (len >= 0)
|
|
|
|
break;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* IPSEC */
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
warnx("Use netstat to view %s information", string);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case CTL_DEBUG:
|
|
|
|
mib[2] = CTL_DEBUG_VALUE;
|
|
|
|
len = 3;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CTL_MACHDEP:
|
|
|
|
#ifdef CPU_CONSDEV
|
|
|
|
if (mib[1] == CPU_CONSDEV)
|
|
|
|
special |= CONSDEV;
|
2000-02-17 11:54:16 +03:00
|
|
|
#endif
|
|
|
|
#ifdef CPU_DISKINFO
|
|
|
|
if (mib[1] == CPU_DISKINFO)
|
|
|
|
special |= DISKINFO;
|
2000-01-17 05:32:06 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CTL_VFS:
|
|
|
|
if (mib[1] == VFS_GENERIC)
|
|
|
|
len = sysctl_vfsgen(string, &bufp, mib, flags, &type);
|
|
|
|
else
|
|
|
|
len = sysctl_vfs(string, &bufp, mib, flags, &type);
|
|
|
|
if (len < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* XXX Special-case for NFS stats. */
|
|
|
|
if (mib[1] == 2 && mib[2] == NFS_NFSSTATS) {
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
warnx("Use nfsstat to view %s information", string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-01-10 00:31:02 +03:00
|
|
|
case CTL_VENDOR:
|
2000-01-17 05:32:06 +03:00
|
|
|
case CTL_USER:
|
|
|
|
case CTL_DDB:
|
|
|
|
break;
|
|
|
|
case CTL_PROC:
|
|
|
|
len = sysctl_proc(string, &bufp, mib, flags, &type);
|
|
|
|
if (len < 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
warnx("Illegal top level value: %d", mib[0]);
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (bufp) {
|
|
|
|
warnx("Name %s in %s is unknown", bufp, string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (newsize > 0) {
|
|
|
|
switch (type) {
|
|
|
|
case CTLTYPE_INT:
|
|
|
|
intval = atoi(newval);
|
|
|
|
newval = &intval;
|
|
|
|
newsize = sizeof intval;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CTLTYPE_LIMIT:
|
|
|
|
if (strcmp(newval, "unlimited") == 0) {
|
|
|
|
quadval = RLIM_INFINITY;
|
|
|
|
newval = &quadval;
|
|
|
|
newsize = sizeof quadval;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case CTLTYPE_QUAD:
|
2001-01-05 05:02:57 +03:00
|
|
|
sscanf(newval, "%lld", (long long *)&quadval);
|
2000-01-17 05:32:06 +03:00
|
|
|
newval = &quadval;
|
|
|
|
newsize = sizeof quadval;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
size = BUFSIZ;
|
|
|
|
if (sysctl(mib, len, buf, &size, newsize ? newval : 0, newsize) == -1) {
|
|
|
|
if (flags == 0)
|
|
|
|
return;
|
|
|
|
switch (errno) {
|
|
|
|
case EOPNOTSUPP:
|
|
|
|
warnx("The value of %s is not available", string);
|
|
|
|
return;
|
|
|
|
case ENOTDIR:
|
|
|
|
warnx("The specification of %s is incomplete",
|
|
|
|
string);
|
|
|
|
return;
|
|
|
|
case ENOMEM:
|
|
|
|
warnx("The type %s is unknown to this program",
|
|
|
|
string);
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
warn("sysctl() for %s failed", string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (special & CLOCK) {
|
|
|
|
struct clockinfo *clkp = (struct clockinfo *)buf;
|
|
|
|
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: ", string);
|
|
|
|
printf(
|
2000-01-17 05:32:06 +03:00
|
|
|
"tick = %d, tickadj = %d, hz = %d, profhz = %d, stathz = %d\n",
|
|
|
|
clkp->tick, clkp->tickadj, clkp->hz, clkp->profhz, clkp->stathz);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (special & BOOTTIME) {
|
|
|
|
struct timeval *btp = (struct timeval *)buf;
|
|
|
|
time_t boottime;
|
|
|
|
|
|
|
|
if (!nflag) {
|
|
|
|
boottime = btp->tv_sec;
|
2000-04-21 06:49:37 +04:00
|
|
|
/* ctime() provides the trailing newline */
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = %s", string, ctime(&boottime));
|
2000-01-17 05:32:06 +03:00
|
|
|
} else
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%ld\n", (long) btp->tv_sec);
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (special & CONSDEV) {
|
|
|
|
dev_t dev = *(dev_t *)buf;
|
|
|
|
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = %s\n", string, devname(dev, S_IFCHR));
|
2000-01-17 05:32:06 +03:00
|
|
|
else
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("0x%x\n", dev);
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
|
|
|
}
|
2000-02-17 11:54:16 +03:00
|
|
|
if (special & DISKINFO) {
|
|
|
|
/* Don't know a good way to deal with this i386 specific one */
|
|
|
|
return;
|
|
|
|
}
|
2000-05-27 19:05:14 +04:00
|
|
|
if (special & CPTIME) {
|
2000-05-29 15:59:01 +04:00
|
|
|
u_int64_t *cp_time = (u_int64_t *)buf;
|
2000-05-27 19:05:14 +04:00
|
|
|
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: ", string);
|
2000-05-30 01:42:12 +04:00
|
|
|
printf("user = %llu, nice = %llu, sys = %llu, intr = %llu, "
|
|
|
|
"idle = %llu\n", (unsigned long long) cp_time[0],
|
|
|
|
(unsigned long long) cp_time[1],
|
|
|
|
(unsigned long long) cp_time[2],
|
|
|
|
(unsigned long long) cp_time[3],
|
|
|
|
(unsigned long long) cp_time[4]);
|
2000-05-27 19:05:14 +04:00
|
|
|
return;
|
|
|
|
}
|
2000-02-17 11:54:16 +03:00
|
|
|
|
2000-01-17 05:32:06 +03:00
|
|
|
switch (type) {
|
|
|
|
case CTLTYPE_INT:
|
|
|
|
if (newsize == 0) {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = ", string);
|
|
|
|
printf("%d\n", *(int *)buf);
|
2000-01-17 05:32:06 +03:00
|
|
|
} else {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: %d -> ", string, *(int *)buf);
|
|
|
|
printf("%d\n", *(int *)newval);
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
case CTLTYPE_STRING:
|
|
|
|
if (newsize == 0) {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = ", string);
|
|
|
|
printf("%s\n", buf);
|
2000-01-17 05:32:06 +03:00
|
|
|
} else {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: %s -> ", string, buf);
|
|
|
|
printf("%s\n", (char *) newval);
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
case CTLTYPE_LIMIT:
|
|
|
|
#define PRINTF_LIMIT(lim) { \
|
|
|
|
if ((lim) == RLIM_INFINITY) \
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("unlimited");\
|
2000-01-17 05:32:06 +03:00
|
|
|
else \
|
2001-01-05 05:02:57 +03:00
|
|
|
printf("%lld", (long long)(lim)); \
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (newsize == 0) {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = ", string);
|
2000-01-17 05:32:06 +03:00
|
|
|
PRINTF_LIMIT((long long)(*(quad_t *)buf));
|
|
|
|
} else {
|
|
|
|
if (!nflag) {
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s: ", string);
|
2000-01-17 05:32:06 +03:00
|
|
|
PRINTF_LIMIT((long long)(*(quad_t *)buf));
|
2000-05-27 19:11:05 +04:00
|
|
|
printf(" -> ");
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
PRINTF_LIMIT((long long)(*(quad_t *)newval));
|
|
|
|
}
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("\n");
|
2000-01-17 05:32:06 +03:00
|
|
|
return;
|
|
|
|
#undef PRINTF_LIMIT
|
|
|
|
|
|
|
|
case CTLTYPE_QUAD:
|
|
|
|
if (newsize == 0) {
|
|
|
|
if (!nflag)
|
2000-05-27 19:11:05 +04:00
|
|
|
printf("%s = ", string);
|
2001-01-05 05:02:57 +03:00
|
|
|
printf("%lld\n", (long long)(*(quad_t *)buf));
|
2000-01-17 05:32:06 +03:00
|
|
|
} else {
|
|
|
|
if (!nflag)
|
2001-01-05 05:02:57 +03:00
|
|
|
printf("%s: %lld -> ", string,
|
2000-01-17 05:32:06 +03:00
|
|
|
(long long)(*(quad_t *)buf));
|
2001-01-05 05:02:57 +03:00
|
|
|
printf("%lld\n", (long long)(*(quad_t *)newval));
|
2000-01-17 05:32:06 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
case CTLTYPE_STRUCT:
|
|
|
|
warnx("%s: unknown structure returned", string);
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
case CTLTYPE_NODE:
|
|
|
|
warnx("%s: unknown type returned", string);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the set of debugging names
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
debuginit()
|
|
|
|
{
|
|
|
|
int mib[3], loc, i;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
if (secondlevel[CTL_DEBUG].list != 0)
|
|
|
|
return;
|
|
|
|
secondlevel[CTL_DEBUG].list = debugname;
|
|
|
|
mib[0] = CTL_DEBUG;
|
|
|
|
mib[2] = CTL_DEBUG_NAME;
|
|
|
|
for (loc = 0, i = 0; i < CTL_DEBUG_MAXID; i++) {
|
|
|
|
mib[1] = i;
|
|
|
|
size = BUFSIZ - loc;
|
|
|
|
if (sysctl(mib, 3, &names[loc], &size, NULL, 0) == -1)
|
|
|
|
continue;
|
|
|
|
debugname[i].ctl_name = &names[loc];
|
|
|
|
debugname[i].ctl_type = CTLTYPE_INT;
|
|
|
|
loc += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ctlname inetname[] = CTL_IPPROTO_NAMES;
|
|
|
|
struct ctlname ipname[] = IPCTL_NAMES;
|
|
|
|
struct ctlname icmpname[] = ICMPCTL_NAMES;
|
|
|
|
struct ctlname tcpname[] = TCPCTL_NAMES;
|
|
|
|
struct ctlname udpname[] = UDPCTL_NAMES;
|
|
|
|
#ifdef IPSEC
|
|
|
|
struct ctlname ipsecname[] = IPSECCTL_NAMES;
|
|
|
|
#endif
|
|
|
|
struct list inetlist = { inetname, IPPROTO_MAXID };
|
|
|
|
struct list inetvars[] = {
|
|
|
|
/*0*/ { ipname, IPCTL_MAXID }, /* ip */
|
|
|
|
{ icmpname, ICMPCTL_MAXID }, /* icmp */
|
|
|
|
{ 0, 0 }, /* igmp */
|
|
|
|
{ 0, 0 }, /* ggmp */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ tcpname, TCPCTL_MAXID }, /* tcp */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 }, /* egp */
|
|
|
|
{ 0, 0 },
|
|
|
|
/*10*/ { 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 }, /* pup */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ udpname, UDPCTL_MAXID }, /* udp */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
/*20*/ { 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 }, /* idp */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
/*30*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*40*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
#ifdef IPSEC
|
|
|
|
{ ipsecname, IPSECCTL_MAXID }, /* esp - for backward compatibility */
|
|
|
|
{ ipsecname, IPSECCTL_MAXID }, /* ah */
|
|
|
|
#else
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle internet requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_inet(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, &inetlist);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, &inetlist)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
if (indx <= IPPROTO_MAXID && inetvars[indx].list != NULL)
|
|
|
|
lp = &inetvars[indx];
|
|
|
|
else if (!flags)
|
|
|
|
return (-1);
|
|
|
|
else {
|
|
|
|
warnx("No variables defined for protocol %s", string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[3] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return (4);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef INET6
|
|
|
|
struct ctlname inet6name[] = CTL_IPV6PROTO_NAMES;
|
|
|
|
struct ctlname ip6name[] = IPV6CTL_NAMES;
|
|
|
|
struct ctlname icmp6name[] = ICMPV6CTL_NAMES;
|
|
|
|
#ifdef TCP6
|
|
|
|
struct ctlname tcp6name[] = TCP6CTL_NAMES;
|
|
|
|
#endif
|
|
|
|
struct ctlname udp6name[] = UDP6CTL_NAMES;
|
2000-06-07 08:40:46 +04:00
|
|
|
struct ctlname pim6name[] = PIM6CTL_NAMES;
|
2000-01-17 05:32:06 +03:00
|
|
|
struct ctlname ipsec6name[] = IPSEC6CTL_NAMES;
|
|
|
|
struct list inet6list = { inet6name, IPV6PROTO_MAXID };
|
|
|
|
struct list inet6vars[] = {
|
|
|
|
/*0*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
#ifdef TCP6
|
|
|
|
{ tcp6name, TCP6CTL_MAXID }, /* tcp6 */
|
|
|
|
#else
|
|
|
|
{ 0, 0 },
|
|
|
|
#endif
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
/*10*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ udp6name, UDP6CTL_MAXID }, /* udp6 */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
/*20*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*30*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*40*/ { 0, 0 },
|
|
|
|
{ ip6name, IPV6CTL_MAXID }, /* ipv6 */
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
#ifdef IPSEC
|
|
|
|
/*50*/ { ipsec6name, IPSECCTL_MAXID }, /* esp6 - for backward compatibility */
|
|
|
|
{ ipsec6name, IPSECCTL_MAXID }, /* ah6 */
|
|
|
|
#else
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
#endif
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ icmp6name, ICMPV6CTL_MAXID }, /* icmp6 */
|
|
|
|
{ 0, 0 },
|
|
|
|
/*60*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*70*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*80*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*90*/ { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
{ 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
|
|
|
|
/*100*/ { 0, 0 },
|
|
|
|
{ 0, 0 },
|
|
|
|
{ 0, 0 },
|
2000-06-07 08:40:46 +04:00
|
|
|
{ pim6name, PIM6CTL_MAXID }, /* pim6 */
|
2000-01-17 05:32:06 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle internet6 requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_inet6(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, &inet6list);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, &inet6list)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
if (indx <= sizeof(inet6vars)/sizeof(inet6vars[0])
|
|
|
|
&& inet6vars[indx].list != NULL) {
|
|
|
|
lp = &inet6vars[indx];
|
|
|
|
} else if (!flags) {
|
|
|
|
return (-1);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "%s: no variables defined for this protocol\n",
|
|
|
|
string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[3] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return (4);
|
|
|
|
}
|
|
|
|
#endif /* INET6 */
|
|
|
|
|
|
|
|
#ifdef IPSEC
|
|
|
|
struct ctlname keynames[] = KEYCTL_NAMES;
|
|
|
|
struct list keylist = { keynames, KEYCTL_MAXID };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle key requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_key(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, &keylist);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, &keylist)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
lp = &keylist;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
#endif /*IPSEC*/
|
|
|
|
|
|
|
|
struct ctlname ffsname[] = FFS_NAMES;
|
|
|
|
struct ctlname nfsname[] = NFS_NAMES;
|
|
|
|
struct list vfsvars[] = {
|
|
|
|
{ 0, 0 }, /* generic */
|
|
|
|
{ ffsname, FFS_MAXID }, /* FFS */
|
|
|
|
{ nfsname, NFS_MAXID }, /* NFS */
|
|
|
|
{ 0, 0 }, /* MFS */
|
|
|
|
{ 0, 0 }, /* MSDOS */
|
|
|
|
{ 0, 0 }, /* LFS */
|
|
|
|
{ 0, 0 }, /* old LOFS */
|
|
|
|
{ 0, 0 }, /* FDESC */
|
|
|
|
{ 0, 0 }, /* PORTAL */
|
|
|
|
{ 0, 0 }, /* NULL */
|
|
|
|
{ 0, 0 }, /* UMAP */
|
|
|
|
{ 0, 0 }, /* KERNFS */
|
|
|
|
{ 0, 0 }, /* PROCFS */
|
|
|
|
{ 0, 0 }, /* AFS */
|
|
|
|
{ 0, 0 }, /* CD9660 */
|
|
|
|
{ 0, 0 }, /* UNION */
|
|
|
|
{ 0, 0 }, /* ADOSFS */
|
|
|
|
{ 0, 0 }, /* EXT2FS */
|
|
|
|
{ 0, 0 }, /* CODA */
|
|
|
|
{ 0, 0 }, /* FILECORE */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle vfs requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_vfs(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp = &vfsvars[mib[1]];
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (lp->list == NULL) {
|
|
|
|
if (flags)
|
|
|
|
warnx("No variables defined for file system %s",
|
|
|
|
string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return (3);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ctlname vfsgenname[] = CTL_VFSGENCTL_NAMES;
|
|
|
|
struct list vfsgenvars = { vfsgenname, VFSGEN_MAXID };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* handle vfs.generic requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_vfsgen(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp = &vfsgenvars;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
/* Don't bother with VFS_CONF. */
|
|
|
|
if (indx == VFS_CONF)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return (3);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ctlname procnames[] = PROC_PID_NAMES;
|
|
|
|
struct list procvars = {procnames, PROC_PID_MAXID};
|
|
|
|
struct ctlname proclimitnames[] = PROC_PID_LIMIT_NAMES;
|
|
|
|
struct list proclimitvars = {proclimitnames, PROC_PID_LIMIT_MAXID};
|
|
|
|
struct ctlname proclimittypenames[] = PROC_PID_LIMIT_TYPE_NAMES;
|
|
|
|
struct list proclimittypevars = {proclimittypenames,
|
|
|
|
PROC_PID_LIMIT_TYPE_MAXID};
|
|
|
|
/*
|
|
|
|
* handle kern.proc requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_proc(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
char *cp, name[BUFSIZ];
|
|
|
|
struct list *lp;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
strcpy(name, string);
|
|
|
|
cp = &name[strlen(name)];
|
|
|
|
*cp++ = '.';
|
|
|
|
strcpy(cp, "curproc");
|
2001-03-09 04:02:10 +03:00
|
|
|
parse(name, Aflag);
|
2000-01-17 05:32:06 +03:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
cp = strsep(bufpp, ".");
|
|
|
|
if (cp == NULL) {
|
|
|
|
warnx("%s: incomplete specification", string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (strcmp(cp, "curproc") == 0) {
|
|
|
|
mib[1] = PROC_CURPROC;
|
|
|
|
} else {
|
|
|
|
mib[1] = atoi(cp);
|
|
|
|
if (mib[1] == 0) {
|
|
|
|
warnx("second level name %s in %s is invalid", cp,
|
|
|
|
string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*typep = CTLTYPE_NODE;
|
|
|
|
lp = &procvars;
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
if (*typep != CTLTYPE_NODE)
|
|
|
|
return(3);
|
|
|
|
lp = &proclimitvars;
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "fourth", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[3] = indx;
|
|
|
|
lp = &proclimittypevars;
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "fifth", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[4] = indx;
|
|
|
|
*typep = CTLTYPE_LIMIT;
|
|
|
|
return(5);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ctlname mbufnames[] = CTL_MBUF_NAMES;
|
|
|
|
struct list mbufvars = { mbufnames, MBUF_MAXID };
|
|
|
|
/*
|
|
|
|
* handle kern.mbuf requests
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_mbuf(string, bufpp, mib, flags, typep)
|
|
|
|
char *string;
|
|
|
|
char **bufpp;
|
|
|
|
int mib[];
|
|
|
|
int flags;
|
|
|
|
int *typep;
|
|
|
|
{
|
|
|
|
struct list *lp = &mbufvars;
|
|
|
|
int indx;
|
|
|
|
|
|
|
|
if (*bufpp == NULL) {
|
|
|
|
listall(string, lp);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if ((indx = findname(string, "third", bufpp, lp)) == -1)
|
|
|
|
return (-1);
|
|
|
|
mib[2] = indx;
|
|
|
|
*typep = lp->list[indx].ctl_type;
|
|
|
|
return (3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan a list of names searching for a particular name.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
findname(string, level, bufp, namelist)
|
|
|
|
char *string;
|
|
|
|
char *level;
|
|
|
|
char **bufp;
|
|
|
|
struct list *namelist;
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (namelist->list == 0 || (name = strsep(bufp, ".")) == NULL) {
|
|
|
|
warnx("%s: incomplete specification", string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
for (i = 0; i < namelist->size; i++)
|
|
|
|
if (namelist->list[i].ctl_name != NULL &&
|
|
|
|
strcmp(name, namelist->list[i].ctl_name) == 0)
|
|
|
|
break;
|
|
|
|
if (i == namelist->size) {
|
|
|
|
warnx("%s level name %s in %s is invalid",
|
|
|
|
level, name, string);
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage()
|
|
|
|
{
|
2001-02-20 01:48:57 +03:00
|
|
|
const char *progname = getprogname();
|
|
|
|
|
2000-04-09 03:18:27 +04:00
|
|
|
(void)fprintf(stderr, "Usage:\t%s %s\n\t%s %s\n\t%s %s\n\t%s %s\n\t%s %s\n",
|
2001-02-20 01:48:57 +03:00
|
|
|
progname, "[-n] variable ...",
|
|
|
|
progname, "[-n] -w variable=value ...",
|
|
|
|
progname, "[-n] -a",
|
|
|
|
progname, "[-n] -A",
|
|
|
|
progname, "[-n] -f file");
|
2000-01-17 05:32:06 +03:00
|
|
|
exit(1);
|
|
|
|
}
|