1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3 *******************************************************************************
4 **
5 ** Copyright (C) 2005-2010 Red Hat, Inc. All rights reserved.
6 **
7 **
8 *******************************************************************************
9 ******************************************************************************/
10
11 /* Central locking logic has four stages:
12
13 dlm_lock()
14 dlm_unlock()
15
16 request_lock(ls, lkb)
17 convert_lock(ls, lkb)
18 unlock_lock(ls, lkb)
19 cancel_lock(ls, lkb)
20
21 _request_lock(r, lkb)
22 _convert_lock(r, lkb)
23 _unlock_lock(r, lkb)
24 _cancel_lock(r, lkb)
25
26 do_request(r, lkb)
27 do_convert(r, lkb)
28 do_unlock(r, lkb)
29 do_cancel(r, lkb)
30
31 Stage 1 (lock, unlock) is mainly about checking input args and
32 splitting into one of the four main operations:
33
34 dlm_lock = request_lock
35 dlm_lock+CONVERT = convert_lock
36 dlm_unlock = unlock_lock
37 dlm_unlock+CANCEL = cancel_lock
38
39 Stage 2, xxxx_lock(), just finds and locks the relevant rsb which is
40 provided to the next stage.
41
42 Stage 3, _xxxx_lock(), determines if the operation is local or remote.
43 When remote, it calls send_xxxx(), when local it calls do_xxxx().
44
45 Stage 4, do_xxxx(), is the guts of the operation. It manipulates the
46 given rsb and lkb and queues callbacks.
47
48 For remote operations, send_xxxx() results in the corresponding do_xxxx()
49 function being executed on the remote node. The connecting send/receive
50 calls on local (L) and remote (R) nodes:
51
52 L: send_xxxx() -> R: receive_xxxx()
53 R: do_xxxx()
54 L: receive_xxxx_reply() <- R: send_xxxx_reply()
55 */
56 #include <trace/events/dlm.h>
57
58 #include <linux/types.h>
59 #include <linux/rbtree.h>
60 #include <linux/slab.h>
61 #include "dlm_internal.h"
62 #include <linux/dlm_device.h>
63 #include "memory.h"
64 #include "midcomms.h"
65 #include "requestqueue.h"
66 #include "util.h"
67 #include "dir.h"
68 #include "member.h"
69 #include "lockspace.h"
70 #include "ast.h"
71 #include "lock.h"
72 #include "rcom.h"
73 #include "recover.h"
74 #include "lvb_table.h"
75 #include "user.h"
76 #include "config.h"
77
78 static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb);
79 static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb);
80 static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb);
81 static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb);
82 static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb);
83 static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode);
84 static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb);
85 static int send_remove(struct dlm_rsb *r);
86 static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb);
87 static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb);
88 static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
89 struct dlm_message *ms);
90 static int receive_extralen(struct dlm_message *ms);
91 static void do_purge(struct dlm_ls *ls, int nodeid, int pid);
92 static void del_timeout(struct dlm_lkb *lkb);
93 static void toss_rsb(struct kref *kref);
94
95 /*
96 * Lock compatibilty matrix - thanks Steve
97 * UN = Unlocked state. Not really a state, used as a flag
98 * PD = Padding. Used to make the matrix a nice power of two in size
99 * Other states are the same as the VMS DLM.
100 * Usage: matrix[grmode+1][rqmode+1] (although m[rq+1][gr+1] is the same)
101 */
102
103 static const int __dlm_compat_matrix[8][8] = {
104 /* UN NL CR CW PR PW EX PD */
105 {1, 1, 1, 1, 1, 1, 1, 0}, /* UN */
106 {1, 1, 1, 1, 1, 1, 1, 0}, /* NL */
107 {1, 1, 1, 1, 1, 1, 0, 0}, /* CR */
108 {1, 1, 1, 1, 0, 0, 0, 0}, /* CW */
109 {1, 1, 1, 0, 1, 0, 0, 0}, /* PR */
110 {1, 1, 1, 0, 0, 0, 0, 0}, /* PW */
111 {1, 1, 0, 0, 0, 0, 0, 0}, /* EX */
112 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
113 };
114
115 /*
116 * This defines the direction of transfer of LVB data.
117 * Granted mode is the row; requested mode is the column.
118 * Usage: matrix[grmode+1][rqmode+1]
119 * 1 = LVB is returned to the caller
120 * 0 = LVB is written to the resource
121 * -1 = nothing happens to the LVB
122 */
123
124 const int dlm_lvb_operations[8][8] = {
125 /* UN NL CR CW PR PW EX PD*/
126 { -1, 1, 1, 1, 1, 1, 1, -1 }, /* UN */
127 { -1, 1, 1, 1, 1, 1, 1, 0 }, /* NL */
128 { -1, -1, 1, 1, 1, 1, 1, 0 }, /* CR */
129 { -1, -1, -1, 1, 1, 1, 1, 0 }, /* CW */
130 { -1, -1, -1, -1, 1, 1, 1, 0 }, /* PR */
131 { -1, 0, 0, 0, 0, 0, 1, 0 }, /* PW */
132 { -1, 0, 0, 0, 0, 0, 0, 0 }, /* EX */
133 { -1, 0, 0, 0, 0, 0, 0, 0 } /* PD */
134 };
135
136 #define modes_compat(gr, rq) \
137 __dlm_compat_matrix[(gr)->lkb_grmode + 1][(rq)->lkb_rqmode + 1]
138
dlm_modes_compat(int mode1,int mode2)139 int dlm_modes_compat(int mode1, int mode2)
140 {
141 return __dlm_compat_matrix[mode1 + 1][mode2 + 1];
142 }
143
144 /*
145 * Compatibility matrix for conversions with QUECVT set.
146 * Granted mode is the row; requested mode is the column.
147 * Usage: matrix[grmode+1][rqmode+1]
148 */
149
150 static const int __quecvt_compat_matrix[8][8] = {
151 /* UN NL CR CW PR PW EX PD */
152 {0, 0, 0, 0, 0, 0, 0, 0}, /* UN */
153 {0, 0, 1, 1, 1, 1, 1, 0}, /* NL */
154 {0, 0, 0, 1, 1, 1, 1, 0}, /* CR */
155 {0, 0, 0, 0, 1, 1, 1, 0}, /* CW */
156 {0, 0, 0, 1, 0, 1, 1, 0}, /* PR */
157 {0, 0, 0, 0, 0, 0, 1, 0}, /* PW */
158 {0, 0, 0, 0, 0, 0, 0, 0}, /* EX */
159 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
160 };
161
dlm_print_lkb(struct dlm_lkb * lkb)162 void dlm_print_lkb(struct dlm_lkb *lkb)
163 {
164 printk(KERN_ERR "lkb: nodeid %d id %x remid %x exflags %x flags %x "
165 "sts %d rq %d gr %d wait_type %d wait_nodeid %d seq %llu\n",
166 lkb->lkb_nodeid, lkb->lkb_id, lkb->lkb_remid, lkb->lkb_exflags,
167 lkb->lkb_flags, lkb->lkb_status, lkb->lkb_rqmode,
168 lkb->lkb_grmode, lkb->lkb_wait_type, lkb->lkb_wait_nodeid,
169 (unsigned long long)lkb->lkb_recover_seq);
170 }
171
dlm_print_rsb(struct dlm_rsb * r)172 static void dlm_print_rsb(struct dlm_rsb *r)
173 {
174 printk(KERN_ERR "rsb: nodeid %d master %d dir %d flags %lx first %x "
175 "rlc %d name %s\n",
176 r->res_nodeid, r->res_master_nodeid, r->res_dir_nodeid,
177 r->res_flags, r->res_first_lkid, r->res_recover_locks_count,
178 r->res_name);
179 }
180
dlm_dump_rsb(struct dlm_rsb * r)181 void dlm_dump_rsb(struct dlm_rsb *r)
182 {
183 struct dlm_lkb *lkb;
184
185 dlm_print_rsb(r);
186
187 printk(KERN_ERR "rsb: root_list empty %d recover_list empty %d\n",
188 list_empty(&r->res_root_list), list_empty(&r->res_recover_list));
189 printk(KERN_ERR "rsb lookup list\n");
190 list_for_each_entry(lkb, &r->res_lookup, lkb_rsb_lookup)
191 dlm_print_lkb(lkb);
192 printk(KERN_ERR "rsb grant queue:\n");
193 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue)
194 dlm_print_lkb(lkb);
195 printk(KERN_ERR "rsb convert queue:\n");
196 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue)
197 dlm_print_lkb(lkb);
198 printk(KERN_ERR "rsb wait queue:\n");
199 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue)
200 dlm_print_lkb(lkb);
201 }
202
203 /* Threads cannot use the lockspace while it's being recovered */
204
dlm_lock_recovery(struct dlm_ls * ls)205 static inline void dlm_lock_recovery(struct dlm_ls *ls)
206 {
207 down_read(&ls->ls_in_recovery);
208 }
209
dlm_unlock_recovery(struct dlm_ls * ls)210 void dlm_unlock_recovery(struct dlm_ls *ls)
211 {
212 up_read(&ls->ls_in_recovery);
213 }
214
dlm_lock_recovery_try(struct dlm_ls * ls)215 int dlm_lock_recovery_try(struct dlm_ls *ls)
216 {
217 return down_read_trylock(&ls->ls_in_recovery);
218 }
219
can_be_queued(struct dlm_lkb * lkb)220 static inline int can_be_queued(struct dlm_lkb *lkb)
221 {
222 return !(lkb->lkb_exflags & DLM_LKF_NOQUEUE);
223 }
224
force_blocking_asts(struct dlm_lkb * lkb)225 static inline int force_blocking_asts(struct dlm_lkb *lkb)
226 {
227 return (lkb->lkb_exflags & DLM_LKF_NOQUEUEBAST);
228 }
229
is_demoted(struct dlm_lkb * lkb)230 static inline int is_demoted(struct dlm_lkb *lkb)
231 {
232 return (lkb->lkb_sbflags & DLM_SBF_DEMOTED);
233 }
234
is_altmode(struct dlm_lkb * lkb)235 static inline int is_altmode(struct dlm_lkb *lkb)
236 {
237 return (lkb->lkb_sbflags & DLM_SBF_ALTMODE);
238 }
239
is_granted(struct dlm_lkb * lkb)240 static inline int is_granted(struct dlm_lkb *lkb)
241 {
242 return (lkb->lkb_status == DLM_LKSTS_GRANTED);
243 }
244
is_remote(struct dlm_rsb * r)245 static inline int is_remote(struct dlm_rsb *r)
246 {
247 DLM_ASSERT(r->res_nodeid >= 0, dlm_print_rsb(r););
248 return !!r->res_nodeid;
249 }
250
is_process_copy(struct dlm_lkb * lkb)251 static inline int is_process_copy(struct dlm_lkb *lkb)
252 {
253 return (lkb->lkb_nodeid && !(lkb->lkb_flags & DLM_IFL_MSTCPY));
254 }
255
is_master_copy(struct dlm_lkb * lkb)256 static inline int is_master_copy(struct dlm_lkb *lkb)
257 {
258 return (lkb->lkb_flags & DLM_IFL_MSTCPY) ? 1 : 0;
259 }
260
middle_conversion(struct dlm_lkb * lkb)261 static inline int middle_conversion(struct dlm_lkb *lkb)
262 {
263 if ((lkb->lkb_grmode==DLM_LOCK_PR && lkb->lkb_rqmode==DLM_LOCK_CW) ||
264 (lkb->lkb_rqmode==DLM_LOCK_PR && lkb->lkb_grmode==DLM_LOCK_CW))
265 return 1;
266 return 0;
267 }
268
down_conversion(struct dlm_lkb * lkb)269 static inline int down_conversion(struct dlm_lkb *lkb)
270 {
271 return (!middle_conversion(lkb) && lkb->lkb_rqmode < lkb->lkb_grmode);
272 }
273
is_overlap_unlock(struct dlm_lkb * lkb)274 static inline int is_overlap_unlock(struct dlm_lkb *lkb)
275 {
276 return lkb->lkb_flags & DLM_IFL_OVERLAP_UNLOCK;
277 }
278
is_overlap_cancel(struct dlm_lkb * lkb)279 static inline int is_overlap_cancel(struct dlm_lkb *lkb)
280 {
281 return lkb->lkb_flags & DLM_IFL_OVERLAP_CANCEL;
282 }
283
is_overlap(struct dlm_lkb * lkb)284 static inline int is_overlap(struct dlm_lkb *lkb)
285 {
286 return (lkb->lkb_flags & (DLM_IFL_OVERLAP_UNLOCK |
287 DLM_IFL_OVERLAP_CANCEL));
288 }
289
queue_cast(struct dlm_rsb * r,struct dlm_lkb * lkb,int rv)290 static void queue_cast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
291 {
292 if (is_master_copy(lkb))
293 return;
294
295 del_timeout(lkb);
296
297 DLM_ASSERT(lkb->lkb_lksb, dlm_print_lkb(lkb););
298
299 #ifdef CONFIG_DLM_DEPRECATED_API
300 /* if the operation was a cancel, then return -DLM_ECANCEL, if a
301 timeout caused the cancel then return -ETIMEDOUT */
302 if (rv == -DLM_ECANCEL && (lkb->lkb_flags & DLM_IFL_TIMEOUT_CANCEL)) {
303 lkb->lkb_flags &= ~DLM_IFL_TIMEOUT_CANCEL;
304 rv = -ETIMEDOUT;
305 }
306 #endif
307
308 if (rv == -DLM_ECANCEL && (lkb->lkb_flags & DLM_IFL_DEADLOCK_CANCEL)) {
309 lkb->lkb_flags &= ~DLM_IFL_DEADLOCK_CANCEL;
310 rv = -EDEADLK;
311 }
312
313 dlm_add_cb(lkb, DLM_CB_CAST, lkb->lkb_grmode, rv, lkb->lkb_sbflags);
314 }
315
queue_cast_overlap(struct dlm_rsb * r,struct dlm_lkb * lkb)316 static inline void queue_cast_overlap(struct dlm_rsb *r, struct dlm_lkb *lkb)
317 {
318 queue_cast(r, lkb,
319 is_overlap_unlock(lkb) ? -DLM_EUNLOCK : -DLM_ECANCEL);
320 }
321
queue_bast(struct dlm_rsb * r,struct dlm_lkb * lkb,int rqmode)322 static void queue_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rqmode)
323 {
324 if (is_master_copy(lkb)) {
325 send_bast(r, lkb, rqmode);
326 } else {
327 dlm_add_cb(lkb, DLM_CB_BAST, rqmode, 0, 0);
328 }
329 }
330
331 /*
332 * Basic operations on rsb's and lkb's
333 */
334
335 /* This is only called to add a reference when the code already holds
336 a valid reference to the rsb, so there's no need for locking. */
337
hold_rsb(struct dlm_rsb * r)338 static inline void hold_rsb(struct dlm_rsb *r)
339 {
340 kref_get(&r->res_ref);
341 }
342
dlm_hold_rsb(struct dlm_rsb * r)343 void dlm_hold_rsb(struct dlm_rsb *r)
344 {
345 hold_rsb(r);
346 }
347
348 /* When all references to the rsb are gone it's transferred to
349 the tossed list for later disposal. */
350
put_rsb(struct dlm_rsb * r)351 static void put_rsb(struct dlm_rsb *r)
352 {
353 struct dlm_ls *ls = r->res_ls;
354 uint32_t bucket = r->res_bucket;
355 int rv;
356
357 rv = kref_put_lock(&r->res_ref, toss_rsb,
358 &ls->ls_rsbtbl[bucket].lock);
359 if (rv)
360 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
361 }
362
dlm_put_rsb(struct dlm_rsb * r)363 void dlm_put_rsb(struct dlm_rsb *r)
364 {
365 put_rsb(r);
366 }
367
pre_rsb_struct(struct dlm_ls * ls)368 static int pre_rsb_struct(struct dlm_ls *ls)
369 {
370 struct dlm_rsb *r1, *r2;
371 int count = 0;
372
373 spin_lock(&ls->ls_new_rsb_spin);
374 if (ls->ls_new_rsb_count > dlm_config.ci_new_rsb_count / 2) {
375 spin_unlock(&ls->ls_new_rsb_spin);
376 return 0;
377 }
378 spin_unlock(&ls->ls_new_rsb_spin);
379
380 r1 = dlm_allocate_rsb(ls);
381 r2 = dlm_allocate_rsb(ls);
382
383 spin_lock(&ls->ls_new_rsb_spin);
384 if (r1) {
385 list_add(&r1->res_hashchain, &ls->ls_new_rsb);
386 ls->ls_new_rsb_count++;
387 }
388 if (r2) {
389 list_add(&r2->res_hashchain, &ls->ls_new_rsb);
390 ls->ls_new_rsb_count++;
391 }
392 count = ls->ls_new_rsb_count;
393 spin_unlock(&ls->ls_new_rsb_spin);
394
395 if (!count)
396 return -ENOMEM;
397 return 0;
398 }
399
400 /* If ls->ls_new_rsb is empty, return -EAGAIN, so the caller can
401 unlock any spinlocks, go back and call pre_rsb_struct again.
402 Otherwise, take an rsb off the list and return it. */
403
get_rsb_struct(struct dlm_ls * ls,const void * name,int len,struct dlm_rsb ** r_ret)404 static int get_rsb_struct(struct dlm_ls *ls, const void *name, int len,
405 struct dlm_rsb **r_ret)
406 {
407 struct dlm_rsb *r;
408 int count;
409
410 spin_lock(&ls->ls_new_rsb_spin);
411 if (list_empty(&ls->ls_new_rsb)) {
412 count = ls->ls_new_rsb_count;
413 spin_unlock(&ls->ls_new_rsb_spin);
414 log_debug(ls, "find_rsb retry %d %d %s",
415 count, dlm_config.ci_new_rsb_count,
416 (const char *)name);
417 return -EAGAIN;
418 }
419
420 r = list_first_entry(&ls->ls_new_rsb, struct dlm_rsb, res_hashchain);
421 list_del(&r->res_hashchain);
422 /* Convert the empty list_head to a NULL rb_node for tree usage: */
423 memset(&r->res_hashnode, 0, sizeof(struct rb_node));
424 ls->ls_new_rsb_count--;
425 spin_unlock(&ls->ls_new_rsb_spin);
426
427 r->res_ls = ls;
428 r->res_length = len;
429 memcpy(r->res_name, name, len);
430 mutex_init(&r->res_mutex);
431
432 INIT_LIST_HEAD(&r->res_lookup);
433 INIT_LIST_HEAD(&r->res_grantqueue);
434 INIT_LIST_HEAD(&r->res_convertqueue);
435 INIT_LIST_HEAD(&r->res_waitqueue);
436 INIT_LIST_HEAD(&r->res_root_list);
437 INIT_LIST_HEAD(&r->res_recover_list);
438
439 *r_ret = r;
440 return 0;
441 }
442
rsb_cmp(struct dlm_rsb * r,const char * name,int nlen)443 static int rsb_cmp(struct dlm_rsb *r, const char *name, int nlen)
444 {
445 char maxname[DLM_RESNAME_MAXLEN];
446
447 memset(maxname, 0, DLM_RESNAME_MAXLEN);
448 memcpy(maxname, name, nlen);
449 return memcmp(r->res_name, maxname, DLM_RESNAME_MAXLEN);
450 }
451
dlm_search_rsb_tree(struct rb_root * tree,const void * name,int len,struct dlm_rsb ** r_ret)452 int dlm_search_rsb_tree(struct rb_root *tree, const void *name, int len,
453 struct dlm_rsb **r_ret)
454 {
455 struct rb_node *node = tree->rb_node;
456 struct dlm_rsb *r;
457 int rc;
458
459 while (node) {
460 r = rb_entry(node, struct dlm_rsb, res_hashnode);
461 rc = rsb_cmp(r, name, len);
462 if (rc < 0)
463 node = node->rb_left;
464 else if (rc > 0)
465 node = node->rb_right;
466 else
467 goto found;
468 }
469 *r_ret = NULL;
470 return -EBADR;
471
472 found:
473 *r_ret = r;
474 return 0;
475 }
476
rsb_insert(struct dlm_rsb * rsb,struct rb_root * tree)477 static int rsb_insert(struct dlm_rsb *rsb, struct rb_root *tree)
478 {
479 struct rb_node **newn = &tree->rb_node;
480 struct rb_node *parent = NULL;
481 int rc;
482
483 while (*newn) {
484 struct dlm_rsb *cur = rb_entry(*newn, struct dlm_rsb,
485 res_hashnode);
486
487 parent = *newn;
488 rc = rsb_cmp(cur, rsb->res_name, rsb->res_length);
489 if (rc < 0)
490 newn = &parent->rb_left;
491 else if (rc > 0)
492 newn = &parent->rb_right;
493 else {
494 log_print("rsb_insert match");
495 dlm_dump_rsb(rsb);
496 dlm_dump_rsb(cur);
497 return -EEXIST;
498 }
499 }
500
501 rb_link_node(&rsb->res_hashnode, parent, newn);
502 rb_insert_color(&rsb->res_hashnode, tree);
503 return 0;
504 }
505
506 /*
507 * Find rsb in rsbtbl and potentially create/add one
508 *
509 * Delaying the release of rsb's has a similar benefit to applications keeping
510 * NL locks on an rsb, but without the guarantee that the cached master value
511 * will still be valid when the rsb is reused. Apps aren't always smart enough
512 * to keep NL locks on an rsb that they may lock again shortly; this can lead
513 * to excessive master lookups and removals if we don't delay the release.
514 *
515 * Searching for an rsb means looking through both the normal list and toss
516 * list. When found on the toss list the rsb is moved to the normal list with
517 * ref count of 1; when found on normal list the ref count is incremented.
518 *
519 * rsb's on the keep list are being used locally and refcounted.
520 * rsb's on the toss list are not being used locally, and are not refcounted.
521 *
522 * The toss list rsb's were either
523 * - previously used locally but not any more (were on keep list, then
524 * moved to toss list when last refcount dropped)
525 * - created and put on toss list as a directory record for a lookup
526 * (we are the dir node for the res, but are not using the res right now,
527 * but some other node is)
528 *
529 * The purpose of find_rsb() is to return a refcounted rsb for local use.
530 * So, if the given rsb is on the toss list, it is moved to the keep list
531 * before being returned.
532 *
533 * toss_rsb() happens when all local usage of the rsb is done, i.e. no
534 * more refcounts exist, so the rsb is moved from the keep list to the
535 * toss list.
536 *
537 * rsb's on both keep and toss lists are used for doing a name to master
538 * lookups. rsb's that are in use locally (and being refcounted) are on
539 * the keep list, rsb's that are not in use locally (not refcounted) and
540 * only exist for name/master lookups are on the toss list.
541 *
542 * rsb's on the toss list who's dir_nodeid is not local can have stale
543 * name/master mappings. So, remote requests on such rsb's can potentially
544 * return with an error, which means the mapping is stale and needs to
545 * be updated with a new lookup. (The idea behind MASTER UNCERTAIN and
546 * first_lkid is to keep only a single outstanding request on an rsb
547 * while that rsb has a potentially stale master.)
548 */
549
find_rsb_dir(struct dlm_ls * ls,const void * name,int len,uint32_t hash,uint32_t b,int dir_nodeid,int from_nodeid,unsigned int flags,struct dlm_rsb ** r_ret)550 static int find_rsb_dir(struct dlm_ls *ls, const void *name, int len,
551 uint32_t hash, uint32_t b,
552 int dir_nodeid, int from_nodeid,
553 unsigned int flags, struct dlm_rsb **r_ret)
554 {
555 struct dlm_rsb *r = NULL;
556 int our_nodeid = dlm_our_nodeid();
557 int from_local = 0;
558 int from_other = 0;
559 int from_dir = 0;
560 int create = 0;
561 int error;
562
563 if (flags & R_RECEIVE_REQUEST) {
564 if (from_nodeid == dir_nodeid)
565 from_dir = 1;
566 else
567 from_other = 1;
568 } else if (flags & R_REQUEST) {
569 from_local = 1;
570 }
571
572 /*
573 * flags & R_RECEIVE_RECOVER is from dlm_recover_master_copy, so
574 * from_nodeid has sent us a lock in dlm_recover_locks, believing
575 * we're the new master. Our local recovery may not have set
576 * res_master_nodeid to our_nodeid yet, so allow either. Don't
577 * create the rsb; dlm_recover_process_copy() will handle EBADR
578 * by resending.
579 *
580 * If someone sends us a request, we are the dir node, and we do
581 * not find the rsb anywhere, then recreate it. This happens if
582 * someone sends us a request after we have removed/freed an rsb
583 * from our toss list. (They sent a request instead of lookup
584 * because they are using an rsb from their toss list.)
585 */
586
587 if (from_local || from_dir ||
588 (from_other && (dir_nodeid == our_nodeid))) {
589 create = 1;
590 }
591
592 retry:
593 if (create) {
594 error = pre_rsb_struct(ls);
595 if (error < 0)
596 goto out;
597 }
598
599 spin_lock(&ls->ls_rsbtbl[b].lock);
600
601 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].keep, name, len, &r);
602 if (error)
603 goto do_toss;
604
605 /*
606 * rsb is active, so we can't check master_nodeid without lock_rsb.
607 */
608
609 kref_get(&r->res_ref);
610 goto out_unlock;
611
612
613 do_toss:
614 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
615 if (error)
616 goto do_new;
617
618 /*
619 * rsb found inactive (master_nodeid may be out of date unless
620 * we are the dir_nodeid or were the master) No other thread
621 * is using this rsb because it's on the toss list, so we can
622 * look at or update res_master_nodeid without lock_rsb.
623 */
624
625 if ((r->res_master_nodeid != our_nodeid) && from_other) {
626 /* our rsb was not master, and another node (not the dir node)
627 has sent us a request */
628 log_debug(ls, "find_rsb toss from_other %d master %d dir %d %s",
629 from_nodeid, r->res_master_nodeid, dir_nodeid,
630 r->res_name);
631 error = -ENOTBLK;
632 goto out_unlock;
633 }
634
635 if ((r->res_master_nodeid != our_nodeid) && from_dir) {
636 /* don't think this should ever happen */
637 log_error(ls, "find_rsb toss from_dir %d master %d",
638 from_nodeid, r->res_master_nodeid);
639 dlm_print_rsb(r);
640 /* fix it and go on */
641 r->res_master_nodeid = our_nodeid;
642 r->res_nodeid = 0;
643 rsb_clear_flag(r, RSB_MASTER_UNCERTAIN);
644 r->res_first_lkid = 0;
645 }
646
647 if (from_local && (r->res_master_nodeid != our_nodeid)) {
648 /* Because we have held no locks on this rsb,
649 res_master_nodeid could have become stale. */
650 rsb_set_flag(r, RSB_MASTER_UNCERTAIN);
651 r->res_first_lkid = 0;
652 }
653
654 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[b].toss);
655 error = rsb_insert(r, &ls->ls_rsbtbl[b].keep);
656 goto out_unlock;
657
658
659 do_new:
660 /*
661 * rsb not found
662 */
663
664 if (error == -EBADR && !create)
665 goto out_unlock;
666
667 error = get_rsb_struct(ls, name, len, &r);
668 if (error == -EAGAIN) {
669 spin_unlock(&ls->ls_rsbtbl[b].lock);
670 goto retry;
671 }
672 if (error)
673 goto out_unlock;
674
675 r->res_hash = hash;
676 r->res_bucket = b;
677 r->res_dir_nodeid = dir_nodeid;
678 kref_init(&r->res_ref);
679
680 if (from_dir) {
681 /* want to see how often this happens */
682 log_debug(ls, "find_rsb new from_dir %d recreate %s",
683 from_nodeid, r->res_name);
684 r->res_master_nodeid = our_nodeid;
685 r->res_nodeid = 0;
686 goto out_add;
687 }
688
689 if (from_other && (dir_nodeid != our_nodeid)) {
690 /* should never happen */
691 log_error(ls, "find_rsb new from_other %d dir %d our %d %s",
692 from_nodeid, dir_nodeid, our_nodeid, r->res_name);
693 dlm_free_rsb(r);
694 r = NULL;
695 error = -ENOTBLK;
696 goto out_unlock;
697 }
698
699 if (from_other) {
700 log_debug(ls, "find_rsb new from_other %d dir %d %s",
701 from_nodeid, dir_nodeid, r->res_name);
702 }
703
704 if (dir_nodeid == our_nodeid) {
705 /* When we are the dir nodeid, we can set the master
706 node immediately */
707 r->res_master_nodeid = our_nodeid;
708 r->res_nodeid = 0;
709 } else {
710 /* set_master will send_lookup to dir_nodeid */
711 r->res_master_nodeid = 0;
712 r->res_nodeid = -1;
713 }
714
715 out_add:
716 error = rsb_insert(r, &ls->ls_rsbtbl[b].keep);
717 out_unlock:
718 spin_unlock(&ls->ls_rsbtbl[b].lock);
719 out:
720 *r_ret = r;
721 return error;
722 }
723
724 /* During recovery, other nodes can send us new MSTCPY locks (from
725 dlm_recover_locks) before we've made ourself master (in
726 dlm_recover_masters). */
727
find_rsb_nodir(struct dlm_ls * ls,const void * name,int len,uint32_t hash,uint32_t b,int dir_nodeid,int from_nodeid,unsigned int flags,struct dlm_rsb ** r_ret)728 static int find_rsb_nodir(struct dlm_ls *ls, const void *name, int len,
729 uint32_t hash, uint32_t b,
730 int dir_nodeid, int from_nodeid,
731 unsigned int flags, struct dlm_rsb **r_ret)
732 {
733 struct dlm_rsb *r = NULL;
734 int our_nodeid = dlm_our_nodeid();
735 int recover = (flags & R_RECEIVE_RECOVER);
736 int error;
737
738 retry:
739 error = pre_rsb_struct(ls);
740 if (error < 0)
741 goto out;
742
743 spin_lock(&ls->ls_rsbtbl[b].lock);
744
745 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].keep, name, len, &r);
746 if (error)
747 goto do_toss;
748
749 /*
750 * rsb is active, so we can't check master_nodeid without lock_rsb.
751 */
752
753 kref_get(&r->res_ref);
754 goto out_unlock;
755
756
757 do_toss:
758 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
759 if (error)
760 goto do_new;
761
762 /*
763 * rsb found inactive. No other thread is using this rsb because
764 * it's on the toss list, so we can look at or update
765 * res_master_nodeid without lock_rsb.
766 */
767
768 if (!recover && (r->res_master_nodeid != our_nodeid) && from_nodeid) {
769 /* our rsb is not master, and another node has sent us a
770 request; this should never happen */
771 log_error(ls, "find_rsb toss from_nodeid %d master %d dir %d",
772 from_nodeid, r->res_master_nodeid, dir_nodeid);
773 dlm_print_rsb(r);
774 error = -ENOTBLK;
775 goto out_unlock;
776 }
777
778 if (!recover && (r->res_master_nodeid != our_nodeid) &&
779 (dir_nodeid == our_nodeid)) {
780 /* our rsb is not master, and we are dir; may as well fix it;
781 this should never happen */
782 log_error(ls, "find_rsb toss our %d master %d dir %d",
783 our_nodeid, r->res_master_nodeid, dir_nodeid);
784 dlm_print_rsb(r);
785 r->res_master_nodeid = our_nodeid;
786 r->res_nodeid = 0;
787 }
788
789 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[b].toss);
790 error = rsb_insert(r, &ls->ls_rsbtbl[b].keep);
791 goto out_unlock;
792
793
794 do_new:
795 /*
796 * rsb not found
797 */
798
799 error = get_rsb_struct(ls, name, len, &r);
800 if (error == -EAGAIN) {
801 spin_unlock(&ls->ls_rsbtbl[b].lock);
802 goto retry;
803 }
804 if (error)
805 goto out_unlock;
806
807 r->res_hash = hash;
808 r->res_bucket = b;
809 r->res_dir_nodeid = dir_nodeid;
810 r->res_master_nodeid = dir_nodeid;
811 r->res_nodeid = (dir_nodeid == our_nodeid) ? 0 : dir_nodeid;
812 kref_init(&r->res_ref);
813
814 error = rsb_insert(r, &ls->ls_rsbtbl[b].keep);
815 out_unlock:
816 spin_unlock(&ls->ls_rsbtbl[b].lock);
817 out:
818 *r_ret = r;
819 return error;
820 }
821
find_rsb(struct dlm_ls * ls,const void * name,int len,int from_nodeid,unsigned int flags,struct dlm_rsb ** r_ret)822 static int find_rsb(struct dlm_ls *ls, const void *name, int len,
823 int from_nodeid, unsigned int flags,
824 struct dlm_rsb **r_ret)
825 {
826 uint32_t hash, b;
827 int dir_nodeid;
828
829 if (len > DLM_RESNAME_MAXLEN)
830 return -EINVAL;
831
832 hash = jhash(name, len, 0);
833 b = hash & (ls->ls_rsbtbl_size - 1);
834
835 dir_nodeid = dlm_hash2nodeid(ls, hash);
836
837 if (dlm_no_directory(ls))
838 return find_rsb_nodir(ls, name, len, hash, b, dir_nodeid,
839 from_nodeid, flags, r_ret);
840 else
841 return find_rsb_dir(ls, name, len, hash, b, dir_nodeid,
842 from_nodeid, flags, r_ret);
843 }
844
845 /* we have received a request and found that res_master_nodeid != our_nodeid,
846 so we need to return an error or make ourself the master */
847
validate_master_nodeid(struct dlm_ls * ls,struct dlm_rsb * r,int from_nodeid)848 static int validate_master_nodeid(struct dlm_ls *ls, struct dlm_rsb *r,
849 int from_nodeid)
850 {
851 if (dlm_no_directory(ls)) {
852 log_error(ls, "find_rsb keep from_nodeid %d master %d dir %d",
853 from_nodeid, r->res_master_nodeid,
854 r->res_dir_nodeid);
855 dlm_print_rsb(r);
856 return -ENOTBLK;
857 }
858
859 if (from_nodeid != r->res_dir_nodeid) {
860 /* our rsb is not master, and another node (not the dir node)
861 has sent us a request. this is much more common when our
862 master_nodeid is zero, so limit debug to non-zero. */
863
864 if (r->res_master_nodeid) {
865 log_debug(ls, "validate master from_other %d master %d "
866 "dir %d first %x %s", from_nodeid,
867 r->res_master_nodeid, r->res_dir_nodeid,
868 r->res_first_lkid, r->res_name);
869 }
870 return -ENOTBLK;
871 } else {
872 /* our rsb is not master, but the dir nodeid has sent us a
873 request; this could happen with master 0 / res_nodeid -1 */
874
875 if (r->res_master_nodeid) {
876 log_error(ls, "validate master from_dir %d master %d "
877 "first %x %s",
878 from_nodeid, r->res_master_nodeid,
879 r->res_first_lkid, r->res_name);
880 }
881
882 r->res_master_nodeid = dlm_our_nodeid();
883 r->res_nodeid = 0;
884 return 0;
885 }
886 }
887
__dlm_master_lookup(struct dlm_ls * ls,struct dlm_rsb * r,int our_nodeid,int from_nodeid,bool toss_list,unsigned int flags,int * r_nodeid,int * result)888 static void __dlm_master_lookup(struct dlm_ls *ls, struct dlm_rsb *r, int our_nodeid,
889 int from_nodeid, bool toss_list, unsigned int flags,
890 int *r_nodeid, int *result)
891 {
892 int fix_master = (flags & DLM_LU_RECOVER_MASTER);
893 int from_master = (flags & DLM_LU_RECOVER_DIR);
894
895 if (r->res_dir_nodeid != our_nodeid) {
896 /* should not happen, but may as well fix it and carry on */
897 log_error(ls, "%s res_dir %d our %d %s", __func__,
898 r->res_dir_nodeid, our_nodeid, r->res_name);
899 r->res_dir_nodeid = our_nodeid;
900 }
901
902 if (fix_master && dlm_is_removed(ls, r->res_master_nodeid)) {
903 /* Recovery uses this function to set a new master when
904 * the previous master failed. Setting NEW_MASTER will
905 * force dlm_recover_masters to call recover_master on this
906 * rsb even though the res_nodeid is no longer removed.
907 */
908
909 r->res_master_nodeid = from_nodeid;
910 r->res_nodeid = from_nodeid;
911 rsb_set_flag(r, RSB_NEW_MASTER);
912
913 if (toss_list) {
914 /* I don't think we should ever find it on toss list. */
915 log_error(ls, "%s fix_master on toss", __func__);
916 dlm_dump_rsb(r);
917 }
918 }
919
920 if (from_master && (r->res_master_nodeid != from_nodeid)) {
921 /* this will happen if from_nodeid became master during
922 * a previous recovery cycle, and we aborted the previous
923 * cycle before recovering this master value
924 */
925
926 log_limit(ls, "%s from_master %d master_nodeid %d res_nodeid %d first %x %s",
927 __func__, from_nodeid, r->res_master_nodeid,
928 r->res_nodeid, r->res_first_lkid, r->res_name);
929
930 if (r->res_master_nodeid == our_nodeid) {
931 log_error(ls, "from_master %d our_master", from_nodeid);
932 dlm_dump_rsb(r);
933 goto ret_assign;
934 }
935
936 r->res_master_nodeid = from_nodeid;
937 r->res_nodeid = from_nodeid;
938 rsb_set_flag(r, RSB_NEW_MASTER);
939 }
940
941 if (!r->res_master_nodeid) {
942 /* this will happen if recovery happens while we're looking
943 * up the master for this rsb
944 */
945
946 log_debug(ls, "%s master 0 to %d first %x %s", __func__,
947 from_nodeid, r->res_first_lkid, r->res_name);
948 r->res_master_nodeid = from_nodeid;
949 r->res_nodeid = from_nodeid;
950 }
951
952 if (!from_master && !fix_master &&
953 (r->res_master_nodeid == from_nodeid)) {
954 /* this can happen when the master sends remove, the dir node
955 * finds the rsb on the keep list and ignores the remove,
956 * and the former master sends a lookup
957 */
958
959 log_limit(ls, "%s from master %d flags %x first %x %s",
960 __func__, from_nodeid, flags, r->res_first_lkid,
961 r->res_name);
962 }
963
964 ret_assign:
965 *r_nodeid = r->res_master_nodeid;
966 if (result)
967 *result = DLM_LU_MATCH;
968 }
969
970 /*
971 * We're the dir node for this res and another node wants to know the
972 * master nodeid. During normal operation (non recovery) this is only
973 * called from receive_lookup(); master lookups when the local node is
974 * the dir node are done by find_rsb().
975 *
976 * normal operation, we are the dir node for a resource
977 * . _request_lock
978 * . set_master
979 * . send_lookup
980 * . receive_lookup
981 * . dlm_master_lookup flags 0
982 *
983 * recover directory, we are rebuilding dir for all resources
984 * . dlm_recover_directory
985 * . dlm_rcom_names
986 * remote node sends back the rsb names it is master of and we are dir of
987 * . dlm_master_lookup RECOVER_DIR (fix_master 0, from_master 1)
988 * we either create new rsb setting remote node as master, or find existing
989 * rsb and set master to be the remote node.
990 *
991 * recover masters, we are finding the new master for resources
992 * . dlm_recover_masters
993 * . recover_master
994 * . dlm_send_rcom_lookup
995 * . receive_rcom_lookup
996 * . dlm_master_lookup RECOVER_MASTER (fix_master 1, from_master 0)
997 */
998
dlm_master_lookup(struct dlm_ls * ls,int from_nodeid,char * name,int len,unsigned int flags,int * r_nodeid,int * result)999 int dlm_master_lookup(struct dlm_ls *ls, int from_nodeid, char *name, int len,
1000 unsigned int flags, int *r_nodeid, int *result)
1001 {
1002 struct dlm_rsb *r = NULL;
1003 uint32_t hash, b;
1004 int our_nodeid = dlm_our_nodeid();
1005 int dir_nodeid, error;
1006
1007 if (len > DLM_RESNAME_MAXLEN)
1008 return -EINVAL;
1009
1010 if (from_nodeid == our_nodeid) {
1011 log_error(ls, "dlm_master_lookup from our_nodeid %d flags %x",
1012 our_nodeid, flags);
1013 return -EINVAL;
1014 }
1015
1016 hash = jhash(name, len, 0);
1017 b = hash & (ls->ls_rsbtbl_size - 1);
1018
1019 dir_nodeid = dlm_hash2nodeid(ls, hash);
1020 if (dir_nodeid != our_nodeid) {
1021 log_error(ls, "dlm_master_lookup from %d dir %d our %d h %x %d",
1022 from_nodeid, dir_nodeid, our_nodeid, hash,
1023 ls->ls_num_nodes);
1024 *r_nodeid = -1;
1025 return -EINVAL;
1026 }
1027
1028 retry:
1029 error = pre_rsb_struct(ls);
1030 if (error < 0)
1031 return error;
1032
1033 spin_lock(&ls->ls_rsbtbl[b].lock);
1034 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].keep, name, len, &r);
1035 if (!error) {
1036 /* because the rsb is active, we need to lock_rsb before
1037 * checking/changing re_master_nodeid
1038 */
1039
1040 hold_rsb(r);
1041 spin_unlock(&ls->ls_rsbtbl[b].lock);
1042 lock_rsb(r);
1043
1044 __dlm_master_lookup(ls, r, our_nodeid, from_nodeid, false,
1045 flags, r_nodeid, result);
1046
1047 /* the rsb was active */
1048 unlock_rsb(r);
1049 put_rsb(r);
1050
1051 return 0;
1052 }
1053
1054 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
1055 if (error)
1056 goto not_found;
1057
1058 /* because the rsb is inactive (on toss list), it's not refcounted
1059 * and lock_rsb is not used, but is protected by the rsbtbl lock
1060 */
1061
1062 __dlm_master_lookup(ls, r, our_nodeid, from_nodeid, true, flags,
1063 r_nodeid, result);
1064
1065 r->res_toss_time = jiffies;
1066 /* the rsb was inactive (on toss list) */
1067 spin_unlock(&ls->ls_rsbtbl[b].lock);
1068
1069 return 0;
1070
1071 not_found:
1072 error = get_rsb_struct(ls, name, len, &r);
1073 if (error == -EAGAIN) {
1074 spin_unlock(&ls->ls_rsbtbl[b].lock);
1075 goto retry;
1076 }
1077 if (error)
1078 goto out_unlock;
1079
1080 r->res_hash = hash;
1081 r->res_bucket = b;
1082 r->res_dir_nodeid = our_nodeid;
1083 r->res_master_nodeid = from_nodeid;
1084 r->res_nodeid = from_nodeid;
1085 kref_init(&r->res_ref);
1086 r->res_toss_time = jiffies;
1087
1088 error = rsb_insert(r, &ls->ls_rsbtbl[b].toss);
1089 if (error) {
1090 /* should never happen */
1091 dlm_free_rsb(r);
1092 spin_unlock(&ls->ls_rsbtbl[b].lock);
1093 goto retry;
1094 }
1095
1096 if (result)
1097 *result = DLM_LU_ADD;
1098 *r_nodeid = from_nodeid;
1099 out_unlock:
1100 spin_unlock(&ls->ls_rsbtbl[b].lock);
1101 return error;
1102 }
1103
dlm_dump_rsb_hash(struct dlm_ls * ls,uint32_t hash)1104 static void dlm_dump_rsb_hash(struct dlm_ls *ls, uint32_t hash)
1105 {
1106 struct rb_node *n;
1107 struct dlm_rsb *r;
1108 int i;
1109
1110 for (i = 0; i < ls->ls_rsbtbl_size; i++) {
1111 spin_lock(&ls->ls_rsbtbl[i].lock);
1112 for (n = rb_first(&ls->ls_rsbtbl[i].keep); n; n = rb_next(n)) {
1113 r = rb_entry(n, struct dlm_rsb, res_hashnode);
1114 if (r->res_hash == hash)
1115 dlm_dump_rsb(r);
1116 }
1117 spin_unlock(&ls->ls_rsbtbl[i].lock);
1118 }
1119 }
1120
dlm_dump_rsb_name(struct dlm_ls * ls,char * name,int len)1121 void dlm_dump_rsb_name(struct dlm_ls *ls, char *name, int len)
1122 {
1123 struct dlm_rsb *r = NULL;
1124 uint32_t hash, b;
1125 int error;
1126
1127 hash = jhash(name, len, 0);
1128 b = hash & (ls->ls_rsbtbl_size - 1);
1129
1130 spin_lock(&ls->ls_rsbtbl[b].lock);
1131 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].keep, name, len, &r);
1132 if (!error)
1133 goto out_dump;
1134
1135 error = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
1136 if (error)
1137 goto out;
1138 out_dump:
1139 dlm_dump_rsb(r);
1140 out:
1141 spin_unlock(&ls->ls_rsbtbl[b].lock);
1142 }
1143
toss_rsb(struct kref * kref)1144 static void toss_rsb(struct kref *kref)
1145 {
1146 struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref);
1147 struct dlm_ls *ls = r->res_ls;
1148
1149 DLM_ASSERT(list_empty(&r->res_root_list), dlm_print_rsb(r););
1150 kref_init(&r->res_ref);
1151 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[r->res_bucket].keep);
1152 rsb_insert(r, &ls->ls_rsbtbl[r->res_bucket].toss);
1153 r->res_toss_time = jiffies;
1154 ls->ls_rsbtbl[r->res_bucket].flags |= DLM_RTF_SHRINK;
1155 if (r->res_lvbptr) {
1156 dlm_free_lvb(r->res_lvbptr);
1157 r->res_lvbptr = NULL;
1158 }
1159 }
1160
1161 /* See comment for unhold_lkb */
1162
unhold_rsb(struct dlm_rsb * r)1163 static void unhold_rsb(struct dlm_rsb *r)
1164 {
1165 int rv;
1166 rv = kref_put(&r->res_ref, toss_rsb);
1167 DLM_ASSERT(!rv, dlm_dump_rsb(r););
1168 }
1169
kill_rsb(struct kref * kref)1170 static void kill_rsb(struct kref *kref)
1171 {
1172 struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref);
1173
1174 /* All work is done after the return from kref_put() so we
1175 can release the write_lock before the remove and free. */
1176
1177 DLM_ASSERT(list_empty(&r->res_lookup), dlm_dump_rsb(r););
1178 DLM_ASSERT(list_empty(&r->res_grantqueue), dlm_dump_rsb(r););
1179 DLM_ASSERT(list_empty(&r->res_convertqueue), dlm_dump_rsb(r););
1180 DLM_ASSERT(list_empty(&r->res_waitqueue), dlm_dump_rsb(r););
1181 DLM_ASSERT(list_empty(&r->res_root_list), dlm_dump_rsb(r););
1182 DLM_ASSERT(list_empty(&r->res_recover_list), dlm_dump_rsb(r););
1183 }
1184
1185 /* Attaching/detaching lkb's from rsb's is for rsb reference counting.
1186 The rsb must exist as long as any lkb's for it do. */
1187
attach_lkb(struct dlm_rsb * r,struct dlm_lkb * lkb)1188 static void attach_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb)
1189 {
1190 hold_rsb(r);
1191 lkb->lkb_resource = r;
1192 }
1193
detach_lkb(struct dlm_lkb * lkb)1194 static void detach_lkb(struct dlm_lkb *lkb)
1195 {
1196 if (lkb->lkb_resource) {
1197 put_rsb(lkb->lkb_resource);
1198 lkb->lkb_resource = NULL;
1199 }
1200 }
1201
_create_lkb(struct dlm_ls * ls,struct dlm_lkb ** lkb_ret,int start,int end)1202 static int _create_lkb(struct dlm_ls *ls, struct dlm_lkb **lkb_ret,
1203 int start, int end)
1204 {
1205 struct dlm_lkb *lkb;
1206 int rv;
1207
1208 lkb = dlm_allocate_lkb(ls);
1209 if (!lkb)
1210 return -ENOMEM;
1211
1212 lkb->lkb_nodeid = -1;
1213 lkb->lkb_grmode = DLM_LOCK_IV;
1214 kref_init(&lkb->lkb_ref);
1215 INIT_LIST_HEAD(&lkb->lkb_ownqueue);
1216 INIT_LIST_HEAD(&lkb->lkb_rsb_lookup);
1217 #ifdef CONFIG_DLM_DEPRECATED_API
1218 INIT_LIST_HEAD(&lkb->lkb_time_list);
1219 #endif
1220 INIT_LIST_HEAD(&lkb->lkb_cb_list);
1221 mutex_init(&lkb->lkb_cb_mutex);
1222 INIT_WORK(&lkb->lkb_cb_work, dlm_callback_work);
1223
1224 idr_preload(GFP_NOFS);
1225 spin_lock(&ls->ls_lkbidr_spin);
1226 rv = idr_alloc(&ls->ls_lkbidr, lkb, start, end, GFP_NOWAIT);
1227 if (rv >= 0)
1228 lkb->lkb_id = rv;
1229 spin_unlock(&ls->ls_lkbidr_spin);
1230 idr_preload_end();
1231
1232 if (rv < 0) {
1233 log_error(ls, "create_lkb idr error %d", rv);
1234 dlm_free_lkb(lkb);
1235 return rv;
1236 }
1237
1238 *lkb_ret = lkb;
1239 return 0;
1240 }
1241
create_lkb(struct dlm_ls * ls,struct dlm_lkb ** lkb_ret)1242 static int create_lkb(struct dlm_ls *ls, struct dlm_lkb **lkb_ret)
1243 {
1244 return _create_lkb(ls, lkb_ret, 1, 0);
1245 }
1246
find_lkb(struct dlm_ls * ls,uint32_t lkid,struct dlm_lkb ** lkb_ret)1247 static int find_lkb(struct dlm_ls *ls, uint32_t lkid, struct dlm_lkb **lkb_ret)
1248 {
1249 struct dlm_lkb *lkb;
1250
1251 spin_lock(&ls->ls_lkbidr_spin);
1252 lkb = idr_find(&ls->ls_lkbidr, lkid);
1253 if (lkb)
1254 kref_get(&lkb->lkb_ref);
1255 spin_unlock(&ls->ls_lkbidr_spin);
1256
1257 *lkb_ret = lkb;
1258 return lkb ? 0 : -ENOENT;
1259 }
1260
kill_lkb(struct kref * kref)1261 static void kill_lkb(struct kref *kref)
1262 {
1263 struct dlm_lkb *lkb = container_of(kref, struct dlm_lkb, lkb_ref);
1264
1265 /* All work is done after the return from kref_put() so we
1266 can release the write_lock before the detach_lkb */
1267
1268 DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb););
1269 }
1270
1271 /* __put_lkb() is used when an lkb may not have an rsb attached to
1272 it so we need to provide the lockspace explicitly */
1273
__put_lkb(struct dlm_ls * ls,struct dlm_lkb * lkb)1274 static int __put_lkb(struct dlm_ls *ls, struct dlm_lkb *lkb)
1275 {
1276 uint32_t lkid = lkb->lkb_id;
1277 int rv;
1278
1279 rv = kref_put_lock(&lkb->lkb_ref, kill_lkb,
1280 &ls->ls_lkbidr_spin);
1281 if (rv) {
1282 idr_remove(&ls->ls_lkbidr, lkid);
1283 spin_unlock(&ls->ls_lkbidr_spin);
1284
1285 detach_lkb(lkb);
1286
1287 /* for local/process lkbs, lvbptr points to caller's lksb */
1288 if (lkb->lkb_lvbptr && is_master_copy(lkb))
1289 dlm_free_lvb(lkb->lkb_lvbptr);
1290 dlm_free_lkb(lkb);
1291 }
1292
1293 return rv;
1294 }
1295
dlm_put_lkb(struct dlm_lkb * lkb)1296 int dlm_put_lkb(struct dlm_lkb *lkb)
1297 {
1298 struct dlm_ls *ls;
1299
1300 DLM_ASSERT(lkb->lkb_resource, dlm_print_lkb(lkb););
1301 DLM_ASSERT(lkb->lkb_resource->res_ls, dlm_print_lkb(lkb););
1302
1303 ls = lkb->lkb_resource->res_ls;
1304 return __put_lkb(ls, lkb);
1305 }
1306
1307 /* This is only called to add a reference when the code already holds
1308 a valid reference to the lkb, so there's no need for locking. */
1309
hold_lkb(struct dlm_lkb * lkb)1310 static inline void hold_lkb(struct dlm_lkb *lkb)
1311 {
1312 kref_get(&lkb->lkb_ref);
1313 }
1314
unhold_lkb_assert(struct kref * kref)1315 static void unhold_lkb_assert(struct kref *kref)
1316 {
1317 struct dlm_lkb *lkb = container_of(kref, struct dlm_lkb, lkb_ref);
1318
1319 DLM_ASSERT(false, dlm_print_lkb(lkb););
1320 }
1321
1322 /* This is called when we need to remove a reference and are certain
1323 it's not the last ref. e.g. del_lkb is always called between a
1324 find_lkb/put_lkb and is always the inverse of a previous add_lkb.
1325 put_lkb would work fine, but would involve unnecessary locking */
1326
unhold_lkb(struct dlm_lkb * lkb)1327 static inline void unhold_lkb(struct dlm_lkb *lkb)
1328 {
1329 kref_put(&lkb->lkb_ref, unhold_lkb_assert);
1330 }
1331
lkb_add_ordered(struct list_head * new,struct list_head * head,int mode)1332 static void lkb_add_ordered(struct list_head *new, struct list_head *head,
1333 int mode)
1334 {
1335 struct dlm_lkb *lkb = NULL, *iter;
1336
1337 list_for_each_entry(iter, head, lkb_statequeue)
1338 if (iter->lkb_rqmode < mode) {
1339 lkb = iter;
1340 list_add_tail(new, &iter->lkb_statequeue);
1341 break;
1342 }
1343
1344 if (!lkb)
1345 list_add_tail(new, head);
1346 }
1347
1348 /* add/remove lkb to rsb's grant/convert/wait queue */
1349
add_lkb(struct dlm_rsb * r,struct dlm_lkb * lkb,int status)1350 static void add_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int status)
1351 {
1352 kref_get(&lkb->lkb_ref);
1353
1354 DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb););
1355
1356 lkb->lkb_timestamp = ktime_get();
1357
1358 lkb->lkb_status = status;
1359
1360 switch (status) {
1361 case DLM_LKSTS_WAITING:
1362 if (lkb->lkb_exflags & DLM_LKF_HEADQUE)
1363 list_add(&lkb->lkb_statequeue, &r->res_waitqueue);
1364 else
1365 list_add_tail(&lkb->lkb_statequeue, &r->res_waitqueue);
1366 break;
1367 case DLM_LKSTS_GRANTED:
1368 /* convention says granted locks kept in order of grmode */
1369 lkb_add_ordered(&lkb->lkb_statequeue, &r->res_grantqueue,
1370 lkb->lkb_grmode);
1371 break;
1372 case DLM_LKSTS_CONVERT:
1373 if (lkb->lkb_exflags & DLM_LKF_HEADQUE)
1374 list_add(&lkb->lkb_statequeue, &r->res_convertqueue);
1375 else
1376 list_add_tail(&lkb->lkb_statequeue,
1377 &r->res_convertqueue);
1378 break;
1379 default:
1380 DLM_ASSERT(0, dlm_print_lkb(lkb); printk("sts=%d\n", status););
1381 }
1382 }
1383
del_lkb(struct dlm_rsb * r,struct dlm_lkb * lkb)1384 static void del_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb)
1385 {
1386 lkb->lkb_status = 0;
1387 list_del(&lkb->lkb_statequeue);
1388 unhold_lkb(lkb);
1389 }
1390
move_lkb(struct dlm_rsb * r,struct dlm_lkb * lkb,int sts)1391 static void move_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int sts)
1392 {
1393 hold_lkb(lkb);
1394 del_lkb(r, lkb);
1395 add_lkb(r, lkb, sts);
1396 unhold_lkb(lkb);
1397 }
1398
msg_reply_type(int mstype)1399 static int msg_reply_type(int mstype)
1400 {
1401 switch (mstype) {
1402 case DLM_MSG_REQUEST:
1403 return DLM_MSG_REQUEST_REPLY;
1404 case DLM_MSG_CONVERT:
1405 return DLM_MSG_CONVERT_REPLY;
1406 case DLM_MSG_UNLOCK:
1407 return DLM_MSG_UNLOCK_REPLY;
1408 case DLM_MSG_CANCEL:
1409 return DLM_MSG_CANCEL_REPLY;
1410 case DLM_MSG_LOOKUP:
1411 return DLM_MSG_LOOKUP_REPLY;
1412 }
1413 return -1;
1414 }
1415
1416 /* add/remove lkb from global waiters list of lkb's waiting for
1417 a reply from a remote node */
1418
add_to_waiters(struct dlm_lkb * lkb,int mstype,int to_nodeid)1419 static int add_to_waiters(struct dlm_lkb *lkb, int mstype, int to_nodeid)
1420 {
1421 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1422 int error = 0;
1423
1424 mutex_lock(&ls->ls_waiters_mutex);
1425
1426 if (is_overlap_unlock(lkb) ||
1427 (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL))) {
1428 error = -EINVAL;
1429 goto out;
1430 }
1431
1432 if (lkb->lkb_wait_type || is_overlap_cancel(lkb)) {
1433 switch (mstype) {
1434 case DLM_MSG_UNLOCK:
1435 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
1436 break;
1437 case DLM_MSG_CANCEL:
1438 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
1439 break;
1440 default:
1441 error = -EBUSY;
1442 goto out;
1443 }
1444 lkb->lkb_wait_count++;
1445 hold_lkb(lkb);
1446
1447 log_debug(ls, "addwait %x cur %d overlap %d count %d f %x",
1448 lkb->lkb_id, lkb->lkb_wait_type, mstype,
1449 lkb->lkb_wait_count, lkb->lkb_flags);
1450 goto out;
1451 }
1452
1453 DLM_ASSERT(!lkb->lkb_wait_count,
1454 dlm_print_lkb(lkb);
1455 printk("wait_count %d\n", lkb->lkb_wait_count););
1456
1457 lkb->lkb_wait_count++;
1458 lkb->lkb_wait_type = mstype;
1459 lkb->lkb_wait_nodeid = to_nodeid; /* for debugging */
1460 hold_lkb(lkb);
1461 list_add(&lkb->lkb_wait_reply, &ls->ls_waiters);
1462 out:
1463 if (error)
1464 log_error(ls, "addwait error %x %d flags %x %d %d %s",
1465 lkb->lkb_id, error, lkb->lkb_flags, mstype,
1466 lkb->lkb_wait_type, lkb->lkb_resource->res_name);
1467 mutex_unlock(&ls->ls_waiters_mutex);
1468 return error;
1469 }
1470
1471 /* We clear the RESEND flag because we might be taking an lkb off the waiters
1472 list as part of process_requestqueue (e.g. a lookup that has an optimized
1473 request reply on the requestqueue) between dlm_recover_waiters_pre() which
1474 set RESEND and dlm_recover_waiters_post() */
1475
_remove_from_waiters(struct dlm_lkb * lkb,int mstype,struct dlm_message * ms)1476 static int _remove_from_waiters(struct dlm_lkb *lkb, int mstype,
1477 struct dlm_message *ms)
1478 {
1479 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1480 int overlap_done = 0;
1481
1482 if (is_overlap_unlock(lkb) && (mstype == DLM_MSG_UNLOCK_REPLY)) {
1483 log_debug(ls, "remwait %x unlock_reply overlap", lkb->lkb_id);
1484 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
1485 overlap_done = 1;
1486 goto out_del;
1487 }
1488
1489 if (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL_REPLY)) {
1490 log_debug(ls, "remwait %x cancel_reply overlap", lkb->lkb_id);
1491 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
1492 overlap_done = 1;
1493 goto out_del;
1494 }
1495
1496 /* Cancel state was preemptively cleared by a successful convert,
1497 see next comment, nothing to do. */
1498
1499 if ((mstype == DLM_MSG_CANCEL_REPLY) &&
1500 (lkb->lkb_wait_type != DLM_MSG_CANCEL)) {
1501 log_debug(ls, "remwait %x cancel_reply wait_type %d",
1502 lkb->lkb_id, lkb->lkb_wait_type);
1503 return -1;
1504 }
1505
1506 /* Remove for the convert reply, and premptively remove for the
1507 cancel reply. A convert has been granted while there's still
1508 an outstanding cancel on it (the cancel is moot and the result
1509 in the cancel reply should be 0). We preempt the cancel reply
1510 because the app gets the convert result and then can follow up
1511 with another op, like convert. This subsequent op would see the
1512 lingering state of the cancel and fail with -EBUSY. */
1513
1514 if ((mstype == DLM_MSG_CONVERT_REPLY) &&
1515 (lkb->lkb_wait_type == DLM_MSG_CONVERT) &&
1516 is_overlap_cancel(lkb) && ms && !ms->m_result) {
1517 log_debug(ls, "remwait %x convert_reply zap overlap_cancel",
1518 lkb->lkb_id);
1519 lkb->lkb_wait_type = 0;
1520 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
1521 lkb->lkb_wait_count--;
1522 unhold_lkb(lkb);
1523 goto out_del;
1524 }
1525
1526 /* N.B. type of reply may not always correspond to type of original
1527 msg due to lookup->request optimization, verify others? */
1528
1529 if (lkb->lkb_wait_type) {
1530 lkb->lkb_wait_type = 0;
1531 goto out_del;
1532 }
1533
1534 log_error(ls, "remwait error %x remote %d %x msg %d flags %x no wait",
1535 lkb->lkb_id, ms ? le32_to_cpu(ms->m_header.h_nodeid) : 0,
1536 lkb->lkb_remid, mstype, lkb->lkb_flags);
1537 return -1;
1538
1539 out_del:
1540 /* the force-unlock/cancel has completed and we haven't recvd a reply
1541 to the op that was in progress prior to the unlock/cancel; we
1542 give up on any reply to the earlier op. FIXME: not sure when/how
1543 this would happen */
1544
1545 if (overlap_done && lkb->lkb_wait_type) {
1546 log_error(ls, "remwait error %x reply %d wait_type %d overlap",
1547 lkb->lkb_id, mstype, lkb->lkb_wait_type);
1548 lkb->lkb_wait_count--;
1549 unhold_lkb(lkb);
1550 lkb->lkb_wait_type = 0;
1551 }
1552
1553 DLM_ASSERT(lkb->lkb_wait_count, dlm_print_lkb(lkb););
1554
1555 lkb->lkb_flags &= ~DLM_IFL_RESEND;
1556 lkb->lkb_wait_count--;
1557 if (!lkb->lkb_wait_count)
1558 list_del_init(&lkb->lkb_wait_reply);
1559 unhold_lkb(lkb);
1560 return 0;
1561 }
1562
remove_from_waiters(struct dlm_lkb * lkb,int mstype)1563 static int remove_from_waiters(struct dlm_lkb *lkb, int mstype)
1564 {
1565 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1566 int error;
1567
1568 mutex_lock(&ls->ls_waiters_mutex);
1569 error = _remove_from_waiters(lkb, mstype, NULL);
1570 mutex_unlock(&ls->ls_waiters_mutex);
1571 return error;
1572 }
1573
1574 /* Handles situations where we might be processing a "fake" or "stub" reply in
1575 which we can't try to take waiters_mutex again. */
1576
remove_from_waiters_ms(struct dlm_lkb * lkb,struct dlm_message * ms)1577 static int remove_from_waiters_ms(struct dlm_lkb *lkb, struct dlm_message *ms)
1578 {
1579 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1580 int error;
1581
1582 if (ms->m_flags != cpu_to_le32(DLM_IFL_STUB_MS))
1583 mutex_lock(&ls->ls_waiters_mutex);
1584 error = _remove_from_waiters(lkb, le32_to_cpu(ms->m_type), ms);
1585 if (ms->m_flags != cpu_to_le32(DLM_IFL_STUB_MS))
1586 mutex_unlock(&ls->ls_waiters_mutex);
1587 return error;
1588 }
1589
1590 /* If there's an rsb for the same resource being removed, ensure
1591 * that the remove message is sent before the new lookup message.
1592 */
1593
1594 #define DLM_WAIT_PENDING_COND(ls, r) \
1595 (ls->ls_remove_len && \
1596 !rsb_cmp(r, ls->ls_remove_name, \
1597 ls->ls_remove_len))
1598
wait_pending_remove(struct dlm_rsb * r)1599 static void wait_pending_remove(struct dlm_rsb *r)
1600 {
1601 struct dlm_ls *ls = r->res_ls;
1602 restart:
1603 spin_lock(&ls->ls_remove_spin);
1604 if (DLM_WAIT_PENDING_COND(ls, r)) {
1605 log_debug(ls, "delay lookup for remove dir %d %s",
1606 r->res_dir_nodeid, r->res_name);
1607 spin_unlock(&ls->ls_remove_spin);
1608 wait_event(ls->ls_remove_wait, !DLM_WAIT_PENDING_COND(ls, r));
1609 goto restart;
1610 }
1611 spin_unlock(&ls->ls_remove_spin);
1612 }
1613
1614 /*
1615 * ls_remove_spin protects ls_remove_name and ls_remove_len which are
1616 * read by other threads in wait_pending_remove. ls_remove_names
1617 * and ls_remove_lens are only used by the scan thread, so they do
1618 * not need protection.
1619 */
1620
shrink_bucket(struct dlm_ls * ls,int b)1621 static void shrink_bucket(struct dlm_ls *ls, int b)
1622 {
1623 struct rb_node *n, *next;
1624 struct dlm_rsb *r;
1625 char *name;
1626 int our_nodeid = dlm_our_nodeid();
1627 int remote_count = 0;
1628 int need_shrink = 0;
1629 int i, len, rv;
1630
1631 memset(&ls->ls_remove_lens, 0, sizeof(int) * DLM_REMOVE_NAMES_MAX);
1632
1633 spin_lock(&ls->ls_rsbtbl[b].lock);
1634
1635 if (!(ls->ls_rsbtbl[b].flags & DLM_RTF_SHRINK)) {
1636 spin_unlock(&ls->ls_rsbtbl[b].lock);
1637 return;
1638 }
1639
1640 for (n = rb_first(&ls->ls_rsbtbl[b].toss); n; n = next) {
1641 next = rb_next(n);
1642 r = rb_entry(n, struct dlm_rsb, res_hashnode);
1643
1644 /* If we're the directory record for this rsb, and
1645 we're not the master of it, then we need to wait
1646 for the master node to send us a dir remove for
1647 before removing the dir record. */
1648
1649 if (!dlm_no_directory(ls) &&
1650 (r->res_master_nodeid != our_nodeid) &&
1651 (dlm_dir_nodeid(r) == our_nodeid)) {
1652 continue;
1653 }
1654
1655 need_shrink = 1;
1656
1657 if (!time_after_eq(jiffies, r->res_toss_time +
1658 dlm_config.ci_toss_secs * HZ)) {
1659 continue;
1660 }
1661
1662 if (!dlm_no_directory(ls) &&
1663 (r->res_master_nodeid == our_nodeid) &&
1664 (dlm_dir_nodeid(r) != our_nodeid)) {
1665
1666 /* We're the master of this rsb but we're not
1667 the directory record, so we need to tell the
1668 dir node to remove the dir record. */
1669
1670 ls->ls_remove_lens[remote_count] = r->res_length;
1671 memcpy(ls->ls_remove_names[remote_count], r->res_name,
1672 DLM_RESNAME_MAXLEN);
1673 remote_count++;
1674
1675 if (remote_count >= DLM_REMOVE_NAMES_MAX)
1676 break;
1677 continue;
1678 }
1679
1680 if (!kref_put(&r->res_ref, kill_rsb)) {
1681 log_error(ls, "tossed rsb in use %s", r->res_name);
1682 continue;
1683 }
1684
1685 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[b].toss);
1686 dlm_free_rsb(r);
1687 }
1688
1689 if (need_shrink)
1690 ls->ls_rsbtbl[b].flags |= DLM_RTF_SHRINK;
1691 else
1692 ls->ls_rsbtbl[b].flags &= ~DLM_RTF_SHRINK;
1693 spin_unlock(&ls->ls_rsbtbl[b].lock);
1694
1695 /*
1696 * While searching for rsb's to free, we found some that require
1697 * remote removal. We leave them in place and find them again here
1698 * so there is a very small gap between removing them from the toss
1699 * list and sending the removal. Keeping this gap small is
1700 * important to keep us (the master node) from being out of sync
1701 * with the remote dir node for very long.
1702 *
1703 * From the time the rsb is removed from toss until just after
1704 * send_remove, the rsb name is saved in ls_remove_name. A new
1705 * lookup checks this to ensure that a new lookup message for the
1706 * same resource name is not sent just before the remove message.
1707 */
1708
1709 for (i = 0; i < remote_count; i++) {
1710 name = ls->ls_remove_names[i];
1711 len = ls->ls_remove_lens[i];
1712
1713 spin_lock(&ls->ls_rsbtbl[b].lock);
1714 rv = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
1715 if (rv) {
1716 spin_unlock(&ls->ls_rsbtbl[b].lock);
1717 log_debug(ls, "remove_name not toss %s", name);
1718 continue;
1719 }
1720
1721 if (r->res_master_nodeid != our_nodeid) {
1722 spin_unlock(&ls->ls_rsbtbl[b].lock);
1723 log_debug(ls, "remove_name master %d dir %d our %d %s",
1724 r->res_master_nodeid, r->res_dir_nodeid,
1725 our_nodeid, name);
1726 continue;
1727 }
1728
1729 if (r->res_dir_nodeid == our_nodeid) {
1730 /* should never happen */
1731 spin_unlock(&ls->ls_rsbtbl[b].lock);
1732 log_error(ls, "remove_name dir %d master %d our %d %s",
1733 r->res_dir_nodeid, r->res_master_nodeid,
1734 our_nodeid, name);
1735 continue;
1736 }
1737
1738 if (!time_after_eq(jiffies, r->res_toss_time +
1739 dlm_config.ci_toss_secs * HZ)) {
1740 spin_unlock(&ls->ls_rsbtbl[b].lock);
1741 log_debug(ls, "remove_name toss_time %lu now %lu %s",
1742 r->res_toss_time, jiffies, name);
1743 continue;
1744 }
1745
1746 if (!kref_put(&r->res_ref, kill_rsb)) {
1747 spin_unlock(&ls->ls_rsbtbl[b].lock);
1748 log_error(ls, "remove_name in use %s", name);
1749 continue;
1750 }
1751
1752 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[b].toss);
1753
1754 /* block lookup of same name until we've sent remove */
1755 spin_lock(&ls->ls_remove_spin);
1756 ls->ls_remove_len = len;
1757 memcpy(ls->ls_remove_name, name, DLM_RESNAME_MAXLEN);
1758 spin_unlock(&ls->ls_remove_spin);
1759 spin_unlock(&ls->ls_rsbtbl[b].lock);
1760
1761 send_remove(r);
1762
1763 /* allow lookup of name again */
1764 spin_lock(&ls->ls_remove_spin);
1765 ls->ls_remove_len = 0;
1766 memset(ls->ls_remove_name, 0, DLM_RESNAME_MAXLEN);
1767 spin_unlock(&ls->ls_remove_spin);
1768 wake_up(&ls->ls_remove_wait);
1769
1770 dlm_free_rsb(r);
1771 }
1772 }
1773
dlm_scan_rsbs(struct dlm_ls * ls)1774 void dlm_scan_rsbs(struct dlm_ls *ls)
1775 {
1776 int i;
1777
1778 for (i = 0; i < ls->ls_rsbtbl_size; i++) {
1779 shrink_bucket(ls, i);
1780 if (dlm_locking_stopped(ls))
1781 break;
1782 cond_resched();
1783 }
1784 }
1785
1786 #ifdef CONFIG_DLM_DEPRECATED_API
add_timeout(struct dlm_lkb * lkb)1787 static void add_timeout(struct dlm_lkb *lkb)
1788 {
1789 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1790
1791 if (is_master_copy(lkb))
1792 return;
1793
1794 if (test_bit(LSFL_TIMEWARN, &ls->ls_flags) &&
1795 !(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) {
1796 lkb->lkb_flags |= DLM_IFL_WATCH_TIMEWARN;
1797 goto add_it;
1798 }
1799 if (lkb->lkb_exflags & DLM_LKF_TIMEOUT)
1800 goto add_it;
1801 return;
1802
1803 add_it:
1804 DLM_ASSERT(list_empty(&lkb->lkb_time_list), dlm_print_lkb(lkb););
1805 mutex_lock(&ls->ls_timeout_mutex);
1806 hold_lkb(lkb);
1807 list_add_tail(&lkb->lkb_time_list, &ls->ls_timeout);
1808 mutex_unlock(&ls->ls_timeout_mutex);
1809 }
1810
del_timeout(struct dlm_lkb * lkb)1811 static void del_timeout(struct dlm_lkb *lkb)
1812 {
1813 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1814
1815 mutex_lock(&ls->ls_timeout_mutex);
1816 if (!list_empty(&lkb->lkb_time_list)) {
1817 list_del_init(&lkb->lkb_time_list);
1818 unhold_lkb(lkb);
1819 }
1820 mutex_unlock(&ls->ls_timeout_mutex);
1821 }
1822
1823 /* FIXME: is it safe to look at lkb_exflags, lkb_flags, lkb_timestamp, and
1824 lkb_lksb_timeout without lock_rsb? Note: we can't lock timeout_mutex
1825 and then lock rsb because of lock ordering in add_timeout. We may need
1826 to specify some special timeout-related bits in the lkb that are just to
1827 be accessed under the timeout_mutex. */
1828
dlm_scan_timeout(struct dlm_ls * ls)1829 void dlm_scan_timeout(struct dlm_ls *ls)
1830 {
1831 struct dlm_rsb *r;
1832 struct dlm_lkb *lkb = NULL, *iter;
1833 int do_cancel, do_warn;
1834 s64 wait_us;
1835
1836 for (;;) {
1837 if (dlm_locking_stopped(ls))
1838 break;
1839
1840 do_cancel = 0;
1841 do_warn = 0;
1842 mutex_lock(&ls->ls_timeout_mutex);
1843 list_for_each_entry(iter, &ls->ls_timeout, lkb_time_list) {
1844
1845 wait_us = ktime_to_us(ktime_sub(ktime_get(),
1846 iter->lkb_timestamp));
1847
1848 if ((iter->lkb_exflags & DLM_LKF_TIMEOUT) &&
1849 wait_us >= (iter->lkb_timeout_cs * 10000))
1850 do_cancel = 1;
1851
1852 if ((iter->lkb_flags & DLM_IFL_WATCH_TIMEWARN) &&
1853 wait_us >= dlm_config.ci_timewarn_cs * 10000)
1854 do_warn = 1;
1855
1856 if (!do_cancel && !do_warn)
1857 continue;
1858 hold_lkb(iter);
1859 lkb = iter;
1860 break;
1861 }
1862 mutex_unlock(&ls->ls_timeout_mutex);
1863
1864 if (!lkb)
1865 break;
1866
1867 r = lkb->lkb_resource;
1868 hold_rsb(r);
1869 lock_rsb(r);
1870
1871 if (do_warn) {
1872 /* clear flag so we only warn once */
1873 lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN;
1874 if (!(lkb->lkb_exflags & DLM_LKF_TIMEOUT))
1875 del_timeout(lkb);
1876 dlm_timeout_warn(lkb);
1877 }
1878
1879 if (do_cancel) {
1880 log_debug(ls, "timeout cancel %x node %d %s",
1881 lkb->lkb_id, lkb->lkb_nodeid, r->res_name);
1882 lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN;
1883 lkb->lkb_flags |= DLM_IFL_TIMEOUT_CANCEL;
1884 del_timeout(lkb);
1885 _cancel_lock(r, lkb);
1886 }
1887
1888 unlock_rsb(r);
1889 unhold_rsb(r);
1890 dlm_put_lkb(lkb);
1891 }
1892 }
1893
1894 /* This is only called by dlm_recoverd, and we rely on dlm_ls_stop() stopping
1895 dlm_recoverd before checking/setting ls_recover_begin. */
1896
dlm_adjust_timeouts(struct dlm_ls * ls)1897 void dlm_adjust_timeouts(struct dlm_ls *ls)
1898 {
1899 struct dlm_lkb *lkb;
1900 u64 adj_us = jiffies_to_usecs(jiffies - ls->ls_recover_begin);
1901
1902 ls->ls_recover_begin = 0;
1903 mutex_lock(&ls->ls_timeout_mutex);
1904 list_for_each_entry(lkb, &ls->ls_timeout, lkb_time_list)
1905 lkb->lkb_timestamp = ktime_add_us(lkb->lkb_timestamp, adj_us);
1906 mutex_unlock(&ls->ls_timeout_mutex);
1907 }
1908 #else
add_timeout(struct dlm_lkb * lkb)1909 static void add_timeout(struct dlm_lkb *lkb) { }
del_timeout(struct dlm_lkb * lkb)1910 static void del_timeout(struct dlm_lkb *lkb) { }
1911 #endif
1912
1913 /* lkb is master or local copy */
1914
set_lvb_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)1915 static void set_lvb_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1916 {
1917 int b, len = r->res_ls->ls_lvblen;
1918
1919 /* b=1 lvb returned to caller
1920 b=0 lvb written to rsb or invalidated
1921 b=-1 do nothing */
1922
1923 b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1];
1924
1925 if (b == 1) {
1926 if (!lkb->lkb_lvbptr)
1927 return;
1928
1929 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1930 return;
1931
1932 if (!r->res_lvbptr)
1933 return;
1934
1935 memcpy(lkb->lkb_lvbptr, r->res_lvbptr, len);
1936 lkb->lkb_lvbseq = r->res_lvbseq;
1937
1938 } else if (b == 0) {
1939 if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) {
1940 rsb_set_flag(r, RSB_VALNOTVALID);
1941 return;
1942 }
1943
1944 if (!lkb->lkb_lvbptr)
1945 return;
1946
1947 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1948 return;
1949
1950 if (!r->res_lvbptr)
1951 r->res_lvbptr = dlm_allocate_lvb(r->res_ls);
1952
1953 if (!r->res_lvbptr)
1954 return;
1955
1956 memcpy(r->res_lvbptr, lkb->lkb_lvbptr, len);
1957 r->res_lvbseq++;
1958 lkb->lkb_lvbseq = r->res_lvbseq;
1959 rsb_clear_flag(r, RSB_VALNOTVALID);
1960 }
1961
1962 if (rsb_flag(r, RSB_VALNOTVALID))
1963 lkb->lkb_sbflags |= DLM_SBF_VALNOTVALID;
1964 }
1965
set_lvb_unlock(struct dlm_rsb * r,struct dlm_lkb * lkb)1966 static void set_lvb_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1967 {
1968 if (lkb->lkb_grmode < DLM_LOCK_PW)
1969 return;
1970
1971 if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) {
1972 rsb_set_flag(r, RSB_VALNOTVALID);
1973 return;
1974 }
1975
1976 if (!lkb->lkb_lvbptr)
1977 return;
1978
1979 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1980 return;
1981
1982 if (!r->res_lvbptr)
1983 r->res_lvbptr = dlm_allocate_lvb(r->res_ls);
1984
1985 if (!r->res_lvbptr)
1986 return;
1987
1988 memcpy(r->res_lvbptr, lkb->lkb_lvbptr, r->res_ls->ls_lvblen);
1989 r->res_lvbseq++;
1990 rsb_clear_flag(r, RSB_VALNOTVALID);
1991 }
1992
1993 /* lkb is process copy (pc) */
1994
set_lvb_lock_pc(struct dlm_rsb * r,struct dlm_lkb * lkb,struct dlm_message * ms)1995 static void set_lvb_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb,
1996 struct dlm_message *ms)
1997 {
1998 int b;
1999
2000 if (!lkb->lkb_lvbptr)
2001 return;
2002
2003 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
2004 return;
2005
2006 b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1];
2007 if (b == 1) {
2008 int len = receive_extralen(ms);
2009 if (len > r->res_ls->ls_lvblen)
2010 len = r->res_ls->ls_lvblen;
2011 memcpy(lkb->lkb_lvbptr, ms->m_extra, len);
2012 lkb->lkb_lvbseq = le32_to_cpu(ms->m_lvbseq);
2013 }
2014 }
2015
2016 /* Manipulate lkb's on rsb's convert/granted/waiting queues
2017 remove_lock -- used for unlock, removes lkb from granted
2018 revert_lock -- used for cancel, moves lkb from convert to granted
2019 grant_lock -- used for request and convert, adds lkb to granted or
2020 moves lkb from convert or waiting to granted
2021
2022 Each of these is used for master or local copy lkb's. There is
2023 also a _pc() variation used to make the corresponding change on
2024 a process copy (pc) lkb. */
2025
_remove_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)2026 static void _remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2027 {
2028 del_lkb(r, lkb);
2029 lkb->lkb_grmode = DLM_LOCK_IV;
2030 /* this unhold undoes the original ref from create_lkb()
2031 so this leads to the lkb being freed */
2032 unhold_lkb(lkb);
2033 }
2034
remove_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)2035 static void remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2036 {
2037 set_lvb_unlock(r, lkb);
2038 _remove_lock(r, lkb);
2039 }
2040
remove_lock_pc(struct dlm_rsb * r,struct dlm_lkb * lkb)2041 static void remove_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb)
2042 {
2043 _remove_lock(r, lkb);
2044 }
2045
2046 /* returns: 0 did nothing
2047 1 moved lock to granted
2048 -1 removed lock */
2049
revert_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)2050 static int revert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2051 {
2052 int rv = 0;
2053
2054 lkb->lkb_rqmode = DLM_LOCK_IV;
2055
2056 switch (lkb->lkb_status) {
2057 case DLM_LKSTS_GRANTED:
2058 break;
2059 case DLM_LKSTS_CONVERT:
2060 move_lkb(r, lkb, DLM_LKSTS_GRANTED);
2061 rv = 1;
2062 break;
2063 case DLM_LKSTS_WAITING:
2064 del_lkb(r, lkb);
2065 lkb->lkb_grmode = DLM_LOCK_IV;
2066 /* this unhold undoes the original ref from create_lkb()
2067 so this leads to the lkb being freed */
2068 unhold_lkb(lkb);
2069 rv = -1;
2070 break;
2071 default:
2072 log_print("invalid status for revert %d", lkb->lkb_status);
2073 }
2074 return rv;
2075 }
2076
revert_lock_pc(struct dlm_rsb * r,struct dlm_lkb * lkb)2077 static int revert_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb)
2078 {
2079 return revert_lock(r, lkb);
2080 }
2081
_grant_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)2082 static void _grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2083 {
2084 if (lkb->lkb_grmode != lkb->lkb_rqmode) {
2085 lkb->lkb_grmode = lkb->lkb_rqmode;
2086 if (lkb->lkb_status)
2087 move_lkb(r, lkb, DLM_LKSTS_GRANTED);
2088 else
2089 add_lkb(r, lkb, DLM_LKSTS_GRANTED);
2090 }
2091
2092 lkb->lkb_rqmode = DLM_LOCK_IV;
2093 lkb->lkb_highbast = 0;
2094 }
2095
grant_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)2096 static void grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2097 {
2098 set_lvb_lock(r, lkb);
2099 _grant_lock(r, lkb);
2100 }
2101
grant_lock_pc(struct dlm_rsb * r,struct dlm_lkb * lkb,struct dlm_message * ms)2102 static void grant_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb,
2103 struct dlm_message *ms)
2104 {
2105 set_lvb_lock_pc(r, lkb, ms);
2106 _grant_lock(r, lkb);
2107 }
2108
2109 /* called by grant_pending_locks() which means an async grant message must
2110 be sent to the requesting node in addition to granting the lock if the
2111 lkb belongs to a remote node. */
2112
grant_lock_pending(struct dlm_rsb * r,struct dlm_lkb * lkb)2113 static void grant_lock_pending(struct dlm_rsb *r, struct dlm_lkb *lkb)
2114 {
2115 grant_lock(r, lkb);
2116 if (is_master_copy(lkb))
2117 send_grant(r, lkb);
2118 else
2119 queue_cast(r, lkb, 0);
2120 }
2121
2122 /* The special CONVDEADLK, ALTPR and ALTCW flags allow the master to
2123 change the granted/requested modes. We're munging things accordingly in
2124 the process copy.
2125 CONVDEADLK: our grmode may have been forced down to NL to resolve a
2126 conversion deadlock
2127 ALTPR/ALTCW: our rqmode may have been changed to PR or CW to become
2128 compatible with other granted locks */
2129
munge_demoted(struct dlm_lkb * lkb)2130 static void munge_demoted(struct dlm_lkb *lkb)
2131 {
2132 if (lkb->lkb_rqmode == DLM_LOCK_IV || lkb->lkb_grmode == DLM_LOCK_IV) {
2133 log_print("munge_demoted %x invalid modes gr %d rq %d",
2134 lkb->lkb_id, lkb->lkb_grmode, lkb->lkb_rqmode);
2135 return;
2136 }
2137
2138 lkb->lkb_grmode = DLM_LOCK_NL;
2139 }
2140
munge_altmode(struct dlm_lkb * lkb,struct dlm_message * ms)2141 static void munge_altmode(struct dlm_lkb *lkb, struct dlm_message *ms)
2142 {
2143 if (ms->m_type != cpu_to_le32(DLM_MSG_REQUEST_REPLY) &&
2144 ms->m_type != cpu_to_le32(DLM_MSG_GRANT)) {
2145 log_print("munge_altmode %x invalid reply type %d",
2146 lkb->lkb_id, le32_to_cpu(ms->m_type));
2147 return;
2148 }
2149
2150 if (lkb->lkb_exflags & DLM_LKF_ALTPR)
2151 lkb->lkb_rqmode = DLM_LOCK_PR;
2152 else if (lkb->lkb_exflags & DLM_LKF_ALTCW)
2153 lkb->lkb_rqmode = DLM_LOCK_CW;
2154 else {
2155 log_print("munge_altmode invalid exflags %x", lkb->lkb_exflags);
2156 dlm_print_lkb(lkb);
2157 }
2158 }
2159
first_in_list(struct dlm_lkb * lkb,struct list_head * head)2160 static inline int first_in_list(struct dlm_lkb *lkb, struct list_head *head)
2161 {
2162 struct dlm_lkb *first = list_entry(head->next, struct dlm_lkb,
2163 lkb_statequeue);
2164 if (lkb->lkb_id == first->lkb_id)
2165 return 1;
2166
2167 return 0;
2168 }
2169
2170 /* Check if the given lkb conflicts with another lkb on the queue. */
2171
queue_conflict(struct list_head * head,struct dlm_lkb * lkb)2172 static int queue_conflict(struct list_head *head, struct dlm_lkb *lkb)
2173 {
2174 struct dlm_lkb *this;
2175
2176 list_for_each_entry(this, head, lkb_statequeue) {
2177 if (this == lkb)
2178 continue;
2179 if (!modes_compat(this, lkb))
2180 return 1;
2181 }
2182 return 0;
2183 }
2184
2185 /*
2186 * "A conversion deadlock arises with a pair of lock requests in the converting
2187 * queue for one resource. The granted mode of each lock blocks the requested
2188 * mode of the other lock."
2189 *
2190 * Part 2: if the granted mode of lkb is preventing an earlier lkb in the
2191 * convert queue from being granted, then deadlk/demote lkb.
2192 *
2193 * Example:
2194 * Granted Queue: empty
2195 * Convert Queue: NL->EX (first lock)
2196 * PR->EX (second lock)
2197 *
2198 * The first lock can't be granted because of the granted mode of the second
2199 * lock and the second lock can't be granted because it's not first in the
2200 * list. We either cancel lkb's conversion (PR->EX) and return EDEADLK, or we
2201 * demote the granted mode of lkb (from PR to NL) if it has the CONVDEADLK
2202 * flag set and return DEMOTED in the lksb flags.
2203 *
2204 * Originally, this function detected conv-deadlk in a more limited scope:
2205 * - if !modes_compat(lkb1, lkb2) && !modes_compat(lkb2, lkb1), or
2206 * - if lkb1 was the first entry in the queue (not just earlier), and was
2207 * blocked by the granted mode of lkb2, and there was nothing on the
2208 * granted queue preventing lkb1 from being granted immediately, i.e.
2209 * lkb2 was the only thing preventing lkb1 from being granted.
2210 *
2211 * That second condition meant we'd only say there was conv-deadlk if
2212 * resolving it (by demotion) would lead to the first lock on the convert
2213 * queue being granted right away. It allowed conversion deadlocks to exist
2214 * between locks on the convert queue while they couldn't be granted anyway.
2215 *
2216 * Now, we detect and take action on conversion deadlocks immediately when
2217 * they're created, even if they may not be immediately consequential. If
2218 * lkb1 exists anywhere in the convert queue and lkb2 comes in with a granted
2219 * mode that would prevent lkb1's conversion from being granted, we do a
2220 * deadlk/demote on lkb2 right away and don't let it onto the convert queue.
2221 * I think this means that the lkb_is_ahead condition below should always
2222 * be zero, i.e. there will never be conv-deadlk between two locks that are
2223 * both already on the convert queue.
2224 */
2225
conversion_deadlock_detect(struct dlm_rsb * r,struct dlm_lkb * lkb2)2226 static int conversion_deadlock_detect(struct dlm_rsb *r, struct dlm_lkb *lkb2)
2227 {
2228 struct dlm_lkb *lkb1;
2229 int lkb_is_ahead = 0;
2230
2231 list_for_each_entry(lkb1, &r->res_convertqueue, lkb_statequeue) {
2232 if (lkb1 == lkb2) {
2233 lkb_is_ahead = 1;
2234 continue;
2235 }
2236
2237 if (!lkb_is_ahead) {
2238 if (!modes_compat(lkb2, lkb1))
2239 return 1;
2240 } else {
2241 if (!modes_compat(lkb2, lkb1) &&
2242 !modes_compat(lkb1, lkb2))
2243 return 1;
2244 }
2245 }
2246 return 0;
2247 }
2248
2249 /*
2250 * Return 1 if the lock can be granted, 0 otherwise.
2251 * Also detect and resolve conversion deadlocks.
2252 *
2253 * lkb is the lock to be granted
2254 *
2255 * now is 1 if the function is being called in the context of the
2256 * immediate request, it is 0 if called later, after the lock has been
2257 * queued.
2258 *
2259 * recover is 1 if dlm_recover_grant() is trying to grant conversions
2260 * after recovery.
2261 *
2262 * References are from chapter 6 of "VAXcluster Principles" by Roy Davis
2263 */
2264
_can_be_granted(struct dlm_rsb * r,struct dlm_lkb * lkb,int now,int recover)2265 static int _can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now,
2266 int recover)
2267 {
2268 int8_t conv = (lkb->lkb_grmode != DLM_LOCK_IV);
2269
2270 /*
2271 * 6-10: Version 5.4 introduced an option to address the phenomenon of
2272 * a new request for a NL mode lock being blocked.
2273 *
2274 * 6-11: If the optional EXPEDITE flag is used with the new NL mode
2275 * request, then it would be granted. In essence, the use of this flag
2276 * tells the Lock Manager to expedite theis request by not considering
2277 * what may be in the CONVERTING or WAITING queues... As of this
2278 * writing, the EXPEDITE flag can be used only with new requests for NL
2279 * mode locks. This flag is not valid for conversion requests.
2280 *
2281 * A shortcut. Earlier checks return an error if EXPEDITE is used in a
2282 * conversion or used with a non-NL requested mode. We also know an
2283 * EXPEDITE request is always granted immediately, so now must always
2284 * be 1. The full condition to grant an expedite request: (now &&
2285 * !conv && lkb->rqmode == DLM_LOCK_NL && (flags & EXPEDITE)) can
2286 * therefore be shortened to just checking the flag.
2287 */
2288
2289 if (lkb->lkb_exflags & DLM_LKF_EXPEDITE)
2290 return 1;
2291
2292 /*
2293 * A shortcut. Without this, !queue_conflict(grantqueue, lkb) would be
2294 * added to the remaining conditions.
2295 */
2296
2297 if (queue_conflict(&r->res_grantqueue, lkb))
2298 return 0;
2299
2300 /*
2301 * 6-3: By default, a conversion request is immediately granted if the
2302 * requested mode is compatible with the modes of all other granted
2303 * locks
2304 */
2305
2306 if (queue_conflict(&r->res_convertqueue, lkb))
2307 return 0;
2308
2309 /*
2310 * The RECOVER_GRANT flag means dlm_recover_grant() is granting
2311 * locks for a recovered rsb, on which lkb's have been rebuilt.
2312 * The lkb's may have been rebuilt on the queues in a different
2313 * order than they were in on the previous master. So, granting
2314 * queued conversions in order after recovery doesn't make sense
2315 * since the order hasn't been preserved anyway. The new order
2316 * could also have created a new "in place" conversion deadlock.
2317 * (e.g. old, failed master held granted EX, with PR->EX, NL->EX.
2318 * After recovery, there would be no granted locks, and possibly
2319 * NL->EX, PR->EX, an in-place conversion deadlock.) So, after
2320 * recovery, grant conversions without considering order.
2321 */
2322
2323 if (conv && recover)
2324 return 1;
2325
2326 /*
2327 * 6-5: But the default algorithm for deciding whether to grant or
2328 * queue conversion requests does not by itself guarantee that such
2329 * requests are serviced on a "first come first serve" basis. This, in
2330 * turn, can lead to a phenomenon known as "indefinate postponement".
2331 *
2332 * 6-7: This issue is dealt with by using the optional QUECVT flag with
2333 * the system service employed to request a lock conversion. This flag
2334 * forces certain conversion requests to be queued, even if they are
2335 * compatible with the granted modes of other locks on the same
2336 * resource. Thus, the use of this flag results in conversion requests
2337 * being ordered on a "first come first servce" basis.
2338 *
2339 * DCT: This condition is all about new conversions being able to occur
2340 * "in place" while the lock remains on the granted queue (assuming
2341 * nothing else conflicts.) IOW if QUECVT isn't set, a conversion
2342 * doesn't _have_ to go onto the convert queue where it's processed in
2343 * order. The "now" variable is necessary to distinguish converts
2344 * being received and processed for the first time now, because once a
2345 * convert is moved to the conversion queue the condition below applies
2346 * requiring fifo granting.
2347 */
2348
2349 if (now && conv && !(lkb->lkb_exflags & DLM_LKF_QUECVT))
2350 return 1;
2351
2352 /*
2353 * Even if the convert is compat with all granted locks,
2354 * QUECVT forces it behind other locks on the convert queue.
2355 */
2356
2357 if (now && conv && (lkb->lkb_exflags & DLM_LKF_QUECVT)) {
2358 if (list_empty(&r->res_convertqueue))
2359 return 1;
2360 else
2361 return 0;
2362 }
2363
2364 /*
2365 * The NOORDER flag is set to avoid the standard vms rules on grant
2366 * order.
2367 */
2368
2369 if (lkb->lkb_exflags & DLM_LKF_NOORDER)
2370 return 1;
2371
2372 /*
2373 * 6-3: Once in that queue [CONVERTING], a conversion request cannot be
2374 * granted until all other conversion requests ahead of it are granted
2375 * and/or canceled.
2376 */
2377
2378 if (!now && conv && first_in_list(lkb, &r->res_convertqueue))
2379 return 1;
2380
2381 /*
2382 * 6-4: By default, a new request is immediately granted only if all
2383 * three of the following conditions are satisfied when the request is
2384 * issued:
2385 * - The queue of ungranted conversion requests for the resource is
2386 * empty.
2387 * - The queue of ungranted new requests for the resource is empty.
2388 * - The mode of the new request is compatible with the most
2389 * restrictive mode of all granted locks on the resource.
2390 */
2391
2392 if (now && !conv && list_empty(&r->res_convertqueue) &&
2393 list_empty(&r->res_waitqueue))
2394 return 1;
2395
2396 /*
2397 * 6-4: Once a lock request is in the queue of ungranted new requests,
2398 * it cannot be granted until the queue of ungranted conversion
2399 * requests is empty, all ungranted new requests ahead of it are
2400 * granted and/or canceled, and it is compatible with the granted mode
2401 * of the most restrictive lock granted on the resource.
2402 */
2403
2404 if (!now && !conv && list_empty(&r->res_convertqueue) &&
2405 first_in_list(lkb, &r->res_waitqueue))
2406 return 1;
2407
2408 return 0;
2409 }
2410
can_be_granted(struct dlm_rsb * r,struct dlm_lkb * lkb,int now,int recover,int * err)2411 static int can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now,
2412 int recover, int *err)
2413 {
2414 int rv;
2415 int8_t alt = 0, rqmode = lkb->lkb_rqmode;
2416 int8_t is_convert = (lkb->lkb_grmode != DLM_LOCK_IV);
2417
2418 if (err)
2419 *err = 0;
2420
2421 rv = _can_be_granted(r, lkb, now, recover);
2422 if (rv)
2423 goto out;
2424
2425 /*
2426 * The CONVDEADLK flag is non-standard and tells the dlm to resolve
2427 * conversion deadlocks by demoting grmode to NL, otherwise the dlm
2428 * cancels one of the locks.
2429 */
2430
2431 if (is_convert && can_be_queued(lkb) &&
2432 conversion_deadlock_detect(r, lkb)) {
2433 if (lkb->lkb_exflags & DLM_LKF_CONVDEADLK) {
2434 lkb->lkb_grmode = DLM_LOCK_NL;
2435 lkb->lkb_sbflags |= DLM_SBF_DEMOTED;
2436 } else if (err) {
2437 *err = -EDEADLK;
2438 } else {
2439 log_print("can_be_granted deadlock %x now %d",
2440 lkb->lkb_id, now);
2441 dlm_dump_rsb(r);
2442 }
2443 goto out;
2444 }
2445
2446 /*
2447 * The ALTPR and ALTCW flags are non-standard and tell the dlm to try
2448 * to grant a request in a mode other than the normal rqmode. It's a
2449 * simple way to provide a big optimization to applications that can
2450 * use them.
2451 */
2452
2453 if (rqmode != DLM_LOCK_PR && (lkb->lkb_exflags & DLM_LKF_ALTPR))
2454 alt = DLM_LOCK_PR;
2455 else if (rqmode != DLM_LOCK_CW && (lkb->lkb_exflags & DLM_LKF_ALTCW))
2456 alt = DLM_LOCK_CW;
2457
2458 if (alt) {
2459 lkb->lkb_rqmode = alt;
2460 rv = _can_be_granted(r, lkb, now, 0);
2461 if (rv)
2462 lkb->lkb_sbflags |= DLM_SBF_ALTMODE;
2463 else
2464 lkb->lkb_rqmode = rqmode;
2465 }
2466 out:
2467 return rv;
2468 }
2469
2470 /* Returns the highest requested mode of all blocked conversions; sets
2471 cw if there's a blocked conversion to DLM_LOCK_CW. */
2472
grant_pending_convert(struct dlm_rsb * r,int high,int * cw,unsigned int * count)2473 static int grant_pending_convert(struct dlm_rsb *r, int high, int *cw,
2474 unsigned int *count)
2475 {
2476 struct dlm_lkb *lkb, *s;
2477 int recover = rsb_flag(r, RSB_RECOVER_GRANT);
2478 int hi, demoted, quit, grant_restart, demote_restart;
2479 int deadlk;
2480
2481 quit = 0;
2482 restart:
2483 grant_restart = 0;
2484 demote_restart = 0;
2485 hi = DLM_LOCK_IV;
2486
2487 list_for_each_entry_safe(lkb, s, &r->res_convertqueue, lkb_statequeue) {
2488 demoted = is_demoted(lkb);
2489 deadlk = 0;
2490
2491 if (can_be_granted(r, lkb, 0, recover, &deadlk)) {
2492 grant_lock_pending(r, lkb);
2493 grant_restart = 1;
2494 if (count)
2495 (*count)++;
2496 continue;
2497 }
2498
2499 if (!demoted && is_demoted(lkb)) {
2500 log_print("WARN: pending demoted %x node %d %s",
2501 lkb->lkb_id, lkb->lkb_nodeid, r->res_name);
2502 demote_restart = 1;
2503 continue;
2504 }
2505
2506 if (deadlk) {
2507 /*
2508 * If DLM_LKB_NODLKWT flag is set and conversion
2509 * deadlock is detected, we request blocking AST and
2510 * down (or cancel) conversion.
2511 */
2512 if (lkb->lkb_exflags & DLM_LKF_NODLCKWT) {
2513 if (lkb->lkb_highbast < lkb->lkb_rqmode) {
2514 queue_bast(r, lkb, lkb->lkb_rqmode);
2515 lkb->lkb_highbast = lkb->lkb_rqmode;
2516 }
2517 } else {
2518 log_print("WARN: pending deadlock %x node %d %s",
2519 lkb->lkb_id, lkb->lkb_nodeid,
2520 r->res_name);
2521 dlm_dump_rsb(r);
2522 }
2523 continue;
2524 }
2525
2526 hi = max_t(int, lkb->lkb_rqmode, hi);
2527
2528 if (cw && lkb->lkb_rqmode == DLM_LOCK_CW)
2529 *cw = 1;
2530 }
2531
2532 if (grant_restart)
2533 goto restart;
2534 if (demote_restart && !quit) {
2535 quit = 1;
2536 goto restart;
2537 }
2538
2539 return max_t(int, high, hi);
2540 }
2541
grant_pending_wait(struct dlm_rsb * r,int high,int * cw,unsigned int * count)2542 static int grant_pending_wait(struct dlm_rsb *r, int high, int *cw,
2543 unsigned int *count)
2544 {
2545 struct dlm_lkb *lkb, *s;
2546
2547 list_for_each_entry_safe(lkb, s, &r->res_waitqueue, lkb_statequeue) {
2548 if (can_be_granted(r, lkb, 0, 0, NULL)) {
2549 grant_lock_pending(r, lkb);
2550 if (count)
2551 (*count)++;
2552 } else {
2553 high = max_t(int, lkb->lkb_rqmode, high);
2554 if (lkb->lkb_rqmode == DLM_LOCK_CW)
2555 *cw = 1;
2556 }
2557 }
2558
2559 return high;
2560 }
2561
2562 /* cw of 1 means there's a lock with a rqmode of DLM_LOCK_CW that's blocked
2563 on either the convert or waiting queue.
2564 high is the largest rqmode of all locks blocked on the convert or
2565 waiting queue. */
2566
lock_requires_bast(struct dlm_lkb * gr,int high,int cw)2567 static int lock_requires_bast(struct dlm_lkb *gr, int high, int cw)
2568 {
2569 if (gr->lkb_grmode == DLM_LOCK_PR && cw) {
2570 if (gr->lkb_highbast < DLM_LOCK_EX)
2571 return 1;
2572 return 0;
2573 }
2574
2575 if (gr->lkb_highbast < high &&
2576 !__dlm_compat_matrix[gr->lkb_grmode+1][high+1])
2577 return 1;
2578 return 0;
2579 }
2580
grant_pending_locks(struct dlm_rsb * r,unsigned int * count)2581 static void grant_pending_locks(struct dlm_rsb *r, unsigned int *count)
2582 {
2583 struct dlm_lkb *lkb, *s;
2584 int high = DLM_LOCK_IV;
2585 int cw = 0;
2586
2587 if (!is_master(r)) {
2588 log_print("grant_pending_locks r nodeid %d", r->res_nodeid);
2589 dlm_dump_rsb(r);
2590 return;
2591 }
2592
2593 high = grant_pending_convert(r, high, &cw, count);
2594 high = grant_pending_wait(r, high, &cw, count);
2595
2596 if (high == DLM_LOCK_IV)
2597 return;
2598
2599 /*
2600 * If there are locks left on the wait/convert queue then send blocking
2601 * ASTs to granted locks based on the largest requested mode (high)
2602 * found above.
2603 */
2604
2605 list_for_each_entry_safe(lkb, s, &r->res_grantqueue, lkb_statequeue) {
2606 if (lkb->lkb_bastfn && lock_requires_bast(lkb, high, cw)) {
2607 if (cw && high == DLM_LOCK_PR &&
2608 lkb->lkb_grmode == DLM_LOCK_PR)
2609 queue_bast(r, lkb, DLM_LOCK_CW);
2610 else
2611 queue_bast(r, lkb, high);
2612 lkb->lkb_highbast = high;
2613 }
2614 }
2615 }
2616
modes_require_bast(struct dlm_lkb * gr,struct dlm_lkb * rq)2617 static int modes_require_bast(struct dlm_lkb *gr, struct dlm_lkb *rq)
2618 {
2619 if ((gr->lkb_grmode == DLM_LOCK_PR && rq->lkb_rqmode == DLM_LOCK_CW) ||
2620 (gr->lkb_grmode == DLM_LOCK_CW && rq->lkb_rqmode == DLM_LOCK_PR)) {
2621 if (gr->lkb_highbast < DLM_LOCK_EX)
2622 return 1;
2623 return 0;
2624 }
2625
2626 if (gr->lkb_highbast < rq->lkb_rqmode && !modes_compat(gr, rq))
2627 return 1;
2628 return 0;
2629 }
2630
send_bast_queue(struct dlm_rsb * r,struct list_head * head,struct dlm_lkb * lkb)2631 static void send_bast_queue(struct dlm_rsb *r, struct list_head *head,
2632 struct dlm_lkb *lkb)
2633 {
2634 struct dlm_lkb *gr;
2635
2636 list_for_each_entry(gr, head, lkb_statequeue) {
2637 /* skip self when sending basts to convertqueue */
2638 if (gr == lkb)
2639 continue;
2640 if (gr->lkb_bastfn && modes_require_bast(gr, lkb)) {
2641 queue_bast(r, gr, lkb->lkb_rqmode);
2642 gr->lkb_highbast = lkb->lkb_rqmode;
2643 }
2644 }
2645 }
2646
send_blocking_asts(struct dlm_rsb * r,struct dlm_lkb * lkb)2647 static void send_blocking_asts(struct dlm_rsb *r, struct dlm_lkb *lkb)
2648 {
2649 send_bast_queue(r, &r->res_grantqueue, lkb);
2650 }
2651
send_blocking_asts_all(struct dlm_rsb * r,struct dlm_lkb * lkb)2652 static void send_blocking_asts_all(struct dlm_rsb *r, struct dlm_lkb *lkb)
2653 {
2654 send_bast_queue(r, &r->res_grantqueue, lkb);
2655 send_bast_queue(r, &r->res_convertqueue, lkb);
2656 }
2657
2658 /* set_master(r, lkb) -- set the master nodeid of a resource
2659
2660 The purpose of this function is to set the nodeid field in the given
2661 lkb using the nodeid field in the given rsb. If the rsb's nodeid is
2662 known, it can just be copied to the lkb and the function will return
2663 0. If the rsb's nodeid is _not_ known, it needs to be looked up
2664 before it can be copied to the lkb.
2665
2666 When the rsb nodeid is being looked up remotely, the initial lkb
2667 causing the lookup is kept on the ls_waiters list waiting for the
2668 lookup reply. Other lkb's waiting for the same rsb lookup are kept
2669 on the rsb's res_lookup list until the master is verified.
2670
2671 Return values:
2672 0: nodeid is set in rsb/lkb and the caller should go ahead and use it
2673 1: the rsb master is not available and the lkb has been placed on
2674 a wait queue
2675 */
2676
set_master(struct dlm_rsb * r,struct dlm_lkb * lkb)2677 static int set_master(struct dlm_rsb *r, struct dlm_lkb *lkb)
2678 {
2679 int our_nodeid = dlm_our_nodeid();
2680
2681 if (rsb_flag(r, RSB_MASTER_UNCERTAIN)) {
2682 rsb_clear_flag(r, RSB_MASTER_UNCERTAIN);
2683 r->res_first_lkid = lkb->lkb_id;
2684 lkb->lkb_nodeid = r->res_nodeid;
2685 return 0;
2686 }
2687
2688 if (r->res_first_lkid && r->res_first_lkid != lkb->lkb_id) {
2689 list_add_tail(&lkb->lkb_rsb_lookup, &r->res_lookup);
2690 return 1;
2691 }
2692
2693 if (r->res_master_nodeid == our_nodeid) {
2694 lkb->lkb_nodeid = 0;
2695 return 0;
2696 }
2697
2698 if (r->res_master_nodeid) {
2699 lkb->lkb_nodeid = r->res_master_nodeid;
2700 return 0;
2701 }
2702
2703 if (dlm_dir_nodeid(r) == our_nodeid) {
2704 /* This is a somewhat unusual case; find_rsb will usually
2705 have set res_master_nodeid when dir nodeid is local, but
2706 there are cases where we become the dir node after we've
2707 past find_rsb and go through _request_lock again.
2708 confirm_master() or process_lookup_list() needs to be
2709 called after this. */
2710 log_debug(r->res_ls, "set_master %x self master %d dir %d %s",
2711 lkb->lkb_id, r->res_master_nodeid, r->res_dir_nodeid,
2712 r->res_name);
2713 r->res_master_nodeid = our_nodeid;
2714 r->res_nodeid = 0;
2715 lkb->lkb_nodeid = 0;
2716 return 0;
2717 }
2718
2719 wait_pending_remove(r);
2720
2721 r->res_first_lkid = lkb->lkb_id;
2722 send_lookup(r, lkb);
2723 return 1;
2724 }
2725
process_lookup_list(struct dlm_rsb * r)2726 static void process_lookup_list(struct dlm_rsb *r)
2727 {
2728 struct dlm_lkb *lkb, *safe;
2729
2730 list_for_each_entry_safe(lkb, safe, &r->res_lookup, lkb_rsb_lookup) {
2731 list_del_init(&lkb->lkb_rsb_lookup);
2732 _request_lock(r, lkb);
2733 schedule();
2734 }
2735 }
2736
2737 /* confirm_master -- confirm (or deny) an rsb's master nodeid */
2738
confirm_master(struct dlm_rsb * r,int error)2739 static void confirm_master(struct dlm_rsb *r, int error)
2740 {
2741 struct dlm_lkb *lkb;
2742
2743 if (!r->res_first_lkid)
2744 return;
2745
2746 switch (error) {
2747 case 0:
2748 case -EINPROGRESS:
2749 r->res_first_lkid = 0;
2750 process_lookup_list(r);
2751 break;
2752
2753 case -EAGAIN:
2754 case -EBADR:
2755 case -ENOTBLK:
2756 /* the remote request failed and won't be retried (it was
2757 a NOQUEUE, or has been canceled/unlocked); make a waiting
2758 lkb the first_lkid */
2759
2760 r->res_first_lkid = 0;
2761
2762 if (!list_empty(&r->res_lookup)) {
2763 lkb = list_entry(r->res_lookup.next, struct dlm_lkb,
2764 lkb_rsb_lookup);
2765 list_del_init(&lkb->lkb_rsb_lookup);
2766 r->res_first_lkid = lkb->lkb_id;
2767 _request_lock(r, lkb);
2768 }
2769 break;
2770
2771 default:
2772 log_error(r->res_ls, "confirm_master unknown error %d", error);
2773 }
2774 }
2775
2776 #ifdef CONFIG_DLM_DEPRECATED_API
set_lock_args(int mode,struct dlm_lksb * lksb,uint32_t flags,int namelen,unsigned long timeout_cs,void (* ast)(void * astparam),void * astparam,void (* bast)(void * astparam,int mode),struct dlm_args * args)2777 static int set_lock_args(int mode, struct dlm_lksb *lksb, uint32_t flags,
2778 int namelen, unsigned long timeout_cs,
2779 void (*ast) (void *astparam),
2780 void *astparam,
2781 void (*bast) (void *astparam, int mode),
2782 struct dlm_args *args)
2783 #else
2784 static int set_lock_args(int mode, struct dlm_lksb *lksb, uint32_t flags,
2785 int namelen, void (*ast)(void *astparam),
2786 void *astparam,
2787 void (*bast)(void *astparam, int mode),
2788 struct dlm_args *args)
2789 #endif
2790 {
2791 int rv = -EINVAL;
2792
2793 /* check for invalid arg usage */
2794
2795 if (mode < 0 || mode > DLM_LOCK_EX)
2796 goto out;
2797
2798 if (!(flags & DLM_LKF_CONVERT) && (namelen > DLM_RESNAME_MAXLEN))
2799 goto out;
2800
2801 if (flags & DLM_LKF_CANCEL)
2802 goto out;
2803
2804 if (flags & DLM_LKF_QUECVT && !(flags & DLM_LKF_CONVERT))
2805 goto out;
2806
2807 if (flags & DLM_LKF_CONVDEADLK && !(flags & DLM_LKF_CONVERT))
2808 goto out;
2809
2810 if (flags & DLM_LKF_CONVDEADLK && flags & DLM_LKF_NOQUEUE)
2811 goto out;
2812
2813 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_CONVERT)
2814 goto out;
2815
2816 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_QUECVT)
2817 goto out;
2818
2819 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_NOQUEUE)
2820 goto out;
2821
2822 if (flags & DLM_LKF_EXPEDITE && mode != DLM_LOCK_NL)
2823 goto out;
2824
2825 if (!ast || !lksb)
2826 goto out;
2827
2828 if (flags & DLM_LKF_VALBLK && !lksb->sb_lvbptr)
2829 goto out;
2830
2831 if (flags & DLM_LKF_CONVERT && !lksb->sb_lkid)
2832 goto out;
2833
2834 /* these args will be copied to the lkb in validate_lock_args,
2835 it cannot be done now because when converting locks, fields in
2836 an active lkb cannot be modified before locking the rsb */
2837
2838 args->flags = flags;
2839 args->astfn = ast;
2840 args->astparam = astparam;
2841 args->bastfn = bast;
2842 #ifdef CONFIG_DLM_DEPRECATED_API
2843 args->timeout = timeout_cs;
2844 #endif
2845 args->mode = mode;
2846 args->lksb = lksb;
2847 rv = 0;
2848 out:
2849 return rv;
2850 }
2851
set_unlock_args(uint32_t flags,void * astarg,struct dlm_args * args)2852 static int set_unlock_args(uint32_t flags, void *astarg, struct dlm_args *args)
2853 {
2854 if (flags & ~(DLM_LKF_CANCEL | DLM_LKF_VALBLK | DLM_LKF_IVVALBLK |
2855 DLM_LKF_FORCEUNLOCK))
2856 return -EINVAL;
2857
2858 if (flags & DLM_LKF_CANCEL && flags & DLM_LKF_FORCEUNLOCK)
2859 return -EINVAL;
2860
2861 args->flags = flags;
2862 args->astparam = astarg;
2863 return 0;
2864 }
2865
validate_lock_args(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_args * args)2866 static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
2867 struct dlm_args *args)
2868 {
2869 int rv = -EBUSY;
2870
2871 if (args->flags & DLM_LKF_CONVERT) {
2872 if (lkb->lkb_status != DLM_LKSTS_GRANTED)
2873 goto out;
2874
2875 /* lock not allowed if there's any op in progress */
2876 if (lkb->lkb_wait_type || lkb->lkb_wait_count)
2877 goto out;
2878
2879 if (is_overlap(lkb))
2880 goto out;
2881
2882 rv = -EINVAL;
2883 if (lkb->lkb_flags & DLM_IFL_MSTCPY)
2884 goto out;
2885
2886 if (args->flags & DLM_LKF_QUECVT &&
2887 !__quecvt_compat_matrix[lkb->lkb_grmode+1][args->mode+1])
2888 goto out;
2889 }
2890
2891 lkb->lkb_exflags = args->flags;
2892 lkb->lkb_sbflags = 0;
2893 lkb->lkb_astfn = args->astfn;
2894 lkb->lkb_astparam = args->astparam;
2895 lkb->lkb_bastfn = args->bastfn;
2896 lkb->lkb_rqmode = args->mode;
2897 lkb->lkb_lksb = args->lksb;
2898 lkb->lkb_lvbptr = args->lksb->sb_lvbptr;
2899 lkb->lkb_ownpid = (int) current->pid;
2900 #ifdef CONFIG_DLM_DEPRECATED_API
2901 lkb->lkb_timeout_cs = args->timeout;
2902 #endif
2903 rv = 0;
2904 out:
2905 switch (rv) {
2906 case 0:
2907 break;
2908 case -EINVAL:
2909 /* annoy the user because dlm usage is wrong */
2910 WARN_ON(1);
2911 log_error(ls, "%s %d %x %x %x %d %d %s", __func__,
2912 rv, lkb->lkb_id, lkb->lkb_flags, args->flags,
2913 lkb->lkb_status, lkb->lkb_wait_type,
2914 lkb->lkb_resource->res_name);
2915 break;
2916 default:
2917 log_debug(ls, "%s %d %x %x %x %d %d %s", __func__,
2918 rv, lkb->lkb_id, lkb->lkb_flags, args->flags,
2919 lkb->lkb_status, lkb->lkb_wait_type,
2920 lkb->lkb_resource->res_name);
2921 break;
2922 }
2923
2924 return rv;
2925 }
2926
2927 /* when dlm_unlock() sees -EBUSY with CANCEL/FORCEUNLOCK it returns 0
2928 for success */
2929
2930 /* note: it's valid for lkb_nodeid/res_nodeid to be -1 when we get here
2931 because there may be a lookup in progress and it's valid to do
2932 cancel/unlockf on it */
2933
validate_unlock_args(struct dlm_lkb * lkb,struct dlm_args * args)2934 static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args)
2935 {
2936 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
2937 int rv = -EBUSY;
2938
2939 /* normal unlock not allowed if there's any op in progress */
2940 if (!(args->flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)) &&
2941 (lkb->lkb_wait_type || lkb->lkb_wait_count))
2942 goto out;
2943
2944 /* an lkb may be waiting for an rsb lookup to complete where the
2945 lookup was initiated by another lock */
2946
2947 if (!list_empty(&lkb->lkb_rsb_lookup)) {
2948 if (args->flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)) {
2949 log_debug(ls, "unlock on rsb_lookup %x", lkb->lkb_id);
2950 list_del_init(&lkb->lkb_rsb_lookup);
2951 queue_cast(lkb->lkb_resource, lkb,
2952 args->flags & DLM_LKF_CANCEL ?
2953 -DLM_ECANCEL : -DLM_EUNLOCK);
2954 unhold_lkb(lkb); /* undoes create_lkb() */
2955 }
2956 /* caller changes -EBUSY to 0 for CANCEL and FORCEUNLOCK */
2957 goto out;
2958 }
2959
2960 rv = -EINVAL;
2961 if (lkb->lkb_flags & DLM_IFL_MSTCPY) {
2962 log_error(ls, "unlock on MSTCPY %x", lkb->lkb_id);
2963 dlm_print_lkb(lkb);
2964 goto out;
2965 }
2966
2967 /* an lkb may still exist even though the lock is EOL'ed due to a
2968 * cancel, unlock or failed noqueue request; an app can't use these
2969 * locks; return same error as if the lkid had not been found at all
2970 */
2971
2972 if (lkb->lkb_flags & DLM_IFL_ENDOFLIFE) {
2973 log_debug(ls, "unlock on ENDOFLIFE %x", lkb->lkb_id);
2974 rv = -ENOENT;
2975 goto out;
2976 }
2977
2978 /* cancel not allowed with another cancel/unlock in progress */
2979
2980 if (args->flags & DLM_LKF_CANCEL) {
2981 if (lkb->lkb_exflags & DLM_LKF_CANCEL)
2982 goto out;
2983
2984 if (is_overlap(lkb))
2985 goto out;
2986
2987 /* don't let scand try to do a cancel */
2988 del_timeout(lkb);
2989
2990 if (lkb->lkb_flags & DLM_IFL_RESEND) {
2991 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
2992 rv = -EBUSY;
2993 goto out;
2994 }
2995
2996 /* there's nothing to cancel */
2997 if (lkb->lkb_status == DLM_LKSTS_GRANTED &&
2998 !lkb->lkb_wait_type) {
2999 rv = -EBUSY;
3000 goto out;
3001 }
3002
3003 switch (lkb->lkb_wait_type) {
3004 case DLM_MSG_LOOKUP:
3005 case DLM_MSG_REQUEST:
3006 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
3007 rv = -EBUSY;
3008 goto out;
3009 case DLM_MSG_UNLOCK:
3010 case DLM_MSG_CANCEL:
3011 goto out;
3012 }
3013 /* add_to_waiters() will set OVERLAP_CANCEL */
3014 goto out_ok;
3015 }
3016
3017 /* do we need to allow a force-unlock if there's a normal unlock
3018 already in progress? in what conditions could the normal unlock
3019 fail such that we'd want to send a force-unlock to be sure? */
3020
3021 if (args->flags & DLM_LKF_FORCEUNLOCK) {
3022 if (lkb->lkb_exflags & DLM_LKF_FORCEUNLOCK)
3023 goto out;
3024
3025 if (is_overlap_unlock(lkb))
3026 goto out;
3027
3028 /* don't let scand try to do a cancel */
3029 del_timeout(lkb);
3030
3031 if (lkb->lkb_flags & DLM_IFL_RESEND) {
3032 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
3033 rv = -EBUSY;
3034 goto out;
3035 }
3036
3037 switch (lkb->lkb_wait_type) {
3038 case DLM_MSG_LOOKUP:
3039 case DLM_MSG_REQUEST:
3040 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
3041 rv = -EBUSY;
3042 goto out;
3043 case DLM_MSG_UNLOCK:
3044 goto out;
3045 }
3046 /* add_to_waiters() will set OVERLAP_UNLOCK */
3047 }
3048
3049 out_ok:
3050 /* an overlapping op shouldn't blow away exflags from other op */
3051 lkb->lkb_exflags |= args->flags;
3052 lkb->lkb_sbflags = 0;
3053 lkb->lkb_astparam = args->astparam;
3054 rv = 0;
3055 out:
3056 switch (rv) {
3057 case 0:
3058 break;
3059 case -EINVAL:
3060 /* annoy the user because dlm usage is wrong */
3061 WARN_ON(1);
3062 log_error(ls, "%s %d %x %x %x %x %d %s", __func__, rv,
3063 lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags,
3064 args->flags, lkb->lkb_wait_type,
3065 lkb->lkb_resource->res_name);
3066 break;
3067 default:
3068 log_debug(ls, "%s %d %x %x %x %x %d %s", __func__, rv,
3069 lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags,
3070 args->flags, lkb->lkb_wait_type,
3071 lkb->lkb_resource->res_name);
3072 break;
3073 }
3074
3075 return rv;
3076 }
3077
3078 /*
3079 * Four stage 4 varieties:
3080 * do_request(), do_convert(), do_unlock(), do_cancel()
3081 * These are called on the master node for the given lock and
3082 * from the central locking logic.
3083 */
3084
do_request(struct dlm_rsb * r,struct dlm_lkb * lkb)3085 static int do_request(struct dlm_rsb *r, struct dlm_lkb *lkb)
3086 {
3087 int error = 0;
3088
3089 if (can_be_granted(r, lkb, 1, 0, NULL)) {
3090 grant_lock(r, lkb);
3091 queue_cast(r, lkb, 0);
3092 goto out;
3093 }
3094
3095 if (can_be_queued(lkb)) {
3096 error = -EINPROGRESS;
3097 add_lkb(r, lkb, DLM_LKSTS_WAITING);
3098 add_timeout(lkb);
3099 goto out;
3100 }
3101
3102 error = -EAGAIN;
3103 queue_cast(r, lkb, -EAGAIN);
3104 out:
3105 return error;
3106 }
3107
do_request_effects(struct dlm_rsb * r,struct dlm_lkb * lkb,int error)3108 static void do_request_effects(struct dlm_rsb *r, struct dlm_lkb *lkb,
3109 int error)
3110 {
3111 switch (error) {
3112 case -EAGAIN:
3113 if (force_blocking_asts(lkb))
3114 send_blocking_asts_all(r, lkb);
3115 break;
3116 case -EINPROGRESS:
3117 send_blocking_asts(r, lkb);
3118 break;
3119 }
3120 }
3121
do_convert(struct dlm_rsb * r,struct dlm_lkb * lkb)3122 static int do_convert(struct dlm_rsb *r, struct dlm_lkb *lkb)
3123 {
3124 int error = 0;
3125 int deadlk = 0;
3126
3127 /* changing an existing lock may allow others to be granted */
3128
3129 if (can_be_granted(r, lkb, 1, 0, &deadlk)) {
3130 grant_lock(r, lkb);
3131 queue_cast(r, lkb, 0);
3132 goto out;
3133 }
3134
3135 /* can_be_granted() detected that this lock would block in a conversion
3136 deadlock, so we leave it on the granted queue and return EDEADLK in
3137 the ast for the convert. */
3138
3139 if (deadlk && !(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) {
3140 /* it's left on the granted queue */
3141 revert_lock(r, lkb);
3142 queue_cast(r, lkb, -EDEADLK);
3143 error = -EDEADLK;
3144 goto out;
3145 }
3146
3147 /* is_demoted() means the can_be_granted() above set the grmode
3148 to NL, and left us on the granted queue. This auto-demotion
3149 (due to CONVDEADLK) might mean other locks, and/or this lock, are
3150 now grantable. We have to try to grant other converting locks
3151 before we try again to grant this one. */
3152
3153 if (is_demoted(lkb)) {
3154 grant_pending_convert(r, DLM_LOCK_IV, NULL, NULL);
3155 if (_can_be_granted(r, lkb, 1, 0)) {
3156 grant_lock(r, lkb);
3157 queue_cast(r, lkb, 0);
3158 goto out;
3159 }
3160 /* else fall through and move to convert queue */
3161 }
3162
3163 if (can_be_queued(lkb)) {
3164 error = -EINPROGRESS;
3165 del_lkb(r, lkb);
3166 add_lkb(r, lkb, DLM_LKSTS_CONVERT);
3167 add_timeout(lkb);
3168 goto out;
3169 }
3170
3171 error = -EAGAIN;
3172 queue_cast(r, lkb, -EAGAIN);
3173 out:
3174 return error;
3175 }
3176
do_convert_effects(struct dlm_rsb * r,struct dlm_lkb * lkb,int error)3177 static void do_convert_effects(struct dlm_rsb *r, struct dlm_lkb *lkb,
3178 int error)
3179 {
3180 switch (error) {
3181 case 0:
3182 grant_pending_locks(r, NULL);
3183 /* grant_pending_locks also sends basts */
3184 break;
3185 case -EAGAIN:
3186 if (force_blocking_asts(lkb))
3187 send_blocking_asts_all(r, lkb);
3188 break;
3189 case -EINPROGRESS:
3190 send_blocking_asts(r, lkb);
3191 break;
3192 }
3193 }
3194
do_unlock(struct dlm_rsb * r,struct dlm_lkb * lkb)3195 static int do_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3196 {
3197 remove_lock(r, lkb);
3198 queue_cast(r, lkb, -DLM_EUNLOCK);
3199 return -DLM_EUNLOCK;
3200 }
3201
do_unlock_effects(struct dlm_rsb * r,struct dlm_lkb * lkb,int error)3202 static void do_unlock_effects(struct dlm_rsb *r, struct dlm_lkb *lkb,
3203 int error)
3204 {
3205 grant_pending_locks(r, NULL);
3206 }
3207
3208 /* returns: 0 did nothing, -DLM_ECANCEL canceled lock */
3209
do_cancel(struct dlm_rsb * r,struct dlm_lkb * lkb)3210 static int do_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb)
3211 {
3212 int error;
3213
3214 error = revert_lock(r, lkb);
3215 if (error) {
3216 queue_cast(r, lkb, -DLM_ECANCEL);
3217 return -DLM_ECANCEL;
3218 }
3219 return 0;
3220 }
3221
do_cancel_effects(struct dlm_rsb * r,struct dlm_lkb * lkb,int error)3222 static void do_cancel_effects(struct dlm_rsb *r, struct dlm_lkb *lkb,
3223 int error)
3224 {
3225 if (error)
3226 grant_pending_locks(r, NULL);
3227 }
3228
3229 /*
3230 * Four stage 3 varieties:
3231 * _request_lock(), _convert_lock(), _unlock_lock(), _cancel_lock()
3232 */
3233
3234 /* add a new lkb to a possibly new rsb, called by requesting process */
3235
_request_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)3236 static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3237 {
3238 int error;
3239
3240 /* set_master: sets lkb nodeid from r */
3241
3242 error = set_master(r, lkb);
3243 if (error < 0)
3244 goto out;
3245 if (error) {
3246 error = 0;
3247 goto out;
3248 }
3249
3250 if (is_remote(r)) {
3251 /* receive_request() calls do_request() on remote node */
3252 error = send_request(r, lkb);
3253 } else {
3254 error = do_request(r, lkb);
3255 /* for remote locks the request_reply is sent
3256 between do_request and do_request_effects */
3257 do_request_effects(r, lkb, error);
3258 }
3259 out:
3260 return error;
3261 }
3262
3263 /* change some property of an existing lkb, e.g. mode */
3264
_convert_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)3265 static int _convert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3266 {
3267 int error;
3268
3269 if (is_remote(r)) {
3270 /* receive_convert() calls do_convert() on remote node */
3271 error = send_convert(r, lkb);
3272 } else {
3273 error = do_convert(r, lkb);
3274 /* for remote locks the convert_reply is sent
3275 between do_convert and do_convert_effects */
3276 do_convert_effects(r, lkb, error);
3277 }
3278
3279 return error;
3280 }
3281
3282 /* remove an existing lkb from the granted queue */
3283
_unlock_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)3284 static int _unlock_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3285 {
3286 int error;
3287
3288 if (is_remote(r)) {
3289 /* receive_unlock() calls do_unlock() on remote node */
3290 error = send_unlock(r, lkb);
3291 } else {
3292 error = do_unlock(r, lkb);
3293 /* for remote locks the unlock_reply is sent
3294 between do_unlock and do_unlock_effects */
3295 do_unlock_effects(r, lkb, error);
3296 }
3297
3298 return error;
3299 }
3300
3301 /* remove an existing lkb from the convert or wait queue */
3302
_cancel_lock(struct dlm_rsb * r,struct dlm_lkb * lkb)3303 static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3304 {
3305 int error;
3306
3307 if (is_remote(r)) {
3308 /* receive_cancel() calls do_cancel() on remote node */
3309 error = send_cancel(r, lkb);
3310 } else {
3311 error = do_cancel(r, lkb);
3312 /* for remote locks the cancel_reply is sent
3313 between do_cancel and do_cancel_effects */
3314 do_cancel_effects(r, lkb, error);
3315 }
3316
3317 return error;
3318 }
3319
3320 /*
3321 * Four stage 2 varieties:
3322 * request_lock(), convert_lock(), unlock_lock(), cancel_lock()
3323 */
3324
request_lock(struct dlm_ls * ls,struct dlm_lkb * lkb,const void * name,int len,struct dlm_args * args)3325 static int request_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
3326 const void *name, int len,
3327 struct dlm_args *args)
3328 {
3329 struct dlm_rsb *r;
3330 int error;
3331
3332 error = validate_lock_args(ls, lkb, args);
3333 if (error)
3334 return error;
3335
3336 error = find_rsb(ls, name, len, 0, R_REQUEST, &r);
3337 if (error)
3338 return error;
3339
3340 lock_rsb(r);
3341
3342 attach_lkb(r, lkb);
3343 lkb->lkb_lksb->sb_lkid = lkb->lkb_id;
3344
3345 error = _request_lock(r, lkb);
3346
3347 unlock_rsb(r);
3348 put_rsb(r);
3349 return error;
3350 }
3351
convert_lock(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_args * args)3352 static int convert_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
3353 struct dlm_args *args)
3354 {
3355 struct dlm_rsb *r;
3356 int error;
3357
3358 r = lkb->lkb_resource;
3359
3360 hold_rsb(r);
3361 lock_rsb(r);
3362
3363 error = validate_lock_args(ls, lkb, args);
3364 if (error)
3365 goto out;
3366
3367 error = _convert_lock(r, lkb);
3368 out:
3369 unlock_rsb(r);
3370 put_rsb(r);
3371 return error;
3372 }
3373
unlock_lock(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_args * args)3374 static int unlock_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
3375 struct dlm_args *args)
3376 {
3377 struct dlm_rsb *r;
3378 int error;
3379
3380 r = lkb->lkb_resource;
3381
3382 hold_rsb(r);
3383 lock_rsb(r);
3384
3385 error = validate_unlock_args(lkb, args);
3386 if (error)
3387 goto out;
3388
3389 error = _unlock_lock(r, lkb);
3390 out:
3391 unlock_rsb(r);
3392 put_rsb(r);
3393 return error;
3394 }
3395
cancel_lock(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_args * args)3396 static int cancel_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
3397 struct dlm_args *args)
3398 {
3399 struct dlm_rsb *r;
3400 int error;
3401
3402 r = lkb->lkb_resource;
3403
3404 hold_rsb(r);
3405 lock_rsb(r);
3406
3407 error = validate_unlock_args(lkb, args);
3408 if (error)
3409 goto out;
3410
3411 error = _cancel_lock(r, lkb);
3412 out:
3413 unlock_rsb(r);
3414 put_rsb(r);
3415 return error;
3416 }
3417
3418 /*
3419 * Two stage 1 varieties: dlm_lock() and dlm_unlock()
3420 */
3421
dlm_lock(dlm_lockspace_t * lockspace,int mode,struct dlm_lksb * lksb,uint32_t flags,const void * name,unsigned int namelen,uint32_t parent_lkid,void (* ast)(void * astarg),void * astarg,void (* bast)(void * astarg,int mode))3422 int dlm_lock(dlm_lockspace_t *lockspace,
3423 int mode,
3424 struct dlm_lksb *lksb,
3425 uint32_t flags,
3426 const void *name,
3427 unsigned int namelen,
3428 uint32_t parent_lkid,
3429 void (*ast) (void *astarg),
3430 void *astarg,
3431 void (*bast) (void *astarg, int mode))
3432 {
3433 struct dlm_ls *ls;
3434 struct dlm_lkb *lkb;
3435 struct dlm_args args;
3436 int error, convert = flags & DLM_LKF_CONVERT;
3437
3438 ls = dlm_find_lockspace_local(lockspace);
3439 if (!ls)
3440 return -EINVAL;
3441
3442 dlm_lock_recovery(ls);
3443
3444 if (convert)
3445 error = find_lkb(ls, lksb->sb_lkid, &lkb);
3446 else
3447 error = create_lkb(ls, &lkb);
3448
3449 if (error)
3450 goto out;
3451
3452 trace_dlm_lock_start(ls, lkb, name, namelen, mode, flags);
3453
3454 #ifdef CONFIG_DLM_DEPRECATED_API
3455 error = set_lock_args(mode, lksb, flags, namelen, 0, ast,
3456 astarg, bast, &args);
3457 #else
3458 error = set_lock_args(mode, lksb, flags, namelen, ast, astarg, bast,
3459 &args);
3460 #endif
3461 if (error)
3462 goto out_put;
3463
3464 if (convert)
3465 error = convert_lock(ls, lkb, &args);
3466 else
3467 error = request_lock(ls, lkb, name, namelen, &args);
3468
3469 if (error == -EINPROGRESS)
3470 error = 0;
3471 out_put:
3472 trace_dlm_lock_end(ls, lkb, name, namelen, mode, flags, error, true);
3473
3474 if (convert || error)
3475 __put_lkb(ls, lkb);
3476 if (error == -EAGAIN || error == -EDEADLK)
3477 error = 0;
3478 out:
3479 dlm_unlock_recovery(ls);
3480 dlm_put_lockspace(ls);
3481 return error;
3482 }
3483
dlm_unlock(dlm_lockspace_t * lockspace,uint32_t lkid,uint32_t flags,struct dlm_lksb * lksb,void * astarg)3484 int dlm_unlock(dlm_lockspace_t *lockspace,
3485 uint32_t lkid,
3486 uint32_t flags,
3487 struct dlm_lksb *lksb,
3488 void *astarg)
3489 {
3490 struct dlm_ls *ls;
3491 struct dlm_lkb *lkb;
3492 struct dlm_args args;
3493 int error;
3494
3495 ls = dlm_find_lockspace_local(lockspace);
3496 if (!ls)
3497 return -EINVAL;
3498
3499 dlm_lock_recovery(ls);
3500
3501 error = find_lkb(ls, lkid, &lkb);
3502 if (error)
3503 goto out;
3504
3505 trace_dlm_unlock_start(ls, lkb, flags);
3506
3507 error = set_unlock_args(flags, astarg, &args);
3508 if (error)
3509 goto out_put;
3510
3511 if (flags & DLM_LKF_CANCEL)
3512 error = cancel_lock(ls, lkb, &args);
3513 else
3514 error = unlock_lock(ls, lkb, &args);
3515
3516 if (error == -DLM_EUNLOCK || error == -DLM_ECANCEL)
3517 error = 0;
3518 if (error == -EBUSY && (flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)))
3519 error = 0;
3520 out_put:
3521 trace_dlm_unlock_end(ls, lkb, flags, error);
3522
3523 dlm_put_lkb(lkb);
3524 out:
3525 dlm_unlock_recovery(ls);
3526 dlm_put_lockspace(ls);
3527 return error;
3528 }
3529
3530 /*
3531 * send/receive routines for remote operations and replies
3532 *
3533 * send_args
3534 * send_common
3535 * send_request receive_request
3536 * send_convert receive_convert
3537 * send_unlock receive_unlock
3538 * send_cancel receive_cancel
3539 * send_grant receive_grant
3540 * send_bast receive_bast
3541 * send_lookup receive_lookup
3542 * send_remove receive_remove
3543 *
3544 * send_common_reply
3545 * receive_request_reply send_request_reply
3546 * receive_convert_reply send_convert_reply
3547 * receive_unlock_reply send_unlock_reply
3548 * receive_cancel_reply send_cancel_reply
3549 * receive_lookup_reply send_lookup_reply
3550 */
3551
_create_message(struct dlm_ls * ls,int mb_len,int to_nodeid,int mstype,struct dlm_message ** ms_ret,struct dlm_mhandle ** mh_ret)3552 static int _create_message(struct dlm_ls *ls, int mb_len,
3553 int to_nodeid, int mstype,
3554 struct dlm_message **ms_ret,
3555 struct dlm_mhandle **mh_ret)
3556 {
3557 struct dlm_message *ms;
3558 struct dlm_mhandle *mh;
3559 char *mb;
3560
3561 /* get_buffer gives us a message handle (mh) that we need to
3562 pass into midcomms_commit and a message buffer (mb) that we
3563 write our data into */
3564
3565 mh = dlm_midcomms_get_mhandle(to_nodeid, mb_len, GFP_NOFS, &mb);
3566 if (!mh)
3567 return -ENOBUFS;
3568
3569 ms = (struct dlm_message *) mb;
3570
3571 ms->m_header.h_version = cpu_to_le32(DLM_HEADER_MAJOR | DLM_HEADER_MINOR);
3572 ms->m_header.u.h_lockspace = cpu_to_le32(ls->ls_global_id);
3573 ms->m_header.h_nodeid = cpu_to_le32(dlm_our_nodeid());
3574 ms->m_header.h_length = cpu_to_le16(mb_len);
3575 ms->m_header.h_cmd = DLM_MSG;
3576
3577 ms->m_type = cpu_to_le32(mstype);
3578
3579 *mh_ret = mh;
3580 *ms_ret = ms;
3581 return 0;
3582 }
3583
create_message(struct dlm_rsb * r,struct dlm_lkb * lkb,int to_nodeid,int mstype,struct dlm_message ** ms_ret,struct dlm_mhandle ** mh_ret)3584 static int create_message(struct dlm_rsb *r, struct dlm_lkb *lkb,
3585 int to_nodeid, int mstype,
3586 struct dlm_message **ms_ret,
3587 struct dlm_mhandle **mh_ret)
3588 {
3589 int mb_len = sizeof(struct dlm_message);
3590
3591 switch (mstype) {
3592 case DLM_MSG_REQUEST:
3593 case DLM_MSG_LOOKUP:
3594 case DLM_MSG_REMOVE:
3595 mb_len += r->res_length;
3596 break;
3597 case DLM_MSG_CONVERT:
3598 case DLM_MSG_UNLOCK:
3599 case DLM_MSG_REQUEST_REPLY:
3600 case DLM_MSG_CONVERT_REPLY:
3601 case DLM_MSG_GRANT:
3602 if (lkb && lkb->lkb_lvbptr)
3603 mb_len += r->res_ls->ls_lvblen;
3604 break;
3605 }
3606
3607 return _create_message(r->res_ls, mb_len, to_nodeid, mstype,
3608 ms_ret, mh_ret);
3609 }
3610
3611 /* further lowcomms enhancements or alternate implementations may make
3612 the return value from this function useful at some point */
3613
send_message(struct dlm_mhandle * mh,struct dlm_message * ms,const void * name,int namelen)3614 static int send_message(struct dlm_mhandle *mh, struct dlm_message *ms,
3615 const void *name, int namelen)
3616 {
3617 dlm_midcomms_commit_mhandle(mh, name, namelen);
3618 return 0;
3619 }
3620
send_args(struct dlm_rsb * r,struct dlm_lkb * lkb,struct dlm_message * ms)3621 static void send_args(struct dlm_rsb *r, struct dlm_lkb *lkb,
3622 struct dlm_message *ms)
3623 {
3624 ms->m_nodeid = cpu_to_le32(lkb->lkb_nodeid);
3625 ms->m_pid = cpu_to_le32(lkb->lkb_ownpid);
3626 ms->m_lkid = cpu_to_le32(lkb->lkb_id);
3627 ms->m_remid = cpu_to_le32(lkb->lkb_remid);
3628 ms->m_exflags = cpu_to_le32(lkb->lkb_exflags);
3629 ms->m_sbflags = cpu_to_le32(lkb->lkb_sbflags);
3630 ms->m_flags = cpu_to_le32(lkb->lkb_flags);
3631 ms->m_lvbseq = cpu_to_le32(lkb->lkb_lvbseq);
3632 ms->m_status = cpu_to_le32(lkb->lkb_status);
3633 ms->m_grmode = cpu_to_le32(lkb->lkb_grmode);
3634 ms->m_rqmode = cpu_to_le32(lkb->lkb_rqmode);
3635 ms->m_hash = cpu_to_le32(r->res_hash);
3636
3637 /* m_result and m_bastmode are set from function args,
3638 not from lkb fields */
3639
3640 if (lkb->lkb_bastfn)
3641 ms->m_asts |= cpu_to_le32(DLM_CB_BAST);
3642 if (lkb->lkb_astfn)
3643 ms->m_asts |= cpu_to_le32(DLM_CB_CAST);
3644
3645 /* compare with switch in create_message; send_remove() doesn't
3646 use send_args() */
3647
3648 switch (ms->m_type) {
3649 case cpu_to_le32(DLM_MSG_REQUEST):
3650 case cpu_to_le32(DLM_MSG_LOOKUP):
3651 memcpy(ms->m_extra, r->res_name, r->res_length);
3652 break;
3653 case cpu_to_le32(DLM_MSG_CONVERT):
3654 case cpu_to_le32(DLM_MSG_UNLOCK):
3655 case cpu_to_le32(DLM_MSG_REQUEST_REPLY):
3656 case cpu_to_le32(DLM_MSG_CONVERT_REPLY):
3657 case cpu_to_le32(DLM_MSG_GRANT):
3658 if (!lkb->lkb_lvbptr || !(lkb->lkb_exflags & DLM_LKF_VALBLK))
3659 break;
3660 memcpy(ms->m_extra, lkb->lkb_lvbptr, r->res_ls->ls_lvblen);
3661 break;
3662 }
3663 }
3664
send_common(struct dlm_rsb * r,struct dlm_lkb * lkb,int mstype)3665 static int send_common(struct dlm_rsb *r, struct dlm_lkb *lkb, int mstype)
3666 {
3667 struct dlm_message *ms;
3668 struct dlm_mhandle *mh;
3669 int to_nodeid, error;
3670
3671 to_nodeid = r->res_nodeid;
3672
3673 error = add_to_waiters(lkb, mstype, to_nodeid);
3674 if (error)
3675 return error;
3676
3677 error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh);
3678 if (error)
3679 goto fail;
3680
3681 send_args(r, lkb, ms);
3682
3683 error = send_message(mh, ms, r->res_name, r->res_length);
3684 if (error)
3685 goto fail;
3686 return 0;
3687
3688 fail:
3689 remove_from_waiters(lkb, msg_reply_type(mstype));
3690 return error;
3691 }
3692
send_request(struct dlm_rsb * r,struct dlm_lkb * lkb)3693 static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb)
3694 {
3695 return send_common(r, lkb, DLM_MSG_REQUEST);
3696 }
3697
send_convert(struct dlm_rsb * r,struct dlm_lkb * lkb)3698 static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb)
3699 {
3700 int error;
3701
3702 error = send_common(r, lkb, DLM_MSG_CONVERT);
3703
3704 /* down conversions go without a reply from the master */
3705 if (!error && down_conversion(lkb)) {
3706 remove_from_waiters(lkb, DLM_MSG_CONVERT_REPLY);
3707 r->res_ls->ls_stub_ms.m_flags = cpu_to_le32(DLM_IFL_STUB_MS);
3708 r->res_ls->ls_stub_ms.m_type = cpu_to_le32(DLM_MSG_CONVERT_REPLY);
3709 r->res_ls->ls_stub_ms.m_result = 0;
3710 __receive_convert_reply(r, lkb, &r->res_ls->ls_stub_ms);
3711 }
3712
3713 return error;
3714 }
3715
3716 /* FIXME: if this lkb is the only lock we hold on the rsb, then set
3717 MASTER_UNCERTAIN to force the next request on the rsb to confirm
3718 that the master is still correct. */
3719
send_unlock(struct dlm_rsb * r,struct dlm_lkb * lkb)3720 static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
3721 {
3722 return send_common(r, lkb, DLM_MSG_UNLOCK);
3723 }
3724
send_cancel(struct dlm_rsb * r,struct dlm_lkb * lkb)3725 static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb)
3726 {
3727 return send_common(r, lkb, DLM_MSG_CANCEL);
3728 }
3729
send_grant(struct dlm_rsb * r,struct dlm_lkb * lkb)3730 static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb)
3731 {
3732 struct dlm_message *ms;
3733 struct dlm_mhandle *mh;
3734 int to_nodeid, error;
3735
3736 to_nodeid = lkb->lkb_nodeid;
3737
3738 error = create_message(r, lkb, to_nodeid, DLM_MSG_GRANT, &ms, &mh);
3739 if (error)
3740 goto out;
3741
3742 send_args(r, lkb, ms);
3743
3744 ms->m_result = 0;
3745
3746 error = send_message(mh, ms, r->res_name, r->res_length);
3747 out:
3748 return error;
3749 }
3750
send_bast(struct dlm_rsb * r,struct dlm_lkb * lkb,int mode)3751 static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode)
3752 {
3753 struct dlm_message *ms;
3754 struct dlm_mhandle *mh;
3755 int to_nodeid, error;
3756
3757 to_nodeid = lkb->lkb_nodeid;
3758
3759 error = create_message(r, NULL, to_nodeid, DLM_MSG_BAST, &ms, &mh);
3760 if (error)
3761 goto out;
3762
3763 send_args(r, lkb, ms);
3764
3765 ms->m_bastmode = cpu_to_le32(mode);
3766
3767 error = send_message(mh, ms, r->res_name, r->res_length);
3768 out:
3769 return error;
3770 }
3771
send_lookup(struct dlm_rsb * r,struct dlm_lkb * lkb)3772 static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb)
3773 {
3774 struct dlm_message *ms;
3775 struct dlm_mhandle *mh;
3776 int to_nodeid, error;
3777
3778 to_nodeid = dlm_dir_nodeid(r);
3779
3780 error = add_to_waiters(lkb, DLM_MSG_LOOKUP, to_nodeid);
3781 if (error)
3782 return error;
3783
3784 error = create_message(r, NULL, to_nodeid, DLM_MSG_LOOKUP, &ms, &mh);
3785 if (error)
3786 goto fail;
3787
3788 send_args(r, lkb, ms);
3789
3790 error = send_message(mh, ms, r->res_name, r->res_length);
3791 if (error)
3792 goto fail;
3793 return 0;
3794
3795 fail:
3796 remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY);
3797 return error;
3798 }
3799
send_remove(struct dlm_rsb * r)3800 static int send_remove(struct dlm_rsb *r)
3801 {
3802 struct dlm_message *ms;
3803 struct dlm_mhandle *mh;
3804 int to_nodeid, error;
3805
3806 to_nodeid = dlm_dir_nodeid(r);
3807
3808 error = create_message(r, NULL, to_nodeid, DLM_MSG_REMOVE, &ms, &mh);
3809 if (error)
3810 goto out;
3811
3812 memcpy(ms->m_extra, r->res_name, r->res_length);
3813 ms->m_hash = cpu_to_le32(r->res_hash);
3814
3815 error = send_message(mh, ms, r->res_name, r->res_length);
3816 out:
3817 return error;
3818 }
3819
send_common_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,int mstype,int rv)3820 static int send_common_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
3821 int mstype, int rv)
3822 {
3823 struct dlm_message *ms;
3824 struct dlm_mhandle *mh;
3825 int to_nodeid, error;
3826
3827 to_nodeid = lkb->lkb_nodeid;
3828
3829 error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh);
3830 if (error)
3831 goto out;
3832
3833 send_args(r, lkb, ms);
3834
3835 ms->m_result = cpu_to_le32(to_dlm_errno(rv));
3836
3837 error = send_message(mh, ms, r->res_name, r->res_length);
3838 out:
3839 return error;
3840 }
3841
send_request_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,int rv)3842 static int send_request_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
3843 {
3844 return send_common_reply(r, lkb, DLM_MSG_REQUEST_REPLY, rv);
3845 }
3846
send_convert_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,int rv)3847 static int send_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
3848 {
3849 return send_common_reply(r, lkb, DLM_MSG_CONVERT_REPLY, rv);
3850 }
3851
send_unlock_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,int rv)3852 static int send_unlock_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
3853 {
3854 return send_common_reply(r, lkb, DLM_MSG_UNLOCK_REPLY, rv);
3855 }
3856
send_cancel_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,int rv)3857 static int send_cancel_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
3858 {
3859 return send_common_reply(r, lkb, DLM_MSG_CANCEL_REPLY, rv);
3860 }
3861
send_lookup_reply(struct dlm_ls * ls,struct dlm_message * ms_in,int ret_nodeid,int rv)3862 static int send_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms_in,
3863 int ret_nodeid, int rv)
3864 {
3865 struct dlm_rsb *r = &ls->ls_stub_rsb;
3866 struct dlm_message *ms;
3867 struct dlm_mhandle *mh;
3868 int error, nodeid = le32_to_cpu(ms_in->m_header.h_nodeid);
3869
3870 error = create_message(r, NULL, nodeid, DLM_MSG_LOOKUP_REPLY, &ms, &mh);
3871 if (error)
3872 goto out;
3873
3874 ms->m_lkid = ms_in->m_lkid;
3875 ms->m_result = cpu_to_le32(to_dlm_errno(rv));
3876 ms->m_nodeid = cpu_to_le32(ret_nodeid);
3877
3878 error = send_message(mh, ms, ms_in->m_extra, receive_extralen(ms_in));
3879 out:
3880 return error;
3881 }
3882
3883 /* which args we save from a received message depends heavily on the type
3884 of message, unlike the send side where we can safely send everything about
3885 the lkb for any type of message */
3886
receive_flags(struct dlm_lkb * lkb,struct dlm_message * ms)3887 static void receive_flags(struct dlm_lkb *lkb, struct dlm_message *ms)
3888 {
3889 lkb->lkb_exflags = le32_to_cpu(ms->m_exflags);
3890 lkb->lkb_sbflags = le32_to_cpu(ms->m_sbflags);
3891 lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) |
3892 (le32_to_cpu(ms->m_flags) & 0x0000FFFF);
3893 }
3894
receive_flags_reply(struct dlm_lkb * lkb,struct dlm_message * ms)3895 static void receive_flags_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
3896 {
3897 if (ms->m_flags == cpu_to_le32(DLM_IFL_STUB_MS))
3898 return;
3899
3900 lkb->lkb_sbflags = le32_to_cpu(ms->m_sbflags);
3901 lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) |
3902 (le32_to_cpu(ms->m_flags) & 0x0000FFFF);
3903 }
3904
receive_extralen(struct dlm_message * ms)3905 static int receive_extralen(struct dlm_message *ms)
3906 {
3907 return (le16_to_cpu(ms->m_header.h_length) -
3908 sizeof(struct dlm_message));
3909 }
3910
receive_lvb(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_message * ms)3911 static int receive_lvb(struct dlm_ls *ls, struct dlm_lkb *lkb,
3912 struct dlm_message *ms)
3913 {
3914 int len;
3915
3916 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
3917 if (!lkb->lkb_lvbptr)
3918 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
3919 if (!lkb->lkb_lvbptr)
3920 return -ENOMEM;
3921 len = receive_extralen(ms);
3922 if (len > ls->ls_lvblen)
3923 len = ls->ls_lvblen;
3924 memcpy(lkb->lkb_lvbptr, ms->m_extra, len);
3925 }
3926 return 0;
3927 }
3928
fake_bastfn(void * astparam,int mode)3929 static void fake_bastfn(void *astparam, int mode)
3930 {
3931 log_print("fake_bastfn should not be called");
3932 }
3933
fake_astfn(void * astparam)3934 static void fake_astfn(void *astparam)
3935 {
3936 log_print("fake_astfn should not be called");
3937 }
3938
receive_request_args(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_message * ms)3939 static int receive_request_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
3940 struct dlm_message *ms)
3941 {
3942 lkb->lkb_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
3943 lkb->lkb_ownpid = le32_to_cpu(ms->m_pid);
3944 lkb->lkb_remid = le32_to_cpu(ms->m_lkid);
3945 lkb->lkb_grmode = DLM_LOCK_IV;
3946 lkb->lkb_rqmode = le32_to_cpu(ms->m_rqmode);
3947
3948 lkb->lkb_bastfn = (ms->m_asts & cpu_to_le32(DLM_CB_BAST)) ? &fake_bastfn : NULL;
3949 lkb->lkb_astfn = (ms->m_asts & cpu_to_le32(DLM_CB_CAST)) ? &fake_astfn : NULL;
3950
3951 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
3952 /* lkb was just created so there won't be an lvb yet */
3953 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
3954 if (!lkb->lkb_lvbptr)
3955 return -ENOMEM;
3956 }
3957
3958 return 0;
3959 }
3960
receive_convert_args(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_message * ms)3961 static int receive_convert_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
3962 struct dlm_message *ms)
3963 {
3964 if (lkb->lkb_status != DLM_LKSTS_GRANTED)
3965 return -EBUSY;
3966
3967 if (receive_lvb(ls, lkb, ms))
3968 return -ENOMEM;
3969
3970 lkb->lkb_rqmode = le32_to_cpu(ms->m_rqmode);
3971 lkb->lkb_lvbseq = le32_to_cpu(ms->m_lvbseq);
3972
3973 return 0;
3974 }
3975
receive_unlock_args(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_message * ms)3976 static int receive_unlock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
3977 struct dlm_message *ms)
3978 {
3979 if (receive_lvb(ls, lkb, ms))
3980 return -ENOMEM;
3981 return 0;
3982 }
3983
3984 /* We fill in the stub-lkb fields with the info that send_xxxx_reply()
3985 uses to send a reply and that the remote end uses to process the reply. */
3986
setup_stub_lkb(struct dlm_ls * ls,struct dlm_message * ms)3987 static void setup_stub_lkb(struct dlm_ls *ls, struct dlm_message *ms)
3988 {
3989 struct dlm_lkb *lkb = &ls->ls_stub_lkb;
3990 lkb->lkb_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
3991 lkb->lkb_remid = le32_to_cpu(ms->m_lkid);
3992 }
3993
3994 /* This is called after the rsb is locked so that we can safely inspect
3995 fields in the lkb. */
3996
validate_message(struct dlm_lkb * lkb,struct dlm_message * ms)3997 static int validate_message(struct dlm_lkb *lkb, struct dlm_message *ms)
3998 {
3999 int from = le32_to_cpu(ms->m_header.h_nodeid);
4000 int error = 0;
4001
4002 /* currently mixing of user/kernel locks are not supported */
4003 if (ms->m_flags & cpu_to_le32(DLM_IFL_USER) &&
4004 ~lkb->lkb_flags & DLM_IFL_USER) {
4005 log_error(lkb->lkb_resource->res_ls,
4006 "got user dlm message for a kernel lock");
4007 error = -EINVAL;
4008 goto out;
4009 }
4010
4011 switch (ms->m_type) {
4012 case cpu_to_le32(DLM_MSG_CONVERT):
4013 case cpu_to_le32(DLM_MSG_UNLOCK):
4014 case cpu_to_le32(DLM_MSG_CANCEL):
4015 if (!is_master_copy(lkb) || lkb->lkb_nodeid != from)
4016 error = -EINVAL;
4017 break;
4018
4019 case cpu_to_le32(DLM_MSG_CONVERT_REPLY):
4020 case cpu_to_le32(DLM_MSG_UNLOCK_REPLY):
4021 case cpu_to_le32(DLM_MSG_CANCEL_REPLY):
4022 case cpu_to_le32(DLM_MSG_GRANT):
4023 case cpu_to_le32(DLM_MSG_BAST):
4024 if (!is_process_copy(lkb) || lkb->lkb_nodeid != from)
4025 error = -EINVAL;
4026 break;
4027
4028 case cpu_to_le32(DLM_MSG_REQUEST_REPLY):
4029 if (!is_process_copy(lkb))
4030 error = -EINVAL;
4031 else if (lkb->lkb_nodeid != -1 && lkb->lkb_nodeid != from)
4032 error = -EINVAL;
4033 break;
4034
4035 default:
4036 error = -EINVAL;
4037 }
4038
4039 out:
4040 if (error)
4041 log_error(lkb->lkb_resource->res_ls,
4042 "ignore invalid message %d from %d %x %x %x %d",
4043 le32_to_cpu(ms->m_type), from, lkb->lkb_id,
4044 lkb->lkb_remid, lkb->lkb_flags, lkb->lkb_nodeid);
4045 return error;
4046 }
4047
receive_request(struct dlm_ls * ls,struct dlm_message * ms)4048 static int receive_request(struct dlm_ls *ls, struct dlm_message *ms)
4049 {
4050 struct dlm_lkb *lkb;
4051 struct dlm_rsb *r;
4052 int from_nodeid;
4053 int error, namelen = 0;
4054
4055 from_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
4056
4057 error = create_lkb(ls, &lkb);
4058 if (error)
4059 goto fail;
4060
4061 receive_flags(lkb, ms);
4062 lkb->lkb_flags |= DLM_IFL_MSTCPY;
4063 error = receive_request_args(ls, lkb, ms);
4064 if (error) {
4065 __put_lkb(ls, lkb);
4066 goto fail;
4067 }
4068
4069 /* The dir node is the authority on whether we are the master
4070 for this rsb or not, so if the master sends us a request, we should
4071 recreate the rsb if we've destroyed it. This race happens when we
4072 send a remove message to the dir node at the same time that the dir
4073 node sends us a request for the rsb. */
4074
4075 namelen = receive_extralen(ms);
4076
4077 error = find_rsb(ls, ms->m_extra, namelen, from_nodeid,
4078 R_RECEIVE_REQUEST, &r);
4079 if (error) {
4080 __put_lkb(ls, lkb);
4081 goto fail;
4082 }
4083
4084 lock_rsb(r);
4085
4086 if (r->res_master_nodeid != dlm_our_nodeid()) {
4087 error = validate_master_nodeid(ls, r, from_nodeid);
4088 if (error) {
4089 unlock_rsb(r);
4090 put_rsb(r);
4091 __put_lkb(ls, lkb);
4092 goto fail;
4093 }
4094 }
4095
4096 attach_lkb(r, lkb);
4097 error = do_request(r, lkb);
4098 send_request_reply(r, lkb, error);
4099 do_request_effects(r, lkb, error);
4100
4101 unlock_rsb(r);
4102 put_rsb(r);
4103
4104 if (error == -EINPROGRESS)
4105 error = 0;
4106 if (error)
4107 dlm_put_lkb(lkb);
4108 return 0;
4109
4110 fail:
4111 /* TODO: instead of returning ENOTBLK, add the lkb to res_lookup
4112 and do this receive_request again from process_lookup_list once
4113 we get the lookup reply. This would avoid a many repeated
4114 ENOTBLK request failures when the lookup reply designating us
4115 as master is delayed. */
4116
4117 if (error != -ENOTBLK) {
4118 log_limit(ls, "receive_request %x from %d %d",
4119 le32_to_cpu(ms->m_lkid), from_nodeid, error);
4120 }
4121
4122 setup_stub_lkb(ls, ms);
4123 send_request_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
4124 return error;
4125 }
4126
receive_convert(struct dlm_ls * ls,struct dlm_message * ms)4127 static int receive_convert(struct dlm_ls *ls, struct dlm_message *ms)
4128 {
4129 struct dlm_lkb *lkb;
4130 struct dlm_rsb *r;
4131 int error, reply = 1;
4132
4133 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4134 if (error)
4135 goto fail;
4136
4137 if (lkb->lkb_remid != le32_to_cpu(ms->m_lkid)) {
4138 log_error(ls, "receive_convert %x remid %x recover_seq %llu "
4139 "remote %d %x", lkb->lkb_id, lkb->lkb_remid,
4140 (unsigned long long)lkb->lkb_recover_seq,
4141 le32_to_cpu(ms->m_header.h_nodeid),
4142 le32_to_cpu(ms->m_lkid));
4143 error = -ENOENT;
4144 dlm_put_lkb(lkb);
4145 goto fail;
4146 }
4147
4148 r = lkb->lkb_resource;
4149
4150 hold_rsb(r);
4151 lock_rsb(r);
4152
4153 error = validate_message(lkb, ms);
4154 if (error)
4155 goto out;
4156
4157 receive_flags(lkb, ms);
4158
4159 error = receive_convert_args(ls, lkb, ms);
4160 if (error) {
4161 send_convert_reply(r, lkb, error);
4162 goto out;
4163 }
4164
4165 reply = !down_conversion(lkb);
4166
4167 error = do_convert(r, lkb);
4168 if (reply)
4169 send_convert_reply(r, lkb, error);
4170 do_convert_effects(r, lkb, error);
4171 out:
4172 unlock_rsb(r);
4173 put_rsb(r);
4174 dlm_put_lkb(lkb);
4175 return 0;
4176
4177 fail:
4178 setup_stub_lkb(ls, ms);
4179 send_convert_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
4180 return error;
4181 }
4182
receive_unlock(struct dlm_ls * ls,struct dlm_message * ms)4183 static int receive_unlock(struct dlm_ls *ls, struct dlm_message *ms)
4184 {
4185 struct dlm_lkb *lkb;
4186 struct dlm_rsb *r;
4187 int error;
4188
4189 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4190 if (error)
4191 goto fail;
4192
4193 if (lkb->lkb_remid != le32_to_cpu(ms->m_lkid)) {
4194 log_error(ls, "receive_unlock %x remid %x remote %d %x",
4195 lkb->lkb_id, lkb->lkb_remid,
4196 le32_to_cpu(ms->m_header.h_nodeid),
4197 le32_to_cpu(ms->m_lkid));
4198 error = -ENOENT;
4199 dlm_put_lkb(lkb);
4200 goto fail;
4201 }
4202
4203 r = lkb->lkb_resource;
4204
4205 hold_rsb(r);
4206 lock_rsb(r);
4207
4208 error = validate_message(lkb, ms);
4209 if (error)
4210 goto out;
4211
4212 receive_flags(lkb, ms);
4213
4214 error = receive_unlock_args(ls, lkb, ms);
4215 if (error) {
4216 send_unlock_reply(r, lkb, error);
4217 goto out;
4218 }
4219
4220 error = do_unlock(r, lkb);
4221 send_unlock_reply(r, lkb, error);
4222 do_unlock_effects(r, lkb, error);
4223 out:
4224 unlock_rsb(r);
4225 put_rsb(r);
4226 dlm_put_lkb(lkb);
4227 return 0;
4228
4229 fail:
4230 setup_stub_lkb(ls, ms);
4231 send_unlock_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
4232 return error;
4233 }
4234
receive_cancel(struct dlm_ls * ls,struct dlm_message * ms)4235 static int receive_cancel(struct dlm_ls *ls, struct dlm_message *ms)
4236 {
4237 struct dlm_lkb *lkb;
4238 struct dlm_rsb *r;
4239 int error;
4240
4241 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4242 if (error)
4243 goto fail;
4244
4245 receive_flags(lkb, ms);
4246
4247 r = lkb->lkb_resource;
4248
4249 hold_rsb(r);
4250 lock_rsb(r);
4251
4252 error = validate_message(lkb, ms);
4253 if (error)
4254 goto out;
4255
4256 error = do_cancel(r, lkb);
4257 send_cancel_reply(r, lkb, error);
4258 do_cancel_effects(r, lkb, error);
4259 out:
4260 unlock_rsb(r);
4261 put_rsb(r);
4262 dlm_put_lkb(lkb);
4263 return 0;
4264
4265 fail:
4266 setup_stub_lkb(ls, ms);
4267 send_cancel_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
4268 return error;
4269 }
4270
receive_grant(struct dlm_ls * ls,struct dlm_message * ms)4271 static int receive_grant(struct dlm_ls *ls, struct dlm_message *ms)
4272 {
4273 struct dlm_lkb *lkb;
4274 struct dlm_rsb *r;
4275 int error;
4276
4277 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4278 if (error)
4279 return error;
4280
4281 r = lkb->lkb_resource;
4282
4283 hold_rsb(r);
4284 lock_rsb(r);
4285
4286 error = validate_message(lkb, ms);
4287 if (error)
4288 goto out;
4289
4290 receive_flags_reply(lkb, ms);
4291 if (is_altmode(lkb))
4292 munge_altmode(lkb, ms);
4293 grant_lock_pc(r, lkb, ms);
4294 queue_cast(r, lkb, 0);
4295 out:
4296 unlock_rsb(r);
4297 put_rsb(r);
4298 dlm_put_lkb(lkb);
4299 return 0;
4300 }
4301
receive_bast(struct dlm_ls * ls,struct dlm_message * ms)4302 static int receive_bast(struct dlm_ls *ls, struct dlm_message *ms)
4303 {
4304 struct dlm_lkb *lkb;
4305 struct dlm_rsb *r;
4306 int error;
4307
4308 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4309 if (error)
4310 return error;
4311
4312 r = lkb->lkb_resource;
4313
4314 hold_rsb(r);
4315 lock_rsb(r);
4316
4317 error = validate_message(lkb, ms);
4318 if (error)
4319 goto out;
4320
4321 queue_bast(r, lkb, le32_to_cpu(ms->m_bastmode));
4322 lkb->lkb_highbast = le32_to_cpu(ms->m_bastmode);
4323 out:
4324 unlock_rsb(r);
4325 put_rsb(r);
4326 dlm_put_lkb(lkb);
4327 return 0;
4328 }
4329
receive_lookup(struct dlm_ls * ls,struct dlm_message * ms)4330 static void receive_lookup(struct dlm_ls *ls, struct dlm_message *ms)
4331 {
4332 int len, error, ret_nodeid, from_nodeid, our_nodeid;
4333
4334 from_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
4335 our_nodeid = dlm_our_nodeid();
4336
4337 len = receive_extralen(ms);
4338
4339 error = dlm_master_lookup(ls, from_nodeid, ms->m_extra, len, 0,
4340 &ret_nodeid, NULL);
4341
4342 /* Optimization: we're master so treat lookup as a request */
4343 if (!error && ret_nodeid == our_nodeid) {
4344 receive_request(ls, ms);
4345 return;
4346 }
4347 send_lookup_reply(ls, ms, ret_nodeid, error);
4348 }
4349
receive_remove(struct dlm_ls * ls,struct dlm_message * ms)4350 static void receive_remove(struct dlm_ls *ls, struct dlm_message *ms)
4351 {
4352 char name[DLM_RESNAME_MAXLEN+1];
4353 struct dlm_rsb *r;
4354 uint32_t hash, b;
4355 int rv, len, dir_nodeid, from_nodeid;
4356
4357 from_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
4358
4359 len = receive_extralen(ms);
4360
4361 if (len > DLM_RESNAME_MAXLEN) {
4362 log_error(ls, "receive_remove from %d bad len %d",
4363 from_nodeid, len);
4364 return;
4365 }
4366
4367 dir_nodeid = dlm_hash2nodeid(ls, le32_to_cpu(ms->m_hash));
4368 if (dir_nodeid != dlm_our_nodeid()) {
4369 log_error(ls, "receive_remove from %d bad nodeid %d",
4370 from_nodeid, dir_nodeid);
4371 return;
4372 }
4373
4374 /* Look for name on rsbtbl.toss, if it's there, kill it.
4375 If it's on rsbtbl.keep, it's being used, and we should ignore this
4376 message. This is an expected race between the dir node sending a
4377 request to the master node at the same time as the master node sends
4378 a remove to the dir node. The resolution to that race is for the
4379 dir node to ignore the remove message, and the master node to
4380 recreate the master rsb when it gets a request from the dir node for
4381 an rsb it doesn't have. */
4382
4383 memset(name, 0, sizeof(name));
4384 memcpy(name, ms->m_extra, len);
4385
4386 hash = jhash(name, len, 0);
4387 b = hash & (ls->ls_rsbtbl_size - 1);
4388
4389 spin_lock(&ls->ls_rsbtbl[b].lock);
4390
4391 rv = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].toss, name, len, &r);
4392 if (rv) {
4393 /* verify the rsb is on keep list per comment above */
4394 rv = dlm_search_rsb_tree(&ls->ls_rsbtbl[b].keep, name, len, &r);
4395 if (rv) {
4396 /* should not happen */
4397 log_error(ls, "receive_remove from %d not found %s",
4398 from_nodeid, name);
4399 spin_unlock(&ls->ls_rsbtbl[b].lock);
4400 return;
4401 }
4402 if (r->res_master_nodeid != from_nodeid) {
4403 /* should not happen */
4404 log_error(ls, "receive_remove keep from %d master %d",
4405 from_nodeid, r->res_master_nodeid);
4406 dlm_print_rsb(r);
4407 spin_unlock(&ls->ls_rsbtbl[b].lock);
4408 return;
4409 }
4410
4411 log_debug(ls, "receive_remove from %d master %d first %x %s",
4412 from_nodeid, r->res_master_nodeid, r->res_first_lkid,
4413 name);
4414 spin_unlock(&ls->ls_rsbtbl[b].lock);
4415 return;
4416 }
4417
4418 if (r->res_master_nodeid != from_nodeid) {
4419 log_error(ls, "receive_remove toss from %d master %d",
4420 from_nodeid, r->res_master_nodeid);
4421 dlm_print_rsb(r);
4422 spin_unlock(&ls->ls_rsbtbl[b].lock);
4423 return;
4424 }
4425
4426 if (kref_put(&r->res_ref, kill_rsb)) {
4427 rb_erase(&r->res_hashnode, &ls->ls_rsbtbl[b].toss);
4428 spin_unlock(&ls->ls_rsbtbl[b].lock);
4429 dlm_free_rsb(r);
4430 } else {
4431 log_error(ls, "receive_remove from %d rsb ref error",
4432 from_nodeid);
4433 dlm_print_rsb(r);
4434 spin_unlock(&ls->ls_rsbtbl[b].lock);
4435 }
4436 }
4437
receive_purge(struct dlm_ls * ls,struct dlm_message * ms)4438 static void receive_purge(struct dlm_ls *ls, struct dlm_message *ms)
4439 {
4440 do_purge(ls, le32_to_cpu(ms->m_nodeid), le32_to_cpu(ms->m_pid));
4441 }
4442
receive_request_reply(struct dlm_ls * ls,struct dlm_message * ms)4443 static int receive_request_reply(struct dlm_ls *ls, struct dlm_message *ms)
4444 {
4445 struct dlm_lkb *lkb;
4446 struct dlm_rsb *r;
4447 int error, mstype, result;
4448 int from_nodeid = le32_to_cpu(ms->m_header.h_nodeid);
4449
4450 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4451 if (error)
4452 return error;
4453
4454 r = lkb->lkb_resource;
4455 hold_rsb(r);
4456 lock_rsb(r);
4457
4458 error = validate_message(lkb, ms);
4459 if (error)
4460 goto out;
4461
4462 mstype = lkb->lkb_wait_type;
4463 error = remove_from_waiters(lkb, DLM_MSG_REQUEST_REPLY);
4464 if (error) {
4465 log_error(ls, "receive_request_reply %x remote %d %x result %d",
4466 lkb->lkb_id, from_nodeid, le32_to_cpu(ms->m_lkid),
4467 from_dlm_errno(le32_to_cpu(ms->m_result)));
4468 dlm_dump_rsb(r);
4469 goto out;
4470 }
4471
4472 /* Optimization: the dir node was also the master, so it took our
4473 lookup as a request and sent request reply instead of lookup reply */
4474 if (mstype == DLM_MSG_LOOKUP) {
4475 r->res_master_nodeid = from_nodeid;
4476 r->res_nodeid = from_nodeid;
4477 lkb->lkb_nodeid = from_nodeid;
4478 }
4479
4480 /* this is the value returned from do_request() on the master */
4481 result = from_dlm_errno(le32_to_cpu(ms->m_result));
4482
4483 switch (result) {
4484 case -EAGAIN:
4485 /* request would block (be queued) on remote master */
4486 queue_cast(r, lkb, -EAGAIN);
4487 confirm_master(r, -EAGAIN);
4488 unhold_lkb(lkb); /* undoes create_lkb() */
4489 break;
4490
4491 case -EINPROGRESS:
4492 case 0:
4493 /* request was queued or granted on remote master */
4494 receive_flags_reply(lkb, ms);
4495 lkb->lkb_remid = le32_to_cpu(ms->m_lkid);
4496 if (is_altmode(lkb))
4497 munge_altmode(lkb, ms);
4498 if (result) {
4499 add_lkb(r, lkb, DLM_LKSTS_WAITING);
4500 add_timeout(lkb);
4501 } else {
4502 grant_lock_pc(r, lkb, ms);
4503 queue_cast(r, lkb, 0);
4504 }
4505 confirm_master(r, result);
4506 break;
4507
4508 case -EBADR:
4509 case -ENOTBLK:
4510 /* find_rsb failed to find rsb or rsb wasn't master */
4511 log_limit(ls, "receive_request_reply %x from %d %d "
4512 "master %d dir %d first %x %s", lkb->lkb_id,
4513 from_nodeid, result, r->res_master_nodeid,
4514 r->res_dir_nodeid, r->res_first_lkid, r->res_name);
4515
4516 if (r->res_dir_nodeid != dlm_our_nodeid() &&
4517 r->res_master_nodeid != dlm_our_nodeid()) {
4518 /* cause _request_lock->set_master->send_lookup */
4519 r->res_master_nodeid = 0;
4520 r->res_nodeid = -1;
4521 lkb->lkb_nodeid = -1;
4522 }
4523
4524 if (is_overlap(lkb)) {
4525 /* we'll ignore error in cancel/unlock reply */
4526 queue_cast_overlap(r, lkb);
4527 confirm_master(r, result);
4528 unhold_lkb(lkb); /* undoes create_lkb() */
4529 } else {
4530 _request_lock(r, lkb);
4531
4532 if (r->res_master_nodeid == dlm_our_nodeid())
4533 confirm_master(r, 0);
4534 }
4535 break;
4536
4537 default:
4538 log_error(ls, "receive_request_reply %x error %d",
4539 lkb->lkb_id, result);
4540 }
4541
4542 if (is_overlap_unlock(lkb) && (result == 0 || result == -EINPROGRESS)) {
4543 log_debug(ls, "receive_request_reply %x result %d unlock",
4544 lkb->lkb_id, result);
4545 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
4546 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
4547 send_unlock(r, lkb);
4548 } else if (is_overlap_cancel(lkb) && (result == -EINPROGRESS)) {
4549 log_debug(ls, "receive_request_reply %x cancel", lkb->lkb_id);
4550 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
4551 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
4552 send_cancel(r, lkb);
4553 } else {
4554 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
4555 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
4556 }
4557 out:
4558 unlock_rsb(r);
4559 put_rsb(r);
4560 dlm_put_lkb(lkb);
4561 return 0;
4562 }
4563
__receive_convert_reply(struct dlm_rsb * r,struct dlm_lkb * lkb,struct dlm_message * ms)4564 static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
4565 struct dlm_message *ms)
4566 {
4567 /* this is the value returned from do_convert() on the master */
4568 switch (from_dlm_errno(le32_to_cpu(ms->m_result))) {
4569 case -EAGAIN:
4570 /* convert would block (be queued) on remote master */
4571 queue_cast(r, lkb, -EAGAIN);
4572 break;
4573
4574 case -EDEADLK:
4575 receive_flags_reply(lkb, ms);
4576 revert_lock_pc(r, lkb);
4577 queue_cast(r, lkb, -EDEADLK);
4578 break;
4579
4580 case -EINPROGRESS:
4581 /* convert was queued on remote master */
4582 receive_flags_reply(lkb, ms);
4583 if (is_demoted(lkb))
4584 munge_demoted(lkb);
4585 del_lkb(r, lkb);
4586 add_lkb(r, lkb, DLM_LKSTS_CONVERT);
4587 add_timeout(lkb);
4588 break;
4589
4590 case 0:
4591 /* convert was granted on remote master */
4592 receive_flags_reply(lkb, ms);
4593 if (is_demoted(lkb))
4594 munge_demoted(lkb);
4595 grant_lock_pc(r, lkb, ms);
4596 queue_cast(r, lkb, 0);
4597 break;
4598
4599 default:
4600 log_error(r->res_ls, "receive_convert_reply %x remote %d %x %d",
4601 lkb->lkb_id, le32_to_cpu(ms->m_header.h_nodeid),
4602 le32_to_cpu(ms->m_lkid),
4603 from_dlm_errno(le32_to_cpu(ms->m_result)));
4604 dlm_print_rsb(r);
4605 dlm_print_lkb(lkb);
4606 }
4607 }
4608
_receive_convert_reply(struct dlm_lkb * lkb,struct dlm_message * ms)4609 static void _receive_convert_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
4610 {
4611 struct dlm_rsb *r = lkb->lkb_resource;
4612 int error;
4613
4614 hold_rsb(r);
4615 lock_rsb(r);
4616
4617 error = validate_message(lkb, ms);
4618 if (error)
4619 goto out;
4620
4621 /* stub reply can happen with waiters_mutex held */
4622 error = remove_from_waiters_ms(lkb, ms);
4623 if (error)
4624 goto out;
4625
4626 __receive_convert_reply(r, lkb, ms);
4627 out:
4628 unlock_rsb(r);
4629 put_rsb(r);
4630 }
4631
receive_convert_reply(struct dlm_ls * ls,struct dlm_message * ms)4632 static int receive_convert_reply(struct dlm_ls *ls, struct dlm_message *ms)
4633 {
4634 struct dlm_lkb *lkb;
4635 int error;
4636
4637 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4638 if (error)
4639 return error;
4640
4641 _receive_convert_reply(lkb, ms);
4642 dlm_put_lkb(lkb);
4643 return 0;
4644 }
4645
_receive_unlock_reply(struct dlm_lkb * lkb,struct dlm_message * ms)4646 static void _receive_unlock_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
4647 {
4648 struct dlm_rsb *r = lkb->lkb_resource;
4649 int error;
4650
4651 hold_rsb(r);
4652 lock_rsb(r);
4653
4654 error = validate_message(lkb, ms);
4655 if (error)
4656 goto out;
4657
4658 /* stub reply can happen with waiters_mutex held */
4659 error = remove_from_waiters_ms(lkb, ms);
4660 if (error)
4661 goto out;
4662
4663 /* this is the value returned from do_unlock() on the master */
4664
4665 switch (from_dlm_errno(le32_to_cpu(ms->m_result))) {
4666 case -DLM_EUNLOCK:
4667 receive_flags_reply(lkb, ms);
4668 remove_lock_pc(r, lkb);
4669 queue_cast(r, lkb, -DLM_EUNLOCK);
4670 break;
4671 case -ENOENT:
4672 break;
4673 default:
4674 log_error(r->res_ls, "receive_unlock_reply %x error %d",
4675 lkb->lkb_id, from_dlm_errno(le32_to_cpu(ms->m_result)));
4676 }
4677 out:
4678 unlock_rsb(r);
4679 put_rsb(r);
4680 }
4681
receive_unlock_reply(struct dlm_ls * ls,struct dlm_message * ms)4682 static int receive_unlock_reply(struct dlm_ls *ls, struct dlm_message *ms)
4683 {
4684 struct dlm_lkb *lkb;
4685 int error;
4686
4687 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4688 if (error)
4689 return error;
4690
4691 _receive_unlock_reply(lkb, ms);
4692 dlm_put_lkb(lkb);
4693 return 0;
4694 }
4695
_receive_cancel_reply(struct dlm_lkb * lkb,struct dlm_message * ms)4696 static void _receive_cancel_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
4697 {
4698 struct dlm_rsb *r = lkb->lkb_resource;
4699 int error;
4700
4701 hold_rsb(r);
4702 lock_rsb(r);
4703
4704 error = validate_message(lkb, ms);
4705 if (error)
4706 goto out;
4707
4708 /* stub reply can happen with waiters_mutex held */
4709 error = remove_from_waiters_ms(lkb, ms);
4710 if (error)
4711 goto out;
4712
4713 /* this is the value returned from do_cancel() on the master */
4714
4715 switch (from_dlm_errno(le32_to_cpu(ms->m_result))) {
4716 case -DLM_ECANCEL:
4717 receive_flags_reply(lkb, ms);
4718 revert_lock_pc(r, lkb);
4719 queue_cast(r, lkb, -DLM_ECANCEL);
4720 break;
4721 case 0:
4722 break;
4723 default:
4724 log_error(r->res_ls, "receive_cancel_reply %x error %d",
4725 lkb->lkb_id,
4726 from_dlm_errno(le32_to_cpu(ms->m_result)));
4727 }
4728 out:
4729 unlock_rsb(r);
4730 put_rsb(r);
4731 }
4732
receive_cancel_reply(struct dlm_ls * ls,struct dlm_message * ms)4733 static int receive_cancel_reply(struct dlm_ls *ls, struct dlm_message *ms)
4734 {
4735 struct dlm_lkb *lkb;
4736 int error;
4737
4738 error = find_lkb(ls, le32_to_cpu(ms->m_remid), &lkb);
4739 if (error)
4740 return error;
4741
4742 _receive_cancel_reply(lkb, ms);
4743 dlm_put_lkb(lkb);
4744 return 0;
4745 }
4746
receive_lookup_reply(struct dlm_ls * ls,struct dlm_message * ms)4747 static void receive_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms)
4748 {
4749 struct dlm_lkb *lkb;
4750 struct dlm_rsb *r;
4751 int error, ret_nodeid;
4752 int do_lookup_list = 0;
4753
4754 error = find_lkb(ls, le32_to_cpu(ms->m_lkid), &lkb);
4755 if (error) {
4756 log_error(ls, "%s no lkid %x", __func__,
4757 le32_to_cpu(ms->m_lkid));
4758 return;
4759 }
4760
4761 /* ms->m_result is the value returned by dlm_master_lookup on dir node
4762 FIXME: will a non-zero error ever be returned? */
4763
4764 r = lkb->lkb_resource;
4765 hold_rsb(r);
4766 lock_rsb(r);
4767
4768 error = remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY);
4769 if (error)
4770 goto out;
4771
4772 ret_nodeid = le32_to_cpu(ms->m_nodeid);
4773
4774 /* We sometimes receive a request from the dir node for this
4775 rsb before we've received the dir node's loookup_reply for it.
4776 The request from the dir node implies we're the master, so we set
4777 ourself as master in receive_request_reply, and verify here that
4778 we are indeed the master. */
4779
4780 if (r->res_master_nodeid && (r->res_master_nodeid != ret_nodeid)) {
4781 /* This should never happen */
4782 log_error(ls, "receive_lookup_reply %x from %d ret %d "
4783 "master %d dir %d our %d first %x %s",
4784 lkb->lkb_id, le32_to_cpu(ms->m_header.h_nodeid),
4785 ret_nodeid, r->res_master_nodeid, r->res_dir_nodeid,
4786 dlm_our_nodeid(), r->res_first_lkid, r->res_name);
4787 }
4788
4789 if (ret_nodeid == dlm_our_nodeid()) {
4790 r->res_master_nodeid = ret_nodeid;
4791 r->res_nodeid = 0;
4792 do_lookup_list = 1;
4793 r->res_first_lkid = 0;
4794 } else if (ret_nodeid == -1) {
4795 /* the remote node doesn't believe it's the dir node */
4796 log_error(ls, "receive_lookup_reply %x from %d bad ret_nodeid",
4797 lkb->lkb_id, le32_to_cpu(ms->m_header.h_nodeid));
4798 r->res_master_nodeid = 0;
4799 r->res_nodeid = -1;
4800 lkb->lkb_nodeid = -1;
4801 } else {
4802 /* set_master() will set lkb_nodeid from r */
4803 r->res_master_nodeid = ret_nodeid;
4804 r->res_nodeid = ret_nodeid;
4805 }
4806
4807 if (is_overlap(lkb)) {
4808 log_debug(ls, "receive_lookup_reply %x unlock %x",
4809 lkb->lkb_id, lkb->lkb_flags);
4810 queue_cast_overlap(r, lkb);
4811 unhold_lkb(lkb); /* undoes create_lkb() */
4812 goto out_list;
4813 }
4814
4815 _request_lock(r, lkb);
4816
4817 out_list:
4818 if (do_lookup_list)
4819 process_lookup_list(r);
4820 out:
4821 unlock_rsb(r);
4822 put_rsb(r);
4823 dlm_put_lkb(lkb);
4824 }
4825
_receive_message(struct dlm_ls * ls,struct dlm_message * ms,uint32_t saved_seq)4826 static void _receive_message(struct dlm_ls *ls, struct dlm_message *ms,
4827 uint32_t saved_seq)
4828 {
4829 int error = 0, noent = 0;
4830
4831 if (!dlm_is_member(ls, le32_to_cpu(ms->m_header.h_nodeid))) {
4832 log_limit(ls, "receive %d from non-member %d %x %x %d",
4833 le32_to_cpu(ms->m_type),
4834 le32_to_cpu(ms->m_header.h_nodeid),
4835 le32_to_cpu(ms->m_lkid), le32_to_cpu(ms->m_remid),
4836 from_dlm_errno(le32_to_cpu(ms->m_result)));
4837 return;
4838 }
4839
4840 switch (ms->m_type) {
4841
4842 /* messages sent to a master node */
4843
4844 case cpu_to_le32(DLM_MSG_REQUEST):
4845 error = receive_request(ls, ms);
4846 break;
4847
4848 case cpu_to_le32(DLM_MSG_CONVERT):
4849 error = receive_convert(ls, ms);
4850 break;
4851
4852 case cpu_to_le32(DLM_MSG_UNLOCK):
4853 error = receive_unlock(ls, ms);
4854 break;
4855
4856 case cpu_to_le32(DLM_MSG_CANCEL):
4857 noent = 1;
4858 error = receive_cancel(ls, ms);
4859 break;
4860
4861 /* messages sent from a master node (replies to above) */
4862
4863 case cpu_to_le32(DLM_MSG_REQUEST_REPLY):
4864 error = receive_request_reply(ls, ms);
4865 break;
4866
4867 case cpu_to_le32(DLM_MSG_CONVERT_REPLY):
4868 error = receive_convert_reply(ls, ms);
4869 break;
4870
4871 case cpu_to_le32(DLM_MSG_UNLOCK_REPLY):
4872 error = receive_unlock_reply(ls, ms);
4873 break;
4874
4875 case cpu_to_le32(DLM_MSG_CANCEL_REPLY):
4876 error = receive_cancel_reply(ls, ms);
4877 break;
4878
4879 /* messages sent from a master node (only two types of async msg) */
4880
4881 case cpu_to_le32(DLM_MSG_GRANT):
4882 noent = 1;
4883 error = receive_grant(ls, ms);
4884 break;
4885
4886 case cpu_to_le32(DLM_MSG_BAST):
4887 noent = 1;
4888 error = receive_bast(ls, ms);
4889 break;
4890
4891 /* messages sent to a dir node */
4892
4893 case cpu_to_le32(DLM_MSG_LOOKUP):
4894 receive_lookup(ls, ms);
4895 break;
4896
4897 case cpu_to_le32(DLM_MSG_REMOVE):
4898 receive_remove(ls, ms);
4899 break;
4900
4901 /* messages sent from a dir node (remove has no reply) */
4902
4903 case cpu_to_le32(DLM_MSG_LOOKUP_REPLY):
4904 receive_lookup_reply(ls, ms);
4905 break;
4906
4907 /* other messages */
4908
4909 case cpu_to_le32(DLM_MSG_PURGE):
4910 receive_purge(ls, ms);
4911 break;
4912
4913 default:
4914 log_error(ls, "unknown message type %d",
4915 le32_to_cpu(ms->m_type));
4916 }
4917
4918 /*
4919 * When checking for ENOENT, we're checking the result of
4920 * find_lkb(m_remid):
4921 *
4922 * The lock id referenced in the message wasn't found. This may
4923 * happen in normal usage for the async messages and cancel, so
4924 * only use log_debug for them.
4925 *
4926 * Some errors are expected and normal.
4927 */
4928
4929 if (error == -ENOENT && noent) {
4930 log_debug(ls, "receive %d no %x remote %d %x saved_seq %u",
4931 le32_to_cpu(ms->m_type), le32_to_cpu(ms->m_remid),
4932 le32_to_cpu(ms->m_header.h_nodeid),
4933 le32_to_cpu(ms->m_lkid), saved_seq);
4934 } else if (error == -ENOENT) {
4935 log_error(ls, "receive %d no %x remote %d %x saved_seq %u",
4936 le32_to_cpu(ms->m_type), le32_to_cpu(ms->m_remid),
4937 le32_to_cpu(ms->m_header.h_nodeid),
4938 le32_to_cpu(ms->m_lkid), saved_seq);
4939
4940 if (ms->m_type == cpu_to_le32(DLM_MSG_CONVERT))
4941 dlm_dump_rsb_hash(ls, le32_to_cpu(ms->m_hash));
4942 }
4943
4944 if (error == -EINVAL) {
4945 log_error(ls, "receive %d inval from %d lkid %x remid %x "
4946 "saved_seq %u",
4947 le32_to_cpu(ms->m_type),
4948 le32_to_cpu(ms->m_header.h_nodeid),
4949 le32_to_cpu(ms->m_lkid), le32_to_cpu(ms->m_remid),
4950 saved_seq);
4951 }
4952 }
4953
4954 /* If the lockspace is in recovery mode (locking stopped), then normal
4955 messages are saved on the requestqueue for processing after recovery is
4956 done. When not in recovery mode, we wait for dlm_recoverd to drain saved
4957 messages off the requestqueue before we process new ones. This occurs right
4958 after recovery completes when we transition from saving all messages on
4959 requestqueue, to processing all the saved messages, to processing new
4960 messages as they arrive. */
4961
dlm_receive_message(struct dlm_ls * ls,struct dlm_message * ms,int nodeid)4962 static void dlm_receive_message(struct dlm_ls *ls, struct dlm_message *ms,
4963 int nodeid)
4964 {
4965 if (dlm_locking_stopped(ls)) {
4966 /* If we were a member of this lockspace, left, and rejoined,
4967 other nodes may still be sending us messages from the
4968 lockspace generation before we left. */
4969 if (!ls->ls_generation) {
4970 log_limit(ls, "receive %d from %d ignore old gen",
4971 le32_to_cpu(ms->m_type), nodeid);
4972 return;
4973 }
4974
4975 dlm_add_requestqueue(ls, nodeid, ms);
4976 } else {
4977 dlm_wait_requestqueue(ls);
4978 _receive_message(ls, ms, 0);
4979 }
4980 }
4981
4982 /* This is called by dlm_recoverd to process messages that were saved on
4983 the requestqueue. */
4984
dlm_receive_message_saved(struct dlm_ls * ls,struct dlm_message * ms,uint32_t saved_seq)4985 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms,
4986 uint32_t saved_seq)
4987 {
4988 _receive_message(ls, ms, saved_seq);
4989 }
4990
4991 /* This is called by the midcomms layer when something is received for
4992 the lockspace. It could be either a MSG (normal message sent as part of
4993 standard locking activity) or an RCOM (recovery message sent as part of
4994 lockspace recovery). */
4995
dlm_receive_buffer(union dlm_packet * p,int nodeid)4996 void dlm_receive_buffer(union dlm_packet *p, int nodeid)
4997 {
4998 struct dlm_header *hd = &p->header;
4999 struct dlm_ls *ls;
5000 int type = 0;
5001
5002 switch (hd->h_cmd) {
5003 case DLM_MSG:
5004 type = le32_to_cpu(p->message.m_type);
5005 break;
5006 case DLM_RCOM:
5007 type = le32_to_cpu(p->rcom.rc_type);
5008 break;
5009 default:
5010 log_print("invalid h_cmd %d from %u", hd->h_cmd, nodeid);
5011 return;
5012 }
5013
5014 if (le32_to_cpu(hd->h_nodeid) != nodeid) {
5015 log_print("invalid h_nodeid %d from %d lockspace %x",
5016 le32_to_cpu(hd->h_nodeid), nodeid,
5017 le32_to_cpu(hd->u.h_lockspace));
5018 return;
5019 }
5020
5021 ls = dlm_find_lockspace_global(le32_to_cpu(hd->u.h_lockspace));
5022 if (!ls) {
5023 if (dlm_config.ci_log_debug) {
5024 printk_ratelimited(KERN_DEBUG "dlm: invalid lockspace "
5025 "%u from %d cmd %d type %d\n",
5026 le32_to_cpu(hd->u.h_lockspace), nodeid,
5027 hd->h_cmd, type);
5028 }
5029
5030 if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS)
5031 dlm_send_ls_not_ready(nodeid, &p->rcom);
5032 return;
5033 }
5034
5035 /* this rwsem allows dlm_ls_stop() to wait for all dlm_recv threads to
5036 be inactive (in this ls) before transitioning to recovery mode */
5037
5038 down_read(&ls->ls_recv_active);
5039 if (hd->h_cmd == DLM_MSG)
5040 dlm_receive_message(ls, &p->message, nodeid);
5041 else if (hd->h_cmd == DLM_RCOM)
5042 dlm_receive_rcom(ls, &p->rcom, nodeid);
5043 else
5044 log_error(ls, "invalid h_cmd %d from %d lockspace %x",
5045 hd->h_cmd, nodeid, le32_to_cpu(hd->u.h_lockspace));
5046 up_read(&ls->ls_recv_active);
5047
5048 dlm_put_lockspace(ls);
5049 }
5050
recover_convert_waiter(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_message * ms_stub)5051 static void recover_convert_waiter(struct dlm_ls *ls, struct dlm_lkb *lkb,
5052 struct dlm_message *ms_stub)
5053 {
5054 if (middle_conversion(lkb)) {
5055 hold_lkb(lkb);
5056 memset(ms_stub, 0, sizeof(struct dlm_message));
5057 ms_stub->m_flags = cpu_to_le32(DLM_IFL_STUB_MS);
5058 ms_stub->m_type = cpu_to_le32(DLM_MSG_CONVERT_REPLY);
5059 ms_stub->m_result = cpu_to_le32(to_dlm_errno(-EINPROGRESS));
5060 ms_stub->m_header.h_nodeid = cpu_to_le32(lkb->lkb_nodeid);
5061 _receive_convert_reply(lkb, ms_stub);
5062
5063 /* Same special case as in receive_rcom_lock_args() */
5064 lkb->lkb_grmode = DLM_LOCK_IV;
5065 rsb_set_flag(lkb->lkb_resource, RSB_RECOVER_CONVERT);
5066 unhold_lkb(lkb);
5067
5068 } else if (lkb->lkb_rqmode >= lkb->lkb_grmode) {
5069 lkb->lkb_flags |= DLM_IFL_RESEND;
5070 }
5071
5072 /* lkb->lkb_rqmode < lkb->lkb_grmode shouldn't happen since down
5073 conversions are async; there's no reply from the remote master */
5074 }
5075
5076 /* A waiting lkb needs recovery if the master node has failed, or
5077 the master node is changing (only when no directory is used) */
5078
waiter_needs_recovery(struct dlm_ls * ls,struct dlm_lkb * lkb,int dir_nodeid)5079 static int waiter_needs_recovery(struct dlm_ls *ls, struct dlm_lkb *lkb,
5080 int dir_nodeid)
5081 {
5082 if (dlm_no_directory(ls))
5083 return 1;
5084
5085 if (dlm_is_removed(ls, lkb->lkb_wait_nodeid))
5086 return 1;
5087
5088 return 0;
5089 }
5090
5091 /* Recovery for locks that are waiting for replies from nodes that are now
5092 gone. We can just complete unlocks and cancels by faking a reply from the
5093 dead node. Requests and up-conversions we flag to be resent after
5094 recovery. Down-conversions can just be completed with a fake reply like
5095 unlocks. Conversions between PR and CW need special attention. */
5096
dlm_recover_waiters_pre(struct dlm_ls * ls)5097 void dlm_recover_waiters_pre(struct dlm_ls *ls)
5098 {
5099 struct dlm_lkb *lkb, *safe;
5100 struct dlm_message *ms_stub;
5101 int wait_type, stub_unlock_result, stub_cancel_result;
5102 int dir_nodeid;
5103
5104 ms_stub = kmalloc(sizeof(*ms_stub), GFP_KERNEL);
5105 if (!ms_stub)
5106 return;
5107
5108 mutex_lock(&ls->ls_waiters_mutex);
5109
5110 list_for_each_entry_safe(lkb, safe, &ls->ls_waiters, lkb_wait_reply) {
5111
5112 dir_nodeid = dlm_dir_nodeid(lkb->lkb_resource);
5113
5114 /* exclude debug messages about unlocks because there can be so
5115 many and they aren't very interesting */
5116
5117 if (lkb->lkb_wait_type != DLM_MSG_UNLOCK) {
5118 log_debug(ls, "waiter %x remote %x msg %d r_nodeid %d "
5119 "lkb_nodeid %d wait_nodeid %d dir_nodeid %d",
5120 lkb->lkb_id,
5121 lkb->lkb_remid,
5122 lkb->lkb_wait_type,
5123 lkb->lkb_resource->res_nodeid,
5124 lkb->lkb_nodeid,
5125 lkb->lkb_wait_nodeid,
5126 dir_nodeid);
5127 }
5128
5129 /* all outstanding lookups, regardless of destination will be
5130 resent after recovery is done */
5131
5132 if (lkb->lkb_wait_type == DLM_MSG_LOOKUP) {
5133 lkb->lkb_flags |= DLM_IFL_RESEND;
5134 continue;
5135 }
5136
5137 if (!waiter_needs_recovery(ls, lkb, dir_nodeid))
5138 continue;
5139
5140 wait_type = lkb->lkb_wait_type;
5141 stub_unlock_result = -DLM_EUNLOCK;
5142 stub_cancel_result = -DLM_ECANCEL;
5143
5144 /* Main reply may have been received leaving a zero wait_type,
5145 but a reply for the overlapping op may not have been
5146 received. In that case we need to fake the appropriate
5147 reply for the overlap op. */
5148
5149 if (!wait_type) {
5150 if (is_overlap_cancel(lkb)) {
5151 wait_type = DLM_MSG_CANCEL;
5152 if (lkb->lkb_grmode == DLM_LOCK_IV)
5153 stub_cancel_result = 0;
5154 }
5155 if (is_overlap_unlock(lkb)) {
5156 wait_type = DLM_MSG_UNLOCK;
5157 if (lkb->lkb_grmode == DLM_LOCK_IV)
5158 stub_unlock_result = -ENOENT;
5159 }
5160
5161 log_debug(ls, "rwpre overlap %x %x %d %d %d",
5162 lkb->lkb_id, lkb->lkb_flags, wait_type,
5163 stub_cancel_result, stub_unlock_result);
5164 }
5165
5166 switch (wait_type) {
5167
5168 case DLM_MSG_REQUEST:
5169 lkb->lkb_flags |= DLM_IFL_RESEND;
5170 break;
5171
5172 case DLM_MSG_CONVERT:
5173 recover_convert_waiter(ls, lkb, ms_stub);
5174 break;
5175
5176 case DLM_MSG_UNLOCK:
5177 hold_lkb(lkb);
5178 memset(ms_stub, 0, sizeof(struct dlm_message));
5179 ms_stub->m_flags = cpu_to_le32(DLM_IFL_STUB_MS);
5180 ms_stub->m_type = cpu_to_le32(DLM_MSG_UNLOCK_REPLY);
5181 ms_stub->m_result = cpu_to_le32(to_dlm_errno(stub_unlock_result));
5182 ms_stub->m_header.h_nodeid = cpu_to_le32(lkb->lkb_nodeid);
5183 _receive_unlock_reply(lkb, ms_stub);
5184 dlm_put_lkb(lkb);
5185 break;
5186
5187 case DLM_MSG_CANCEL:
5188 hold_lkb(lkb);
5189 memset(ms_stub, 0, sizeof(struct dlm_message));
5190 ms_stub->m_flags = cpu_to_le32(DLM_IFL_STUB_MS);
5191 ms_stub->m_type = cpu_to_le32(DLM_MSG_CANCEL_REPLY);
5192 ms_stub->m_result = cpu_to_le32(to_dlm_errno(stub_cancel_result));
5193 ms_stub->m_header.h_nodeid = cpu_to_le32(lkb->lkb_nodeid);
5194 _receive_cancel_reply(lkb, ms_stub);
5195 dlm_put_lkb(lkb);
5196 break;
5197
5198 default:
5199 log_error(ls, "invalid lkb wait_type %d %d",
5200 lkb->lkb_wait_type, wait_type);
5201 }
5202 schedule();
5203 }
5204 mutex_unlock(&ls->ls_waiters_mutex);
5205 kfree(ms_stub);
5206 }
5207
find_resend_waiter(struct dlm_ls * ls)5208 static struct dlm_lkb *find_resend_waiter(struct dlm_ls *ls)
5209 {
5210 struct dlm_lkb *lkb = NULL, *iter;
5211
5212 mutex_lock(&ls->ls_waiters_mutex);
5213 list_for_each_entry(iter, &ls->ls_waiters, lkb_wait_reply) {
5214 if (iter->lkb_flags & DLM_IFL_RESEND) {
5215 hold_lkb(iter);
5216 lkb = iter;
5217 break;
5218 }
5219 }
5220 mutex_unlock(&ls->ls_waiters_mutex);
5221
5222 return lkb;
5223 }
5224
5225 /* Deal with lookups and lkb's marked RESEND from _pre. We may now be the
5226 master or dir-node for r. Processing the lkb may result in it being placed
5227 back on waiters. */
5228
5229 /* We do this after normal locking has been enabled and any saved messages
5230 (in requestqueue) have been processed. We should be confident that at
5231 this point we won't get or process a reply to any of these waiting
5232 operations. But, new ops may be coming in on the rsbs/locks here from
5233 userspace or remotely. */
5234
5235 /* there may have been an overlap unlock/cancel prior to recovery or after
5236 recovery. if before, the lkb may still have a pos wait_count; if after, the
5237 overlap flag would just have been set and nothing new sent. we can be
5238 confident here than any replies to either the initial op or overlap ops
5239 prior to recovery have been received. */
5240
dlm_recover_waiters_post(struct dlm_ls * ls)5241 int dlm_recover_waiters_post(struct dlm_ls *ls)
5242 {
5243 struct dlm_lkb *lkb;
5244 struct dlm_rsb *r;
5245 int error = 0, mstype, err, oc, ou;
5246
5247 while (1) {
5248 if (dlm_locking_stopped(ls)) {
5249 log_debug(ls, "recover_waiters_post aborted");
5250 error = -EINTR;
5251 break;
5252 }
5253
5254 lkb = find_resend_waiter(ls);
5255 if (!lkb)
5256 break;
5257
5258 r = lkb->lkb_resource;
5259 hold_rsb(r);
5260 lock_rsb(r);
5261
5262 mstype = lkb->lkb_wait_type;
5263 oc = is_overlap_cancel(lkb);
5264 ou = is_overlap_unlock(lkb);
5265 err = 0;
5266
5267 log_debug(ls, "waiter %x remote %x msg %d r_nodeid %d "
5268 "lkb_nodeid %d wait_nodeid %d dir_nodeid %d "
5269 "overlap %d %d", lkb->lkb_id, lkb->lkb_remid, mstype,
5270 r->res_nodeid, lkb->lkb_nodeid, lkb->lkb_wait_nodeid,
5271 dlm_dir_nodeid(r), oc, ou);
5272
5273 /* At this point we assume that we won't get a reply to any
5274 previous op or overlap op on this lock. First, do a big
5275 remove_from_waiters() for all previous ops. */
5276
5277 lkb->lkb_flags &= ~DLM_IFL_RESEND;
5278 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
5279 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
5280 lkb->lkb_wait_type = 0;
5281 /* drop all wait_count references we still
5282 * hold a reference for this iteration.
5283 */
5284 while (lkb->lkb_wait_count) {
5285 lkb->lkb_wait_count--;
5286 unhold_lkb(lkb);
5287 }
5288 mutex_lock(&ls->ls_waiters_mutex);
5289 list_del_init(&lkb->lkb_wait_reply);
5290 mutex_unlock(&ls->ls_waiters_mutex);
5291
5292 if (oc || ou) {
5293 /* do an unlock or cancel instead of resending */
5294 switch (mstype) {
5295 case DLM_MSG_LOOKUP:
5296 case DLM_MSG_REQUEST:
5297 queue_cast(r, lkb, ou ? -DLM_EUNLOCK :
5298 -DLM_ECANCEL);
5299 unhold_lkb(lkb); /* undoes create_lkb() */
5300 break;
5301 case DLM_MSG_CONVERT:
5302 if (oc) {
5303 queue_cast(r, lkb, -DLM_ECANCEL);
5304 } else {
5305 lkb->lkb_exflags |= DLM_LKF_FORCEUNLOCK;
5306 _unlock_lock(r, lkb);
5307 }
5308 break;
5309 default:
5310 err = 1;
5311 }
5312 } else {
5313 switch (mstype) {
5314 case DLM_MSG_LOOKUP:
5315 case DLM_MSG_REQUEST:
5316 _request_lock(r, lkb);
5317 if (is_master(r))
5318 confirm_master(r, 0);
5319 break;
5320 case DLM_MSG_CONVERT:
5321 _convert_lock(r, lkb);
5322 break;
5323 default:
5324 err = 1;
5325 }
5326 }
5327
5328 if (err) {
5329 log_error(ls, "waiter %x msg %d r_nodeid %d "
5330 "dir_nodeid %d overlap %d %d",
5331 lkb->lkb_id, mstype, r->res_nodeid,
5332 dlm_dir_nodeid(r), oc, ou);
5333 }
5334 unlock_rsb(r);
5335 put_rsb(r);
5336 dlm_put_lkb(lkb);
5337 }
5338
5339 return error;
5340 }
5341
purge_mstcpy_list(struct dlm_ls * ls,struct dlm_rsb * r,struct list_head * list)5342 static void purge_mstcpy_list(struct dlm_ls *ls, struct dlm_rsb *r,
5343 struct list_head *list)
5344 {
5345 struct dlm_lkb *lkb, *safe;
5346
5347 list_for_each_entry_safe(lkb, safe, list, lkb_statequeue) {
5348 if (!is_master_copy(lkb))
5349 continue;
5350
5351 /* don't purge lkbs we've added in recover_master_copy for
5352 the current recovery seq */
5353
5354 if (lkb->lkb_recover_seq == ls->ls_recover_seq)
5355 continue;
5356
5357 del_lkb(r, lkb);
5358
5359 /* this put should free the lkb */
5360 if (!dlm_put_lkb(lkb))
5361 log_error(ls, "purged mstcpy lkb not released");
5362 }
5363 }
5364
dlm_purge_mstcpy_locks(struct dlm_rsb * r)5365 void dlm_purge_mstcpy_locks(struct dlm_rsb *r)
5366 {
5367 struct dlm_ls *ls = r->res_ls;
5368
5369 purge_mstcpy_list(ls, r, &r->res_grantqueue);
5370 purge_mstcpy_list(ls, r, &r->res_convertqueue);
5371 purge_mstcpy_list(ls, r, &r->res_waitqueue);
5372 }
5373
purge_dead_list(struct dlm_ls * ls,struct dlm_rsb * r,struct list_head * list,int nodeid_gone,unsigned int * count)5374 static void purge_dead_list(struct dlm_ls *ls, struct dlm_rsb *r,
5375 struct list_head *list,
5376 int nodeid_gone, unsigned int *count)
5377 {
5378 struct dlm_lkb *lkb, *safe;
5379
5380 list_for_each_entry_safe(lkb, safe, list, lkb_statequeue) {
5381 if (!is_master_copy(lkb))
5382 continue;
5383
5384 if ((lkb->lkb_nodeid == nodeid_gone) ||
5385 dlm_is_removed(ls, lkb->lkb_nodeid)) {
5386
5387 /* tell recover_lvb to invalidate the lvb
5388 because a node holding EX/PW failed */
5389 if ((lkb->lkb_exflags & DLM_LKF_VALBLK) &&
5390 (lkb->lkb_grmode >= DLM_LOCK_PW)) {
5391 rsb_set_flag(r, RSB_RECOVER_LVB_INVAL);
5392 }
5393
5394 del_lkb(r, lkb);
5395
5396 /* this put should free the lkb */
5397 if (!dlm_put_lkb(lkb))
5398 log_error(ls, "purged dead lkb not released");
5399
5400 rsb_set_flag(r, RSB_RECOVER_GRANT);
5401
5402 (*count)++;
5403 }
5404 }
5405 }
5406
5407 /* Get rid of locks held by nodes that are gone. */
5408
dlm_recover_purge(struct dlm_ls * ls)5409 void dlm_recover_purge(struct dlm_ls *ls)
5410 {
5411 struct dlm_rsb *r;
5412 struct dlm_member *memb;
5413 int nodes_count = 0;
5414 int nodeid_gone = 0;
5415 unsigned int lkb_count = 0;
5416
5417 /* cache one removed nodeid to optimize the common
5418 case of a single node removed */
5419
5420 list_for_each_entry(memb, &ls->ls_nodes_gone, list) {
5421 nodes_count++;
5422 nodeid_gone = memb->nodeid;
5423 }
5424
5425 if (!nodes_count)
5426 return;
5427
5428 down_write(&ls->ls_root_sem);
5429 list_for_each_entry(r, &ls->ls_root_list, res_root_list) {
5430 hold_rsb(r);
5431 lock_rsb(r);
5432 if (is_master(r)) {
5433 purge_dead_list(ls, r, &r->res_grantqueue,
5434 nodeid_gone, &lkb_count);
5435 purge_dead_list(ls, r, &r->res_convertqueue,
5436 nodeid_gone, &lkb_count);
5437 purge_dead_list(ls, r, &r->res_waitqueue,
5438 nodeid_gone, &lkb_count);
5439 }
5440 unlock_rsb(r);
5441 unhold_rsb(r);
5442 cond_resched();
5443 }
5444 up_write(&ls->ls_root_sem);
5445
5446 if (lkb_count)
5447 log_rinfo(ls, "dlm_recover_purge %u locks for %u nodes",
5448 lkb_count, nodes_count);
5449 }
5450
find_grant_rsb(struct dlm_ls * ls,int bucket)5451 static struct dlm_rsb *find_grant_rsb(struct dlm_ls *ls, int bucket)
5452 {
5453 struct rb_node *n;
5454 struct dlm_rsb *r;
5455
5456 spin_lock(&ls->ls_rsbtbl[bucket].lock);
5457 for (n = rb_first(&ls->ls_rsbtbl[bucket].keep); n; n = rb_next(n)) {
5458 r = rb_entry(n, struct dlm_rsb, res_hashnode);
5459
5460 if (!rsb_flag(r, RSB_RECOVER_GRANT))
5461 continue;
5462 if (!is_master(r)) {
5463 rsb_clear_flag(r, RSB_RECOVER_GRANT);
5464 continue;
5465 }
5466 hold_rsb(r);
5467 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
5468 return r;
5469 }
5470 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
5471 return NULL;
5472 }
5473
5474 /*
5475 * Attempt to grant locks on resources that we are the master of.
5476 * Locks may have become grantable during recovery because locks
5477 * from departed nodes have been purged (or not rebuilt), allowing
5478 * previously blocked locks to now be granted. The subset of rsb's
5479 * we are interested in are those with lkb's on either the convert or
5480 * waiting queues.
5481 *
5482 * Simplest would be to go through each master rsb and check for non-empty
5483 * convert or waiting queues, and attempt to grant on those rsbs.
5484 * Checking the queues requires lock_rsb, though, for which we'd need
5485 * to release the rsbtbl lock. This would make iterating through all
5486 * rsb's very inefficient. So, we rely on earlier recovery routines
5487 * to set RECOVER_GRANT on any rsb's that we should attempt to grant
5488 * locks for.
5489 */
5490
dlm_recover_grant(struct dlm_ls * ls)5491 void dlm_recover_grant(struct dlm_ls *ls)
5492 {
5493 struct dlm_rsb *r;
5494 int bucket = 0;
5495 unsigned int count = 0;
5496 unsigned int rsb_count = 0;
5497 unsigned int lkb_count = 0;
5498
5499 while (1) {
5500 r = find_grant_rsb(ls, bucket);
5501 if (!r) {
5502 if (bucket == ls->ls_rsbtbl_size - 1)
5503 break;
5504 bucket++;
5505 continue;
5506 }
5507 rsb_count++;
5508 count = 0;
5509 lock_rsb(r);
5510 /* the RECOVER_GRANT flag is checked in the grant path */
5511 grant_pending_locks(r, &count);
5512 rsb_clear_flag(r, RSB_RECOVER_GRANT);
5513 lkb_count += count;
5514 confirm_master(r, 0);
5515 unlock_rsb(r);
5516 put_rsb(r);
5517 cond_resched();
5518 }
5519
5520 if (lkb_count)
5521 log_rinfo(ls, "dlm_recover_grant %u locks on %u resources",
5522 lkb_count, rsb_count);
5523 }
5524
search_remid_list(struct list_head * head,int nodeid,uint32_t remid)5525 static struct dlm_lkb *search_remid_list(struct list_head *head, int nodeid,
5526 uint32_t remid)
5527 {
5528 struct dlm_lkb *lkb;
5529
5530 list_for_each_entry(lkb, head, lkb_statequeue) {
5531 if (lkb->lkb_nodeid == nodeid && lkb->lkb_remid == remid)
5532 return lkb;
5533 }
5534 return NULL;
5535 }
5536
search_remid(struct dlm_rsb * r,int nodeid,uint32_t remid)5537 static struct dlm_lkb *search_remid(struct dlm_rsb *r, int nodeid,
5538 uint32_t remid)
5539 {
5540 struct dlm_lkb *lkb;
5541
5542 lkb = search_remid_list(&r->res_grantqueue, nodeid, remid);
5543 if (lkb)
5544 return lkb;
5545 lkb = search_remid_list(&r->res_convertqueue, nodeid, remid);
5546 if (lkb)
5547 return lkb;
5548 lkb = search_remid_list(&r->res_waitqueue, nodeid, remid);
5549 if (lkb)
5550 return lkb;
5551 return NULL;
5552 }
5553
5554 /* needs at least dlm_rcom + rcom_lock */
receive_rcom_lock_args(struct dlm_ls * ls,struct dlm_lkb * lkb,struct dlm_rsb * r,struct dlm_rcom * rc)5555 static int receive_rcom_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
5556 struct dlm_rsb *r, struct dlm_rcom *rc)
5557 {
5558 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
5559
5560 lkb->lkb_nodeid = le32_to_cpu(rc->rc_header.h_nodeid);
5561 lkb->lkb_ownpid = le32_to_cpu(rl->rl_ownpid);
5562 lkb->lkb_remid = le32_to_cpu(rl->rl_lkid);
5563 lkb->lkb_exflags = le32_to_cpu(rl->rl_exflags);
5564 lkb->lkb_flags = le32_to_cpu(rl->rl_flags) & 0x0000FFFF;
5565 lkb->lkb_flags |= DLM_IFL_MSTCPY;
5566 lkb->lkb_lvbseq = le32_to_cpu(rl->rl_lvbseq);
5567 lkb->lkb_rqmode = rl->rl_rqmode;
5568 lkb->lkb_grmode = rl->rl_grmode;
5569 /* don't set lkb_status because add_lkb wants to itself */
5570
5571 lkb->lkb_bastfn = (rl->rl_asts & DLM_CB_BAST) ? &fake_bastfn : NULL;
5572 lkb->lkb_astfn = (rl->rl_asts & DLM_CB_CAST) ? &fake_astfn : NULL;
5573
5574 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
5575 int lvblen = le16_to_cpu(rc->rc_header.h_length) -
5576 sizeof(struct dlm_rcom) - sizeof(struct rcom_lock);
5577 if (lvblen > ls->ls_lvblen)
5578 return -EINVAL;
5579 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
5580 if (!lkb->lkb_lvbptr)
5581 return -ENOMEM;
5582 memcpy(lkb->lkb_lvbptr, rl->rl_lvb, lvblen);
5583 }
5584
5585 /* Conversions between PR and CW (middle modes) need special handling.
5586 The real granted mode of these converting locks cannot be determined
5587 until all locks have been rebuilt on the rsb (recover_conversion) */
5588
5589 if (rl->rl_wait_type == cpu_to_le16(DLM_MSG_CONVERT) &&
5590 middle_conversion(lkb)) {
5591 rl->rl_status = DLM_LKSTS_CONVERT;
5592 lkb->lkb_grmode = DLM_LOCK_IV;
5593 rsb_set_flag(r, RSB_RECOVER_CONVERT);
5594 }
5595
5596 return 0;
5597 }
5598
5599 /* This lkb may have been recovered in a previous aborted recovery so we need
5600 to check if the rsb already has an lkb with the given remote nodeid/lkid.
5601 If so we just send back a standard reply. If not, we create a new lkb with
5602 the given values and send back our lkid. We send back our lkid by sending
5603 back the rcom_lock struct we got but with the remid field filled in. */
5604
5605 /* needs at least dlm_rcom + rcom_lock */
dlm_recover_master_copy(struct dlm_ls * ls,struct dlm_rcom * rc)5606 int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc)
5607 {
5608 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
5609 struct dlm_rsb *r;
5610 struct dlm_lkb *lkb;
5611 uint32_t remid = 0;
5612 int from_nodeid = le32_to_cpu(rc->rc_header.h_nodeid);
5613 int error;
5614
5615 if (rl->rl_parent_lkid) {
5616 error = -EOPNOTSUPP;
5617 goto out;
5618 }
5619
5620 remid = le32_to_cpu(rl->rl_lkid);
5621
5622 /* In general we expect the rsb returned to be R_MASTER, but we don't
5623 have to require it. Recovery of masters on one node can overlap
5624 recovery of locks on another node, so one node can send us MSTCPY
5625 locks before we've made ourselves master of this rsb. We can still
5626 add new MSTCPY locks that we receive here without any harm; when
5627 we make ourselves master, dlm_recover_masters() won't touch the
5628 MSTCPY locks we've received early. */
5629
5630 error = find_rsb(ls, rl->rl_name, le16_to_cpu(rl->rl_namelen),
5631 from_nodeid, R_RECEIVE_RECOVER, &r);
5632 if (error)
5633 goto out;
5634
5635 lock_rsb(r);
5636
5637 if (dlm_no_directory(ls) && (dlm_dir_nodeid(r) != dlm_our_nodeid())) {
5638 log_error(ls, "dlm_recover_master_copy remote %d %x not dir",
5639 from_nodeid, remid);
5640 error = -EBADR;
5641 goto out_unlock;
5642 }
5643
5644 lkb = search_remid(r, from_nodeid, remid);
5645 if (lkb) {
5646 error = -EEXIST;
5647 goto out_remid;
5648 }
5649
5650 error = create_lkb(ls, &lkb);
5651 if (error)
5652 goto out_unlock;
5653
5654 error = receive_rcom_lock_args(ls, lkb, r, rc);
5655 if (error) {
5656 __put_lkb(ls, lkb);
5657 goto out_unlock;
5658 }
5659
5660 attach_lkb(r, lkb);
5661 add_lkb(r, lkb, rl->rl_status);
5662 ls->ls_recover_locks_in++;
5663
5664 if (!list_empty(&r->res_waitqueue) || !list_empty(&r->res_convertqueue))
5665 rsb_set_flag(r, RSB_RECOVER_GRANT);
5666
5667 out_remid:
5668 /* this is the new value returned to the lock holder for
5669 saving in its process-copy lkb */
5670 rl->rl_remid = cpu_to_le32(lkb->lkb_id);
5671
5672 lkb->lkb_recover_seq = ls->ls_recover_seq;
5673
5674 out_unlock:
5675 unlock_rsb(r);
5676 put_rsb(r);
5677 out:
5678 if (error && error != -EEXIST)
5679 log_rinfo(ls, "dlm_recover_master_copy remote %d %x error %d",
5680 from_nodeid, remid, error);
5681 rl->rl_result = cpu_to_le32(error);
5682 return error;
5683 }
5684
5685 /* needs at least dlm_rcom + rcom_lock */
dlm_recover_process_copy(struct dlm_ls * ls,struct dlm_rcom * rc)5686 int dlm_recover_process_copy(struct dlm_ls *ls, struct dlm_rcom *rc)
5687 {
5688 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
5689 struct dlm_rsb *r;
5690 struct dlm_lkb *lkb;
5691 uint32_t lkid, remid;
5692 int error, result;
5693
5694 lkid = le32_to_cpu(rl->rl_lkid);
5695 remid = le32_to_cpu(rl->rl_remid);
5696 result = le32_to_cpu(rl->rl_result);
5697
5698 error = find_lkb(ls, lkid, &lkb);
5699 if (error) {
5700 log_error(ls, "dlm_recover_process_copy no %x remote %d %x %d",
5701 lkid, le32_to_cpu(rc->rc_header.h_nodeid), remid,
5702 result);
5703 return error;
5704 }
5705
5706 r = lkb->lkb_resource;
5707 hold_rsb(r);
5708 lock_rsb(r);
5709
5710 if (!is_process_copy(lkb)) {
5711 log_error(ls, "dlm_recover_process_copy bad %x remote %d %x %d",
5712 lkid, le32_to_cpu(rc->rc_header.h_nodeid), remid,
5713 result);
5714 dlm_dump_rsb(r);
5715 unlock_rsb(r);
5716 put_rsb(r);
5717 dlm_put_lkb(lkb);
5718 return -EINVAL;
5719 }
5720
5721 switch (result) {
5722 case -EBADR:
5723 /* There's a chance the new master received our lock before
5724 dlm_recover_master_reply(), this wouldn't happen if we did
5725 a barrier between recover_masters and recover_locks. */
5726
5727 log_debug(ls, "dlm_recover_process_copy %x remote %d %x %d",
5728 lkid, le32_to_cpu(rc->rc_header.h_nodeid), remid,
5729 result);
5730
5731 dlm_send_rcom_lock(r, lkb);
5732 goto out;
5733 case -EEXIST:
5734 case 0:
5735 lkb->lkb_remid = remid;
5736 break;
5737 default:
5738 log_error(ls, "dlm_recover_process_copy %x remote %d %x %d unk",
5739 lkid, le32_to_cpu(rc->rc_header.h_nodeid), remid,
5740 result);
5741 }
5742
5743 /* an ack for dlm_recover_locks() which waits for replies from
5744 all the locks it sends to new masters */
5745 dlm_recovered_lock(r);
5746 out:
5747 unlock_rsb(r);
5748 put_rsb(r);
5749 dlm_put_lkb(lkb);
5750
5751 return 0;
5752 }
5753
5754 #ifdef CONFIG_DLM_DEPRECATED_API
dlm_user_request(struct dlm_ls * ls,struct dlm_user_args * ua,int mode,uint32_t flags,void * name,unsigned int namelen,unsigned long timeout_cs)5755 int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua,
5756 int mode, uint32_t flags, void *name, unsigned int namelen,
5757 unsigned long timeout_cs)
5758 #else
5759 int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua,
5760 int mode, uint32_t flags, void *name, unsigned int namelen)
5761 #endif
5762 {
5763 struct dlm_lkb *lkb;
5764 struct dlm_args args;
5765 bool do_put = true;
5766 int error;
5767
5768 dlm_lock_recovery(ls);
5769
5770 error = create_lkb(ls, &lkb);
5771 if (error) {
5772 kfree(ua);
5773 goto out;
5774 }
5775
5776 trace_dlm_lock_start(ls, lkb, name, namelen, mode, flags);
5777
5778 if (flags & DLM_LKF_VALBLK) {
5779 ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_NOFS);
5780 if (!ua->lksb.sb_lvbptr) {
5781 kfree(ua);
5782 error = -ENOMEM;
5783 goto out_put;
5784 }
5785 }
5786 #ifdef CONFIG_DLM_DEPRECATED_API
5787 error = set_lock_args(mode, &ua->lksb, flags, namelen, timeout_cs,
5788 fake_astfn, ua, fake_bastfn, &args);
5789 #else
5790 error = set_lock_args(mode, &ua->lksb, flags, namelen, fake_astfn, ua,
5791 fake_bastfn, &args);
5792 #endif
5793 if (error) {
5794 kfree(ua->lksb.sb_lvbptr);
5795 ua->lksb.sb_lvbptr = NULL;
5796 kfree(ua);
5797 goto out_put;
5798 }
5799
5800 /* After ua is attached to lkb it will be freed by dlm_free_lkb().
5801 When DLM_IFL_USER is set, the dlm knows that this is a userspace
5802 lock and that lkb_astparam is the dlm_user_args structure. */
5803 lkb->lkb_flags |= DLM_IFL_USER;
5804 error = request_lock(ls, lkb, name, namelen, &args);
5805
5806 switch (error) {
5807 case 0:
5808 break;
5809 case -EINPROGRESS:
5810 error = 0;
5811 break;
5812 case -EAGAIN:
5813 error = 0;
5814 fallthrough;
5815 default:
5816 goto out_put;
5817 }
5818
5819 /* add this new lkb to the per-process list of locks */
5820 spin_lock(&ua->proc->locks_spin);
5821 hold_lkb(lkb);
5822 list_add_tail(&lkb->lkb_ownqueue, &ua->proc->locks);
5823 spin_unlock(&ua->proc->locks_spin);
5824 do_put = false;
5825 out_put:
5826 trace_dlm_lock_end(ls, lkb, name, namelen, mode, flags, error, false);
5827 if (do_put)
5828 __put_lkb(ls, lkb);
5829 out:
5830 dlm_unlock_recovery(ls);
5831 return error;
5832 }
5833
5834 #ifdef CONFIG_DLM_DEPRECATED_API
dlm_user_convert(struct dlm_ls * ls,struct dlm_user_args * ua_tmp,int mode,uint32_t flags,uint32_t lkid,char * lvb_in,unsigned long timeout_cs)5835 int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
5836 int mode, uint32_t flags, uint32_t lkid, char *lvb_in,
5837 unsigned long timeout_cs)
5838 #else
5839 int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
5840 int mode, uint32_t flags, uint32_t lkid, char *lvb_in)
5841 #endif
5842 {
5843 struct dlm_lkb *lkb;
5844 struct dlm_args args;
5845 struct dlm_user_args *ua;
5846 int error;
5847
5848 dlm_lock_recovery(ls);
5849
5850 error = find_lkb(ls, lkid, &lkb);
5851 if (error)
5852 goto out;
5853
5854 trace_dlm_lock_start(ls, lkb, NULL, 0, mode, flags);
5855
5856 /* user can change the params on its lock when it converts it, or
5857 add an lvb that didn't exist before */
5858
5859 ua = lkb->lkb_ua;
5860
5861 if (flags & DLM_LKF_VALBLK && !ua->lksb.sb_lvbptr) {
5862 ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_NOFS);
5863 if (!ua->lksb.sb_lvbptr) {
5864 error = -ENOMEM;
5865 goto out_put;
5866 }
5867 }
5868 if (lvb_in && ua->lksb.sb_lvbptr)
5869 memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN);
5870
5871 ua->xid = ua_tmp->xid;
5872 ua->castparam = ua_tmp->castparam;
5873 ua->castaddr = ua_tmp->castaddr;
5874 ua->bastparam = ua_tmp->bastparam;
5875 ua->bastaddr = ua_tmp->bastaddr;
5876 ua->user_lksb = ua_tmp->user_lksb;
5877
5878 #ifdef CONFIG_DLM_DEPRECATED_API
5879 error = set_lock_args(mode, &ua->lksb, flags, 0, timeout_cs,
5880 fake_astfn, ua, fake_bastfn, &args);
5881 #else
5882 error = set_lock_args(mode, &ua->lksb, flags, 0, fake_astfn, ua,
5883 fake_bastfn, &args);
5884 #endif
5885 if (error)
5886 goto out_put;
5887
5888 error = convert_lock(ls, lkb, &args);
5889
5890 if (error == -EINPROGRESS || error == -EAGAIN || error == -EDEADLK)
5891 error = 0;
5892 out_put:
5893 trace_dlm_lock_end(ls, lkb, NULL, 0, mode, flags, error, false);
5894 dlm_put_lkb(lkb);
5895 out:
5896 dlm_unlock_recovery(ls);
5897 kfree(ua_tmp);
5898 return error;
5899 }
5900
5901 /*
5902 * The caller asks for an orphan lock on a given resource with a given mode.
5903 * If a matching lock exists, it's moved to the owner's list of locks and
5904 * the lkid is returned.
5905 */
5906
dlm_user_adopt_orphan(struct dlm_ls * ls,struct dlm_user_args * ua_tmp,int mode,uint32_t flags,void * name,unsigned int namelen,uint32_t * lkid)5907 int dlm_user_adopt_orphan(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
5908 int mode, uint32_t flags, void *name, unsigned int namelen,
5909 uint32_t *lkid)
5910 {
5911 struct dlm_lkb *lkb = NULL, *iter;
5912 struct dlm_user_args *ua;
5913 int found_other_mode = 0;
5914 int rv = 0;
5915
5916 mutex_lock(&ls->ls_orphans_mutex);
5917 list_for_each_entry(iter, &ls->ls_orphans, lkb_ownqueue) {
5918 if (iter->lkb_resource->res_length != namelen)
5919 continue;
5920 if (memcmp(iter->lkb_resource->res_name, name, namelen))
5921 continue;
5922 if (iter->lkb_grmode != mode) {
5923 found_other_mode = 1;
5924 continue;
5925 }
5926
5927 lkb = iter;
5928 list_del_init(&iter->lkb_ownqueue);
5929 iter->lkb_flags &= ~DLM_IFL_ORPHAN;
5930 *lkid = iter->lkb_id;
5931 break;
5932 }
5933 mutex_unlock(&ls->ls_orphans_mutex);
5934
5935 if (!lkb && found_other_mode) {
5936 rv = -EAGAIN;
5937 goto out;
5938 }
5939
5940 if (!lkb) {
5941 rv = -ENOENT;
5942 goto out;
5943 }
5944
5945 lkb->lkb_exflags = flags;
5946 lkb->lkb_ownpid = (int) current->pid;
5947
5948 ua = lkb->lkb_ua;
5949
5950 ua->proc = ua_tmp->proc;
5951 ua->xid = ua_tmp->xid;
5952 ua->castparam = ua_tmp->castparam;
5953 ua->castaddr = ua_tmp->castaddr;
5954 ua->bastparam = ua_tmp->bastparam;
5955 ua->bastaddr = ua_tmp->bastaddr;
5956 ua->user_lksb = ua_tmp->user_lksb;
5957
5958 /*
5959 * The lkb reference from the ls_orphans list was not
5960 * removed above, and is now considered the reference
5961 * for the proc locks list.
5962 */
5963
5964 spin_lock(&ua->proc->locks_spin);
5965 list_add_tail(&lkb->lkb_ownqueue, &ua->proc->locks);
5966 spin_unlock(&ua->proc->locks_spin);
5967 out:
5968 kfree(ua_tmp);
5969 return rv;
5970 }
5971
dlm_user_unlock(struct dlm_ls * ls,struct dlm_user_args * ua_tmp,uint32_t flags,uint32_t lkid,char * lvb_in)5972 int dlm_user_unlock(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
5973 uint32_t flags, uint32_t lkid, char *lvb_in)
5974 {
5975 struct dlm_lkb *lkb;
5976 struct dlm_args args;
5977 struct dlm_user_args *ua;
5978 int error;
5979
5980 dlm_lock_recovery(ls);
5981
5982 error = find_lkb(ls, lkid, &lkb);
5983 if (error)
5984 goto out;
5985
5986 trace_dlm_unlock_start(ls, lkb, flags);
5987
5988 ua = lkb->lkb_ua;
5989
5990 if (lvb_in && ua->lksb.sb_lvbptr)
5991 memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN);
5992 if (ua_tmp->castparam)
5993 ua->castparam = ua_tmp->castparam;
5994 ua->user_lksb = ua_tmp->user_lksb;
5995
5996 error = set_unlock_args(flags, ua, &args);
5997 if (error)
5998 goto out_put;
5999
6000 error = unlock_lock(ls, lkb, &args);
6001
6002 if (error == -DLM_EUNLOCK)
6003 error = 0;
6004 /* from validate_unlock_args() */
6005 if (error == -EBUSY && (flags & DLM_LKF_FORCEUNLOCK))
6006 error = 0;
6007 if (error)
6008 goto out_put;
6009
6010 spin_lock(&ua->proc->locks_spin);
6011 /* dlm_user_add_cb() may have already taken lkb off the proc list */
6012 if (!list_empty(&lkb->lkb_ownqueue))
6013 list_move(&lkb->lkb_ownqueue, &ua->proc->unlocking);
6014 spin_unlock(&ua->proc->locks_spin);
6015 out_put:
6016 trace_dlm_unlock_end(ls, lkb, flags, error);
6017 dlm_put_lkb(lkb);
6018 out:
6019 dlm_unlock_recovery(ls);
6020 kfree(ua_tmp);
6021 return error;
6022 }
6023
dlm_user_cancel(struct dlm_ls * ls,struct dlm_user_args * ua_tmp,uint32_t flags,uint32_t lkid)6024 int dlm_user_cancel(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
6025 uint32_t flags, uint32_t lkid)
6026 {
6027 struct dlm_lkb *lkb;
6028 struct dlm_args args;
6029 struct dlm_user_args *ua;
6030 int error;
6031
6032 dlm_lock_recovery(ls);
6033
6034 error = find_lkb(ls, lkid, &lkb);
6035 if (error)
6036 goto out;
6037
6038 trace_dlm_unlock_start(ls, lkb, flags);
6039
6040 ua = lkb->lkb_ua;
6041 if (ua_tmp->castparam)
6042 ua->castparam = ua_tmp->castparam;
6043 ua->user_lksb = ua_tmp->user_lksb;
6044
6045 error = set_unlock_args(flags, ua, &args);
6046 if (error)
6047 goto out_put;
6048
6049 error = cancel_lock(ls, lkb, &args);
6050
6051 if (error == -DLM_ECANCEL)
6052 error = 0;
6053 /* from validate_unlock_args() */
6054 if (error == -EBUSY)
6055 error = 0;
6056 out_put:
6057 trace_dlm_unlock_end(ls, lkb, flags, error);
6058 dlm_put_lkb(lkb);
6059 out:
6060 dlm_unlock_recovery(ls);
6061 kfree(ua_tmp);
6062 return error;
6063 }
6064
dlm_user_deadlock(struct dlm_ls * ls,uint32_t flags,uint32_t lkid)6065 int dlm_user_deadlock(struct dlm_ls *ls, uint32_t flags, uint32_t lkid)
6066 {
6067 struct dlm_lkb *lkb;
6068 struct dlm_args args;
6069 struct dlm_user_args *ua;
6070 struct dlm_rsb *r;
6071 int error;
6072
6073 dlm_lock_recovery(ls);
6074
6075 error = find_lkb(ls, lkid, &lkb);
6076 if (error)
6077 goto out;
6078
6079 trace_dlm_unlock_start(ls, lkb, flags);
6080
6081 ua = lkb->lkb_ua;
6082
6083 error = set_unlock_args(flags, ua, &args);
6084 if (error)
6085 goto out_put;
6086
6087 /* same as cancel_lock(), but set DEADLOCK_CANCEL after lock_rsb */
6088
6089 r = lkb->lkb_resource;
6090 hold_rsb(r);
6091 lock_rsb(r);
6092
6093 error = validate_unlock_args(lkb, &args);
6094 if (error)
6095 goto out_r;
6096 lkb->lkb_flags |= DLM_IFL_DEADLOCK_CANCEL;
6097
6098 error = _cancel_lock(r, lkb);
6099 out_r:
6100 unlock_rsb(r);
6101 put_rsb(r);
6102
6103 if (error == -DLM_ECANCEL)
6104 error = 0;
6105 /* from validate_unlock_args() */
6106 if (error == -EBUSY)
6107 error = 0;
6108 out_put:
6109 trace_dlm_unlock_end(ls, lkb, flags, error);
6110 dlm_put_lkb(lkb);
6111 out:
6112 dlm_unlock_recovery(ls);
6113 return error;
6114 }
6115
6116 /* lkb's that are removed from the waiters list by revert are just left on the
6117 orphans list with the granted orphan locks, to be freed by purge */
6118
orphan_proc_lock(struct dlm_ls * ls,struct dlm_lkb * lkb)6119 static int orphan_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb)
6120 {
6121 struct dlm_args args;
6122 int error;
6123
6124 hold_lkb(lkb); /* reference for the ls_orphans list */
6125 mutex_lock(&ls->ls_orphans_mutex);
6126 list_add_tail(&lkb->lkb_ownqueue, &ls->ls_orphans);
6127 mutex_unlock(&ls->ls_orphans_mutex);
6128
6129 set_unlock_args(0, lkb->lkb_ua, &args);
6130
6131 error = cancel_lock(ls, lkb, &args);
6132 if (error == -DLM_ECANCEL)
6133 error = 0;
6134 return error;
6135 }
6136
6137 /* The FORCEUNLOCK flag allows the unlock to go ahead even if the lkb isn't
6138 granted. Regardless of what rsb queue the lock is on, it's removed and
6139 freed. The IVVALBLK flag causes the lvb on the resource to be invalidated
6140 if our lock is PW/EX (it's ignored if our granted mode is smaller.) */
6141
unlock_proc_lock(struct dlm_ls * ls,struct dlm_lkb * lkb)6142 static int unlock_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb)
6143 {
6144 struct dlm_args args;
6145 int error;
6146
6147 set_unlock_args(DLM_LKF_FORCEUNLOCK | DLM_LKF_IVVALBLK,
6148 lkb->lkb_ua, &args);
6149
6150 error = unlock_lock(ls, lkb, &args);
6151 if (error == -DLM_EUNLOCK)
6152 error = 0;
6153 return error;
6154 }
6155
6156 /* We have to release clear_proc_locks mutex before calling unlock_proc_lock()
6157 (which does lock_rsb) due to deadlock with receiving a message that does
6158 lock_rsb followed by dlm_user_add_cb() */
6159
del_proc_lock(struct dlm_ls * ls,struct dlm_user_proc * proc)6160 static struct dlm_lkb *del_proc_lock(struct dlm_ls *ls,
6161 struct dlm_user_proc *proc)
6162 {
6163 struct dlm_lkb *lkb = NULL;
6164
6165 spin_lock(&ls->ls_clear_proc_locks);
6166 if (list_empty(&proc->locks))
6167 goto out;
6168
6169 lkb = list_entry(proc->locks.next, struct dlm_lkb, lkb_ownqueue);
6170 list_del_init(&lkb->lkb_ownqueue);
6171
6172 if (lkb->lkb_exflags & DLM_LKF_PERSISTENT)
6173 lkb->lkb_flags |= DLM_IFL_ORPHAN;
6174 else
6175 lkb->lkb_flags |= DLM_IFL_DEAD;
6176 out:
6177 spin_unlock(&ls->ls_clear_proc_locks);
6178 return lkb;
6179 }
6180
6181 /* The ls_clear_proc_locks mutex protects against dlm_user_add_cb() which
6182 1) references lkb->ua which we free here and 2) adds lkbs to proc->asts,
6183 which we clear here. */
6184
6185 /* proc CLOSING flag is set so no more device_reads should look at proc->asts
6186 list, and no more device_writes should add lkb's to proc->locks list; so we
6187 shouldn't need to take asts_spin or locks_spin here. this assumes that
6188 device reads/writes/closes are serialized -- FIXME: we may need to serialize
6189 them ourself. */
6190
dlm_clear_proc_locks(struct dlm_ls * ls,struct dlm_user_proc * proc)6191 void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc)
6192 {
6193 struct dlm_lkb *lkb, *safe;
6194
6195 dlm_lock_recovery(ls);
6196
6197 while (1) {
6198 lkb = del_proc_lock(ls, proc);
6199 if (!lkb)
6200 break;
6201 del_timeout(lkb);
6202 if (lkb->lkb_exflags & DLM_LKF_PERSISTENT)
6203 orphan_proc_lock(ls, lkb);
6204 else
6205 unlock_proc_lock(ls, lkb);
6206
6207 /* this removes the reference for the proc->locks list
6208 added by dlm_user_request, it may result in the lkb
6209 being freed */
6210
6211 dlm_put_lkb(lkb);
6212 }
6213
6214 spin_lock(&ls->ls_clear_proc_locks);
6215
6216 /* in-progress unlocks */
6217 list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) {
6218 list_del_init(&lkb->lkb_ownqueue);
6219 lkb->lkb_flags |= DLM_IFL_DEAD;
6220 dlm_put_lkb(lkb);
6221 }
6222
6223 list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_cb_list) {
6224 memset(&lkb->lkb_callbacks, 0,
6225 sizeof(struct dlm_callback) * DLM_CALLBACKS_SIZE);
6226 list_del_init(&lkb->lkb_cb_list);
6227 dlm_put_lkb(lkb);
6228 }
6229
6230 spin_unlock(&ls->ls_clear_proc_locks);
6231 dlm_unlock_recovery(ls);
6232 }
6233
purge_proc_locks(struct dlm_ls * ls,struct dlm_user_proc * proc)6234 static void purge_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc)
6235 {
6236 struct dlm_lkb *lkb, *safe;
6237
6238 while (1) {
6239 lkb = NULL;
6240 spin_lock(&proc->locks_spin);
6241 if (!list_empty(&proc->locks)) {
6242 lkb = list_entry(proc->locks.next, struct dlm_lkb,
6243 lkb_ownqueue);
6244 list_del_init(&lkb->lkb_ownqueue);
6245 }
6246 spin_unlock(&proc->locks_spin);
6247
6248 if (!lkb)
6249 break;
6250
6251 lkb->lkb_flags |= DLM_IFL_DEAD;
6252 unlock_proc_lock(ls, lkb);
6253 dlm_put_lkb(lkb); /* ref from proc->locks list */
6254 }
6255
6256 spin_lock(&proc->locks_spin);
6257 list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) {
6258 list_del_init(&lkb->lkb_ownqueue);
6259 lkb->lkb_flags |= DLM_IFL_DEAD;
6260 dlm_put_lkb(lkb);
6261 }
6262 spin_unlock(&proc->locks_spin);
6263
6264 spin_lock(&proc->asts_spin);
6265 list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_cb_list) {
6266 memset(&lkb->lkb_callbacks, 0,
6267 sizeof(struct dlm_callback) * DLM_CALLBACKS_SIZE);
6268 list_del_init(&lkb->lkb_cb_list);
6269 dlm_put_lkb(lkb);
6270 }
6271 spin_unlock(&proc->asts_spin);
6272 }
6273
6274 /* pid of 0 means purge all orphans */
6275
do_purge(struct dlm_ls * ls,int nodeid,int pid)6276 static void do_purge(struct dlm_ls *ls, int nodeid, int pid)
6277 {
6278 struct dlm_lkb *lkb, *safe;
6279
6280 mutex_lock(&ls->ls_orphans_mutex);
6281 list_for_each_entry_safe(lkb, safe, &ls->ls_orphans, lkb_ownqueue) {
6282 if (pid && lkb->lkb_ownpid != pid)
6283 continue;
6284 unlock_proc_lock(ls, lkb);
6285 list_del_init(&lkb->lkb_ownqueue);
6286 dlm_put_lkb(lkb);
6287 }
6288 mutex_unlock(&ls->ls_orphans_mutex);
6289 }
6290
send_purge(struct dlm_ls * ls,int nodeid,int pid)6291 static int send_purge(struct dlm_ls *ls, int nodeid, int pid)
6292 {
6293 struct dlm_message *ms;
6294 struct dlm_mhandle *mh;
6295 int error;
6296
6297 error = _create_message(ls, sizeof(struct dlm_message), nodeid,
6298 DLM_MSG_PURGE, &ms, &mh);
6299 if (error)
6300 return error;
6301 ms->m_nodeid = cpu_to_le32(nodeid);
6302 ms->m_pid = cpu_to_le32(pid);
6303
6304 return send_message(mh, ms, NULL, 0);
6305 }
6306
dlm_user_purge(struct dlm_ls * ls,struct dlm_user_proc * proc,int nodeid,int pid)6307 int dlm_user_purge(struct dlm_ls *ls, struct dlm_user_proc *proc,
6308 int nodeid, int pid)
6309 {
6310 int error = 0;
6311
6312 if (nodeid && (nodeid != dlm_our_nodeid())) {
6313 error = send_purge(ls, nodeid, pid);
6314 } else {
6315 dlm_lock_recovery(ls);
6316 if (pid == current->pid)
6317 purge_proc_locks(ls, proc);
6318 else
6319 do_purge(ls, nodeid, pid);
6320 dlm_unlock_recovery(ls);
6321 }
6322 return error;
6323 }
6324
6325 /* debug functionality */
dlm_debug_add_lkb(struct dlm_ls * ls,uint32_t lkb_id,char * name,int len,int lkb_nodeid,unsigned int lkb_flags,int lkb_status)6326 int dlm_debug_add_lkb(struct dlm_ls *ls, uint32_t lkb_id, char *name, int len,
6327 int lkb_nodeid, unsigned int lkb_flags, int lkb_status)
6328 {
6329 struct dlm_lksb *lksb;
6330 struct dlm_lkb *lkb;
6331 struct dlm_rsb *r;
6332 int error;
6333
6334 /* we currently can't set a valid user lock */
6335 if (lkb_flags & DLM_IFL_USER)
6336 return -EOPNOTSUPP;
6337
6338 lksb = kzalloc(sizeof(*lksb), GFP_NOFS);
6339 if (!lksb)
6340 return -ENOMEM;
6341
6342 error = _create_lkb(ls, &lkb, lkb_id, lkb_id + 1);
6343 if (error) {
6344 kfree(lksb);
6345 return error;
6346 }
6347
6348 lkb->lkb_flags = lkb_flags;
6349 lkb->lkb_nodeid = lkb_nodeid;
6350 lkb->lkb_lksb = lksb;
6351 /* user specific pointer, just don't have it NULL for kernel locks */
6352 if (~lkb_flags & DLM_IFL_USER)
6353 lkb->lkb_astparam = (void *)0xDEADBEEF;
6354
6355 error = find_rsb(ls, name, len, 0, R_REQUEST, &r);
6356 if (error) {
6357 kfree(lksb);
6358 __put_lkb(ls, lkb);
6359 return error;
6360 }
6361
6362 lock_rsb(r);
6363 attach_lkb(r, lkb);
6364 add_lkb(r, lkb, lkb_status);
6365 unlock_rsb(r);
6366 put_rsb(r);
6367
6368 return 0;
6369 }
6370
dlm_debug_add_lkb_to_waiters(struct dlm_ls * ls,uint32_t lkb_id,int mstype,int to_nodeid)6371 int dlm_debug_add_lkb_to_waiters(struct dlm_ls *ls, uint32_t lkb_id,
6372 int mstype, int to_nodeid)
6373 {
6374 struct dlm_lkb *lkb;
6375 int error;
6376
6377 error = find_lkb(ls, lkb_id, &lkb);
6378 if (error)
6379 return error;
6380
6381 error = add_to_waiters(lkb, mstype, to_nodeid);
6382 dlm_put_lkb(lkb);
6383 return error;
6384 }
6385
6386