2005-09-10 04:04:24 +08:00
|
|
|
/*
|
|
|
|
* V9FS FID Management
|
|
|
|
*
|
2007-10-18 03:31:07 +08:00
|
|
|
* Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
|
2006-03-02 18:54:33 +08:00
|
|
|
* Copyright (C) 2005, 2006 by Eric Van Hensbergen <ericvh@gmail.com>
|
2005-09-10 04:04:24 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2006-03-25 19:07:28 +08:00
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
2005-09-10 04:04:24 +08:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to:
|
|
|
|
* Free Software Foundation
|
|
|
|
* 51 Franklin Street, Fifth Floor
|
|
|
|
* Boston, MA 02111-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/fs.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2006-10-19 01:55:46 +08:00
|
|
|
#include <linux/sched.h>
|
2005-09-10 04:04:24 +08:00
|
|
|
#include <linux/idr.h>
|
2007-07-11 06:57:28 +08:00
|
|
|
#include <net/9p/9p.h>
|
|
|
|
#include <net/9p/client.h>
|
2005-09-10 04:04:24 +08:00
|
|
|
|
|
|
|
#include "v9fs.h"
|
|
|
|
#include "v9fs_vfs.h"
|
|
|
|
#include "fid.h"
|
|
|
|
|
|
|
|
/**
|
2007-10-18 03:31:07 +08:00
|
|
|
* v9fs_fid_add - add a fid to a dentry
|
|
|
|
* @dentry: dentry that the fid is being added to
|
2005-09-10 04:04:24 +08:00
|
|
|
* @fid: fid to add
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-02-28 14:50:20 +08:00
|
|
|
static inline void __add_fid(struct dentry *dentry, struct p9_fid *fid)
|
2005-09-10 04:04:24 +08:00
|
|
|
{
|
2013-02-28 14:50:20 +08:00
|
|
|
hlist_add_head(&fid->dlist, (struct hlist_head *)&dentry->d_fsdata);
|
|
|
|
}
|
2005-09-10 04:04:24 +08:00
|
|
|
|
2013-02-28 14:18:14 +08:00
|
|
|
void v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid)
|
2005-09-10 04:04:24 +08:00
|
|
|
{
|
2013-02-28 11:37:21 +08:00
|
|
|
spin_lock(&dentry->d_lock);
|
2013-02-28 14:50:20 +08:00
|
|
|
__add_fid(dentry, fid);
|
2013-02-28 11:37:21 +08:00
|
|
|
spin_unlock(&dentry->d_lock);
|
2005-09-10 04:04:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-10-18 03:31:07 +08:00
|
|
|
* v9fs_fid_find - retrieve a fid that belongs to the specified uid
|
2005-09-10 04:04:24 +08:00
|
|
|
* @dentry: dentry to look for fid in
|
2007-10-18 03:31:07 +08:00
|
|
|
* @uid: return fid that belongs to the specified user
|
|
|
|
* @any: if non-zero, return any fid associated with the dentry
|
2005-09-10 04:04:24 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-01-31 03:48:53 +08:00
|
|
|
static struct p9_fid *v9fs_fid_find(struct dentry *dentry, kuid_t uid, int any)
|
2005-09-10 04:04:24 +08:00
|
|
|
{
|
2007-10-18 03:31:07 +08:00
|
|
|
struct p9_fid *fid, *ret;
|
|
|
|
|
2014-08-20 08:17:38 +08:00
|
|
|
p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p) uid %d any %d\n",
|
|
|
|
dentry, dentry, from_kuid(&init_user_ns, uid),
|
2013-01-31 03:48:53 +08:00
|
|
|
any);
|
2007-10-18 03:31:07 +08:00
|
|
|
ret = NULL;
|
2013-02-28 14:13:19 +08:00
|
|
|
/* we'll recheck under lock if there's anything to look in */
|
|
|
|
if (dentry->d_fsdata) {
|
|
|
|
struct hlist_head *h = (struct hlist_head *)&dentry->d_fsdata;
|
2013-02-28 11:37:21 +08:00
|
|
|
spin_lock(&dentry->d_lock);
|
2013-03-04 05:23:02 +08:00
|
|
|
hlist_for_each_entry(fid, h, dlist) {
|
2013-01-31 03:48:53 +08:00
|
|
|
if (any || uid_eq(fid->uid, uid)) {
|
2007-10-18 03:31:07 +08:00
|
|
|
ret = fid;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-28 11:37:21 +08:00
|
|
|
spin_unlock(&dentry->d_lock);
|
2007-10-18 03:31:07 +08:00
|
|
|
}
|
2007-07-11 06:57:28 +08:00
|
|
|
|
2007-10-18 03:31:07 +08:00
|
|
|
return ret;
|
2007-07-11 06:57:28 +08:00
|
|
|
}
|
2005-09-10 04:04:24 +08:00
|
|
|
|
2010-06-30 21:48:50 +08:00
|
|
|
/*
|
|
|
|
* We need to hold v9ses->rename_sem as long as we hold references
|
|
|
|
* to returned path array. Array element contain pointers to
|
|
|
|
* dentry names.
|
|
|
|
*/
|
|
|
|
static int build_path_from_dentry(struct v9fs_session_info *v9ses,
|
|
|
|
struct dentry *dentry, char ***names)
|
|
|
|
{
|
|
|
|
int n = 0, i;
|
|
|
|
char **wnames;
|
|
|
|
struct dentry *ds;
|
|
|
|
|
|
|
|
for (ds = dentry; !IS_ROOT(ds); ds = ds->d_parent)
|
|
|
|
n++;
|
|
|
|
|
|
|
|
wnames = kmalloc(sizeof(char *) * n, GFP_KERNEL);
|
|
|
|
if (!wnames)
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
for (ds = dentry, i = (n-1); i >= 0; i--, ds = ds->d_parent)
|
|
|
|
wnames[i] = (char *)ds->d_name.name;
|
|
|
|
|
|
|
|
*names = wnames;
|
|
|
|
return n;
|
|
|
|
err_out:
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2011-02-28 19:34:11 +08:00
|
|
|
static struct p9_fid *v9fs_fid_lookup_with_uid(struct dentry *dentry,
|
2013-01-31 03:48:53 +08:00
|
|
|
kuid_t uid, int any)
|
2007-01-26 16:57:06 +08:00
|
|
|
{
|
2010-06-30 21:48:50 +08:00
|
|
|
struct dentry *ds;
|
2007-10-18 03:31:07 +08:00
|
|
|
char **wnames, *uname;
|
2011-02-28 19:34:11 +08:00
|
|
|
int i, n, l, clone, access;
|
|
|
|
struct v9fs_session_info *v9ses;
|
|
|
|
struct p9_fid *fid, *old_fid = NULL;
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2011-03-08 19:09:50 +08:00
|
|
|
v9ses = v9fs_dentry2v9ses(dentry);
|
2007-10-18 03:31:07 +08:00
|
|
|
access = v9ses->flags & V9FS_ACCESS_MASK;
|
|
|
|
fid = v9fs_fid_find(dentry, uid, any);
|
|
|
|
if (fid)
|
|
|
|
return fid;
|
2010-06-30 21:48:50 +08:00
|
|
|
/*
|
|
|
|
* we don't have a matching fid. To do a TWALK we need
|
|
|
|
* parent fid. We need to prevent rename when we want to
|
|
|
|
* look at the parent.
|
|
|
|
*/
|
|
|
|
down_read(&v9ses->rename_sem);
|
2007-10-18 03:31:07 +08:00
|
|
|
ds = dentry->d_parent;
|
|
|
|
fid = v9fs_fid_find(ds, uid, any);
|
2010-06-30 21:48:50 +08:00
|
|
|
if (fid) {
|
|
|
|
/* Found the parent fid do a lookup with that */
|
|
|
|
fid = p9_client_walk(fid, 1, (char **)&dentry->d_name.name, 1);
|
|
|
|
goto fid_out;
|
|
|
|
}
|
|
|
|
up_read(&v9ses->rename_sem);
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2010-06-30 21:48:50 +08:00
|
|
|
/* start from the root and try to do a lookup */
|
|
|
|
fid = v9fs_fid_find(dentry->d_sb->s_root, uid, any);
|
|
|
|
if (!fid) {
|
|
|
|
/* the user is not attached to the fs yet */
|
|
|
|
if (access == V9FS_ACCESS_SINGLE)
|
|
|
|
return ERR_PTR(-EPERM);
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2010-06-30 21:48:50 +08:00
|
|
|
if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses))
|
|
|
|
uname = NULL;
|
|
|
|
else
|
|
|
|
uname = v9ses->uname;
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2010-06-30 21:48:50 +08:00
|
|
|
fid = p9_client_attach(v9ses->clnt, NULL, uname, uid,
|
|
|
|
v9ses->aname);
|
|
|
|
if (IS_ERR(fid))
|
|
|
|
return fid;
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2010-06-30 21:48:50 +08:00
|
|
|
v9fs_fid_add(dentry->d_sb->s_root, fid);
|
|
|
|
}
|
|
|
|
/* If we are root ourself just return that */
|
|
|
|
if (dentry->d_sb->s_root == dentry)
|
2007-10-18 03:31:07 +08:00
|
|
|
return fid;
|
2010-06-30 21:48:50 +08:00
|
|
|
/*
|
|
|
|
* Do a multipath walk with attached root.
|
|
|
|
* When walking parent we need to make sure we
|
|
|
|
* don't have a parallel rename happening
|
|
|
|
*/
|
|
|
|
down_read(&v9ses->rename_sem);
|
|
|
|
n = build_path_from_dentry(v9ses, dentry, &wnames);
|
|
|
|
if (n < 0) {
|
|
|
|
fid = ERR_PTR(n);
|
|
|
|
goto err_out;
|
|
|
|
}
|
2007-10-18 03:31:07 +08:00
|
|
|
clone = 1;
|
|
|
|
i = 0;
|
|
|
|
while (i < n) {
|
|
|
|
l = min(n - i, P9_MAXWELEM);
|
2010-06-30 21:48:50 +08:00
|
|
|
/*
|
|
|
|
* We need to hold rename lock when doing a multipath
|
|
|
|
* walk to ensure none of the patch component change
|
|
|
|
*/
|
2007-10-18 03:31:07 +08:00
|
|
|
fid = p9_client_walk(fid, l, &wnames[i], clone);
|
2008-02-07 09:25:08 +08:00
|
|
|
if (IS_ERR(fid)) {
|
2010-03-19 20:47:26 +08:00
|
|
|
if (old_fid) {
|
|
|
|
/*
|
|
|
|
* If we fail, clunk fid which are mapping
|
|
|
|
* to path component and not the last component
|
|
|
|
* of the path.
|
|
|
|
*/
|
|
|
|
p9_client_clunk(old_fid);
|
|
|
|
}
|
2007-10-18 03:31:07 +08:00
|
|
|
kfree(wnames);
|
2010-06-30 21:48:50 +08:00
|
|
|
goto err_out;
|
2007-10-18 03:31:07 +08:00
|
|
|
}
|
2010-03-19 20:47:26 +08:00
|
|
|
old_fid = fid;
|
2007-10-18 03:31:07 +08:00
|
|
|
i += l;
|
|
|
|
clone = 0;
|
|
|
|
}
|
|
|
|
kfree(wnames);
|
2010-06-30 21:48:50 +08:00
|
|
|
fid_out:
|
2013-02-28 14:50:20 +08:00
|
|
|
if (!IS_ERR(fid)) {
|
|
|
|
spin_lock(&dentry->d_lock);
|
|
|
|
if (d_unhashed(dentry)) {
|
|
|
|
spin_unlock(&dentry->d_lock);
|
|
|
|
p9_client_clunk(fid);
|
|
|
|
fid = ERR_PTR(-ENOENT);
|
|
|
|
} else {
|
|
|
|
__add_fid(dentry, fid);
|
|
|
|
spin_unlock(&dentry->d_lock);
|
|
|
|
}
|
|
|
|
}
|
2010-06-30 21:48:50 +08:00
|
|
|
err_out:
|
|
|
|
up_read(&v9ses->rename_sem);
|
2007-07-11 06:57:28 +08:00
|
|
|
return fid;
|
2007-01-26 16:57:06 +08:00
|
|
|
}
|
2007-10-18 03:31:07 +08:00
|
|
|
|
2011-02-28 19:34:11 +08:00
|
|
|
/**
|
|
|
|
* v9fs_fid_lookup - lookup for a fid, try to walk if not found
|
|
|
|
* @dentry: dentry to look for fid in
|
|
|
|
*
|
|
|
|
* Look for a fid in the specified dentry for the current user.
|
|
|
|
* If no fid is found, try to create one walking from a fid from the parent
|
|
|
|
* dentry (if it has one), or the root dentry. If the user haven't accessed
|
|
|
|
* the fs yet, attach now and walk from the root.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
|
|
|
|
{
|
2013-01-31 03:48:53 +08:00
|
|
|
kuid_t uid;
|
2011-02-28 19:34:11 +08:00
|
|
|
int any, access;
|
|
|
|
struct v9fs_session_info *v9ses;
|
|
|
|
|
2011-03-08 19:09:50 +08:00
|
|
|
v9ses = v9fs_dentry2v9ses(dentry);
|
2011-02-28 19:34:11 +08:00
|
|
|
access = v9ses->flags & V9FS_ACCESS_MASK;
|
|
|
|
switch (access) {
|
|
|
|
case V9FS_ACCESS_SINGLE:
|
|
|
|
case V9FS_ACCESS_USER:
|
|
|
|
case V9FS_ACCESS_CLIENT:
|
|
|
|
uid = current_fsuid();
|
|
|
|
any = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case V9FS_ACCESS_ANY:
|
|
|
|
uid = v9ses->uid;
|
|
|
|
any = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-01-31 03:48:53 +08:00
|
|
|
uid = INVALID_UID;
|
2011-02-28 19:34:11 +08:00
|
|
|
any = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return v9fs_fid_lookup_with_uid(dentry, uid, any);
|
|
|
|
}
|
|
|
|
|
2011-02-28 19:33:57 +08:00
|
|
|
struct p9_fid *v9fs_writeback_fid(struct dentry *dentry)
|
|
|
|
{
|
2011-03-24 23:08:35 +08:00
|
|
|
int err;
|
2011-02-28 19:33:57 +08:00
|
|
|
struct p9_fid *fid;
|
|
|
|
|
2016-08-03 23:12:12 +08:00
|
|
|
fid = clone_fid(v9fs_fid_lookup_with_uid(dentry, GLOBAL_ROOT_UID, 0));
|
2011-02-28 19:33:57 +08:00
|
|
|
if (IS_ERR(fid))
|
|
|
|
goto error_out;
|
|
|
|
/*
|
|
|
|
* writeback fid will only be used to write back the
|
|
|
|
* dirty pages. We always request for the open fid in read-write
|
|
|
|
* mode so that a partial page write which result in page
|
|
|
|
* read can work.
|
|
|
|
*/
|
2011-03-24 23:08:35 +08:00
|
|
|
err = p9_client_open(fid, O_RDWR);
|
2011-02-28 19:33:57 +08:00
|
|
|
if (err < 0) {
|
|
|
|
p9_client_clunk(fid);
|
|
|
|
fid = ERR_PTR(err);
|
|
|
|
goto error_out;
|
|
|
|
}
|
|
|
|
error_out:
|
|
|
|
return fid;
|
|
|
|
}
|