2007-03-04 08:59:00 +03:00
|
|
|
/* $NetBSD: darwin_stat.c,v 1.7 2007/03/04 06:01:14 christos Exp $ */
|
2003-09-06 15:18:03 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2003 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Emmanuel Dreyfus.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2007-03-04 08:59:00 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: darwin_stat.c,v 1.7 2007/03/04 06:01:14 christos Exp $");
|
2003-09-06 15:18:03 +04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/syscallargs.h>
|
|
|
|
|
2005-09-13 05:42:32 +04:00
|
|
|
#include <compat/sys/signal.h>
|
|
|
|
#include <compat/sys/stat.h>
|
|
|
|
|
2003-09-06 15:18:03 +04:00
|
|
|
#include <compat/common/compat_util.h>
|
|
|
|
|
|
|
|
#include <compat/mach/mach_types.h>
|
|
|
|
#include <compat/mach/mach_vm.h>
|
|
|
|
|
2004-07-29 02:24:06 +04:00
|
|
|
#include <compat/darwin/darwin_audit.h>
|
2003-09-06 15:50:00 +04:00
|
|
|
#include <compat/darwin/darwin_types.h>
|
2003-09-06 15:18:03 +04:00
|
|
|
#include <compat/darwin/darwin_syscallargs.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
darwin_sys_stat(l, v, retval)
|
|
|
|
struct lwp *l;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct darwin_sys_stat_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(struct stat12 *) ub;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct compat_12_sys_stat_args cup;
|
|
|
|
struct proc *p = l->l_proc;
|
2007-03-04 08:59:00 +03:00
|
|
|
void *sg = stackgap_init(p, 0);
|
2003-09-06 15:18:03 +04:00
|
|
|
struct stat12 st;
|
|
|
|
struct stat12 *stp;
|
|
|
|
int error;
|
|
|
|
|
2005-12-11 15:16:03 +03:00
|
|
|
CHECK_ALT_EXIST(l, &sg, SCARG(uap, path));
|
2003-09-06 15:18:03 +04:00
|
|
|
stp = stackgap_alloc(p, &sg, sizeof(*stp));
|
|
|
|
|
|
|
|
SCARG(&cup, path) = SCARG(uap, path);
|
|
|
|
SCARG(&cup, ub) = stp;
|
|
|
|
|
|
|
|
if ((error = compat_12_sys_stat(l, &cup, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(stp, &st, sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
st.st_dev = native_to_darwin_dev(st.st_dev);
|
|
|
|
st.st_rdev = native_to_darwin_dev(st.st_rdev);
|
|
|
|
|
|
|
|
if ((error = copyout(&st, SCARG(uap, ub), sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
darwin_sys_fstat(l, v, retval)
|
|
|
|
struct lwp *l;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct darwin_sys_fstat_args /* {
|
|
|
|
syscallarg(int) fd;
|
|
|
|
syscallarg(struct stat12 *) ub;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct compat_12_sys_fstat_args cup;
|
|
|
|
struct proc *p = l->l_proc;
|
2007-03-04 08:59:00 +03:00
|
|
|
void *sg = stackgap_init(p, 0);
|
2003-09-06 15:18:03 +04:00
|
|
|
struct stat12 st;
|
|
|
|
struct stat12 *stp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
stp = stackgap_alloc(p, &sg, sizeof(*stp));
|
|
|
|
|
|
|
|
SCARG(&cup, fd) = SCARG(uap, fd);
|
|
|
|
SCARG(&cup, sb) = stp;
|
|
|
|
|
|
|
|
if ((error = compat_12_sys_fstat(l, &cup, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(stp, &st, sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
st.st_dev = native_to_darwin_dev(st.st_dev);
|
|
|
|
st.st_rdev = native_to_darwin_dev(st.st_rdev);
|
|
|
|
|
|
|
|
if ((error = copyout(&st, SCARG(uap, sb), sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
darwin_sys_lstat(l, v, retval)
|
|
|
|
struct lwp *l;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct darwin_sys_lstat_args /* {
|
|
|
|
syscallarg(char *) path;
|
|
|
|
syscallarg(struct stat12 *) ub;
|
|
|
|
} */ *uap = v;
|
|
|
|
struct compat_12_sys_lstat_args cup;
|
|
|
|
struct proc *p = l->l_proc;
|
2007-03-04 08:59:00 +03:00
|
|
|
void *sg = stackgap_init(p, 0);
|
2003-09-06 15:18:03 +04:00
|
|
|
struct stat12 st;
|
|
|
|
struct stat12 *stp;
|
|
|
|
int error;
|
|
|
|
|
2005-12-11 15:16:03 +03:00
|
|
|
CHECK_ALT_EXIST(l, &sg, SCARG(uap, path));
|
2003-09-06 15:18:03 +04:00
|
|
|
stp = stackgap_alloc(p, &sg, sizeof(*stp));
|
|
|
|
|
|
|
|
SCARG(&cup, path) = SCARG(uap, path);
|
|
|
|
SCARG(&cup, ub) = stp;
|
|
|
|
|
|
|
|
if ((error = compat_12_sys_lstat(l, &cup, retval)) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((error = copyin(stp, &st, sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
st.st_dev = native_to_darwin_dev(st.st_dev);
|
|
|
|
st.st_rdev = native_to_darwin_dev(st.st_rdev);
|
|
|
|
|
|
|
|
if ((error = copyout(&st, SCARG(uap, ub), sizeof(st))) != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-09-06 15:50:00 +04:00
|
|
|
int
|
|
|
|
darwin_sys_mknod(l, v, retval)
|
|
|
|
struct lwp *l;
|
|
|
|
void *v;
|
|
|
|
register_t *retval;
|
|
|
|
{
|
|
|
|
struct darwin_sys_mknod_args /* {
|
|
|
|
syscallarg(char) path;
|
|
|
|
syscallarg(mode_t) mode;
|
|
|
|
syscallarg(dev_t) dev:
|
|
|
|
} */ *uap = v;
|
|
|
|
struct sys_mknod_args cup;
|
|
|
|
struct proc *p = l->l_proc;
|
2007-03-04 08:59:00 +03:00
|
|
|
void *sg = stackgap_init(p, 0);
|
2003-09-06 15:50:00 +04:00
|
|
|
|
2005-12-11 15:16:03 +03:00
|
|
|
CHECK_ALT_CREAT(l, &sg, SCARG(uap, path));
|
2003-09-06 15:50:00 +04:00
|
|
|
|
|
|
|
SCARG(&cup, path) = SCARG(uap, path);
|
|
|
|
SCARG(&cup, mode) = SCARG(uap, mode);
|
|
|
|
SCARG(&cup, dev) = darwin_to_native_dev(SCARG(uap, dev));
|
|
|
|
|
|
|
|
return sys_mknod(l, &cup, retval);
|
|
|
|
}
|