1999-04-24 11:09:49 +04:00
|
|
|
/* $NetBSD: osf1_misc.c,v 1.18 1999/04/24 07:09:49 cgd Exp $ */
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/proc.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/file.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <sys/stat.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/filedesc.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <sys/kernel.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mman.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <sys/mount.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/signal.h>
|
1995-06-28 08:41:30 +04:00
|
|
|
#include <sys/signalvar.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <sys/reboot.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <sys/syscallargs.h>
|
1998-05-20 20:34:29 +04:00
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/socketvar.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
|
1999-04-23 10:15:35 +04:00
|
|
|
#include <compat/osf1/osf1_errno.h>
|
1995-06-28 08:41:30 +04:00
|
|
|
#include <compat/osf1/osf1_syscall.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
#include <compat/osf1/osf1_syscallargs.h>
|
1995-10-07 09:25:19 +03:00
|
|
|
#include <compat/osf1/osf1_util.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1995-02-14 00:39:00 +03:00
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
void cvtstat2osf1 __P((struct stat *, struct osf1_stat *));
|
|
|
|
|
|
|
|
|
1995-02-14 00:39:00 +03:00
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
extern int scdebug;
|
|
|
|
#endif
|
|
|
|
|
1995-04-22 23:48:19 +04:00
|
|
|
extern struct sysent osf1_sysent[];
|
|
|
|
extern char *osf1_syscallnames[];
|
|
|
|
extern void cpu_exec_ecoff_setregs __P((struct proc *, struct exec_package *,
|
1997-09-12 03:01:44 +04:00
|
|
|
u_long));
|
1995-04-22 23:48:19 +04:00
|
|
|
|
1995-06-28 08:41:30 +04:00
|
|
|
extern char sigcode[], esigcode[];
|
1998-05-20 20:34:29 +04:00
|
|
|
const char osf1_emul_path[] = "/emul/osf1";
|
1995-06-28 08:41:30 +04:00
|
|
|
|
1995-04-22 23:48:19 +04:00
|
|
|
struct emul emul_osf1 = {
|
|
|
|
"osf1",
|
1999-04-23 10:15:35 +04:00
|
|
|
netbsd_to_osf1_errno,
|
1995-04-22 23:48:19 +04:00
|
|
|
sendsig,
|
|
|
|
OSF1_SYS_syscall,
|
|
|
|
OSF1_SYS_MAXSYSCALL,
|
|
|
|
osf1_sysent,
|
|
|
|
osf1_syscallnames,
|
|
|
|
0,
|
|
|
|
copyargs,
|
|
|
|
cpu_exec_ecoff_setregs,
|
|
|
|
sigcode,
|
|
|
|
esigcode,
|
|
|
|
};
|
|
|
|
|
1995-02-14 00:39:00 +03:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_open(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_open_args *uap = v;
|
|
|
|
struct sys_open_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
#ifdef SYSCALL_DEBUG
|
|
|
|
char pnbuf[1024];
|
|
|
|
|
|
|
|
if (scdebug &&
|
|
|
|
copyinstr(SCARG(uap, path), pnbuf, sizeof pnbuf, NULL) == 0)
|
1996-10-13 04:46:49 +04:00
|
|
|
printf("osf1_open: open: %s\n", pnbuf);
|
1995-02-14 00:39:00 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
SCARG(&a, path) = SCARG(uap, path);
|
|
|
|
SCARG(&a, flags) = SCARG(uap, flags); /* XXX translate */
|
|
|
|
SCARG(&a, mode) = SCARG(uap, mode);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_open(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_setsysinfo(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1998-05-20 20:34:29 +04:00
|
|
|
#if 0
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_setsysinfo_args *uap = v;
|
1998-05-20 20:34:29 +04:00
|
|
|
#endif
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define OSF1_RLIMIT_LASTCOMMON 5 /* last one that's common */
|
|
|
|
#define OSF1_RLIMIT_NOFILE 6 /* OSF1's RLIMIT_NOFILE */
|
|
|
|
#define OSF1_RLIMIT_NLIMITS 8 /* Number of OSF1 rlimits */
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_getrlimit(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_getrlimit_args *uap = v;
|
|
|
|
struct sys_getrlimit_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, which) >= OSF1_RLIMIT_NLIMITS)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (SCARG(uap, which) <= OSF1_RLIMIT_LASTCOMMON)
|
|
|
|
SCARG(&a, which) = SCARG(uap, which);
|
|
|
|
else if (SCARG(uap, which) == OSF1_RLIMIT_NOFILE)
|
|
|
|
SCARG(&a, which) = RLIMIT_NOFILE;
|
|
|
|
else
|
|
|
|
return (0);
|
|
|
|
SCARG(&a, rlp) = SCARG(uap, rlp);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_getrlimit(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_setrlimit(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_setrlimit_args *uap = v;
|
|
|
|
struct sys_setrlimit_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, which) >= OSF1_RLIMIT_NLIMITS)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (SCARG(uap, which) <= OSF1_RLIMIT_LASTCOMMON)
|
|
|
|
SCARG(&a, which) = SCARG(uap, which);
|
|
|
|
else if (SCARG(uap, which) == OSF1_RLIMIT_NOFILE)
|
|
|
|
SCARG(&a, which) = RLIMIT_NOFILE;
|
|
|
|
else
|
|
|
|
return (0);
|
|
|
|
SCARG(&a, rlp) = SCARG(uap, rlp);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_setrlimit(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define OSF1_MAP_SHARED 0x001
|
|
|
|
#define OSF1_MAP_PRIVATE 0x002
|
|
|
|
#define OSF1_MAP_ANONYMOUS 0x010
|
|
|
|
#define OSF1_MAP_FILE 0x000
|
|
|
|
#define OSF1_MAP_TYPE 0x0f0
|
|
|
|
#define OSF1_MAP_FIXED 0x100
|
|
|
|
#define OSF1_MAP_HASSEMAPHORE 0x200
|
|
|
|
#define OSF1_MAP_INHERIT 0x400
|
|
|
|
#define OSF1_MAP_UNALIGNED 0x800
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_mmap(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_mmap_args *uap = v;
|
|
|
|
struct sys_mmap_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
SCARG(&a, addr) = SCARG(uap, addr);
|
|
|
|
SCARG(&a, len) = SCARG(uap, len);
|
|
|
|
SCARG(&a, prot) = SCARG(uap, prot);
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&a, pad) = 0;
|
|
|
|
SCARG(&a, pos) = SCARG(uap, pos);
|
|
|
|
|
|
|
|
SCARG(&a, flags) = 0;
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_SHARED)
|
|
|
|
SCARG(&a, flags) |= MAP_SHARED;
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_PRIVATE)
|
|
|
|
SCARG(&a, flags) |= MAP_PRIVATE;
|
|
|
|
switch (SCARG(uap, flags) & OSF1_MAP_TYPE) {
|
|
|
|
case OSF1_MAP_ANONYMOUS:
|
|
|
|
SCARG(&a, flags) |= MAP_ANON;
|
|
|
|
break;
|
|
|
|
case OSF1_MAP_FILE:
|
|
|
|
SCARG(&a, flags) |= MAP_FILE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_FIXED)
|
|
|
|
SCARG(&a, flags) |= MAP_FIXED;
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_HASSEMAPHORE)
|
|
|
|
SCARG(&a, flags) |= MAP_HASSEMAPHORE;
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_INHERIT)
|
|
|
|
SCARG(&a, flags) |= MAP_INHERIT;
|
|
|
|
if (SCARG(uap, flags) & OSF1_MAP_UNALIGNED)
|
|
|
|
return (EINVAL);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_mmap(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_usleep_thread(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_usleep_thread_args *uap = v;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct timeval tv, endtv;
|
|
|
|
u_long ticks;
|
|
|
|
int error, s;
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = copyin(SCARG(uap, sleep), &tv, sizeof tv)))
|
1995-02-14 00:39:00 +03:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
ticks = ((u_long)tv.tv_sec * 1000000 + tv.tv_usec) / tick;
|
|
|
|
s = splclock();
|
|
|
|
tv = time;
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
tsleep(p, PUSER|PCATCH, "OSF/1", ticks); /* XXX */
|
|
|
|
|
|
|
|
if (SCARG(uap, slept) != NULL) {
|
|
|
|
s = splclock();
|
1995-03-21 16:33:34 +03:00
|
|
|
timersub(&time, &tv, &endtv);
|
1995-02-14 00:39:00 +03:00
|
|
|
splx(s);
|
|
|
|
if (tv.tv_sec < 0 || tv.tv_usec < 0)
|
|
|
|
tv.tv_sec = tv.tv_usec = 0;
|
|
|
|
|
|
|
|
error = copyout(&endtv, SCARG(uap, slept), sizeof endtv);
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct osf1_stat {
|
|
|
|
int32_t st_dev;
|
|
|
|
u_int32_t st_ino;
|
|
|
|
u_int32_t st_mode;
|
|
|
|
u_int16_t st_nlink;
|
|
|
|
u_int32_t st_uid;
|
|
|
|
u_int32_t st_gid;
|
|
|
|
int32_t st_rdev;
|
|
|
|
u_int64_t st_size;
|
|
|
|
int32_t st_atime_sec;
|
|
|
|
int32_t st_spare1;
|
|
|
|
int32_t st_mtime_sec;
|
|
|
|
int32_t st_spare2;
|
|
|
|
int32_t st_ctime_sec;
|
|
|
|
int32_t st_spare3;
|
|
|
|
u_int32_t st_blksize;
|
|
|
|
int32_t st_blocks;
|
|
|
|
u_int32_t st_flags;
|
|
|
|
u_int32_t st_gen;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get file status; this version follows links.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1998-05-20 20:34:29 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_stat(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:09:49 +04:00
|
|
|
struct osf1_sys_stat_args *uap = v;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct stat sb;
|
|
|
|
struct osf1_stat osb;
|
|
|
|
int error;
|
|
|
|
struct nameidata nd;
|
|
|
|
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
|
|
|
|
SCARG(uap, path), p);
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = namei(&nd)))
|
1995-02-14 00:39:00 +03:00
|
|
|
return (error);
|
|
|
|
error = vn_stat(nd.ni_vp, &sb, p);
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
cvtstat2osf1(&sb, &osb);
|
|
|
|
error = copyout((caddr_t)&osb, (caddr_t)SCARG(uap, ub), sizeof (osb));
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get file status; this version does not follow links.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1998-05-20 20:34:29 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_lstat(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:09:49 +04:00
|
|
|
struct osf1_sys_lstat_args *uap = v;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct stat sb;
|
|
|
|
struct osf1_stat osb;
|
|
|
|
int error;
|
|
|
|
struct nameidata nd;
|
|
|
|
|
|
|
|
NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE,
|
|
|
|
SCARG(uap, path), p);
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = namei(&nd)))
|
1995-02-14 00:39:00 +03:00
|
|
|
return (error);
|
|
|
|
error = vn_stat(nd.ni_vp, &sb, p);
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
cvtstat2osf1(&sb, &osb);
|
|
|
|
error = copyout((caddr_t)&osb, (caddr_t)SCARG(uap, ub), sizeof (osb));
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return status information about a file descriptor.
|
|
|
|
*/
|
1998-05-20 20:34:29 +04:00
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_fstat(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:09:49 +04:00
|
|
|
struct osf1_sys_fstat_args *uap = v;
|
|
|
|
struct filedesc *fdp = p->p_fd;
|
|
|
|
struct file *fp;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct stat ub;
|
|
|
|
struct osf1_stat oub;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((unsigned)SCARG(uap, fd) >= fdp->fd_nfiles ||
|
|
|
|
(fp = fdp->fd_ofiles[SCARG(uap, fd)]) == NULL)
|
|
|
|
return (EBADF);
|
|
|
|
switch (fp->f_type) {
|
|
|
|
|
|
|
|
case DTYPE_VNODE:
|
|
|
|
error = vn_stat((struct vnode *)fp->f_data, &ub, p);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DTYPE_SOCKET:
|
|
|
|
error = soo_stat((struct socket *)fp->f_data, &ub);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("ofstat");
|
|
|
|
/*NOTREACHED*/
|
|
|
|
}
|
|
|
|
cvtstat2osf1(&ub, &oub);
|
|
|
|
if (error == 0)
|
|
|
|
error = copyout((caddr_t)&oub, (caddr_t)SCARG(uap, sb),
|
|
|
|
sizeof (oub));
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define bsd2osf_dev(dev) (major(dev) << 20 | minor(dev))
|
|
|
|
#define osf2bsd_dev(dev) makedev((dev >> 20) & 0xfff, dev & 0xfffff)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert from a stat structure to an osf1 stat structure.
|
|
|
|
*/
|
1998-05-20 20:34:29 +04:00
|
|
|
void
|
1995-02-14 00:39:00 +03:00
|
|
|
cvtstat2osf1(st, ost)
|
|
|
|
struct stat *st;
|
|
|
|
struct osf1_stat *ost;
|
|
|
|
{
|
|
|
|
|
|
|
|
ost->st_dev = bsd2osf_dev(st->st_dev);
|
|
|
|
ost->st_ino = st->st_ino;
|
|
|
|
ost->st_mode = st->st_mode;
|
|
|
|
ost->st_nlink = st->st_nlink;
|
|
|
|
ost->st_uid = st->st_uid == -2 ? (u_int16_t) -2 : st->st_uid;
|
|
|
|
ost->st_gid = st->st_gid == -2 ? (u_int16_t) -2 : st->st_gid;
|
|
|
|
ost->st_rdev = bsd2osf_dev(st->st_rdev);
|
|
|
|
ost->st_size = st->st_size;
|
|
|
|
ost->st_atime_sec = st->st_atime;
|
|
|
|
ost->st_spare1 = 0;
|
|
|
|
ost->st_mtime_sec = st->st_mtime;
|
|
|
|
ost->st_spare2 = 0;
|
|
|
|
ost->st_ctime_sec = st->st_ctime;
|
|
|
|
ost->st_spare3 = 0;
|
|
|
|
ost->st_blksize = st->st_blksize;
|
|
|
|
ost->st_blocks = st->st_blocks;
|
|
|
|
ost->st_flags = st->st_flags;
|
|
|
|
ost->st_gen = st->st_gen;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_mknod(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_mknod_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_mknod_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
SCARG(&a, path) = SCARG(uap, path);
|
|
|
|
SCARG(&a, mode) = SCARG(uap, mode);
|
|
|
|
SCARG(&a, dev) = osf2bsd_dev(SCARG(uap, dev));
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_mknod(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define OSF1_F_DUPFD 0
|
|
|
|
#define OSF1_F_GETFD 1
|
|
|
|
#define OSF1_F_SETFD 2
|
|
|
|
#define OSF1_F_GETFL 3
|
|
|
|
#define OSF1_F_SETFL 4
|
|
|
|
|
|
|
|
#define OSF1_FAPPEND 0x00008 /* XXX OSF1_O_APPEND */
|
|
|
|
#define OSF1_FNONBLOCK 0x00004 /* XXX OSF1_O_NONBLOCK */
|
|
|
|
#define OSF1_FASYNC 0x00040
|
|
|
|
#define OSF1_FSYNC 0x04000 /* XXX OSF1_O_SYNC */
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_fcntl(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_fcntl_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_fcntl_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
long tmp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
|
|
|
|
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case OSF1_F_DUPFD:
|
|
|
|
SCARG(&a, cmd) = F_DUPFD;
|
|
|
|
SCARG(&a, arg) = SCARG(uap, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSF1_F_GETFD:
|
|
|
|
SCARG(&a, cmd) = F_GETFD;
|
|
|
|
SCARG(&a, arg) = SCARG(uap, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSF1_F_SETFD:
|
|
|
|
SCARG(&a, cmd) = F_SETFD;
|
|
|
|
SCARG(&a, arg) = SCARG(uap, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSF1_F_GETFL:
|
|
|
|
SCARG(&a, cmd) = F_GETFL;
|
|
|
|
SCARG(&a, arg) = SCARG(uap, arg); /* ignored */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OSF1_F_SETFL:
|
|
|
|
SCARG(&a, cmd) = F_SETFL;
|
|
|
|
tmp = 0;
|
|
|
|
if ((long)SCARG(uap, arg) & OSF1_FAPPEND)
|
|
|
|
tmp |= FAPPEND;
|
|
|
|
if ((long)SCARG(uap, arg) & OSF1_FNONBLOCK)
|
|
|
|
tmp |= FNONBLOCK;
|
|
|
|
if ((long)SCARG(uap, arg) & OSF1_FASYNC)
|
|
|
|
tmp |= FASYNC;
|
|
|
|
if ((long)SCARG(uap, arg) & OSF1_FSYNC)
|
|
|
|
tmp |= FFSYNC;
|
|
|
|
SCARG(&a, arg) = (void *)tmp;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* XXX other cases */
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
error = sys_fcntl(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
switch (SCARG(uap, cmd)) {
|
|
|
|
case OSF1_F_GETFL:
|
|
|
|
/* XXX */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_socket(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:09:49 +04:00
|
|
|
struct osf1_sys_socket_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_socket_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, type) > AF_LINK)
|
|
|
|
return (EINVAL); /* XXX After AF_LINK, divergence. */
|
|
|
|
|
|
|
|
SCARG(&a, domain) = SCARG(uap, domain);
|
|
|
|
SCARG(&a, type) = SCARG(uap, type);
|
|
|
|
SCARG(&a, protocol) = SCARG(uap, protocol);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_socket(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_sendto(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:09:49 +04:00
|
|
|
struct osf1_sys_sendto_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_sendto_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, flags) & ~0x7f) /* unsupported flags */
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
SCARG(&a, s) = SCARG(uap, s);
|
|
|
|
SCARG(&a, buf) = SCARG(uap, buf);
|
|
|
|
SCARG(&a, len) = SCARG(uap, len);
|
|
|
|
SCARG(&a, flags) = SCARG(uap, flags);
|
|
|
|
SCARG(&a, to) = SCARG(uap, to);
|
|
|
|
SCARG(&a, tolen) = SCARG(uap, tolen);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_sendto(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define OSF1_RB_ASKNAME 0x001
|
|
|
|
#define OSF1_RB_SINGLE 0x002
|
|
|
|
#define OSF1_RB_NOSYNC 0x004
|
|
|
|
#define OSF1_RB_HALT 0x008
|
|
|
|
#define OSF1_RB_INITNAME 0x010
|
|
|
|
#define OSF1_RB_DFLTROOT 0x020
|
|
|
|
#define OSF1_RB_ALTBOOT 0x040
|
|
|
|
#define OSF1_RB_UNIPROC 0x080
|
|
|
|
#define OSF1_RB_ALLFLAGS 0x0ff /* all of the above */
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_reboot(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_reboot_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_reboot_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, opt) & ~OSF1_RB_ALLFLAGS &&
|
|
|
|
SCARG(uap, opt) & (OSF1_RB_ALTBOOT|OSF1_RB_UNIPROC))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
SCARG(&a, opt) = 0;
|
1996-08-09 14:30:23 +04:00
|
|
|
SCARG(&a, bootstr) = NULL;
|
1995-02-14 00:39:00 +03:00
|
|
|
if (SCARG(uap, opt) & OSF1_RB_ASKNAME)
|
|
|
|
SCARG(&a, opt) |= RB_ASKNAME;
|
|
|
|
if (SCARG(uap, opt) & OSF1_RB_SINGLE)
|
|
|
|
SCARG(&a, opt) |= RB_SINGLE;
|
|
|
|
if (SCARG(uap, opt) & OSF1_RB_NOSYNC)
|
|
|
|
SCARG(&a, opt) |= RB_NOSYNC;
|
|
|
|
if (SCARG(uap, opt) & OSF1_RB_HALT)
|
|
|
|
SCARG(&a, opt) |= RB_HALT;
|
|
|
|
if (SCARG(uap, opt) & OSF1_RB_INITNAME)
|
|
|
|
SCARG(&a, opt) |= RB_INITNAME;
|
|
|
|
if (SCARG(uap, opt) & OSF1_RB_DFLTROOT)
|
|
|
|
SCARG(&a, opt) |= RB_DFLTROOT;
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_reboot(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_lseek(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_lseek_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_lseek_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&a, pad) = 0;
|
|
|
|
SCARG(&a, offset) = SCARG(uap, offset);
|
|
|
|
SCARG(&a, whence) = SCARG(uap, whence);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_lseek(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OSF/1 defines _POSIX_SAVED_IDS, which means that our normal
|
|
|
|
* setuid() won't work.
|
|
|
|
*
|
|
|
|
* Instead, by P1003.1b-1993, setuid() is supposed to work like:
|
|
|
|
* If the process has appropriate [super-user] priviledges, the
|
|
|
|
* setuid() function sets the real user ID, effective user
|
|
|
|
* ID, and the saved set-user-ID to uid.
|
|
|
|
* If the process does not have appropriate priviledges, but uid
|
|
|
|
* is equal to the real user ID or the saved set-user-ID, the
|
|
|
|
* setuid() function sets the effective user ID to uid; the
|
|
|
|
* real user ID and saved set-user-ID remain unchanged by
|
|
|
|
* this function call.
|
|
|
|
*/
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_setuid(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_setuid_args *uap = v;
|
1999-04-24 11:09:49 +04:00
|
|
|
struct pcred *pc = p->p_cred;
|
1995-02-14 00:39:00 +03:00
|
|
|
uid_t uid = SCARG(uap, uid);
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = suser(pc->pc_ucred, &p->p_acflag)) != 0 &&
|
|
|
|
uid != pc->p_ruid && uid != pc->p_svuid)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
pc->pc_ucred = crcopy(pc->pc_ucred);
|
|
|
|
pc->pc_ucred->cr_uid = uid;
|
|
|
|
if (error == 0) {
|
|
|
|
(void)chgproccnt(pc->p_ruid, -1);
|
|
|
|
(void)chgproccnt(uid, 1);
|
|
|
|
pc->p_ruid = uid;
|
|
|
|
pc->p_svuid = uid;
|
|
|
|
}
|
|
|
|
p->p_flag |= P_SUGID;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OSF/1 defines _POSIX_SAVED_IDS, which means that our normal
|
|
|
|
* setgid() won't work.
|
|
|
|
*
|
|
|
|
* If you change "uid" to "gid" in the discussion, above, about
|
|
|
|
* setuid(), you'll get a correct description of setgid().
|
|
|
|
*/
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_setgid(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_setgid_args *uap = v;
|
1999-04-24 11:09:49 +04:00
|
|
|
struct pcred *pc = p->p_cred;
|
1995-02-14 00:39:00 +03:00
|
|
|
gid_t gid = SCARG(uap, gid);
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if ((error = suser(pc->pc_ucred, &p->p_acflag)) != 0 &&
|
|
|
|
gid != pc->p_rgid && gid != pc->p_svgid)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
pc->pc_ucred = crcopy(pc->pc_ucred);
|
|
|
|
pc->pc_ucred->cr_gid = gid;
|
|
|
|
if (error == 0) {
|
|
|
|
pc->p_rgid = gid;
|
|
|
|
pc->p_svgid = gid;
|
|
|
|
}
|
|
|
|
p->p_flag |= P_SUGID;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The structures end up being the same... but we can't be sure that
|
|
|
|
* the other word of our iov_len is zero!
|
|
|
|
*/
|
|
|
|
struct osf1_iovec {
|
|
|
|
char *iov_base;
|
|
|
|
int iov_len;
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_readv(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_readv_args *uap = v;
|
|
|
|
struct sys_readv_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct osf1_iovec *oio;
|
|
|
|
struct iovec *nio;
|
1998-05-20 20:34:29 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
|
|
|
int error, osize, nsize, i;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, iovcnt) > (STACKGAPLEN / sizeof (struct iovec)))
|
|
|
|
return (EINVAL);
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
osize = SCARG(uap, iovcnt) * sizeof (struct osf1_iovec);
|
|
|
|
nsize = SCARG(uap, iovcnt) * sizeof (struct iovec);
|
|
|
|
|
|
|
|
oio = malloc(osize, M_TEMP, M_WAITOK);
|
|
|
|
nio = malloc(nsize, M_TEMP, M_WAITOK);
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
error = 0;
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = copyin(SCARG(uap, iovp), oio, osize)))
|
1995-02-14 00:39:00 +03:00
|
|
|
goto punt;
|
|
|
|
for (i = 0; i < SCARG(uap, iovcnt); i++) {
|
|
|
|
nio[i].iov_base = oio[i].iov_base;
|
|
|
|
nio[i].iov_len = oio[i].iov_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
1998-05-20 20:34:29 +04:00
|
|
|
SCARG(&a, iovp) = stackgap_alloc(&sg, nsize);
|
1995-02-14 00:39:00 +03:00
|
|
|
SCARG(&a, iovcnt) = SCARG(uap, iovcnt);
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = copyout(nio, (caddr_t)SCARG(&a, iovp), nsize)))
|
1995-10-07 09:25:19 +03:00
|
|
|
goto punt;
|
|
|
|
error = sys_readv(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
punt:
|
|
|
|
free(oio, M_TEMP);
|
|
|
|
free(nio, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_writev(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_writev_args *uap = v;
|
|
|
|
struct sys_writev_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
struct osf1_iovec *oio;
|
|
|
|
struct iovec *nio;
|
1998-05-20 20:34:29 +04:00
|
|
|
caddr_t sg = stackgap_init(p->p_emul);
|
|
|
|
int error, osize, nsize, i;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
if (SCARG(uap, iovcnt) > (STACKGAPLEN / sizeof (struct iovec)))
|
|
|
|
return (EINVAL);
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
osize = SCARG(uap, iovcnt) * sizeof (struct osf1_iovec);
|
|
|
|
nsize = SCARG(uap, iovcnt) * sizeof (struct iovec);
|
|
|
|
|
|
|
|
oio = malloc(osize, M_TEMP, M_WAITOK);
|
|
|
|
nio = malloc(nsize, M_TEMP, M_WAITOK);
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
error = 0;
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = copyin(SCARG(uap, iovp), oio, osize)))
|
1995-02-14 00:39:00 +03:00
|
|
|
goto punt;
|
|
|
|
for (i = 0; i < SCARG(uap, iovcnt); i++) {
|
|
|
|
nio[i].iov_base = oio[i].iov_base;
|
|
|
|
nio[i].iov_len = oio[i].iov_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
1998-05-20 20:34:29 +04:00
|
|
|
SCARG(&a, iovp) = stackgap_alloc(&sg, nsize);
|
1995-02-14 00:39:00 +03:00
|
|
|
SCARG(&a, iovcnt) = SCARG(uap, iovcnt);
|
|
|
|
|
1998-05-20 20:34:29 +04:00
|
|
|
if ((error = copyout(nio, (caddr_t)SCARG(&a, iovp), nsize)))
|
1995-10-07 09:25:19 +03:00
|
|
|
goto punt;
|
|
|
|
error = sys_writev(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
punt:
|
|
|
|
free(oio, M_TEMP);
|
|
|
|
free(nio, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* More of the stupid off_t padding! */
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_truncate(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-10-07 09:25:19 +03:00
|
|
|
register_t *retval;
|
1995-09-20 02:44:25 +04:00
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_truncate_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_truncate_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
SCARG(&a, path) = SCARG(uap, path);
|
|
|
|
SCARG(&a, pad) = 0;
|
|
|
|
SCARG(&a, length) = SCARG(uap, length);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_truncate(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:25:19 +03:00
|
|
|
osf1_sys_ftruncate(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-09-20 02:44:25 +04:00
|
|
|
void *v;
|
1995-10-07 09:25:19 +03:00
|
|
|
register_t *retval;
|
1995-09-20 02:44:25 +04:00
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_ftruncate_args *uap = v;
|
1995-10-07 09:25:19 +03:00
|
|
|
struct sys_ftruncate_args a;
|
1995-02-14 00:39:00 +03:00
|
|
|
|
|
|
|
SCARG(&a, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&a, pad) = 0;
|
|
|
|
SCARG(&a, length) = SCARG(uap, length);
|
|
|
|
|
1995-10-07 09:25:19 +03:00
|
|
|
return sys_ftruncate(p, &a, retval);
|
1995-02-14 00:39:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:53:04 +03:00
|
|
|
osf1_sys_getrusage(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-10-07 09:25:19 +03:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
|
1995-10-07 09:53:04 +03:00
|
|
|
/* XXX */
|
1995-02-14 00:39:00 +03:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1995-10-07 09:53:04 +03:00
|
|
|
osf1_sys_madvise(p, v, retval)
|
1995-02-14 00:39:00 +03:00
|
|
|
struct proc *p;
|
1995-10-07 09:25:19 +03:00
|
|
|
void *v;
|
1995-02-14 00:39:00 +03:00
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
|
1995-10-07 09:53:04 +03:00
|
|
|
/* XXX */
|
1995-02-14 00:39:00 +03:00
|
|
|
return EINVAL;
|
|
|
|
}
|
1996-09-03 07:12:17 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
osf1_sys_execve(p, v, retval)
|
|
|
|
struct proc *p;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
1999-04-24 11:06:35 +04:00
|
|
|
struct osf1_sys_execve_args *uap = v;
|
1996-09-03 07:12:17 +04:00
|
|
|
struct sys_execve_args ap;
|
|
|
|
caddr_t sg;
|
|
|
|
|
|
|
|
sg = stackgap_init(p->p_emul);
|
|
|
|
OSF1_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
|
|
|
|
|
|
|
|
SCARG(&ap, path) = SCARG(uap, path);
|
|
|
|
SCARG(&ap, argp) = SCARG(uap, argp);
|
|
|
|
SCARG(&ap, envp) = SCARG(uap, envp);
|
|
|
|
|
|
|
|
return sys_execve(p, &ap, retval);
|
|
|
|
}
|