1994-11-14 10:33:48 +03:00
|
|
|
/* $NetBSD: sunos_misc.c,v 1.34 1994/11/14 07:33:48 deraadt Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* 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, Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
1994-10-26 02:03:22 +03:00
|
|
|
* @(#)sunos_misc.c 8.1 (Berkeley) 6/18/93
|
1993-10-02 13:22:00 +03:00
|
|
|
*
|
1994-10-26 02:03:22 +03:00
|
|
|
* Header: sunos_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
|
1993-10-02 13:22:00 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SunOS compatibility module.
|
|
|
|
*
|
|
|
|
* SunOS system calls that are implemented differently in BSD are
|
|
|
|
* handled here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1993-12-12 23:43:18 +03:00
|
|
|
#include <sys/namei.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <sys/proc.h>
|
1994-06-10 13:26:18 +04:00
|
|
|
#include <sys/dir.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <sys/file.h>
|
1993-12-12 23:43:18 +03:00
|
|
|
#include <sys/stat.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/ioctl.h>
|
1993-11-20 06:08:16 +03:00
|
|
|
#include <sys/kernel.h>
|
1993-12-12 23:43:18 +03:00
|
|
|
#include <sys/exec.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/resourcevar.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/signalvar.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/wait.h>
|
1993-11-20 06:08:16 +03:00
|
|
|
#include <sys/utsname.h>
|
1994-03-03 17:08:25 +03:00
|
|
|
#include <sys/unistd.h>
|
1994-10-26 02:03:22 +03:00
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
#include <compat/sunos/sunos.h>
|
|
|
|
#include <compat/sunos/sunos_syscallargs.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1993-12-12 23:43:18 +03:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
1993-11-12 06:23:51 +03:00
|
|
|
#include <miscfs/specfs/specdev.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-06-10 13:26:18 +04:00
|
|
|
#include <nfs/rpcv2.h>
|
|
|
|
#include <nfs/nfsv2.h>
|
|
|
|
#include <nfs/nfs.h>
|
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <vm/vm.h>
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_wait4(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_wait4_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, pid) == 0)
|
|
|
|
SCARG(uap, pid) = WAIT_ANY;
|
|
|
|
return (wait4(p, uap, retval, 1));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_creat(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_creat_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_open_args ouap;
|
|
|
|
|
|
|
|
SCARG(&ouap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ouap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
|
|
|
|
SCARG(&ouap, mode) = SCARG(uap, mode);
|
|
|
|
return (open(p, &ouap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_execv(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_execv_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct execve_args ouap;
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(&ouap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ouap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ouap, envp) = NULL;
|
|
|
|
return (execve(p, &ouap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_omsync(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_omsync_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct msync_args ouap;
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, flags))
|
1993-10-02 13:22:00 +03:00
|
|
|
return (EINVAL);
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(&ouap, addr) = SCARG(uap, addr);
|
|
|
|
SCARG(&ouap, len) = SCARG(uap, len);
|
|
|
|
return (msync(p, &ouap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_unmount(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_unmount_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(uap, flags) = 0;
|
|
|
|
return (unmount(p, (struct unmount_args *)uap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_mount(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_mount_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
int oflags = SCARG(uap, flags), nflags, error;
|
1993-12-12 23:43:18 +03:00
|
|
|
extern char sigcode[], esigcode[];
|
1994-04-24 15:37:49 +04:00
|
|
|
char fsname[MFSNAMELEN];
|
|
|
|
|
1993-12-12 23:43:18 +03:00
|
|
|
#define szsigcode (esigcode - sigcode)
|
1993-10-02 13:22:00 +03:00
|
|
|
|
|
|
|
if (oflags & (SUNM_NOSUB | SUNM_SYS5))
|
|
|
|
return (EINVAL);
|
1994-04-24 15:37:49 +04:00
|
|
|
if ((oflags & SUNM_NEWTYPE) == 0)
|
|
|
|
return (EINVAL);
|
1993-10-02 13:22:00 +03:00
|
|
|
nflags = 0;
|
|
|
|
if (oflags & SUNM_RDONLY)
|
|
|
|
nflags |= MNT_RDONLY;
|
|
|
|
if (oflags & SUNM_NOSUID)
|
|
|
|
nflags |= MNT_NOSUID;
|
|
|
|
if (oflags & SUNM_REMOUNT)
|
|
|
|
nflags |= MNT_UPDATE;
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(uap, flags) = nflags;
|
1993-12-12 23:43:18 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyinstr((caddr_t)SCARG(uap, type), fsname,
|
|
|
|
sizeof fsname, (u_int *)0))
|
1994-04-24 15:37:49 +04:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
if (strcmp(fsname, "4.2") == 0) {
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(uap, type) = STACKGAPBASE;
|
|
|
|
if (error = copyout("ufs", SCARG(uap, type), sizeof("ufs")))
|
1994-04-24 15:37:49 +04:00
|
|
|
return (error);
|
|
|
|
} else if (strcmp(fsname, "nfs") == 0) {
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_nfs_args sna;
|
1993-12-12 23:43:18 +03:00
|
|
|
struct sockaddr_in sain;
|
|
|
|
struct nfs_args na;
|
|
|
|
struct sockaddr sa;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyin(SCARG(uap, data), &sna, sizeof sna))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
|
|
|
if (error = copyin(sna.addr, &sain, sizeof sain))
|
|
|
|
return (error);
|
|
|
|
bcopy(&sain, &sa, sizeof sa);
|
|
|
|
sa.sa_len = sizeof(sain);
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(uap, data) = STACKGAPBASE;
|
|
|
|
na.addr = (struct sockaddr *)((int)SCARG(uap, data) + sizeof na);
|
1994-06-22 12:24:53 +04:00
|
|
|
na.addrlen = sizeof(struct sockaddr);
|
1993-12-12 23:43:18 +03:00
|
|
|
na.sotype = SOCK_DGRAM;
|
|
|
|
na.proto = IPPROTO_UDP;
|
|
|
|
na.fh = (nfsv2fh_t *)sna.fh;
|
|
|
|
na.flags = sna.flags;
|
|
|
|
na.wsize = sna.wsize;
|
|
|
|
na.rsize = sna.rsize;
|
|
|
|
na.timeo = sna.timeo;
|
|
|
|
na.retrans = sna.retrans;
|
|
|
|
na.hostname = sna.hostname;
|
|
|
|
|
|
|
|
if (error = copyout(&sa, na.addr, sizeof sa))
|
|
|
|
return (error);
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyout(&na, SCARG(uap, data), sizeof na))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
|
|
|
}
|
1994-10-26 02:03:22 +03:00
|
|
|
return (mount(p, (struct mount_args *)uap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-06-15 23:38:05 +04:00
|
|
|
#if defined(NFSCLIENT)
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
1994-06-10 13:26:18 +04:00
|
|
|
async_daemon(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
void *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1994-06-10 13:26:18 +04:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct nfssvc_args ouap;
|
1994-06-10 13:26:18 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(&ouap, flag) = NFSSVC_BIOD;
|
|
|
|
SCARG(&ouap, argp) = NULL;
|
|
|
|
return nfssvc(p, &ouap, retval);
|
1994-06-10 13:26:18 +04:00
|
|
|
}
|
1994-06-15 23:38:05 +04:00
|
|
|
#endif /* NFSCLIENT */
|
1994-06-10 13:26:18 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_sigpending(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_sigpending_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-05-05 13:36:23 +04:00
|
|
|
int mask = p->p_siglist & p->p_sigmask;
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
return (copyout((caddr_t)&mask, (caddr_t)SCARG(uap, mask), sizeof(int)));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read Sun-style directory entries. We suck them into kernel space so
|
|
|
|
* that they can be massaged before being copied out to user code. Like
|
|
|
|
* SunOS, we squish out `empty' entries.
|
|
|
|
*
|
|
|
|
* This is quite ugly, but what do you expect from compatibility code?
|
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_getdents(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
register struct sunos_getdents_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
|
|
|
register struct vnode *vp;
|
|
|
|
register caddr_t inp, buf; /* BSD-format */
|
|
|
|
register int len, reclen; /* BSD-format */
|
|
|
|
register caddr_t outp; /* Sun-format */
|
|
|
|
register int resid; /* Sun-format */
|
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov;
|
|
|
|
off_t off; /* true file offset */
|
|
|
|
long soff; /* Sun file offset */
|
|
|
|
int buflen, error, eofflag;
|
|
|
|
#define BSD_DIRENT(cp) ((struct dirent *)(cp))
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_RECLEN(reclen) (reclen + sizeof(long))
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
|
1993-10-02 13:22:00 +03:00
|
|
|
return (error);
|
|
|
|
if ((fp->f_flag & FREAD) == 0)
|
|
|
|
return (EBADF);
|
|
|
|
vp = (struct vnode *)fp->f_data;
|
|
|
|
if (vp->v_type != VDIR) /* XXX vnode readdir op should do this */
|
|
|
|
return (EINVAL);
|
1994-10-26 02:03:22 +03:00
|
|
|
buflen = min(MAXBSIZE, SCARG(uap, nbytes));
|
1993-10-02 13:22:00 +03:00
|
|
|
buf = malloc(buflen, M_TEMP, M_WAITOK);
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
off = fp->f_offset;
|
|
|
|
again:
|
|
|
|
aiov.iov_base = buf;
|
|
|
|
aiov.iov_len = buflen;
|
|
|
|
auio.uio_iov = &aiov;
|
|
|
|
auio.uio_iovcnt = 1;
|
|
|
|
auio.uio_rw = UIO_READ;
|
|
|
|
auio.uio_segflg = UIO_SYSSPACE;
|
|
|
|
auio.uio_procp = p;
|
|
|
|
auio.uio_resid = buflen;
|
|
|
|
auio.uio_offset = off;
|
|
|
|
/*
|
|
|
|
* First we read into the malloc'ed buffer, then
|
|
|
|
* we massage it into user space, one record at a time.
|
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag,
|
|
|
|
(u_long *)0, 0))
|
1993-10-02 13:22:00 +03:00
|
|
|
goto out;
|
|
|
|
inp = buf;
|
1994-10-26 02:03:22 +03:00
|
|
|
outp = SCARG(uap, buf);
|
|
|
|
resid = SCARG(uap, nbytes);
|
1993-10-02 13:22:00 +03:00
|
|
|
if ((len = buflen - auio.uio_resid) == 0)
|
|
|
|
goto eof;
|
|
|
|
for (; len > 0; len -= reclen) {
|
|
|
|
reclen = ((struct dirent *)inp)->d_reclen;
|
|
|
|
if (reclen & 3)
|
1994-10-26 02:03:22 +03:00
|
|
|
panic("sunos_getdents");
|
1993-10-02 13:22:00 +03:00
|
|
|
off += reclen; /* each entry points to next */
|
|
|
|
if (BSD_DIRENT(inp)->d_fileno == 0) {
|
|
|
|
inp += reclen; /* it is a hole; squish it out */
|
|
|
|
continue;
|
|
|
|
}
|
1994-10-26 02:03:22 +03:00
|
|
|
if (reclen > len || resid < SUNOS_RECLEN(reclen)) {
|
1993-10-02 13:22:00 +03:00
|
|
|
/* entry too big for buffer, so just stop */
|
|
|
|
outp++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Massage in place to make a Sun-shaped dirent (otherwise
|
|
|
|
* we have to worry about touching user memory outside of
|
|
|
|
* the copyout() call).
|
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
BSD_DIRENT(inp)->d_reclen = SUNOS_RECLEN(reclen);
|
1993-10-15 14:28:29 +03:00
|
|
|
#if notdef
|
|
|
|
BSD_DIRENT(inp)->d_type = 0; /* 4.4 specific */
|
|
|
|
#endif
|
1993-10-02 13:22:00 +03:00
|
|
|
soff = off;
|
|
|
|
if ((error = copyout((caddr_t)&soff, outp, sizeof soff)) != 0 ||
|
|
|
|
(error = copyout(inp, outp + sizeof soff, reclen)) != 0)
|
|
|
|
goto out;
|
|
|
|
/* advance past this real entry */
|
|
|
|
inp += reclen;
|
|
|
|
/* advance output past Sun-shaped entry */
|
1994-10-26 02:03:22 +03:00
|
|
|
outp += SUNOS_RECLEN(reclen);
|
|
|
|
resid -= SUNOS_RECLEN(reclen);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
/* if we squished out the whole block, try again */
|
1994-10-26 02:03:22 +03:00
|
|
|
if (outp == SCARG(uap, buf))
|
1993-10-02 13:22:00 +03:00
|
|
|
goto again;
|
|
|
|
fp->f_offset = off; /* update the vnode offset */
|
|
|
|
eof:
|
1994-10-26 02:03:22 +03:00
|
|
|
*retval = SCARG(uap, nbytes) - resid;
|
1993-10-02 13:22:00 +03:00
|
|
|
out:
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
free(buf, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS__MAP_NEW 0x80000000 /* if not, old mmap & cannot handle */
|
|
|
|
|
|
|
|
int
|
|
|
|
sunos_mmap(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
register struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
register struct sunos_mmap_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct mmap_args ouap;
|
1993-10-02 13:22:00 +03:00
|
|
|
register struct filedesc *fdp;
|
|
|
|
register struct file *fp;
|
|
|
|
register struct vnode *vp;
|
|
|
|
|
|
|
|
/*
|
1994-03-27 13:08:02 +04:00
|
|
|
* Verify the arguments.
|
1993-10-02 13:22:00 +03:00
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, prot) & ~(PROT_READ|PROT_WRITE|PROT_EXEC))
|
1994-03-27 13:08:02 +04:00
|
|
|
return (EINVAL); /* XXX still needed? */
|
1993-10-15 14:28:29 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if ((SCARG(uap, flags) & SUNOS__MAP_NEW) == 0)
|
1993-10-02 13:22:00 +03:00
|
|
|
return (EINVAL);
|
1993-10-15 14:28:29 +03:00
|
|
|
|
1994-11-14 10:33:48 +03:00
|
|
|
SCARG(&ouap, flags) = SCARG(uap, flags) & ~SUNOS__MAP_NEW;
|
|
|
|
SCARG(&ouap, addr) = SCARG(uap, addr);
|
|
|
|
|
|
|
|
if ((SCARG(&ouap, flags) & MAP_FIXED) == 0 &&
|
|
|
|
SCARG(&ouap, addr) != 0 &&
|
|
|
|
SCARG(&ouap, addr) < (caddr_t)round_page(p->p_vmspace->vm_daddr+MAXDSIZ))
|
|
|
|
SCARG(&ouap, addr) = (caddr_t)round_page(p->p_vmspace->vm_daddr+MAXDSIZ);
|
|
|
|
|
|
|
|
SCARG(&ouap, len) = SCARG(uap, len);
|
|
|
|
SCARG(&ouap, prot) = SCARG(uap, prot);
|
|
|
|
SCARG(&ouap, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&ouap, pos) = SCARG(uap, pos);
|
1993-12-12 23:43:18 +03:00
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
|
|
|
* Special case: if fd refers to /dev/zero, map as MAP_ANON. (XXX)
|
|
|
|
*/
|
|
|
|
fdp = p->p_fd;
|
1994-11-14 10:33:48 +03:00
|
|
|
if ((unsigned)SCARG(&ouap, fd) < fdp->fd_nfiles && /*XXX*/
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(&ouap, fd)]) != NULL && /*XXX*/
|
1993-10-02 13:22:00 +03:00
|
|
|
fp->f_type == DTYPE_VNODE && /*XXX*/
|
|
|
|
(vp = (struct vnode *)fp->f_data)->v_type == VCHR && /*XXX*/
|
1994-05-21 12:44:26 +04:00
|
|
|
iszerodev(vp->v_rdev)) { /*XXX*/
|
1994-11-14 10:33:48 +03:00
|
|
|
SCARG(&ouap, flags) |= MAP_ANON;
|
|
|
|
SCARG(&ouap, fd) = -1;
|
1994-03-27 13:08:02 +04:00
|
|
|
}
|
1993-10-15 14:28:29 +03:00
|
|
|
|
1994-11-14 10:33:48 +03:00
|
|
|
return (mmap(p, &ouap, retval));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define MC_SYNC 1
|
|
|
|
#define MC_LOCK 2
|
|
|
|
#define MC_UNLOCK 3
|
|
|
|
#define MC_ADVISE 4
|
|
|
|
#define MC_LOCKAS 5
|
|
|
|
#define MC_UNLOCKAS 6
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_mctl(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
register struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
register struct sunos_mctl_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
switch (SCARG(uap, func)) {
|
1993-10-02 13:22:00 +03:00
|
|
|
case MC_ADVISE: /* ignore for now */
|
|
|
|
return (0);
|
|
|
|
case MC_SYNC: /* translate to msync */
|
|
|
|
return (msync(p, uap, retval));
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_setsockopt(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
register struct sunos_setsockopt_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *m = NULL;
|
|
|
|
int error;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = getsock(p->p_fd, SCARG(uap, s), &fp))
|
1993-10-02 13:22:00 +03:00
|
|
|
return (error);
|
|
|
|
#define SO_DONTLINGER (~SO_LINGER)
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, name) == SO_DONTLINGER) {
|
1993-10-02 13:22:00 +03:00
|
|
|
m = m_get(M_WAIT, MT_SOOPTS);
|
|
|
|
if (m == NULL)
|
|
|
|
return (ENOBUFS);
|
|
|
|
mtod(m, struct linger *)->l_onoff = 0;
|
|
|
|
m->m_len = sizeof(struct linger);
|
1994-10-26 02:03:22 +03:00
|
|
|
return (sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
|
1993-10-02 13:22:00 +03:00
|
|
|
SO_LINGER, m));
|
|
|
|
}
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, valsize) > MLEN)
|
1993-10-02 13:22:00 +03:00
|
|
|
return (EINVAL);
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, val)) {
|
1993-10-02 13:22:00 +03:00
|
|
|
m = m_get(M_WAIT, MT_SOOPTS);
|
|
|
|
if (m == NULL)
|
|
|
|
return (ENOBUFS);
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyin(SCARG(uap, val), mtod(m, caddr_t),
|
|
|
|
(u_int)SCARG(uap, valsize))) {
|
1993-10-02 13:22:00 +03:00
|
|
|
(void) m_free(m);
|
|
|
|
return (error);
|
|
|
|
}
|
1994-10-26 02:03:22 +03:00
|
|
|
m->m_len = SCARG(uap, valsize);
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
1994-10-26 02:03:22 +03:00
|
|
|
return (sosetopt((struct socket *)fp->f_data, SCARG(uap, level),
|
|
|
|
SCARG(uap, name), m));
|
1993-10-02 13:22:00 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_fchroot(p, uap, retval)
|
1993-10-02 13:22:00 +03:00
|
|
|
register struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
register struct sunos_fchroot_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-10-02 13:22:00 +03:00
|
|
|
{
|
|
|
|
register struct filedesc *fdp = p->p_fd;
|
|
|
|
register struct vnode *vp;
|
|
|
|
struct file *fp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
|
|
|
|
return (error);
|
1994-10-26 02:03:22 +03:00
|
|
|
if ((error = getvnode(fdp, SCARG(uap, fd), &fp)) != 0)
|
1993-10-02 13:22:00 +03:00
|
|
|
return (error);
|
|
|
|
vp = (struct vnode *)fp->f_data;
|
|
|
|
VOP_LOCK(vp);
|
|
|
|
if (vp->v_type != VDIR)
|
|
|
|
error = ENOTDIR;
|
|
|
|
else
|
|
|
|
error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
VREF(vp);
|
|
|
|
if (fdp->fd_rdir != NULL)
|
|
|
|
vrele(fdp->fd_rdir);
|
|
|
|
fdp->fd_rdir = vp;
|
|
|
|
return (0);
|
|
|
|
}
|
1993-10-13 05:31:47 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: This needs cleaning up.
|
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_auditsys(...)
|
1993-10-13 05:31:47 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
1993-11-20 06:08:16 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_uname(p, uap, retval)
|
1993-11-20 06:08:16 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_uname_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-11-20 06:08:16 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_utsname sut;
|
1994-05-20 02:11:54 +04:00
|
|
|
extern char ostype[], machine[], osrelease[];
|
1993-11-20 06:08:16 +03:00
|
|
|
|
|
|
|
bzero(&sut, sizeof(sut));
|
1994-05-20 02:11:54 +04:00
|
|
|
|
|
|
|
bcopy(ostype, sut.sysname, sizeof(sut.sysname) - 1);
|
|
|
|
bcopy(hostname, sut.nodename, sizeof(sut.nodename));
|
|
|
|
sut.nodename[sizeof(sut.nodename)-1] = '\0';
|
|
|
|
bcopy(osrelease, sut.release, sizeof(sut.release) - 1);
|
|
|
|
bcopy("1", sut.version, sizeof(sut.version) - 1);
|
|
|
|
bcopy(machine, sut.machine, sizeof(sut.machine) - 1);
|
1993-11-20 06:08:16 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
return copyout((caddr_t)&sut, (caddr_t)SCARG(uap, name),
|
|
|
|
sizeof(struct sunos_utsname));
|
1993-11-20 06:08:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1994-10-26 02:03:22 +03:00
|
|
|
sunos_setpgid(p, uap, retval)
|
1993-11-20 06:08:16 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_setpgid_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-11-20 06:08:16 +03:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* difference to our setpgid call is to include backwards
|
|
|
|
* compatibility to pre-setsid() binaries. Do setsid()
|
|
|
|
* instead of setpgid() in those cases where the process
|
|
|
|
* tries to create a new session the old way.
|
|
|
|
*/
|
1994-10-26 02:03:22 +03:00
|
|
|
if (!SCARG(uap, pgid) && (!SCARG(uap, pid) || SCARG(uap, pid) == p->p_pid))
|
1993-11-20 06:08:16 +03:00
|
|
|
return setsid(p, uap, retval);
|
|
|
|
else
|
|
|
|
return setpgid(p, uap, retval);
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_open(p, uap, retval)
|
1993-11-20 06:08:16 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_open_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-11-20 06:08:16 +03:00
|
|
|
{
|
|
|
|
int l, r;
|
1994-10-26 02:03:22 +03:00
|
|
|
int noctty = SCARG(uap, mode) & 0x8000;
|
1993-11-20 06:08:16 +03:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* convert mode into NetBSD mode */
|
1994-10-26 02:03:22 +03:00
|
|
|
l = SCARG(uap, mode);
|
1993-11-20 06:08:16 +03:00
|
|
|
r = (l & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800));
|
|
|
|
r |= ((l & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
|
|
|
|
r |= ((l & 0x0080) ? O_SHLOCK : 0);
|
|
|
|
r |= ((l & 0x0100) ? O_EXLOCK : 0);
|
|
|
|
r |= ((l & 0x2000) ? O_FSYNC : 0);
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(uap, mode) = r;
|
|
|
|
ret = open(p, (struct open_args *)uap, retval);
|
1993-11-20 06:08:16 +03:00
|
|
|
|
1994-05-05 06:46:58 +04:00
|
|
|
if (!ret && !noctty && SESS_LEADER(p) && !(p->p_flag & P_CONTROLT)) {
|
1993-11-20 06:08:16 +03:00
|
|
|
struct filedesc *fdp = p->p_fd;
|
|
|
|
struct file *fp = fdp->fd_ofiles[*retval];
|
|
|
|
|
|
|
|
/* ignore any error, just give it a try */
|
|
|
|
if (fp->f_type == DTYPE_VNODE)
|
|
|
|
(fp->f_ops->fo_ioctl)(fp, TIOCSCTTY, (caddr_t) 0, p);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
1993-12-12 23:43:18 +03:00
|
|
|
|
1994-02-21 02:24:03 +03:00
|
|
|
#if defined (NFSSERVER)
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_nfssvc(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_nfssvc_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
struct nfssvc_args outuap;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct nfsd_srvargs nfsdarg;
|
1993-12-12 23:43:18 +03:00
|
|
|
struct sockaddr sa;
|
|
|
|
int error;
|
|
|
|
extern char sigcode[], esigcode[];
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
#if 0
|
1993-12-12 23:43:18 +03:00
|
|
|
bzero(&outuap, sizeof outuap);
|
1994-10-26 02:03:22 +03:00
|
|
|
SCARG(&outuap, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&outuap, mskval) = STACKGAPBASE;
|
|
|
|
SCARG(&outuap, msklen) = sizeof sa;
|
|
|
|
SCARG(&outuap, mtchval) = SCARG(&outuap, mskval) + sizeof sa;
|
|
|
|
SCARG(&outuap, mtchlen) = sizeof sa;
|
1993-12-12 23:43:18 +03:00
|
|
|
|
|
|
|
bzero(&sa, sizeof sa);
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyout(&sa, SCARG(&outuap, mskval), SCARG(&outuap, msklen)))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyout(&sa, SCARG(&outuap, mtchval), SCARG(&outuap, mtchlen)))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
return nfssvc(p, &outuap, retval);
|
1994-10-26 02:03:22 +03:00
|
|
|
#else
|
|
|
|
return (ENOSYS);
|
|
|
|
#endif
|
1993-12-12 23:43:18 +03:00
|
|
|
}
|
1994-02-21 02:24:03 +03:00
|
|
|
#endif /* NFSSERVER */
|
1993-12-12 23:43:18 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_ustat(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_ustat_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_ustat us;
|
1993-12-12 23:43:18 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
bzero(&us, sizeof us);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: should set f_tfree and f_tinode at least
|
1994-10-26 02:03:22 +03:00
|
|
|
* How do we translate dev -> fstat? (and then to sunos_ustat)
|
1993-12-12 23:43:18 +03:00
|
|
|
*/
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = copyout(&us, SCARG(uap, buf), sizeof us))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_quotactl(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_quotactl_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_vhangup(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
|
|
|
void *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
sunstatfs(sp, buf)
|
|
|
|
struct statfs *sp;
|
|
|
|
caddr_t buf;
|
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_statfs ssfs;
|
1993-12-12 23:43:18 +03:00
|
|
|
|
|
|
|
bzero(&ssfs, sizeof ssfs);
|
|
|
|
ssfs.f_type = 0;
|
1994-04-24 15:37:49 +04:00
|
|
|
ssfs.f_bsize = sp->f_bsize;
|
1993-12-12 23:43:18 +03:00
|
|
|
ssfs.f_blocks = sp->f_blocks;
|
|
|
|
ssfs.f_bfree = sp->f_bfree;
|
|
|
|
ssfs.f_bavail = sp->f_bavail;
|
|
|
|
ssfs.f_files = sp->f_files;
|
|
|
|
ssfs.f_ffree = sp->f_ffree;
|
|
|
|
ssfs.f_fsid = sp->f_fsid;
|
|
|
|
return copyout((caddr_t)&ssfs, buf, sizeof ssfs);
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_statfs(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_statfs_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
register struct mount *mp;
|
|
|
|
register struct statfs *sp;
|
|
|
|
int error;
|
|
|
|
struct nameidata nd;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
|
1994-06-10 13:26:18 +04:00
|
|
|
if (error = namei(&nd))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
1994-06-10 13:26:18 +04:00
|
|
|
mp = nd.ni_vp->v_mount;
|
1993-12-12 23:43:18 +03:00
|
|
|
sp = &mp->mnt_stat;
|
1994-06-10 13:26:18 +04:00
|
|
|
vrele(nd.ni_vp);
|
1993-12-12 23:43:18 +03:00
|
|
|
if (error = VFS_STATFS(mp, sp, p))
|
|
|
|
return (error);
|
|
|
|
sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
|
1994-10-26 02:03:22 +03:00
|
|
|
return sunstatfs(sp, (caddr_t)SCARG(uap, buf));
|
1993-12-12 23:43:18 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_fstatfs(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_fstatfs_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
struct file *fp;
|
|
|
|
struct mount *mp;
|
|
|
|
register struct statfs *sp;
|
|
|
|
int error;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (error = getvnode(p->p_fd, SCARG(uap, fd), &fp))
|
1993-12-12 23:43:18 +03:00
|
|
|
return (error);
|
|
|
|
mp = ((struct vnode *)fp->f_data)->v_mount;
|
|
|
|
sp = &mp->mnt_stat;
|
|
|
|
if (error = VFS_STATFS(mp, sp, p))
|
|
|
|
return (error);
|
|
|
|
sp->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
|
1994-10-26 02:03:22 +03:00
|
|
|
return sunstatfs(sp, (caddr_t)SCARG(uap, buf));
|
1993-12-12 23:43:18 +03:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_exportfs(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_exportfs_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* XXX: should perhaps translate into a mount(2)
|
|
|
|
* with MOUNT_EXPORT?
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_mknod(p, uap, retval)
|
1993-12-12 23:43:18 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_mknod_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1993-12-12 23:43:18 +03:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
if (S_ISFIFO(SCARG(uap, mode)))
|
1993-12-12 23:43:18 +03:00
|
|
|
return mkfifo(p, uap, retval);
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
return mknod(p, (struct mknod_args *)uap, retval);
|
1993-12-12 23:43:18 +03:00
|
|
|
}
|
1994-03-03 17:08:25 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_SC_ARG_MAX 1
|
|
|
|
#define SUNOS_SC_CHILD_MAX 2
|
|
|
|
#define SUNOS_SC_CLK_TCK 3
|
|
|
|
#define SUNOS_SC_NGROUPS_MAX 4
|
|
|
|
#define SUNOS_SC_OPEN_MAX 5
|
|
|
|
#define SUNOS_SC_JOB_CONTROL 6
|
|
|
|
#define SUNOS_SC_SAVED_IDS 7
|
|
|
|
#define SUNOS_SC_VERSION 8
|
1994-03-03 17:08:25 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_sysconf(p, uap, retval)
|
1994-03-03 17:08:25 +03:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_sysconf_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1994-03-03 17:08:25 +03:00
|
|
|
{
|
1994-05-24 06:15:18 +04:00
|
|
|
extern int maxfiles;
|
1994-03-03 17:08:25 +03:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
switch(SCARG(uap, name)) {
|
|
|
|
case SUNOS_SC_ARG_MAX:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = ARG_MAX;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_CHILD_MAX:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = maxproc;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_CLK_TCK:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = 60; /* should this be `hz', ie. 100? */
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_NGROUPS_MAX:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = NGROUPS_MAX;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_OPEN_MAX:
|
1994-05-24 06:15:18 +04:00
|
|
|
*retval = maxfiles;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_JOB_CONTROL:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = 1;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_SAVED_IDS:
|
1994-03-03 17:08:25 +03:00
|
|
|
#ifdef _POSIX_SAVED_IDS
|
|
|
|
*retval = 1;
|
|
|
|
#else
|
|
|
|
*retval = 0;
|
|
|
|
#endif
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-10-26 02:03:22 +03:00
|
|
|
case SUNOS_SC_VERSION:
|
1994-03-03 17:08:25 +03:00
|
|
|
*retval = 198808;
|
1994-03-03 17:15:25 +03:00
|
|
|
break;
|
1994-03-03 17:08:25 +03:00
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
1994-04-26 23:50:37 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
#define SUNOS_RLIMIT_NOFILE 6 /* Other RLIMIT_* are the same */
|
|
|
|
#define SUNOS_RLIM_NLIMITS 7
|
1994-04-26 23:50:37 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_getrlimit(p, uap, retval)
|
1994-04-26 23:50:37 +04:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_getrlimit_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1994-04-26 23:50:37 +04:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, which) >= SUNOS_RLIM_NLIMITS)
|
1994-04-26 23:50:37 +04:00
|
|
|
return EINVAL;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, which) == SUNOS_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
1994-04-26 23:50:37 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
return compat_43_getrlimit(p, uap, retval);
|
1994-04-26 23:50:37 +04:00
|
|
|
}
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
int
|
|
|
|
sunos_setrlimit(p, uap, retval)
|
1994-04-26 23:50:37 +04:00
|
|
|
struct proc *p;
|
1994-10-26 02:03:22 +03:00
|
|
|
struct sunos_getrlimit_args *uap;
|
1994-10-20 07:47:31 +03:00
|
|
|
register_t *retval;
|
1994-04-26 23:50:37 +04:00
|
|
|
{
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, which) >= SUNOS_RLIM_NLIMITS)
|
1994-04-26 23:50:37 +04:00
|
|
|
return EINVAL;
|
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
if (SCARG(uap, which) == SUNOS_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
1994-04-26 23:50:37 +04:00
|
|
|
|
1994-10-26 02:03:22 +03:00
|
|
|
return compat_43_setrlimit(p, uap, retval);
|
1994-04-26 23:50:37 +04:00
|
|
|
}
|