Whamcloud - gitweb
LU-1187 lmv: Locate right MDT in lmv.
[fs/lustre-release.git] / lustre / lmv / lmv_intent.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) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, 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
37 #define DEBUG_SUBSYSTEM S_LMV
38 #ifdef __KERNEL__
39 #include <linux/slab.h>
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/slab.h>
43 #include <linux/pagemap.h>
44 #include <asm/div64.h>
45 #include <linux/seq_file.h>
46 #include <linux/namei.h>
47 #include <linux/lustre_intent.h>
48 #else
49 #include <liblustre.h>
50 #endif
51
52 #include <obd_support.h>
53 #include <lustre/lustre_idl.h>
54 #include <lustre_lib.h>
55 #include <lustre_net.h>
56 #include <lustre_dlm.h>
57 #include <obd_class.h>
58 #include <lprocfs_status.h>
59 #include "lmv_internal.h"
60
61 int lmv_intent_remote(struct obd_export *exp, void *lmm,
62                       int lmmsize, struct lookup_intent *it,
63                       int flags, struct ptlrpc_request **reqp,
64                       ldlm_blocking_callback cb_blocking,
65                       __u64 extra_lock_flags)
66 {
67         struct obd_device       *obd = exp->exp_obd;
68         struct lmv_obd          *lmv = &obd->u.lmv;
69         struct ptlrpc_request   *req = NULL;
70         struct lustre_handle    plock;
71         struct md_op_data       *op_data;
72         struct lmv_tgt_desc     *tgt;
73         struct mdt_body         *body;
74         int                     pmode;
75         int                     rc = 0;
76         ENTRY;
77
78         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
79         if (body == NULL)
80                 RETURN(-EPROTO);
81
82         LASSERT((body->valid & OBD_MD_MDS));
83
84         /*
85          * Unfortunately, we have to lie to MDC/MDS to retrieve
86          * attributes llite needs and provideproper locking.
87          */
88         if (it->it_op & IT_LOOKUP)
89                 it->it_op = IT_GETATTR;
90
91         /*
92          * We got LOOKUP lock, but we really need attrs.
93          */
94         pmode = it->d.lustre.it_lock_mode;
95         if (pmode) {
96                 plock.cookie = it->d.lustre.it_lock_handle;
97                 it->d.lustre.it_lock_mode = 0;
98                 it->d.lustre.it_data = NULL;
99         }
100
101         LASSERT(fid_is_sane(&body->fid1));
102
103         tgt = lmv_find_target(lmv, &body->fid1);
104         if (IS_ERR(tgt))
105                 GOTO(out, rc = PTR_ERR(tgt));
106
107         OBD_ALLOC_PTR(op_data);
108         if (op_data == NULL)
109                 GOTO(out, rc = -ENOMEM);
110
111         op_data->op_fid1 = body->fid1;
112         op_data->op_bias = MDS_CROSS_REF;
113
114         CDEBUG(D_INODE, "REMOTE_INTENT with fid="DFID" -> mds #%d\n",
115                PFID(&body->fid1), tgt->ltd_idx);
116
117         it->d.lustre.it_disposition &= ~DISP_ENQ_COMPLETE;
118         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
119                             flags, &req, cb_blocking, extra_lock_flags);
120         if (rc)
121                 GOTO(out_free_op_data, rc);
122
123         /*
124          * LLite needs LOOKUP lock to track dentry revocation in order to
125          * maintain dcache consistency. Thus drop UPDATE lock here and put
126          * LOOKUP in request.
127          */
128         if (it->d.lustre.it_lock_mode != 0) {
129                 ldlm_lock_decref((void *)&it->d.lustre.it_lock_handle,
130                                  it->d.lustre.it_lock_mode);
131                 it->d.lustre.it_lock_mode = 0;
132         }
133         it->d.lustre.it_lock_handle = plock.cookie;
134         it->d.lustre.it_lock_mode = pmode;
135
136         EXIT;
137 out_free_op_data:
138         OBD_FREE_PTR(op_data);
139 out:
140         if (rc && pmode)
141                 ldlm_lock_decref(&plock, pmode);
142
143         ptlrpc_req_finished(*reqp);
144         *reqp = req;
145         return rc;
146 }
147
148 /*
149  * IT_OPEN is intended to open (and create, possible) an object. Parent (pid)
150  * may be split dir.
151  */
152 int lmv_intent_open(struct obd_export *exp, struct md_op_data *op_data,
153                     void *lmm, int lmmsize, struct lookup_intent *it,
154                     int flags, struct ptlrpc_request **reqp,
155                     ldlm_blocking_callback cb_blocking,
156                     __u64 extra_lock_flags)
157 {
158         struct obd_device       *obd = exp->exp_obd;
159         struct lmv_obd          *lmv = &obd->u.lmv;
160         struct lmv_tgt_desc     *tgt;
161         struct mdt_body         *body;
162         int                     rc;
163         ENTRY;
164
165         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
166         if (IS_ERR(tgt))
167                 RETURN(PTR_ERR(tgt));
168
169         if (it->it_op & IT_CREAT) {
170                 /*
171                  * For open with IT_CREATE and for IT_CREATE cases allocate new
172                  * fid and setup FLD for it.
173                  */
174                 op_data->op_fid3 = op_data->op_fid2;
175                 rc = lmv_fid_alloc(exp, &op_data->op_fid2, op_data);
176                 if (rc != 0)
177                         RETURN(rc);
178         }
179
180         CDEBUG(D_INODE, "OPEN_INTENT with fid1="DFID", fid2="DFID","
181                " name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
182                PFID(&op_data->op_fid2), op_data->op_name, tgt->ltd_idx);
183
184         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it, flags,
185                             reqp, cb_blocking, extra_lock_flags);
186         if (rc != 0)
187                 RETURN(rc);
188         /*
189          * Nothing is found, do not access body->fid1 as it is zero and thus
190          * pointless.
191          */
192         if ((it->d.lustre.it_disposition & DISP_LOOKUP_NEG) &&
193             !(it->d.lustre.it_disposition & DISP_OPEN_CREATE) &&
194             !(it->d.lustre.it_disposition & DISP_OPEN_OPEN))
195                 RETURN(rc);
196
197         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
198         if (body == NULL)
199                 RETURN(-EPROTO);
200         /*
201          * Not cross-ref case, just get out of here.
202          */
203         if (likely(!(body->valid & OBD_MD_MDS)))
204                 RETURN(0);
205
206         /*
207          * Okay, MDS has returned success. Probably name has been resolved in
208          * remote inode.
209          */
210         rc = lmv_intent_remote(exp, lmm, lmmsize, it, flags, reqp,
211                                cb_blocking, extra_lock_flags);
212         if (rc != 0) {
213                 LASSERT(rc < 0);
214                 /*
215                  * This is possible, that some userspace application will try to
216                  * open file as directory and we will have -ENOTDIR here. As
217                  * this is normal situation, we should not print error here,
218                  * only debug info.
219                  */
220                 CDEBUG(D_INODE, "Can't handle remote %s: dir "DFID"("DFID"):"
221                        "%*s: %d\n", LL_IT2STR(it), PFID(&op_data->op_fid2),
222                        PFID(&op_data->op_fid1), op_data->op_namelen,
223                        op_data->op_name, rc);
224                 RETURN(rc);
225         }
226
227         RETURN(rc);
228 }
229
230 /*
231  * Handler for: getattr, lookup and revalidate cases.
232  */
233 int lmv_intent_lookup(struct obd_export *exp, struct md_op_data *op_data,
234                       void *lmm, int lmmsize, struct lookup_intent *it,
235                       int flags, struct ptlrpc_request **reqp,
236                       ldlm_blocking_callback cb_blocking,
237                       __u64 extra_lock_flags)
238 {
239         struct obd_device      *obd = exp->exp_obd;
240         struct lmv_obd         *lmv = &obd->u.lmv;
241         struct lmv_tgt_desc    *tgt = NULL;
242         struct mdt_body        *body;
243         int                     rc = 0;
244         ENTRY;
245
246         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
247         if (IS_ERR(tgt))
248                 RETURN(PTR_ERR(tgt));
249
250         if (!fid_is_sane(&op_data->op_fid2))
251                 fid_zero(&op_data->op_fid2);
252
253         CDEBUG(D_INODE, "LOOKUP_INTENT with fid1="DFID", fid2="DFID
254                ", name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
255                PFID(&op_data->op_fid2),
256                op_data->op_name ? op_data->op_name : "<NULL>",
257                tgt->ltd_idx);
258
259         op_data->op_bias &= ~MDS_CROSS_REF;
260
261         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
262                              flags, reqp, cb_blocking, extra_lock_flags);
263
264         if (rc < 0 || *reqp == NULL)
265                 RETURN(rc);
266
267         /*
268          * MDS has returned success. Probably name has been resolved in
269          * remote inode. Let's check this.
270          */
271         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
272         if (body == NULL)
273                 RETURN(-EPROTO);
274         /* Not cross-ref case, just get out of here. */
275         if (likely(!(body->valid & OBD_MD_MDS)))
276                 RETURN(0);
277
278         rc = lmv_intent_remote(exp, lmm, lmmsize, it, flags, reqp,
279                                cb_blocking, extra_lock_flags);
280
281         RETURN(rc);
282 }
283
284 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
285                     void *lmm, int lmmsize, struct lookup_intent *it,
286                     int flags, struct ptlrpc_request **reqp,
287                     ldlm_blocking_callback cb_blocking,
288                     __u64 extra_lock_flags)
289 {
290         struct obd_device *obd = exp->exp_obd;
291         int                rc;
292         ENTRY;
293
294         LASSERT(it != NULL);
295         LASSERT(fid_is_sane(&op_data->op_fid1));
296
297         CDEBUG(D_INODE, "INTENT LOCK '%s' for '%*s' on "DFID"\n",
298                LL_IT2STR(it), op_data->op_namelen, op_data->op_name,
299                PFID(&op_data->op_fid1));
300
301         rc = lmv_check_connect(obd);
302         if (rc)
303                 RETURN(rc);
304
305         if (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_LAYOUT))
306                 rc = lmv_intent_lookup(exp, op_data, lmm, lmmsize, it,
307                                        flags, reqp, cb_blocking,
308                                        extra_lock_flags);
309         else if (it->it_op & IT_OPEN)
310                 rc = lmv_intent_open(exp, op_data, lmm, lmmsize, it,
311                                      flags, reqp, cb_blocking,
312                                      extra_lock_flags);
313         else
314                 LBUG();
315         RETURN(rc);
316 }