2005-12-11 15:16:03 +03:00
|
|
|
/* $NetBSD: irix_systeminfo.c,v 1.11 2005/12/11 12:20:12 christos Exp $ */
|
2002-02-18 01:49:53 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Emmanuel Dreyfus.
|
|
|
|
*
|
|
|
|
* 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 NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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>
|
2005-12-11 15:16:03 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: irix_systeminfo.c,v 1.11 2005/12/11 12:20:12 christos Exp $");
|
2002-02-18 01:49:53 +03:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
2002-10-14 01:07:41 +04:00
|
|
|
#include <sys/kernel.h>
|
2002-02-18 01:49:53 +03:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/sysctl.h>
|
2003-01-18 10:44:50 +03:00
|
|
|
#include <sys/sa.h>
|
2002-02-18 01:49:53 +03:00
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
2002-04-21 01:25:01 +04:00
|
|
|
#include <compat/common/compat_util.h>
|
|
|
|
|
2002-02-18 01:49:53 +03:00
|
|
|
#include <compat/svr4/svr4_systeminfo.h>
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <compat/svr4/svr4_signal.h>
|
|
|
|
#include <compat/svr4/svr4_ucontext.h>
|
|
|
|
#include <compat/svr4/svr4_lwp.h>
|
|
|
|
#include <compat/svr4/svr4_syscallargs.h>
|
|
|
|
|
|
|
|
#include <compat/irix/irix_types.h>
|
|
|
|
#include <compat/irix/irix_signal.h>
|
2002-11-09 12:03:56 +03:00
|
|
|
#include <compat/irix/irix_sysctl.h>
|
2002-02-18 01:49:53 +03:00
|
|
|
#include <compat/irix/irix_syscallargs.h>
|
|
|
|
|
2002-11-09 12:03:56 +03:00
|
|
|
char irix_si_vendor[128] = "Silicon Graphics, Inc.";
|
|
|
|
char irix_si_os_provider[128] = "Silicon Graphics, Inc.";
|
|
|
|
char irix_si_os_name[128] = "IRIX";
|
|
|
|
char irix_si_hw_name[128] = "IP22"; /* XXX */
|
|
|
|
char irix_si_osrel_maj[128] = "6";
|
|
|
|
char irix_si_osrel_min[128] = "5";
|
|
|
|
char irix_si_osrel_patch[128] = "0";
|
|
|
|
char irix_si_processors[128] = "R5000 1.0"; /* XXX */
|
|
|
|
char irix_si_version[128] = "04131232";
|
2002-02-18 01:49:53 +03:00
|
|
|
|
|
|
|
#define BUF_SIZE 16
|
|
|
|
|
|
|
|
int
|
2003-01-22 15:58:22 +03:00
|
|
|
irix_sys_systeminfo(l, v, retval)
|
|
|
|
struct lwp *l;
|
2002-02-18 01:49:53 +03:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct irix_sys_systeminfo_args /* {
|
|
|
|
syscallarg(int) what;
|
|
|
|
syscallarg(char *) buf;
|
|
|
|
syscallarg(long) len;
|
|
|
|
} */ *uap = v;
|
|
|
|
const char *str = NULL;
|
|
|
|
char strbuf[BUF_SIZE + 1];
|
2003-11-09 00:33:34 +03:00
|
|
|
int error = 0;
|
|
|
|
size_t len = 0;
|
2002-02-18 01:49:53 +03:00
|
|
|
char buf[256];
|
|
|
|
|
|
|
|
u_int rlen = SCARG(uap, len);
|
|
|
|
|
|
|
|
switch (SCARG(uap, what)) {
|
|
|
|
case SVR4_MIPS_SI_VENDOR:
|
|
|
|
str = irix_si_vendor;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_OS_PROVIDER:
|
|
|
|
str = irix_si_os_provider;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_OS_NAME:
|
|
|
|
str = irix_si_os_name;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_HW_NAME:
|
|
|
|
str = irix_si_hw_name;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_OSREL_MAJ:
|
|
|
|
str = irix_si_osrel_maj;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_OSREL_MIN:
|
|
|
|
str = irix_si_osrel_min;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_OSREL_PATCH:
|
|
|
|
str = irix_si_osrel_patch;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_PROCESSORS:
|
|
|
|
str = irix_si_processors;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_MIPS_SI_NUM_PROCESSORS:
|
|
|
|
case SVR4_MIPS_SI_AVAIL_PROCESSORS: {
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
int ncpu, name[2];
|
|
|
|
size_t sz;
|
|
|
|
|
|
|
|
name[0] = CTL_HW;
|
|
|
|
name[1] = HW_NCPU;
|
|
|
|
sz = sizeof(ncpu);
|
|
|
|
error = old_sysctl(&name[0], 2, &ncpu, &sz, NULL, 0, NULL);
|
|
|
|
if (error)
|
2002-04-21 01:25:01 +04:00
|
|
|
return error;
|
|
|
|
snprintf(strbuf, BUF_SIZE, "%d", ncpu);
|
|
|
|
str = strbuf;
|
2005-02-27 01:58:54 +03:00
|
|
|
|
2002-02-18 01:49:53 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-10-14 01:07:41 +04:00
|
|
|
case SVR4_SI_HW_SERIAL:
|
|
|
|
snprintf(strbuf, BUF_SIZE, "%d", (int32_t)hostid);
|
|
|
|
str = strbuf;
|
|
|
|
break;
|
2002-02-21 14:09:43 +03:00
|
|
|
|
2002-10-14 01:07:41 +04:00
|
|
|
case SVR4_MIPS_SI_HOSTID:
|
|
|
|
snprintf(strbuf, BUF_SIZE, "%08x", (int32_t)hostid);
|
|
|
|
str = strbuf;
|
2002-02-21 14:09:43 +03:00
|
|
|
break;
|
|
|
|
|
2002-02-18 01:49:53 +03:00
|
|
|
case SVR4_MIPS_SI_SERIAL: /* Unimplemented yet */
|
|
|
|
default:
|
2003-01-22 15:58:22 +03:00
|
|
|
return svr4_sys_systeminfo(l, v, retval);
|
2002-02-18 01:49:53 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-02-27 01:58:54 +03:00
|
|
|
/*
|
|
|
|
* This duplicates some code in
|
|
|
|
* svr4_sys_systeminfo().
|
2002-02-18 01:49:53 +03:00
|
|
|
* Ideally, it should be merged.
|
|
|
|
*/
|
|
|
|
if (str) {
|
|
|
|
len = strlen(str) + 1;
|
|
|
|
if (len > rlen)
|
|
|
|
len = rlen;
|
|
|
|
|
|
|
|
if (SCARG(uap, buf)) {
|
|
|
|
error = copyout(str, SCARG(uap, buf), len);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
/* make sure we are NULL terminated */
|
|
|
|
buf[0] = '\0';
|
|
|
|
error = copyout(buf, &(SCARG(uap, buf)[len - 1]), 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*retval = len;
|
|
|
|
return error;
|
|
|
|
}
|