Whamcloud - gitweb
b=16098
[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 static int ll_nfs_test_inode(struct inode *inode, void *opaque)
52 {
53         return lu_fid_eq(&ll_i2info(inode)->lli_fid,
54                          (struct lu_fid *)opaque);
55 }
56
57 static struct inode *search_inode_for_lustre(struct super_block *sb,
58                                              struct lu_fid *fid,
59                                              int mode)
60 {
61         struct ll_sb_info     *sbi = ll_s2sbi(sb);
62         struct ptlrpc_request *req = NULL;
63         struct inode          *inode = NULL;
64         unsigned long         valid = 0;
65         int                   eadatalen = 0;
66         ino_t                 ino = ll_fid_build_ino(sbi, fid);
67         int                   rc;
68         ENTRY;
69
70         CDEBUG(D_INFO, "searching inode for:(%lu,"DFID")\n", ino, PFID(fid));
71
72         inode = ILOOKUP(sb, ino, ll_nfs_test_inode, fid);
73         if (inode)
74                 RETURN(inode);
75
76         if (S_ISREG(mode)) {
77                 rc = ll_get_max_mdsize(sbi, &eadatalen);
78                 if (rc) 
79                         RETURN(ERR_PTR(rc)); 
80                 valid |= OBD_MD_FLEASIZE;
81         }
82
83         rc = md_getattr(sbi->ll_md_exp, fid, NULL, valid, eadatalen, &req);
84         if (rc) {
85                 CERROR("can't get object attrs, fid "DFID", rc %d\n",
86                        PFID(fid), rc);
87                 RETURN(ERR_PTR(rc));
88         }
89
90         rc = ll_prep_inode(&inode, req, sb);
91         ptlrpc_req_finished(req);
92         if (rc)
93                 RETURN(ERR_PTR(rc));
94
95         RETURN(inode);
96 }
97
98 static struct dentry *ll_iget_for_nfs(struct super_block *sb,
99                                       struct lu_fid *fid,
100                                       umode_t mode)
101 {
102         struct inode  *inode;
103         struct dentry *result;
104         ENTRY;
105
106         CDEBUG(D_INFO, "Get dentry for fid: "DFID"\n", PFID(fid));
107         if (!fid_is_sane(fid))
108                 RETURN(ERR_PTR(-ESTALE));
109
110         inode = search_inode_for_lustre(sb, fid, mode);
111         if (IS_ERR(inode))
112                 RETURN(ERR_PTR(PTR_ERR(inode)));
113
114         if (is_bad_inode(inode)) {
115                 /* we didn't find the right inode.. */
116                 CERROR("can't get inode by fid "DFID"\n",
117                        PFID(fid));
118                 iput(inode);
119                 RETURN(ERR_PTR(-ESTALE));
120         }
121
122         result = d_alloc_anon(inode);
123         if (!result) {
124                 iput(inode);
125                 RETURN(ERR_PTR(-ENOMEM));
126         }
127
128         ll_set_dd(result);
129
130         lock_dentry(result);
131         if (unlikely(result->d_op == &ll_init_d_ops)) {
132                 result->d_op = &ll_d_ops;
133                 unlock_dentry(result);
134                 smp_wmb();
135                 ll_d_wakeup(result);
136         } else {
137                 result->d_op = &ll_d_ops;
138                 unlock_dentry(result);
139         }
140
141         RETURN(result);
142 }
143
144 /*
145  * This length is counted as amount of __u32,
146  *  It is composed of a fid and a mode 
147  */
148 #define ONE_FH_LEN (sizeof(struct lu_fid)/4 + 1)
149
150 static struct dentry *ll_decode_fh(struct super_block *sb, __u32 *fh, int fh_len,
151                                    int fh_type,
152                                    int (*acceptable)(void *, struct dentry *),
153                                    void *context)
154 {
155         struct lu_fid *parent = NULL;
156         struct lu_fid *child;
157         struct dentry *entry;
158         ENTRY;
159
160         CDEBUG(D_INFO, "decoding for "DFID" fh_len=%d fh_type=%d\n", 
161                 PFID((struct lu_fid*)fh), fh_len, fh_type);
162
163         if (fh_type != 1 && fh_type != 2)
164                 RETURN(ERR_PTR(-ESTALE));
165         if (fh_len < ONE_FH_LEN * fh_type)
166                 RETURN(ERR_PTR(-ESTALE));
167
168         child = (struct lu_fid*)fh;
169         if (fh_type == 2)
170                 parent = (struct lu_fid*)(fh + ONE_FH_LEN);
171                 
172         entry = sb->s_export_op->find_exported_dentry(sb, child, parent,
173                                                       acceptable, context);
174         RETURN(entry);
175 }
176
177 /* The return value is file handle type:
178  * 1 -- contains child file handle;
179  * 2 -- contains child file handle and parent file handle;
180  * 255 -- error.
181  */
182 static int ll_encode_fh(struct dentry *de, __u32 *fh, int *plen, int connectable)
183 {
184         struct inode    *inode = de->d_inode;
185         struct lu_fid   *fid = ll_inode2fid(inode);
186         ENTRY;
187
188         CDEBUG(D_INFO, "encoding for (%lu,"DFID") maxlen=%d minlen=%d\n",
189                        inode->i_ino, PFID(fid), *plen, (int)ONE_FH_LEN);
190
191         if (*plen < ONE_FH_LEN)
192                 RETURN(255);
193
194         memcpy((char*)fh, fid, sizeof(*fid));
195         *(fh + ONE_FH_LEN - 1) = (__u32)(S_IFMT & inode->i_mode);
196
197         if (de->d_parent && *plen >= ONE_FH_LEN * 2) {
198                 struct inode *parent = de->d_parent->d_inode;
199                 fh += ONE_FH_LEN;
200                 memcpy((char*)fh, &ll_i2info(parent)->lli_fid, sizeof(*fid));
201                 *(fh + ONE_FH_LEN - 1) = (__u32)(S_IFMT & parent->i_mode);
202                 *plen = ONE_FH_LEN * 2;
203                 RETURN(2);
204         } else {
205                 *plen = ONE_FH_LEN;
206                 RETURN(1);
207         }
208 }
209
210 static struct dentry *ll_get_dentry(struct super_block *sb, void *data)
211 {
212         struct lu_fid      *fid;
213         struct dentry      *entry;
214         __u32               mode;
215         ENTRY;
216
217         fid = (struct lu_fid *)data;
218         mode = *((__u32*)data + ONE_FH_LEN - 1);
219         
220         entry = ll_iget_for_nfs(sb, fid, mode);
221         RETURN(entry);
222 }
223
224 static struct dentry *ll_get_parent(struct dentry *dchild)
225 {
226         struct ptlrpc_request *req = NULL;
227         struct inode          *dir = dchild->d_inode;
228         struct ll_sb_info     *sbi;
229         struct dentry         *result = NULL;
230         struct mdt_body       *body;
231         static char           dotdot[] = "..";
232         int                   rc;
233         ENTRY;
234         
235         LASSERT(dir && S_ISDIR(dir->i_mode));
236         
237         sbi = ll_s2sbi(dir->i_sb);
238  
239         CDEBUG(D_INFO, "getting parent for (%lu,"DFID")\n", 
240                         dir->i_ino, PFID(ll_inode2fid(dir)));
241
242         rc = md_getattr_name(sbi->ll_md_exp, ll_inode2fid(dir), NULL,
243                              dotdot, strlen(dotdot) + 1, 0, 0,
244                              ll_i2suppgid(dir), &req);
245         if (rc) {
246                 CERROR("failure %d inode %lu get parent\n", rc, dir->i_ino);
247                 RETURN(ERR_PTR(rc));
248         }
249         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
250         LASSERT(body->valid & OBD_MD_FLID);
251         
252         CDEBUG(D_INFO, "parent for "DFID" is "DFID"\n", 
253                 PFID(ll_inode2fid(dir)), PFID(&body->fid1));
254
255         result = ll_iget_for_nfs(dir->i_sb, &body->fid1, S_IFDIR);
256
257         ptlrpc_req_finished(req);
258         RETURN(result);
259
260
261 struct export_operations lustre_export_operations = {
262        .get_parent = ll_get_parent,
263        .get_dentry = ll_get_dentry,
264        .encode_fh  = ll_encode_fh,
265        .decode_fh  = ll_decode_fh,
266 };