Whamcloud - gitweb
LU-2827 ldlm: wrong handling of ldlm resends
[fs/lustre-release.git] / lustre / ofd / ofd_dlm.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 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  * lustre/ofd/ofd_dlm.c
37  *
38  * Author: Mike Pershin <tappro@whamcloud.com>
39  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_FILTER
43
44 #include "ofd_internal.h"
45
46 struct ofd_intent_args {
47         struct ldlm_lock        **victim;
48         __u64                    size;
49         int                     *liblustre;
50 };
51
52 static enum interval_iter ofd_intent_cb(struct interval_node *n, void *args)
53 {
54         struct ldlm_interval     *node = (struct ldlm_interval *)n;
55         struct ofd_intent_args   *arg = args;
56         __u64                     size = arg->size;
57         struct ldlm_lock        **v = arg->victim;
58         struct ldlm_lock         *lck;
59
60         /* If the interval is lower than the current file size, just break. */
61         if (interval_high(n) <= size)
62                 return INTERVAL_ITER_STOP;
63
64         cfs_list_for_each_entry(lck, &node->li_group, l_sl_policy) {
65                 /* Don't send glimpse ASTs to liblustre clients.
66                  * They aren't listening for them, and they do
67                  * entirely synchronous I/O anyways. */
68                 if (lck->l_export == NULL || lck->l_export->exp_libclient)
69                         continue;
70
71                 if (*arg->liblustre)
72                         *arg->liblustre = 0;
73
74                 if (*v == NULL) {
75                         *v = LDLM_LOCK_GET(lck);
76                 } else if ((*v)->l_policy_data.l_extent.start <
77                            lck->l_policy_data.l_extent.start) {
78                         LDLM_LOCK_RELEASE(*v);
79                         *v = LDLM_LOCK_GET(lck);
80                 }
81
82                 /* the same policy group - every lock has the
83                  * same extent, so needn't do it any more */
84                 break;
85         }
86
87         return INTERVAL_ITER_CONT;
88 }
89
90 int ofd_intent_policy(struct ldlm_namespace *ns, struct ldlm_lock **lockp,
91                       void *req_cookie, ldlm_mode_t mode, __u64 flags,
92                       void *data)
93 {
94         struct ptlrpc_request           *req = req_cookie;
95         struct ldlm_lock                *lock = *lockp, *l = NULL;
96         struct ldlm_resource            *res = lock->l_resource;
97         ldlm_processing_policy           policy;
98         struct ost_lvb                  *res_lvb, *reply_lvb;
99         struct ldlm_reply               *rep;
100         ldlm_error_t                     err;
101         int                              idx, rc, only_liblustre = 1;
102         struct ldlm_interval_tree       *tree;
103         struct ofd_intent_args           arg;
104         __u32                            repsize[3] = {
105                 [MSG_PTLRPC_BODY_OFF] = sizeof(struct ptlrpc_body),
106                 [DLM_LOCKREPLY_OFF]   = sizeof(*rep),
107                 [DLM_REPLY_REC_OFF]   = sizeof(*reply_lvb)
108         };
109         struct ldlm_glimpse_work         gl_work;
110         CFS_LIST_HEAD(gl_list);
111         ENTRY;
112
113         lock->l_lvb_type = LVB_T_OST;
114         policy = ldlm_get_processing_policy(res);
115         LASSERT(policy != NULL);
116         LASSERT(req != NULL);
117
118         rc = lustre_pack_reply(req, 3, repsize, NULL);
119         if (rc)
120                 RETURN(req->rq_status = rc);
121
122         rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF, sizeof(*rep));
123         LASSERT(rep != NULL);
124
125         reply_lvb = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF,
126                                    sizeof(*reply_lvb));
127         LASSERT(reply_lvb != NULL);
128
129         /* Call the extent policy function to see if our request can be
130          * granted, or is blocked.
131          * If the OST lock has LDLM_FL_HAS_INTENT set, it means a glimpse
132          * lock, and should not be granted if the lock will be blocked.
133          */
134
135         if (flags & LDLM_FL_BLOCK_NOWAIT) {
136                 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_AGL_DELAY, 5);
137
138                 if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_AGL_NOLOCK))
139                         RETURN(ELDLM_LOCK_ABORTED);
140         }
141
142         LASSERT(ns == ldlm_res_to_ns(res));
143         lock_res(res);
144
145         /* Check if this is a resend case (MSG_RESENT is set on RPC) and a
146          * lock was found by ldlm_handle_enqueue(); if so no need to grant
147          * it again. */
148         if (flags & LDLM_FL_RESENT) {
149                 rc = LDLM_ITER_CONTINUE;
150         } else {
151                 __u64 tmpflags = 0;
152                 rc = policy(lock, &tmpflags, 0, &err, NULL);
153                 check_res_locked(res);
154         }
155
156         /* The lock met with no resistance; we're finished. */
157         if (rc == LDLM_ITER_CONTINUE) {
158                 /* do not grant locks to the liblustre clients: they cannot
159                  * handle ASTs robustly.  We need to do this while still
160                  * holding ns_lock to avoid the lock remaining on the res_link
161                  * list (and potentially being added to l_pending_list by an
162                  * AST) when we are going to drop this lock ASAP. */
163                 if (lock->l_export->exp_libclient ||
164                     OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_GLIMPSE, 2)) {
165                         ldlm_resource_unlink_lock(lock);
166                         err = ELDLM_LOCK_ABORTED;
167                 } else {
168                         err = ELDLM_LOCK_REPLACED;
169                 }
170                 unlock_res(res);
171                 RETURN(err);
172         } else if (flags & LDLM_FL_BLOCK_NOWAIT) {
173                 /* LDLM_FL_BLOCK_NOWAIT means it is for AGL. Do not send glimpse
174                  * callback for glimpse size. The real size user will trigger
175                  * the glimpse callback when necessary. */
176                 unlock_res(res);
177                 RETURN(ELDLM_LOCK_ABORTED);
178         }
179
180         /* Do not grant any lock, but instead send GL callbacks.  The extent
181          * policy nicely created a list of all PW locks for us.  We will choose
182          * the highest of those which are larger than the size in the LVB, if
183          * any, and perform a glimpse callback. */
184         res_lvb = res->lr_lvb_data;
185         LASSERT(res_lvb != NULL);
186         *reply_lvb = *res_lvb;
187
188         /*
189          * ->ns_lock guarantees that no new locks are granted, and,
190          *  therefore, that res->lr_lvb_data cannot increase beyond the
191          *  end of already granted lock. As a result, it is safe to
192          *  check against "stale" reply_lvb->lvb_size value without
193          *  res->lr_lvb_sem.
194          */
195         arg.size = reply_lvb->lvb_size;
196         arg.victim = &l;
197         arg.liblustre = &only_liblustre;
198
199         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
200                 tree = &res->lr_itree[idx];
201                 if (tree->lit_mode == LCK_PR)
202                         continue;
203
204                 interval_iterate_reverse(tree->lit_root, ofd_intent_cb, &arg);
205         }
206         unlock_res(res);
207
208         /* There were no PW locks beyond the size in the LVB; finished. */
209         if (l == NULL) {
210                 if (only_liblustre) {
211                         /* If we discovered a liblustre client with a PW lock,
212                          * however, the LVB may be out of date!  The LVB is
213                          * updated only on glimpse (which we don't do for
214                          * liblustre clients) and cancel (which the client
215                          * obviously has not yet done).  So if it has written
216                          * data but kept the lock, the LVB is stale and needs
217                          * to be updated from disk.
218                          *
219                          * Of course, this will all disappear when we switch to
220                          * taking liblustre locks on the OST. */
221                         ldlm_res_lvbo_update(res, NULL, 1);
222                 }
223                 RETURN(ELDLM_LOCK_ABORTED);
224         }
225
226         /*
227          * This check is for lock taken in ofd_prepare_destroy() that does
228          * not have l_glimpse_ast set. So the logic is: if there is a lock
229          * with no l_glimpse_ast set, this object is being destroyed already.
230          * Hence, if you are grabbing DLM locks on the server, always set
231          * non-NULL glimpse_ast (e.g., ldlm_request.c:ldlm_glimpse_ast()).
232          */
233         if (l->l_glimpse_ast == NULL) {
234                 /* We are racing with unlink(); just return -ENOENT */
235                 rep->lock_policy_res1 = ptlrpc_status_hton(-ENOENT);
236                 goto out;
237         }
238
239         /* Populate the gl_work structure.
240          * Grab additional reference on the lock which will be released in
241          * ldlm_work_gl_ast_lock() */
242         gl_work.gl_lock = LDLM_LOCK_GET(l);
243         /* The glimpse callback is sent to one single extent lock. As a result,
244          * the gl_work list is just composed of one element */
245         cfs_list_add_tail(&gl_work.gl_list, &gl_list);
246         /* There is actually no need for a glimpse descriptor when glimpsing
247          * extent locks */
248         gl_work.gl_desc = NULL;
249         /* the ldlm_glimpse_work structure is allocated on the stack */
250         gl_work.gl_flags = LDLM_GL_WORK_NOFREE;
251
252         rc = ldlm_glimpse_locks(res, &gl_list); /* this will update the LVB */
253
254         if (!cfs_list_empty(&gl_list))
255                 LDLM_LOCK_RELEASE(l);
256
257         lock_res(res);
258         *reply_lvb = *res_lvb;
259         unlock_res(res);
260
261 out:
262         LDLM_LOCK_RELEASE(l);
263
264         RETURN(ELDLM_LOCK_ABORTED);
265 }
266