Whamcloud - gitweb
c0bbd15e6ac86627b1124d4ce68045a4b2b17716
[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) 2011, 2012, Whamcloud, Inc.
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         __u64                            tmpflags = 0;
103         struct ldlm_interval_tree       *tree;
104         struct ofd_intent_args           arg;
105         __u32                            repsize[3] = {
106                 [MSG_PTLRPC_BODY_OFF] = sizeof(struct ptlrpc_body),
107                 [DLM_LOCKREPLY_OFF]   = sizeof(*rep),
108                 [DLM_REPLY_REC_OFF]   = sizeof(*reply_lvb)
109         };
110         struct ldlm_glimpse_work         gl_work;
111         CFS_LIST_HEAD(gl_list);
112         ENTRY;
113
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         rc = policy(lock, &tmpflags, 0, &err, NULL);
145         check_res_locked(res);
146
147         /* The lock met with no resistance; we're finished. */
148         if (rc == LDLM_ITER_CONTINUE) {
149                 /* do not grant locks to the liblustre clients: they cannot
150                  * handle ASTs robustly.  We need to do this while still
151                  * holding ns_lock to avoid the lock remaining on the res_link
152                  * list (and potentially being added to l_pending_list by an
153                  * AST) when we are going to drop this lock ASAP. */
154                 if (lock->l_export->exp_libclient ||
155                     OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_GLIMPSE, 2)) {
156                         ldlm_resource_unlink_lock(lock);
157                         err = ELDLM_LOCK_ABORTED;
158                 } else {
159                         err = ELDLM_LOCK_REPLACED;
160                 }
161                 unlock_res(res);
162                 RETURN(err);
163         } else if (flags & LDLM_FL_BLOCK_NOWAIT) {
164                 /* LDLM_FL_BLOCK_NOWAIT means it is for AGL. Do not send glimpse
165                  * callback for glimpse size. The real size user will trigger
166                  * the glimpse callback when necessary. */
167                 unlock_res(res);
168                 RETURN(ELDLM_LOCK_ABORTED);
169         }
170
171         /* Do not grant any lock, but instead send GL callbacks.  The extent
172          * policy nicely created a list of all PW locks for us.  We will choose
173          * the highest of those which are larger than the size in the LVB, if
174          * any, and perform a glimpse callback. */
175         res_lvb = res->lr_lvb_data;
176         LASSERT(res_lvb != NULL);
177         *reply_lvb = *res_lvb;
178
179         /*
180          * ->ns_lock guarantees that no new locks are granted, and,
181          *  therefore, that res->lr_lvb_data cannot increase beyond the
182          *  end of already granted lock. As a result, it is safe to
183          *  check against "stale" reply_lvb->lvb_size value without
184          *  res->lr_lvb_sem.
185          */
186         arg.size = reply_lvb->lvb_size;
187         arg.victim = &l;
188         arg.liblustre = &only_liblustre;
189
190         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
191                 tree = &res->lr_itree[idx];
192                 if (tree->lit_mode == LCK_PR)
193                         continue;
194
195                 interval_iterate_reverse(tree->lit_root, ofd_intent_cb, &arg);
196         }
197         unlock_res(res);
198
199         /* There were no PW locks beyond the size in the LVB; finished. */
200         if (l == NULL) {
201                 if (only_liblustre) {
202                         /* If we discovered a liblustre client with a PW lock,
203                          * however, the LVB may be out of date!  The LVB is
204                          * updated only on glimpse (which we don't do for
205                          * liblustre clients) and cancel (which the client
206                          * obviously has not yet done).  So if it has written
207                          * data but kept the lock, the LVB is stale and needs
208                          * to be updated from disk.
209                          *
210                          * Of course, this will all disappear when we switch to
211                          * taking liblustre locks on the OST. */
212                         ldlm_res_lvbo_update(res, NULL, 1);
213                 }
214                 RETURN(ELDLM_LOCK_ABORTED);
215         }
216
217         /*
218          * This check is for lock taken in ofd_prepare_destroy() that does
219          * not have l_glimpse_ast set. So the logic is: if there is a lock
220          * with no l_glimpse_ast set, this object is being destroyed already.
221          * Hence, if you are grabbing DLM locks on the server, always set
222          * non-NULL glimpse_ast (e.g., ldlm_request.c:ldlm_glimpse_ast()).
223          */
224         if (l->l_glimpse_ast == NULL) {
225                 /* We are racing with unlink(); just return -ENOENT */
226                 rep->lock_policy_res1 = -ENOENT;
227                 goto out;
228         }
229
230         /* Populate the gl_work structure.
231          * Grab additional reference on the lock which will be released in
232          * ldlm_work_gl_ast_lock() */
233         gl_work.gl_lock = LDLM_LOCK_GET(l);
234         /* The glimpse callback is sent to one single extent lock. As a result,
235          * the gl_work list is just composed of one element */
236         cfs_list_add_tail(&gl_work.gl_list, &gl_list);
237         /* There is actually no need for a glimpse descriptor when glimpsing
238          * extent locks */
239         gl_work.gl_desc = NULL;
240         /* the ldlm_glimpse_work structure is allocated on the stack */
241         gl_work.gl_flags = LDLM_GL_WORK_NOFREE;
242
243         rc = ldlm_glimpse_locks(res, &gl_list); /* this will update the LVB */
244
245         if (!cfs_list_empty(&gl_list))
246                 LDLM_LOCK_RELEASE(l);
247
248         lock_res(res);
249         *reply_lvb = *res_lvb;
250         unlock_res(res);
251
252 out:
253         LDLM_LOCK_RELEASE(l);
254
255         RETURN(ELDLM_LOCK_ABORTED);
256 }
257