4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2016, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lustre/lustre/llite/llite_nfs.c
34 * NFS export of Lustre Light File System
36 * Author: Yury Umanets <umka@clusterfs.com>
37 * Author: Huang Hua <huanghua@clusterfs.com>
40 #define DEBUG_SUBSYSTEM S_LLITE
41 #include "llite_internal.h"
42 #include <linux/exportfs.h>
44 __u32 get_uuid2int(const char *name, int len)
46 __u32 key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
48 __u32 key = key1 + (key0 ^ (*name++ * 7152373));
49 if (key & 0x80000000) key -= 0x7fffffff;
56 struct inode *search_inode_for_lustre(struct super_block *sb,
57 const struct lu_fid *fid)
59 struct ll_sb_info *sbi = ll_s2sbi(sb);
60 struct ptlrpc_request *req = NULL;
61 struct inode *inode = NULL;
63 unsigned long hash = cl_fid_build_ino(fid,
64 ll_need_32bit_api(sbi));
65 struct md_op_data *op_data;
69 CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
71 inode = ilookup5(sb, hash, ll_test_inode_by_fid, (void *)fid);
75 rc = ll_get_default_mdsize(sbi, &eadatalen);
79 /* Because inode is NULL, ll_prep_md_op_data can not
80 * be used here. So we allocate op_data ourselves */
81 OBD_ALLOC_PTR(op_data);
83 return ERR_PTR(-ENOMEM);
85 op_data->op_fid1 = *fid;
86 op_data->op_mode = eadatalen;
87 op_data->op_valid = OBD_MD_FLEASIZE;
89 /* mds_fid2dentry ignores f_type */
90 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
91 OBD_FREE_PTR(op_data);
93 /* Suppress erroneous/confusing messages when NFS
94 * is out of sync and requests old data. */
95 CDEBUG(D_INFO, "can't get object attrs, fid "DFID", rc %d\n",
99 rc = ll_prep_inode(&inode, req, sb, NULL);
100 ptlrpc_req_finished(req);
107 struct lustre_nfs_fid {
108 struct lu_fid lnf_child;
109 struct lu_fid lnf_parent;
112 static struct dentry *
113 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
116 struct dentry *result;
119 if (!fid_is_sane(fid))
120 RETURN(ERR_PTR(-ESTALE));
122 CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
124 inode = search_inode_for_lustre(sb, fid);
126 RETURN(ERR_PTR(PTR_ERR(inode)));
128 if (is_bad_inode(inode)) {
129 /* we didn't find the right inode.. */
131 RETURN(ERR_PTR(-ESTALE));
134 /* N.B. d_obtain_alias() drops inode ref on error */
135 result = d_obtain_alias(inode);
136 if (!IS_ERR(result)) {
139 rc = ll_d_init(result);
142 result = ERR_PTR(rc);
144 struct ll_dentry_data *ldd = ll_d2d(result);
147 * Need to signal to the ll_file_open that
148 * we came from NFS and so opencache needs to be
149 * enabled for this one
151 ldd->lld_nfs_dentry = 1;
158 #ifndef FILEID_INVALID
159 #define FILEID_INVALID 0xff
161 #ifndef FILEID_LUSTRE
162 #define FILEID_LUSTRE 0x97
166 * \a connectable - is nfsd will connect himself or this should be done
169 * The return value is file handle type:
170 * 1 -- contains child file handle;
171 * 2 -- contains child file handle and parent file handle;
174 #ifndef HAVE_ENCODE_FH_PARENT
175 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
178 struct inode *inode = de->d_inode;
179 struct inode *parent = de->d_parent->d_inode;
181 static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
182 struct inode *parent)
185 int fileid_len = sizeof(struct lustre_nfs_fid) / 4;
186 struct lustre_nfs_fid *nfs_fid = (void *)fh;
189 CDEBUG(D_INFO, "%s: encoding for ("DFID") maxlen=%d minlen=%d\n",
190 ll_get_fsname(inode->i_sb, NULL, 0),
191 PFID(ll_inode2fid(inode)), *plen, fileid_len);
193 if (*plen < fileid_len) {
195 RETURN(FILEID_INVALID);
198 nfs_fid->lnf_child = *ll_inode2fid(inode);
200 nfs_fid->lnf_parent = *ll_inode2fid(parent);
202 fid_zero(&nfs_fid->lnf_parent);
205 RETURN(FILEID_LUSTRE);
209 #ifndef HAVE_FILLDIR_USE_CTX
210 ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
211 loff_t hash, u64 ino, unsigned type)
213 struct ll_getname_data *lgd = cookie;
215 ll_nfs_get_name_filldir(struct dir_context *ctx, const char *name, int namelen,
216 loff_t hash, u64 ino, unsigned type)
218 struct ll_getname_data *lgd =
219 container_of(ctx, struct ll_getname_data, ctx);
220 #endif /* HAVE_FILLDIR_USE_CTX */
221 /* It is hack to access lde_fid for comparison with lgd_fid.
222 * So the input 'name' must be part of the 'lu_dirent'. */
223 struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
226 fid_le_to_cpu(&fid, &lde->lde_fid);
227 if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
228 memcpy(lgd->lgd_name, name, namelen);
229 lgd->lgd_name[namelen] = 0;
232 return lgd->lgd_found;
235 static int ll_get_name(struct dentry *dentry, char *name,
236 struct dentry *child)
238 struct inode *dir = dentry->d_inode;
239 struct ll_getname_data lgd = {
241 .lgd_fid = ll_i2info(child->d_inode)->lli_fid,
242 #ifdef HAVE_DIR_CONTEXT
243 .ctx.actor = ll_nfs_get_name_filldir,
247 struct md_op_data *op_data;
252 if (!dir || !S_ISDIR(dir->i_mode))
253 GOTO(out, rc = -ENOTDIR);
256 GOTO(out, rc = -EINVAL);
258 op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
259 LUSTRE_OPC_ANY, dir);
261 GOTO(out, rc = PTR_ERR(op_data));
263 op_data->op_max_pages = ll_i2sbi(dir)->ll_md_brw_pages;
265 #ifdef HAVE_DIR_CONTEXT
266 rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
268 rc = ll_dir_read(dir, &pos, op_data, &lgd, ll_nfs_get_name_filldir);
271 ll_finish_md_op_data(op_data);
272 if (!rc && !lgd.lgd_found)
279 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
280 int fh_len, int fh_type)
282 struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
284 if (fh_type != FILEID_LUSTRE)
285 RETURN(ERR_PTR(-EPROTO));
287 RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent));
290 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
291 int fh_len, int fh_type)
293 struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
295 if (fh_type != FILEID_LUSTRE)
296 RETURN(ERR_PTR(-EPROTO));
298 RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL));
301 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
303 struct ptlrpc_request *req = NULL;
304 struct ll_sb_info *sbi;
305 struct mdt_body *body;
306 static const char dotdot[] = "..";
307 struct md_op_data *op_data;
312 LASSERT(dir && S_ISDIR(dir->i_mode));
314 sbi = ll_s2sbi(dir->i_sb);
316 CDEBUG(D_INFO, "%s: getting parent for ("DFID")\n",
317 ll_get_fsname(dir->i_sb, NULL, 0),
318 PFID(ll_inode2fid(dir)));
320 rc = ll_get_default_mdsize(sbi, &lmmsize);
324 op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
325 strlen(dotdot), lmmsize,
326 LUSTRE_OPC_ANY, NULL);
328 RETURN(PTR_ERR(op_data));
330 rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
331 ll_finish_md_op_data(op_data);
333 CERROR("%s: failure inode "DFID" get parent: rc = %d\n",
334 ll_get_fsname(dir->i_sb, NULL, 0),
335 PFID(ll_inode2fid(dir)), rc);
338 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
341 * LU-3952: MDT may lost the FID of its parent, we should not crash
342 * the NFS server, ll_iget_for_nfs() will handle the error.
344 if (body->mbo_valid & OBD_MD_FLID) {
345 CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
346 PFID(ll_inode2fid(dir)), PFID(&body->mbo_fid1));
347 *parent_fid = body->mbo_fid1;
350 ptlrpc_req_finished(req);
354 static struct dentry *ll_get_parent(struct dentry *dchild)
356 struct lu_fid parent_fid = { 0 };
358 struct dentry *dentry;
361 rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
365 dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
370 struct export_operations lustre_export_operations = {
371 .get_parent = ll_get_parent,
372 .encode_fh = ll_encode_fh,
373 .get_name = ll_get_name,
374 .fh_to_dentry = ll_fh_to_dentry,
375 .fh_to_parent = ll_fh_to_parent,