2008-11-20 12:22:57 +03:00
|
|
|
/* $NetBSD: vfs_syscalls_20.c,v 1.33 2008/11/20 09:22:57 ad 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>
|
2008-11-20 12:22:57 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_20.c,v 1.33 2008/11/20 09:22:57 ad 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/malloc.h>
|
|
|
|
#include <sys/dirent.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/syscallargs.h>
|
2006-05-15 01:19:33 +04:00
|
|
|
#include <sys/kauth.h>
|
2004-04-21 05:05:31 +04:00
|
|
|
|
2005-09-13 05:42:32 +04:00
|
|
|
#include <compat/sys/mount.h>
|
|
|
|
|
2004-04-21 05:05:31 +04:00
|
|
|
#define MOUNTNO_NONE 0
|
|
|
|
#define MOUNTNO_UFS 1 /* UNIX "Fast" Filesystem */
|
|
|
|
#define MOUNTNO_NFS 2 /* Network Filesystem */
|
|
|
|
#define MOUNTNO_MFS 3 /* Memory Filesystem */
|
|
|
|
#define MOUNTNO_MSDOS 4 /* MSDOS Filesystem */
|
|
|
|
#define MOUNTNO_CD9660 5 /* iso9660 cdrom */
|
|
|
|
#define MOUNTNO_FDESC 6 /* /dev/fd filesystem */
|
2005-02-27 01:58:54 +03:00
|
|
|
#define MOUNTNO_KERNFS 7 /* kernel variable filesystem */
|
2004-04-21 05:05:31 +04:00
|
|
|
#define MOUNTNO_DEVFS 8 /* device node filesystem */
|
|
|
|
#define MOUNTNO_AFS 9 /* AFS 3.x */
|
|
|
|
static const struct {
|
|
|
|
const char *name;
|
|
|
|
const int value;
|
|
|
|
} nv[] = {
|
|
|
|
{ MOUNT_UFS, MOUNTNO_UFS },
|
|
|
|
{ MOUNT_NFS, MOUNTNO_NFS },
|
|
|
|
{ MOUNT_MFS, MOUNTNO_MFS },
|
|
|
|
{ MOUNT_MSDOS, MOUNTNO_MSDOS },
|
|
|
|
{ MOUNT_CD9660, MOUNTNO_CD9660 },
|
|
|
|
{ MOUNT_FDESC, MOUNTNO_FDESC },
|
|
|
|
{ MOUNT_KERNFS, MOUNTNO_KERNFS },
|
|
|
|
{ MOUNT_AFS, MOUNTNO_AFS },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2005-02-27 01:58:54 +03:00
|
|
|
vfs2fs(struct statfs12 *bfs, const struct statvfs *fs)
|
2004-04-21 05:05:31 +04:00
|
|
|
{
|
|
|
|
struct statfs12 ofs;
|
|
|
|
int i = 0;
|
|
|
|
ofs.f_type = 0;
|
|
|
|
ofs.f_oflags = (short)fs->f_flag;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(nv) / sizeof(nv[0]); i++) {
|
|
|
|
if (strcmp(nv[i].name, fs->f_fstypename) == 0) {
|
|
|
|
ofs.f_type = nv[i].value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#define CLAMP(a) (long)(((a) & ~LONG_MAX) ? LONG_MAX : (a))
|
|
|
|
ofs.f_bsize = CLAMP(fs->f_frsize);
|
|
|
|
ofs.f_iosize = CLAMP(fs->f_iosize);
|
|
|
|
ofs.f_blocks = CLAMP(fs->f_blocks);
|
|
|
|
ofs.f_bfree = CLAMP(fs->f_bfree);
|
|
|
|
if (fs->f_bfree > fs->f_bresvd)
|
|
|
|
ofs.f_bavail = CLAMP(fs->f_bfree - fs->f_bresvd);
|
|
|
|
else
|
|
|
|
ofs.f_bavail = -CLAMP(fs->f_bresvd - fs->f_bfree);
|
|
|
|
ofs.f_files = CLAMP(fs->f_files);
|
|
|
|
ofs.f_ffree = CLAMP(fs->f_ffree);
|
|
|
|
ofs.f_fsid = fs->f_fsidx;
|
|
|
|
ofs.f_owner = fs->f_owner;
|
|
|
|
ofs.f_flags = (long)fs->f_flag;
|
|
|
|
ofs.f_syncwrites = CLAMP(fs->f_syncwrites);
|
|
|
|
ofs.f_asyncwrites = CLAMP(fs->f_asyncwrites);
|
|
|
|
(void)strncpy(ofs.f_fstypename, fs->f_fstypename,
|
|
|
|
sizeof(ofs.f_fstypename));
|
|
|
|
(void)strncpy(ofs.f_mntonname, fs->f_mntonname,
|
|
|
|
sizeof(ofs.f_mntonname));
|
|
|
|
(void)strncpy(ofs.f_mntfromname, fs->f_mntfromname,
|
|
|
|
sizeof(ofs.f_mntfromname));
|
|
|
|
|
|
|
|
return copyout(&ofs, bfs, sizeof(ofs));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
int error = 0;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct nameidata nd;
|
|
|
|
|
2007-12-08 22:29:36 +03:00
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW | TRYEMULROOT, UIO_USERSPACE,
|
|
|
|
SCARG(uap, path));
|
2004-04-21 05:05:31 +04:00
|
|
|
if ((error = namei(&nd)) != 0)
|
|
|
|
return error;
|
2004-05-23 00:46:53 +04:00
|
|
|
|
2004-04-21 05:05:31 +04:00
|
|
|
mp = nd.ni_vp->v_mount;
|
2004-05-23 00:46:53 +04:00
|
|
|
|
|
|
|
sbuf = malloc(sizeof(*sbuf), M_TEMP, M_WAITOK);
|
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;
|
|
|
|
|
2004-05-23 00:53:26 +04:00
|
|
|
error = vfs2fs(SCARG(uap, buf), sbuf);
|
2004-05-23 00:46:53 +04:00
|
|
|
done:
|
2008-01-07 19:08:46 +03:00
|
|
|
vrele(nd.ni_vp);
|
2004-05-23 00:46:53 +04:00
|
|
|
free(sbuf, M_TEMP);
|
|
|
|
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);
|
|
|
|
mp = ((struct vnode *)fp->f_data)->v_mount;
|
2006-06-12 04:46:50 +04:00
|
|
|
sbuf = malloc(sizeof(*sbuf), M_TEMP, M_WAITOK);
|
|
|
|
if ((error = dostatvfs(mp, sbuf, l, 0, 1)) != 0)
|
2004-04-21 05:05:31 +04:00
|
|
|
goto out;
|
2006-06-12 04:46:50 +04:00
|
|
|
error = vfs2fs(SCARG(uap, buf), sbuf);
|
2004-04-21 05:05:31 +04:00
|
|
|
out:
|
2008-03-22 00:54:58 +03:00
|
|
|
fd_putfile(SCARG(uap, fd));
|
2006-06-12 04:46:50 +04:00
|
|
|
free(sbuf, M_TEMP);
|
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
|
|
|
} */
|
2004-04-21 05:05:31 +04:00
|
|
|
int root = 0;
|
|
|
|
struct mount *mp, *nmp;
|
2006-06-12 04:46:50 +04:00
|
|
|
struct statvfs *sbuf;
|
2004-04-21 05:05:31 +04:00
|
|
|
struct statfs12 *sfsp;
|
|
|
|
size_t count, maxcount;
|
|
|
|
int error = 0;
|
|
|
|
|
2006-06-30 19:50:46 +04:00
|
|
|
sbuf = malloc(sizeof(*sbuf), M_TEMP, M_WAITOK);
|
2004-04-21 05:05:31 +04:00
|
|
|
maxcount = (size_t)SCARG(uap, bufsize) / sizeof(struct statfs12);
|
|
|
|
sfsp = SCARG(uap, buf);
|
2007-10-11 00:42:20 +04:00
|
|
|
mutex_enter(&mountlist_lock);
|
2004-04-21 05:05:31 +04:00
|
|
|
count = 0;
|
|
|
|
for (mp = CIRCLEQ_FIRST(&mountlist); mp != (void *)&mountlist;
|
|
|
|
mp = nmp) {
|
PR kern/38141 lookup/vfs_busy acquire rwlock recursively
Simplify the mount locking. Remove all the crud to deal with recursion on
the mount lock, and crud to deal with unmount as another weirdo lock.
Hopefully this will once and for all fix the deadlocks with this. With this
commit there are two locks on each mount:
- krwlock_t mnt_unmounting. This is used to prevent unmount across critical
sections like getnewvnode(). It's only ever read locked with rw_tryenter(),
and is only ever write locked in dounmount(). A write hold can't be taken
on this lock if the current LWP could hold a vnode lock.
- kmutex_t mnt_updating. This is taken by threads updating the mount, for
example when going r/o -> r/w, and is only present to serialize updates.
In order to take this lock, a read hold must first be taken on
mnt_unmounting, and the two need to be held across the operation.
One effect of this change: previously if an unmount failed, we would make a
half hearted attempt to back out of it gracefully, but that was unlikely to
work in a lot of cases. Now while an unmount that will be aborted is in
progress, new file operations within the mount will fail instead of being
delayed. That is unlikely to be a problem though, because if the admin
requests unmount of a file system then s(he) has made a decision to deny
access to the resource.
2008-05-06 22:43:44 +04:00
|
|
|
if (vfs_busy(mp, &nmp)) {
|
2004-04-21 05:05:31 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sfsp && count < maxcount) {
|
2006-06-12 04:46:50 +04:00
|
|
|
error = dostatvfs(mp, sbuf, l, SCARG(uap, flags), 0);
|
2004-04-21 05:05:31 +04:00
|
|
|
if (error) {
|
2008-04-30 16:49:16 +04:00
|
|
|
vfs_unbusy(mp, false, &nmp);
|
2004-04-21 05:05:31 +04:00
|
|
|
continue;
|
|
|
|
}
|
2006-06-12 04:46:50 +04:00
|
|
|
error = vfs2fs(sfsp, sbuf);
|
2004-04-21 05:05:31 +04:00
|
|
|
if (error) {
|
2008-04-30 16:49:16 +04:00
|
|
|
vfs_unbusy(mp, false, NULL);
|
2006-06-12 04:46:50 +04:00
|
|
|
goto out;
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
|
|
|
sfsp++;
|
2006-06-12 04:46:50 +04:00
|
|
|
root |= strcmp(sbuf->f_mntonname, "/") == 0;
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
|
|
|
count++;
|
2008-04-30 16:49:16 +04:00
|
|
|
vfs_unbusy(mp, false, &nmp);
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|
2007-10-11 00:42:20 +04:00
|
|
|
mutex_exit(&mountlist_lock);
|
2005-12-11 15:16:03 +03:00
|
|
|
if (root == 0 && l->l_proc->p_cwdi->cwdi_rdir) {
|
2004-04-21 05:05:31 +04:00
|
|
|
/*
|
|
|
|
* fake a root entry
|
|
|
|
*/
|
2006-06-30 19:50:46 +04:00
|
|
|
if ((error = dostatvfs(l->l_proc->p_cwdi->cwdi_rdir->v_mount,
|
|
|
|
sbuf, l, SCARG(uap, flags), 1)) != 0)
|
2006-06-12 04:46:50 +04:00
|
|
|
goto out;
|
2004-04-21 05:05:31 +04:00
|
|
|
if (sfsp)
|
2006-06-12 04:46:50 +04:00
|
|
|
error = vfs2fs(sfsp, sbuf);
|
2004-04-21 05:05:31 +04:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (sfsp && count > maxcount)
|
|
|
|
*retval = maxcount;
|
|
|
|
else
|
|
|
|
*retval = count;
|
2006-06-12 04:46:50 +04:00
|
|
|
out:
|
|
|
|
free(sbuf, M_TEMP);
|
2004-04-21 05:05:31 +04:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2006-07-13 16:00:24 +04:00
|
|
|
if ((error = VFS_FHTOVP(mp, (struct fid*)&fh.fh_fid, &vp)))
|
2004-04-21 05:05:31 +04:00
|
|
|
return (error);
|
|
|
|
mp = vp->v_mount;
|
2008-01-07 19:08:46 +03:00
|
|
|
VOP_UNLOCK(vp, 0);
|
2006-06-12 04:46:50 +04:00
|
|
|
sbuf = malloc(sizeof(*sbuf), M_TEMP, M_WAITOK);
|
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;
|
|
|
|
error = vfs2fs(SCARG(uap, buf), sbuf);
|
|
|
|
out:
|
2008-01-07 19:08:46 +03:00
|
|
|
vrele(vp);
|
2006-06-12 04:46:50 +04:00
|
|
|
free(sbuf, M_TEMP);
|
|
|
|
return error;
|
2004-04-21 05:05:31 +04:00
|
|
|
}
|