xfs_export.c 5.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2 3
 * Copyright (c) 2004-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
4
 *
5 6
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
L
Linus Torvalds 已提交
7 8
 * published by the Free Software Foundation.
 *
9 10 11 12
 * This program is distributed in the hope that it would 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.
L
Linus Torvalds 已提交
13
 *
14 15 16
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18 19
 */
#include "xfs.h"
#include "xfs_types.h"
20
#include "xfs_inum.h"
L
Linus Torvalds 已提交
21 22 23
#include "xfs_log.h"
#include "xfs_trans.h"
#include "xfs_sb.h"
24
#include "xfs_ag.h"
25
#include "xfs_dir2.h"
26
#include "xfs_dmapi.h"
L
Linus Torvalds 已提交
27 28
#include "xfs_mount.h"
#include "xfs_export.h"
29 30 31
#include "xfs_vnodeops.h"
#include "xfs_bmap_btree.h"
#include "xfs_inode.h"
L
Linus Torvalds 已提交
32 33

/*
C
Christoph Hellwig 已提交
34 35 36
 * Note that we only accept fileids which are long enough rather than allow
 * the parent generation number to default to zero.  XFS considers zero a
 * valid generation number not an invalid/wildcard value.
L
Linus Torvalds 已提交
37
 */
C
Christoph Hellwig 已提交
38
static int xfs_fileid_length(int fileid_type)
L
Linus Torvalds 已提交
39
{
C
Christoph Hellwig 已提交
40 41 42 43 44 45 46 47 48
	switch (fileid_type) {
	case FILEID_INO32_GEN:
		return 2;
	case FILEID_INO32_GEN_PARENT:
		return 4;
	case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
		return 3;
	case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
		return 6;
L
Linus Torvalds 已提交
49
	}
C
Christoph Hellwig 已提交
50
	return 255; /* invalid */
L
Linus Torvalds 已提交
51 52 53
}

STATIC int
54
xfs_fs_encode_fh(
L
Linus Torvalds 已提交
55 56 57 58 59
	struct dentry		*dentry,
	__u32			*fh,
	int			*max_len,
	int			connectable)
{
C
Christoph Hellwig 已提交
60 61
	struct fid		*fid = (struct fid *)fh;
	struct xfs_fid64	*fid64 = (struct xfs_fid64 *)fh;
L
Linus Torvalds 已提交
62
	struct inode		*inode = dentry->d_inode;
C
Christoph Hellwig 已提交
63
	int			fileid_type;
L
Linus Torvalds 已提交
64 65 66
	int			len;

	/* Directories don't need their parent encoded, they have ".." */
67
	if (S_ISDIR(inode->i_mode) || !connectable)
C
Christoph Hellwig 已提交
68 69 70 71 72 73 74
		fileid_type = FILEID_INO32_GEN;
	else
		fileid_type = FILEID_INO32_GEN_PARENT;

	/* filesystem may contain 64bit inode numbers */
	if (!(XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_SMALL_INUMS))
		fileid_type |= XFS_FILEID_TYPE_64FLAG;
L
Linus Torvalds 已提交
75 76 77 78 79 80 81

	/*
	 * Only encode if there is enough space given.  In practice
	 * this means we can't export a filesystem with 64bit inodes
	 * over NFSv2 with the subtree_check export option; the other
	 * seven combinations work.  The real answer is "don't use v2".
	 */
C
Christoph Hellwig 已提交
82
	len = xfs_fileid_length(fileid_type);
L
Linus Torvalds 已提交
83 84 85 86
	if (*max_len < len)
		return 255;
	*max_len = len;

C
Christoph Hellwig 已提交
87 88
	switch (fileid_type) {
	case FILEID_INO32_GEN_PARENT:
L
Linus Torvalds 已提交
89
		spin_lock(&dentry->d_lock);
C
Christoph Hellwig 已提交
90 91
		fid->i32.parent_ino = dentry->d_parent->d_inode->i_ino;
		fid->i32.parent_gen = dentry->d_parent->d_inode->i_generation;
L
Linus Torvalds 已提交
92
		spin_unlock(&dentry->d_lock);
C
Christoph Hellwig 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
		/*FALLTHRU*/
	case FILEID_INO32_GEN:
		fid->i32.ino = inode->i_ino;
		fid->i32.gen = inode->i_generation;
		break;
	case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
		spin_lock(&dentry->d_lock);
		fid64->parent_ino = dentry->d_parent->d_inode->i_ino;
		fid64->parent_gen = dentry->d_parent->d_inode->i_generation;
		spin_unlock(&dentry->d_lock);
		/*FALLTHRU*/
	case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
		fid64->ino = inode->i_ino;
		fid64->gen = inode->i_generation;
		break;
L
Linus Torvalds 已提交
108
	}
C
Christoph Hellwig 已提交
109 110

	return fileid_type;
L
Linus Torvalds 已提交
111 112
}

C
Christoph Hellwig 已提交
113 114
STATIC struct inode *
xfs_nfs_get_inode(
L
Linus Torvalds 已提交
115
	struct super_block	*sb,
C
Christoph Hellwig 已提交
116 117 118
	u64			ino,
	u32			generation)
 {
119 120
 	xfs_mount_t		*mp = XFS_M(sb);
	xfs_inode_t		*ip;
L
Linus Torvalds 已提交
121 122
	int			error;

123 124 125 126 127
	/*
	 * NFS can sometimes send requests for ino 0.  Fail them gracefully.
	 */
	if (ino == 0)
		return ERR_PTR(-ESTALE);
L
Linus Torvalds 已提交
128

129
	error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
C
Christoph Hellwig 已提交
130 131
	if (error)
		return ERR_PTR(-error);
132 133 134
	if (!ip)
		return ERR_PTR(-EIO);

135
	if (ip->i_d.di_gen != generation) {
136 137 138
		xfs_iput_new(ip, XFS_ILOCK_SHARED);
		return ERR_PTR(-ENOENT);
	}
C
Christoph Hellwig 已提交
139

140
	xfs_iunlock(ip, XFS_ILOCK_SHARED);
141
	return VFS_I(ip);
C
Christoph Hellwig 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
}

STATIC struct dentry *
xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
		 int fh_len, int fileid_type)
{
	struct xfs_fid64	*fid64 = (struct xfs_fid64 *)fid;
	struct inode		*inode = NULL;

	if (fh_len < xfs_fileid_length(fileid_type))
		return NULL;

	switch (fileid_type) {
	case FILEID_INO32_GEN_PARENT:
	case FILEID_INO32_GEN:
		inode = xfs_nfs_get_inode(sb, fid->i32.ino, fid->i32.gen);
		break;
	case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
	case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
		inode = xfs_nfs_get_inode(sb, fid64->ino, fid64->gen);
		break;
	}

165
	return d_obtain_alias(inode);
C
Christoph Hellwig 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
}

STATIC struct dentry *
xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid,
		 int fh_len, int fileid_type)
{
	struct xfs_fid64	*fid64 = (struct xfs_fid64 *)fid;
	struct inode		*inode = NULL;

	switch (fileid_type) {
	case FILEID_INO32_GEN_PARENT:
		inode = xfs_nfs_get_inode(sb, fid->i32.parent_ino,
					      fid->i32.parent_gen);
		break;
	case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
		inode = xfs_nfs_get_inode(sb, fid64->parent_ino,
					      fid64->parent_gen);
		break;
	}

186
	return d_obtain_alias(inode);
L
Linus Torvalds 已提交
187 188 189
}

STATIC struct dentry *
190
xfs_fs_get_parent(
L
Linus Torvalds 已提交
191 192 193
	struct dentry		*child)
{
	int			error;
194
	struct xfs_inode	*cip;
L
Linus Torvalds 已提交
195

196
	error = xfs_lookup(XFS_I(child->d_inode), &xfs_name_dotdot, &cip, NULL);
L
Linus Torvalds 已提交
197 198 199
	if (unlikely(error))
		return ERR_PTR(-error);

200
	return d_obtain_alias(VFS_I(cip));
L
Linus Torvalds 已提交
201 202
}

203
const struct export_operations xfs_export_operations = {
204
	.encode_fh		= xfs_fs_encode_fh,
C
Christoph Hellwig 已提交
205 206
	.fh_to_dentry		= xfs_fs_fh_to_dentry,
	.fh_to_parent		= xfs_fs_fh_to_parent,
207
	.get_parent		= xfs_fs_get_parent,
L
Linus Torvalds 已提交
208
};