Whamcloud - gitweb
LU-163 MDS returns 32/64-bit dir name hash according to client type
[fs/lustre-release.git] / lustre / llite / llite_nfs.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
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 static 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 = (unsigned long) cl_fid_build_ino(fid, 0);
77         struct  md_op_data    *op_data;
78         int                   rc;
79         ENTRY;
80
81         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", hash, PFID(fid));
82
83         inode = ilookup5(sb, hash, ll_nfs_test_inode, (void *)fid);
84         if (inode)
85                 RETURN(inode);
86
87         rc = ll_get_max_mdsize(sbi, &eadatalen);
88         if (rc)
89                 RETURN(ERR_PTR(rc));
90
91         /* Because inode is NULL, ll_prep_md_op_data can not
92          * be used here. So we allocate op_data ourselves */
93         OBD_ALLOC_PTR(op_data);
94         if (op_data == NULL)
95                 return ERR_PTR(-ENOMEM);
96
97         op_data->op_fid1 = *fid;
98         op_data->op_mode = eadatalen;
99         op_data->op_valid = OBD_MD_FLEASIZE;
100
101         /* mds_fid2dentry ignores f_type */
102         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
103         OBD_FREE_PTR(op_data);
104         if (rc) {
105                 CERROR("can't get object attrs, fid "DFID", rc %d\n",
106                        PFID(fid), rc);
107                 RETURN(ERR_PTR(rc));
108         }
109         rc = ll_prep_inode(&inode, req, sb);
110         ptlrpc_req_finished(req);
111         if (rc)
112                 RETURN(ERR_PTR(rc));
113
114         RETURN(inode);
115 }
116
117 static struct dentry *ll_iget_for_nfs(struct super_block *sb,
118                                       const struct lu_fid *fid)
119 {
120         struct inode  *inode;
121         struct dentry *result;
122         ENTRY;
123
124         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
125         if (!fid_is_sane(fid))
126                 RETURN(ERR_PTR(-ESTALE));
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                 CERROR("can't get inode by fid "DFID"\n",
135                        PFID(fid));
136                 iput(inode);
137                 RETURN(ERR_PTR(-ESTALE));
138         }
139
140         result = d_obtain_alias(inode);
141         if (!result)
142                 RETURN(ERR_PTR(-ENOMEM));
143
144         ll_dops_init(result, 1, 0);
145
146         RETURN(result);
147 }
148
149 #define LUSTRE_NFS_FID          0x97
150
151 struct lustre_nfs_fid {
152         struct lu_fid   lnf_child;
153         struct lu_fid   lnf_parent;
154 };
155
156 /**
157  * \a connectable - is nfsd will connect himself or this should be done
158  *                  at lustre
159  *
160  * The return value is file handle type:
161  * 1 -- contains child file handle;
162  * 2 -- contains child file handle and parent file handle;
163  * 255 -- error.
164  */
165 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
166                         int connectable)
167 {
168         struct inode *inode = de->d_inode;
169         struct inode *parent = de->d_parent->d_inode;
170         struct lustre_nfs_fid *nfs_fid = (void *)fh;
171         ENTRY;
172
173         CDEBUG(D_INFO, "encoding for (%lu,"DFID") maxlen=%d minlen=%d\n",
174               inode->i_ino, PFID(ll_inode2fid(inode)), *plen,
175               (int)sizeof(struct lustre_nfs_fid));
176
177         if (*plen < sizeof(struct lustre_nfs_fid)/4)
178                 RETURN(255);
179
180         nfs_fid->lnf_child = *ll_inode2fid(inode);
181         nfs_fid->lnf_parent = *ll_inode2fid(parent);
182         *plen = sizeof(struct lustre_nfs_fid)/4;
183
184         RETURN(LUSTRE_NFS_FID);
185 }
186
187 static int ll_nfs_get_name_filldir(void *cookie, const char *name, int namelen,
188                                    loff_t hash, u64 ino, unsigned type)
189 {
190         /* It is hack to access lde_fid for comparison with lgd_fid.
191          * So the input 'name' must be part of the 'lu_dirent'. */
192         struct lu_dirent *lde = container_of0(name, struct lu_dirent, lde_name);
193         struct ll_getname_data *lgd = cookie;
194         struct lu_fid fid;
195
196         fid_le_to_cpu(&fid, &lde->lde_fid);
197         if (lu_fid_eq(&fid, &lgd->lgd_fid)) {
198                 memcpy(lgd->lgd_name, name, namelen);
199                 lgd->lgd_name[namelen] = 0;
200                 lgd->lgd_found = 1;
201         }
202         return lgd->lgd_found;
203 }
204
205 static int ll_get_name(struct dentry *dentry, char *name,
206                        struct dentry *child)
207 {
208         struct inode *dir = dentry->d_inode;
209         struct file *filp;
210         struct ll_getname_data lgd;
211         int rc;
212         ENTRY;
213
214         if (!dir || !S_ISDIR(dir->i_mode))
215                 GOTO(out, rc = -ENOTDIR);
216
217         if (!dir->i_fop)
218                 GOTO(out, rc = -EINVAL);
219
220         filp = ll_dentry_open(dget(dentry), NULL, O_RDONLY, current_cred());
221         if (IS_ERR(filp))
222                 GOTO(out, rc = PTR_ERR(filp));
223
224         if (!filp->f_op->readdir)
225                 GOTO(out_close, rc = -EINVAL);
226
227         lgd.lgd_name = name;
228         lgd.lgd_fid = ll_i2info(child->d_inode)->lli_fid;
229         lgd.lgd_found = 0;
230
231         cfs_mutex_lock(&dir->i_mutex);
232         rc = ll_readdir(filp, &lgd, ll_nfs_get_name_filldir);
233         cfs_mutex_unlock(&dir->i_mutex);
234         if (!rc && !lgd.lgd_found)
235                 rc = -ENOENT;
236         EXIT;
237
238 out_close:
239         fput(filp);
240 out:
241         return rc;
242 }
243
244 #ifdef HAVE_FH_TO_DENTRY
245 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
246                                       int fh_len, int fh_type)
247 {
248         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
249
250         if (fh_type != LUSTRE_NFS_FID)
251                 RETURN(ERR_PTR(-EPROTO));
252
253         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child));
254 }
255
256 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
257                                       int fh_len, int fh_type)
258 {
259         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
260
261         if (fh_type != LUSTRE_NFS_FID)
262                 RETURN(ERR_PTR(-EPROTO));
263
264         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent));
265 }
266
267 #else
268
269 /*
270  * This length is counted as amount of __u32,
271  *  It is composed of a fid and a mode
272  */
273 static struct dentry *ll_decode_fh(struct super_block *sb, __u32 *fh, int fh_len,
274                                    int fh_type,
275                                    int (*acceptable)(void *, struct dentry *),
276                                    void *context)
277 {
278         struct lustre_nfs_fid *nfs_fid = (void *)fh;
279         struct dentry *entry;
280         ENTRY;
281
282         CDEBUG(D_INFO, "decoding for "DFID" fh_len=%d fh_type=%x\n", 
283                 PFID(&nfs_fid->lnf_child), fh_len, fh_type);
284
285         if (fh_type != LUSTRE_NFS_FID)
286                 RETURN(ERR_PTR(-EPROTO));
287
288         entry = sb->s_export_op->find_exported_dentry(sb, &nfs_fid->lnf_child,
289                                                       &nfs_fid->lnf_parent,
290                                                       acceptable, context);
291         RETURN(entry);
292 }
293
294 static struct dentry *ll_get_dentry(struct super_block *sb, void *data)
295 {
296         struct lustre_nfs_fid *fid = data;
297         struct dentry      *entry;
298         ENTRY;
299
300         entry = ll_iget_for_nfs(sb, &fid->lnf_child);
301         RETURN(entry);
302 }
303 #endif
304 static struct dentry *ll_get_parent(struct dentry *dchild)
305 {
306         struct ptlrpc_request *req = NULL;
307         struct inode          *dir = dchild->d_inode;
308         struct ll_sb_info     *sbi;
309         struct dentry         *result = NULL;
310         struct mdt_body       *body;
311         static char           dotdot[] = "..";
312         struct md_op_data     *op_data;
313         int                   rc;
314         ENTRY;
315
316         LASSERT(dir && S_ISDIR(dir->i_mode));
317
318         sbi = ll_s2sbi(dir->i_sb);
319
320         CDEBUG(D_INFO, "getting parent for (%lu,"DFID")\n",
321                         dir->i_ino, PFID(ll_inode2fid(dir)));
322
323         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
324                                      strlen(dotdot), 0,
325                                      LUSTRE_OPC_ANY, NULL);
326         if (op_data == NULL)
327                 RETURN(ERR_PTR(-ENOMEM));
328
329         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
330         ll_finish_md_op_data(op_data);
331         if (rc) {
332                 CERROR("failure %d inode %lu get parent\n", rc, dir->i_ino);
333                 RETURN(ERR_PTR(rc));
334         }
335         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
336         LASSERT(body->valid & OBD_MD_FLID);
337
338         CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
339                 PFID(ll_inode2fid(dir)), PFID(&body->fid1));
340
341         result = ll_iget_for_nfs(dir->i_sb, &body->fid1);
342
343         ptlrpc_req_finished(req);
344         RETURN(result);
345 }
346
347 struct export_operations lustre_export_operations = {
348        .get_parent = ll_get_parent,
349        .encode_fh  = ll_encode_fh,
350        .get_name   = ll_get_name,
351 #ifdef HAVE_FH_TO_DENTRY
352         .fh_to_dentry = ll_fh_to_dentry,
353         .fh_to_parent = ll_fh_to_parent,
354 #else
355        .get_dentry = ll_get_dentry,
356        .decode_fh  = ll_decode_fh,
357 #endif
358 };