Whamcloud - gitweb
LU-3544 nfs: don't store parent fid
[fs/lustre-release.git] / lustre / llite / llite_nfs.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
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.
9  *
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).
15  *
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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/lustre/llite/llite_nfs.c
37  *
38  * NFS export of Lustre Light File System
39  *
40  * Author: Yury Umanets <umka@clusterfs.com>
41  * Author: Huang Hua <huanghua@clusterfs.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_LLITE
45 #include <lustre_lite.h>
46 #include "llite_internal.h"
47 #include <linux/exportfs.h>
48
49 __u32 get_uuid2int(const char *name, int len)
50 {
51         __u32 key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
52         while (len--) {
53                 __u32 key = key1 + (key0 ^ (*name++ * 7152373));
54                 if (key & 0x80000000) key -= 0x7fffffff;
55                 key1 = key0;
56                 key0 = key;
57         }
58         return (key0 << 1);
59 }
60
61 struct inode *search_inode_for_lustre(struct super_block *sb,
62                                       const struct lu_fid *fid)
63 {
64         struct ll_sb_info     *sbi = ll_s2sbi(sb);
65         struct ptlrpc_request *req = NULL;
66         struct inode          *inode = NULL;
67         int                   eadatalen = 0;
68         unsigned long         hash = cl_fid_build_ino(fid,
69                                                       ll_need_32bit_api(sbi));
70         struct  md_op_data    *op_data;
71         int                   rc;
72         ENTRY;
73
74         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
75
76         inode = ilookup5(sb, hash, ll_test_inode_by_fid, (void *)fid);
77         if (inode)
78                 RETURN(inode);
79
80         rc = ll_get_default_mdsize(sbi, &eadatalen);
81         if (rc)
82                 RETURN(ERR_PTR(rc));
83
84         /* Because inode is NULL, ll_prep_md_op_data can not
85          * be used here. So we allocate op_data ourselves */
86         OBD_ALLOC_PTR(op_data);
87         if (op_data == NULL)
88                 return ERR_PTR(-ENOMEM);
89
90         op_data->op_fid1 = *fid;
91         op_data->op_mode = eadatalen;
92         op_data->op_valid = OBD_MD_FLEASIZE;
93
94         /* mds_fid2dentry ignores f_type */
95         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
96         OBD_FREE_PTR(op_data);
97         if (rc) {
98                 /* Suppress erroneous/confusing messages when NFS
99                  * is out of sync and requests old data. */
100                 CDEBUG(D_INFO, "can't get object attrs, fid "DFID", rc %d\n",
101                                 PFID(fid), rc);
102                 RETURN(ERR_PTR(rc));
103         }
104         rc = ll_prep_inode(&inode, req, sb, NULL);
105         ptlrpc_req_finished(req);
106         if (rc)
107                 RETURN(ERR_PTR(rc));
108
109         RETURN(inode);
110 }
111
112 struct lustre_nfs_fid {
113         struct lu_fid   lnf_child;
114         struct lu_fid   lnf_parent;
115 };
116
117 static struct dentry *
118 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
119 {
120         struct inode  *inode;
121         struct dentry *result;
122         ENTRY;
123
124         if (!fid_is_sane(fid))
125                 RETURN(ERR_PTR(-ESTALE));
126
127         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
128
129         inode = search_inode_for_lustre(sb, fid);
130         if (IS_ERR(inode))
131                 RETURN(ERR_PTR(PTR_ERR(inode)));
132
133         if (is_bad_inode(inode)) {
134                 /* we didn't find the right inode.. */
135                 iput(inode);
136                 RETURN(ERR_PTR(-ESTALE));
137         }
138
139         result = d_obtain_alias(inode);
140         if (IS_ERR(result)) {
141                 iput(inode);
142                 RETURN(result);
143         }
144
145         RETURN(result);
146 }
147
148 #ifndef FILEID_INVALID
149 #define FILEID_INVALID 0xff
150 #endif
151 #ifndef FILEID_LUSTRE
152 #define FILEID_LUSTRE  0x97
153 #endif
154
155 /**
156  * \a connectable - is nfsd will connect himself or this should be done
157  *                  at lustre
158  *
159  * The return value is file handle type:
160  * 1 -- contains child file handle;
161  * 2 -- contains child file handle and parent file handle;
162  * 255 -- error.
163  */
164 #ifndef HAVE_ENCODE_FH_PARENT
165 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
166                         int connectable)
167 {
168         struct inode *inode = de->d_inode;
169         struct inode *parent = de->d_parent->d_inode;
170 #else
171 static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
172                         struct inode *parent)
173 {
174 #endif
175         int fileid_len = sizeof(struct lustre_nfs_fid) / 4;
176         struct lustre_nfs_fid *nfs_fid = (void *)fh;
177         ENTRY;
178
179         CDEBUG(D_INFO, "%s: encoding for ("DFID") maxlen=%d minlen=%d\n",
180                ll_get_fsname(inode->i_sb, NULL, 0),
181                PFID(ll_inode2fid(inode)), *plen, fileid_len);
182
183         if (*plen < fileid_len) {
184                 *plen = fileid_len;
185                 RETURN(FILEID_INVALID);
186         }
187
188         nfs_fid->lnf_child = *ll_inode2fid(inode);
189         if (parent != NULL)
190                 nfs_fid->lnf_parent = *ll_inode2fid(parent);
191         else
192                 fid_zero(&nfs_fid->lnf_parent);
193         *plen = fileid_len;
194
195         RETURN(FILEID_LUSTRE);
196 }
197
198 static int ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
199                                    loff_t hash, u64 ino, unsigned type)
200 {
201         /* It is hack to access lde_fid for comparison with lgd_fid.
202          * So the input 'name' must be part of the 'lu_dirent'. */
203         struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
204         struct ll_getname_data *lgd = cookie;
205         struct lu_fid fid;
206
207         fid_le_to_cpu(&fid, &lde->lde_fid);
208         if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
209                 memcpy(lgd->lgd_name, name, namelen);
210                 lgd->lgd_name[namelen] = 0;
211                 lgd->lgd_found = 1;
212         }
213         return lgd->lgd_found;
214 }
215
216 static int ll_get_name(struct dentry *dentry, char *name,
217                        struct dentry *child)
218 {
219         struct inode *dir = dentry->d_inode;
220         struct ll_getname_data lgd = {
221                 .lgd_name       = name,
222                 .lgd_fid        = ll_i2info(child->d_inode)->lli_fid,
223 #ifdef HAVE_DIR_CONTEXT
224                 .ctx.actor      = ll_nfs_get_name_filldir,
225 #endif
226                 .lgd_found = 0,
227         };
228         struct md_op_data *op_data;
229         __u64   pos = 0;
230         int rc;
231         ENTRY;
232
233         if (!dir || !S_ISDIR(dir->i_mode))
234                 GOTO(out, rc = -ENOTDIR);
235
236         if (!dir->i_fop)
237                 GOTO(out, rc = -EINVAL);
238
239         op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
240                                      LUSTRE_OPC_ANY, dir);
241         if (IS_ERR(op_data))
242                 GOTO(out, rc = PTR_ERR(op_data));
243
244         op_data->op_max_pages = ll_i2sbi(dir)->ll_md_brw_pages;
245         mutex_lock(&dir->i_mutex);
246 #ifdef HAVE_DIR_CONTEXT
247         rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
248 #else
249         rc = ll_dir_read(dir, &pos, op_data, &lgd, ll_nfs_get_name_filldir);
250 #endif
251         mutex_unlock(&dir->i_mutex);
252         ll_finish_md_op_data(op_data);
253         if (!rc && !lgd.lgd_found)
254                 rc = -ENOENT;
255         EXIT;
256 out:
257         return rc;
258 }
259
260 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
261                                       int fh_len, int fh_type)
262 {
263         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
264
265         if (fh_type != FILEID_LUSTRE)
266                 RETURN(ERR_PTR(-EPROTO));
267
268         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent));
269 }
270
271 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
272                                       int fh_len, int fh_type)
273 {
274         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
275
276         if (fh_type != FILEID_LUSTRE)
277                 RETURN(ERR_PTR(-EPROTO));
278
279         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL));
280 }
281
282 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
283 {
284         struct ptlrpc_request   *req = NULL;
285         struct ll_sb_info       *sbi;
286         struct mdt_body         *body;
287         static const char       dotdot[] = "..";
288         struct md_op_data       *op_data;
289         int                     rc;
290         int                     lmmsize;
291         ENTRY;
292
293         LASSERT(dir && S_ISDIR(dir->i_mode));
294
295         sbi = ll_s2sbi(dir->i_sb);
296
297         CDEBUG(D_INFO, "%s: getting parent for ("DFID")\n",
298                ll_get_fsname(dir->i_sb, NULL, 0),
299                PFID(ll_inode2fid(dir)));
300
301         rc = ll_get_default_mdsize(sbi, &lmmsize);
302         if (rc != 0)
303                 RETURN(rc);
304
305         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
306                                      strlen(dotdot), lmmsize,
307                                      LUSTRE_OPC_ANY, NULL);
308         if (IS_ERR(op_data))
309                 RETURN(PTR_ERR(op_data));
310
311         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
312         ll_finish_md_op_data(op_data);
313         if (rc != 0) {
314                 CERROR("%s: failure inode "DFID" get parent: rc = %d\n",
315                        ll_get_fsname(dir->i_sb, NULL, 0),
316                        PFID(ll_inode2fid(dir)), rc);
317                 RETURN(rc);
318         }
319         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
320
321         /*
322          * LU-3952: MDT may lost the FID of its parent, we should not crash
323          * the NFS server, ll_iget_for_nfs() will handle the error.
324          */
325         if (body->mbo_valid & OBD_MD_FLID) {
326                 CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
327                        PFID(ll_inode2fid(dir)), PFID(&body->mbo_fid1));
328                 *parent_fid = body->mbo_fid1;
329         }
330
331         ptlrpc_req_finished(req);
332         RETURN(0);
333 }
334
335 static struct dentry *ll_get_parent(struct dentry *dchild)
336 {
337         struct lu_fid   parent_fid = { 0 };
338         int             rc;
339         struct dentry   *dentry;
340         ENTRY;
341
342         rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
343         if (rc != 0)
344                 RETURN(ERR_PTR(rc));
345
346         dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
347
348         RETURN(dentry);
349 }
350
351 struct export_operations lustre_export_operations = {
352        .get_parent = ll_get_parent,
353        .encode_fh  = ll_encode_fh,
354        .get_name   = ll_get_name,
355         .fh_to_dentry = ll_fh_to_dentry,
356         .fh_to_parent = ll_fh_to_parent,
357 };