Whamcloud - gitweb
LU-6142 lustre: convert some container_of0 to container_of
[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, 2017, 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
48         while (len--) {
49                 u32 key = key1 + (key0 ^ (*name++ * 7152373));
50
51                 if (key & 0x80000000)
52                         key -= 0x7fffffff;
53
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, ll_need_32bit_api(sbi));
68         struct md_op_data *op_data;
69         int rc;
70
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         /*
84          * Because inode is NULL, ll_prep_md_op_data can not
85          * be used here. So we allocate op_data ourselves
86          */
87         OBD_ALLOC_PTR(op_data);
88         if (!op_data)
89                 return ERR_PTR(-ENOMEM);
90
91         op_data->op_fid1 = *fid;
92         op_data->op_mode = eadatalen;
93         op_data->op_valid = OBD_MD_FLEASIZE;
94
95         /* mds_fid2dentry ignores f_type */
96         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
97         OBD_FREE_PTR(op_data);
98         if (rc) {
99                 /*
100                  * Suppress erroneous/confusing messages when NFS
101                  * is out of sync and requests old data.
102                  */
103                 CDEBUG(D_INFO, "can't get object attrs, fid "DFID", rc %d\n",
104                                 PFID(fid), rc);
105                 RETURN(ERR_PTR(rc));
106         }
107         rc = ll_prep_inode(&inode, req, sb, NULL);
108         ptlrpc_req_finished(req);
109         if (rc)
110                 RETURN(ERR_PTR(rc));
111
112         RETURN(inode);
113 }
114
115 static struct dentry *
116 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
117 {
118         struct inode  *inode;
119         struct dentry *result;
120
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                         spin_lock(&result->d_lock);
156                         ldd->lld_nfs_dentry = 1;
157                         spin_unlock(&result->d_lock);
158                 }
159         }
160
161         RETURN(result);
162 }
163
164 #ifndef FILEID_INVALID
165 #define FILEID_INVALID 0xff
166 #endif
167 #ifndef FILEID_LUSTRE
168 #define FILEID_LUSTRE  0x97
169 #endif
170
171 /**
172  * \a connectable - is nfsd will connect himself or this should be done
173  *                  at lustre
174  *
175  * The return value is file handle type:
176  * 1 -- contains child file handle;
177  * 2 -- contains child file handle and parent file handle;
178  * 255 -- error.
179  */
180 static int ll_encode_fh(struct inode *inode, u32 *fh, int *plen,
181                         struct inode *parent)
182 {
183         int fileid_len = sizeof(struct lustre_file_handle) / 4;
184         struct lustre_file_handle *lfh = (void *)fh;
185
186         ENTRY;
187
188         CDEBUG(D_INFO, "%s: encoding for ("DFID") maxlen=%d minlen=%d\n",
189                ll_i2sbi(inode)->ll_fsname,
190                PFID(ll_inode2fid(inode)), *plen, fileid_len);
191
192         if (*plen < fileid_len) {
193                 *plen = fileid_len;
194                 RETURN(FILEID_INVALID);
195         }
196
197         lfh->lfh_child = *ll_inode2fid(inode);
198         if (parent)
199                 lfh->lfh_parent = *ll_inode2fid(parent);
200         else
201                 fid_zero(&lfh->lfh_parent);
202         *plen = fileid_len;
203
204         RETURN(FILEID_LUSTRE);
205 }
206
207 static int
208 #ifndef HAVE_FILLDIR_USE_CTX
209 ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
210                         loff_t hash, u64 ino, unsigned type)
211 {
212         struct ll_getname_data *lgd = cookie;
213 #else
214 ll_nfs_get_name_filldir(struct dir_context *ctx, const char *name, int namelen,
215                         loff_t hash, u64 ino, unsigned type)
216 {
217         struct ll_getname_data *lgd =
218                 container_of(ctx, struct ll_getname_data, ctx);
219 #endif /* HAVE_FILLDIR_USE_CTX */
220         /*
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', and
223          * so must appear to be a non-const pointer to an empty array.
224          */
225         char (*n)[0] = (void *)name;
226         /* NOTE: This should be container_of().  However container_of() in
227          * kernels earlier than v4.13-rc1~37^2~94 cause this to generate a
228          * warning, which fails when we compile with -Werror.  Those earlier
229          * kernels don't have container_of_safe, calling that instead will use
230          * the lustre-local version which doesn't generate the warning.
231          */
232         struct lu_dirent *lde = container_of_safe(n, struct lu_dirent, lde_name);
233         struct lu_fid fid;
234
235         fid_le_to_cpu(&fid, &lde->lde_fid);
236         if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
237                 memcpy(lgd->lgd_name, name, namelen);
238                 lgd->lgd_name[namelen] = 0;
239                 lgd->lgd_found = 1;
240         }
241         return lgd->lgd_found;
242 }
243
244 static int ll_get_name(struct dentry *dentry, char *name,
245                        struct dentry *child)
246 {
247         struct inode *dir = dentry->d_inode;
248         struct ll_getname_data lgd = {
249                 .lgd_name = name,
250                 .lgd_fid = ll_i2info(child->d_inode)->lli_fid,
251 #ifdef HAVE_DIR_CONTEXT
252                 .ctx.actor = ll_nfs_get_name_filldir,
253 #endif
254                 .lgd_found = 0,
255         };
256         struct md_op_data *op_data;
257         u64 pos = 0;
258         int rc;
259
260         ENTRY;
261
262         if (!dir || !S_ISDIR(dir->i_mode))
263                 GOTO(out, rc = -ENOTDIR);
264
265         if (!dir->i_fop)
266                 GOTO(out, rc = -EINVAL);
267
268         op_data = ll_prep_md_op_data(NULL, dir, dir, NULL, 0, 0,
269                                      LUSTRE_OPC_ANY, dir);
270         if (IS_ERR(op_data))
271                 GOTO(out, rc = PTR_ERR(op_data));
272
273         inode_lock(dir);
274 #ifdef HAVE_DIR_CONTEXT
275         rc = ll_dir_read(dir, &pos, op_data, &lgd.ctx);
276 #else
277         rc = ll_dir_read(dir, &pos, op_data, &lgd, ll_nfs_get_name_filldir);
278 #endif
279         inode_unlock(dir);
280         ll_finish_md_op_data(op_data);
281         if (!rc && !lgd.lgd_found)
282                 rc = -ENOENT;
283         EXIT;
284 out:
285         return rc;
286 }
287
288 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
289                                       int fh_len, int fh_type)
290 {
291         struct lustre_file_handle *lfh = (struct lustre_file_handle *)fid;
292
293         if (fh_type != FILEID_LUSTRE)
294                 RETURN(ERR_PTR(-EPROTO));
295
296         RETURN(ll_iget_for_nfs(sb, &lfh->lfh_child, &lfh->lfh_parent));
297 }
298
299 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
300                                       int fh_len, int fh_type)
301 {
302         struct lustre_file_handle *lfh = (struct lustre_file_handle *)fid;
303
304         if (fh_type != FILEID_LUSTRE)
305                 RETURN(ERR_PTR(-EPROTO));
306
307         RETURN(ll_iget_for_nfs(sb, &lfh->lfh_parent, NULL));
308 }
309
310 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid)
311 {
312         struct ptlrpc_request   *req = NULL;
313         struct ll_sb_info       *sbi;
314         struct mdt_body         *body;
315         static const char       dotdot[] = "..";
316         struct md_op_data       *op_data;
317         int                     rc;
318         int                     lmmsize;
319
320         ENTRY;
321
322         LASSERT(dir && S_ISDIR(dir->i_mode));
323
324         sbi = ll_s2sbi(dir->i_sb);
325
326         CDEBUG(D_INFO, "%s: getting parent for ("DFID")\n",
327                sbi->ll_fsname, PFID(ll_inode2fid(dir)));
328
329         rc = ll_get_default_mdsize(sbi, &lmmsize);
330         if (rc != 0)
331                 RETURN(rc);
332
333         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
334                                      strlen(dotdot), lmmsize,
335                                      LUSTRE_OPC_ANY, NULL);
336         if (IS_ERR(op_data))
337                 RETURN(PTR_ERR(op_data));
338
339         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
340         ll_finish_md_op_data(op_data);
341         if (rc != 0) {
342                 CERROR("%s: failure inode "DFID" get parent: rc = %d\n",
343                        sbi->ll_fsname, PFID(ll_inode2fid(dir)), rc);
344                 RETURN(rc);
345         }
346         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
347
348         /*
349          * LU-3952: MDT may lost the FID of its parent, we should not crash
350          * the NFS server, ll_iget_for_nfs() will handle the error.
351          */
352         if (body->mbo_valid & OBD_MD_FLID) {
353                 CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
354                        PFID(ll_inode2fid(dir)), PFID(&body->mbo_fid1));
355                 *parent_fid = body->mbo_fid1;
356         }
357
358         ptlrpc_req_finished(req);
359         RETURN(0);
360 }
361
362 static struct dentry *ll_get_parent(struct dentry *dchild)
363 {
364         struct lu_fid parent_fid = { 0 };
365         int rc;
366         struct dentry *dentry;
367
368         ENTRY;
369
370         rc = ll_dir_get_parent_fid(dchild->d_inode, &parent_fid);
371         if (rc != 0)
372                 RETURN(ERR_PTR(rc));
373
374         dentry = ll_iget_for_nfs(dchild->d_inode->i_sb, &parent_fid, NULL);
375
376         RETURN(dentry);
377 }
378
379 struct export_operations lustre_export_operations = {
380         .get_parent = ll_get_parent,
381         .encode_fh  = ll_encode_fh,
382         .get_name   = ll_get_name,
383         .fh_to_dentry = ll_fh_to_dentry,
384         .fh_to_parent = ll_fh_to_parent,
385 };