NetBSD/sys/compat/svr4/svr4_stat.c

455 lines
10 KiB
C
Raw Normal View History

/* $NetBSD: svr4_stat.c,v 1.7 1995/01/10 00:04:05 christos Exp $ */
1994-10-26 08:27:43 +03:00
1994-10-24 20:37:34 +03:00
/*
* Copyright (c) 1994 Christos Zoulas
* 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. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
1994-10-24 20:37:34 +03: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.
1994-10-24 20:37:34 +03:00
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/filedesc.h>
#include <sys/ioctl.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/malloc.h>
1994-11-14 09:10:37 +03:00
#include <sys/time.h>
#include <sys/ucred.h>
#include <vm/vm.h>
#include <sys/sysctl.h>
1994-10-24 20:37:34 +03:00
#include <sys/syscallargs.h>
#include <compat/svr4/svr4_types.h>
#include <compat/svr4/svr4_signal.h>
1994-10-24 20:37:34 +03:00
#include <compat/svr4/svr4_syscallargs.h>
#include <compat/svr4/svr4_util.h>
#include <compat/svr4/svr4_stat.h>
#include <compat/svr4/svr4_ustat.h>
#include <compat/svr4/svr4_fuser.h>
#include <compat/svr4/svr4_utsname.h>
1994-11-14 09:10:37 +03:00
#include <compat/svr4/svr4_systeminfo.h>
1994-10-24 20:37:34 +03:00
#define syscallarg(x) union { x datum; register_t pad; }
1994-10-24 20:37:34 +03:00
static void
bsd_to_svr4_stat(st, st4)
struct stat *st;
struct svr4_stat *st4;
1994-10-24 20:37:34 +03:00
{
bzero(st4, sizeof(*st4));
st4->st_dev = st->st_dev;
st4->st_ino = st->st_ino;
st4->st_mode = st->st_mode;
st4->st_nlink = st->st_nlink;
st4->st_uid = st->st_uid;
st4->st_gid = st->st_gid;
st4->st_size = st->st_size;
st4->st_atim = st->st_atimespec.ts_sec;
st4->st_mtim = st->st_mtimespec.ts_sec;
st4->st_ctim = st->st_ctimespec.ts_sec;
1994-10-24 20:37:34 +03:00
}
static void
bsd_to_svr4_xstat(st, st4)
struct stat *st;
struct svr4_xstat *st4;
1994-10-24 20:37:34 +03:00
{
bzero(st4, sizeof(*st4));
st4->st_dev = st->st_dev;
st4->st_ino = st->st_ino;
st4->st_mode = st->st_mode;
st4->st_nlink = st->st_nlink;
st4->st_uid = st->st_uid;
st4->st_gid = st->st_gid;
st4->st_rdev = st->st_rdev;
st4->st_size = st->st_size;
st4->st_atim = st->st_atimespec;
st4->st_mtim = st->st_mtimespec;
st4->st_ctim = st->st_ctimespec;
st4->st_blksize = st->st_blksize;
st4->st_blocks = st->st_blocks;
strcpy(st4->st_fstype, "unknown");
1994-10-24 20:37:34 +03:00
}
int
svr4_stat(p, uap, retval)
register struct proc *p;
register struct svr4_stat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_stat svr4_st;
struct stat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
CHECKALT(p, &sg, SCARG(uap, path));
SCARG(&cup, path) = SCARG(uap, path);
SCARG(&cup, ub) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = stat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, ub), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_stat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, ub), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_lstat(p, uap, retval)
register struct proc *p;
register struct svr4_stat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_stat svr4_st;
struct stat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
CHECKALT(p, &sg, SCARG(uap, path));
SCARG(&cup, path) = SCARG(uap, path);
SCARG(&cup, ub) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = lstat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, ub), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_stat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, ub), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_fstat(p, uap, retval)
register struct proc *p;
register struct svr4_fstat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_stat svr4_st;
struct fstat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
SCARG(&cup, fd) = SCARG(uap, fd);
SCARG(&cup, sb) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = fstat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, sb), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_stat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, sb), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_xstat(p, uap, retval)
register struct proc *p;
register struct svr4_xstat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_xstat svr4_st;
struct stat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
CHECKALT(p, &sg, SCARG(uap, path));
SCARG(&cup, path) = SCARG(uap, path);
SCARG(&cup, ub) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = stat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, ub), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_xstat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, ub), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_lxstat(p, uap, retval)
register struct proc *p;
register struct svr4_xstat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_xstat svr4_st;
struct stat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
CHECKALT(p, &sg, SCARG(uap, path));
SCARG(&cup, path) = SCARG(uap, path);
SCARG(&cup, ub) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = lstat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, ub), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_xstat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, ub), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_fxstat(p, uap, retval)
register struct proc *p;
register struct svr4_fxstat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct stat st;
struct svr4_xstat svr4_st;
struct fstat_args cup;
int error;
1994-10-24 20:37:34 +03:00
caddr_t sg = stackgap_init();
SCARG(&cup, fd) = SCARG(uap, fd);
SCARG(&cup, sb) = stackgap_alloc(&sg, sizeof(struct stat));
1994-10-24 20:37:34 +03:00
if ((error = fstat(p, &cup, retval)) != 0)
return error;
1994-10-24 20:37:34 +03:00
if ((error = copyin(SCARG(&cup, sb), &st, sizeof st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
bsd_to_svr4_xstat(&st, &svr4_st);
1994-10-24 20:37:34 +03:00
if ((error = copyout(&svr4_st, SCARG(uap, sb), sizeof svr4_st)) != 0)
return error;
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
struct svr4_ustat_args {
syscallarg(struct svr4_ustat *) name;
1994-10-24 20:37:34 +03:00
};
int
svr4_ustat(p, uap, retval)
register struct proc *p;
register struct svr4_ustat_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct svr4_ustat us;
int error;
1994-10-24 20:37:34 +03:00
bzero(&us, sizeof us);
1994-10-24 20:37:34 +03:00
/*
* XXX: should set f_tfree and f_tinode at least
* How do we translate dev -> fstat? (and then to svr4_ustat)
*/
if (error = copyout(&us, SCARG(uap, name), sizeof us))
return (error);
1994-10-24 20:37:34 +03:00
return 0;
1994-10-24 20:37:34 +03:00
}
int
svr4_uname(p, uap, retval)
register struct proc *p;
register struct svr4_uname_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
struct svr4_utsname sut;
extern char ostype[], hostname[], osrelease[], version[], machine[];
bzero(&sut, sizeof(sut));
strncpy(sut.sysname, ostype, sizeof(sut.sysname));
sut.sysname[sizeof(sut.sysname) - 1] = '\0';
strncpy(sut.nodename, hostname, sizeof(sut.nodename));
sut.nodename[sizeof(sut.nodename) - 1] = '\0';
strncpy(sut.release, osrelease, sizeof(sut.release));
sut.release[sizeof(sut.release) - 1] = '\0';
strncpy(sut.version, version, sizeof(sut.version));
sut.version[sizeof(sut.version) - 1] = '\0';
strncpy(sut.machine, machine, sizeof(sut.machine));
sut.machine[sizeof(sut.machine) - 1] = '\0';
return copyout((caddr_t) &sut, (caddr_t) SCARG(uap, name),
sizeof(struct svr4_utsname));
1994-10-24 20:37:34 +03:00
}
1994-11-14 09:10:37 +03:00
int
svr4_systeminfo(p, uap, retval)
register struct proc *p;
register struct svr4_systeminfo_args *uap;
register_t *retval;
{
char *str;
int name;
int error;
long len;
extern char ostype[], hostname[], osrelease[],
version[], machine[], domainname[];
1994-11-14 09:10:37 +03:00
u_int rlen = SCARG(uap, len);
switch (SCARG(uap, what)) {
case SVR4_SI_SYSNAME:
str = ostype;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_HOSTNAME:
str = hostname;
break;
1994-11-14 09:10:37 +03:00
case SVR4_SI_RELEASE:
str = osrelease;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_VERSION:
str = version;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_MACHINE:
str = machine;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_ARCHITECTURE:
str = machine;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_HW_SERIAL:
str = "0";
break;
case SVR4_SI_HW_PROVIDER:
str = ostype;
1994-11-14 09:10:37 +03:00
break;
case SVR4_SI_SRPC_DOMAIN:
str = domainname;
break;
1994-11-14 09:10:37 +03:00
case SVR4_SI_SET_HOSTNAME:
if (error = suser(p->p_ucred, &p->p_acflag))
return error;
name = KERN_HOSTNAME;
return kern_sysctl(&name, 1, 0, 0, SCARG(uap, buf), rlen);
case SVR4_SI_SET_SRPC_DOMAIN:
if (error = suser(p->p_ucred, &p->p_acflag))
return error;
name = KERN_DOMAINNAME;
return kern_sysctl(&name, 1, 0, 0, SCARG(uap, buf), rlen);
default:
DPRINTF(("Bad systeminfo command %d\n", SCARG(uap, what)));
return ENOSYS;
}
len = strlen(str) + 1;
if (len > rlen)
len = rlen;
1994-11-14 09:10:37 +03:00
return copyout(str, SCARG(uap, buf), len);
}
1994-10-24 20:37:34 +03:00
#ifdef notyet
struct svr4_utssys_args {
union {
struct svr4_ustat_args ustat_args;
struct svr4_uname_args uname_args;
struct svr4_fuser_args fuser_args;
} u;
int sel;
struct svr4_f_user *fuser;
1994-10-24 20:37:34 +03:00
};
#endif
int
svr4_utssys(p, uap, retval)
register struct proc *p;
register struct svr4_utssys_args *uap;
register_t *retval;
1994-10-24 20:37:34 +03:00
{
#ifdef notyet
switch (SCARG(uap, sel)) {
case 0: /* uname(2) */
return svr4_uname(p, &SCARG(uap, u).uname_args, retval);
case 2: /* ustat(2) */
return svr4_ustat(p, &SCARG(uap, u).ustat_args, retval);
default:
return ENOSYS;
}
1994-10-24 20:37:34 +03:00
#endif
return ENOSYS;
}