1994-05-24 10:09:53 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986, 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Mike Karels at Berkeley Software Design, Inc.
|
|
|
|
*
|
1995-12-04 16:48:58 +00:00
|
|
|
* Quite extensively rewritten by Poul-Henning Kamp of the FreeBSD
|
|
|
|
* project, to make these variables more userfriendly.
|
|
|
|
*
|
1994-05-24 10:09:53 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
|
1997-01-14 07:20:47 +00:00
|
|
|
* $FreeBSD$
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
1995-12-04 16:48:58 +00:00
|
|
|
#include <sys/malloc.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <sys/proc.h>
|
1996-04-07 13:03:06 +00:00
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/sysproto.h>
|
1995-12-05 21:51:45 +00:00
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
1996-04-07 13:03:06 +00:00
|
|
|
#include <sys/vnode.h>
|
1995-12-05 21:51:45 +00:00
|
|
|
|
1995-11-20 12:42:39 +00:00
|
|
|
/*
|
|
|
|
* Locking and stats
|
|
|
|
*/
|
|
|
|
static struct sysctl_lock {
|
|
|
|
int sl_lock;
|
|
|
|
int sl_want;
|
|
|
|
int sl_locked;
|
|
|
|
} memlock;
|
|
|
|
|
|
|
|
static int sysctl_root SYSCTL_HANDLER_ARGS;
|
|
|
|
|
1995-11-08 08:48:36 +00:00
|
|
|
extern struct linker_set sysctl_;
|
|
|
|
|
1995-12-04 16:48:58 +00:00
|
|
|
/*
|
|
|
|
* Initialization of the MIB tree.
|
|
|
|
*
|
|
|
|
* Order by number in each linker_set.
|
|
|
|
*/
|
1995-11-20 12:42:39 +00:00
|
|
|
|
1995-11-08 08:48:36 +00:00
|
|
|
static int
|
1995-11-11 00:09:21 +00:00
|
|
|
sysctl_order_cmp(const void *a, const void *b)
|
1995-11-08 08:48:36 +00:00
|
|
|
{
|
1996-09-03 22:26:31 +00:00
|
|
|
struct sysctl_oid const * const *pa;
|
|
|
|
struct sysctl_oid const * const *pb;
|
1995-11-11 00:09:21 +00:00
|
|
|
|
1996-09-03 22:26:31 +00:00
|
|
|
pa = (struct sysctl_oid const * const *)a;
|
|
|
|
pb = (struct sysctl_oid const * const *)b;
|
1995-11-11 00:09:21 +00:00
|
|
|
if (*pa == NULL)
|
|
|
|
return (1);
|
|
|
|
if (*pb == NULL)
|
|
|
|
return (-1);
|
1995-11-08 08:48:36 +00:00
|
|
|
return ((*pa)->oid_number - (*pb)->oid_number);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sysctl_order(void *arg)
|
|
|
|
{
|
1995-12-04 16:48:58 +00:00
|
|
|
int j, k;
|
1995-11-08 08:48:36 +00:00
|
|
|
struct linker_set *l = (struct linker_set *) arg;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
|
1995-12-04 16:48:58 +00:00
|
|
|
/* First, find the highest oid we have */
|
|
|
|
j = l->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) l->ls_items;
|
1996-04-13 13:28:54 +00:00
|
|
|
for (k = 0; j--; oidpp++) {
|
|
|
|
if ((*oidpp)->oid_arg1 == arg) {
|
|
|
|
*oidpp = 0;
|
|
|
|
continue;
|
|
|
|
}
|
1995-12-04 16:48:58 +00:00
|
|
|
if (*oidpp && (*oidpp)->oid_number > k)
|
|
|
|
k = (*oidpp)->oid_number;
|
1996-04-13 13:28:54 +00:00
|
|
|
}
|
1995-12-04 16:48:58 +00:00
|
|
|
|
|
|
|
/* Next, replace all OID_AUTO oids with new numbers */
|
|
|
|
j = l->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) l->ls_items;
|
|
|
|
k += 100;
|
|
|
|
for (; j--; oidpp++)
|
|
|
|
if (*oidpp && (*oidpp)->oid_number == OID_AUTO)
|
|
|
|
(*oidpp)->oid_number = k++;
|
|
|
|
|
|
|
|
/* Finally: sort by oid */
|
1995-11-08 08:48:36 +00:00
|
|
|
j = l->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) l->ls_items;
|
|
|
|
for (; j--; oidpp++) {
|
|
|
|
if (!*oidpp)
|
|
|
|
continue;
|
1995-11-12 19:52:09 +00:00
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) == CTLTYPE_NODE)
|
1995-11-08 08:48:36 +00:00
|
|
|
if (!(*oidpp)->oid_handler)
|
|
|
|
sysctl_order((*oidpp)->oid_arg1);
|
|
|
|
}
|
|
|
|
qsort(l->ls_items, l->ls_length, sizeof l->ls_items[0],
|
|
|
|
sysctl_order_cmp);
|
|
|
|
}
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
SYSINIT(sysctl, SI_SUB_KMEM, SI_ORDER_ANY, sysctl_order, &sysctl_);
|
1995-11-08 08:48:36 +00:00
|
|
|
|
1995-12-04 16:48:58 +00:00
|
|
|
/*
|
|
|
|
* "Staff-functions"
|
|
|
|
*
|
1995-12-06 13:27:39 +00:00
|
|
|
* These functions implement a presently undocumented interface
|
|
|
|
* used by the sysctl program to walk the tree, and get the type
|
|
|
|
* so it can print the value.
|
|
|
|
* This interface is under work and consideration, and should probably
|
|
|
|
* be killed with a big axe by the first person who can find the time.
|
|
|
|
* (be aware though, that the proper interface isn't as obvious as it
|
|
|
|
* may seem, there are various conflicting requirements.
|
|
|
|
*
|
1995-12-04 16:48:58 +00:00
|
|
|
* {0,0} printf the entire MIB-tree.
|
|
|
|
* {0,1,...} return the name of the "..." OID.
|
|
|
|
* {0,2,...} return the next OID.
|
|
|
|
* {0,3} return the OID of the name in "new"
|
1995-12-06 13:27:39 +00:00
|
|
|
* {0,4,...} return the kind & format info for the "..." OID.
|
1995-12-04 16:48:58 +00:00
|
|
|
*/
|
|
|
|
|
1995-11-08 08:48:36 +00:00
|
|
|
static void
|
1995-11-12 19:52:09 +00:00
|
|
|
sysctl_sysctl_debug_dump_node(struct linker_set *l, int i)
|
1995-11-08 08:48:36 +00:00
|
|
|
{
|
1995-11-12 19:52:09 +00:00
|
|
|
int j, k;
|
1995-11-08 08:48:36 +00:00
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
|
|
|
|
j = l->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) l->ls_items;
|
|
|
|
for (; j--; oidpp++) {
|
|
|
|
|
|
|
|
if (!*oidpp)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (k=0; k<i; k++)
|
|
|
|
printf(" ");
|
|
|
|
|
|
|
|
printf("%d %s ", (*oidpp)->oid_number, (*oidpp)->oid_name);
|
|
|
|
|
|
|
|
printf("%c%c",
|
|
|
|
(*oidpp)->oid_kind & CTLFLAG_RD ? 'R':' ',
|
|
|
|
(*oidpp)->oid_kind & CTLFLAG_WR ? 'W':' ');
|
|
|
|
|
1996-04-13 13:28:54 +00:00
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
printf(" *Handler");
|
|
|
|
|
1995-11-08 08:48:36 +00:00
|
|
|
switch ((*oidpp)->oid_kind & CTLTYPE) {
|
1995-11-12 19:52:09 +00:00
|
|
|
case CTLTYPE_NODE:
|
1996-04-13 13:28:54 +00:00
|
|
|
printf(" Node\n");
|
|
|
|
if (!(*oidpp)->oid_handler) {
|
1995-11-08 08:48:36 +00:00
|
|
|
sysctl_sysctl_debug_dump_node(
|
1995-11-12 19:52:09 +00:00
|
|
|
(*oidpp)->oid_arg1, i+2);
|
1995-11-08 08:48:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CTLTYPE_INT: printf(" Int\n"); break;
|
|
|
|
case CTLTYPE_STRING: printf(" String\n"); break;
|
|
|
|
case CTLTYPE_QUAD: printf(" Quad\n"); break;
|
|
|
|
case CTLTYPE_OPAQUE: printf(" Opaque/struct\n"); break;
|
|
|
|
default: printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_sysctl_debug SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
1995-11-12 19:52:09 +00:00
|
|
|
sysctl_sysctl_debug_dump_node(&sysctl_, 0);
|
1995-11-08 08:48:36 +00:00
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_PROC(_sysctl, 0, debug, CTLTYPE_STRING|CTLFLAG_RD,
|
1995-12-04 16:48:58 +00:00
|
|
|
0, 0, sysctl_sysctl_debug, "-", "");
|
1995-11-06 16:18:52 +00:00
|
|
|
|
1995-12-04 16:48:58 +00:00
|
|
|
static int
|
|
|
|
sysctl_sysctl_name SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
|
|
|
int *name = (int *) arg1;
|
|
|
|
u_int namelen = arg2;
|
|
|
|
int i, j, error = 0;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
struct linker_set *lsp = &sysctl_;
|
|
|
|
char buf[10];
|
|
|
|
|
|
|
|
while (namelen) {
|
|
|
|
if (!lsp) {
|
|
|
|
sprintf(buf,"%d",*name);
|
|
|
|
if (req->oldidx)
|
|
|
|
error = SYSCTL_OUT(req, ".", 1);
|
|
|
|
if (!error)
|
|
|
|
error = SYSCTL_OUT(req, buf, strlen(buf));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
namelen--;
|
|
|
|
name++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
oidpp = (struct sysctl_oid **) lsp->ls_items;
|
|
|
|
j = lsp->ls_length;
|
|
|
|
lsp = 0;
|
|
|
|
for (i = 0; i < j; i++, oidpp++) {
|
|
|
|
if (*oidpp && ((*oidpp)->oid_number != *name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (req->oldidx)
|
|
|
|
error = SYSCTL_OUT(req, ".", 1);
|
|
|
|
if (!error)
|
|
|
|
error = SYSCTL_OUT(req, (*oidpp)->oid_name,
|
|
|
|
strlen((*oidpp)->oid_name));
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
namelen--;
|
|
|
|
name++;
|
|
|
|
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) != CTLTYPE_NODE)
|
|
|
|
break;
|
1995-11-06 16:18:52 +00:00
|
|
|
|
1995-12-04 16:48:58 +00:00
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
break;
|
|
|
|
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (SYSCTL_OUT(req, "", 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_NODE(_sysctl, 1, name, CTLFLAG_RD, sysctl_sysctl_name, "");
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_sysctl_next_ls (struct linker_set *lsp, int *name, u_int namelen,
|
|
|
|
int *next, int *len, int level, struct sysctl_oid **oidp)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
|
|
|
|
oidpp = (struct sysctl_oid **) lsp->ls_items;
|
|
|
|
j = lsp->ls_length;
|
|
|
|
*len = level;
|
|
|
|
for (i = 0; i < j; i++, oidpp++) {
|
|
|
|
if (!*oidpp)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*next = (*oidpp)->oid_number;
|
|
|
|
*oidp = *oidpp;
|
|
|
|
|
|
|
|
if (!namelen) {
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) != CTLTYPE_NODE)
|
|
|
|
return 0;
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
/* We really should call the handler here...*/
|
|
|
|
return 0;
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
1996-04-13 13:28:54 +00:00
|
|
|
if (!sysctl_sysctl_next_ls (lsp, 0, 0, next+1,
|
|
|
|
len, level+1, oidp))
|
|
|
|
return 0;
|
|
|
|
goto next;
|
1995-12-04 16:48:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((*oidpp)->oid_number < *name)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((*oidpp)->oid_number > *name) {
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) != CTLTYPE_NODE)
|
|
|
|
return 0;
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
return 0;
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
if (!sysctl_sysctl_next_ls (lsp, name+1, namelen-1,
|
|
|
|
next+1, len, level+1, oidp))
|
|
|
|
return (0);
|
1996-04-13 13:28:54 +00:00
|
|
|
goto next;
|
1995-12-04 16:48:58 +00:00
|
|
|
}
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) != CTLTYPE_NODE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
if (!sysctl_sysctl_next_ls (lsp, name+1, namelen-1, next+1,
|
|
|
|
len, level+1, oidp))
|
|
|
|
return (0);
|
1996-04-13 13:28:54 +00:00
|
|
|
next:
|
1995-12-04 16:48:58 +00:00
|
|
|
namelen = 1;
|
|
|
|
*len = level;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_sysctl_next SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
|
|
|
int *name = (int *) arg1;
|
|
|
|
u_int namelen = arg2;
|
|
|
|
int i, j, error;
|
|
|
|
struct sysctl_oid *oid;
|
|
|
|
struct linker_set *lsp = &sysctl_;
|
|
|
|
int newoid[CTL_MAXNAME];
|
|
|
|
|
|
|
|
i = sysctl_sysctl_next_ls (lsp, name, namelen, newoid, &j, 1, &oid);
|
|
|
|
if (i)
|
|
|
|
return ENOENT;
|
1995-12-06 13:27:39 +00:00
|
|
|
error = SYSCTL_OUT(req, newoid, j * sizeof (int));
|
1995-12-04 16:48:58 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
SYSCTL_NODE(_sysctl, 2, next, CTLFLAG_RD, sysctl_sysctl_next, "");
|
|
|
|
|
|
|
|
static int
|
|
|
|
name2oid (char *name, int *oid, int *len, struct sysctl_oid **oidp)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
struct linker_set *lsp = &sysctl_;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (!*name)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
p = name + strlen(name) - 1 ;
|
|
|
|
if (*p == '.')
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
*len = 0;
|
|
|
|
|
|
|
|
for (p = name; *p && *p != '.'; p++)
|
|
|
|
;
|
|
|
|
i = *p;
|
|
|
|
if (i == '.')
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) lsp->ls_items;
|
|
|
|
|
|
|
|
while (j-- && *len < CTL_MAXNAME) {
|
|
|
|
if (!*oidpp)
|
|
|
|
continue;
|
|
|
|
if (strcmp(name, (*oidpp)->oid_name)) {
|
|
|
|
oidpp++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*oid++ = (*oidpp)->oid_number;
|
|
|
|
(*len)++;
|
|
|
|
|
|
|
|
if (!i) {
|
|
|
|
if (oidp)
|
|
|
|
*oidp = *oidpp;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) != CTLTYPE_NODE)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
break;
|
|
|
|
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **)lsp->ls_items;
|
|
|
|
name = p+1;
|
|
|
|
for (p = name; *p && *p != '.'; p++)
|
|
|
|
;
|
|
|
|
i = *p;
|
|
|
|
if (i == '.')
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_sysctl_name2oid SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
int error, oid[CTL_MAXNAME], len;
|
|
|
|
struct sysctl_oid *op = 0;
|
|
|
|
|
|
|
|
if (!req->newlen)
|
|
|
|
return ENOENT;
|
|
|
|
|
|
|
|
p = malloc(req->newlen+1, M_SYSCTL, M_WAITOK);
|
|
|
|
|
|
|
|
error = SYSCTL_IN(req, p, req->newlen);
|
|
|
|
if (error) {
|
|
|
|
free(p, M_SYSCTL);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
p [req->newlen] = '\0';
|
|
|
|
|
|
|
|
error = name2oid(p, oid, &len, &op);
|
|
|
|
|
|
|
|
free(p, M_SYSCTL);
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
|
1995-12-06 13:27:39 +00:00
|
|
|
error = SYSCTL_OUT(req, oid, len * sizeof *oid);
|
1995-12-04 16:48:58 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1995-12-17 21:11:22 +00:00
|
|
|
SYSCTL_PROC(_sysctl, 3, name2oid, CTLFLAG_RW|CTLFLAG_ANYBODY, 0, 0,
|
1995-12-04 16:48:58 +00:00
|
|
|
sysctl_sysctl_name2oid, "I", "");
|
|
|
|
|
|
|
|
static int
|
|
|
|
sysctl_sysctl_oidfmt SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
1995-12-06 13:27:39 +00:00
|
|
|
int *name = (int *) arg1, error;
|
1995-12-04 16:48:58 +00:00
|
|
|
u_int namelen = arg2;
|
|
|
|
int indx, j;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
struct linker_set *lsp = &sysctl_;
|
|
|
|
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) lsp->ls_items;
|
|
|
|
|
|
|
|
indx = 0;
|
|
|
|
while (j-- && indx < CTL_MAXNAME) {
|
|
|
|
if (*oidpp && ((*oidpp)->oid_number == name[indx])) {
|
|
|
|
indx++;
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
goto found;
|
|
|
|
if (indx == namelen)
|
1995-12-06 13:27:39 +00:00
|
|
|
goto found;
|
1995-12-04 16:48:58 +00:00
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **)lsp->ls_items;
|
|
|
|
} else {
|
|
|
|
if (indx != namelen)
|
|
|
|
return EISDIR;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
oidpp++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ENOENT;
|
|
|
|
found:
|
|
|
|
if (!(*oidpp)->oid_fmt)
|
|
|
|
return ENOENT;
|
1995-12-06 13:27:39 +00:00
|
|
|
error = SYSCTL_OUT(req,
|
|
|
|
&(*oidpp)->oid_kind, sizeof((*oidpp)->oid_kind));
|
|
|
|
if (!error)
|
|
|
|
error = SYSCTL_OUT(req, (*oidpp)->oid_fmt,
|
|
|
|
strlen((*oidpp)->oid_fmt)+1);
|
|
|
|
return (error);
|
1995-12-04 16:48:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SYSCTL_NODE(_sysctl, 4, oidfmt, CTLFLAG_RD, sysctl_sysctl_oidfmt, "");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default "handler" functions.
|
|
|
|
*/
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
/*
|
|
|
|
* Handle an integer, signed or unsigned.
|
|
|
|
* Two cases:
|
|
|
|
* a variable: point arg1 at it.
|
|
|
|
* a constant: pass it in arg2.
|
|
|
|
*/
|
|
|
|
|
1995-10-28 13:07:28 +00:00
|
|
|
int
|
|
|
|
sysctl_handle_int SYSCTL_HANDLER_ARGS
|
1995-10-28 12:59:25 +00:00
|
|
|
{
|
1995-11-12 19:52:09 +00:00
|
|
|
int error = 0;
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if (arg1)
|
|
|
|
error = SYSCTL_OUT(req, arg1, sizeof(int));
|
1996-12-15 14:38:46 +00:00
|
|
|
else
|
1995-11-12 19:52:09 +00:00
|
|
|
error = SYSCTL_OUT(req, &arg2, sizeof(int));
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if (error || !req->newptr)
|
|
|
|
return (error);
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if (!arg1)
|
|
|
|
error = EPERM;
|
|
|
|
else
|
|
|
|
error = SYSCTL_IN(req, arg1, sizeof(int));
|
|
|
|
return (error);
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
/*
|
|
|
|
* Handle our generic '\0' terminated 'C' string.
|
|
|
|
* Two cases:
|
|
|
|
* a variable string: point arg1 at it, arg2 is max length.
|
|
|
|
* a constant string: point arg1 at it, arg2 is zero.
|
|
|
|
*/
|
|
|
|
|
1995-10-28 13:07:28 +00:00
|
|
|
int
|
|
|
|
sysctl_handle_string SYSCTL_HANDLER_ARGS
|
1995-10-28 12:59:25 +00:00
|
|
|
{
|
1995-11-12 19:52:09 +00:00
|
|
|
int error=0;
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-14 20:43:29 +00:00
|
|
|
error = SYSCTL_OUT(req, arg1, strlen((char *)arg1)+1);
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
if (error || !req->newptr || !arg2)
|
1995-11-12 19:52:09 +00:00
|
|
|
return (error);
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if ((req->newlen - req->newidx) > arg2) {
|
|
|
|
error = E2BIG;
|
|
|
|
} else {
|
|
|
|
arg2 = (req->newlen - req->newidx);
|
|
|
|
error = SYSCTL_IN(req, arg1, arg2);
|
|
|
|
((char *)arg1)[arg2] = '\0';
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
1995-11-06 16:18:52 +00:00
|
|
|
|
|
|
|
return (error);
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
/*
|
|
|
|
* Handle any kind of opaque data.
|
|
|
|
* arg1 points to it, arg2 is the size.
|
|
|
|
*/
|
|
|
|
|
1995-10-28 13:07:28 +00:00
|
|
|
int
|
|
|
|
sysctl_handle_opaque SYSCTL_HANDLER_ARGS
|
1995-10-28 12:59:25 +00:00
|
|
|
{
|
1995-11-12 19:52:09 +00:00
|
|
|
int error;
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
error = SYSCTL_OUT(req, arg1, arg2);
|
|
|
|
|
|
|
|
if (error || !req->newptr)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
error = SYSCTL_IN(req, arg1, arg2);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
/*
|
|
|
|
* Transfer functions to/from kernel space.
|
|
|
|
* XXX: rather untested at this point
|
|
|
|
*/
|
|
|
|
static int
|
1995-12-17 21:11:22 +00:00
|
|
|
sysctl_old_kernel(struct sysctl_req *req, const void *p, int l)
|
1995-11-12 19:52:09 +00:00
|
|
|
{
|
1995-11-13 13:54:09 +00:00
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
if (req->oldptr) {
|
|
|
|
i = min(req->oldlen - req->oldidx, l);
|
|
|
|
if (i > 0)
|
1996-08-31 14:48:13 +00:00
|
|
|
bcopy(p, (char *)req->oldptr + req->oldidx, i);
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
1995-11-13 13:54:09 +00:00
|
|
|
req->oldidx += l;
|
1996-06-10 16:23:42 +00:00
|
|
|
if (req->oldptr && i != l)
|
1995-11-12 19:52:09 +00:00
|
|
|
return (ENOMEM);
|
1995-11-13 13:54:09 +00:00
|
|
|
return (0);
|
1995-11-12 19:52:09 +00:00
|
|
|
}
|
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
static int
|
1996-06-10 16:23:42 +00:00
|
|
|
sysctl_new_kernel(struct sysctl_req *req, void *p, int l)
|
1995-11-12 19:52:09 +00:00
|
|
|
{
|
1995-11-13 13:54:09 +00:00
|
|
|
if (!req->newptr)
|
|
|
|
return 0;
|
|
|
|
if (req->newlen - req->newidx < l)
|
1995-11-12 19:52:09 +00:00
|
|
|
return (EINVAL);
|
1996-08-31 14:48:13 +00:00
|
|
|
bcopy((char *)req->newptr + req->newidx, p, l);
|
1995-11-12 19:52:09 +00:00
|
|
|
req->newidx += l;
|
1995-11-06 16:18:52 +00:00
|
|
|
return (0);
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
|
|
|
|
1996-06-10 16:23:42 +00:00
|
|
|
int
|
|
|
|
kernel_sysctl(struct proc *p, int *name, u_int namelen, void *old, size_t *oldlenp, void *new, size_t newlen, int *retval)
|
|
|
|
{
|
|
|
|
int error = 0;
|
|
|
|
struct sysctl_req req;
|
|
|
|
|
|
|
|
bzero(&req, sizeof req);
|
|
|
|
|
|
|
|
req.p = p;
|
|
|
|
|
|
|
|
if (oldlenp) {
|
|
|
|
req.oldlen = *oldlenp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old) {
|
|
|
|
req.oldptr= old;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newlen) {
|
|
|
|
req.newlen = newlen;
|
|
|
|
req.newptr = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
req.oldfunc = sysctl_old_kernel;
|
|
|
|
req.newfunc = sysctl_new_kernel;
|
|
|
|
req.lock = 1;
|
|
|
|
|
|
|
|
/* XXX this should probably be done in a general way */
|
|
|
|
while (memlock.sl_lock) {
|
|
|
|
memlock.sl_want = 1;
|
|
|
|
(void) tsleep((caddr_t)&memlock, PRIBIO+1, "sysctl", 0);
|
|
|
|
memlock.sl_locked++;
|
|
|
|
}
|
|
|
|
memlock.sl_lock = 1;
|
|
|
|
|
|
|
|
error = sysctl_root(0, name, namelen, &req);
|
|
|
|
|
|
|
|
if (req.lock == 2)
|
|
|
|
vsunlock(req.oldptr, req.oldlen, B_WRITE);
|
|
|
|
|
|
|
|
memlock.sl_lock = 0;
|
|
|
|
|
|
|
|
if (memlock.sl_want) {
|
|
|
|
memlock.sl_want = 0;
|
|
|
|
wakeup((caddr_t)&memlock);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (error && error != ENOMEM)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (retval) {
|
|
|
|
if (req.oldptr && req.oldidx > req.oldlen)
|
|
|
|
*retval = req.oldlen;
|
|
|
|
else
|
|
|
|
*retval = req.oldidx;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
/*
|
|
|
|
* Transfer function to/from user space.
|
|
|
|
*/
|
|
|
|
static int
|
1995-12-17 21:11:22 +00:00
|
|
|
sysctl_old_user(struct sysctl_req *req, const void *p, int l)
|
1995-11-12 19:52:09 +00:00
|
|
|
{
|
1995-11-13 13:54:09 +00:00
|
|
|
int error = 0, i = 0;
|
1995-11-12 19:52:09 +00:00
|
|
|
|
1995-11-20 12:42:39 +00:00
|
|
|
if (req->lock == 1 && req->oldptr) {
|
|
|
|
vslock(req->oldptr, req->oldlen);
|
|
|
|
req->lock = 2;
|
|
|
|
}
|
1995-11-13 13:54:09 +00:00
|
|
|
if (req->oldptr) {
|
|
|
|
i = min(req->oldlen - req->oldidx, l);
|
|
|
|
if (i > 0)
|
1996-08-31 14:48:13 +00:00
|
|
|
error = copyout(p, (char *)req->oldptr + req->oldidx,
|
|
|
|
i);
|
1995-11-13 13:54:09 +00:00
|
|
|
}
|
|
|
|
req->oldidx += l;
|
1995-11-12 19:52:09 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
1995-11-13 13:54:09 +00:00
|
|
|
if (req->oldptr && i < l)
|
1995-11-12 19:52:09 +00:00
|
|
|
return (ENOMEM);
|
1995-11-13 13:54:09 +00:00
|
|
|
return (0);
|
1995-11-12 19:52:09 +00:00
|
|
|
}
|
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
static int
|
1995-11-12 19:52:09 +00:00
|
|
|
sysctl_new_user(struct sysctl_req *req, void *p, int l)
|
|
|
|
{
|
1995-11-14 09:26:17 +00:00
|
|
|
int error;
|
1995-11-13 13:54:09 +00:00
|
|
|
|
|
|
|
if (!req->newptr)
|
|
|
|
return 0;
|
|
|
|
if (req->newlen - req->newidx < l)
|
1995-11-12 19:52:09 +00:00
|
|
|
return (EINVAL);
|
1996-08-31 14:48:13 +00:00
|
|
|
error = copyin((char *)req->newptr + req->newidx, p, l);
|
1995-11-12 19:52:09 +00:00
|
|
|
req->newidx += l;
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1995-11-06 16:18:52 +00:00
|
|
|
/*
|
|
|
|
* Traverse our tree, and find the right node, execute whatever it points
|
|
|
|
* at, and return the resulting error code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
sysctl_root SYSCTL_HANDLER_ARGS
|
|
|
|
{
|
|
|
|
int *name = (int *) arg1;
|
1995-12-04 16:48:58 +00:00
|
|
|
u_int namelen = arg2;
|
1995-11-06 16:18:52 +00:00
|
|
|
int indx, i, j;
|
|
|
|
struct sysctl_oid **oidpp;
|
|
|
|
struct linker_set *lsp = &sysctl_;
|
|
|
|
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **) lsp->ls_items;
|
|
|
|
|
|
|
|
indx = 0;
|
|
|
|
while (j-- && indx < CTL_MAXNAME) {
|
1995-11-08 08:48:36 +00:00
|
|
|
if (*oidpp && ((*oidpp)->oid_number == name[indx])) {
|
1995-11-06 16:18:52 +00:00
|
|
|
indx++;
|
1995-11-20 12:42:39 +00:00
|
|
|
if ((*oidpp)->oid_kind & CTLFLAG_NOLOCK)
|
|
|
|
req->lock = 0;
|
1995-11-06 16:18:52 +00:00
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
|
|
|
|
if ((*oidpp)->oid_handler)
|
|
|
|
goto found;
|
1995-11-12 19:52:09 +00:00
|
|
|
if (indx == namelen)
|
1995-11-06 16:18:52 +00:00
|
|
|
return ENOENT;
|
|
|
|
lsp = (struct linker_set*)(*oidpp)->oid_arg1;
|
|
|
|
j = lsp->ls_length;
|
|
|
|
oidpp = (struct sysctl_oid **)lsp->ls_items;
|
|
|
|
} else {
|
1995-11-12 19:52:09 +00:00
|
|
|
if (indx != namelen)
|
1995-11-06 16:18:52 +00:00
|
|
|
return EISDIR;
|
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
oidpp++;
|
|
|
|
}
|
|
|
|
}
|
1995-11-13 13:54:09 +00:00
|
|
|
return ENOENT;
|
1995-11-06 16:18:52 +00:00
|
|
|
found:
|
|
|
|
/* If writing isn't allowed */
|
1995-11-12 19:52:09 +00:00
|
|
|
if (req->newptr && !((*oidpp)->oid_kind & CTLFLAG_WR))
|
1995-11-06 16:18:52 +00:00
|
|
|
return (EPERM);
|
|
|
|
|
1995-12-17 21:11:22 +00:00
|
|
|
/* Most likely only root can write */
|
|
|
|
if (!((*oidpp)->oid_kind & CTLFLAG_ANYBODY) &&
|
|
|
|
req->newptr && req->p &&
|
|
|
|
(i = suser(req->p->p_ucred, &req->p->p_acflag)))
|
|
|
|
return (i);
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if (!(*oidpp)->oid_handler)
|
1995-11-06 16:18:52 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (((*oidpp)->oid_kind & CTLTYPE) == CTLTYPE_NODE) {
|
|
|
|
i = ((*oidpp)->oid_handler) (*oidpp,
|
|
|
|
name + indx, namelen - indx,
|
1995-11-12 19:52:09 +00:00
|
|
|
req);
|
1995-11-06 16:18:52 +00:00
|
|
|
} else {
|
|
|
|
i = ((*oidpp)->oid_handler) (*oidpp,
|
|
|
|
(*oidpp)->oid_arg1, (*oidpp)->oid_arg2,
|
1995-11-12 19:52:09 +00:00
|
|
|
req);
|
1995-11-06 16:18:52 +00:00
|
|
|
}
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1995-11-09 20:22:12 +00:00
|
|
|
struct sysctl_args {
|
|
|
|
int *name;
|
|
|
|
u_int namelen;
|
|
|
|
void *old;
|
|
|
|
size_t *oldlenp;
|
|
|
|
void *new;
|
|
|
|
size_t newlen;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1995-11-09 20:22:12 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
int
|
1995-11-20 12:42:39 +00:00
|
|
|
__sysctl(struct proc *p, struct sysctl_args *uap, int *retval)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-11-13 13:54:09 +00:00
|
|
|
int error, i, j, name[CTL_MAXNAME];
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
if (uap->namelen > CTL_MAXNAME || uap->namelen < 2)
|
|
|
|
return (EINVAL);
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1994-10-02 17:35:40 +00:00
|
|
|
error = copyin(uap->name, &name, uap->namelen * sizeof(int));
|
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
error = userland_sysctl(p, name, uap->namelen,
|
1995-11-09 20:22:12 +00:00
|
|
|
uap->old, uap->oldlenp, 0,
|
1995-11-13 13:54:09 +00:00
|
|
|
uap->new, uap->newlen, &j);
|
|
|
|
if (error && error != ENOMEM)
|
|
|
|
return (error);
|
|
|
|
if (uap->oldlenp) {
|
|
|
|
i = copyout(&j, uap->oldlenp, sizeof(j));
|
|
|
|
if (i)
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
return (error);
|
1995-11-09 20:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is used from various compatibility syscalls too. That's why name
|
|
|
|
* must be in kernel space.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
userland_sysctl(struct proc *p, int *name, u_int namelen, void *old, size_t *oldlenp, int inkernel, void *new, size_t newlen, int *retval)
|
|
|
|
{
|
1995-11-20 12:42:39 +00:00
|
|
|
int error = 0;
|
1996-06-06 17:17:54 +00:00
|
|
|
struct sysctl_req req, req2;
|
1995-11-12 19:52:09 +00:00
|
|
|
|
|
|
|
bzero(&req, sizeof req);
|
1995-11-09 20:22:12 +00:00
|
|
|
|
1995-11-14 09:26:17 +00:00
|
|
|
req.p = p;
|
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
if (oldlenp) {
|
|
|
|
if (inkernel) {
|
1995-11-12 19:52:09 +00:00
|
|
|
req.oldlen = *oldlenp;
|
1995-11-09 20:22:12 +00:00
|
|
|
} else {
|
1995-11-13 13:54:09 +00:00
|
|
|
error = copyin(oldlenp, &req.oldlen, sizeof(*oldlenp));
|
1995-11-09 20:22:12 +00:00
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
if (old) {
|
|
|
|
if (!useracc(old, req.oldlen, B_WRITE))
|
|
|
|
return (EFAULT);
|
|
|
|
req.oldptr= old;
|
|
|
|
}
|
1995-11-06 16:18:52 +00:00
|
|
|
|
1995-11-09 20:22:12 +00:00
|
|
|
if (newlen) {
|
1995-11-12 19:52:09 +00:00
|
|
|
if (!useracc(new, req.newlen, B_READ))
|
|
|
|
return (EFAULT);
|
|
|
|
req.newlen = newlen;
|
|
|
|
req.newptr = new;
|
1995-10-28 12:59:25 +00:00
|
|
|
}
|
|
|
|
|
1995-11-12 19:52:09 +00:00
|
|
|
req.oldfunc = sysctl_old_user;
|
|
|
|
req.newfunc = sysctl_new_user;
|
1995-11-20 12:42:39 +00:00
|
|
|
req.lock = 1;
|
|
|
|
|
|
|
|
/* XXX this should probably be done in a general way */
|
|
|
|
while (memlock.sl_lock) {
|
|
|
|
memlock.sl_want = 1;
|
|
|
|
(void) tsleep((caddr_t)&memlock, PRIBIO+1, "sysctl", 0);
|
|
|
|
memlock.sl_locked++;
|
|
|
|
}
|
|
|
|
memlock.sl_lock = 1;
|
1995-11-12 19:52:09 +00:00
|
|
|
|
1996-06-06 17:17:54 +00:00
|
|
|
do {
|
|
|
|
req2 = req;
|
|
|
|
error = sysctl_root(0, name, namelen, &req2);
|
|
|
|
} while (error == EAGAIN);
|
1995-10-28 12:59:25 +00:00
|
|
|
|
1996-06-06 17:17:54 +00:00
|
|
|
req = req2;
|
1995-11-20 12:42:39 +00:00
|
|
|
if (req.lock == 2)
|
|
|
|
vsunlock(req.oldptr, req.oldlen, B_WRITE);
|
|
|
|
|
|
|
|
memlock.sl_lock = 0;
|
|
|
|
|
|
|
|
if (memlock.sl_want) {
|
|
|
|
memlock.sl_want = 0;
|
|
|
|
wakeup((caddr_t)&memlock);
|
|
|
|
}
|
|
|
|
|
1995-11-13 13:54:09 +00:00
|
|
|
if (error && error != ENOMEM)
|
1995-11-06 16:18:52 +00:00
|
|
|
return (error);
|
1995-11-13 13:54:09 +00:00
|
|
|
|
|
|
|
if (retval) {
|
|
|
|
if (req.oldptr && req.oldidx > req.oldlen)
|
|
|
|
*retval = req.oldlen;
|
|
|
|
else
|
|
|
|
*retval = req.oldidx;
|
1995-11-06 16:18:52 +00:00
|
|
|
}
|
1995-11-13 13:54:09 +00:00
|
|
|
return (error);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COMPAT_43
|
|
|
|
#include <sys/socket.h>
|
1996-04-07 13:03:06 +00:00
|
|
|
#include <vm/vm_param.h>
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#define KINFO_PROC (0<<8)
|
|
|
|
#define KINFO_RT (1<<8)
|
|
|
|
#define KINFO_VNODE (2<<8)
|
|
|
|
#define KINFO_FILE (3<<8)
|
|
|
|
#define KINFO_METER (4<<8)
|
|
|
|
#define KINFO_LOADAVG (5<<8)
|
|
|
|
#define KINFO_CLOCKRATE (6<<8)
|
|
|
|
|
1995-07-09 02:49:30 +00:00
|
|
|
/* Non-standard BSDI extension - only present on their 4.3 net-2 releases */
|
|
|
|
#define KINFO_BSDI_SYSINFO (101<<8)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX this is bloat, but I hope it's better here than on the potentially
|
|
|
|
* limited kernel stack... -Peter
|
|
|
|
*/
|
|
|
|
|
1995-12-14 08:32:45 +00:00
|
|
|
static struct {
|
1995-07-09 02:49:30 +00:00
|
|
|
int bsdi_machine; /* "i386" on BSD/386 */
|
|
|
|
/* ^^^ this is an offset to the string, relative to the struct start */
|
|
|
|
char *pad0;
|
|
|
|
long pad1;
|
|
|
|
long pad2;
|
|
|
|
long pad3;
|
|
|
|
u_long pad4;
|
|
|
|
u_long pad5;
|
|
|
|
u_long pad6;
|
|
|
|
|
|
|
|
int bsdi_ostype; /* "BSD/386" on BSD/386 */
|
|
|
|
int bsdi_osrelease; /* "1.1" on BSD/386 */
|
|
|
|
long pad7;
|
|
|
|
long pad8;
|
|
|
|
char *pad9;
|
|
|
|
|
|
|
|
long pad10;
|
|
|
|
long pad11;
|
|
|
|
int pad12;
|
|
|
|
long pad13;
|
|
|
|
quad_t pad14;
|
|
|
|
long pad15;
|
|
|
|
|
|
|
|
struct timeval pad16;
|
|
|
|
/* we dont set this, because BSDI's uname used gethostname() instead */
|
|
|
|
int bsdi_hostname; /* hostname on BSD/386 */
|
|
|
|
|
|
|
|
/* the actual string data is appended here */
|
|
|
|
|
|
|
|
} bsdi_si;
|
|
|
|
/*
|
|
|
|
* this data is appended to the end of the bsdi_si structure during copyout.
|
|
|
|
* The "char *" offsets are relative to the base of the bsdi_si struct.
|
|
|
|
* This contains "FreeBSD\02.0-BUILT-nnnnnn\0i386\0", and these strings
|
|
|
|
* should not exceed the length of the buffer here... (or else!! :-)
|
|
|
|
*/
|
1995-12-14 08:32:45 +00:00
|
|
|
static char bsdi_strings[80]; /* It had better be less than this! */
|
1995-07-09 02:49:30 +00:00
|
|
|
|
1995-11-12 06:43:28 +00:00
|
|
|
#ifndef _SYS_SYSPROTO_H_
|
1994-05-24 10:09:53 +00:00
|
|
|
struct getkerninfo_args {
|
|
|
|
int op;
|
|
|
|
char *where;
|
|
|
|
int *size;
|
|
|
|
int arg;
|
|
|
|
};
|
1995-11-12 06:43:28 +00:00
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1994-05-25 09:21:21 +00:00
|
|
|
int
|
1995-11-20 12:42:39 +00:00
|
|
|
ogetkerninfo(struct proc *p, struct getkerninfo_args *uap, int *retval)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
1995-11-09 20:22:12 +00:00
|
|
|
int error, name[6];
|
1994-05-24 10:09:53 +00:00
|
|
|
u_int size;
|
|
|
|
|
|
|
|
switch (uap->op & 0xff00) {
|
|
|
|
|
|
|
|
case KINFO_RT:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_NET;
|
|
|
|
name[1] = PF_ROUTE;
|
|
|
|
name[2] = 0;
|
|
|
|
name[3] = (uap->op & 0xff0000) >> 16;
|
|
|
|
name[4] = uap->op & 0xff;
|
|
|
|
name[5] = uap->arg;
|
|
|
|
error = userland_sysctl(p, name, 6, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_VNODE:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_VNODE;
|
|
|
|
error = userland_sysctl(p, name, 2, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_PROC:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_PROC;
|
|
|
|
name[2] = uap->op & 0xff;
|
|
|
|
name[3] = uap->arg;
|
|
|
|
error = userland_sysctl(p, name, 4, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_FILE:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_FILE;
|
|
|
|
error = userland_sysctl(p, name, 2, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_METER:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_VM;
|
|
|
|
name[1] = VM_METER;
|
|
|
|
error = userland_sysctl(p, name, 2, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_LOADAVG:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_VM;
|
|
|
|
name[1] = VM_LOADAVG;
|
|
|
|
error = userland_sysctl(p, name, 2, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case KINFO_CLOCKRATE:
|
1995-11-09 20:22:12 +00:00
|
|
|
name[0] = CTL_KERN;
|
|
|
|
name[1] = KERN_CLOCKRATE;
|
|
|
|
error = userland_sysctl(p, name, 2, uap->where, uap->size,
|
1995-11-20 12:42:39 +00:00
|
|
|
0, 0, 0, &size);
|
1994-05-24 10:09:53 +00:00
|
|
|
break;
|
|
|
|
|
1995-07-09 02:49:30 +00:00
|
|
|
case KINFO_BSDI_SYSINFO: {
|
|
|
|
/*
|
|
|
|
* this is pretty crude, but it's just enough for uname()
|
|
|
|
* from BSDI's 1.x libc to work.
|
|
|
|
*
|
|
|
|
* In particular, it doesn't return the same results when
|
|
|
|
* the supplied buffer is too small. BSDI's version apparently
|
|
|
|
* will return the amount copied, and set the *size to how
|
|
|
|
* much was needed. The emulation framework here isn't capable
|
|
|
|
* of that, so we just set both to the amount copied.
|
|
|
|
* BSDI's 2.x product apparently fails with ENOMEM in this
|
|
|
|
* scenario.
|
|
|
|
*/
|
|
|
|
|
|
|
|
u_int needed;
|
|
|
|
u_int left;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
bzero((char *)&bsdi_si, sizeof(bsdi_si));
|
|
|
|
bzero(bsdi_strings, sizeof(bsdi_strings));
|
|
|
|
|
|
|
|
s = bsdi_strings;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_ostype = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, ostype);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_osrelease = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, osrelease);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
bsdi_si.bsdi_machine = (s - bsdi_strings) + sizeof(bsdi_si);
|
|
|
|
strcpy(s, machine);
|
|
|
|
s += strlen(s) + 1;
|
|
|
|
|
|
|
|
needed = sizeof(bsdi_si) + (s - bsdi_strings);
|
|
|
|
|
|
|
|
if (uap->where == NULL) {
|
|
|
|
/* process is asking how much buffer to supply.. */
|
|
|
|
size = needed;
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* if too much buffer supplied, trim it down */
|
|
|
|
if (size > needed)
|
|
|
|
size = needed;
|
|
|
|
|
|
|
|
/* how much of the buffer is remaining */
|
|
|
|
left = size;
|
|
|
|
|
|
|
|
if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* is there any point in continuing? */
|
|
|
|
if (left > sizeof(bsdi_si)) {
|
|
|
|
left -= sizeof(bsdi_si);
|
|
|
|
error = copyout(&bsdi_strings,
|
|
|
|
uap->where + sizeof(bsdi_si), left);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
default:
|
|
|
|
return (EOPNOTSUPP);
|
|
|
|
}
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
*retval = size;
|
|
|
|
if (uap->size)
|
|
|
|
error = copyout((caddr_t)&size, (caddr_t)uap->size,
|
|
|
|
sizeof(size));
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
#endif /* COMPAT_43 */
|