2020-06-28 17:37:53 +03:00
|
|
|
/* $NetBSD: vfs_syscalls_20.c,v 1.46 2020/06/28 14:37:53 christos Exp $ */
|
2004-04-21 05:05:31 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* 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. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)vfs_syscalls.c 8.42 (Berkeley) 7/31/95
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2020-06-28 17:37:53 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_20.c,v 1.46 2020/06/28 14:37:53 christos Exp $");
|
2004-04-21 05:05:31 +04:00
|
|
|
|
2008-11-14 16:10:33 +03:00
|
|
|
#ifdef _KERNEL_OPT
|
2004-04-21 05:05:31 +04:00
|
|
|
#include "opt_compat_netbsd.h"
|
2008-11-14 16:10:33 +03:00
|
|
|
#endif
|
2004-04-21 05:05:31 +04:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/filedesc.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/dirent.h>
|
|
|
|
#include <sys/sysctl.h>
|
2019-01-27 05:08:33 +03:00
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <sys/syscallvar.h>
|
2004-04-21 05:05:31 +04:00
|
|
|
#include <sys/syscallargs.h>
|
2006-05-15 01:19:33 +04:00
|
|
|
#include <sys/kauth.h>
|
2019-09-23 01:59:37 +03:00
|
|
|
#include <sys/vfs_syscalls.h>
|
2004-04-21 05:05:31 +04:00
|
|
|
|
2019-01-27 05:08:33 +03:00
|
|
|
#include <compat/common/compat_mod.h>
|
|
|
|
|
2005-09-13 05:42:32 +04:00
|
|
|
#include <compat/sys/mount.h>
|
2019-09-23 01:59:37 +03:00
|
|
|
#include <compat/sys/statvfs.h>
|
2005-09-13 05:42:32 +04:00
|
|
|
|
2019-01-27 05:08:33 +03:00
|
|
|
static const struct syscall_package vfs_syscalls_20_syscalls[] = {
|
|
|
|
{ SYS_compat_20_fhstatfs, 0, (sy_call_t *)compat_20_sys_fhstatfs },
|
|
|
|
{ SYS_compat_20_fstatfs, 0, (sy_call_t *)compat_20_sys_fstatfs },
|
|
|
|
{ SYS_compat_20_getfsstat, 0, (sy_call_t *)compat_20_sys_getfsstat },
|
|
|
|
{ SYS_compat_20_statfs, 0, (sy_call_t *)compat_20_sys_statfs },
|
|
|
|
{ 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2004-04-21 05:05:31 +04:00
|
|
|
/*
|
|
|
|
* Get filesystem statistics.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
compat_20_sys_statfs(struct lwp *l, const struct compat_20_sys_statfs_args *uap, register_t *retval)
|
2004-04-21 05:05:31 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
2004-04-21 05:05:31 +04:00
|
|
|
syscallarg(const char *) path;
|
|
|
|
syscallarg(struct statfs12 *) buf;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2004-04-21 05:05:31 +04:00
|
|
|
struct mount *mp;
|
2004-05-23 00:46:53 +04:00
|
|
|
struct statvfs *sbuf;
|
2015-07-24 16:02:52 +03:00
|
|
|
int error;
|
Convert 67 namei call sites to use namei_simple, in these functions:
check_console, veriexecclose, veriexec_delete, veriexec_file_add,
emul_find_root, coff_load_shlib (sh3 version), coff_load_shlib,
compat_20_sys_statfs, compat_20_netbsd32_statfs,
ELFNAME2(netbsd32,probe_noteless), darwin_sys_statfs,
ibcs2_sys_statfs, ibcs2_sys_statvfs, linux_sys_uselib,
osf1_sys_statfs, sunos_sys_statfs, sunos32_sys_statfs,
ultrix_sys_statfs, do_sys_mount, fss_create_files (3 of 4),
adosfs_mount, cd9660_mount, coda_ioctl, coda_mount, ext2fs_mount,
ffs_mount, filecore_mount, hfs_mount, lfs_mount, msdosfs_mount,
ntfs_mount, sysvbfs_mount, udf_mount, union_mount, sys_chflags,
sys_lchflags, sys_chmod, sys_lchmod, sys_chown, sys_lchown,
sys___posix_chown, sys___posix_lchown, sys_link, do_sys_pstatvfs,
sys_quotactl, sys_revoke, sys_truncate, do_sys_utimes, sys_extattrctl,
sys_extattr_set_file, sys_extattr_set_link, sys_extattr_get_file,
sys_extattr_get_link, sys_extattr_delete_file,
sys_extattr_delete_link, sys_extattr_list_file, sys_extattr_list_link,
sys_setxattr, sys_lsetxattr, sys_getxattr, sys_lgetxattr,
sys_listxattr, sys_llistxattr, sys_removexattr, sys_lremovexattr
All have been scrutinized (several times, in fact) and compile-tested,
but not all have been explicitly tested in action.
XXX: While I haven't (intentionally) changed the use or nonuse of
XXX: TRYEMULROOT in any of these places, I'm not convinced all the
XXX: uses are correct; an audit might be desirable.
2009-06-29 09:08:15 +04:00
|
|
|
struct vnode *vp;
|
2004-04-21 05:05:31 +04:00
|
|
|
|
Convert 67 namei call sites to use namei_simple, in these functions:
check_console, veriexecclose, veriexec_delete, veriexec_file_add,
emul_find_root, coff_load_shlib (sh3 version), coff_load_shlib,
compat_20_sys_statfs, compat_20_netbsd32_statfs,
ELFNAME2(netbsd32,probe_noteless), darwin_sys_statfs,
ibcs2_sys_statfs, ibcs2_sys_statvfs, linux_sys_uselib,
osf1_sys_statfs, sunos_sys_statfs, sunos32_sys_statfs,
ultrix_sys_statfs, do_sys_mount, fss_create_files (3 of 4),
adosfs_mount, cd9660_mount, coda_ioctl, coda_mount, ext2fs_mount,
ffs_mount, filecore_mount, hfs_mount, lfs_mount, msdosfs_mount,
ntfs_mount, sysvbfs_mount, udf_mount, union_mount, sys_chflags,
sys_lchflags, sys_chmod, sys_lchmod, sys_chown, sys_lchown,
sys___posix_chown, sys___posix_lchown, sys_link, do_sys_pstatvfs,
sys_quotactl, sys_revoke, sys_truncate, do_sys_utimes, sys_extattrctl,
sys_extattr_set_file, sys_extattr_set_link, sys_extattr_get_file,
sys_extattr_get_link, sys_extattr_delete_file,
sys_extattr_delete_link, sys_extattr_list_file, sys_extattr_list_link,
sys_setxattr, sys_lsetxattr, sys_getxattr, sys_lgetxattr,
sys_listxattr, sys_llistxattr, sys_removexattr, sys_lremovexattr
All have been scrutinized (several times, in fact) and compile-tested,
but not all have been explicitly tested in action.
XXX: While I haven't (intentionally) changed the use or nonuse of
XXX: TRYEMULROOT in any of these places, I'm not convinced all the
XXX: uses are correct; an audit might be desirable.
2009-06-29 09:08:15 +04:00
|
|
|
error = namei_simple_user(SCARG(uap, path),
|
|
|
|
NSM_FOLLOW_TRYEMULROOT, &vp);
|
|
|
|
if (error != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
return error;
|
2004-05-23 00:46:53 +04:00
|
|
|
|
Convert 67 namei call sites to use namei_simple, in these functions:
check_console, veriexecclose, veriexec_delete, veriexec_file_add,
emul_find_root, coff_load_shlib (sh3 version), coff_load_shlib,
compat_20_sys_statfs, compat_20_netbsd32_statfs,
ELFNAME2(netbsd32,probe_noteless), darwin_sys_statfs,
ibcs2_sys_statfs, ibcs2_sys_statvfs, linux_sys_uselib,
osf1_sys_statfs, sunos_sys_statfs, sunos32_sys_statfs,
ultrix_sys_statfs, do_sys_mount, fss_create_files (3 of 4),
adosfs_mount, cd9660_mount, coda_ioctl, coda_mount, ext2fs_mount,
ffs_mount, filecore_mount, hfs_mount, lfs_mount, msdosfs_mount,
ntfs_mount, sysvbfs_mount, udf_mount, union_mount, sys_chflags,
sys_lchflags, sys_chmod, sys_lchmod, sys_chown, sys_lchown,
sys___posix_chown, sys___posix_lchown, sys_link, do_sys_pstatvfs,
sys_quotactl, sys_revoke, sys_truncate, do_sys_utimes, sys_extattrctl,
sys_extattr_set_file, sys_extattr_set_link, sys_extattr_get_file,
sys_extattr_get_link, sys_extattr_delete_file,
sys_extattr_delete_link, sys_extattr_list_file, sys_extattr_list_link,
sys_setxattr, sys_lsetxattr, sys_getxattr, sys_lgetxattr,
sys_listxattr, sys_llistxattr, sys_removexattr, sys_lremovexattr
All have been scrutinized (several times, in fact) and compile-tested,
but not all have been explicitly tested in action.
XXX: While I haven't (intentionally) changed the use or nonuse of
XXX: TRYEMULROOT in any of these places, I'm not convinced all the
XXX: uses are correct; an audit might be desirable.
2009-06-29 09:08:15 +04:00
|
|
|
mp = vp->v_mount;
|
2004-05-23 00:46:53 +04:00
|
|
|
|
2019-09-23 01:59:37 +03:00
|
|
|
sbuf = STATVFSBUF_GET();
|
2005-12-11 15:16:03 +03:00
|
|
|
if ((error = dostatvfs(mp, sbuf, l, 0, 1)) != 0)
|
2004-05-23 00:46:53 +04:00
|
|
|
goto done;
|
|
|
|
|
2019-10-04 04:28:02 +03:00
|
|
|
error = statvfs_to_statfs12_copy(sbuf, SCARG(uap, buf), 0);
|
2004-05-23 00:46:53 +04:00
|
|
|
done:
|
Convert 67 namei call sites to use namei_simple, in these functions:
check_console, veriexecclose, veriexec_delete, veriexec_file_add,
emul_find_root, coff_load_shlib (sh3 version), coff_load_shlib,
compat_20_sys_statfs, compat_20_netbsd32_statfs,
ELFNAME2(netbsd32,probe_noteless), darwin_sys_statfs,
ibcs2_sys_statfs, ibcs2_sys_statvfs, linux_sys_uselib,
osf1_sys_statfs, sunos_sys_statfs, sunos32_sys_statfs,
ultrix_sys_statfs, do_sys_mount, fss_create_files (3 of 4),
adosfs_mount, cd9660_mount, coda_ioctl, coda_mount, ext2fs_mount,
ffs_mount, filecore_mount, hfs_mount, lfs_mount, msdosfs_mount,
ntfs_mount, sysvbfs_mount, udf_mount, union_mount, sys_chflags,
sys_lchflags, sys_chmod, sys_lchmod, sys_chown, sys_lchown,
sys___posix_chown, sys___posix_lchown, sys_link, do_sys_pstatvfs,
sys_quotactl, sys_revoke, sys_truncate, do_sys_utimes, sys_extattrctl,
sys_extattr_set_file, sys_extattr_set_link, sys_extattr_get_file,
sys_extattr_get_link, sys_extattr_delete_file,
sys_extattr_delete_link, sys_extattr_list_file, sys_extattr_list_link,
sys_setxattr, sys_lsetxattr, sys_getxattr, sys_lgetxattr,
sys_listxattr, sys_llistxattr, sys_removexattr, sys_lremovexattr
All have been scrutinized (several times, in fact) and compile-tested,
but not all have been explicitly tested in action.
XXX: While I haven't (intentionally) changed the use or nonuse of
XXX: TRYEMULROOT in any of these places, I'm not convinced all the
XXX: uses are correct; an audit might be desirable.
2009-06-29 09:08:15 +04:00
|
|
|
vrele(vp);
|
2019-09-23 01:59:37 +03:00
|
|
|
STATVFSBUF_PUT(sbuf);
|
2004-05-23 00:46:53 +04:00
|
|
|
return error;
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get filesystem statistics.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
compat_20_sys_fstatfs(struct lwp *l, const struct compat_20_sys_fstatfs_args *uap, register_t *retval)
|
2004-04-21 05:05:31 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
2004-04-21 05:05:31 +04:00
|
|
|
syscallarg(int) fd;
|
|
|
|
syscallarg(struct statfs12 *) buf;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2004-04-21 05:05:31 +04:00
|
|
|
struct file *fp;
|
|
|
|
struct mount *mp;
|
2006-06-12 04:46:50 +04:00
|
|
|
struct statvfs *sbuf;
|
2004-04-21 05:05:31 +04:00
|
|
|
int error;
|
|
|
|
|
2008-06-24 15:18:14 +04:00
|
|
|
/* fd_getvnode() will use the descriptor for us */
|
|
|
|
if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
return (error);
|
2014-09-05 13:20:59 +04:00
|
|
|
mp = fp->f_vnode->v_mount;
|
2019-09-23 01:59:37 +03:00
|
|
|
sbuf = STATVFSBUF_GET();
|
2006-06-12 04:46:50 +04:00
|
|
|
if ((error = dostatvfs(mp, sbuf, l, 0, 1)) != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
goto out;
|
2019-10-04 04:28:02 +03:00
|
|
|
error = statvfs_to_statfs12_copy(sbuf, SCARG(uap, buf), 0);
|
2004-04-21 05:05:31 +04:00
|
|
|
out:
|
2008-03-22 00:54:58 +03:00
|
|
|
fd_putfile(SCARG(uap, fd));
|
2019-09-23 01:59:37 +03:00
|
|
|
STATVFSBUF_PUT(sbuf);
|
2004-04-21 05:05:31 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get statistics on all filesystems.
|
|
|
|
*/
|
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
compat_20_sys_getfsstat(struct lwp *l, const struct compat_20_sys_getfsstat_args *uap, register_t *retval)
|
2004-04-21 05:05:31 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
2004-04-21 05:05:31 +04:00
|
|
|
syscallarg(struct statfs12 *) buf;
|
|
|
|
syscallarg(long) bufsize;
|
|
|
|
syscallarg(int) flags;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2019-09-23 01:59:37 +03:00
|
|
|
return do_sys_getvfsstat(l, SCARG(uap, buf), SCARG(uap, bufsize),
|
2019-10-04 04:28:02 +03:00
|
|
|
SCARG(uap, flags), statvfs_to_statfs12_copy,
|
2020-06-28 17:37:53 +03:00
|
|
|
sizeof(struct statfs12), retval);
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-12-21 02:02:38 +03:00
|
|
|
compat_20_sys_fhstatfs(struct lwp *l, const struct compat_20_sys_fhstatfs_args *uap, register_t *retval)
|
2004-04-21 05:05:31 +04:00
|
|
|
{
|
2007-12-21 02:02:38 +03:00
|
|
|
/* {
|
2006-07-13 16:00:24 +04:00
|
|
|
syscallarg(const struct compat_30_fhandle *) fhp;
|
2004-04-21 05:05:31 +04:00
|
|
|
syscallarg(struct statfs12 *) buf;
|
2007-12-21 02:02:38 +03:00
|
|
|
} */
|
2006-06-12 04:46:50 +04:00
|
|
|
struct statvfs *sbuf;
|
2006-07-13 16:00:24 +04:00
|
|
|
struct compat_30_fhandle fh;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct mount *mp;
|
|
|
|
struct vnode *vp;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Must be super user
|
|
|
|
*/
|
2006-11-14 16:34:29 +03:00
|
|
|
if ((error = kauth_authorize_system(l->l_cred,
|
|
|
|
KAUTH_SYSTEM_FILEHANDLE, 0, NULL, NULL, NULL)))
|
2004-04-21 05:05:31 +04:00
|
|
|
return (error);
|
|
|
|
|
2006-07-13 16:00:24 +04:00
|
|
|
if ((error = copyin(SCARG(uap, fhp), &fh, sizeof(fh))) != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
|
|
|
|
return (ESTALE);
|
2020-01-17 23:08:06 +03:00
|
|
|
error = VFS_FHTOVP(mp, (struct fid*)&fh.fh_fid, LK_EXCLUSIVE, &vp);
|
|
|
|
if (error != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
return (error);
|
|
|
|
mp = vp->v_mount;
|
2010-06-24 16:58:48 +04:00
|
|
|
VOP_UNLOCK(vp);
|
2019-09-23 01:59:37 +03:00
|
|
|
sbuf = STATVFSBUF_GET();
|
2007-11-26 22:01:26 +03:00
|
|
|
if ((error = VFS_STATVFS(mp, sbuf)) != 0)
|
2006-06-12 04:46:50 +04:00
|
|
|
goto out;
|
2019-10-04 04:28:02 +03:00
|
|
|
error = statvfs_to_statfs12_copy(sbuf, SCARG(uap, buf), 0);
|
2006-06-12 04:46:50 +04:00
|
|
|
out:
|
2008-01-07 19:08:46 +03:00
|
|
|
vrele(vp);
|
2019-09-23 01:59:37 +03:00
|
|
|
STATVFSBUF_PUT(sbuf);
|
2006-06-12 04:46:50 +04:00
|
|
|
return error;
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
2019-01-27 05:08:33 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
vfs_syscalls_20_init(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return syscall_establish(NULL, vfs_syscalls_20_syscalls);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
vfs_syscalls_20_fini(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return syscall_disestablish(NULL, vfs_syscalls_20_syscalls);
|
|
|
|
}
|