Whamcloud - gitweb
bcb90060051f38668241d3d05124efbd6d9ccd22
[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, 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
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 static int lmv_intent_remote(struct obd_export *exp, void *lmm,
62                              int lmmsize, struct lookup_intent *it,
63                              const struct lu_fid *parent_fid, int flags,
64                              struct ptlrpc_request **reqp,
65                              ldlm_blocking_callback cb_blocking,
66                              __u64 extra_lock_flags)
67 {
68         struct obd_device       *obd = exp->exp_obd;
69         struct lmv_obd          *lmv = &obd->u.lmv;
70         struct ptlrpc_request   *req = NULL;
71         struct lustre_handle    plock;
72         struct md_op_data       *op_data;
73         struct lmv_tgt_desc     *tgt;
74         struct mdt_body         *body;
75         int                     pmode;
76         int                     rc = 0;
77         ENTRY;
78
79         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
80         if (body == NULL)
81                 RETURN(-EPROTO);
82
83         LASSERT((body->valid & OBD_MD_MDS));
84
85         /*
86          * Unfortunately, we have to lie to MDC/MDS to retrieve
87          * attributes llite needs and provideproper locking.
88          */
89         if (it->it_op & IT_LOOKUP)
90                 it->it_op = IT_GETATTR;
91
92         /*
93          * We got LOOKUP lock, but we really need attrs.
94          */
95         pmode = it->d.lustre.it_lock_mode;
96         if (pmode) {
97                 plock.cookie = it->d.lustre.it_lock_handle;
98                 it->d.lustre.it_lock_mode = 0;
99                 it->d.lustre.it_data = NULL;
100         }
101
102         LASSERT(fid_is_sane(&body->fid1));
103
104         tgt = lmv_find_target(lmv, &body->fid1);
105         if (IS_ERR(tgt))
106                 GOTO(out, rc = PTR_ERR(tgt));
107
108         OBD_ALLOC_PTR(op_data);
109         if (op_data == NULL)
110                 GOTO(out, rc = -ENOMEM);
111
112         op_data->op_fid1 = body->fid1;
113         /* Sent the parent FID to the remote MDT */
114         if (parent_fid != NULL) {
115                 /* The parent fid is only for remote open to
116                  * check whether the open is from OBF,
117                  * see mdt_cross_open */
118                 LASSERT(it->it_op & IT_OPEN);
119                 op_data->op_fid2 = *parent_fid;
120                 /* Add object FID to op_fid3, in case it needs to check stale
121                  * (M_CHECK_STALE), see mdc_finish_intent_lock */
122                 op_data->op_fid3 = body->fid1;
123         }
124
125         op_data->op_bias = MDS_CROSS_REF;
126         CDEBUG(D_INODE, "REMOTE_INTENT with fid="DFID" -> mds #%d\n",
127                PFID(&body->fid1), tgt->ltd_idx);
128
129         it->d.lustre.it_disposition &= ~DISP_ENQ_COMPLETE;
130         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
131                             flags, &req, cb_blocking, extra_lock_flags);
132         if (rc)
133                 GOTO(out_free_op_data, rc);
134
135         /*
136          * LLite needs LOOKUP lock to track dentry revocation in order to
137          * maintain dcache consistency. Thus drop UPDATE|PERM lock here
138          * and put LOOKUP in request.
139          */
140         if (it->d.lustre.it_lock_mode != 0) {
141                 it->d.lustre.it_remote_lock_handle =
142                                         it->d.lustre.it_lock_handle;
143                 it->d.lustre.it_remote_lock_mode = it->d.lustre.it_lock_mode;
144         }
145
146         it->d.lustre.it_lock_handle = plock.cookie;
147         it->d.lustre.it_lock_mode = pmode;
148
149         EXIT;
150 out_free_op_data:
151         OBD_FREE_PTR(op_data);
152 out:
153         if (rc && pmode)
154                 ldlm_lock_decref(&plock, pmode);
155
156         ptlrpc_req_finished(*reqp);
157         *reqp = req;
158         return rc;
159 }
160
161 /*
162  * IT_OPEN is intended to open (and create, possible) an object. Parent (pid)
163  * may be split dir.
164  */
165 int lmv_intent_open(struct obd_export *exp, struct md_op_data *op_data,
166                     void *lmm, int lmmsize, struct lookup_intent *it,
167                     int flags, struct ptlrpc_request **reqp,
168                     ldlm_blocking_callback cb_blocking,
169                     __u64 extra_lock_flags)
170 {
171         struct obd_device       *obd = exp->exp_obd;
172         struct lmv_obd          *lmv = &obd->u.lmv;
173         struct lmv_tgt_desc     *tgt;
174         struct mdt_body         *body;
175         int                     rc;
176         ENTRY;
177
178         /* Note: client might open with some random flags(sanity 33b), so we can
179          * not make sure op_fid2 is being initialized with BY_FID flag */
180         if (it->it_flags & MDS_OPEN_BY_FID && fid_is_sane(&op_data->op_fid2))
181                 tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid2);
182         else
183                 tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
184
185         if (IS_ERR(tgt))
186                 RETURN(PTR_ERR(tgt));
187
188         /* If it is ready to open the file by FID, do not need
189          * allocate FID at all, otherwise it will confuse MDT */
190         if ((it->it_op & IT_CREAT) &&
191             !(it->it_flags & MDS_OPEN_BY_FID)) {
192                 /*
193                  * For open with IT_CREATE and for IT_CREATE cases allocate new
194                  * fid and setup FLD for it.
195                  */
196                 op_data->op_fid3 = op_data->op_fid2;
197                 rc = lmv_fid_alloc(exp, &op_data->op_fid2, op_data);
198                 if (rc != 0)
199                         RETURN(rc);
200         }
201
202         CDEBUG(D_INODE, "OPEN_INTENT with fid1="DFID", fid2="DFID","
203                " name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
204                PFID(&op_data->op_fid2), op_data->op_name, tgt->ltd_idx);
205
206         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it, flags,
207                             reqp, cb_blocking, extra_lock_flags);
208         if (rc != 0)
209                 RETURN(rc);
210         /*
211          * Nothing is found, do not access body->fid1 as it is zero and thus
212          * pointless.
213          */
214         if ((it->d.lustre.it_disposition & DISP_LOOKUP_NEG) &&
215             !(it->d.lustre.it_disposition & DISP_OPEN_CREATE) &&
216             !(it->d.lustre.it_disposition & DISP_OPEN_OPEN))
217                 RETURN(rc);
218
219         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
220         if (body == NULL)
221                 RETURN(-EPROTO);
222         /*
223          * Not cross-ref case, just get out of here.
224          */
225         if (likely(!(body->valid & OBD_MD_MDS)))
226                 RETURN(0);
227
228         /*
229          * Okay, MDS has returned success. Probably name has been resolved in
230          * remote inode.
231          */
232         rc = lmv_intent_remote(exp, lmm, lmmsize, it, &op_data->op_fid1, flags,
233                                reqp, cb_blocking, extra_lock_flags);
234         if (rc != 0) {
235                 LASSERT(rc < 0);
236                 /*
237                  * This is possible, that some userspace application will try to
238                  * open file as directory and we will have -ENOTDIR here. As
239                  * this is normal situation, we should not print error here,
240                  * only debug info.
241                  */
242                 CDEBUG(D_INODE, "Can't handle remote %s: dir "DFID"("DFID"):"
243                        "%*s: %d\n", LL_IT2STR(it), PFID(&op_data->op_fid2),
244                        PFID(&op_data->op_fid1), op_data->op_namelen,
245                        op_data->op_name, rc);
246                 RETURN(rc);
247         }
248
249         RETURN(rc);
250 }
251
252 /*
253  * Handler for: getattr, lookup and revalidate cases.
254  */
255 int lmv_intent_lookup(struct obd_export *exp, struct md_op_data *op_data,
256                       void *lmm, int lmmsize, struct lookup_intent *it,
257                       int flags, struct ptlrpc_request **reqp,
258                       ldlm_blocking_callback cb_blocking,
259                       __u64 extra_lock_flags)
260 {
261         struct obd_device      *obd = exp->exp_obd;
262         struct lmv_obd         *lmv = &obd->u.lmv;
263         struct lmv_tgt_desc    *tgt = NULL;
264         struct mdt_body        *body;
265         int                     rc = 0;
266         ENTRY;
267
268         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
269         if (IS_ERR(tgt))
270                 RETURN(PTR_ERR(tgt));
271
272         if (!fid_is_sane(&op_data->op_fid2))
273                 fid_zero(&op_data->op_fid2);
274
275         CDEBUG(D_INODE, "LOOKUP_INTENT with fid1="DFID", fid2="DFID
276                ", name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
277                PFID(&op_data->op_fid2),
278                op_data->op_name ? op_data->op_name : "<NULL>",
279                tgt->ltd_idx);
280
281         op_data->op_bias &= ~MDS_CROSS_REF;
282
283         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
284                              flags, reqp, cb_blocking, extra_lock_flags);
285
286         if (rc < 0 || *reqp == NULL)
287                 RETURN(rc);
288
289         /*
290          * MDS has returned success. Probably name has been resolved in
291          * remote inode. Let's check this.
292          */
293         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
294         if (body == NULL)
295                 RETURN(-EPROTO);
296         /* Not cross-ref case, just get out of here. */
297         if (likely(!(body->valid & OBD_MD_MDS)))
298                 RETURN(0);
299
300         rc = lmv_intent_remote(exp, lmm, lmmsize, it, NULL, flags, reqp,
301                                cb_blocking, extra_lock_flags);
302
303         RETURN(rc);
304 }
305
306 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
307                     void *lmm, int lmmsize, struct lookup_intent *it,
308                     int flags, struct ptlrpc_request **reqp,
309                     ldlm_blocking_callback cb_blocking,
310                     __u64 extra_lock_flags)
311 {
312         struct obd_device *obd = exp->exp_obd;
313         int                rc;
314         ENTRY;
315
316         LASSERT(it != NULL);
317         LASSERT(fid_is_sane(&op_data->op_fid1));
318
319         CDEBUG(D_INODE, "INTENT LOCK '%s' for '%*s' on "DFID"\n",
320                LL_IT2STR(it), op_data->op_namelen, op_data->op_name,
321                PFID(&op_data->op_fid1));
322
323         rc = lmv_check_connect(obd);
324         if (rc)
325                 RETURN(rc);
326
327         if (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_LAYOUT))
328                 rc = lmv_intent_lookup(exp, op_data, lmm, lmmsize, it,
329                                        flags, reqp, cb_blocking,
330                                        extra_lock_flags);
331         else if (it->it_op & IT_OPEN)
332                 rc = lmv_intent_open(exp, op_data, lmm, lmmsize, it,
333                                      flags, reqp, cb_blocking,
334                                      extra_lock_flags);
335         else
336                 LBUG();
337         RETURN(rc);
338 }