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