Commit 94e07a75 authored by Namjae Jeon's avatar Namjae Jeon Committed by Al Viro

fs: encode_fh: return FILEID_INVALID if invalid fid_type

This patch is a follow up on below patch:

[PATCH] exportfs: add FILEID_INVALID to indicate invalid fid_type
commit: 216b6cbdSigned-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: default avatarVivek Trivedi <t.vivek@samsung.com>
Acked-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
Acked-by: default avatarSage Weil <sage@inktank.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 182be684
...@@ -22,10 +22,10 @@ static int btrfs_encode_fh(struct inode *inode, u32 *fh, int *max_len, ...@@ -22,10 +22,10 @@ static int btrfs_encode_fh(struct inode *inode, u32 *fh, int *max_len,
if (parent && (len < BTRFS_FID_SIZE_CONNECTABLE)) { if (parent && (len < BTRFS_FID_SIZE_CONNECTABLE)) {
*max_len = BTRFS_FID_SIZE_CONNECTABLE; *max_len = BTRFS_FID_SIZE_CONNECTABLE;
return 255; return FILEID_INVALID;
} else if (len < BTRFS_FID_SIZE_NON_CONNECTABLE) { } else if (len < BTRFS_FID_SIZE_NON_CONNECTABLE) {
*max_len = BTRFS_FID_SIZE_NON_CONNECTABLE; *max_len = BTRFS_FID_SIZE_NON_CONNECTABLE;
return 255; return FILEID_INVALID;
} }
len = BTRFS_FID_SIZE_NON_CONNECTABLE; len = BTRFS_FID_SIZE_NON_CONNECTABLE;
......
...@@ -81,7 +81,7 @@ static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len, ...@@ -81,7 +81,7 @@ static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len,
if (parent_inode) { if (parent_inode) {
/* nfsd wants connectable */ /* nfsd wants connectable */
*max_len = connected_handle_length; *max_len = connected_handle_length;
type = 255; type = FILEID_INVALID;
} else { } else {
dout("encode_fh %p\n", dentry); dout("encode_fh %p\n", dentry);
fh->ino = ceph_ino(inode); fh->ino = ceph_ino(inode);
...@@ -90,7 +90,7 @@ static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len, ...@@ -90,7 +90,7 @@ static int ceph_encode_fh(struct inode *inode, u32 *rawfh, int *max_len,
} }
} else { } else {
*max_len = handle_length; *max_len = handle_length;
type = 255; type = FILEID_INVALID;
} }
if (dentry) if (dentry)
dput(dentry); dput(dentry);
......
...@@ -678,7 +678,7 @@ static int fuse_encode_fh(struct inode *inode, u32 *fh, int *max_len, ...@@ -678,7 +678,7 @@ static int fuse_encode_fh(struct inode *inode, u32 *fh, int *max_len,
if (*max_len < len) { if (*max_len < len) {
*max_len = len; *max_len = len;
return 255; return FILEID_INVALID;
} }
nodeid = get_fuse_inode(inode)->nodeid; nodeid = get_fuse_inode(inode)->nodeid;
......
...@@ -37,10 +37,10 @@ static int gfs2_encode_fh(struct inode *inode, __u32 *p, int *len, ...@@ -37,10 +37,10 @@ static int gfs2_encode_fh(struct inode *inode, __u32 *p, int *len,
if (parent && (*len < GFS2_LARGE_FH_SIZE)) { if (parent && (*len < GFS2_LARGE_FH_SIZE)) {
*len = GFS2_LARGE_FH_SIZE; *len = GFS2_LARGE_FH_SIZE;
return 255; return FILEID_INVALID;
} else if (*len < GFS2_SMALL_FH_SIZE) { } else if (*len < GFS2_SMALL_FH_SIZE) {
*len = GFS2_SMALL_FH_SIZE; *len = GFS2_SMALL_FH_SIZE;
return 255; return FILEID_INVALID;
} }
fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32); fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32);
......
...@@ -125,10 +125,10 @@ isofs_export_encode_fh(struct inode *inode, ...@@ -125,10 +125,10 @@ isofs_export_encode_fh(struct inode *inode,
*/ */
if (parent && (len < 5)) { if (parent && (len < 5)) {
*max_len = 5; *max_len = 5;
return 255; return FILEID_INVALID;
} else if (len < 3) { } else if (len < 3) {
*max_len = 3; *max_len = 3;
return 255; return FILEID_INVALID;
} }
len = 3; len = 3;
......
...@@ -517,11 +517,11 @@ static int nilfs_encode_fh(struct inode *inode, __u32 *fh, int *lenp, ...@@ -517,11 +517,11 @@ static int nilfs_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
if (parent && *lenp < NILFS_FID_SIZE_CONNECTABLE) { if (parent && *lenp < NILFS_FID_SIZE_CONNECTABLE) {
*lenp = NILFS_FID_SIZE_CONNECTABLE; *lenp = NILFS_FID_SIZE_CONNECTABLE;
return 255; return FILEID_INVALID;
} }
if (*lenp < NILFS_FID_SIZE_NON_CONNECTABLE) { if (*lenp < NILFS_FID_SIZE_NON_CONNECTABLE) {
*lenp = NILFS_FID_SIZE_NON_CONNECTABLE; *lenp = NILFS_FID_SIZE_NON_CONNECTABLE;
return 255; return FILEID_INVALID;
} }
fid->cno = root->cno; fid->cno = root->cno;
......
...@@ -195,11 +195,11 @@ static int ocfs2_encode_fh(struct inode *inode, u32 *fh_in, int *max_len, ...@@ -195,11 +195,11 @@ static int ocfs2_encode_fh(struct inode *inode, u32 *fh_in, int *max_len,
if (parent && (len < 6)) { if (parent && (len < 6)) {
*max_len = 6; *max_len = 6;
type = 255; type = FILEID_INVALID;
goto bail; goto bail;
} else if (len < 3) { } else if (len < 3) {
*max_len = 3; *max_len = 3;
type = 255; type = FILEID_INVALID;
goto bail; goto bail;
} }
......
...@@ -1603,10 +1603,10 @@ int reiserfs_encode_fh(struct inode *inode, __u32 * data, int *lenp, ...@@ -1603,10 +1603,10 @@ int reiserfs_encode_fh(struct inode *inode, __u32 * data, int *lenp,
if (parent && (maxlen < 5)) { if (parent && (maxlen < 5)) {
*lenp = 5; *lenp = 5;
return 255; return FILEID_INVALID;
} else if (maxlen < 3) { } else if (maxlen < 3) {
*lenp = 3; *lenp = 3;
return 255; return FILEID_INVALID;
} }
data[0] = inode->i_ino; data[0] = inode->i_ino;
......
...@@ -1270,10 +1270,10 @@ static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp, ...@@ -1270,10 +1270,10 @@ static int udf_encode_fh(struct inode *inode, __u32 *fh, int *lenp,
if (parent && (len < 5)) { if (parent && (len < 5)) {
*lenp = 5; *lenp = 5;
return 255; return FILEID_INVALID;
} else if (len < 3) { } else if (len < 3) {
*lenp = 3; *lenp = 3;
return 255; return FILEID_INVALID;
} }
*lenp = 3; *lenp = 3;
......
...@@ -48,7 +48,7 @@ static int xfs_fileid_length(int fileid_type) ...@@ -48,7 +48,7 @@ static int xfs_fileid_length(int fileid_type)
case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG: case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
return 6; return 6;
} }
return 255; /* invalid */ return FILEID_INVALID;
} }
STATIC int STATIC int
...@@ -90,7 +90,7 @@ xfs_fs_encode_fh( ...@@ -90,7 +90,7 @@ xfs_fs_encode_fh(
len = xfs_fileid_length(fileid_type); len = xfs_fileid_length(fileid_type);
if (*max_len < len) { if (*max_len < len) {
*max_len = len; *max_len = len;
return 255; return FILEID_INVALID;
} }
*max_len = len; *max_len = len;
......
...@@ -89,7 +89,7 @@ static int cleancache_get_key(struct inode *inode, ...@@ -89,7 +89,7 @@ static int cleancache_get_key(struct inode *inode,
fhfn = sb->s_export_op->encode_fh; fhfn = sb->s_export_op->encode_fh;
if (fhfn) { if (fhfn) {
len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL); len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL);
if (len <= 0 || len == 255) if (len <= FILEID_ROOT || len == FILEID_INVALID)
return -1; return -1;
if (maxlen > CLEANCACHE_KEY_MAX) if (maxlen > CLEANCACHE_KEY_MAX)
return -1; return -1;
......
...@@ -2351,7 +2351,7 @@ static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len, ...@@ -2351,7 +2351,7 @@ static int shmem_encode_fh(struct inode *inode, __u32 *fh, int *len,
{ {
if (*len < 3) { if (*len < 3) {
*len = 3; *len = 3;
return 255; return FILEID_INVALID;
} }
if (inode_unhashed(inode)) { if (inode_unhashed(inode)) {
......
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