Whamcloud - gitweb
LU-2800 autoconf: remove obsolete autoconf options
[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 void get_uuid2fsid(const char *name, int len, __kernel_fsid_t *fsid)
62 {
63         __u64 key = 0, key0 = 0x12a3fe2d, key1 = 0x37abe8f9;
64
65         while (len--) {
66                 key = key1 + (key0 ^ (*name++ * 7152373));
67                 if (key & 0x8000000000000000ULL)
68                         key -= 0x7fffffffffffffffULL;
69                 key1 = key0;
70                 key0 = key;
71         }
72
73         fsid->val[0] = key;
74         fsid->val[1] = key >> 32;
75 }
76
77 static int ll_nfs_test_inode(struct inode *inode, void *opaque)
78 {
79         return lu_fid_eq(&ll_i2info(inode)->lli_fid,
80                          (struct lu_fid *)opaque);
81 }
82
83 struct inode *search_inode_for_lustre(struct super_block *sb,
84                                       const struct lu_fid *fid)
85 {
86         struct ll_sb_info     *sbi = ll_s2sbi(sb);
87         struct ptlrpc_request *req = NULL;
88         struct inode          *inode = NULL;
89         int                   eadatalen = 0;
90         unsigned long         hash = cl_fid_build_ino(fid,
91                                                       ll_need_32bit_api(sbi));
92         struct  md_op_data    *op_data;
93         int                   rc;
94         ENTRY;
95
96         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
97
98         inode = ilookup5(sb, hash, ll_nfs_test_inode, (void *)fid);
99         if (inode)
100                 RETURN(inode);
101
102         rc = ll_get_max_mdsize(sbi, &eadatalen);
103         if (rc)
104                 RETURN(ERR_PTR(rc));
105
106         /* Because inode is NULL, ll_prep_md_op_data can not
107          * be used here. So we allocate op_data ourselves */
108         OBD_ALLOC_PTR(op_data);
109         if (op_data == NULL)
110                 return ERR_PTR(-ENOMEM);
111
112         op_data->op_fid1 = *fid;
113         op_data->op_mode = eadatalen;
114         op_data->op_valid = OBD_MD_FLEASIZE;
115
116         /* mds_fid2dentry ignores f_type */
117         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
118         OBD_FREE_PTR(op_data);
119         if (rc) {
120                 CERROR("can't get object attrs, fid "DFID", rc %d\n",
121                        PFID(fid), rc);
122                 RETURN(ERR_PTR(rc));
123         }
124         rc = ll_prep_inode(&inode, req, sb, NULL);
125         ptlrpc_req_finished(req);
126         if (rc)
127                 RETURN(ERR_PTR(rc));
128
129         RETURN(inode);
130 }
131
132 struct lustre_nfs_fid {
133         struct lu_fid   lnf_child;
134         struct lu_fid   lnf_parent;
135 };
136
137 static struct dentry *
138 ll_iget_for_nfs(struct super_block *sb, struct lu_fid *fid, struct lu_fid *parent)
139 {
140         struct inode  *inode;
141         struct dentry *result;
142         ENTRY;
143
144         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
145         if (!fid_is_sane(fid))
146                 RETURN(ERR_PTR(-ESTALE));
147
148         inode = search_inode_for_lustre(sb, fid);
149         if (IS_ERR(inode))
150                 RETURN(ERR_PTR(PTR_ERR(inode)));
151
152         if (is_bad_inode(inode)) {
153                 /* we didn't find the right inode.. */
154                 iput(inode);
155                 RETURN(ERR_PTR(-ESTALE));
156         }
157
158         /**
159          * It is an anonymous dentry without OST objects created yet.
160          * We have to find the parent to tell MDS how to init lov objects.
161          */
162         if (S_ISREG(inode->i_mode) && !ll_i2info(inode)->lli_has_smd &&
163             parent != NULL) {
164                 struct ll_inode_info *lli = ll_i2info(inode);
165
166                 spin_lock(&lli->lli_lock);
167                 lli->lli_pfid = *parent;
168                 spin_unlock(&lli->lli_lock);
169         }
170
171         result = d_obtain_alias(inode);
172         if (IS_ERR(result))
173                 RETURN(result);
174
175         ll_dops_init(result, 1, 0);
176
177         RETURN(result);
178 }
179
180 #define LUSTRE_NFS_FID          0x97
181
182 /**
183  * \a connectable - is nfsd will connect himself or this should be done
184  *                  at lustre
185  *
186  * The return value is file handle type:
187  * 1 -- contains child file handle;
188  * 2 -- contains child file handle and parent file handle;
189  * 255 -- error.
190  */
191 #ifndef HAVE_ENCODE_FH_PARENT
192 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
193                         int connectable)
194 {
195         struct inode *inode = de->d_inode;
196         struct inode *parent = de->d_parent->d_inode;
197 #else
198 static int ll_encode_fh(struct inode *inode, __u32 *fh, int *plen,
199                         struct inode *parent)
200 {
201 #endif
202         struct lustre_nfs_fid *nfs_fid = (void *)fh;
203         ENTRY;
204
205         CDEBUG(D_INFO, "encoding for (%lu,"DFID") maxlen=%d minlen=%d\n",
206               inode->i_ino, PFID(ll_inode2fid(inode)), *plen,
207               (int)sizeof(struct lustre_nfs_fid));
208
209         if (*plen < sizeof(struct lustre_nfs_fid) / 4)
210                 RETURN(255);
211
212         nfs_fid->lnf_child = *ll_inode2fid(inode);
213         nfs_fid->lnf_parent = *ll_inode2fid(parent);
214         *plen = sizeof(struct lustre_nfs_fid) / 4;
215
216         RETURN(LUSTRE_NFS_FID);
217 }
218
219 static int ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
220                                    loff_t hash, u64 ino, unsigned type)
221 {
222         /* It is hack to access lde_fid for comparison with lgd_fid.
223          * So the input 'name' must be part of the 'lu_dirent'. */
224         struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
225         struct ll_getname_data *lgd = cookie;
226         struct lu_fid fid;
227
228         fid_le_to_cpu(&fid, &lde->lde_fid);
229         if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
230                 memcpy(lgd->lgd_name, name, namelen);
231                 lgd->lgd_name[namelen] = 0;
232                 lgd->lgd_found = 1;
233         }
234         return lgd->lgd_found;
235 }
236
237 static int ll_get_name(struct dentry *dentry, char *name,
238                        struct dentry *child)
239 {
240         struct inode *dir = dentry->d_inode;
241         struct ll_getname_data lgd;
242         __u64 offset = 0;
243         int rc;
244         ENTRY;
245
246         if (!dir || !S_ISDIR(dir->i_mode))
247                 GOTO(out, rc = -ENOTDIR);
248
249         if (!dir->i_fop)
250                 GOTO(out, rc = -EINVAL);
251
252         lgd.lgd_name = name;
253         lgd.lgd_fid = ll_i2info(child->d_inode)->lli_fid;
254         lgd.lgd_found = 0;
255
256         mutex_lock(&dir->i_mutex);
257         rc = ll_dir_read(dir, &offset, &lgd, ll_nfs_get_name_filldir);
258         mutex_unlock(&dir->i_mutex);
259         if (!rc && !lgd.lgd_found)
260                 rc = -ENOENT;
261         EXIT;
262
263 out:
264         return rc;
265 }
266
267 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
268                                       int fh_len, int fh_type)
269 {
270         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
271
272         if (fh_type != LUSTRE_NFS_FID)
273                 RETURN(ERR_PTR(-EPROTO));
274
275         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child, &nfs_fid->lnf_parent));
276 }
277
278 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
279                                       int fh_len, int fh_type)
280 {
281         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
282
283         if (fh_type != LUSTRE_NFS_FID)
284                 RETURN(ERR_PTR(-EPROTO));
285
286         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent, NULL));
287 }
288 static struct dentry *ll_get_parent(struct dentry *dchild)
289 {
290         struct ptlrpc_request *req = NULL;
291         struct inode          *dir = dchild->d_inode;
292         struct ll_sb_info     *sbi;
293         struct dentry         *result = NULL;
294         struct mdt_body       *body;
295         static char           dotdot[] = "..";
296         struct md_op_data     *op_data;
297         int                   rc;
298         int                   lmmsize;
299         ENTRY;
300
301         LASSERT(dir && S_ISDIR(dir->i_mode));
302
303         sbi = ll_s2sbi(dir->i_sb);
304
305         CDEBUG(D_INFO, "getting parent for (%lu,"DFID")\n",
306                         dir->i_ino, PFID(ll_inode2fid(dir)));
307
308         rc = ll_get_max_mdsize(sbi, &lmmsize);
309         if (rc != 0)
310                 RETURN(ERR_PTR(rc));
311
312         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
313                                      strlen(dotdot), lmmsize,
314                                      LUSTRE_OPC_ANY, NULL);
315         if (IS_ERR(op_data))
316                 RETURN((void *)op_data);
317
318         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
319         ll_finish_md_op_data(op_data);
320         if (rc) {
321                 CERROR("failure %d inode %lu get parent\n", rc, dir->i_ino);
322                 RETURN(ERR_PTR(rc));
323         }
324         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
325         LASSERT(body->valid & OBD_MD_FLID);
326
327         CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
328                 PFID(ll_inode2fid(dir)), PFID(&body->fid1));
329
330         result = ll_iget_for_nfs(dir->i_sb, &body->fid1, NULL);
331
332         ptlrpc_req_finished(req);
333         RETURN(result);
334 }
335
336 struct export_operations lustre_export_operations = {
337        .get_parent = ll_get_parent,
338        .encode_fh  = ll_encode_fh,
339        .get_name   = ll_get_name,
340         .fh_to_dentry = ll_fh_to_dentry,
341         .fh_to_parent = ll_fh_to_parent,
342 };