Whamcloud - gitweb
LU-8648 all: remove all Sun license and URL references
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/lustre/llite/llite_nfs.c
33  *
34  * NFS export of Lustre Light File System
35  *
36  * Author: Yury Umanets <umka@clusterfs.com>
37  * Author: Huang Hua <huanghua@clusterfs.com>
38  */
39
40 #define DEBUG_SUBSYSTEM S_LLITE
41 #include "llite_internal.h"
42 #include <linux/exportfs.h>
43
44 __u32 get_uuid2int(const char *name, int len)
45 {
46         __u32 key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
47         while (len--) {
48                 __u32 key = key1 + (key0 ^ (*name++ * 7152373));
49                 if (key & 0x80000000) key -= 0x7fffffff;
50                 key1 = key0;
51                 key0 = key;
52         }
53         return (key0 << 1);
54 }
55
56 struct inode *search_inode_for_lustre(struct super_block *sb,
57                                       const struct lu_fid *fid)
58 {
59         struct ll_sb_info     *sbi = ll_s2sbi(sb);
60         struct ptlrpc_request *req = NULL;
61         struct inode          *inode = NULL;
62         int                   eadatalen = 0;
63         unsigned long         hash = cl_fid_build_ino(fid,
64                                                       ll_need_32bit_api(sbi));
65         struct  md_op_data    *op_data;
66         int                   rc;
67         ENTRY;
68
69         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
70
71         inode = ilookup5(sb, hash, ll_test_inode_by_fid, (void *)fid);
72         if (inode)
73                 RETURN(inode);
74
75         rc = ll_get_default_mdsize(sbi, &eadatalen);
76         if (rc)
77                 RETURN(ERR_PTR(rc));
78
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);
82         if (op_data == NULL)
83                 return ERR_PTR(-ENOMEM);
84
85         op_data->op_fid1 = *fid;
86         op_data->op_mode = eadatalen;
87         op_data->op_valid = OBD_MD_FLEASIZE;
88
89         /* mds_fid2dentry ignores f_type */
90         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
91         OBD_FREE_PTR(op_data);
92         if (rc) {
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",
96                                 PFID(fid), rc);
97                 RETURN(ERR_PTR(rc));
98         }
99         rc = ll_prep_inode(&inode, req, sb, NULL);
100         ptlrpc_req_finished(req);
101         if (rc)
102                 RETURN(ERR_PTR(rc));
103
104         RETURN(inode);
105 }
106
107 struct lustre_nfs_fid {
108         struct lu_fid   lnf_child;
109         struct lu_fid   lnf_parent;
110 };
111
112 static struct dentry *
113 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
114 {
115         struct inode  *inode;
116         struct dentry *result;
117         ENTRY;
118
119         if (!fid_is_sane(fid))
120                 RETURN(ERR_PTR(-ESTALE));
121
122         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
123
124         inode = search_inode_for_lustre(sb, fid);
125         if (IS_ERR(inode))
126                 RETURN(ERR_PTR(PTR_ERR(inode)));
127
128         if (is_bad_inode(inode)) {
129                 /* we didn't find the right inode.. */
130                 iput(inode);
131                 RETURN(ERR_PTR(-ESTALE));
132         }
133
134         /* N.B. d_obtain_alias() drops inode ref on error */
135         result = d_obtain_alias(inode);
136         if (!IS_ERR(result)) {
137                 int rc;
138
139                 rc = ll_d_init(result);
140                 if (rc < 0) {
141                         dput(result);
142                         result = ERR_PTR(rc);
143                 } else {
144                         struct ll_dentry_data *ldd = ll_d2d(result);
145
146                         /*
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
150                          */
151                         ldd->lld_nfs_dentry = 1;
152                 }
153         }
154
155         RETURN(result);
156 }
157
158 #ifndef FILEID_INVALID
159 #define FILEID_INVALID 0xff
160 #endif
161 #ifndef FILEID_LUSTRE
162 #define FILEID_LUSTRE  0x97
163 #endif
164
165 /**
166  * \a connectable - is nfsd will connect himself or this should be done
167  *                  at lustre
168  *
169  * The return value is file handle type:
170  * 1 -- contains child file handle;
171  * 2 -- contains child file handle and parent file handle;
172  * 255 -- error.
173  */
174 #ifndef HAVE_ENCODE_FH_PARENT
175 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
176                         int connectable)
177 {
178         struct inode *inode = de->d_inode;
179         struct inode *parent = de->d_parent->d_inode;
180 #else
181 static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
182                         struct inode *parent)
183 {
184 #endif
185         int fileid_len = sizeof(struct lustre_nfs_fid) / 4;
186         struct lustre_nfs_fid *nfs_fid = (void *)fh;
187         ENTRY;
188
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);
192
193         if (*plen < fileid_len) {
194                 *plen = fileid_len;
195                 RETURN(FILEID_INVALID);
196         }
197
198         nfs_fid->lnf_child = *ll_inode2fid(inode);
199         if (parent != NULL)
200                 nfs_fid->lnf_parent = *ll_inode2fid(parent);
201         else
202                 fid_zero(&nfs_fid->lnf_parent);
203         *plen = fileid_len;
204
205         RETURN(FILEID_LUSTRE);
206 }
207
208 static int
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)
212 {
213         struct ll_getname_data *lgd = cookie;
214 #else
215 ll_nfs_get_name_filldir(struct dir_context *ctx, const char *name, int namelen,
216                         loff_t hash, u64 ino, unsigned type)
217 {
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);
224         struct lu_fid fid;
225
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;
230                 lgd->lgd_found = 1;
231         }
232         return lgd->lgd_found;
233 }
234
235 static int ll_get_name(struct dentry *dentry, char *name,
236                        struct dentry *child)
237 {
238         struct inode *dir = dentry->d_inode;
239         struct ll_getname_data lgd = {
240                 .lgd_name       = name,
241                 .lgd_fid        = ll_i2info(child->d_inode)->lli_fid,
242 #ifdef HAVE_DIR_CONTEXT
243                 .ctx.actor      = ll_nfs_get_name_filldir,
244 #endif
245                 .lgd_found = 0,
246         };
247         struct md_op_data *op_data;
248         __u64   pos = 0;
249         int rc;
250         ENTRY;
251
252         if (!dir || !S_ISDIR(dir->i_mode))
253                 GOTO(out, rc = -ENOTDIR);
254
255         if (!dir->i_fop)
256                 GOTO(out, rc = -EINVAL);
257
258         op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
259                                      LUSTRE_OPC_ANY, dir);
260         if (IS_ERR(op_data))
261                 GOTO(out, rc = PTR_ERR(op_data));
262
263         op_data->op_max_pages = ll_i2sbi(dir)->ll_md_brw_pages;
264         inode_lock(dir);
265 #ifdef HAVE_DIR_CONTEXT
266         rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
267 #else
268         rc = ll_dir_read(dir, &pos, op_data, &lgd, ll_nfs_get_name_filldir);
269 #endif
270         inode_unlock(dir);
271         ll_finish_md_op_data(op_data);
272         if (!rc && !lgd.lgd_found)
273                 rc = -ENOENT;
274         EXIT;
275 out:
276         return rc;
277 }
278
279 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
280                                       int fh_len, int fh_type)
281 {
282         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
283
284         if (fh_type != FILEID_LUSTRE)
285                 RETURN(ERR_PTR(-EPROTO));
286
287         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent));
288 }
289
290 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
291                                       int fh_len, int fh_type)
292 {
293         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
294
295         if (fh_type != FILEID_LUSTRE)
296                 RETURN(ERR_PTR(-EPROTO));
297
298         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL));
299 }
300
301 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
302 {
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;
308         int                     rc;
309         int                     lmmsize;
310         ENTRY;
311
312         LASSERT(dir && S_ISDIR(dir->i_mode));
313
314         sbi = ll_s2sbi(dir->i_sb);
315
316         CDEBUG(D_INFO, "%s: getting parent for ("DFID")\n",
317                ll_get_fsname(dir->i_sb, NULL, 0),
318                PFID(ll_inode2fid(dir)));
319
320         rc = ll_get_default_mdsize(sbi, &lmmsize);
321         if (rc != 0)
322                 RETURN(rc);
323
324         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
325                                      strlen(dotdot), lmmsize,
326                                      LUSTRE_OPC_ANY, NULL);
327         if (IS_ERR(op_data))
328                 RETURN(PTR_ERR(op_data));
329
330         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
331         ll_finish_md_op_data(op_data);
332         if (rc != 0) {
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);
336                 RETURN(rc);
337         }
338         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
339
340         /*
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.
343          */
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;
348         }
349
350         ptlrpc_req_finished(req);
351         RETURN(0);
352 }
353
354 static struct dentry *ll_get_parent(struct dentry *dchild)
355 {
356         struct lu_fid   parent_fid = { 0 };
357         int             rc;
358         struct dentry   *dentry;
359         ENTRY;
360
361         rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
362         if (rc != 0)
363                 RETURN(ERR_PTR(rc));
364
365         dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
366
367         RETURN(dentry);
368 }
369
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,
376 };