Whamcloud - gitweb
36b60a7b5344fb463e7591dd9b880f873a6db763
[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  2008 Sun Microsystems, Inc. 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 struct inode *search_inode_for_lustre(struct super_block *sb,
64                                              const struct lu_fid *fid)
65 {
66         struct ll_sb_info     *sbi = ll_s2sbi(sb);
67         struct ptlrpc_request *req = NULL;
68         struct inode          *inode = NULL;
69         int                   eadatalen = 0;
70         ino_t                 ino = cl_fid_build_ino(fid);
71         struct  md_op_data    *op_data;
72         int                   rc;
73         ENTRY;
74
75         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", ino, PFID(fid));
76
77         rc = ll_get_max_mdsize(sbi, &eadatalen);
78         if (rc)
79                 RETURN(ERR_PTR(rc));
80
81         /* Because inode is NULL, ll_prep_md_op_data can not
82          * be used here. So we allocate op_data ourselves */
83         OBD_ALLOC_PTR(op_data);
84         if (op_data == NULL)
85                 return ERR_PTR(-ENOMEM);
86
87         op_data->op_fid1 = *fid;
88         op_data->op_mode = eadatalen;
89         op_data->op_valid = OBD_MD_FLEASIZE;
90
91         /* mds_fid2dentry ignores f_type */
92         rc = md_getattr(sbi->ll_md_exp, op_data, &req);
93         OBD_FREE_PTR(op_data);
94         if (rc) {
95                 CERROR("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);
100         ptlrpc_req_finished(req);
101         if (rc)
102                 RETURN(ERR_PTR(rc));
103
104         RETURN(inode);
105 }
106
107 static struct dentry *ll_iget_for_nfs(struct super_block *sb,
108                                       const struct lu_fid *fid)
109 {
110         struct inode  *inode;
111         struct dentry *result;
112         ENTRY;
113
114         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
115         if (!fid_is_sane(fid))
116                 RETURN(ERR_PTR(-ESTALE));
117
118         inode = search_inode_for_lustre(sb, fid);
119         if (IS_ERR(inode))
120                 RETURN(ERR_PTR(PTR_ERR(inode)));
121
122         if (is_bad_inode(inode)) {
123                 /* we didn't find the right inode.. */
124                 CERROR("can't get inode by fid "DFID"\n",
125                        PFID(fid));
126                 iput(inode);
127                 RETURN(ERR_PTR(-ESTALE));
128         }
129
130         result = d_obtain_alias(inode);
131         if (!result) {
132                 iput(inode);
133                 RETURN(ERR_PTR(-ENOMEM));
134         }
135
136         ll_dops_init(result, 1);
137
138         RETURN(result);
139 }
140
141 #define LUSTRE_NFS_FID          0x97
142
143 struct lustre_nfs_fid {
144         struct lu_fid   lnf_child;
145         struct lu_fid   lnf_parent;
146 };
147
148 /**
149  * \a connectable - is nfsd will connect himself or this should be done
150  *                  at lustre
151  *
152  * The return value is file handle type:
153  * 1 -- contains child file handle;
154  * 2 -- contains child file handle and parent file handle;
155  * 255 -- error.
156  */
157 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen,
158                         int connectable)
159 {
160         struct inode *inode = de->d_inode;
161         struct inode *parent = de->d_parent->d_inode;
162         struct lustre_nfs_fid *nfs_fid = (void *)fh;
163         ENTRY;
164
165         CDEBUG(D_INFO, "encoding for (%lu,"DFID") maxlen=%d minlen=%d\n",
166               inode->i_ino, PFID(ll_inode2fid(inode)), *plen,
167               (int)sizeof(struct lustre_nfs_fid));
168
169         if (*plen < sizeof(struct lustre_nfs_fid)/4)
170                 RETURN(255);
171
172         nfs_fid->lnf_child = *ll_inode2fid(inode);
173         nfs_fid->lnf_parent = *ll_inode2fid(parent);
174         *plen = sizeof(struct lustre_nfs_fid)/4;
175
176         RETURN(LUSTRE_NFS_FID);
177 }
178
179 #ifdef HAVE_FH_TO_DENTRY
180 static struct dentry *ll_fh_to_dentry(struct super_block *sb, struct fid *fid,
181                                       int fh_len, int fh_type)
182 {
183         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
184
185         if (fh_type != LUSTRE_NFS_FID)
186                 RETURN(ERR_PTR(-EPROTO));
187
188         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_child));
189 }
190
191 static struct dentry *ll_fh_to_parent(struct super_block *sb, struct fid *fid,
192                                       int fh_len, int fh_type)
193 {
194         struct lustre_nfs_fid *nfs_fid = (struct lustre_nfs_fid *)fid;
195
196         if (fh_type != LUSTRE_NFS_FID)
197                 RETURN(ERR_PTR(-EPROTO));
198
199         RETURN(ll_iget_for_nfs(sb, &nfs_fid->lnf_parent));
200 }
201
202 #else
203
204 /*
205  * This length is counted as amount of __u32,
206  *  It is composed of a fid and a mode
207  */
208 static struct dentry *ll_decode_fh(struct super_block *sb, __u32 *fh, int fh_len,
209                                    int fh_type,
210                                    int (*acceptable)(void *, struct dentry *),
211                                    void *context)
212 {
213         struct lustre_nfs_fid *nfs_fid = (void *)fh;
214         struct dentry *entry;
215         ENTRY;
216
217         CDEBUG(D_INFO, "decoding for "DFID" fh_len=%d fh_type=%x\n", 
218                 PFID(&nfs_fid->lnf_child), fh_len, fh_type);
219
220         if (fh_type != LUSTRE_NFS_FID)
221                 RETURN(ERR_PTR(-EPROTO));
222
223         entry = sb->s_export_op->find_exported_dentry(sb, &nfs_fid->lnf_child,
224                                                       &nfs_fid->lnf_parent,
225                                                       acceptable, context);
226         RETURN(entry);
227 }
228
229 static struct dentry *ll_get_dentry(struct super_block *sb, void *data)
230 {
231         struct lustre_nfs_fid *fid = data;
232         struct dentry      *entry;
233         ENTRY;
234
235         entry = ll_iget_for_nfs(sb, &fid->lnf_child);
236         RETURN(entry);
237 }
238 #endif
239 static struct dentry *ll_get_parent(struct dentry *dchild)
240 {
241         struct ptlrpc_request *req = NULL;
242         struct inode          *dir = dchild->d_inode;
243         struct ll_sb_info     *sbi;
244         struct dentry         *result = NULL;
245         struct mdt_body       *body;
246         static char           dotdot[] = "..";
247         struct md_op_data     *op_data;
248         int                   rc;
249         ENTRY;
250
251         LASSERT(dir && S_ISDIR(dir->i_mode));
252
253         sbi = ll_s2sbi(dir->i_sb);
254
255         CDEBUG(D_INFO, "getting parent for (%lu,"DFID")\n",
256                         dir->i_ino, PFID(ll_inode2fid(dir)));
257
258         op_data = ll_prep_md_op_data(NULL, dir, NULL, dotdot,
259                                      strlen(dotdot), 0,
260                                      LUSTRE_OPC_ANY, NULL);
261         if (op_data == NULL)
262                 RETURN(ERR_PTR(-ENOMEM));
263
264         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
265         ll_finish_md_op_data(op_data);
266         if (rc) {
267                 CERROR("failure %d inode %lu get parent\n", rc, dir->i_ino);
268                 RETURN(ERR_PTR(rc));
269         }
270         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
271         LASSERT(body->valid & OBD_MD_FLID);
272
273         CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n",
274                 PFID(ll_inode2fid(dir)), PFID(&body->fid1));
275
276         result = ll_iget_for_nfs(dir->i_sb, &body->fid1);
277
278         ptlrpc_req_finished(req);
279         RETURN(result);
280 }
281
282 struct export_operations lustre_export_operations = {
283        .get_parent = ll_get_parent,
284        .encode_fh  = ll_encode_fh,
285 #ifdef HAVE_FH_TO_DENTRY
286         .fh_to_dentry = ll_fh_to_dentry,
287         .fh_to_parent = ll_fh_to_parent,
288 #else
289        .get_dentry = ll_get_dentry,
290        .decode_fh  = ll_decode_fh,
291 #endif
292 };