blob: f1372f9046e389313afa3101a9072d0344e31818 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2004-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07007#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11008#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_log_format.h"
10#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include "xfs_mount.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100012#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_export.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100014#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110015#include "xfs_trans.h"
Ben Myers978ebd92010-02-17 14:05:16 -060016#include "xfs_inode_item.h"
Dave Chinner33479e02012-10-08 21:56:11 +110017#include "xfs_icache.h"
Dave Chinner239880e2013-10-23 10:50:10 +110018#include "xfs_log.h"
Christoph Hellwig52785112015-02-16 11:49:23 +110019#include "xfs_pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/*
Christoph Hellwigc38344f2007-10-21 16:42:11 -070022 * Note that we only accept fileids which are long enough rather than allow
23 * the parent generation number to default to zero. XFS considers zero a
24 * valid generation number not an invalid/wildcard value.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
Christoph Hellwigc38344f2007-10-21 16:42:11 -070026static int xfs_fileid_length(int fileid_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Christoph Hellwigc38344f2007-10-21 16:42:11 -070028 switch (fileid_type) {
29 case FILEID_INO32_GEN:
30 return 2;
31 case FILEID_INO32_GEN_PARENT:
32 return 4;
33 case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
34 return 3;
35 case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
36 return 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 }
Namjae Jeon94e07a752013-02-17 15:48:11 +090038 return FILEID_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +110042xfs_fs_encode_fh(
Al Virob0b03822012-04-02 14:34:06 -040043 struct inode *inode,
44 __u32 *fh,
45 int *max_len,
46 struct inode *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Christoph Hellwigc38344f2007-10-21 16:42:11 -070048 struct fid *fid = (struct fid *)fh;
49 struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fh;
Christoph Hellwigc38344f2007-10-21 16:42:11 -070050 int fileid_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 /* Directories don't need their parent encoded, they have ".." */
Al Virob0b03822012-04-02 14:34:06 -040054 if (!parent)
Christoph Hellwigc38344f2007-10-21 16:42:11 -070055 fileid_type = FILEID_INO32_GEN;
56 else
57 fileid_type = FILEID_INO32_GEN_PARENT;
58
Samuel Kvasnica576ecb82010-11-19 13:38:49 +000059 /*
60 * If the the filesystem may contain 64bit inode numbers, we need
61 * to use larger file handles that can represent them.
62 *
63 * While we only allocate inodes that do not fit into 32 bits any
64 * large enough filesystem may contain them, thus the slightly
65 * confusing looking conditional below.
66 */
67 if (!(XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_SMALL_INUMS) ||
68 (XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_32BITINODES))
Christoph Hellwigc38344f2007-10-21 16:42:11 -070069 fileid_type |= XFS_FILEID_TYPE_64FLAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 /*
72 * Only encode if there is enough space given. In practice
73 * this means we can't export a filesystem with 64bit inodes
74 * over NFSv2 with the subtree_check export option; the other
75 * seven combinations work. The real answer is "don't use v2".
76 */
Christoph Hellwigc38344f2007-10-21 16:42:11 -070077 len = xfs_fileid_length(fileid_type);
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +053078 if (*max_len < len) {
79 *max_len = len;
Namjae Jeon94e07a752013-02-17 15:48:11 +090080 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +053081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *max_len = len;
83
Christoph Hellwigc38344f2007-10-21 16:42:11 -070084 switch (fileid_type) {
85 case FILEID_INO32_GEN_PARENT:
Al Virob0b03822012-04-02 14:34:06 -040086 fid->i32.parent_ino = XFS_I(parent)->i_ino;
87 fid->i32.parent_gen = parent->i_generation;
Christoph Hellwigc38344f2007-10-21 16:42:11 -070088 /*FALLTHRU*/
89 case FILEID_INO32_GEN:
Christoph Hellwigc29f7d42011-11-30 08:58:18 +000090 fid->i32.ino = XFS_I(inode)->i_ino;
Christoph Hellwigc38344f2007-10-21 16:42:11 -070091 fid->i32.gen = inode->i_generation;
92 break;
93 case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
Al Virob0b03822012-04-02 14:34:06 -040094 fid64->parent_ino = XFS_I(parent)->i_ino;
95 fid64->parent_gen = parent->i_generation;
Christoph Hellwigc38344f2007-10-21 16:42:11 -070096 /*FALLTHRU*/
97 case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
Christoph Hellwigc29f7d42011-11-30 08:58:18 +000098 fid64->ino = XFS_I(inode)->i_ino;
Christoph Hellwigc38344f2007-10-21 16:42:11 -070099 fid64->gen = inode->i_generation;
100 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700102
103 return fileid_type;
104}
105
106STATIC struct inode *
107xfs_nfs_get_inode(
108 struct super_block *sb,
109 u64 ino,
110 u32 generation)
Joe Perches447a5642018-03-21 15:09:32 -0700111{
Christoph Hellwigf71354b2007-12-18 16:26:55 +1100112 xfs_mount_t *mp = XFS_M(sb);
113 xfs_inode_t *ip;
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700114 int error;
115
Christoph Hellwigf71354b2007-12-18 16:26:55 +1100116 /*
117 * NFS can sometimes send requests for ino 0. Fail them gracefully.
118 */
119 if (ino == 0)
120 return ERR_PTR(-ESTALE);
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700121
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500122 /*
Dave Chinner19207792010-06-24 11:15:47 +1000123 * The XFS_IGET_UNTRUSTED means that an invalid inode number is just
124 * fine and not an indication of a corrupted filesystem as clients can
125 * send invalid file handles and we have to handle it gracefully..
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500126 */
Christoph Hellwigef35e922010-06-24 11:51:19 +1000127 error = xfs_iget(mp, NULL, ino, XFS_IGET_UNTRUSTED, 0, &ip);
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500128 if (error) {
Dave Chinner29cad0b2018-06-05 10:09:34 -0700129
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500130 /*
131 * EINVAL means the inode cluster doesn't exist anymore.
Dave Chinner29cad0b2018-06-05 10:09:34 -0700132 * EFSCORRUPTED means the metadata pointing to the inode cluster
133 * or the inode cluster itself is corrupt. This implies the
134 * filehandle is stale, so we should translate it here.
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500135 * We don't use ESTALE directly down the chain to not
136 * confuse applications using bulkstat that expect EINVAL.
137 */
Dave Chinner29cad0b2018-06-05 10:09:34 -0700138 switch (error) {
139 case -EINVAL:
140 case -ENOENT:
141 case -EFSCORRUPTED:
Dave Chinner24513372014-06-25 14:58:08 +1000142 error = -ESTALE;
Dave Chinner29cad0b2018-06-05 10:09:34 -0700143 break;
144 default:
145 break;
146 }
Dave Chinner24513372014-06-25 14:58:08 +1000147 return ERR_PTR(error);
Christoph Hellwigc9a98552009-01-01 14:21:16 -0500148 }
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700149
Dave Chinner9e9a2672016-02-09 16:54:58 +1100150 if (VFS_I(ip)->i_generation != generation) {
Darrick J. Wong44a87362018-07-25 12:52:32 -0700151 xfs_irele(ip);
J. Bruce Fieldsad1a2c82011-07-14 20:50:36 +0000152 return ERR_PTR(-ESTALE);
Christoph Hellwigf71354b2007-12-18 16:26:55 +1100153 }
154
David Chinner01651642008-08-13 15:45:15 +1000155 return VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158STATIC struct dentry *
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700159xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
160 int fh_len, int fileid_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700162 struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
163 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700165 if (fh_len < xfs_fileid_length(fileid_type))
166 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700168 switch (fileid_type) {
169 case FILEID_INO32_GEN_PARENT:
170 case FILEID_INO32_GEN:
171 inode = xfs_nfs_get_inode(sb, fid->i32.ino, fid->i32.gen);
172 break;
173 case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
174 case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
175 inode = xfs_nfs_get_inode(sb, fid64->ino, fid64->gen);
176 break;
177 }
178
Christoph Hellwig44003722008-08-11 15:49:04 +0200179 return d_obtain_alias(inode);
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700180}
181
182STATIC struct dentry *
183xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid,
184 int fh_len, int fileid_type)
185{
186 struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
187 struct inode *inode = NULL;
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700188
Hugh Dickins35c2a7f2012-10-07 20:32:51 -0700189 if (fh_len < xfs_fileid_length(fileid_type))
190 return NULL;
191
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700192 switch (fileid_type) {
193 case FILEID_INO32_GEN_PARENT:
194 inode = xfs_nfs_get_inode(sb, fid->i32.parent_ino,
195 fid->i32.parent_gen);
196 break;
197 case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
198 inode = xfs_nfs_get_inode(sb, fid64->parent_ino,
199 fid64->parent_gen);
200 break;
201 }
202
Christoph Hellwig44003722008-08-11 15:49:04 +0200203 return d_obtain_alias(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206STATIC struct dentry *
Nathan Scotta50cd262006-03-14 14:06:18 +1100207xfs_fs_get_parent(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct dentry *child)
209{
210 int error;
Christoph Hellwigef1f5e72008-03-06 13:46:25 +1100211 struct xfs_inode *cip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
David Howells2b0143b2015-03-17 22:25:59 +0000213 error = xfs_lookup(XFS_I(d_inode(child)), &xfs_name_dotdot, &cip, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (unlikely(error))
Dave Chinner24513372014-06-25 14:58:08 +1000215 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Christoph Hellwig44003722008-08-11 15:49:04 +0200217 return d_obtain_alias(VFS_I(cip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Ben Myers978ebd92010-02-17 14:05:16 -0600220STATIC int
221xfs_fs_nfs_commit_metadata(
222 struct inode *inode)
223{
224 struct xfs_inode *ip = XFS_I(inode);
225 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig8292d882011-09-18 20:47:50 +0000226 xfs_lsn_t lsn = 0;
Ben Myers978ebd92010-02-17 14:05:16 -0600227
228 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwig8292d882011-09-18 20:47:50 +0000229 if (xfs_ipincount(ip))
230 lsn = ip->i_itemp->ili_last_lsn;
Ben Myers978ebd92010-02-17 14:05:16 -0600231 xfs_iunlock(ip, XFS_ILOCK_SHARED);
232
Christoph Hellwig8292d882011-09-18 20:47:50 +0000233 if (!lsn)
234 return 0;
Christoph Hellwig656de4f2018-03-13 23:15:28 -0700235 return xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
Ben Myers978ebd92010-02-17 14:05:16 -0600236}
237
Christoph Hellwig39655162007-10-21 16:42:17 -0700238const struct export_operations xfs_export_operations = {
Nathan Scotta50cd262006-03-14 14:06:18 +1100239 .encode_fh = xfs_fs_encode_fh,
Christoph Hellwigc38344f2007-10-21 16:42:11 -0700240 .fh_to_dentry = xfs_fs_fh_to_dentry,
241 .fh_to_parent = xfs_fs_fh_to_parent,
Nathan Scotta50cd262006-03-14 14:06:18 +1100242 .get_parent = xfs_fs_get_parent,
Ben Myers978ebd92010-02-17 14:05:16 -0600243 .commit_metadata = xfs_fs_nfs_commit_metadata,
Benjamin Coddington15d66ac2016-07-08 09:53:20 -0400244#ifdef CONFIG_EXPORTFS_BLOCK_OPS
Christoph Hellwig52785112015-02-16 11:49:23 +1100245 .get_uuid = xfs_fs_get_uuid,
246 .map_blocks = xfs_fs_map_blocks,
247 .commit_blocks = xfs_fs_commit_blocks,
248#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};