1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Functions to facilitate NFS exporting
7 * Copyright (C) 2002, 2005 Oracle. All rights reserved.
11 #include <linux/types.h>
13 #include <cluster/masklog.h>
24 #include "buffer_head_io.h"
26 #include "ocfs2_trace.h"
28 struct ocfs2_inode_handle
34 static struct dentry *ocfs2_get_dentry(struct super_block *sb,
35 struct ocfs2_inode_handle *handle)
38 struct ocfs2_super *osb = OCFS2_SB(sb);
39 u64 blkno = handle->ih_blkno;
41 struct dentry *result;
43 trace_ocfs2_get_dentry_begin(sb, handle, (unsigned long long)blkno);
46 result = ERR_PTR(-ESTALE);
50 inode = ocfs2_ilookup(sb, blkno);
52 * If the inode exists in memory, we only need to check it's
59 * This will synchronize us against ocfs2_delete_inode() on
62 status = ocfs2_nfs_sync_lock(osb, 1);
64 mlog(ML_ERROR, "getting nfs sync lock(EX) failed %d\n", status);
68 status = ocfs2_test_inode_bit(osb, blkno, &set);
70 if (status == -EINVAL) {
72 * The blkno NFS gave us doesn't even show up
73 * as an inode, we return -ESTALE to be
78 mlog(ML_ERROR, "test inode bit failed %d\n", status);
82 trace_ocfs2_get_dentry_test_bit(status, set);
83 /* If the inode allocator bit is clear, this inode must be stale */
89 inode = ocfs2_iget(osb, blkno, 0, 0);
92 ocfs2_nfs_sync_unlock(osb, 1);
96 if (status == -ESTALE) {
97 trace_ocfs2_get_dentry_stale((unsigned long long)blkno,
98 handle->ih_generation);
100 result = ERR_PTR(status);
105 mlog_errno(PTR_ERR(inode));
106 result = ERR_CAST(inode);
111 if (handle->ih_generation != inode->i_generation) {
112 trace_ocfs2_get_dentry_generation((unsigned long long)blkno,
113 handle->ih_generation,
114 inode->i_generation);
116 result = ERR_PTR(-ESTALE);
120 result = d_obtain_alias(inode);
122 mlog_errno(PTR_ERR(result));
125 trace_ocfs2_get_dentry_end(result);
129 static struct dentry *ocfs2_get_parent(struct dentry *child)
133 struct dentry *parent;
134 struct inode *dir = d_inode(child);
137 trace_ocfs2_get_parent(child, child->d_name.len, child->d_name.name,
138 (unsigned long long)OCFS2_I(dir)->ip_blkno);
140 status = ocfs2_nfs_sync_lock(OCFS2_SB(dir->i_sb), 1);
142 mlog(ML_ERROR, "getting nfs sync lock(EX) failed %d\n", status);
143 parent = ERR_PTR(status);
147 status = ocfs2_inode_lock(dir, NULL, 0);
149 if (status != -ENOENT)
151 parent = ERR_PTR(status);
152 goto unlock_nfs_sync;
155 status = ocfs2_lookup_ino_from_name(dir, "..", 2, &blkno);
157 parent = ERR_PTR(-ENOENT);
161 status = ocfs2_test_inode_bit(OCFS2_SB(dir->i_sb), blkno, &set);
163 if (status == -EINVAL) {
166 mlog(ML_ERROR, "test inode bit failed %d\n", status);
167 parent = ERR_PTR(status);
171 trace_ocfs2_get_dentry_test_bit(status, set);
174 parent = ERR_PTR(status);
178 parent = d_obtain_alias(ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0));
181 ocfs2_inode_unlock(dir, 0);
184 ocfs2_nfs_sync_unlock(OCFS2_SB(dir->i_sb), 1);
187 trace_ocfs2_get_parent_end(parent);
192 static int ocfs2_encode_fh(struct inode *inode, u32 *fh_in, int *max_len,
193 struct inode *parent)
199 __le32 *fh = (__force __le32 *) fh_in;
201 #ifdef TRACE_HOOKS_ARE_NOT_BRAINDEAD_IN_YOUR_OPINION
202 #error "You go ahead and fix that mess, then. Somehow"
203 trace_ocfs2_encode_fh_begin(dentry, dentry->d_name.len,
205 fh, len, connectable);
208 if (parent && (len < 6)) {
210 type = FILEID_INVALID;
212 } else if (len < 3) {
214 type = FILEID_INVALID;
218 blkno = OCFS2_I(inode)->ip_blkno;
219 generation = inode->i_generation;
221 trace_ocfs2_encode_fh_self((unsigned long long)blkno, generation);
224 fh[0] = cpu_to_le32((u32)(blkno >> 32));
225 fh[1] = cpu_to_le32((u32)(blkno & 0xffffffff));
226 fh[2] = cpu_to_le32(generation);
229 blkno = OCFS2_I(parent)->ip_blkno;
230 generation = parent->i_generation;
232 fh[3] = cpu_to_le32((u32)(blkno >> 32));
233 fh[4] = cpu_to_le32((u32)(blkno & 0xffffffff));
234 fh[5] = cpu_to_le32(generation);
239 trace_ocfs2_encode_fh_parent((unsigned long long)blkno,
246 trace_ocfs2_encode_fh_type(type);
250 static struct dentry *ocfs2_fh_to_dentry(struct super_block *sb,
251 struct fid *fid, int fh_len, int fh_type)
253 struct ocfs2_inode_handle handle;
255 if (fh_len < 3 || fh_type > 2)
258 handle.ih_blkno = (u64)le32_to_cpu(fid->raw[0]) << 32;
259 handle.ih_blkno |= (u64)le32_to_cpu(fid->raw[1]);
260 handle.ih_generation = le32_to_cpu(fid->raw[2]);
261 return ocfs2_get_dentry(sb, &handle);
264 static struct dentry *ocfs2_fh_to_parent(struct super_block *sb,
265 struct fid *fid, int fh_len, int fh_type)
267 struct ocfs2_inode_handle parent;
269 if (fh_type != 2 || fh_len < 6)
272 parent.ih_blkno = (u64)le32_to_cpu(fid->raw[3]) << 32;
273 parent.ih_blkno |= (u64)le32_to_cpu(fid->raw[4]);
274 parent.ih_generation = le32_to_cpu(fid->raw[5]);
275 return ocfs2_get_dentry(sb, &parent);
278 const struct export_operations ocfs2_export_ops = {
279 .encode_fh = ocfs2_encode_fh,
280 .fh_to_dentry = ocfs2_fh_to_dentry,
281 .fh_to_parent = ocfs2_fh_to_parent,
282 .get_parent = ocfs2_get_parent,