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.
|
|
|
|
*
|
|
|
|
* @(#)sun_misc.c 8.1 (Berkeley) 6/18/93
|
|
|
|
*
|
|
|
|
* from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
|
1993-11-10 14:46:38 +03:00
|
|
|
* $Id: sun_misc.c,v 1.6 1993/11/10 11:46:38 deraadt 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-10-15 14:28:29 +03:00
|
|
|
#include <ufs/dir.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#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-10-15 14:28:29 +03:00
|
|
|
#include <sys/specdev.h>
|
1993-10-02 13:22:00 +03:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
|
|
|
|
struct sun_wait4_args {
|
|
|
|
int pid;
|
|
|
|
int *status;
|
|
|
|
int options;
|
|
|
|
struct rusage *rusage;
|
|
|
|
};
|
|
|
|
sun_wait4(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_wait4_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (uap->pid == 0)
|
|
|
|
uap->pid = WAIT_ANY;
|
|
|
|
return (wait4(p, uap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_creat_args {
|
|
|
|
char *fname;
|
|
|
|
int fmode;
|
|
|
|
};
|
|
|
|
sun_creat(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_creat_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
struct args {
|
|
|
|
char *fname;
|
|
|
|
int mode;
|
|
|
|
int crtmode;
|
|
|
|
} openuap;
|
|
|
|
|
|
|
|
openuap.fname = uap->fname;
|
|
|
|
openuap.crtmode = uap->fmode;
|
|
|
|
openuap.mode = O_WRONLY | O_CREAT | O_TRUNC;
|
|
|
|
return (open(p, &openuap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_execv_args {
|
|
|
|
char *fname;
|
|
|
|
char **argp;
|
|
|
|
char **envp; /* pseudo */
|
|
|
|
};
|
|
|
|
sun_execv(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_execv_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
|
|
|
|
uap->envp = NULL;
|
|
|
|
return (execve(p, uap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_omsync_args {
|
|
|
|
caddr_t addr;
|
|
|
|
int len;
|
|
|
|
int flags;
|
|
|
|
};
|
|
|
|
sun_omsync(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_omsync_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (uap->flags)
|
|
|
|
return (EINVAL);
|
|
|
|
return (msync(p, uap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_unmount_args {
|
|
|
|
char *name;
|
|
|
|
int flags; /* pseudo */
|
|
|
|
};
|
|
|
|
sun_unmount(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_unmount_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
|
|
|
|
uap->flags = 0;
|
|
|
|
return (unmount(p, uap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
gettype(tptr)
|
|
|
|
int *tptr;
|
|
|
|
{
|
|
|
|
int type, error;
|
|
|
|
char in[20];
|
|
|
|
|
|
|
|
if (error = copyinstr((caddr_t)*tptr, in, sizeof in, (u_int *)0))
|
|
|
|
return (error);
|
|
|
|
if (strcmp(in, "4.2") == 0 || strcmp(in, "ufs") == 0)
|
|
|
|
type = MOUNT_UFS;
|
|
|
|
else if (strcmp(in, "nfs") == 0)
|
|
|
|
type = MOUNT_NFS;
|
|
|
|
else
|
|
|
|
return (EINVAL);
|
|
|
|
*tptr = type;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SUNM_RDONLY 0x01 /* mount fs read-only */
|
|
|
|
#define SUNM_NOSUID 0x02 /* mount fs with setuid disallowed */
|
|
|
|
#define SUNM_NEWTYPE 0x04 /* type is string (char *), not int */
|
|
|
|
#define SUNM_GRPID 0x08 /* (bsd semantics; ignored) */
|
|
|
|
#define SUNM_REMOUNT 0x10 /* update existing mount */
|
|
|
|
#define SUNM_NOSUB 0x20 /* prevent submounts (rejected) */
|
|
|
|
#define SUNM_MULTI 0x40 /* (ignored) */
|
|
|
|
#define SUNM_SYS5 0x80 /* Sys 5-specific semantics (rejected) */
|
|
|
|
|
|
|
|
struct sun_mount_args {
|
|
|
|
int type;
|
|
|
|
char *dir;
|
|
|
|
int flags;
|
|
|
|
caddr_t data;
|
|
|
|
};
|
|
|
|
sun_mount(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_mount_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
int oflags = uap->flags, nflags, error;
|
|
|
|
|
|
|
|
if (oflags & (SUNM_NOSUB | SUNM_SYS5))
|
|
|
|
return (EINVAL);
|
|
|
|
if (oflags & SUNM_NEWTYPE && (error = gettype(&uap->type)))
|
|
|
|
return (error);
|
|
|
|
nflags = 0;
|
|
|
|
if (oflags & SUNM_RDONLY)
|
|
|
|
nflags |= MNT_RDONLY;
|
|
|
|
if (oflags & SUNM_NOSUID)
|
|
|
|
nflags |= MNT_NOSUID;
|
|
|
|
if (oflags & SUNM_REMOUNT)
|
|
|
|
nflags |= MNT_UPDATE;
|
|
|
|
uap->flags = nflags;
|
|
|
|
return (mount(p, uap, retval));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_sigpending_args {
|
|
|
|
int *mask;
|
|
|
|
};
|
|
|
|
sun_sigpending(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
struct sun_sigpending_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
int mask = p->p_sig & p->p_sigmask;
|
|
|
|
|
|
|
|
return (copyout((caddr_t)&mask, (caddr_t)uap->mask, sizeof(int)));
|
|
|
|
}
|
|
|
|
|
1993-10-15 14:28:29 +03:00
|
|
|
/* TDR: Temporary until sys/dir.h, include/dirent.h and sys/dirent.h are fixed */
|
|
|
|
struct dirent {
|
|
|
|
u_long d_fileno; /* file number of entry */
|
|
|
|
u_short d_reclen; /* length of this record */
|
|
|
|
u_short d_namlen; /* length of string in d_name */
|
|
|
|
char d_name[255 + 1]; /* name must be no longer than this */
|
|
|
|
};
|
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
|
|
|
* Here is the sun layout. (Compare the BSD layout in <sys/dirent.h>.)
|
|
|
|
* We can assume big-endian, so the BSD d_type field is just the high
|
|
|
|
* byte of the SunOS d_namlen field, after adjusting for the extra "long".
|
|
|
|
*/
|
|
|
|
struct sun_dirent {
|
|
|
|
long d_off;
|
|
|
|
u_long d_fileno;
|
|
|
|
u_short d_reclen;
|
|
|
|
u_short d_namlen;
|
|
|
|
char d_name[256];
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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?
|
|
|
|
*/
|
|
|
|
struct sun_getdents_args {
|
|
|
|
int fd;
|
|
|
|
char *buf;
|
|
|
|
int nbytes;
|
|
|
|
};
|
|
|
|
sun_getdents(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
register struct sun_getdents_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
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))
|
|
|
|
#define SUN_RECLEN(reclen) (reclen + sizeof(long))
|
|
|
|
|
|
|
|
if ((error = getvnode(p->p_fd, uap->fd, &fp)) != 0)
|
|
|
|
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);
|
|
|
|
buflen = min(MAXBSIZE, uap->nbytes);
|
|
|
|
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.
|
|
|
|
*/
|
1993-10-15 14:28:29 +03:00
|
|
|
if (error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, NULL, 0))
|
1993-10-02 13:22:00 +03:00
|
|
|
goto out;
|
|
|
|
inp = buf;
|
|
|
|
outp = uap->buf;
|
|
|
|
resid = uap->nbytes;
|
|
|
|
if ((len = buflen - auio.uio_resid) == 0)
|
|
|
|
goto eof;
|
|
|
|
for (; len > 0; len -= reclen) {
|
|
|
|
reclen = ((struct dirent *)inp)->d_reclen;
|
|
|
|
if (reclen & 3)
|
|
|
|
panic("sun_getdents");
|
|
|
|
off += reclen; /* each entry points to next */
|
|
|
|
if (BSD_DIRENT(inp)->d_fileno == 0) {
|
|
|
|
inp += reclen; /* it is a hole; squish it out */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (reclen > len || resid < SUN_RECLEN(reclen)) {
|
|
|
|
/* 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).
|
|
|
|
*/
|
|
|
|
BSD_DIRENT(inp)->d_reclen = SUN_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 */
|
|
|
|
outp += SUN_RECLEN(reclen);
|
|
|
|
resid -= SUN_RECLEN(reclen);
|
|
|
|
}
|
|
|
|
/* if we squished out the whole block, try again */
|
|
|
|
if (outp == uap->buf)
|
|
|
|
goto again;
|
|
|
|
fp->f_offset = off; /* update the vnode offset */
|
|
|
|
eof:
|
|
|
|
*retval = uap->nbytes - resid;
|
|
|
|
out:
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
free(buf, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1993-10-15 14:28:29 +03:00
|
|
|
/*
|
|
|
|
* The Sun bit-style arguments are not in the same order as the
|
|
|
|
* NetBSD ones. We must remap them the bits.
|
|
|
|
*/
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1993-11-10 13:14:19 +03:00
|
|
|
#if defined(sparc)
|
1993-10-15 14:28:29 +03:00
|
|
|
#define DEVZERO makedev(3, 12) /* major,minor of /dev/zero */
|
1993-11-10 13:14:19 +03:00
|
|
|
#endif
|
1993-11-10 14:46:38 +03:00
|
|
|
#if defined(sun3) || defined(amiga) || defined(mac) || defined(hp300)
|
|
|
|
#define DEVZERO makedev(2, 12) /* major,minor of /dev/zero */
|
1993-11-10 13:14:19 +03:00
|
|
|
#endif
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1993-10-15 14:28:29 +03:00
|
|
|
#define SUN_PROT_READ 1
|
|
|
|
#define SUN_PROT_WRITE 2
|
|
|
|
#define SUN_PROT_EXEC 4
|
|
|
|
#define SUN_PROT_UALL (SUN_PROT_READ | SUN_PROT_WRITE | SUN_PROT_EXEC)
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1993-10-15 14:28:29 +03:00
|
|
|
#define SUN__MAP_NEW 0x80000000 /* if not, old mmap & cannot handle */
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1993-10-15 14:28:29 +03:00
|
|
|
#define SUN_MAP_SHARED 1
|
|
|
|
#define SUN_MAP_PRIVATE 2
|
|
|
|
#define SUN_MAP_TYPE 0xf
|
|
|
|
#define SUN_MAP_FIXED 0x10
|
1993-10-02 13:22:00 +03:00
|
|
|
|
|
|
|
struct sun_mmap_args {
|
|
|
|
caddr_t addr;
|
|
|
|
size_t len;
|
|
|
|
int prot;
|
|
|
|
int flags;
|
|
|
|
int fd;
|
1993-10-15 14:28:29 +03:00
|
|
|
off_t off;
|
1993-10-02 13:22:00 +03:00
|
|
|
};
|
|
|
|
sun_mmap(p, uap, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
register struct sun_mmap_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
1993-10-15 14:28:29 +03:00
|
|
|
register int flags, prot, newflags, newprot;
|
1993-10-02 13:22:00 +03:00
|
|
|
register struct filedesc *fdp;
|
|
|
|
register struct file *fp;
|
|
|
|
register struct vnode *vp;
|
|
|
|
|
|
|
|
/*
|
1993-10-15 14:28:29 +03:00
|
|
|
* Verify and re-map the arguments.
|
1993-10-02 13:22:00 +03:00
|
|
|
*/
|
1993-10-15 14:28:29 +03:00
|
|
|
prot = uap->prot;
|
|
|
|
newprot = 0;
|
|
|
|
if (uap->prot & ~SUN_PROT_UALL)
|
|
|
|
return (EINVAL);
|
|
|
|
if (uap->prot & SUN_PROT_READ)
|
|
|
|
newprot |= PROT_READ;
|
|
|
|
if (uap->prot & SUN_PROT_WRITE)
|
|
|
|
newprot |= PROT_WRITE;
|
|
|
|
if (uap->prot & SUN_PROT_EXEC)
|
|
|
|
newprot |= PROT_EXEC;
|
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
flags = uap->flags;
|
1993-10-15 14:28:29 +03:00
|
|
|
newflags = 0;
|
|
|
|
if ((flags & SUN__MAP_NEW) == 0)
|
1993-10-02 13:22:00 +03:00
|
|
|
return (EINVAL);
|
1993-10-15 14:28:29 +03:00
|
|
|
|
|
|
|
switch (flags & SUN_MAP_TYPE) {
|
|
|
|
case SUN_MAP_SHARED:
|
|
|
|
newflags |= MAP_SHARED;
|
|
|
|
break;
|
|
|
|
case SUN_MAP_PRIVATE:
|
|
|
|
newflags |= MAP_PRIVATE;
|
|
|
|
break;
|
|
|
|
default:
|
1993-10-02 13:22:00 +03:00
|
|
|
return (EINVAL);
|
1993-10-15 14:28:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & SUN_MAP_FIXED)
|
|
|
|
newflags |= MAP_FIXED;
|
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;
|
|
|
|
if ((unsigned)uap->fd < fdp->fd_nfiles && /*XXX*/
|
|
|
|
(fp = fdp->fd_ofiles[uap->fd]) != NULL && /*XXX*/
|
|
|
|
fp->f_type == DTYPE_VNODE && /*XXX*/
|
|
|
|
(vp = (struct vnode *)fp->f_data)->v_type == VCHR && /*XXX*/
|
|
|
|
vp->v_rdev == DEVZERO) { /*XXX*/
|
1993-10-15 14:28:29 +03:00
|
|
|
newflags |= MAP_ANON;
|
1993-10-02 13:22:00 +03:00
|
|
|
uap->fd = -1;
|
1993-10-15 14:28:29 +03:00
|
|
|
} else
|
|
|
|
newflags |= MAP_FILE;
|
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/* All done, fix up fields and go. */
|
1993-10-15 14:28:29 +03:00
|
|
|
uap->flags = newflags;
|
|
|
|
uap->prot = newprot;
|
1993-10-11 05:44:06 +03:00
|
|
|
return (smmap(p, uap, 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
|
|
|
|
|
|
|
|
struct sun_mctl_args {
|
|
|
|
caddr_t addr;
|
|
|
|
size_t len;
|
|
|
|
int func;
|
|
|
|
void *arg;
|
|
|
|
};
|
|
|
|
sun_mctl(p, uap, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
register struct sun_mctl_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (uap->func) {
|
|
|
|
|
|
|
|
case MC_ADVISE: /* ignore for now */
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
case MC_SYNC: /* translate to msync */
|
|
|
|
return (msync(p, uap, retval));
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_setsockopt_args {
|
|
|
|
int s;
|
|
|
|
int level;
|
|
|
|
int name;
|
|
|
|
caddr_t val;
|
|
|
|
int valsize;
|
|
|
|
};
|
|
|
|
sun_setsockopt(p, uap, retval)
|
|
|
|
struct proc *p;
|
|
|
|
register struct sun_setsockopt_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
struct file *fp;
|
|
|
|
struct mbuf *m = NULL;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (error = getsock(p->p_fd, uap->s, &fp))
|
|
|
|
return (error);
|
|
|
|
#define SO_DONTLINGER (~SO_LINGER)
|
|
|
|
if (uap->name == SO_DONTLINGER) {
|
|
|
|
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);
|
|
|
|
return (sosetopt((struct socket *)fp->f_data, uap->level,
|
|
|
|
SO_LINGER, m));
|
|
|
|
}
|
|
|
|
if (uap->valsize > MLEN)
|
|
|
|
return (EINVAL);
|
|
|
|
if (uap->val) {
|
|
|
|
m = m_get(M_WAIT, MT_SOOPTS);
|
|
|
|
if (m == NULL)
|
|
|
|
return (ENOBUFS);
|
|
|
|
if (error = copyin(uap->val, mtod(m, caddr_t),
|
|
|
|
(u_int)uap->valsize)) {
|
|
|
|
(void) m_free(m);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
m->m_len = uap->valsize;
|
|
|
|
}
|
|
|
|
return (sosetopt((struct socket *)fp->f_data, uap->level,
|
|
|
|
uap->name, m));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sun_fchroot_args {
|
|
|
|
int fdes;
|
|
|
|
};
|
|
|
|
sun_fchroot(p, uap, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
register struct sun_fchroot_args *uap;
|
|
|
|
int *retval;
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
if ((error = getvnode(fdp, uap->fdes, &fp)) != 0)
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
auditsys(...)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|