Commit 6e91ea2b authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds

exportfs: add fid type

This patchset is a medium scale rewrite of the export operations interface.
The goal is to make the interface less complex, and easier to understand from
the filesystem side, aswell as preparing generic support for exporting of
64bit inode numbers.

This touches all nfs exporting filesystems, and I've done testing on all of
the filesystems I have here locally (xfs, ext2, ext3, reiserfs, jfs)

This patch:

Add a structured fid type so that we don't have to pass an array of u32 values
around everywhere.  It's a union of possible layouts.

As a start there's only the u32 array and the traditional 32bit inode format,
but there will be more in one of my next patchset when I start to document the
various filehandle formats we have in lowlevel filesystems better.

Also add an enum that gives the various filehandle types human- readable
names.

Note: Some people might think the struct containing an anonymous union is
ugly, but I didn't want to pass around a raw union type.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Cc: Neil Brown <neilb@suse.de>
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Cc: <linux-ext4@vger.kernel.org>
Cc: Dave Kleikamp <shaggy@austin.ibm.com>
Cc: Anton Altaparmakov <aia21@cantab.net>
Cc: David Chinner <dgc@sgi.com>
Cc: Timothy Shimmin <tes@sgi.com>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Cc: Hugh Dickins <hugh@veritas.com>
Cc: Chris Mason <mason@suse.com>
Cc: Jeff Mahoney <jeffm@suse.com>
Cc: "Vladimir V. Saveliev" <vs@namesys.com>
Cc: Steven Whitehouse <swhiteho@redhat.com>
Cc: Mark Fasheh <mark.fasheh@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 00bf4098
...@@ -434,29 +434,29 @@ static int get_name(struct dentry *dentry, char *name, ...@@ -434,29 +434,29 @@ static int get_name(struct dentry *dentry, char *name,
* can be used to check that it is still valid. It places them in the * can be used to check that it is still valid. It places them in the
* filehandle fragment where export_decode_fh expects to find them. * filehandle fragment where export_decode_fh expects to find them.
*/ */
static int export_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len, static int export_encode_fh(struct dentry *dentry, struct fid *fid,
int connectable) int *max_len, int connectable)
{ {
struct inode * inode = dentry->d_inode; struct inode * inode = dentry->d_inode;
int len = *max_len; int len = *max_len;
int type = 1; int type = FILEID_INO32_GEN;
if (len < 2 || (connectable && len < 4)) if (len < 2 || (connectable && len < 4))
return 255; return 255;
len = 2; len = 2;
fh[0] = inode->i_ino; fid->i32.ino = inode->i_ino;
fh[1] = inode->i_generation; fid->i32.gen = inode->i_generation;
if (connectable && !S_ISDIR(inode->i_mode)) { if (connectable && !S_ISDIR(inode->i_mode)) {
struct inode *parent; struct inode *parent;
spin_lock(&dentry->d_lock); spin_lock(&dentry->d_lock);
parent = dentry->d_parent->d_inode; parent = dentry->d_parent->d_inode;
fh[2] = parent->i_ino; fid->i32.parent_ino = parent->i_ino;
fh[3] = parent->i_generation; fid->i32.parent_gen = parent->i_generation;
spin_unlock(&dentry->d_lock); spin_unlock(&dentry->d_lock);
len = 4; len = 4;
type = 2; type = FILEID_INO32_GEN_PARENT;
} }
*max_len = len; *max_len = len;
return type; return type;
...@@ -494,34 +494,34 @@ static struct dentry *export_decode_fh(struct super_block *sb, __u32 *fh, int fh ...@@ -494,34 +494,34 @@ static struct dentry *export_decode_fh(struct super_block *sb, __u32 *fh, int fh
acceptable, context); acceptable, context);
} }
int exportfs_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len, int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len,
int connectable) int connectable)
{ {
struct export_operations *nop = dentry->d_sb->s_export_op; struct export_operations *nop = dentry->d_sb->s_export_op;
int error; int error;
if (nop->encode_fh) if (nop->encode_fh)
error = nop->encode_fh(dentry, fh, max_len, connectable); error = nop->encode_fh(dentry, fid->raw, max_len, connectable);
else else
error = export_encode_fh(dentry, fh, max_len, connectable); error = export_encode_fh(dentry, fid, max_len, connectable);
return error; return error;
} }
EXPORT_SYMBOL_GPL(exportfs_encode_fh); EXPORT_SYMBOL_GPL(exportfs_encode_fh);
struct dentry *exportfs_decode_fh(struct vfsmount *mnt, __u32 *fh, int fh_len, struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
int fileid_type, int (*acceptable)(void *, struct dentry *), int fh_len, int fileid_type,
void *context) int (*acceptable)(void *, struct dentry *), void *context)
{ {
struct export_operations *nop = mnt->mnt_sb->s_export_op; struct export_operations *nop = mnt->mnt_sb->s_export_op;
struct dentry *result; struct dentry *result;
if (nop->decode_fh) { if (nop->decode_fh) {
result = nop->decode_fh(mnt->mnt_sb, fh, fh_len, fileid_type, result = nop->decode_fh(mnt->mnt_sb, fid->raw, fh_len,
acceptable, context); fileid_type, acceptable, context);
} else { } else {
result = export_decode_fh(mnt->mnt_sb, fh, fh_len, fileid_type, result = export_decode_fh(mnt->mnt_sb, fid->raw, fh_len,
acceptable, context); fileid_type, acceptable, context);
} }
return result; return result;
......
...@@ -115,8 +115,7 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -115,8 +115,7 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp)); dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp));
if (!fhp->fh_dentry) { if (!fhp->fh_dentry) {
__u32 *datap=NULL; struct fid *fid = NULL, sfid;
__u32 tfh[3]; /* filehandle fragment for oldstyle filehandles */
int fileid_type; int fileid_type;
int data_left = fh->fh_size/4; int data_left = fh->fh_size/4;
...@@ -128,7 +127,6 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -128,7 +127,6 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
if (fh->fh_version == 1) { if (fh->fh_version == 1) {
int len; int len;
datap = fh->fh_auth;
if (--data_left<0) goto out; if (--data_left<0) goto out;
switch (fh->fh_auth_type) { switch (fh->fh_auth_type) {
case 0: break; case 0: break;
...@@ -144,9 +142,11 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -144,9 +142,11 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
fh->fh_fsid[1] = fh->fh_fsid[2]; fh->fh_fsid[1] = fh->fh_fsid[2];
} }
if ((data_left -= len)<0) goto out; if ((data_left -= len)<0) goto out;
exp = rqst_exp_find(rqstp, fh->fh_fsid_type, datap); exp = rqst_exp_find(rqstp, fh->fh_fsid_type,
datap += len; fh->fh_auth);
fid = (struct fid *)(fh->fh_auth + len);
} else { } else {
__u32 tfh[2];
dev_t xdev; dev_t xdev;
ino_t xino; ino_t xino;
if (fh->fh_size != NFS_FHSIZE) if (fh->fh_size != NFS_FHSIZE)
...@@ -190,22 +190,22 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -190,22 +190,22 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
error = nfserr_badhandle; error = nfserr_badhandle;
if (fh->fh_version != 1) { if (fh->fh_version != 1) {
tfh[0] = fh->ofh_ino; sfid.i32.ino = fh->ofh_ino;
tfh[1] = fh->ofh_generation; sfid.i32.gen = fh->ofh_generation;
tfh[2] = fh->ofh_dirino; sfid.i32.parent_ino = fh->ofh_dirino;
datap = tfh; fid = &sfid;
data_left = 3; data_left = 3;
if (fh->ofh_dirino == 0) if (fh->ofh_dirino == 0)
fileid_type = 1; fileid_type = FILEID_INO32_GEN;
else else
fileid_type = 2; fileid_type = FILEID_INO32_GEN_PARENT;
} else } else
fileid_type = fh->fh_fileid_type; fileid_type = fh->fh_fileid_type;
if (fileid_type == 0) if (fileid_type == FILEID_ROOT)
dentry = dget(exp->ex_dentry); dentry = dget(exp->ex_dentry);
else { else {
dentry = exportfs_decode_fh(exp->ex_mnt, datap, dentry = exportfs_decode_fh(exp->ex_mnt, fid,
data_left, fileid_type, data_left, fileid_type,
nfsd_acceptable, exp); nfsd_acceptable, exp);
} }
...@@ -286,16 +286,21 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) ...@@ -286,16 +286,21 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
* an inode. In this case a call to fh_update should be made * an inode. In this case a call to fh_update should be made
* before the fh goes out on the wire ... * before the fh goes out on the wire ...
*/ */
static inline int _fh_update(struct dentry *dentry, struct svc_export *exp, static void _fh_update(struct svc_fh *fhp, struct svc_export *exp,
__u32 *datap, int *maxsize) struct dentry *dentry)
{ {
if (dentry == exp->ex_dentry) { if (dentry != exp->ex_dentry) {
*maxsize = 0; struct fid *fid = (struct fid *)
return 0; (fhp->fh_handle.fh_auth + fhp->fh_handle.fh_size/4 - 1);
} int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
int subtreecheck = !(exp->ex_flags & NFSEXP_NOSUBTREECHECK);
return exportfs_encode_fh(dentry, datap, maxsize, fhp->fh_handle.fh_fileid_type =
!(exp->ex_flags & NFSEXP_NOSUBTREECHECK)); exportfs_encode_fh(dentry, fid, &maxsize, subtreecheck);
fhp->fh_handle.fh_size += maxsize * 4;
} else {
fhp->fh_handle.fh_fileid_type = FILEID_ROOT;
}
} }
/* /*
...@@ -457,12 +462,8 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, ...@@ -457,12 +462,8 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry,
datap += len/4; datap += len/4;
fhp->fh_handle.fh_size = 4 + len; fhp->fh_handle.fh_size = 4 + len;
if (inode) { if (inode)
int size = (fhp->fh_maxsize-len-4)/4; _fh_update(fhp, exp, dentry);
fhp->fh_handle.fh_fileid_type =
_fh_update(dentry, exp, datap, &size);
fhp->fh_handle.fh_size += size*4;
}
if (fhp->fh_handle.fh_fileid_type == 255) if (fhp->fh_handle.fh_fileid_type == 255)
return nfserr_opnotsupp; return nfserr_opnotsupp;
} }
...@@ -479,7 +480,6 @@ __be32 ...@@ -479,7 +480,6 @@ __be32
fh_update(struct svc_fh *fhp) fh_update(struct svc_fh *fhp)
{ {
struct dentry *dentry; struct dentry *dentry;
__u32 *datap;
if (!fhp->fh_dentry) if (!fhp->fh_dentry)
goto out_bad; goto out_bad;
...@@ -490,15 +490,10 @@ fh_update(struct svc_fh *fhp) ...@@ -490,15 +490,10 @@ fh_update(struct svc_fh *fhp)
if (fhp->fh_handle.fh_version != 1) { if (fhp->fh_handle.fh_version != 1) {
_fh_update_old(dentry, fhp->fh_export, &fhp->fh_handle); _fh_update_old(dentry, fhp->fh_export, &fhp->fh_handle);
} else { } else {
int size; if (fhp->fh_handle.fh_fileid_type != FILEID_ROOT)
if (fhp->fh_handle.fh_fileid_type != 0)
goto out; goto out;
datap = fhp->fh_handle.fh_auth+
fhp->fh_handle.fh_size/4 -1; _fh_update(fhp, fhp->fh_export, dentry);
size = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
fhp->fh_handle.fh_fileid_type =
_fh_update(dentry, fhp->fh_export, datap, &size);
fhp->fh_handle.fh_size += size*4;
if (fhp->fh_handle.fh_fileid_type == 255) if (fhp->fh_handle.fh_fileid_type == 255)
return nfserr_opnotsupp; return nfserr_opnotsupp;
} }
......
...@@ -7,6 +7,44 @@ struct dentry; ...@@ -7,6 +7,44 @@ struct dentry;
struct super_block; struct super_block;
struct vfsmount; struct vfsmount;
/*
* The fileid_type identifies how the file within the filesystem is encoded.
* In theory this is freely set and parsed by the filesystem, but we try to
* stick to conventions so we can share some generic code and don't confuse
* sniffers like ethereal/wireshark.
*
* The filesystem must not use the value '0' or '0xff'.
*/
enum fid_type {
/*
* The root, or export point, of the filesystem.
* (Never actually passed down to the filesystem.
*/
FILEID_ROOT = 0,
/*
* 32bit inode number, 32 bit generation number.
*/
FILEID_INO32_GEN = 1,
/*
* 32bit inode number, 32 bit generation number,
* 32 bit parent directory inode number.
*/
FILEID_INO32_GEN_PARENT = 2,
};
struct fid {
union {
struct {
u32 ino;
u32 gen;
u32 parent_ino;
u32 parent_gen;
} i32;
__u32 raw[6];
};
};
/** /**
* struct export_operations - for nfsd to communicate with file systems * struct export_operations - for nfsd to communicate with file systems
...@@ -117,9 +155,9 @@ extern struct dentry *find_exported_dentry(struct super_block *sb, void *obj, ...@@ -117,9 +155,9 @@ extern struct dentry *find_exported_dentry(struct super_block *sb, void *obj,
void *parent, int (*acceptable)(void *context, struct dentry *de), void *parent, int (*acceptable)(void *context, struct dentry *de),
void *context); void *context);
extern int exportfs_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len, extern int exportfs_encode_fh(struct dentry *dentry, struct fid *fid,
int connectable); int *max_len, int connectable);
extern struct dentry *exportfs_decode_fh(struct vfsmount *mnt, __u32 *fh, extern struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
int fh_len, int fileid_type, int (*acceptable)(void *, struct dentry *), int fh_len, int fileid_type, int (*acceptable)(void *, struct dentry *),
void *context); void *context);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment