Whamcloud - gitweb
f7462338d21bd763ea7b819bab184fd15e5af0d0
[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, 2014, 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 "llite_internal.h"
46 #include <linux/exportfs.h>
47
48 __u32 get_uuid2int(const char *name, int len)
49 {
50         __u32 key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
51         while (len--) {
52                 __u32 key = key1 + (key0 ^ (*name++ * 7152373));
53                 if (key & 0x80000000) key -= 0x7fffffff;
54                 key1 = key0;
55                 key0 = key;
56         }
57         return (key0 << 1);
58 }
59
60 struct inode *search_inode_for_lustre(struct super_block *sb,
61                                       const struct lu_fid *fid)
62 {
63         struct ll_sb_info     *sbi = ll_s2sbi(sb);
64         struct ptlrpc_request *req = NULL;
65         struct inode          *inode = NULL;
66         int                   eadatalen = 0;
67         unsigned long         hash = cl_fid_build_ino(fid,
68                                                       ll_need_32bit_api(sbi));
69         struct  md_op_data    *op_data;
70         int                   rc;
71         ENTRY;
72
73         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
74
75         inode = ilookup5(sb, hash, ll_test_inode_by_fid, (void *)fid);
76         if (inode)
77                 RETURN(inode);
78
79         rc = ll_get_default_mdsize(sbi, &eadatalen);
80         if (rc)
81                 RETURN(ERR_PTR(rc));
82
83         /* Because inode is NULL, ll_prep_md_op_data can not
84          * be used here. So we allocate op_data ourselves */
85         OBD_ALLOC_PTR(op_data);
86         if (op_data == NULL)
87                 return ERR_PTR(-ENOMEM);
88
89         op_data->op_fid1 = *fid;
90         op_data->op_mode = eadatalen;
91         op_data->op_valid = OBD_MD_FLEASIZE;
92
93         /* mds_fid2dentry ignores f_type */
94         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
95         OBD_FREE_PTR(op_data);
96         if (rc) {
97                 /* Suppress erroneous/confusing messages when NFS
98                  * is out of sync and requests old data. */
99                 CDEBUG(D_INFO, "can't get object attrs, fid "DFID", rc %d\n",
100                                 PFID(fid), rc);
101                 RETURN(ERR_PTR(rc));
102         }
103         rc = ll_prep_inode(&inode, req, sb, NULL);
104         ptlrpc_req_finished(req);
105         if (rc)
106                 RETURN(ERR_PTR(rc));
107
108         RETURN(inode);
109 }
110
111 struct lustre_nfs_fid {
112         struct lu_fid   lnf_child;
113         struct lu_fid   lnf_parent;
114 };
115
116 static struct dentry *
117 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
118 {
119         struct inode  *inode;
120         struct dentry *result;
121         ENTRY;
122
123         if (!fid_is_sane(fid))
124                 RETURN(ERR_PTR(-ESTALE));
125
126         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
127
128         inode = search_inode_for_lustre(sb, fid);
129         if (IS_ERR(inode))
130                 RETURN(ERR_PTR(PTR_ERR(inode)));
131
132         if (is_bad_inode(inode)) {
133                 /* we didn't find the right inode.. */
134                 iput(inode);
135                 RETURN(ERR_PTR(-ESTALE));
136         }
137
138         /* N.B. d_obtain_alias() drops inode ref on error */
139         result = d_obtain_alias(inode);
140         if (!IS_ERR(result)) {
141                 int rc;
142
143                 rc = ll_d_init(result);
144                 if (rc < 0) {
145                         dput(result);
146                         result = ERR_PTR(rc);
147                 } else {
148                         struct ll_dentry_data *ldd = ll_d2d(result);
149
150                         /*
151                          * Need to signal to the ll_file_open that
152                          * we came from NFS and so opencache needs to be
153                          * enabled for this one
154                          */
155                         ldd->lld_nfs_dentry = 1;
156                 }
157         }
158
159         RETURN(result);
160 }
161
162 #ifndef FILEID_INVALID
163 #define FILEID_INVALID 0xff
164 #endif
165 #ifndef FILEID_LUSTRE
166 #define FILEID_LUSTRE  0x97
167 #endif
168
169 /**
170  * \a connectable - is nfsd will connect himself or this should be done
171  *                  at lustre
172  *
173  * The return value is file handle type:
174  * 1 -- contains child file handle;
175  * 2 -- contains child file handle and parent file handle;
176  * 255 -- error.
177  */
178 #ifndef HAVE_ENCODE_FH_PARENT
179 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
180                         int connectable)
181 {
182         struct inode *inode = de->d_inode;
183         struct inode *parent = de->d_parent->d_inode;
184 #else
185 static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
186                         struct inode *parent)
187 {
188 #endif
189         int fileid_len = sizeof(struct lustre_nfs_fid) / 4;
190         struct lustre_nfs_fid *nfs_fid = (void *)fh;
191         ENTRY;
192
193         CDEBUG(D_INFO, "%s: encoding for ("DFID") maxlen=%d minlen=%d\n",
194                ll_get_fsname(inode->i_sb, NULL, 0),
195                PFID(ll_inode2fid(inode)), *plen, fileid_len);
196
197         if (*plen < fileid_len) {
198                 *plen = fileid_len;
199                 RETURN(FILEID_INVALID);
200         }
201
202         nfs_fid->lnf_child = *ll_inode2fid(inode);
203         if (parent != NULL)
204                 nfs_fid->lnf_parent = *ll_inode2fid(parent);
205         else
206                 fid_zero(&nfs_fid->lnf_parent);
207         *plen = fileid_len;
208
209         RETURN(FILEID_LUSTRE);
210 }
211
212 static int
213 #ifndef HAVE_FILLDIR_USE_CTX
214 ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
215                         loff_t hash, u64 ino, unsigned type)
216 {
217         struct ll_getname_data *lgd = cookie;
218 #else
219 ll_nfs_get_name_filldir(struct dir_context *ctx, const char *name, int namelen,
220                         loff_t hash, u64 ino, unsigned type)
221 {
222         struct ll_getname_data *lgd =
223                 container_of(ctx, struct ll_getname_data, ctx);
224 #endif /* HAVE_FILLDIR_USE_CTX */
225         /* It is hack to access lde_fid for comparison with lgd_fid.
226          * So the input 'name' must be part of the 'lu_dirent'. */
227         struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
228         struct lu_fid fid;
229
230         fid_le_to_cpu(&fid, &lde->lde_fid);
231         if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
232                 memcpy(lgd->lgd_name, name, namelen);
233                 lgd->lgd_name[namelen] = 0;
234                 lgd->lgd_found = 1;
235         }
236         return lgd->lgd_found;
237 }
238
239 static int ll_get_name(struct dentry *dentry, char *name,
240                        struct dentry *child)
241 {
242         struct inode *dir = dentry->d_inode;
243         struct ll_getname_data lgd = {
244                 .lgd_name       = name,
245                 .lgd_fid        = ll_i2info(child->d_inode)->lli_fid,
246 #ifdef HAVE_DIR_CONTEXT
247                 .ctx.actor      = ll_nfs_get_name_filldir,
248 #endif
249                 .lgd_found = 0,
250         };
251         struct md_op_data *op_data;
252         __u64   pos = 0;
253         int rc;
254         ENTRY;
255
256         if (!dir || !S_ISDIR(dir->i_mode))
257                 GOTO(out, rc = -ENOTDIR);
258
259         if (!dir->i_fop)
260                 GOTO(out, rc = -EINVAL);
261
262         op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
263                                      LUSTRE_OPC_ANY, dir);
264         if (IS_ERR(op_data))
265                 GOTO(out, rc = PTR_ERR(op_data));
266
267         op_data->op_max_pages = ll_i2sbi(dir)->ll_md_brw_pages;
268         inode_lock(dir);
269 #ifdef HAVE_DIR_CONTEXT
270         rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
271 #else
272         rc = ll_dir_read(dir, &pos, op_data, &lgd, ll_nfs_get_name_filldir);
273 #endif
274         inode_unlock(dir);
275         ll_finish_md_op_data(op_data);
276         if (!rc && !lgd.lgd_found)
277                 rc = -ENOENT;
278         EXIT;
279 out:
280         return rc;
281 }
282
283 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
284                                       int fh_len, int fh_type)
285 {
286         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
287
288         if (fh_type != FILEID_LUSTRE)
289                 RETURN(ERR_PTR(-EPROTO));
290
291         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent));
292 }
293
294 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
295                                       int fh_len, int fh_type)
296 {
297         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
298
299         if (fh_type != FILEID_LUSTRE)
300                 RETURN(ERR_PTR(-EPROTO));
301
302         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL));
303 }
304
305 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
306 {
307         struct ptlrpc_request   *req = NULL;
308         struct ll_sb_info       *sbi;
309         struct mdt_body         *body;
310         static const char       dotdot[] = "..";
311         struct md_op_data       *op_data;
312         int                     rc;
313         int                     lmmsize;
314         ENTRY;
315
316         LASSERT(dir && S_ISDIR(dir->i_mode));
317
318         sbi = ll_s2sbi(dir->i_sb);
319
320         CDEBUG(D_INFO, "%s: getting parent for ("DFID")\n",
321                ll_get_fsname(dir->i_sb, NULL, 0),
322                PFID(ll_inode2fid(dir)));
323
324         rc = ll_get_default_mdsize(sbi, &lmmsize);
325         if (rc != 0)
326                 RETURN(rc);
327
328         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
329                                      strlen(dotdot), lmmsize,
330                                      LUSTRE_OPC_ANY, NULL);
331         if (IS_ERR(op_data))
332                 RETURN(PTR_ERR(op_data));
333
334         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
335         ll_finish_md_op_data(op_data);
336         if (rc != 0) {
337                 CERROR("%s: failure inode "DFID" get parent: rc = %d\n",
338                        ll_get_fsname(dir->i_sb, NULL, 0),
339                        PFID(ll_inode2fid(dir)), rc);
340                 RETURN(rc);
341         }
342         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
343
344         /*
345          * LU-3952: MDT may lost the FID of its parent, we should not crash
346          * the NFS server, ll_iget_for_nfs() will handle the error.
347          */
348         if (body->mbo_valid & OBD_MD_FLID) {
349                 CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
350                        PFID(ll_inode2fid(dir)), PFID(&body->mbo_fid1));
351                 *parent_fid = body->mbo_fid1;
352         }
353
354         ptlrpc_req_finished(req);
355         RETURN(0);
356 }
357
358 static struct dentry *ll_get_parent(struct dentry *dchild)
359 {
360         struct lu_fid   parent_fid = { 0 };
361         int             rc;
362         struct dentry   *dentry;
363         ENTRY;
364
365         rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
366         if (rc != 0)
367                 RETURN(ERR_PTR(rc));
368
369         dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
370
371         RETURN(dentry);
372 }
373
374 struct export_operations lustre_export_operations = {
375        .get_parent = ll_get_parent,
376        .encode_fh  = ll_encode_fh,
377        .get_name   = ll_get_name,
378         .fh_to_dentry = ll_fh_to_dentry,
379         .fh_to_parent = ll_fh_to_parent,
380 };