Whamcloud - gitweb
LU-4788 lfsck: replace cfs_list_t with list_head
[fs/lustre-release.git] / lustre / ldlm / ldlm_inodebits.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  * lustre/ldlm/ldlm_inodebits.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  */
41
42 /**
43  * This file contains implementation of IBITS lock type
44  *
45  * IBITS lock type contains a bit mask determining various properties of an
46  * object. The meanings of specific bits are specific to the caller and are
47  * opaque to LDLM code.
48  *
49  * Locks with intersecting bitmasks and conflicting lock modes (e.g.  LCK_PW)
50  * are considered conflicting.  See the lock mode compatibility matrix
51  * in lustre_dlm.h.
52  */
53
54 #define DEBUG_SUBSYSTEM S_LDLM
55
56 #include <lustre_dlm.h>
57 #include <obd_support.h>
58 #include <lustre_lib.h>
59
60 #include "ldlm_internal.h"
61
62 #ifdef HAVE_SERVER_SUPPORT
63 /**
64  * Determine if the lock is compatible with all locks on the queue.
65  *
66  * If \a work_list is provided, conflicting locks are linked there.
67  * If \a work_list is not provided, we exit this function on first conflict.
68  *
69  * \retval 0 if there are conflicting locks in the \a queue
70  * \retval 1 if the lock is compatible to all locks in \a queue
71  *
72  * IBITS locks in granted queue are organized in bunches of
73  * same-mode/same-bits locks called "skip lists". The First lock in the
74  * bunch contains a pointer to the end of the bunch.  This allows us to
75  * skip an entire bunch when iterating the list in search for conflicting
76  * locks if first lock of the bunch is not conflicting with us.
77  */
78 static int
79 ldlm_inodebits_compat_queue(struct list_head *queue, struct ldlm_lock *req,
80                             struct list_head *work_list)
81 {
82         struct list_head *tmp;
83         struct ldlm_lock *lock;
84         ldlm_mode_t req_mode = req->l_req_mode;
85         __u64 req_bits = req->l_policy_data.l_inodebits.bits;
86         int compat = 1;
87         ENTRY;
88
89         LASSERT(req_bits); /* There is no sense in lock with no bits set,
90                               I think. Also such a lock would be compatible
91                                with any other bit lock */
92
93         list_for_each(tmp, queue) {
94                 struct list_head *mode_tail;
95
96                 lock = list_entry(tmp, struct ldlm_lock, l_res_link);
97
98                 /* We stop walking the queue if we hit ourselves so we don't
99                  * take conflicting locks enqueued after us into account,
100                  * or we'd wait forever. */
101                 if (req == lock)
102                         RETURN(compat);
103
104                 /* last lock in mode group */
105                 LASSERT(lock->l_sl_mode.prev != NULL);
106                 mode_tail = &list_entry(lock->l_sl_mode.prev,
107                                             struct ldlm_lock,
108                                             l_sl_mode)->l_res_link;
109
110                 /* locks are compatible, bits don't matter */
111                 if (lockmode_compat(lock->l_req_mode, req_mode)) {
112                         /* jump to last lock in mode group */
113                         tmp = mode_tail;
114                         continue;
115                 }
116
117                 for (;;) {
118                         struct list_head *head;
119
120                         /* Advance loop cursor to last lock in policy group. */
121                         tmp = &list_entry(lock->l_sl_policy.prev,
122                                               struct ldlm_lock,
123                                               l_sl_policy)->l_res_link;
124
125                         /* Locks with overlapping bits conflict. */
126                         if (lock->l_policy_data.l_inodebits.bits & req_bits) {
127                                 /* COS lock mode has a special compatibility
128                                  * requirement: it is only compatible with
129                                  * locks from the same client. */
130                                 if (lock->l_req_mode == LCK_COS &&
131                                     lock->l_client_cookie == req->l_client_cookie)
132                                         goto not_conflicting;
133                                 /* Found a conflicting policy group. */
134                                 if (!work_list)
135                                         RETURN(0);
136
137                                 compat = 0;
138
139                                 /* Add locks of the policy group to @work_list
140                                  * as blocking locks for @req */
141                                 if (lock->l_blocking_ast)
142                                         ldlm_add_ast_work_item(lock, req,
143                                                                work_list);
144                                 head = &lock->l_sl_policy;
145                                 list_for_each_entry(lock, head, l_sl_policy)
146                                         if (lock->l_blocking_ast)
147                                                 ldlm_add_ast_work_item(lock, req,
148                                                                        work_list);
149                         }
150                 not_conflicting:
151                         if (tmp == mode_tail)
152                                 break;
153
154                         tmp = tmp->next;
155                         lock = list_entry(tmp, struct ldlm_lock,
156                                               l_res_link);
157                 } /* Loop over policy groups within one mode group. */
158         } /* Loop over mode groups within @queue. */
159
160         RETURN(compat);
161 }
162
163 /**
164  * Process a granting attempt for IBITS lock.
165  * Must be called with ns lock held
166  *
167  * This function looks for any conflicts for \a lock in the granted or
168  * waiting queues. The lock is granted if no conflicts are found in
169  * either queue.
170  *
171  * If \a first_enq is 0 (ie, called from ldlm_reprocess_queue):
172  *   - blocking ASTs have already been sent
173  *
174  * If \a first_enq is 1 (ie, called from ldlm_lock_enqueue):
175  *   - blocking ASTs have not been sent yet, so list of conflicting locks
176  *     would be collected and ASTs sent.
177  */
178 int ldlm_process_inodebits_lock(struct ldlm_lock *lock, __u64 *flags,
179                                 int first_enq, ldlm_error_t *err,
180                                 struct list_head *work_list)
181 {
182         struct ldlm_resource *res = lock->l_resource;
183         struct list_head rpc_list;
184         int rc;
185         ENTRY;
186
187         LASSERT(lock->l_granted_mode != lock->l_req_mode);
188         LASSERT(list_empty(&res->lr_converting));
189         INIT_LIST_HEAD(&rpc_list);
190         check_res_locked(res);
191
192         /* (*flags & LDLM_FL_BLOCK_NOWAIT) is for layout lock right now. */
193         if (!first_enq || (*flags & LDLM_FL_BLOCK_NOWAIT)) {
194                 *err = ELDLM_LOCK_ABORTED;
195                 if (*flags & LDLM_FL_BLOCK_NOWAIT)
196                         *err = ELDLM_LOCK_WOULDBLOCK;
197
198                 rc = ldlm_inodebits_compat_queue(&res->lr_granted, lock, NULL);
199                 if (!rc)
200                         RETURN(LDLM_ITER_STOP);
201                 rc = ldlm_inodebits_compat_queue(&res->lr_waiting, lock, NULL);
202                 if (!rc)
203                         RETURN(LDLM_ITER_STOP);
204
205                 ldlm_resource_unlink_lock(lock);
206                 ldlm_grant_lock(lock, work_list);
207
208                 *err = ELDLM_OK;
209                 RETURN(LDLM_ITER_CONTINUE);
210         }
211
212  restart:
213         rc = ldlm_inodebits_compat_queue(&res->lr_granted, lock, &rpc_list);
214         rc += ldlm_inodebits_compat_queue(&res->lr_waiting, lock, &rpc_list);
215
216         if (rc != 2) {
217                 /* If either of the compat_queue()s returned 0, then we
218                  * have ASTs to send and must go onto the waiting list.
219                  *
220                  * bug 2322: we used to unlink and re-add here, which was a
221                  * terrible folly -- if we goto restart, we could get
222                  * re-ordered!  Causes deadlock, because ASTs aren't sent! */
223                 if (list_empty(&lock->l_res_link))
224                         ldlm_resource_add_lock(res, &res->lr_waiting, lock);
225                 unlock_res(res);
226                 rc = ldlm_run_ast_work(ldlm_res_to_ns(res), &rpc_list,
227                                        LDLM_WORK_BL_AST);
228                 lock_res(res);
229                 if (rc == -ERESTART)
230                         GOTO(restart, rc);
231                 *flags |= LDLM_FL_BLOCK_GRANTED;
232         } else {
233                 ldlm_resource_unlink_lock(lock);
234                 ldlm_grant_lock(lock, NULL);
235         }
236         RETURN(0);
237 }
238 #endif /* HAVE_SERVER_SUPPORT */
239
240 void ldlm_ibits_policy_wire_to_local(const ldlm_wire_policy_data_t *wpolicy,
241                                      ldlm_policy_data_t *lpolicy)
242 {
243         memset(lpolicy, 0, sizeof(*lpolicy));
244         lpolicy->l_inodebits.bits = wpolicy->l_inodebits.bits;
245 }
246
247 void ldlm_ibits_policy_local_to_wire(const ldlm_policy_data_t *lpolicy,
248                                      ldlm_wire_policy_data_t *wpolicy)
249 {
250         memset(wpolicy, 0, sizeof(*wpolicy));
251         wpolicy->l_inodebits.bits = lpolicy->l_inodebits.bits;
252 }