2005-01-05 22:34:37 +00:00
|
|
|
/*-
|
1999-01-30 06:29:48 +00:00
|
|
|
* Copyright (c) 1998 Mark Newton
|
|
|
|
* Copyright (c) 1994 Christos Zoulas
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* SVR4 compatibility module.
|
|
|
|
*
|
|
|
|
* SVR4 system calls that are implemented differently in BSD are
|
|
|
|
* handled here.
|
|
|
|
*/
|
|
|
|
|
2003-06-10 21:44:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2014-03-16 10:55:57 +00:00
|
|
|
#include <sys/capsicum.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/dirent.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/fcntl.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/filedesc.h>
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
#include <sys/imgact.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/kernel.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/file.h> /* Must come after sys/malloc.h */
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mount.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/msg.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/namei.h>
|
2006-11-06 13:42:10 +00:00
|
|
|
#include <sys/priv.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/ptrace.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/resourcevar.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/sem.h>
|
2004-11-27 06:51:39 +00:00
|
|
|
#include <sys/signalvar.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/stat.h>
|
2001-03-28 15:04:22 +00:00
|
|
|
#include <sys/sx.h>
|
2005-01-05 22:19:44 +00:00
|
|
|
#include <sys/syscallsubr.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/sysproto.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/times.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/uio.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/vnode.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2000-08-31 22:54:09 +00:00
|
|
|
#include <compat/svr4/svr4.h>
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <compat/svr4/svr4_signal.h>
|
|
|
|
#include <compat/svr4/svr4_proto.h>
|
|
|
|
#include <compat/svr4/svr4_util.h>
|
|
|
|
#include <compat/svr4/svr4_sysconfig.h>
|
|
|
|
#include <compat/svr4/svr4_dirent.h>
|
|
|
|
#include <compat/svr4/svr4_acl.h>
|
|
|
|
#include <compat/svr4/svr4_ulimit.h>
|
|
|
|
#include <compat/svr4/svr4_statvfs.h>
|
|
|
|
#include <compat/svr4/svr4_hrt.h>
|
|
|
|
#include <compat/svr4/svr4_mman.h>
|
|
|
|
#include <compat/svr4/svr4_wait.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-10-22 11:52:19 +00:00
|
|
|
#include <security/mac/mac_framework.h>
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <machine/vmparam.h>
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_param.h>
|
|
|
|
#include <vm/vm_map.h>
|
2001-01-23 21:30:25 +00:00
|
|
|
#if defined(__FreeBSD__)
|
2002-03-20 10:35:22 +00:00
|
|
|
#include <vm/uma.h>
|
2003-01-14 21:31:31 +00:00
|
|
|
#include <vm/vm_extern.h>
|
2001-01-23 21:30:25 +00:00
|
|
|
#endif
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
#if defined(NetBSD)
|
|
|
|
# if defined(UVM)
|
|
|
|
# include <uvm/uvm_extern.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BSD_DIRENT(cp) ((struct dirent *)(cp))
|
|
|
|
|
2002-03-20 05:48:58 +00:00
|
|
|
static int svr4_mknod(struct thread *, register_t *, char *,
|
|
|
|
svr4_mode_t, svr4_dev_t);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-03-20 05:48:58 +00:00
|
|
|
static __inline clock_t timeval_to_clock_t(struct timeval *);
|
2006-07-19 19:01:10 +00:00
|
|
|
static int svr4_setinfo (pid_t , struct rusage *, int, svr4_siginfo_t *);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
struct svr4_hrtcntl_args;
|
2002-03-20 05:48:58 +00:00
|
|
|
static int svr4_hrtcntl (struct thread *, struct svr4_hrtcntl_args *,
|
|
|
|
register_t *);
|
|
|
|
static void bsd_statfs_to_svr4_statvfs(const struct statfs *,
|
|
|
|
struct svr4_statvfs *);
|
|
|
|
static void bsd_statfs_to_svr4_statvfs64(const struct statfs *,
|
|
|
|
struct svr4_statvfs64 *);
|
|
|
|
static struct proc *svr4_pfind(pid_t pid);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
/* BOGUS noop */
|
|
|
|
#if defined(BOGUS)
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_setitimer(td, uap)
|
2009-05-29 05:58:46 +00:00
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_setitimer_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
td->td_retval[0] = 0;
|
1999-01-30 06:29:48 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_wait(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_wait_args *uap;
|
|
|
|
{
|
2004-03-17 20:00:00 +00:00
|
|
|
int error, st, sig;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-03-17 20:00:00 +00:00
|
|
|
error = kern_wait(td, WAIT_ANY, &st, 0, NULL);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
if (WIFSIGNALED(st)) {
|
|
|
|
sig = WTERMSIG(st);
|
|
|
|
if (sig >= 0 && sig < NSIG)
|
1999-09-29 15:12:18 +00:00
|
|
|
st = (st & ~0177) | SVR4_BSD2SVR4_SIG(sig);
|
1999-01-30 06:29:48 +00:00
|
|
|
} else if (WIFSTOPPED(st)) {
|
|
|
|
sig = WSTOPSIG(st);
|
|
|
|
if (sig >= 0 && sig < NSIG)
|
1999-09-29 15:12:18 +00:00
|
|
|
st = (st & ~0xff00) | (SVR4_BSD2SVR4_SIG(sig) << 8);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It looks like wait(2) on svr4/solaris/2.4 returns
|
|
|
|
* the status in retval[1], and the pid on retval[0].
|
|
|
|
*/
|
2004-03-17 20:00:00 +00:00
|
|
|
td->td_retval[1] = st;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->status)
|
2004-03-17 20:00:00 +00:00
|
|
|
error = copyout(&st, uap->status, sizeof(st));
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-03-17 20:00:00 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_execv(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_execv_args *uap;
|
|
|
|
{
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct image_args eargs;
|
2015-05-10 09:00:40 +00:00
|
|
|
struct vmspace *oldvmspace;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
char *path;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
CHECKALTEXIST(td, uap->path, &path);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2015-05-10 09:00:40 +00:00
|
|
|
error = pre_execve(td, &oldvmspace);
|
|
|
|
if (error != 0) {
|
|
|
|
free(path, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = exec_copyin_args(&eargs, path, UIO_SYSSPACE, uap->argp, NULL);
|
|
|
|
free(path, M_TEMP);
|
|
|
|
if (error == 0)
|
|
|
|
error = kern_execve(td, &eargs, NULL);
|
2015-05-10 09:00:40 +00:00
|
|
|
post_execve(td, error, oldvmspace);
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_execve(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_execve_args *uap;
|
|
|
|
{
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct image_args eargs;
|
2015-05-10 09:00:40 +00:00
|
|
|
struct vmspace *oldvmspace;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
char *path;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
CHECKALTEXIST(td, uap->path, &path);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2015-05-10 09:00:40 +00:00
|
|
|
error = pre_execve(td, &oldvmspace);
|
|
|
|
if (error != 0) {
|
|
|
|
free(path, M_TEMP);
|
|
|
|
return (error);
|
|
|
|
}
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = exec_copyin_args(&eargs, path, UIO_SYSSPACE, uap->argp,
|
|
|
|
uap->envp);
|
|
|
|
free(path, M_TEMP);
|
|
|
|
if (error == 0)
|
|
|
|
error = kern_execve(td, &eargs, NULL);
|
2015-05-10 09:00:40 +00:00
|
|
|
post_execve(td, error, oldvmspace);
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_time(td, v)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_time_args *v;
|
|
|
|
{
|
|
|
|
struct svr4_sys_time_args *uap = v;
|
|
|
|
int error = 0;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
microtime(&tv);
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->t)
|
|
|
|
error = copyout(&tv.tv_sec, uap->t,
|
|
|
|
sizeof(*(uap->t)));
|
2001-09-12 08:38:13 +00:00
|
|
|
td->td_retval[0] = (int) tv.tv_sec;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read SVR4-style directory entries. We suck them into kernel space so
|
1999-12-12 11:25:33 +00:00
|
|
|
* that they can be massaged before being copied out to user code.
|
1999-01-30 06:29:48 +00:00
|
|
|
*
|
1999-12-12 11:25:33 +00:00
|
|
|
* This code is ported from the Linux emulator: Changes to the VFS interface
|
|
|
|
* between FreeBSD and NetBSD have made it simpler to port it from there than
|
|
|
|
* to adapt the NetBSD version.
|
1999-01-30 06:29:48 +00:00
|
|
|
*/
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_getdents64(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_getdents64_args *uap;
|
|
|
|
{
|
2009-05-29 05:58:46 +00:00
|
|
|
struct dirent *bdp;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct vnode *vp;
|
1999-12-12 11:25:33 +00:00
|
|
|
caddr_t inp, buf; /* BSD-format */
|
|
|
|
int len, reclen; /* BSD-format */
|
|
|
|
caddr_t outp; /* SVR4-format */
|
|
|
|
int resid, svr4reclen=0; /* SVR4-format */
|
Change the cap_rights_t type from uint64_t to a structure that we can extend
in the future in a backward compatible (API and ABI) way.
The cap_rights_t represents capability rights. We used to use one bit to
represent one right, but we are running out of spare bits. Currently the new
structure provides place for 114 rights (so 50 more than the previous
cap_rights_t), but it is possible to grow the structure to hold at least 285
rights, although we can make it even larger if 285 rights won't be enough.
The structure definition looks like this:
struct cap_rights {
uint64_t cr_rights[CAP_RIGHTS_VERSION + 2];
};
The initial CAP_RIGHTS_VERSION is 0.
The top two bits in the first element of the cr_rights[] array contain total
number of elements in the array - 2. This means if those two bits are equal to
0, we have 2 array elements.
The top two bits in all remaining array elements should be 0.
The next five bits in all array elements contain array index. Only one bit is
used and bit position in this five-bits range defines array index. This means
there can be at most five array elements in the future.
To define new right the CAPRIGHT() macro must be used. The macro takes two
arguments - an array index and a bit to set, eg.
#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL)
We still support aliases that combine few rights, but the rights have to belong
to the same array element, eg:
#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL)
#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL)
#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP)
There is new API to manage the new cap_rights_t structure:
cap_rights_t *cap_rights_init(cap_rights_t *rights, ...);
void cap_rights_set(cap_rights_t *rights, ...);
void cap_rights_clear(cap_rights_t *rights, ...);
bool cap_rights_is_set(const cap_rights_t *rights, ...);
bool cap_rights_is_valid(const cap_rights_t *rights);
void cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src);
void cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src);
bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
Capability rights to the cap_rights_init(), cap_rights_set(),
cap_rights_clear() and cap_rights_is_set() functions are provided by
separating them with commas, eg:
cap_rights_t rights;
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FSTAT);
There is no need to terminate the list of rights, as those functions are
actually macros that take care of the termination, eg:
#define cap_rights_set(rights, ...) \
__cap_rights_set((rights), __VA_ARGS__, 0ULL)
void __cap_rights_set(cap_rights_t *rights, ...);
Thanks to using one bit as an array index we can assert in those functions that
there are no two rights belonging to different array elements provided
together. For example this is illegal and will be detected, because CAP_LOOKUP
belongs to element 0 and CAP_PDKILL to element 1:
cap_rights_init(&rights, CAP_LOOKUP | CAP_PDKILL);
Providing several rights that belongs to the same array's element this way is
correct, but is not advised. It should only be used for aliases definition.
This commit also breaks compatibility with some existing Capsicum system calls,
but I see no other way to do that. This should be fine as Capsicum is still
experimental and this change is not going to 9.x.
Sponsored by: The FreeBSD Foundation
2013-09-05 00:09:56 +00:00
|
|
|
cap_rights_t rights;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov;
|
1999-12-12 11:25:33 +00:00
|
|
|
off_t off;
|
|
|
|
struct svr4_dirent64 svr4_dirent;
|
2012-10-22 17:50:54 +00:00
|
|
|
int buflen, error, eofflag, nbytes, justone;
|
1999-12-12 11:25:33 +00:00
|
|
|
u_long *cookies = NULL, *cookiep;
|
|
|
|
int ncookies;
|
|
|
|
|
|
|
|
DPRINTF(("svr4_sys_getdents64(%d, *, %d)\n",
|
2002-12-14 01:56:26 +00:00
|
|
|
uap->fd, uap->nbytes));
|
2015-06-16 13:09:18 +00:00
|
|
|
error = getvnode(td, uap->fd, cap_rights_init(&rights, CAP_READ), &fp);
|
Change the cap_rights_t type from uint64_t to a structure that we can extend
in the future in a backward compatible (API and ABI) way.
The cap_rights_t represents capability rights. We used to use one bit to
represent one right, but we are running out of spare bits. Currently the new
structure provides place for 114 rights (so 50 more than the previous
cap_rights_t), but it is possible to grow the structure to hold at least 285
rights, although we can make it even larger if 285 rights won't be enough.
The structure definition looks like this:
struct cap_rights {
uint64_t cr_rights[CAP_RIGHTS_VERSION + 2];
};
The initial CAP_RIGHTS_VERSION is 0.
The top two bits in the first element of the cr_rights[] array contain total
number of elements in the array - 2. This means if those two bits are equal to
0, we have 2 array elements.
The top two bits in all remaining array elements should be 0.
The next five bits in all array elements contain array index. Only one bit is
used and bit position in this five-bits range defines array index. This means
there can be at most five array elements in the future.
To define new right the CAPRIGHT() macro must be used. The macro takes two
arguments - an array index and a bit to set, eg.
#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL)
We still support aliases that combine few rights, but the rights have to belong
to the same array element, eg:
#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL)
#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL)
#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP)
There is new API to manage the new cap_rights_t structure:
cap_rights_t *cap_rights_init(cap_rights_t *rights, ...);
void cap_rights_set(cap_rights_t *rights, ...);
void cap_rights_clear(cap_rights_t *rights, ...);
bool cap_rights_is_set(const cap_rights_t *rights, ...);
bool cap_rights_is_valid(const cap_rights_t *rights);
void cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src);
void cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src);
bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
Capability rights to the cap_rights_init(), cap_rights_set(),
cap_rights_clear() and cap_rights_is_set() functions are provided by
separating them with commas, eg:
cap_rights_t rights;
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FSTAT);
There is no need to terminate the list of rights, as those functions are
actually macros that take care of the termination, eg:
#define cap_rights_set(rights, ...) \
__cap_rights_set((rights), __VA_ARGS__, 0ULL)
void __cap_rights_set(cap_rights_t *rights, ...);
Thanks to using one bit as an array index we can assert in those functions that
there are no two rights belonging to different array elements provided
together. For example this is illegal and will be detected, because CAP_LOOKUP
belongs to element 0 and CAP_PDKILL to element 1:
cap_rights_init(&rights, CAP_LOOKUP | CAP_PDKILL);
Providing several rights that belongs to the same array's element this way is
correct, but is not advised. It should only be used for aliases definition.
This commit also breaks compatibility with some existing Capsicum system calls,
but I see no other way to do that. This should be fine as Capsicum is still
experimental and this change is not going to 9.x.
Sponsored by: The FreeBSD Foundation
2013-09-05 00:09:56 +00:00
|
|
|
if (error != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return (error);
|
|
|
|
|
2002-01-13 11:58:06 +00:00
|
|
|
if ((fp->f_flag & FREAD) == 0) {
|
|
|
|
fdrop(fp, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
return (EBADF);
|
2002-01-13 11:58:06 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-06-22 08:41:43 +00:00
|
|
|
vp = fp->f_vnode;
|
2002-01-13 11:58:06 +00:00
|
|
|
if (vp->v_type != VDIR) {
|
|
|
|
fdrop(fp, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
return (EINVAL);
|
2002-01-13 11:58:06 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
nbytes = uap->nbytes;
|
1999-12-12 11:25:33 +00:00
|
|
|
if (nbytes == 1) {
|
|
|
|
nbytes = sizeof (struct svr4_dirent64);
|
|
|
|
justone = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
justone = 0;
|
|
|
|
|
|
|
|
off = fp->f_offset;
|
|
|
|
#define DIRBLKSIZ 512 /* XXX we used to use ufs's DIRBLKSIZ */
|
|
|
|
buflen = max(DIRBLKSIZ, nbytes);
|
|
|
|
buflen = min(buflen, MAXBSIZE);
|
2003-02-19 05:47:46 +00:00
|
|
|
buf = malloc(buflen, M_TEMP, M_WAITOK);
|
2009-02-13 18:18:14 +00:00
|
|
|
vn_lock(vp, LK_SHARED | LK_RETRY);
|
1999-01-30 06:29:48 +00:00
|
|
|
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;
|
2001-09-12 08:38:13 +00:00
|
|
|
auio.uio_td = td;
|
1999-01-30 06:29:48 +00:00
|
|
|
auio.uio_resid = buflen;
|
|
|
|
auio.uio_offset = off;
|
|
|
|
|
1999-12-12 11:25:33 +00:00
|
|
|
if (cookies) {
|
|
|
|
free(cookies, M_TEMP);
|
|
|
|
cookies = NULL;
|
|
|
|
}
|
|
|
|
|
2002-08-12 01:42:21 +00:00
|
|
|
#ifdef MAC
|
2007-10-24 19:04:04 +00:00
|
|
|
error = mac_vnode_check_readdir(td->td_ucred, vp);
|
2002-08-12 01:42:21 +00:00
|
|
|
if (error)
|
2002-08-15 15:46:10 +00:00
|
|
|
goto out;
|
2002-08-12 01:42:21 +00:00
|
|
|
#endif
|
|
|
|
|
1999-12-12 11:25:33 +00:00
|
|
|
error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag,
|
|
|
|
&ncookies, &cookies);
|
|
|
|
if (error) {
|
1999-01-30 06:29:48 +00:00
|
|
|
goto out;
|
1999-12-12 11:25:33 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
inp = buf;
|
2002-12-14 01:56:26 +00:00
|
|
|
outp = (caddr_t) uap->dp;
|
1999-12-12 11:25:33 +00:00
|
|
|
resid = nbytes;
|
|
|
|
if ((len = buflen - auio.uio_resid) <= 0) {
|
1999-01-30 06:29:48 +00:00
|
|
|
goto eof;
|
1999-12-12 11:25:33 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
1999-12-12 11:25:33 +00:00
|
|
|
cookiep = cookies;
|
|
|
|
|
|
|
|
if (cookies) {
|
|
|
|
/*
|
|
|
|
* When using cookies, the vfs has the option of reading from
|
|
|
|
* a different offset than that supplied (UFS truncates the
|
|
|
|
* offset to a block boundary to make sure that it never reads
|
|
|
|
* partway through a directory entry, even if the directory
|
|
|
|
* has been compacted).
|
|
|
|
*/
|
|
|
|
while (len > 0 && ncookies > 0 && *cookiep <= off) {
|
|
|
|
bdp = (struct dirent *) inp;
|
|
|
|
len -= bdp->d_reclen;
|
|
|
|
inp += bdp->d_reclen;
|
|
|
|
cookiep++;
|
|
|
|
ncookies--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
if (cookiep && ncookies == 0)
|
|
|
|
break;
|
|
|
|
bdp = (struct dirent *) inp;
|
1999-01-30 06:29:48 +00:00
|
|
|
reclen = bdp->d_reclen;
|
1999-12-12 11:25:33 +00:00
|
|
|
if (reclen & 3) {
|
|
|
|
DPRINTF(("svr4_readdir: reclen=%d\n", reclen));
|
|
|
|
error = EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
if (bdp->d_fileno == 0) {
|
1999-12-12 11:25:33 +00:00
|
|
|
inp += reclen;
|
|
|
|
if (cookiep) {
|
|
|
|
off = *cookiep++;
|
|
|
|
ncookies--;
|
|
|
|
} else
|
|
|
|
off += reclen;
|
|
|
|
len -= reclen;
|
1999-01-30 06:29:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
1999-12-12 11:25:33 +00:00
|
|
|
svr4reclen = SVR4_RECLEN(&svr4_dirent, bdp->d_namlen);
|
|
|
|
if (reclen > len || resid < svr4reclen) {
|
1999-01-30 06:29:48 +00:00
|
|
|
outp++;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-12 11:25:33 +00:00
|
|
|
svr4_dirent.d_ino = (long) bdp->d_fileno;
|
|
|
|
if (justone) {
|
|
|
|
/*
|
|
|
|
* old svr4-style readdir usage.
|
|
|
|
*/
|
|
|
|
svr4_dirent.d_off = (svr4_off_t) svr4reclen;
|
|
|
|
svr4_dirent.d_reclen = (u_short) bdp->d_namlen;
|
|
|
|
} else {
|
|
|
|
svr4_dirent.d_off = (svr4_off_t)(off + reclen);
|
|
|
|
svr4_dirent.d_reclen = (u_short) svr4reclen;
|
|
|
|
}
|
2009-05-28 21:12:43 +00:00
|
|
|
strlcpy(svr4_dirent.d_name, bdp->d_name, sizeof(svr4_dirent.d_name));
|
1999-12-12 11:25:33 +00:00
|
|
|
if ((error = copyout((caddr_t)&svr4_dirent, outp, svr4reclen)))
|
1999-01-30 06:29:48 +00:00
|
|
|
goto out;
|
|
|
|
inp += reclen;
|
1999-12-12 11:25:33 +00:00
|
|
|
if (cookiep) {
|
|
|
|
off = *cookiep++;
|
|
|
|
ncookies--;
|
|
|
|
} else
|
|
|
|
off += reclen;
|
|
|
|
outp += svr4reclen;
|
|
|
|
resid -= svr4reclen;
|
|
|
|
len -= reclen;
|
|
|
|
if (justone)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (outp == (caddr_t) uap->dp)
|
1999-01-30 06:29:48 +00:00
|
|
|
goto again;
|
1999-12-12 11:25:33 +00:00
|
|
|
fp->f_offset = off;
|
|
|
|
|
|
|
|
if (justone)
|
|
|
|
nbytes = resid + svr4reclen;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
eof:
|
2001-09-12 08:38:13 +00:00
|
|
|
td->td_retval[0] = nbytes - resid;
|
1999-01-30 06:29:48 +00:00
|
|
|
out:
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2002-01-13 11:58:06 +00:00
|
|
|
fdrop(fp, td);
|
1999-12-12 11:25:33 +00:00
|
|
|
if (cookies)
|
|
|
|
free(cookies, M_TEMP);
|
1999-01-30 06:29:48 +00:00
|
|
|
free(buf, M_TEMP);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_getdents(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_getdents_args *uap;
|
|
|
|
{
|
|
|
|
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 */
|
Change the cap_rights_t type from uint64_t to a structure that we can extend
in the future in a backward compatible (API and ABI) way.
The cap_rights_t represents capability rights. We used to use one bit to
represent one right, but we are running out of spare bits. Currently the new
structure provides place for 114 rights (so 50 more than the previous
cap_rights_t), but it is possible to grow the structure to hold at least 285
rights, although we can make it even larger if 285 rights won't be enough.
The structure definition looks like this:
struct cap_rights {
uint64_t cr_rights[CAP_RIGHTS_VERSION + 2];
};
The initial CAP_RIGHTS_VERSION is 0.
The top two bits in the first element of the cr_rights[] array contain total
number of elements in the array - 2. This means if those two bits are equal to
0, we have 2 array elements.
The top two bits in all remaining array elements should be 0.
The next five bits in all array elements contain array index. Only one bit is
used and bit position in this five-bits range defines array index. This means
there can be at most five array elements in the future.
To define new right the CAPRIGHT() macro must be used. The macro takes two
arguments - an array index and a bit to set, eg.
#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL)
We still support aliases that combine few rights, but the rights have to belong
to the same array element, eg:
#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL)
#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL)
#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP)
There is new API to manage the new cap_rights_t structure:
cap_rights_t *cap_rights_init(cap_rights_t *rights, ...);
void cap_rights_set(cap_rights_t *rights, ...);
void cap_rights_clear(cap_rights_t *rights, ...);
bool cap_rights_is_set(const cap_rights_t *rights, ...);
bool cap_rights_is_valid(const cap_rights_t *rights);
void cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src);
void cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src);
bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
Capability rights to the cap_rights_init(), cap_rights_set(),
cap_rights_clear() and cap_rights_is_set() functions are provided by
separating them with commas, eg:
cap_rights_t rights;
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FSTAT);
There is no need to terminate the list of rights, as those functions are
actually macros that take care of the termination, eg:
#define cap_rights_set(rights, ...) \
__cap_rights_set((rights), __VA_ARGS__, 0ULL)
void __cap_rights_set(cap_rights_t *rights, ...);
Thanks to using one bit as an array index we can assert in those functions that
there are no two rights belonging to different array elements provided
together. For example this is illegal and will be detected, because CAP_LOOKUP
belongs to element 0 and CAP_PDKILL to element 1:
cap_rights_init(&rights, CAP_LOOKUP | CAP_PDKILL);
Providing several rights that belongs to the same array's element this way is
correct, but is not advised. It should only be used for aliases definition.
This commit also breaks compatibility with some existing Capsicum system calls,
but I see no other way to do that. This should be fine as Capsicum is still
experimental and this change is not going to 9.x.
Sponsored by: The FreeBSD Foundation
2013-09-05 00:09:56 +00:00
|
|
|
cap_rights_t rights;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct file *fp;
|
|
|
|
struct uio auio;
|
|
|
|
struct iovec aiov;
|
|
|
|
struct svr4_dirent idb;
|
|
|
|
off_t off; /* true file offset */
|
2012-10-22 17:50:54 +00:00
|
|
|
int buflen, error, eofflag;
|
1999-01-30 06:29:48 +00:00
|
|
|
u_long *cookiebuf = NULL, *cookie;
|
2001-09-12 08:38:13 +00:00
|
|
|
int ncookies = 0, *retval = td->td_retval;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
if (uap->nbytes < 0)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2015-06-16 13:09:18 +00:00
|
|
|
error = getvnode(td, uap->fd, cap_rights_init(&rights, CAP_READ), &fp);
|
Change the cap_rights_t type from uint64_t to a structure that we can extend
in the future in a backward compatible (API and ABI) way.
The cap_rights_t represents capability rights. We used to use one bit to
represent one right, but we are running out of spare bits. Currently the new
structure provides place for 114 rights (so 50 more than the previous
cap_rights_t), but it is possible to grow the structure to hold at least 285
rights, although we can make it even larger if 285 rights won't be enough.
The structure definition looks like this:
struct cap_rights {
uint64_t cr_rights[CAP_RIGHTS_VERSION + 2];
};
The initial CAP_RIGHTS_VERSION is 0.
The top two bits in the first element of the cr_rights[] array contain total
number of elements in the array - 2. This means if those two bits are equal to
0, we have 2 array elements.
The top two bits in all remaining array elements should be 0.
The next five bits in all array elements contain array index. Only one bit is
used and bit position in this five-bits range defines array index. This means
there can be at most five array elements in the future.
To define new right the CAPRIGHT() macro must be used. The macro takes two
arguments - an array index and a bit to set, eg.
#define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL)
We still support aliases that combine few rights, but the rights have to belong
to the same array element, eg:
#define CAP_LOOKUP CAPRIGHT(0, 0x0000000000000400ULL)
#define CAP_FCHMOD CAPRIGHT(0, 0x0000000000002000ULL)
#define CAP_FCHMODAT (CAP_FCHMOD | CAP_LOOKUP)
There is new API to manage the new cap_rights_t structure:
cap_rights_t *cap_rights_init(cap_rights_t *rights, ...);
void cap_rights_set(cap_rights_t *rights, ...);
void cap_rights_clear(cap_rights_t *rights, ...);
bool cap_rights_is_set(const cap_rights_t *rights, ...);
bool cap_rights_is_valid(const cap_rights_t *rights);
void cap_rights_merge(cap_rights_t *dst, const cap_rights_t *src);
void cap_rights_remove(cap_rights_t *dst, const cap_rights_t *src);
bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
Capability rights to the cap_rights_init(), cap_rights_set(),
cap_rights_clear() and cap_rights_is_set() functions are provided by
separating them with commas, eg:
cap_rights_t rights;
cap_rights_init(&rights, CAP_READ, CAP_WRITE, CAP_FSTAT);
There is no need to terminate the list of rights, as those functions are
actually macros that take care of the termination, eg:
#define cap_rights_set(rights, ...) \
__cap_rights_set((rights), __VA_ARGS__, 0ULL)
void __cap_rights_set(cap_rights_t *rights, ...);
Thanks to using one bit as an array index we can assert in those functions that
there are no two rights belonging to different array elements provided
together. For example this is illegal and will be detected, because CAP_LOOKUP
belongs to element 0 and CAP_PDKILL to element 1:
cap_rights_init(&rights, CAP_LOOKUP | CAP_PDKILL);
Providing several rights that belongs to the same array's element this way is
correct, but is not advised. It should only be used for aliases definition.
This commit also breaks compatibility with some existing Capsicum system calls,
but I see no other way to do that. This should be fine as Capsicum is still
experimental and this change is not going to 9.x.
Sponsored by: The FreeBSD Foundation
2013-09-05 00:09:56 +00:00
|
|
|
if (error != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return (error);
|
|
|
|
|
2002-01-13 11:58:06 +00:00
|
|
|
if ((fp->f_flag & FREAD) == 0) {
|
|
|
|
fdrop(fp, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
return (EBADF);
|
2002-01-13 11:58:06 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-06-22 08:41:43 +00:00
|
|
|
vp = fp->f_vnode;
|
2002-01-13 11:58:06 +00:00
|
|
|
if (vp->v_type != VDIR) {
|
|
|
|
fdrop(fp, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
return (EINVAL);
|
2002-01-13 11:58:06 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
buflen = min(MAXBSIZE, uap->nbytes);
|
2003-02-19 05:47:46 +00:00
|
|
|
buf = malloc(buflen, M_TEMP, M_WAITOK);
|
2009-02-13 18:18:14 +00:00
|
|
|
vn_lock(vp, LK_SHARED | LK_RETRY);
|
1999-01-30 06:29:48 +00:00
|
|
|
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;
|
2001-09-12 08:38:13 +00:00
|
|
|
auio.uio_td = td;
|
1999-01-30 06:29:48 +00:00
|
|
|
auio.uio_resid = buflen;
|
|
|
|
auio.uio_offset = off;
|
2002-08-12 01:42:21 +00:00
|
|
|
|
|
|
|
#ifdef MAC
|
2007-10-24 19:04:04 +00:00
|
|
|
error = mac_vnode_check_readdir(td->td_ucred, vp);
|
2002-08-12 01:42:21 +00:00
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
#endif
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
/*
|
|
|
|
* 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, &ncookies,
|
|
|
|
&cookiebuf);
|
2002-01-13 11:58:06 +00:00
|
|
|
if (error) {
|
1999-01-30 06:29:48 +00:00
|
|
|
goto out;
|
2002-01-13 11:58:06 +00:00
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
inp = buf;
|
2002-12-14 01:56:26 +00:00
|
|
|
outp = uap->buf;
|
|
|
|
resid = uap->nbytes;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((len = buflen - auio.uio_resid) == 0)
|
|
|
|
goto eof;
|
|
|
|
|
|
|
|
for (cookie = cookiebuf; len > 0; len -= reclen) {
|
|
|
|
bdp = (struct dirent *)inp;
|
|
|
|
reclen = bdp->d_reclen;
|
|
|
|
if (reclen & 3)
|
1999-12-12 11:25:33 +00:00
|
|
|
panic("svr4_sys_getdents64: bad reclen");
|
2009-05-29 05:51:19 +00:00
|
|
|
if (cookie)
|
|
|
|
off = *cookie++; /* each entry points to the next */
|
|
|
|
else
|
|
|
|
off += reclen;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((off >> 32) != 0) {
|
1999-12-12 11:25:33 +00:00
|
|
|
uprintf("svr4_sys_getdents64: dir offset too large for emulated program");
|
1999-01-30 06:29:48 +00:00
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (bdp->d_fileno == 0) {
|
|
|
|
inp += reclen; /* it is a hole; squish it out */
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* 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_ino_t)bdp->d_fileno;
|
|
|
|
idb.d_off = (svr4_off_t)off;
|
|
|
|
idb.d_reclen = (u_short)svr4_reclen;
|
2009-05-28 21:12:43 +00:00
|
|
|
strlcpy(idb.d_name, bdp->d_name, sizeof(idb.d_name));
|
1999-01-30 06:29:48 +00:00
|
|
|
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 */
|
2002-12-14 01:56:26 +00:00
|
|
|
if (outp == uap->buf)
|
1999-01-30 06:29:48 +00:00
|
|
|
goto again;
|
|
|
|
fp->f_offset = off; /* update the vnode offset */
|
|
|
|
|
|
|
|
eof:
|
2002-12-14 01:56:26 +00:00
|
|
|
*retval = uap->nbytes - resid;
|
1999-01-30 06:29:48 +00:00
|
|
|
out:
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2002-01-13 11:58:06 +00:00
|
|
|
fdrop(fp, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
if (cookiebuf)
|
|
|
|
free(cookiebuf, M_TEMP);
|
|
|
|
free(buf, M_TEMP);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_mmap(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_mmap_args *uap;
|
|
|
|
{
|
|
|
|
struct mmap_args mm;
|
|
|
|
int *retval;
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
retval = td->td_retval;
|
1999-01-30 06:29:48 +00:00
|
|
|
#define _MAP_NEW 0x80000000
|
|
|
|
/*
|
|
|
|
* Verify the arguments.
|
|
|
|
*/
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL; /* XXX still needed? */
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->len == 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
mm.prot = uap->prot;
|
|
|
|
mm.len = uap->len;
|
|
|
|
mm.flags = uap->flags & ~_MAP_NEW;
|
|
|
|
mm.fd = uap->fd;
|
|
|
|
mm.addr = uap->addr;
|
|
|
|
mm.pos = uap->pos;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_mmap(td, &mm);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_mmap64(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_mmap64_args *uap;
|
|
|
|
{
|
|
|
|
struct mmap_args mm;
|
|
|
|
void *rp;
|
|
|
|
|
|
|
|
#define _MAP_NEW 0x80000000
|
|
|
|
/*
|
|
|
|
* Verify the arguments.
|
|
|
|
*/
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->prot & ~(PROT_READ | PROT_WRITE | PROT_EXEC))
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL; /* XXX still needed? */
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->len == 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
mm.prot = uap->prot;
|
|
|
|
mm.len = uap->len;
|
|
|
|
mm.flags = uap->flags & ~_MAP_NEW;
|
|
|
|
mm.fd = uap->fd;
|
|
|
|
mm.addr = uap->addr;
|
|
|
|
mm.pos = uap->pos;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2001-10-10 23:06:54 +00:00
|
|
|
rp = (void *) round_page((vm_offset_t)(td->td_proc->p_vmspace->vm_daddr + maxdsiz));
|
2002-12-14 01:56:26 +00:00
|
|
|
if ((mm.flags & MAP_FIXED) == 0 &&
|
|
|
|
mm.addr != 0 && (void *)mm.addr < rp)
|
|
|
|
mm.addr = rp;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_mmap(td, &mm);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_fchroot(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_fchroot_args *uap;
|
|
|
|
{
|
2015-06-16 09:52:36 +00:00
|
|
|
cap_rights_t rights;
|
2006-07-21 20:28:56 +00:00
|
|
|
struct vnode *vp;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct file *fp;
|
2012-10-22 17:50:54 +00:00
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2007-06-12 00:12:01 +00:00
|
|
|
if ((error = priv_check(td, PRIV_VFS_FCHROOT)) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
2011-08-11 12:30:23 +00:00
|
|
|
/* XXX: we have the chroot priv... what cap might we need? all? */
|
2015-06-16 13:09:18 +00:00
|
|
|
if ((error = getvnode(td, uap->fd, cap_rights_init(&rights), &fp)) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
2003-06-22 08:41:43 +00:00
|
|
|
vp = fp->f_vnode;
|
1999-01-30 06:29:48 +00:00
|
|
|
VREF(vp);
|
2002-01-13 11:58:06 +00:00
|
|
|
fdrop(fp, td);
|
2008-01-10 01:10:58 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
|
2006-07-21 20:28:56 +00:00
|
|
|
error = change_dir(vp, td);
|
|
|
|
if (error)
|
|
|
|
goto fail;
|
|
|
|
#ifdef MAC
|
2007-10-24 19:04:04 +00:00
|
|
|
error = mac_vnode_check_chroot(td->td_ucred, vp);
|
2006-07-21 20:28:56 +00:00
|
|
|
if (error)
|
|
|
|
goto fail;
|
|
|
|
#endif
|
2008-01-13 14:44:15 +00:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2015-07-11 16:19:11 +00:00
|
|
|
error = pwd_chroot(td, vp);
|
2006-07-21 20:28:56 +00:00
|
|
|
vrele(vp);
|
|
|
|
return (error);
|
|
|
|
fail:
|
|
|
|
vput(vp);
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_mknod(td, retval, path, mode, dev)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
register_t *retval;
|
|
|
|
char *path;
|
|
|
|
svr4_mode_t mode;
|
|
|
|
svr4_dev_t dev;
|
|
|
|
{
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
char *newpath;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
CHECKALTEXIST(td, path, &newpath);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2014-11-13 18:01:51 +00:00
|
|
|
if (S_ISFIFO(mode)) {
|
|
|
|
error = kern_mkfifoat(td, AT_FDCWD, newpath, UIO_SYSSPACE,
|
|
|
|
mode);
|
|
|
|
} else {
|
|
|
|
error = kern_mknodat(td, AT_FDCWD, newpath, UIO_SYSSPACE,
|
|
|
|
mode, dev);
|
|
|
|
}
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
free(newpath, M_TEMP);
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_mknod(td, uap)
|
2009-05-29 05:58:46 +00:00
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_mknod_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
int *retval = td->td_retval;
|
|
|
|
return svr4_mknod(td, retval,
|
2002-12-14 01:56:26 +00:00
|
|
|
uap->path, uap->mode,
|
|
|
|
(svr4_dev_t)svr4_to_bsd_odev_t(uap->dev));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_xmknod(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_xmknod_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
int *retval = td->td_retval;
|
|
|
|
return svr4_mknod(td, retval,
|
2002-12-14 01:56:26 +00:00
|
|
|
uap->path, uap->mode,
|
|
|
|
(svr4_dev_t)svr4_to_bsd_dev_t(uap->dev));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_vhangup(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_vhangup_args *uap;
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sysconfig(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sysconfig_args *uap;
|
|
|
|
{
|
|
|
|
int *retval;
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
retval = &(td->td_retval[0]);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->name) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_CONFIG_NGROUPS:
|
2010-01-12 07:49:34 +00:00
|
|
|
*retval = ngroups_max;
|
1999-01-30 06:29:48 +00:00
|
|
|
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 = PAGE_SIZE;
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
#if defined(NOTYET)
|
|
|
|
case SVR4_CONFIG_PHYS_PAGES:
|
|
|
|
#if defined(UVM)
|
|
|
|
*retval = uvmexp.free; /* XXX: free instead of total */
|
|
|
|
#else
|
2014-03-22 10:26:09 +00:00
|
|
|
*retval = vm_cnt.v_free_count; /* XXX: free instead of total */
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_AVPHYS_PAGES:
|
|
|
|
#if defined(UVM)
|
|
|
|
*retval = uvmexp.active; /* XXX: active instead of avg */
|
|
|
|
#else
|
2014-03-22 10:26:09 +00:00
|
|
|
*retval = vm_cnt.v_active_count;/* XXX: active instead of avg */
|
1999-01-30 06:29:48 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif /* NOTYET */
|
2009-05-29 05:37:27 +00:00
|
|
|
case SVR4_CONFIG_COHERENCY:
|
|
|
|
*retval = 0; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_SPLIT_CACHE:
|
|
|
|
*retval = 0; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_ICACHESZ:
|
|
|
|
*retval = 256; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DCACHESZ:
|
|
|
|
*retval = 256; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_ICACHELINESZ:
|
|
|
|
*retval = 64; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DCACHELINESZ:
|
|
|
|
*retval = 64; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_ICACHEBLKSZ:
|
|
|
|
*retval = 64; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DCACHEBLKSZ:
|
|
|
|
*retval = 64; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DCACHETBLKSZ:
|
|
|
|
*retval = 64; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_ICACHE_ASSOC:
|
|
|
|
*retval = 1; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_DCACHE_ASSOC:
|
|
|
|
*retval = 1; /* XXX */
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_MAXPID:
|
|
|
|
*retval = PID_MAX;
|
|
|
|
break;
|
|
|
|
case SVR4_CONFIG_STACK_PROT:
|
|
|
|
*retval = PROT_READ|PROT_WRITE|PROT_EXEC;
|
|
|
|
break;
|
1999-01-30 06:29:48 +00:00
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_break(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_break_args *uap;
|
|
|
|
{
|
2006-06-26 18:36:57 +00:00
|
|
|
struct obreak_args ap;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-06-26 18:36:57 +00:00
|
|
|
ap.nsize = uap->nsize;
|
2011-09-16 13:58:51 +00:00
|
|
|
return (sys_obreak(td, &ap));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline clock_t
|
|
|
|
timeval_to_clock_t(tv)
|
|
|
|
struct timeval *tv;
|
|
|
|
{
|
|
|
|
return tv->tv_sec * hz + tv->tv_usec / (1000000 / hz);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_times(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_times_args *uap;
|
|
|
|
{
|
2004-10-05 18:51:11 +00:00
|
|
|
struct timeval tv, utime, stime, cutime, cstime;
|
|
|
|
struct tms tms;
|
|
|
|
struct proc *p;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-10-05 18:51:11 +00:00
|
|
|
p = td->td_proc;
|
|
|
|
PROC_LOCK(p);
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATLOCK(p);
|
2004-10-05 18:51:11 +00:00
|
|
|
calcru(p, &utime, &stime);
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATUNLOCK(p);
|
2004-10-05 18:51:11 +00:00
|
|
|
calccru(p, &cutime, &cstime);
|
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-10-05 18:51:11 +00:00
|
|
|
tms.tms_utime = timeval_to_clock_t(&utime);
|
|
|
|
tms.tms_stime = timeval_to_clock_t(&stime);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-10-05 18:51:11 +00:00
|
|
|
tms.tms_cutime = timeval_to_clock_t(&cutime);
|
|
|
|
tms.tms_cstime = timeval_to_clock_t(&cstime);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-10-05 18:51:11 +00:00
|
|
|
error = copyout(&tms, uap->tp, sizeof(tms));
|
1999-01-30 06:29:48 +00:00
|
|
|
if (error)
|
2004-10-05 18:51:11 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-10-05 18:51:11 +00:00
|
|
|
microtime(&tv);
|
|
|
|
td->td_retval[0] = (int)timeval_to_clock_t(&tv);
|
|
|
|
return (0);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_ulimit(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_ulimit_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
int *retval = td->td_retval;
|
2004-02-04 21:52:57 +00:00
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->cmd) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_GFILLIM:
|
2015-06-10 10:48:12 +00:00
|
|
|
*retval = lim_cur(td, RLIMIT_FSIZE) / 512;
|
1999-01-30 06:29:48 +00:00
|
|
|
if (*retval == -1)
|
|
|
|
*retval = 0x7fffffff;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SVR4_SFILLIM:
|
|
|
|
{
|
|
|
|
struct rlimit krl;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
krl.rlim_cur = uap->newlimit * 512;
|
2015-06-10 10:48:12 +00:00
|
|
|
krl.rlim_max = lim_max(td, RLIMIT_FSIZE);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2004-02-04 21:52:57 +00:00
|
|
|
error = kern_setrlimit(td, RLIMIT_FSIZE, &krl);
|
1999-01-30 06:29:48 +00:00
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
2015-06-10 10:48:12 +00:00
|
|
|
*retval = lim_cur(td, RLIMIT_FSIZE);
|
1999-01-30 06:29:48 +00:00
|
|
|
if (*retval == -1)
|
|
|
|
*retval = 0x7fffffff;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_GMEMLIM:
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
struct vmspace *vm = td->td_proc->p_vmspace;
|
2001-01-23 21:30:25 +00:00
|
|
|
register_t r;
|
|
|
|
|
2015-06-10 10:48:12 +00:00
|
|
|
r = lim_cur(td, RLIMIT_DATA);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
if (r == -1)
|
|
|
|
r = 0x7fffffff;
|
|
|
|
r += (long) vm->vm_daddr;
|
|
|
|
if (r < 0)
|
|
|
|
r = 0x7fffffff;
|
|
|
|
*retval = r;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_GDESLIM:
|
2015-06-10 10:48:12 +00:00
|
|
|
*retval = lim_cur(td, RLIMIT_NOFILE);
|
1999-01-30 06:29:48 +00:00
|
|
|
if (*retval == -1)
|
|
|
|
*retval = 0x7fffffff;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct proc *
|
|
|
|
svr4_pfind(pid)
|
|
|
|
pid_t pid;
|
|
|
|
{
|
|
|
|
struct proc *p;
|
|
|
|
|
|
|
|
/* look in the live processes */
|
2001-01-23 21:30:25 +00:00
|
|
|
if ((p = pfind(pid)) == NULL)
|
|
|
|
/* look in the zombies */
|
|
|
|
p = zpfind(pid);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2000-12-13 00:17:05 +00:00
|
|
|
return p;
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_pgrpsys(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_pgrpsys_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
int *retval = td->td_retval;
|
|
|
|
struct proc *p = td->td_proc;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->cmd) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case 1: /* setpgrp() */
|
|
|
|
/*
|
|
|
|
* SVR4 setpgrp() (which takes no arguments) has the
|
|
|
|
* semantics that the session ID is also created anew, so
|
|
|
|
* in almost every sense, setpgrp() is identical to
|
|
|
|
* setsid() for SVR4. (Under BSD, the difference is that
|
|
|
|
* a setpgid(0,0) will not create a new session.)
|
|
|
|
*/
|
2011-09-16 13:58:51 +00:00
|
|
|
sys_setsid(td, NULL);
|
1999-01-30 06:29:48 +00:00
|
|
|
/*FALLTHROUGH*/
|
|
|
|
|
|
|
|
case 0: /* getpgrp() */
|
2002-02-23 11:12:57 +00:00
|
|
|
PROC_LOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
*retval = p->p_pgrp->pg_id;
|
2002-02-23 11:12:57 +00:00
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 2: /* getsid(pid) */
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->pid == 0)
|
2002-01-19 06:34:58 +00:00
|
|
|
PROC_LOCK(p);
|
2002-12-14 01:56:26 +00:00
|
|
|
else if ((p = svr4_pfind(uap->pid)) == NULL)
|
1999-01-30 06:29:48 +00:00
|
|
|
return ESRCH;
|
|
|
|
/*
|
|
|
|
* This has already been initialized to the pid of
|
|
|
|
* the session leader.
|
|
|
|
*/
|
2002-01-19 05:31:51 +00:00
|
|
|
*retval = (register_t) p->p_session->s_sid;
|
2001-04-24 00:51:53 +00:00
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 3: /* setsid() */
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_setsid(td, NULL);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
case 4: /* getpgid(pid) */
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->pid == 0)
|
2002-01-19 06:34:58 +00:00
|
|
|
PROC_LOCK(p);
|
2002-12-14 01:56:26 +00:00
|
|
|
else if ((p = svr4_pfind(uap->pid)) == NULL)
|
1999-01-30 06:29:48 +00:00
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
*retval = (int) p->p_pgrp->pg_id;
|
2001-04-24 00:51:53 +00:00
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
case 5: /* setpgid(pid, pgid); */
|
|
|
|
{
|
|
|
|
struct setpgid_args sa;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
sa.pid = uap->pid;
|
|
|
|
sa.pgid = uap->pgid;
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_setpgid(td, &sa);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct svr4_hrtcntl_args {
|
|
|
|
int cmd;
|
|
|
|
int fun;
|
|
|
|
int clk;
|
|
|
|
svr4_hrt_interval_t * iv;
|
|
|
|
svr4_hrt_time_t * ti;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_hrtcntl(td, uap, retval)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_hrtcntl_args *uap;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->fun) {
|
1999-01-30 06:29:48 +00:00
|
|
|
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;
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->clk != SVR4_HRT_CLK_STD) {
|
|
|
|
DPRINTF(("clk == %d\n", uap->clk));
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL;
|
|
|
|
}
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->ti == NULL) {
|
1999-01-30 06:29:48 +00:00
|
|
|
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;
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&t, uap->ti, sizeof(t));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_HRT_CNTL_START:
|
|
|
|
DPRINTF(("htrcntl(START)\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_HRT_CNTL_GET:
|
|
|
|
DPRINTF(("htrcntl(GET)\n"));
|
|
|
|
return ENOSYS;
|
|
|
|
default:
|
2002-12-14 01:56:26 +00:00
|
|
|
DPRINTF(("Bad htrcntl command %d\n", uap->fun));
|
1999-01-30 06:29:48 +00:00
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_hrtsys(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_hrtsys_args *uap;
|
|
|
|
{
|
2001-09-12 08:38:13 +00:00
|
|
|
int *retval = td->td_retval;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->cmd) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_HRT_CNTL:
|
2001-09-12 08:38:13 +00:00
|
|
|
return svr4_hrtcntl(td, (struct svr4_hrtcntl_args *) uap,
|
1999-01-30 06:29:48 +00:00
|
|
|
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:
|
2002-12-14 01:56:26 +00:00
|
|
|
DPRINTF(("Bad hrtsys command %d\n", uap->cmd));
|
1999-01-30 06:29:48 +00:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2006-07-19 19:01:10 +00:00
|
|
|
svr4_setinfo(pid, ru, st, s)
|
|
|
|
pid_t pid;
|
|
|
|
struct rusage *ru;
|
1999-01-30 06:29:48 +00:00
|
|
|
int st;
|
|
|
|
svr4_siginfo_t *s;
|
|
|
|
{
|
|
|
|
svr4_siginfo_t i;
|
|
|
|
int sig;
|
|
|
|
|
|
|
|
memset(&i, 0, sizeof(i));
|
|
|
|
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_signo = SVR4_SIGCHLD;
|
|
|
|
i.svr4_si_errno = 0; /* XXX? */
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
i.svr4_si_pid = pid;
|
|
|
|
if (ru) {
|
|
|
|
i.svr4_si_stime = ru->ru_stime.tv_sec;
|
|
|
|
i.svr4_si_utime = ru->ru_utime.tv_sec;
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (WIFEXITED(st)) {
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_status = WEXITSTATUS(st);
|
|
|
|
i.svr4_si_code = SVR4_CLD_EXITED;
|
1999-01-30 06:29:48 +00:00
|
|
|
} else if (WIFSTOPPED(st)) {
|
|
|
|
sig = WSTOPSIG(st);
|
|
|
|
if (sig >= 0 && sig < NSIG)
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_status = SVR4_BSD2SVR4_SIG(sig);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2005-10-19 09:33:15 +00:00
|
|
|
if (i.svr4_si_status == SVR4_SIGCONT)
|
|
|
|
i.svr4_si_code = SVR4_CLD_CONTINUED;
|
1999-01-30 06:29:48 +00:00
|
|
|
else
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_code = SVR4_CLD_STOPPED;
|
1999-01-30 06:29:48 +00:00
|
|
|
} else {
|
|
|
|
sig = WTERMSIG(st);
|
|
|
|
if (sig >= 0 && sig < NSIG)
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_status = SVR4_BSD2SVR4_SIG(sig);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
if (WCOREDUMP(st))
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_code = SVR4_CLD_DUMPED;
|
1999-01-30 06:29:48 +00:00
|
|
|
else
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_code = SVR4_CLD_KILLED;
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(("siginfo [pid %ld signo %d code %d errno %d status %d]\n",
|
2005-10-19 09:33:15 +00:00
|
|
|
i.svr4_si_pid, i.svr4_si_signo, i.svr4_si_code, i.svr4_si_errno,
|
|
|
|
i.svr4_si_status));
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
return copyout(&i, s, sizeof(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_waitsys(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_waitsys_args *uap;
|
|
|
|
{
|
2006-07-19 19:01:10 +00:00
|
|
|
struct rusage ru;
|
|
|
|
pid_t pid;
|
|
|
|
int nfound, status;
|
2001-09-12 08:38:13 +00:00
|
|
|
int error, *retval = td->td_retval;
|
2006-07-19 19:01:10 +00:00
|
|
|
struct proc *p, *q;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
DPRINTF(("waitsys(%d, %d, %p, %x)\n",
|
|
|
|
uap->grp, uap->id,
|
|
|
|
uap->info, uap->options));
|
|
|
|
|
|
|
|
q = td->td_proc;
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->grp) {
|
2006-07-19 19:01:10 +00:00
|
|
|
case SVR4_P_PID:
|
|
|
|
pid = uap->id;
|
1999-01-30 06:29:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_P_PGID:
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_LOCK(q);
|
|
|
|
pid = -q->p_pgid;
|
|
|
|
PROC_UNLOCK(q);
|
1999-01-30 06:29:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SVR4_P_ALL:
|
2006-07-19 19:01:10 +00:00
|
|
|
pid = WAIT_ANY;
|
1999-01-30 06:29:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
/* Hand off the easy cases to kern_wait(). */
|
|
|
|
if (!(uap->options & (SVR4_WNOWAIT)) &&
|
|
|
|
(uap->options & (SVR4_WEXITED | SVR4_WTRAPPED))) {
|
|
|
|
int options;
|
|
|
|
|
|
|
|
options = 0;
|
|
|
|
if (uap->options & SVR4_WSTOPPED)
|
|
|
|
options |= WUNTRACED;
|
|
|
|
if (uap->options & SVR4_WCONTINUED)
|
|
|
|
options |= WCONTINUED;
|
|
|
|
if (uap->options & SVR4_WNOHANG)
|
|
|
|
options |= WNOHANG;
|
|
|
|
|
|
|
|
error = kern_wait(td, pid, &status, options, &ru);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
if (uap->options & SVR4_WNOHANG && *retval == 0)
|
|
|
|
error = svr4_setinfo(*retval, NULL, 0, uap->info);
|
|
|
|
else
|
|
|
|
error = svr4_setinfo(*retval, &ru, status, uap->info);
|
|
|
|
*retval = 0;
|
|
|
|
return (error);
|
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
/*
|
|
|
|
* Ok, handle the weird cases. Either WNOWAIT is set (meaning we
|
2009-05-20 18:36:17 +00:00
|
|
|
* just want to see if there is a process to harvest, we don't
|
2006-07-19 19:01:10 +00:00
|
|
|
* want to actually harvest it), or WEXIT and WTRAPPED are clear
|
|
|
|
* meaning we want to ignore zombies. Either way, we don't have
|
|
|
|
* to handle harvesting zombies here. We do have to duplicate the
|
2009-05-20 18:36:17 +00:00
|
|
|
* other portions of kern_wait() though, especially for WCONTINUED
|
|
|
|
* and WSTOPPED.
|
2006-07-19 19:01:10 +00:00
|
|
|
*/
|
1999-01-30 06:29:48 +00:00
|
|
|
loop:
|
|
|
|
nfound = 0;
|
2001-03-28 11:52:56 +00:00
|
|
|
sx_slock(&proctree_lock);
|
2006-07-19 19:01:10 +00:00
|
|
|
LIST_FOREACH(p, &q->p_children, p_sibling) {
|
|
|
|
PROC_LOCK(p);
|
|
|
|
if (pid != WAIT_ANY &&
|
|
|
|
p->p_pid != pid && p->p_pgid != -pid) {
|
|
|
|
PROC_UNLOCK(p);
|
|
|
|
DPRINTF(("pid %d pgid %d != %d\n", p->p_pid,
|
|
|
|
p->p_pgid, pid));
|
1999-01-30 06:29:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
2006-07-19 19:01:10 +00:00
|
|
|
if (p_canwait(td, p)) {
|
|
|
|
PROC_UNLOCK(p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
nfound++;
|
2006-07-19 19:01:10 +00:00
|
|
|
|
2007-06-09 18:56:11 +00:00
|
|
|
PROC_SLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
/*
|
|
|
|
* See if we have a zombie. If so, WNOWAIT should be set,
|
|
|
|
* as otherwise we should have called kern_wait() up above.
|
|
|
|
*/
|
|
|
|
if ((p->p_state == PRS_ZOMBIE) &&
|
2002-12-14 01:56:26 +00:00
|
|
|
((uap->options & (SVR4_WEXITED|SVR4_WTRAPPED)))) {
|
2007-06-09 18:56:11 +00:00
|
|
|
PROC_SUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
KASSERT(uap->options & SVR4_WNOWAIT,
|
|
|
|
("WNOWAIT is clear"));
|
|
|
|
|
|
|
|
/* Found a zombie, so cache info in local variables. */
|
|
|
|
pid = p->p_pid;
|
2015-07-18 09:02:50 +00:00
|
|
|
status = KW_EXITCODE(p->p_xexit, p->p_xsig);
|
2007-06-09 18:56:11 +00:00
|
|
|
ru = p->p_ru;
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
calcru(p, &ru.ru_utime, &ru.ru_stime);
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_UNLOCK(p);
|
2001-03-28 11:52:56 +00:00
|
|
|
sx_sunlock(&proctree_lock);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
/* Copy the info out to userland. */
|
|
|
|
*retval = 0;
|
|
|
|
DPRINTF(("found %d\n", pid));
|
|
|
|
return (svr4_setinfo(pid, &ru, status, uap->info));
|
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
/*
|
|
|
|
* See if we have a stopped or continued process.
|
|
|
|
* XXX: This duplicates the same code in kern_wait().
|
|
|
|
*/
|
|
|
|
if ((p->p_flag & P_STOPPED_SIG) &&
|
|
|
|
(p->p_suspcount == p->p_numthreads) &&
|
|
|
|
(p->p_flag & P_WAITED) == 0 &&
|
|
|
|
(p->p_flag & P_TRACED || uap->options & SVR4_WSTOPPED)) {
|
Commit 14/14 of sched_lock decomposition.
- Use thread_lock() rather than sched_lock for per-thread scheduling
sychronization.
- Use the per-process spinlock rather than the sched_lock for per-process
scheduling synchronization.
Tested by: kris, current@
Tested on: i386, amd64, ULE, 4BSD, libthr, libkse, PREEMPTION, etc.
Discussed with: kris, attilio, kmacy, jhb, julian, bde (small parts each)
2007-06-05 00:00:57 +00:00
|
|
|
PROC_SUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
if (((uap->options & SVR4_WNOWAIT)) == 0)
|
|
|
|
p->p_flag |= P_WAITED;
|
|
|
|
sx_sunlock(&proctree_lock);
|
|
|
|
pid = p->p_pid;
|
2015-07-18 09:02:50 +00:00
|
|
|
status = W_STOPCODE(p->p_xsig);
|
2007-06-09 18:56:11 +00:00
|
|
|
ru = p->p_ru;
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
calcru(p, &ru.ru_utime, &ru.ru_stime);
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_UNLOCK(p);
|
|
|
|
|
|
|
|
if (((uap->options & SVR4_WNOWAIT)) == 0) {
|
|
|
|
PROC_LOCK(q);
|
|
|
|
sigqueue_take(p->p_ksi);
|
|
|
|
PROC_UNLOCK(q);
|
2001-03-07 02:17:43 +00:00
|
|
|
}
|
2001-01-23 21:30:25 +00:00
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
*retval = 0;
|
|
|
|
DPRINTF(("jobcontrol %d\n", pid));
|
|
|
|
return (svr4_setinfo(pid, &ru, status, uap->info));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
Commit 14/14 of sched_lock decomposition.
- Use thread_lock() rather than sched_lock for per-thread scheduling
sychronization.
- Use the per-process spinlock rather than the sched_lock for per-process
scheduling synchronization.
Tested by: kris, current@
Tested on: i386, amd64, ULE, 4BSD, libthr, libkse, PREEMPTION, etc.
Discussed with: kris, attilio, kmacy, jhb, julian, bde (small parts each)
2007-06-05 00:00:57 +00:00
|
|
|
PROC_SUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
if (uap->options & SVR4_WCONTINUED &&
|
|
|
|
(p->p_flag & P_CONTINUED)) {
|
|
|
|
sx_sunlock(&proctree_lock);
|
2002-12-14 01:56:26 +00:00
|
|
|
if (((uap->options & SVR4_WNOWAIT)) == 0)
|
2006-07-19 19:01:10 +00:00
|
|
|
p->p_flag &= ~P_CONTINUED;
|
|
|
|
pid = p->p_pid;
|
2007-06-09 18:56:11 +00:00
|
|
|
ru = p->p_ru;
|
2006-07-19 19:01:10 +00:00
|
|
|
status = SIGCONT;
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
calcru(p, &ru.ru_utime, &ru.ru_stime);
|
2014-11-26 14:10:00 +00:00
|
|
|
PROC_STATUNLOCK(p);
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_UNLOCK(p);
|
|
|
|
|
|
|
|
if (((uap->options & SVR4_WNOWAIT)) == 0) {
|
|
|
|
PROC_LOCK(q);
|
|
|
|
sigqueue_take(p->p_ksi);
|
|
|
|
PROC_UNLOCK(q);
|
|
|
|
}
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
*retval = 0;
|
2006-07-19 19:01:10 +00:00
|
|
|
DPRINTF(("jobcontrol %d\n", pid));
|
|
|
|
return (svr4_setinfo(pid, &ru, status, uap->info));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
if (nfound == 0) {
|
|
|
|
sx_sunlock(&proctree_lock);
|
|
|
|
return (ECHILD);
|
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->options & SVR4_WNOHANG) {
|
2006-07-19 19:01:10 +00:00
|
|
|
sx_sunlock(&proctree_lock);
|
1999-01-30 06:29:48 +00:00
|
|
|
*retval = 0;
|
2006-07-19 19:01:10 +00:00
|
|
|
return (svr4_setinfo(0, NULL, 0, uap->info));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
2006-07-19 19:01:10 +00:00
|
|
|
PROC_LOCK(q);
|
|
|
|
sx_sunlock(&proctree_lock);
|
|
|
|
if (q->p_flag & P_STATCHILD) {
|
|
|
|
q->p_flag &= ~P_STATCHILD;
|
|
|
|
error = 0;
|
|
|
|
} else
|
|
|
|
error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "svr4_wait", 0);
|
|
|
|
PROC_UNLOCK(q);
|
|
|
|
if (error)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
bsd_statfs_to_svr4_statvfs(bfs, sfs)
|
|
|
|
const struct statfs *bfs;
|
|
|
|
struct svr4_statvfs *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];
|
|
|
|
memcpy(sfs->f_basetype, bfs->f_fstypename, 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;
|
|
|
|
memcpy(sfs->f_fstr, bfs->f_fstypename, sizeof(sfs->f_fstr)); /* XXX */
|
|
|
|
memset(sfs->f_filler, 0, sizeof(sfs->f_filler));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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];
|
|
|
|
memcpy(sfs->f_basetype, bfs->f_fstypename, 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;
|
|
|
|
memcpy(sfs->f_fstr, bfs->f_fstypename, sizeof(sfs->f_fstr)); /* XXX */
|
|
|
|
memset(sfs->f_filler, 0, sizeof(sfs->f_filler));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_statvfs(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_statvfs_args *uap;
|
|
|
|
{
|
|
|
|
struct svr4_statvfs sfs;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct statfs bfs;
|
|
|
|
char *path;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
CHECKALTEXIST(td, uap->path, &path);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = kern_statfs(td, path, UIO_SYSSPACE, &bfs);
|
|
|
|
free(path, M_TEMP);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&sfs, uap->fs, sizeof(sfs));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_fstatvfs(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_fstatvfs_args *uap;
|
|
|
|
{
|
|
|
|
struct svr4_statvfs sfs;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct statfs bfs;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = kern_fstatfs(td, uap->fd, &bfs);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsd_statfs_to_svr4_statvfs(&bfs, &sfs);
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&sfs, uap->fs, sizeof(sfs));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_statvfs64(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_statvfs64_args *uap;
|
|
|
|
{
|
|
|
|
struct svr4_statvfs64 sfs;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct statfs bfs;
|
|
|
|
char *path;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
CHECKALTEXIST(td, uap->path, &path);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = kern_statfs(td, path, UIO_SYSSPACE, &bfs);
|
|
|
|
free(path, M_TEMP);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&sfs, uap->fs, sizeof(sfs));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_fstatvfs64(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_fstatvfs64_args *uap;
|
|
|
|
{
|
|
|
|
struct svr4_statvfs64 sfs;
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct statfs bfs;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
error = kern_fstatfs(td, uap->fd, &bfs);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsd_statfs_to_svr4_statvfs64(&bfs, &sfs);
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&sfs, uap->fs, sizeof(sfs));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_alarm(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_alarm_args *uap;
|
|
|
|
{
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
struct itimerval itv, oitv;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
- Implement svr4_emul_find() using kern_alternate_path(). This changes
the semantics in that the returned filename to use is now a kernel
pointer rather than a user space pointer. This required changing the
arguments to the CHECKALT*() macros some and changing the various system
calls that used pathnames to use the kern_foo() functions that can accept
kernel space filename pointers instead of calling the system call
directly.
- Use kern_open(), kern_access(), kern_msgctl(), kern_execve(),
kern_mkfifo(), kern_mknod(), kern_statfs(), kern_fstatfs(),
kern_setitimer(), kern_stat(), kern_lstat(), kern_fstat(), kern_utimes(),
kern_pathconf(), and kern_unlink().
2005-02-07 21:53:42 +00:00
|
|
|
timevalclear(&itv.it_interval);
|
|
|
|
itv.it_value.tv_sec = uap->sec;
|
|
|
|
itv.it_value.tv_usec = 0;
|
|
|
|
error = kern_setitimer(td, ITIMER_REAL, &itv, &oitv);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
if (oitv.it_value.tv_usec != 0)
|
|
|
|
oitv.it_value.tv_sec++;
|
|
|
|
td->td_retval[0] = oitv.it_value.tv_sec;
|
|
|
|
return (0);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_gettimeofday(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_gettimeofday_args *uap;
|
|
|
|
{
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->tp) {
|
1999-01-30 06:29:48 +00:00
|
|
|
struct timeval atv;
|
|
|
|
|
|
|
|
microtime(&atv);
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&atv, uap->tp, sizeof (atv));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_facl(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_facl_args *uap;
|
|
|
|
{
|
|
|
|
int *retval;
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
retval = td->td_retval;
|
1999-01-30 06:29:48 +00:00
|
|
|
*retval = 0;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->cmd) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_SYS_SETACL:
|
|
|
|
/* We don't support acls on any filesystem */
|
|
|
|
return ENOSYS;
|
|
|
|
|
|
|
|
case SVR4_SYS_GETACL:
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(retval, &uap->num,
|
|
|
|
sizeof(uap->num));
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
case SVR4_SYS_GETACLCNT:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_acl(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_acl_args *uap;
|
|
|
|
{
|
|
|
|
/* XXX: for now the same */
|
2001-09-12 08:38:13 +00:00
|
|
|
return svr4_sys_facl(td, (struct svr4_sys_facl_args *)uap);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_auditsys(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_auditsys_args *uap;
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* XXX: Big brother is *not* watching.
|
|
|
|
*/
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_memcntl(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_memcntl_args *uap;
|
|
|
|
{
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->cmd) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_MC_SYNC:
|
|
|
|
{
|
|
|
|
struct msync_args msa;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
msa.addr = uap->addr;
|
|
|
|
msa.len = uap->len;
|
|
|
|
msa.flags = (int)uap->arg;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_msync(td, &msa);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
case SVR4_MC_ADVISE:
|
|
|
|
{
|
|
|
|
struct madvise_args maa;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
maa.addr = uap->addr;
|
|
|
|
maa.len = uap->len;
|
|
|
|
maa.behav = (int)uap->arg;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2011-09-16 13:58:51 +00:00
|
|
|
return sys_madvise(td, &maa);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
case SVR4_MC_LOCK:
|
|
|
|
case SVR4_MC_UNLOCK:
|
|
|
|
case SVR4_MC_LOCKAS:
|
|
|
|
case SVR4_MC_UNLOCKAS:
|
|
|
|
return EOPNOTSUPP;
|
|
|
|
default:
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_nice(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_nice_args *uap;
|
|
|
|
{
|
|
|
|
struct setpriority_args ap;
|
|
|
|
int error;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
ap.which = PRIO_PROCESS;
|
|
|
|
ap.who = 0;
|
|
|
|
ap.prio = uap->prio;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2011-09-16 13:58:51 +00:00
|
|
|
if ((error = sys_setpriority(td, &ap)) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
|
|
|
|
|
|
|
/* the cast is stupid, but the structures are the same */
|
2011-09-16 13:58:51 +00:00
|
|
|
if ((error = sys_getpriority(td, (struct getpriority_args *)&ap)) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_resolvepath(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_resolvepath_args *uap;
|
|
|
|
{
|
|
|
|
struct nameidata nd;
|
2001-09-12 08:38:13 +00:00
|
|
|
int error, *retval = td->td_retval;
|
2003-10-20 10:38:48 +00:00
|
|
|
unsigned int ncopy;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2012-10-22 17:50:54 +00:00
|
|
|
NDINIT(&nd, LOOKUP, NOFOLLOW | SAVENAME, UIO_USERSPACE,
|
2002-12-14 01:56:26 +00:00
|
|
|
uap->path, td);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
if ((error = namei(&nd)) != 0)
|
2009-05-20 18:25:16 +00:00
|
|
|
return (error);
|
|
|
|
NDFREE(&nd, NDF_NO_FREE_PNBUF);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
ncopy = min(uap->bufsiz, strlen(nd.ni_cnd.cn_pnbuf) + 1);
|
|
|
|
if ((error = copyout(nd.ni_cnd.cn_pnbuf, uap->buf, ncopy)) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
goto bad;
|
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
*retval = ncopy;
|
1999-01-30 06:29:48 +00:00
|
|
|
bad:
|
1999-12-15 23:02:35 +00:00
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
|
|
|
}
|