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