1994-10-14 08:53:16 +00:00
|
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 1994 S<EFBFBD>ren Schmidt
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
* Copyright (c) 1995 Steven Wallace
|
1994-10-14 08:53:16 +00:00
|
|
|
|
* 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
|
|
|
|
|
* in this position and unchanged.
|
|
|
|
|
* 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. The name of the author may not be used to endorse or promote products
|
2002-06-02 20:05:59 +00:00
|
|
|
|
* derived from this software without specific prior written permission
|
1994-10-14 08:53:16 +00:00
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2003-06-02 06:48:51 +00:00
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
1994-10-14 08:53:16 +00:00
|
|
|
|
#include <sys/param.h>
|
2005-07-07 19:30:30 +00:00
|
|
|
|
#include <sys/lock.h>
|
|
|
|
|
#include <sys/mutex.h>
|
1994-10-14 08:53:16 +00:00
|
|
|
|
#include <sys/systm.h>
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
#include <sys/sysctl.h>
|
1994-10-14 08:53:16 +00:00
|
|
|
|
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
#include <i386/ibcs2/ibcs2_types.h>
|
|
|
|
|
#include <i386/ibcs2/ibcs2_signal.h>
|
|
|
|
|
#include <i386/ibcs2/ibcs2_util.h>
|
|
|
|
|
#include <i386/ibcs2/ibcs2_proto.h>
|
|
|
|
|
|
|
|
|
|
#define IBCS2_FP_NO 0 /* no fp support */
|
|
|
|
|
#define IBCS2_FP_SW 1 /* software emulator */
|
|
|
|
|
#define IBCS2_FP_287 2 /* 80287 FPU */
|
|
|
|
|
#define IBCS2_FP_387 3 /* 80387 FPU */
|
|
|
|
|
|
|
|
|
|
#define SI86_FPHW 40
|
|
|
|
|
#define STIME 54
|
|
|
|
|
#define SETNAME 56
|
|
|
|
|
#define SI86_MEM 65
|
1994-10-14 08:53:16 +00:00
|
|
|
|
|
1995-10-28 13:07:28 +00:00
|
|
|
|
extern int hw_float;
|
1994-10-14 08:53:16 +00:00
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
ibcs2_sysi86(struct thread *td, struct ibcs2_sysi86_args *args)
|
1994-10-14 08:53:16 +00:00
|
|
|
|
{
|
2002-12-14 01:56:26 +00:00
|
|
|
|
switch (args->cmd) {
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
case SI86_FPHW: { /* Floating Point information */
|
1994-10-14 08:53:16 +00:00
|
|
|
|
int val, error;
|
|
|
|
|
|
2009-02-23 15:38:35 +00:00
|
|
|
|
if (hw_float)
|
|
|
|
|
val = IBCS2_FP_387;
|
|
|
|
|
else
|
|
|
|
|
val = IBCS2_FP_NO;
|
2002-12-14 01:56:26 +00:00
|
|
|
|
if ((error = copyout(&val, args->arg, sizeof(val))) != 0)
|
1994-10-14 08:53:16 +00:00
|
|
|
|
return error;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
case STIME: /* set the system time given pointer to long */
|
|
|
|
|
/* gettimeofday; time.tv_sec = *args->arg; settimeofday */
|
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
|
|
case SETNAME: { /* set hostname given string w/ len <= 7 chars */
|
1995-11-20 12:10:59 +00:00
|
|
|
|
int name[2];
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
|
1995-11-20 12:10:59 +00:00
|
|
|
|
name[0] = CTL_KERN;
|
|
|
|
|
name[1] = KERN_HOSTNAME;
|
2008-12-29 12:58:45 +00:00
|
|
|
|
return (userland_sysctl(td, name, 2, 0, 0, 0,
|
|
|
|
|
args->arg, 7, 0, 0));
|
1995-11-20 12:10:59 +00:00
|
|
|
|
}
|
Remove old files no longer needed.
Add new files created for emulator.
Modify NetBSD import to work with FreeBSD and add new features and
code. The complete emulator is essentially a combination of work/code
implemented by Sean Eric Fagan, Soren Schmidt, Scott Bartram, and myself,
Steven Wallace.
Features of this new emulator system include:
o "clean" code, including strict prototyping.
o Auto-generation of ibcs2 system calls, xenix system calls, isc system
calls. Generation includes system tables, structure definitions,
and prototyping of function calls.
o ibcs2 emulator does not rely on any COMPAT_43 system calls.
o embedded socksys support
o ibcs2 msgsys, semsys, shmsys calls supported if supported in kernel
o alternate /emul/ibcs2 namespace searched first for files in ibcs2
system. Usefull to keep sysv libraries, binaries in /emul/ibcs2.
o many other finer details and functions fixed or implemented.
1995-10-10 07:59:30 +00:00
|
|
|
|
|
|
|
|
|
case SI86_MEM: /* size of physical memory */
|
2001-09-12 08:38:13 +00:00
|
|
|
|
td->td_retval[0] = ctob(physmem);
|
1994-10-14 08:53:16 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
default:
|
1996-06-08 17:12:45 +00:00
|
|
|
|
#ifdef DIAGNOSTIC
|
1994-10-14 08:53:16 +00:00
|
|
|
|
printf("IBCS2: 'sysi86' function %d(0x%x) "
|
2002-12-14 01:56:26 +00:00
|
|
|
|
"not implemented yet\n", args->cmd, args->cmd);
|
1996-06-08 17:12:45 +00:00
|
|
|
|
#endif
|
1994-10-14 08:53:16 +00:00
|
|
|
|
return EINVAL;
|
|
|
|
|
}
|
|
|
|
|
}
|