1997-10-26 14:13:46 +03:00
|
|
|
/* $NetBSD: svr4_misc.c,v 1.52 1997/10/26 11:13:46 fvdl Exp $ */
|
1994-10-26 08:27:43 +03:00
|
|
|
|
1994-05-22 14:04:26 +04:00
|
|
|
/*
|
1994-10-26 14:58:24 +03:00
|
|
|
* Copyright (c) 1994 Christos Zoulas
|
|
|
|
* All rights reserved.
|
1994-05-22 14:04:26 +04:00
|
|
|
*
|
|
|
|
* 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.
|
1994-10-26 14:58:24 +03:00
|
|
|
* 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-05-22 14:04:26 +04:00
|
|
|
*
|
1994-10-26 14:58:24 +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-05-22 14:04:26 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1994-10-24 20:37:34 +03:00
|
|
|
* SVR4 compatibility module.
|
1994-05-22 14:04:26 +04:00
|
|
|
*
|
1994-10-24 20:37:34 +03:00
|
|
|
* SVR4 system calls that are implemented differently in BSD are
|
1994-05-22 14:04:26 +04:00
|
|
|
* handled here.
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/namei.h>
|
1996-07-05 20:31:00 +04:00
|
|
|
#include <sys/dirent.h>
|
1994-05-22 14:04:26 +04:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
1995-01-09 00:31:34 +03:00
|
|
|
#include <sys/time.h>
|
1994-05-22 14:04:26 +04:00
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/kernel.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/socket.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <sys/unistd.h>
|
1994-10-24 20:37:34 +03:00
|
|
|
#include <sys/times.h>
|
1995-07-02 10:16:06 +04:00
|
|
|
#include <sys/sem.h>
|
|
|
|
#include <sys/msg.h>
|
1995-10-14 23:24:14 +03:00
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <sys/signalvar.h>
|
1994-05-22 14:04:26 +04:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
1994-10-24 20:37:34 +03:00
|
|
|
#include <sys/syscallargs.h>
|
1994-05-22 14:04:26 +04:00
|
|
|
|
|
|
|
#include <miscfs/specfs/specdev.h>
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
#include <compat/svr4/svr4_types.h>
|
1994-11-18 05:53:37 +03:00
|
|
|
#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_time.h>
|
|
|
|
#include <compat/svr4/svr4_dirent.h>
|
1994-11-14 09:10:37 +03:00
|
|
|
#include <compat/svr4/svr4_ulimit.h>
|
1994-11-18 05:53:37 +03:00
|
|
|
#include <compat/svr4/svr4_hrt.h>
|
|
|
|
#include <compat/svr4/svr4_wait.h>
|
1995-01-09 00:31:34 +03:00
|
|
|
#include <compat/svr4/svr4_statvfs.h>
|
1995-07-02 10:16:06 +04:00
|
|
|
#include <compat/svr4/svr4_sysconfig.h>
|
1996-12-06 06:22:34 +03:00
|
|
|
#include <compat/svr4/svr4_acl.h>
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
#include <vm/vm.h>
|
1995-01-09 00:31:34 +03:00
|
|
|
|
|
|
|
static __inline clock_t timeval_to_clock_t __P((struct timeval *));
|
1995-01-25 07:17:06 +03:00
|
|
|
static int svr4_setinfo __P((struct proc *, int, svr4_siginfo_t *));
|
1995-01-09 00:31:34 +03:00
|
|
|
|
|
|
|
struct svr4_hrtcntl_args;
|
|
|
|
static int svr4_hrtcntl __P((struct proc *, struct svr4_hrtcntl_args *,
|
1997-07-22 03:02:34 +04:00
|
|
|
register_t *));
|
1995-01-09 00:31:34 +03:00
|
|
|
static void bsd_statfs_to_svr4_statvfs __P((const struct statfs *,
|
1997-07-22 03:02:34 +04:00
|
|
|
struct svr4_statvfs *));
|
|
|
|
static void bsd_statfs_to_svr4_statvfs64 __P((const struct statfs *,
|
|
|
|
struct svr4_statvfs64 *));
|
1995-01-10 03:04:03 +03:00
|
|
|
static struct proc *svr4_pfind __P((pid_t pid));
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1996-02-02 04:17:24 +03:00
|
|
|
static int svr4_mknod __P((struct proc *, register_t *, char *,
|
1997-07-22 03:02:34 +04:00
|
|
|
svr4_mode_t, svr4_dev_t));
|
1996-02-02 04:17:24 +03:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_wait(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_wait_args *uap = v;
|
|
|
|
struct sys_wait4_args w4;
|
1995-01-23 02:44:48 +03:00
|
|
|
int error;
|
|
|
|
size_t sz = sizeof(*SCARG(&w4, status));
|
1994-10-29 03:43:14 +03:00
|
|
|
|
|
|
|
SCARG(&w4, rusage) = NULL;
|
|
|
|
SCARG(&w4, options) = 0;
|
1995-01-23 02:44:48 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, status) == NULL) {
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1995-01-23 02:44:48 +03:00
|
|
|
SCARG(&w4, status) = stackgap_alloc(&sg, sz);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SCARG(&w4, status) = SCARG(uap, status);
|
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&w4, pid) = WAIT_ANY;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_wait4(p, &w4, retval)) != 0)
|
1995-01-23 02:44:48 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It looks like wait(2) on svr4/solaris/2.4 returns
|
|
|
|
* the status in retval[1], and the pid on retval[0].
|
|
|
|
* NB: this can break if register_t stops being an int.
|
|
|
|
*/
|
|
|
|
return copyin(SCARG(&w4, status), &retval[1], sz);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_execv(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1996-09-03 07:12:17 +04:00
|
|
|
struct svr4_sys_execv_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(char **) argv;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct sys_execve_args ap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
|
|
|
sg = stackgap_init(p->p_emul);
|
1995-06-25 00:29:17 +04:00
|
|
|
SVR4_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
1994-10-26 14:58:24 +03:00
|
|
|
|
1996-09-03 07:12:17 +04:00
|
|
|
SCARG(&ap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ap, envp) = NULL;
|
1994-10-26 14:58:24 +03:00
|
|
|
|
1996-09-03 07:12:17 +04:00
|
|
|
return sys_execve(p, &ap, retval);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_execve(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-10-24 20:37:34 +03:00
|
|
|
{
|
1996-09-03 07:12:17 +04:00
|
|
|
struct svr4_sys_execve_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(char **) argv;
|
|
|
|
syscallarg(char **) envp;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct sys_execve_args ap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
|
|
|
sg = stackgap_init(p->p_emul);
|
1995-06-25 00:29:17 +04:00
|
|
|
SVR4_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
1994-10-26 14:58:24 +03:00
|
|
|
|
1996-09-03 07:12:17 +04:00
|
|
|
SCARG(&ap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ap, envp) = SCARG(uap, envp);
|
|
|
|
|
|
|
|
return sys_execve(p, &ap, retval);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_time(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_time_args *uap = v;
|
|
|
|
int error = 0;
|
|
|
|
struct timeval tv;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
microtime(&tv);
|
|
|
|
if (SCARG(uap, t))
|
|
|
|
error = copyout(&tv.tv_sec, SCARG(uap, t),
|
|
|
|
sizeof(*(SCARG(uap, t))));
|
1995-01-09 00:31:34 +03:00
|
|
|
*retval = (int) tv.tv_sec;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
return error;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-05-22 14:04:26 +04:00
|
|
|
/*
|
1994-10-24 20:37:34 +03:00
|
|
|
* Read SVR4-style directory entries. We suck them into kernel space so
|
1994-05-22 14:04:26 +04:00
|
|
|
* 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?
|
|
|
|
*/
|
1997-07-22 03:02:34 +04:00
|
|
|
int
|
|
|
|
svr4_sys_getdents64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_getdents64_args *uap = v;
|
|
|
|
register struct dirent *bdp;
|
|
|
|
struct vnode *vp;
|
|
|
|
caddr_t inp, buf; /* BSD-format */
|
|
|
|
int len, reclen; /* BSD-format */
|
|
|
|
caddr_t outp; /* SVR4-format */
|
|
|
|
int resid, svr4_reclen; /* SVR4-format */
|
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov;
|
|
|
|
struct svr4_dirent64 idb;
|
|
|
|
off_t off; /* true file offset */
|
|
|
|
int buflen, error, eofflag;
|
1997-10-10 05:42:21 +04:00
|
|
|
off_t *cookiebuf, *cookie;
|
1997-07-22 03:02:34 +04:00
|
|
|
int ncookies;
|
|
|
|
|
|
|
|
if ((error = getvnode(p->p_fd, SCARG(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, SCARG(uap, nbytes));
|
|
|
|
buf = malloc(buflen, M_TEMP, M_WAITOK);
|
|
|
|
ncookies = buflen / 16;
|
|
|
|
cookiebuf = malloc(ncookies * sizeof(*cookiebuf), 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.
|
|
|
|
*/
|
|
|
|
error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, cookiebuf,
|
|
|
|
ncookies);
|
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
inp = buf;
|
|
|
|
outp = (char *) SCARG(uap, dp);
|
|
|
|
resid = SCARG(uap, nbytes);
|
1997-10-11 02:16:04 +04:00
|
|
|
if ((len = buflen - auio.uio_resid) == 0)
|
1997-07-22 03:02:34 +04:00
|
|
|
goto eof;
|
|
|
|
|
|
|
|
for (cookie = cookiebuf; len > 0; len -= reclen) {
|
|
|
|
bdp = (struct dirent *)inp;
|
|
|
|
reclen = bdp->d_reclen;
|
|
|
|
if (reclen & 3)
|
1997-10-10 05:42:21 +04:00
|
|
|
panic("svr4_getdents64: bad reclen");
|
1997-07-22 03:02:34 +04:00
|
|
|
if (bdp->d_fileno == 0) {
|
|
|
|
inp += reclen; /* it is a hole; squish it out */
|
1997-08-04 13:48:07 +04:00
|
|
|
off = *cookie++;
|
1997-07-22 03:02:34 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
svr4_reclen = SVR4_RECLEN(&idb, bdp->d_namlen);
|
|
|
|
if (reclen > len || resid < svr4_reclen) {
|
|
|
|
/* entry too big for buffer, so just stop */
|
|
|
|
outp++;
|
|
|
|
break;
|
|
|
|
}
|
1997-08-04 13:48:07 +04:00
|
|
|
off = *cookie++; /* each entry points to the next */
|
1997-07-22 03:02:34 +04:00
|
|
|
/*
|
|
|
|
* Massage in place to make a SVR4-shaped dirent (otherwise
|
|
|
|
* we have to worry about touching user memory outside of
|
|
|
|
* the copyout() call).
|
|
|
|
*/
|
|
|
|
idb.d_ino = (svr4_ino64_t)bdp->d_fileno;
|
|
|
|
idb.d_off = (svr4_off64_t)off;
|
|
|
|
idb.d_reclen = (u_short)svr4_reclen;
|
|
|
|
strcpy(idb.d_name, bdp->d_name);
|
|
|
|
if ((error = copyout((caddr_t)&idb, outp, svr4_reclen)))
|
|
|
|
goto out;
|
|
|
|
/* advance past this real entry */
|
|
|
|
inp += reclen;
|
|
|
|
/* advance output past SVR4-shaped entry */
|
|
|
|
outp += svr4_reclen;
|
|
|
|
resid -= svr4_reclen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we squished out the whole block, try again */
|
|
|
|
if (outp == (char *) SCARG(uap, dp))
|
|
|
|
goto again;
|
|
|
|
fp->f_offset = off; /* update the vnode offset */
|
|
|
|
|
|
|
|
eof:
|
|
|
|
*retval = SCARG(uap, nbytes) - resid;
|
|
|
|
out:
|
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
free(cookiebuf, M_TEMP);
|
|
|
|
free(buf, M_TEMP);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_getdents(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_getdents_args *uap = v;
|
|
|
|
register struct dirent *bdp;
|
|
|
|
struct vnode *vp;
|
|
|
|
caddr_t inp, buf; /* BSD-format */
|
|
|
|
int len, reclen; /* BSD-format */
|
|
|
|
caddr_t outp; /* SVR4-format */
|
|
|
|
int resid, svr4_reclen; /* SVR4-format */
|
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov;
|
|
|
|
struct svr4_dirent idb;
|
|
|
|
off_t off; /* true file offset */
|
|
|
|
int buflen, error, eofflag;
|
1997-10-10 05:42:21 +04:00
|
|
|
off_t *cookiebuf, *cookie;
|
1995-10-09 14:23:57 +03:00
|
|
|
int ncookies;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1996-02-02 11:09:45 +03:00
|
|
|
if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
return (error);
|
1995-10-07 09:25:19 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
if ((fp->f_flag & FREAD) == 0)
|
|
|
|
return (EBADF);
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1996-02-02 11:09:45 +03:00
|
|
|
vp = (struct vnode *)fp->f_data;
|
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
if (vp->v_type != VDIR) /* XXX vnode readdir op should do this */
|
|
|
|
return (EINVAL);
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
buflen = min(MAXBSIZE, SCARG(uap, nbytes));
|
|
|
|
buf = malloc(buflen, M_TEMP, M_WAITOK);
|
1995-10-09 14:23:57 +03:00
|
|
|
ncookies = buflen / 16;
|
|
|
|
cookiebuf = malloc(ncookies * sizeof(*cookiebuf), M_TEMP, M_WAITOK);
|
1994-10-29 03:43:14 +03:00
|
|
|
VOP_LOCK(vp);
|
|
|
|
off = fp->f_offset;
|
1994-10-24 20:37:34 +03:00
|
|
|
again:
|
1994-10-29 03:43:14 +03:00
|
|
|
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;
|
1994-05-22 14:04:26 +04:00
|
|
|
/*
|
1994-10-29 03:43:14 +03:00
|
|
|
* First we read into the malloc'ed buffer, then
|
|
|
|
* we massage it into user space, one record at a time.
|
|
|
|
*/
|
1995-10-09 14:23:57 +03:00
|
|
|
error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, cookiebuf,
|
|
|
|
ncookies);
|
1994-10-29 03:43:14 +03:00
|
|
|
if (error)
|
1994-10-24 20:37:34 +03:00
|
|
|
goto out;
|
1994-10-29 03:43:14 +03:00
|
|
|
|
|
|
|
inp = buf;
|
|
|
|
outp = SCARG(uap, buf);
|
|
|
|
resid = SCARG(uap, nbytes);
|
1997-10-26 14:13:46 +03:00
|
|
|
if ((len = buflen - auio.uio_resid) == 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
goto eof;
|
|
|
|
|
1995-10-09 14:23:57 +03:00
|
|
|
for (cookie = cookiebuf; len > 0; len -= reclen) {
|
1995-10-07 09:25:19 +03:00
|
|
|
bdp = (struct dirent *)inp;
|
|
|
|
reclen = bdp->d_reclen;
|
1994-10-29 03:43:14 +03:00
|
|
|
if (reclen & 3)
|
1997-10-10 05:42:21 +04:00
|
|
|
panic("svr4_getdents: bad reclen");
|
1995-10-09 14:23:57 +03:00
|
|
|
off = *cookie++; /* each entry points to the next */
|
1997-10-10 05:42:21 +04:00
|
|
|
if ((off >> 32) != 0) {
|
|
|
|
compat_offseterr(vp, "svr4_getdents");
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
1995-10-07 09:25:19 +03:00
|
|
|
if (bdp->d_fileno == 0) {
|
1994-10-29 03:43:14 +03:00
|
|
|
inp += reclen; /* it is a hole; squish it out */
|
|
|
|
continue;
|
|
|
|
}
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_reclen = SVR4_RECLEN(&idb, bdp->d_namlen);
|
|
|
|
if (reclen > len || resid < svr4_reclen) {
|
1994-10-29 03:43:14 +03:00
|
|
|
/* entry too big for buffer, so just stop */
|
|
|
|
outp++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Massage in place to make a SVR4-shaped dirent (otherwise
|
|
|
|
* we have to worry about touching user memory outside of
|
|
|
|
* the copyout() call).
|
|
|
|
*/
|
1995-10-07 09:25:19 +03:00
|
|
|
idb.d_ino = (svr4_ino_t)bdp->d_fileno;
|
|
|
|
idb.d_off = (svr4_off_t)off;
|
|
|
|
idb.d_reclen = (u_short)svr4_reclen;
|
|
|
|
strcpy(idb.d_name, bdp->d_name);
|
|
|
|
if ((error = copyout((caddr_t)&idb, outp, svr4_reclen)))
|
1994-10-29 03:43:14 +03:00
|
|
|
goto out;
|
|
|
|
/* advance past this real entry */
|
|
|
|
inp += reclen;
|
1995-10-07 09:25:19 +03:00
|
|
|
/* advance output past SVR4-shaped entry */
|
|
|
|
outp += svr4_reclen;
|
|
|
|
resid -= svr4_reclen;
|
1994-10-29 03:43:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if we squished out the whole block, try again */
|
|
|
|
if (outp == SCARG(uap, buf))
|
|
|
|
goto again;
|
|
|
|
fp->f_offset = off; /* update the vnode offset */
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
eof:
|
1994-10-29 03:43:14 +03:00
|
|
|
*retval = SCARG(uap, nbytes) - resid;
|
1994-10-24 20:37:34 +03:00
|
|
|
out:
|
1994-10-29 03:43:14 +03:00
|
|
|
VOP_UNLOCK(vp);
|
1995-10-09 14:23:57 +03:00
|
|
|
free(cookiebuf, M_TEMP);
|
1994-10-29 03:43:14 +03:00
|
|
|
free(buf, M_TEMP);
|
|
|
|
return error;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_mmap(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_mmap_args *uap = v;
|
|
|
|
struct sys_mmap_args mm;
|
1997-10-19 04:16:08 +04:00
|
|
|
void *rp;
|
1995-06-28 02:12:47 +04:00
|
|
|
#define _MAP_NEW 0x80000000
|
1994-10-29 03:43:14 +03:00
|
|
|
/*
|
|
|
|
* Verify the arguments.
|
|
|
|
*/
|
|
|
|
if (SCARG(uap, prot) & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
|
|
|
|
return EINVAL; /* XXX still needed? */
|
|
|
|
|
1996-10-07 20:16:14 +04:00
|
|
|
if (SCARG(uap, len) == 0)
|
|
|
|
return EINVAL;
|
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&mm, prot) = SCARG(uap, prot);
|
|
|
|
SCARG(&mm, len) = SCARG(uap, len);
|
1995-06-28 02:12:47 +04:00
|
|
|
SCARG(&mm, flags) = SCARG(uap, flags) & ~_MAP_NEW;
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&mm, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&mm, addr) = SCARG(uap, addr);
|
|
|
|
SCARG(&mm, pos) = SCARG(uap, pos);
|
|
|
|
|
1997-10-19 04:16:08 +04:00
|
|
|
rp = (void *) round_page(p->p_vmspace->vm_daddr + MAXDSIZ);
|
1994-10-29 03:43:14 +03:00
|
|
|
if ((SCARG(&mm, flags) & MAP_FIXED) == 0 &&
|
|
|
|
SCARG(&mm, addr) != 0 && SCARG(&mm, addr) < rp)
|
|
|
|
SCARG(&mm, addr) = rp;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_mmap(p, &mm, retval);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_mmap64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_mmap64_args *uap = v;
|
|
|
|
struct sys_mmap_args mm;
|
1997-10-19 04:16:08 +04:00
|
|
|
void *rp;
|
1997-07-22 03:02:34 +04:00
|
|
|
#define _MAP_NEW 0x80000000
|
|
|
|
/*
|
|
|
|
* Verify the arguments.
|
|
|
|
*/
|
|
|
|
if (SCARG(uap, prot) & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
|
|
|
|
return EINVAL; /* XXX still needed? */
|
|
|
|
|
|
|
|
if (SCARG(uap, len) == 0)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
SCARG(&mm, prot) = SCARG(uap, prot);
|
|
|
|
SCARG(&mm, len) = SCARG(uap, len);
|
|
|
|
SCARG(&mm, flags) = SCARG(uap, flags) & ~_MAP_NEW;
|
|
|
|
SCARG(&mm, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&mm, addr) = SCARG(uap, addr);
|
|
|
|
SCARG(&mm, pos) = SCARG(uap, pos);
|
|
|
|
|
1997-10-19 04:16:08 +04:00
|
|
|
rp = (void *) round_page(p->p_vmspace->vm_daddr + MAXDSIZ);
|
1997-07-22 03:02:34 +04:00
|
|
|
if ((SCARG(&mm, flags) & MAP_FIXED) == 0 &&
|
|
|
|
SCARG(&mm, addr) != 0 && SCARG(&mm, addr) < rp)
|
|
|
|
SCARG(&mm, addr) = rp;
|
|
|
|
|
|
|
|
return sys_mmap(p, &mm, retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_fchroot(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_fchroot_args *uap = v;
|
1994-10-29 03:43:14 +03:00
|
|
|
struct filedesc *fdp = p->p_fd;
|
|
|
|
struct vnode *vp;
|
|
|
|
struct file *fp;
|
|
|
|
int error;
|
|
|
|
|
1996-02-02 11:09:45 +03:00
|
|
|
if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
return error;
|
1996-02-02 11:09:45 +03:00
|
|
|
if ((error = getvnode(fdp, SCARG(uap, fd), &fp)) != 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
return error;
|
1996-02-02 11:09:45 +03:00
|
|
|
vp = (struct vnode *) fp->f_data;
|
1994-10-29 03:43:14 +03:00
|
|
|
VOP_LOCK(vp);
|
|
|
|
if (vp->v_type != VDIR)
|
|
|
|
error = ENOTDIR;
|
|
|
|
else
|
1997-05-08 20:19:43 +04:00
|
|
|
error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
|
1994-10-29 03:43:14 +03:00
|
|
|
VOP_UNLOCK(vp);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
VREF(vp);
|
|
|
|
if (fdp->fd_rdir != NULL)
|
|
|
|
vrele(fdp->fd_rdir);
|
|
|
|
fdp->fd_rdir = vp;
|
|
|
|
return 0;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1996-02-02 04:17:24 +03:00
|
|
|
static int
|
1996-02-10 20:12:31 +03:00
|
|
|
svr4_mknod(p, retval, path, mode, dev)
|
1996-02-02 04:17:24 +03:00
|
|
|
struct proc *p;
|
1995-10-07 09:25:19 +03:00
|
|
|
register_t *retval;
|
1996-02-02 04:17:24 +03:00
|
|
|
char *path;
|
|
|
|
svr4_mode_t mode;
|
1996-02-10 20:12:31 +03:00
|
|
|
svr4_dev_t dev;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1994-10-29 03:43:14 +03:00
|
|
|
|
1996-02-02 04:17:24 +03:00
|
|
|
SVR4_CHECK_ALT_EXIST(p, &sg, path);
|
|
|
|
|
|
|
|
if (S_ISFIFO(mode)) {
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_mkfifo_args ap;
|
1996-02-02 04:17:24 +03:00
|
|
|
SCARG(&ap, path) = path;
|
|
|
|
SCARG(&ap, mode) = mode;
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_mkfifo(p, &ap, retval);
|
1994-10-29 03:43:14 +03:00
|
|
|
} else {
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_mknod_args ap;
|
1996-02-02 04:17:24 +03:00
|
|
|
SCARG(&ap, path) = path;
|
|
|
|
SCARG(&ap, mode) = mode;
|
|
|
|
SCARG(&ap, dev) = dev;
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_mknod(p, &ap, retval);
|
1994-10-29 03:43:14 +03:00
|
|
|
}
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1996-02-02 04:17:24 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_mknod(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_mknod_args *uap = v;
|
|
|
|
return svr4_mknod(p, retval,
|
1996-02-10 20:12:31 +03:00
|
|
|
SCARG(uap, path), SCARG(uap, mode), SCARG(uap, dev));
|
1996-02-02 04:17:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_xmknod(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_xmknod_args *uap = v;
|
|
|
|
return svr4_mknod(p, retval,
|
1996-02-10 20:12:31 +03:00
|
|
|
SCARG(uap, path), SCARG(uap, mode), SCARG(uap, dev));
|
1996-02-02 04:17:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_vhangup(p, v, retval)
|
|
|
|
struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1994-10-29 03:43:14 +03:00
|
|
|
return 0;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_sysconfig(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_sysconfig_args *uap = v;
|
1994-10-29 03:43:14 +03:00
|
|
|
extern int maxfiles;
|
|
|
|
|
|
|
|
switch (SCARG(uap, name)) {
|
|
|
|
case SVR4_CONFIG_UNUSED:
|
|
|
|
*retval = 0;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_NGROUPS:
|
|
|
|
*retval = NGROUPS_MAX;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_CHILD_MAX:
|
|
|
|
*retval = maxproc;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_OPEN_FILES:
|
|
|
|
*retval = maxfiles;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_POSIX_VER:
|
|
|
|
*retval = 198808;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_PAGESIZE:
|
|
|
|
*retval = NBPG;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_CLK_TCK:
|
|
|
|
*retval = 60; /* should this be `hz', ie. 100? */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_XOPEN_VER:
|
|
|
|
*retval = 2; /* XXX: What should that be? */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_PROF_TCK:
|
|
|
|
*retval = 60; /* XXX: What should that be? */
|
|
|
|
break;
|
1995-07-02 10:16:06 +04:00
|
|
|
case SVR4_CONFIG_NPROC_CONF:
|
|
|
|
*retval = 1; /* Only one processor for now */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_NPROC_ONLN:
|
|
|
|
*retval = 1; /* And it better be online */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_AIO_LISTIO_MAX:
|
|
|
|
case SVR4_CONFIG_AIO_MAX:
|
|
|
|
case SVR4_CONFIG_AIO_PRIO_DELTA_MAX:
|
|
|
|
*retval = 0; /* No aio support */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DELAYTIMER_MAX:
|
|
|
|
*retval = 0; /* No delaytimer support */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_MQ_OPEN_MAX:
|
|
|
|
*retval = msginfo.msgmni;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_MQ_PRIO_MAX:
|
|
|
|
*retval = 0; /* XXX: Don't know */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_RTSIG_MAX:
|
|
|
|
*retval = 0;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_SEM_NSEMS_MAX:
|
|
|
|
*retval = seminfo.semmni;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_SEM_VALUE_MAX:
|
|
|
|
*retval = seminfo.semvmx;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_SIGQUEUE_MAX:
|
|
|
|
*retval = 0; /* XXX: Don't know */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_SIGRT_MIN:
|
|
|
|
case SVR4_CONFIG_SIGRT_MAX:
|
|
|
|
*retval = 0; /* No real time signals */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_TIMER_MAX:
|
|
|
|
*retval = 3; /* XXX: real, virtual, profiling */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_PHYS_PAGES:
|
|
|
|
*retval = cnt.v_free_count; /* XXX: free instead of total */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_AVPHYS_PAGES:
|
|
|
|
*retval = cnt.v_active_count; /* XXX: active instead of avg */
|
|
|
|
break;
|
1994-10-29 03:43:14 +03:00
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define SVR4_RLIMIT_NOFILE 5 /* Other RLIMIT_* are the same */
|
|
|
|
#define SVR4_RLIMIT_VMEM 6 /* Other RLIMIT_* are the same */
|
|
|
|
#define SVR4_RLIM_NLIMITS 7
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_getrlimit(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_getrlimit_args *uap = v;
|
|
|
|
struct compat_43_sys_getrlimit_args ap;
|
1994-10-29 03:43:14 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, which) >= SVR4_RLIM_NLIMITS)
|
|
|
|
return EINVAL;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_VMEM)
|
|
|
|
SCARG(uap, which) = RLIMIT_RSS;
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&ap, which) = SCARG(uap, which);
|
|
|
|
SCARG(&ap, rlp) = SCARG(uap, rlp);
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return compat_43_sys_getrlimit(p, &ap, retval);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_setrlimit(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_setrlimit_args *uap = v;
|
|
|
|
struct compat_43_sys_setrlimit_args ap;
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
if (SCARG(uap, which) >= SVR4_RLIM_NLIMITS)
|
|
|
|
return EINVAL;
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_VMEM)
|
|
|
|
SCARG(uap, which) = RLIMIT_RSS;
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&ap, which) = SCARG(uap, which);
|
|
|
|
SCARG(&ap, rlp) = SCARG(uap, rlp);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return compat_43_sys_setrlimit(p, uap, retval);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
int
|
|
|
|
svr4_sys_getrlimit64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_getrlimit64_args *uap = v;
|
|
|
|
|
|
|
|
if (SCARG(uap, which) >= SVR4_RLIM_NLIMITS)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_VMEM)
|
|
|
|
SCARG(uap, which) = RLIMIT_RSS;
|
|
|
|
|
|
|
|
return sys_getrlimit(p, uap, retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_setrlimit64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_setrlimit64_args *uap = v;
|
|
|
|
|
|
|
|
if (SCARG(uap, which) >= SVR4_RLIM_NLIMITS)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_NOFILE)
|
|
|
|
SCARG(uap, which) = RLIMIT_NOFILE;
|
|
|
|
if (SCARG(uap, which) == SVR4_RLIMIT_VMEM)
|
|
|
|
SCARG(uap, which) = RLIMIT_RSS;
|
|
|
|
|
|
|
|
return sys_setrlimit(p, uap, retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_break(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-10-24 20:37:34 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_break_args *uap = v;
|
1994-10-29 03:43:14 +03:00
|
|
|
register struct vmspace *vm = p->p_vmspace;
|
|
|
|
vm_offset_t new, old;
|
|
|
|
int rv;
|
|
|
|
register int diff;
|
|
|
|
|
|
|
|
old = (vm_offset_t) vm->vm_daddr;
|
|
|
|
new = round_page(SCARG(uap, nsize));
|
|
|
|
diff = new - old;
|
|
|
|
|
1996-03-31 01:37:52 +03:00
|
|
|
DPRINTF(("break(1): old %lx new %lx diff %x\n", old, new, diff));
|
1994-10-29 03:43:14 +03:00
|
|
|
|
1995-07-02 10:16:06 +04:00
|
|
|
if (diff > p->p_rlimit[RLIMIT_DATA].rlim_cur)
|
1994-10-29 03:43:14 +03:00
|
|
|
return ENOMEM;
|
|
|
|
|
|
|
|
old = round_page(old + ctob(vm->vm_dsize));
|
1995-01-09 00:31:34 +03:00
|
|
|
DPRINTF(("break(2): dsize = %x ctob %x\n",
|
|
|
|
vm->vm_dsize, ctob(vm->vm_dsize)));
|
1994-10-29 03:43:14 +03:00
|
|
|
|
1995-07-02 10:16:06 +04:00
|
|
|
diff = new - old;
|
1996-03-31 01:37:52 +03:00
|
|
|
DPRINTF(("break(3): old %lx new %lx diff %x\n", old, new, diff));
|
1994-10-29 03:43:14 +03:00
|
|
|
|
|
|
|
if (diff > 0) {
|
|
|
|
rv = vm_allocate(&vm->vm_map, &old, diff, FALSE);
|
|
|
|
if (rv != KERN_SUCCESS) {
|
|
|
|
uprintf("sbrk: grow failed, return = %d\n", rv);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
vm->vm_dsize += btoc(diff);
|
|
|
|
} else if (diff < 0) {
|
|
|
|
diff = -diff;
|
|
|
|
rv = vm_deallocate(&vm->vm_map, new, diff);
|
|
|
|
if (rv != KERN_SUCCESS) {
|
|
|
|
uprintf("sbrk: shrink failed, return = %d\n", rv);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
vm->vm_dsize -= btoc(diff);
|
1994-10-24 20:37:34 +03:00
|
|
|
}
|
1994-10-29 03:43:14 +03:00
|
|
|
return 0;
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
static __inline clock_t
|
|
|
|
timeval_to_clock_t(tv)
|
1994-10-29 03:43:14 +03:00
|
|
|
struct timeval *tv;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1994-10-29 03:43:14 +03:00
|
|
|
return tv->tv_sec * hz + tv->tv_usec / (1000000 / hz);
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-10-24 20:37:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_times(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-05-22 14:04:26 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_times_args *uap = v;
|
1994-10-29 03:43:14 +03:00
|
|
|
int error;
|
|
|
|
struct tms tms;
|
|
|
|
struct timeval t;
|
|
|
|
struct rusage *ru;
|
|
|
|
struct rusage r;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_getrusage_args ga;
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1994-10-29 03:43:14 +03:00
|
|
|
ru = stackgap_alloc(&sg, sizeof(struct rusage));
|
1994-05-22 14:04:26 +04:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&ga, who) = RUSAGE_SELF;
|
|
|
|
SCARG(&ga, rusage) = ru;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
error = sys_getrusage(p, &ga, retval);
|
1994-10-29 03:43:14 +03:00
|
|
|
if (error)
|
|
|
|
return error;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1995-10-14 23:24:14 +03:00
|
|
|
if ((error = copyin(ru, &r, sizeof r)) != 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
return error;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1995-01-09 00:31:34 +03:00
|
|
|
tms.tms_utime = timeval_to_clock_t(&r.ru_utime);
|
|
|
|
tms.tms_stime = timeval_to_clock_t(&r.ru_stime);
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
SCARG(&ga, who) = RUSAGE_CHILDREN;
|
1995-10-07 09:25:19 +03:00
|
|
|
error = sys_getrusage(p, &ga, retval);
|
1994-10-29 03:43:14 +03:00
|
|
|
if (error)
|
|
|
|
return error;
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1995-10-14 23:24:14 +03:00
|
|
|
if ((error = copyin(ru, &r, sizeof r)) != 0)
|
1994-10-29 03:43:14 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
tms.tms_cutime = timeval_to_clock_t(&r.ru_utime);
|
|
|
|
tms.tms_cstime = timeval_to_clock_t(&r.ru_stime);
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
microtime(&t);
|
1995-01-09 00:31:34 +03:00
|
|
|
*retval = timeval_to_clock_t(&t);
|
1994-10-24 20:37:34 +03:00
|
|
|
|
1994-10-29 03:43:14 +03:00
|
|
|
return copyout(&tms, SCARG(uap, tp), sizeof(tms));
|
1994-05-22 14:04:26 +04:00
|
|
|
}
|
1994-11-14 09:10:37 +03:00
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_ulimit(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-14 09:10:37 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_ulimit_args *uap = v;
|
1995-09-20 02:10:11 +04:00
|
|
|
|
1994-11-14 09:10:37 +03:00
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case SVR4_GFILLIM:
|
|
|
|
*retval = p->p_rlimit[RLIMIT_FSIZE].rlim_cur / 512;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SFILLIM:
|
|
|
|
{
|
|
|
|
int error;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_setrlimit_args srl;
|
1994-11-14 09:10:37 +03:00
|
|
|
struct rlimit krl;
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1994-11-14 09:10:37 +03:00
|
|
|
struct rlimit *url = (struct rlimit *)
|
|
|
|
stackgap_alloc(&sg, sizeof *url);
|
|
|
|
|
|
|
|
krl.rlim_cur = SCARG(uap, newlimit) * 512;
|
|
|
|
krl.rlim_max = p->p_rlimit[RLIMIT_FSIZE].rlim_max;
|
|
|
|
|
|
|
|
error = copyout(&krl, url, sizeof(*url));
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
1997-09-10 01:14:00 +04:00
|
|
|
SCARG(&srl, which) = RLIMIT_FSIZE;
|
|
|
|
SCARG(&srl, rlp) = url;
|
1994-11-14 09:10:37 +03:00
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
error = sys_setrlimit(p, &srl, retval);
|
1994-11-14 09:10:37 +03:00
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
*retval = p->p_rlimit[RLIMIT_FSIZE].rlim_cur;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_GMEMLIM:
|
|
|
|
{
|
|
|
|
struct vmspace *vm = p->p_vmspace;
|
|
|
|
*retval = (long) vm->vm_daddr +
|
|
|
|
p->p_rlimit[RLIMIT_DATA].rlim_cur;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_GDESLIM:
|
|
|
|
*retval = p->p_rlimit[RLIMIT_NOFILE].rlim_cur;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1995-01-10 03:04:03 +03:00
|
|
|
|
|
|
|
static struct proc *
|
|
|
|
svr4_pfind(pid)
|
|
|
|
pid_t pid;
|
|
|
|
{
|
|
|
|
struct proc *p;
|
|
|
|
|
|
|
|
/* look in the live processes */
|
|
|
|
if ((p = pfind(pid)) != NULL)
|
|
|
|
return p;
|
|
|
|
|
|
|
|
/* look in the zombies */
|
|
|
|
for (p = zombproc.lh_first; p != 0; p = p->p_list.le_next)
|
|
|
|
if (p->p_pid == pid)
|
|
|
|
return p;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-11-14 09:10:37 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_pgrpsys(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-14 09:10:37 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_pgrpsys_args *uap = v;
|
1994-11-14 09:10:37 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case 0: /* getpgrp() */
|
|
|
|
*retval = p->p_pgrp->pg_id;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 1: /* setpgrp() */
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_setpgid_args sa;
|
1994-11-14 09:10:37 +03:00
|
|
|
|
|
|
|
SCARG(&sa, pid) = 0;
|
|
|
|
SCARG(&sa, pgid) = 0;
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_setpgid(p, &sa, retval)) != 0)
|
1994-11-14 09:10:37 +03:00
|
|
|
return error;
|
|
|
|
*retval = p->p_pgrp->pg_id;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2: /* getsid(pid) */
|
|
|
|
if (SCARG(uap, pid) != 0 &&
|
1995-01-10 03:04:03 +03:00
|
|
|
(p = svr4_pfind(SCARG(uap, pid))) == NULL)
|
1994-11-14 09:10:37 +03:00
|
|
|
return ESRCH;
|
|
|
|
/*
|
1995-01-09 00:31:34 +03:00
|
|
|
* we return the pid of the session leader for this
|
|
|
|
* process
|
1994-11-14 09:10:37 +03:00
|
|
|
*/
|
1995-01-09 00:31:34 +03:00
|
|
|
*retval = (register_t) p->p_session->s_leader->p_pid;
|
1994-11-14 09:10:37 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 3: /* setsid() */
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_setsid(p, NULL, retval);
|
1994-11-14 09:10:37 +03:00
|
|
|
|
|
|
|
case 4: /* getpgid(pid) */
|
|
|
|
|
|
|
|
if (SCARG(uap, pid) != 0 &&
|
1995-01-10 03:04:03 +03:00
|
|
|
(p = svr4_pfind(SCARG(uap, pid))) == NULL)
|
1994-11-14 09:10:37 +03:00
|
|
|
return ESRCH;
|
1995-01-10 03:04:03 +03:00
|
|
|
|
1994-11-14 09:10:37 +03:00
|
|
|
*retval = (int) p->p_pgrp->pg_id;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 5: /* setpgid(pid, pgid); */
|
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_setpgid_args sa;
|
1994-11-14 09:10:37 +03:00
|
|
|
|
|
|
|
SCARG(&sa, pid) = SCARG(uap, pid);
|
|
|
|
SCARG(&sa, pgid) = SCARG(uap, pgid);
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_setpgid(p, &sa, retval);
|
1994-11-14 09:10:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
#define syscallarg(x) union { x datum; register_t pad; }
|
|
|
|
|
|
|
|
struct svr4_hrtcntl_args {
|
|
|
|
syscallarg(int) cmd;
|
|
|
|
syscallarg(int) fun;
|
|
|
|
syscallarg(int) clk;
|
|
|
|
syscallarg(svr4_hrt_interval_t *) iv;
|
|
|
|
syscallarg(svr4_hrt_time_t *) ti;
|
|
|
|
};
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
static int
|
|
|
|
svr4_hrtcntl(p, uap, retval)
|
1995-10-07 09:25:19 +03:00
|
|
|
register struct proc *p;
|
|
|
|
register struct svr4_hrtcntl_args *uap;
|
|
|
|
register_t *retval;
|
1994-11-18 05:53:37 +03:00
|
|
|
{
|
|
|
|
switch (SCARG(uap, fun)) {
|
|
|
|
case SVR4_HRT_CNTL_RES:
|
|
|
|
DPRINTF(("htrcntl(RES)\n"));
|
|
|
|
*retval = SVR4_HRT_USEC;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_HRT_CNTL_TOFD:
|
|
|
|
DPRINTF(("htrcntl(TOFD)\n"));
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
svr4_hrt_time_t t;
|
|
|
|
if (SCARG(uap, clk) != SVR4_HRT_CLK_STD) {
|
|
|
|
DPRINTF(("clk == %d\n", SCARG(uap, clk)));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
if (SCARG(uap, ti) == NULL) {
|
|
|
|
DPRINTF(("ti NULL\n"));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
microtime(&tv);
|
|
|
|
t.h_sec = tv.tv_sec;
|
|
|
|
t.h_rem = tv.tv_usec;
|
|
|
|
t.h_res = SVR4_HRT_USEC;
|
|
|
|
return copyout(&t, SCARG(uap, ti), sizeof(t));
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_HRT_CNTL_START:
|
|
|
|
DPRINTF(("htrcntl(START)\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_HRT_CNTL_GET:
|
|
|
|
DPRINTF(("htrcntl(GET)\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
default:
|
|
|
|
DPRINTF(("Bad htrcntl command %d\n", SCARG(uap, fun)));
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_hrtsys(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-18 05:53:37 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_hrtsys_args *uap = v;
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case SVR4_HRT_CNTL:
|
|
|
|
return svr4_hrtcntl(p, (struct svr4_hrtcntl_args *) uap,
|
|
|
|
retval);
|
|
|
|
|
|
|
|
case SVR4_HRT_ALRM:
|
|
|
|
DPRINTF(("hrtalarm\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_HRT_SLP:
|
|
|
|
DPRINTF(("hrtsleep\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_HRT_CAN:
|
|
|
|
DPRINTF(("hrtcancel\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(("Bad hrtsys command %d\n", SCARG(uap, cmd)));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
static int
|
1995-01-25 07:17:06 +03:00
|
|
|
svr4_setinfo(p, st, s)
|
|
|
|
struct proc *p;
|
1994-11-18 05:53:37 +03:00
|
|
|
int st;
|
1995-01-25 07:17:06 +03:00
|
|
|
svr4_siginfo_t *s;
|
1994-11-18 05:53:37 +03:00
|
|
|
{
|
1995-01-25 07:17:06 +03:00
|
|
|
svr4_siginfo_t i;
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
bzero(&i, sizeof(i));
|
|
|
|
|
1995-01-25 07:17:06 +03:00
|
|
|
i.si_signo = SVR4_SIGCHLD;
|
|
|
|
i.si_errno = 0; /* XXX? */
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
i.si_pid = p->p_pid;
|
1996-06-05 23:26:13 +04:00
|
|
|
if (p->p_stat == SZOMB) {
|
|
|
|
i.si_stime = p->p_ru->ru_stime.tv_sec;
|
|
|
|
i.si_utime = p->p_ru->ru_utime.tv_sec;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
i.si_stime = p->p_stats->p_ru.ru_stime.tv_sec;
|
|
|
|
i.si_utime = p->p_stats->p_ru.ru_utime.tv_sec;
|
|
|
|
}
|
1995-01-25 07:17:06 +03:00
|
|
|
}
|
|
|
|
|
1995-01-09 04:04:18 +03:00
|
|
|
if (WIFEXITED(st)) {
|
1995-01-25 07:17:06 +03:00
|
|
|
i.si_status = WEXITSTATUS(st);
|
|
|
|
i.si_code = SVR4_CLD_EXITED;
|
1995-01-09 04:04:18 +03:00
|
|
|
}
|
|
|
|
else if (WIFSTOPPED(st)) {
|
1995-08-14 06:07:57 +04:00
|
|
|
i.si_status = bsd_to_svr4_sig[WSTOPSIG(st)];
|
1994-11-18 05:53:37 +03:00
|
|
|
|
1995-01-25 07:17:06 +03:00
|
|
|
if (i.si_status == SVR4_SIGCONT)
|
|
|
|
i.si_code = SVR4_CLD_CONTINUED;
|
|
|
|
else
|
|
|
|
i.si_code = SVR4_CLD_STOPPED;
|
|
|
|
} else {
|
1995-08-14 06:07:57 +04:00
|
|
|
i.si_status = bsd_to_svr4_sig[WTERMSIG(st)];
|
1994-11-18 05:53:37 +03:00
|
|
|
|
1995-01-25 07:17:06 +03:00
|
|
|
if (WCOREDUMP(st))
|
|
|
|
i.si_code = SVR4_CLD_DUMPED;
|
|
|
|
else
|
|
|
|
i.si_code = SVR4_CLD_KILLED;
|
|
|
|
}
|
1995-01-09 00:31:34 +03:00
|
|
|
|
1996-03-31 01:37:52 +03:00
|
|
|
DPRINTF(("siginfo [pid %ld signo %d code %d errno %d status %d]\n",
|
1995-01-25 07:17:06 +03:00
|
|
|
i.si_pid, i.si_signo, i.si_code, i.si_errno, i.si_status));
|
1995-01-10 03:04:03 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
return copyout(&i, s, sizeof(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_waitsys(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1994-11-18 05:53:37 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_waitsys_args *uap = v;
|
1994-11-18 05:53:37 +03:00
|
|
|
int nfound;
|
|
|
|
int error;
|
|
|
|
struct proc *q, *t;
|
|
|
|
|
1995-01-09 00:31:34 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
switch (SCARG(uap, grp)) {
|
|
|
|
case SVR4_P_PID:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_P_PGID:
|
|
|
|
SCARG(uap, id) = -p->p_pgid;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_P_ALL:
|
|
|
|
SCARG(uap, id) = WAIT_ANY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
1996-02-10 03:48:08 +03:00
|
|
|
DPRINTF(("waitsys(%d, %d, %p, %x)\n",
|
1995-10-14 23:24:14 +03:00
|
|
|
SCARG(uap, grp), SCARG(uap, id),
|
1996-02-10 03:48:08 +03:00
|
|
|
SCARG(uap, info), SCARG(uap, options)));
|
1995-01-09 00:31:34 +03:00
|
|
|
|
1994-11-18 05:53:37 +03:00
|
|
|
loop:
|
|
|
|
nfound = 0;
|
|
|
|
for (q = p->p_children.lh_first; q != 0; q = q->p_sibling.le_next) {
|
|
|
|
if (SCARG(uap, id) != WAIT_ANY &&
|
|
|
|
q->p_pid != SCARG(uap, id) &&
|
1995-01-09 00:31:34 +03:00
|
|
|
q->p_pgid != -SCARG(uap, id)) {
|
|
|
|
DPRINTF(("pid %d pgid %d != %d\n", q->p_pid,
|
|
|
|
q->p_pgid, SCARG(uap, id)));
|
1994-11-18 05:53:37 +03:00
|
|
|
continue;
|
1995-01-09 00:31:34 +03:00
|
|
|
}
|
1994-11-18 05:53:37 +03:00
|
|
|
nfound++;
|
|
|
|
if (q->p_stat == SZOMB &&
|
|
|
|
((SCARG(uap, options) & (SVR4_WEXITED|SVR4_WTRAPPED)))) {
|
1995-01-09 00:31:34 +03:00
|
|
|
*retval = 0;
|
|
|
|
DPRINTF(("found %d\n", q->p_pid));
|
1995-01-25 07:17:06 +03:00
|
|
|
if ((error = svr4_setinfo(q, q->p_xstat,
|
1994-11-18 05:53:37 +03:00
|
|
|
SCARG(uap, info))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
|
1995-01-09 04:04:18 +03:00
|
|
|
if ((SCARG(uap, options) & SVR4_WNOWAIT)) {
|
|
|
|
DPRINTF(("Don't wait\n"));
|
1994-11-18 05:53:37 +03:00
|
|
|
return 0;
|
1995-01-09 04:04:18 +03:00
|
|
|
}
|
1994-11-18 05:53:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we got the child via a ptrace 'attach',
|
|
|
|
* we need to give it back to the old parent.
|
|
|
|
*/
|
|
|
|
if (q->p_oppid && (t = pfind(q->p_oppid))) {
|
|
|
|
q->p_oppid = 0;
|
1995-01-09 00:31:34 +03:00
|
|
|
proc_reparent(q, t);
|
1994-11-18 05:53:37 +03:00
|
|
|
psignal(t, SIGCHLD);
|
|
|
|
wakeup((caddr_t)t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
q->p_xstat = 0;
|
1995-01-09 00:31:34 +03:00
|
|
|
ruadd(&p->p_stats->p_cru, q->p_ru);
|
1994-11-18 05:53:37 +03:00
|
|
|
FREE(q->p_ru, M_ZOMBIE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decrement the count of procs running with this uid.
|
|
|
|
*/
|
|
|
|
(void)chgproccnt(q->p_cred->p_ruid, -1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free up credentials.
|
|
|
|
*/
|
|
|
|
if (--q->p_cred->p_refcnt == 0) {
|
|
|
|
crfree(q->p_cred->pc_ucred);
|
|
|
|
FREE(q->p_cred, M_SUBPROC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Release reference to text vnode
|
|
|
|
*/
|
|
|
|
if (q->p_textvp)
|
|
|
|
vrele(q->p_textvp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finally finished with old proc entry.
|
|
|
|
* Unlink it from its process group and free it.
|
|
|
|
*/
|
|
|
|
leavepgrp(q);
|
|
|
|
LIST_REMOVE(q, p_list); /* off zombproc */
|
|
|
|
LIST_REMOVE(q, p_sibling);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Give machine-dependent layer a chance
|
|
|
|
* to free anything that cpu_exit couldn't
|
|
|
|
* release while still running in process context.
|
|
|
|
*/
|
1995-01-09 00:31:34 +03:00
|
|
|
cpu_wait(q);
|
|
|
|
FREE(q, M_PROC);
|
1994-11-18 05:53:37 +03:00
|
|
|
nprocs--;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (q->p_stat == SSTOP && (q->p_flag & P_WAITED) == 0 &&
|
|
|
|
(q->p_flag & P_TRACED ||
|
|
|
|
(SCARG(uap, options) & (SVR4_WSTOPPED|SVR4_WCONTINUED)))) {
|
1995-01-09 00:31:34 +03:00
|
|
|
DPRINTF(("jobcontrol %d\n", q->p_pid));
|
1994-11-18 05:53:37 +03:00
|
|
|
if (((SCARG(uap, options) & SVR4_WNOWAIT)) == 0)
|
|
|
|
q->p_flag |= P_WAITED;
|
1995-01-09 00:31:34 +03:00
|
|
|
*retval = 0;
|
1995-01-25 07:17:06 +03:00
|
|
|
return svr4_setinfo(q, W_STOPCODE(q->p_xstat),
|
1994-11-18 05:53:37 +03:00
|
|
|
SCARG(uap, info));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nfound == 0)
|
|
|
|
return ECHILD;
|
|
|
|
|
|
|
|
if (SCARG(uap, options) & SVR4_WNOHANG) {
|
|
|
|
*retval = 0;
|
1995-01-25 07:17:06 +03:00
|
|
|
if ((error = svr4_setinfo(NULL, 0, SCARG(uap, info))) != 0)
|
1995-01-09 04:04:18 +03:00
|
|
|
return error;
|
1995-01-10 03:04:03 +03:00
|
|
|
return 0;
|
1994-11-18 05:53:37 +03:00
|
|
|
}
|
|
|
|
|
1995-10-14 23:24:14 +03:00
|
|
|
if ((error = tsleep((caddr_t)p, PWAIT | PCATCH, "svr4_wait", 0)) != 0)
|
1994-11-18 05:53:37 +03:00
|
|
|
return error;
|
|
|
|
goto loop;
|
|
|
|
}
|
1995-01-09 00:31:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
bsd_statfs_to_svr4_statvfs(bfs, sfs)
|
|
|
|
const struct statfs *bfs;
|
|
|
|
struct svr4_statvfs *sfs;
|
|
|
|
{
|
1996-09-25 08:37:13 +04:00
|
|
|
sfs->f_bsize = bfs->f_iosize; /* XXX */
|
|
|
|
sfs->f_frsize = bfs->f_bsize;
|
1995-01-09 00:31:34 +03:00
|
|
|
sfs->f_blocks = bfs->f_blocks;
|
|
|
|
sfs->f_bfree = bfs->f_bfree;
|
|
|
|
sfs->f_bavail = bfs->f_bavail;
|
|
|
|
sfs->f_files = bfs->f_files;
|
|
|
|
sfs->f_ffree = bfs->f_ffree;
|
|
|
|
sfs->f_favail = bfs->f_ffree;
|
|
|
|
sfs->f_fsid = bfs->f_fsid.val[0];
|
|
|
|
bcopy(bfs->f_fstypename, sfs->f_basetype, sizeof(sfs->f_basetype));
|
|
|
|
sfs->f_flag = 0;
|
|
|
|
if (bfs->f_flags & MNT_RDONLY)
|
|
|
|
sfs->f_flag |= SVR4_ST_RDONLY;
|
|
|
|
if (bfs->f_flags & MNT_NOSUID)
|
|
|
|
sfs->f_flag |= SVR4_ST_NOSUID;
|
|
|
|
sfs->f_namemax = MAXNAMLEN;
|
|
|
|
bcopy(bfs->f_fstypename, sfs->f_fstr, sizeof(sfs->f_fstr)); /* XXX */
|
|
|
|
bzero(sfs->f_filler, sizeof(sfs->f_filler));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
static void
|
|
|
|
bsd_statfs_to_svr4_statvfs64(bfs, sfs)
|
|
|
|
const struct statfs *bfs;
|
|
|
|
struct svr4_statvfs64 *sfs;
|
|
|
|
{
|
|
|
|
sfs->f_bsize = bfs->f_iosize; /* XXX */
|
|
|
|
sfs->f_frsize = bfs->f_bsize;
|
|
|
|
sfs->f_blocks = bfs->f_blocks;
|
|
|
|
sfs->f_bfree = bfs->f_bfree;
|
|
|
|
sfs->f_bavail = bfs->f_bavail;
|
|
|
|
sfs->f_files = bfs->f_files;
|
|
|
|
sfs->f_ffree = bfs->f_ffree;
|
|
|
|
sfs->f_favail = bfs->f_ffree;
|
|
|
|
sfs->f_fsid = bfs->f_fsid.val[0];
|
|
|
|
bcopy(bfs->f_fstypename, sfs->f_basetype, sizeof(sfs->f_basetype));
|
|
|
|
sfs->f_flag = 0;
|
|
|
|
if (bfs->f_flags & MNT_RDONLY)
|
|
|
|
sfs->f_flag |= SVR4_ST_RDONLY;
|
|
|
|
if (bfs->f_flags & MNT_NOSUID)
|
|
|
|
sfs->f_flag |= SVR4_ST_NOSUID;
|
|
|
|
sfs->f_namemax = MAXNAMLEN;
|
|
|
|
bcopy(bfs->f_fstypename, sfs->f_fstr, sizeof(sfs->f_fstr)); /* XXX */
|
|
|
|
bzero(sfs->f_filler, sizeof(sfs->f_filler));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-01-09 00:31:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_statvfs(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1995-01-09 00:31:34 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_statvfs_args *uap = v;
|
|
|
|
struct sys_statfs_args fs_args;
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1995-01-09 00:31:34 +03:00
|
|
|
struct statfs *fs = stackgap_alloc(&sg, sizeof(struct statfs));
|
|
|
|
struct statfs bfs;
|
|
|
|
struct svr4_statvfs sfs;
|
|
|
|
int error;
|
|
|
|
|
1995-06-25 00:29:17 +04:00
|
|
|
SVR4_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
1995-01-09 00:31:34 +03:00
|
|
|
SCARG(&fs_args, path) = SCARG(uap, path);
|
|
|
|
SCARG(&fs_args, buf) = fs;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_statfs(p, &fs_args, retval)) != 0)
|
1995-01-09 00:31:34 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(fs, &bfs, sizeof(bfs))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
|
|
|
|
|
|
|
|
return copyout(&sfs, SCARG(uap, fs), sizeof(sfs));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_fstatvfs(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1995-01-09 00:31:34 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_fstatvfs_args *uap = v;
|
|
|
|
struct sys_fstatfs_args fs_args;
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1995-01-09 00:31:34 +03:00
|
|
|
struct statfs *fs = stackgap_alloc(&sg, sizeof(struct statfs));
|
|
|
|
struct statfs bfs;
|
|
|
|
struct svr4_statvfs sfs;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SCARG(&fs_args, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&fs_args, buf) = fs;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_fstatfs(p, &fs_args, retval)) != 0)
|
1995-01-09 00:31:34 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(fs, &bfs, sizeof(bfs))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
|
|
|
|
|
|
|
|
return copyout(&sfs, SCARG(uap, fs), sizeof(sfs));
|
|
|
|
}
|
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_statvfs64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_statvfs64_args *uap = v;
|
|
|
|
struct sys_statfs_args fs_args;
|
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
|
|
|
struct statfs *fs = stackgap_alloc(&sg, sizeof(struct statfs));
|
|
|
|
struct statfs bfs;
|
|
|
|
struct svr4_statvfs64 sfs;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SVR4_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
|
|
|
SCARG(&fs_args, path) = SCARG(uap, path);
|
|
|
|
SCARG(&fs_args, buf) = fs;
|
|
|
|
|
|
|
|
if ((error = sys_statfs(p, &fs_args, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(fs, &bfs, sizeof(bfs))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
|
|
|
|
|
|
|
|
return copyout(&sfs, SCARG(uap, fs), sizeof(sfs));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_fstatvfs64(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_fstatvfs64_args *uap = v;
|
|
|
|
struct sys_fstatfs_args fs_args;
|
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
|
|
|
struct statfs *fs = stackgap_alloc(&sg, sizeof(struct statfs));
|
|
|
|
struct statfs bfs;
|
|
|
|
struct svr4_statvfs64 sfs;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SCARG(&fs_args, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&fs_args, buf) = fs;
|
|
|
|
|
|
|
|
if ((error = sys_fstatfs(p, &fs_args, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(fs, &bfs, sizeof(bfs))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
|
|
|
|
|
|
|
|
return copyout(&sfs, SCARG(uap, fs), sizeof(sfs));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-01-09 00:31:34 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_alarm(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1995-01-09 00:31:34 +03:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_alarm_args *uap = v;
|
1995-01-09 00:31:34 +03:00
|
|
|
int error;
|
|
|
|
struct itimerval *ntp, *otp, tp;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_setitimer_args sa;
|
1995-06-25 00:29:17 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
1995-01-09 00:31:34 +03:00
|
|
|
|
|
|
|
ntp = stackgap_alloc(&sg, sizeof(struct itimerval));
|
|
|
|
otp = stackgap_alloc(&sg, sizeof(struct itimerval));
|
|
|
|
|
|
|
|
timerclear(&tp.it_interval);
|
|
|
|
tp.it_value.tv_sec = SCARG(uap, sec);
|
|
|
|
tp.it_value.tv_usec = 0;
|
|
|
|
|
|
|
|
if ((error = copyout(&tp, ntp, sizeof(tp))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
SCARG(&sa, which) = ITIMER_REAL;
|
|
|
|
SCARG(&sa, itv) = ntp;
|
|
|
|
SCARG(&sa, oitv) = otp;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
if ((error = sys_setitimer(p, &sa, retval)) != 0)
|
1995-01-09 00:31:34 +03:00
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(otp, &tp, sizeof(tp))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if (tp.it_value.tv_usec)
|
|
|
|
tp.it_value.tv_sec++;
|
|
|
|
|
|
|
|
*retval = (register_t) tp.it_value.tv_sec;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
1995-03-31 07:06:17 +04:00
|
|
|
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
svr4_sys_gettimeofday(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
1995-03-31 07:06:17 +04:00
|
|
|
{
|
1995-10-07 09:25:19 +03:00
|
|
|
struct svr4_sys_gettimeofday_args *uap = v;
|
1995-09-20 02:10:11 +04:00
|
|
|
|
1995-03-31 07:06:17 +04:00
|
|
|
if (SCARG(uap, tp)) {
|
|
|
|
struct timeval atv;
|
|
|
|
|
|
|
|
microtime(&atv);
|
|
|
|
return copyout(&atv, SCARG(uap, tp), sizeof (atv));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
1996-12-06 06:22:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_facl(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_facl_args *uap = v;
|
|
|
|
|
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case SVR4_SYS_SETACL:
|
|
|
|
/* We don't support acls on any filesystem */
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_SYS_GETACL:
|
|
|
|
return copyout(retval, &SCARG(uap, num),
|
|
|
|
sizeof(SCARG(uap, num)));
|
|
|
|
|
|
|
|
case SVR4_SYS_GETACLCNT:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_acl(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
return svr4_sys_facl(p, v, retval); /* XXX: for now the same */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
svr4_sys_memcntl(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_memcntl_args *uap = v;
|
|
|
|
struct sys_mprotect_args ap;
|
|
|
|
|
|
|
|
SCARG(&ap, addr) = SCARG(uap, addr);
|
|
|
|
SCARG(&ap, len) = SCARG(uap, len);
|
|
|
|
SCARG(&ap, prot) = SCARG(uap, attr);
|
|
|
|
|
|
|
|
/* XXX: no locking, invalidating, or syncing supported */
|
|
|
|
return sys_mprotect(p, &ap, retval);
|
|
|
|
}
|
1997-03-15 03:01:18 +03:00
|
|
|
|
1997-07-22 03:02:34 +04:00
|
|
|
|
1997-03-15 03:01:18 +03:00
|
|
|
int
|
|
|
|
svr4_sys_nice(p, v, retval)
|
|
|
|
register struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct svr4_sys_nice_args *uap = v;
|
|
|
|
struct sys_setpriority_args ap;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SCARG(&ap, which) = PRIO_PROCESS;
|
|
|
|
SCARG(&ap, who) = 0;
|
|
|
|
SCARG(&ap, prio) = SCARG(uap, prio);
|
|
|
|
|
|
|
|
if ((error = sys_setpriority(p, &ap, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = sys_getpriority(p, &ap, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|