Whamcloud - gitweb
LU-3157 llite: A not locked mutex can be unlocked.
[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         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
179         if (IS_ERR(tgt))
180                 RETURN(PTR_ERR(tgt));
181
182         /* If it is ready to open the file by FID, do not need
183          * allocate FID at all, otherwise it will confuse MDT */
184         if ((it->it_op & IT_CREAT) &&
185             !(it->it_flags & MDS_OPEN_BY_FID)) {
186                 /*
187                  * For open with IT_CREATE and for IT_CREATE cases allocate new
188                  * fid and setup FLD for it.
189                  */
190                 op_data->op_fid3 = op_data->op_fid2;
191                 rc = lmv_fid_alloc(exp, &op_data->op_fid2, op_data);
192                 if (rc != 0)
193                         RETURN(rc);
194         }
195
196         CDEBUG(D_INODE, "OPEN_INTENT with fid1="DFID", fid2="DFID","
197                " name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
198                PFID(&op_data->op_fid2), op_data->op_name, tgt->ltd_idx);
199
200         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it, flags,
201                             reqp, cb_blocking, extra_lock_flags);
202         if (rc != 0)
203                 RETURN(rc);
204         /*
205          * Nothing is found, do not access body->fid1 as it is zero and thus
206          * pointless.
207          */
208         if ((it->d.lustre.it_disposition & DISP_LOOKUP_NEG) &&
209             !(it->d.lustre.it_disposition & DISP_OPEN_CREATE) &&
210             !(it->d.lustre.it_disposition & DISP_OPEN_OPEN))
211                 RETURN(rc);
212
213         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
214         if (body == NULL)
215                 RETURN(-EPROTO);
216         /*
217          * Not cross-ref case, just get out of here.
218          */
219         if (likely(!(body->valid & OBD_MD_MDS)))
220                 RETURN(0);
221
222         /*
223          * Okay, MDS has returned success. Probably name has been resolved in
224          * remote inode.
225          */
226         rc = lmv_intent_remote(exp, lmm, lmmsize, it, &op_data->op_fid1, flags,
227                                reqp, cb_blocking, extra_lock_flags);
228         if (rc != 0) {
229                 LASSERT(rc < 0);
230                 /*
231                  * This is possible, that some userspace application will try to
232                  * open file as directory and we will have -ENOTDIR here. As
233                  * this is normal situation, we should not print error here,
234                  * only debug info.
235                  */
236                 CDEBUG(D_INODE, "Can't handle remote %s: dir "DFID"("DFID"):"
237                        "%*s: %d\n", LL_IT2STR(it), PFID(&op_data->op_fid2),
238                        PFID(&op_data->op_fid1), op_data->op_namelen,
239                        op_data->op_name, rc);
240                 RETURN(rc);
241         }
242
243         RETURN(rc);
244 }
245
246 /*
247  * Handler for: getattr, lookup and revalidate cases.
248  */
249 int lmv_intent_lookup(struct obd_export *exp, struct md_op_data *op_data,
250                       void *lmm, int lmmsize, struct lookup_intent *it,
251                       int flags, struct ptlrpc_request **reqp,
252                       ldlm_blocking_callback cb_blocking,
253                       __u64 extra_lock_flags)
254 {
255         struct obd_device      *obd = exp->exp_obd;
256         struct lmv_obd         *lmv = &obd->u.lmv;
257         struct lmv_tgt_desc    *tgt = NULL;
258         struct mdt_body        *body;
259         int                     rc = 0;
260         ENTRY;
261
262         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
263         if (IS_ERR(tgt))
264                 RETURN(PTR_ERR(tgt));
265
266         if (!fid_is_sane(&op_data->op_fid2))
267                 fid_zero(&op_data->op_fid2);
268
269         CDEBUG(D_INODE, "LOOKUP_INTENT with fid1="DFID", fid2="DFID
270                ", name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
271                PFID(&op_data->op_fid2),
272                op_data->op_name ? op_data->op_name : "<NULL>",
273                tgt->ltd_idx);
274
275         op_data->op_bias &= ~MDS_CROSS_REF;
276
277         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
278                              flags, reqp, cb_blocking, extra_lock_flags);
279
280         if (rc < 0 || *reqp == NULL)
281                 RETURN(rc);
282
283         /*
284          * MDS has returned success. Probably name has been resolved in
285          * remote inode. Let's check this.
286          */
287         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
288         if (body == NULL)
289                 RETURN(-EPROTO);
290         /* Not cross-ref case, just get out of here. */
291         if (likely(!(body->valid & OBD_MD_MDS)))
292                 RETURN(0);
293
294         rc = lmv_intent_remote(exp, lmm, lmmsize, it, NULL, flags, reqp,
295                                cb_blocking, extra_lock_flags);
296
297         RETURN(rc);
298 }
299
300 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
301                     void *lmm, int lmmsize, struct lookup_intent *it,
302                     int flags, struct ptlrpc_request **reqp,
303                     ldlm_blocking_callback cb_blocking,
304                     __u64 extra_lock_flags)
305 {
306         struct obd_device *obd = exp->exp_obd;
307         int                rc;
308         ENTRY;
309
310         LASSERT(it != NULL);
311         LASSERT(fid_is_sane(&op_data->op_fid1));
312
313         CDEBUG(D_INODE, "INTENT LOCK '%s' for '%*s' on "DFID"\n",
314                LL_IT2STR(it), op_data->op_namelen, op_data->op_name,
315                PFID(&op_data->op_fid1));
316
317         rc = lmv_check_connect(obd);
318         if (rc)
319                 RETURN(rc);
320
321         if (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_LAYOUT))
322                 rc = lmv_intent_lookup(exp, op_data, lmm, lmmsize, it,
323                                        flags, reqp, cb_blocking,
324                                        extra_lock_flags);
325         else if (it->it_op & IT_OPEN)
326                 rc = lmv_intent_open(exp, op_data, lmm, lmmsize, it,
327                                      flags, reqp, cb_blocking,
328                                      extra_lock_flags);
329         else
330                 LBUG();
331         RETURN(rc);
332 }