1 /******************************************************************************
2 *******************************************************************************
4 ** Copyright (C) 2005-2008 Red Hat, Inc. All rights reserved.
6 ** This copyrighted material is made available to anyone wishing to use,
7 ** modify, copy, or redistribute it subject to the terms and conditions
8 ** of the GNU General Public License v.2.
10 *******************************************************************************
11 ******************************************************************************/
13 /* Central locking logic has four stages:
33 Stage 1 (lock, unlock) is mainly about checking input args and
34 splitting into one of the four main operations:
36 dlm_lock = request_lock
37 dlm_lock+CONVERT = convert_lock
38 dlm_unlock = unlock_lock
39 dlm_unlock+CANCEL = cancel_lock
41 Stage 2, xxxx_lock(), just finds and locks the relevant rsb which is
42 provided to the next stage.
44 Stage 3, _xxxx_lock(), determines if the operation is local or remote.
45 When remote, it calls send_xxxx(), when local it calls do_xxxx().
47 Stage 4, do_xxxx(), is the guts of the operation. It manipulates the
48 given rsb and lkb and queues callbacks.
50 For remote operations, send_xxxx() results in the corresponding do_xxxx()
51 function being executed on the remote node. The connecting send/receive
52 calls on local (L) and remote (R) nodes:
54 L: send_xxxx() -> R: receive_xxxx()
56 L: receive_xxxx_reply() <- R: send_xxxx_reply()
58 #include <linux/types.h>
59 #include "dlm_internal.h"
60 #include <linux/dlm_device.h>
63 #include "requestqueue.h"
67 #include "lockspace.h"
72 #include "lvb_table.h"
76 static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb);
77 static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb);
78 static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb);
79 static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb);
80 static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb);
81 static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode);
82 static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb);
83 static int send_remove(struct dlm_rsb *r);
84 static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb);
85 static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb);
86 static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
87 struct dlm_message *ms);
88 static int receive_extralen(struct dlm_message *ms);
89 static void do_purge(struct dlm_ls *ls, int nodeid, int pid);
90 static void del_timeout(struct dlm_lkb *lkb);
93 * Lock compatibilty matrix - thanks Steve
94 * UN = Unlocked state. Not really a state, used as a flag
95 * PD = Padding. Used to make the matrix a nice power of two in size
96 * Other states are the same as the VMS DLM.
97 * Usage: matrix[grmode+1][rqmode+1] (although m[rq+1][gr+1] is the same)
100 static const int __dlm_compat_matrix[8][8] = {
101 /* UN NL CR CW PR PW EX PD */
102 {1, 1, 1, 1, 1, 1, 1, 0}, /* UN */
103 {1, 1, 1, 1, 1, 1, 1, 0}, /* NL */
104 {1, 1, 1, 1, 1, 1, 0, 0}, /* CR */
105 {1, 1, 1, 1, 0, 0, 0, 0}, /* CW */
106 {1, 1, 1, 0, 1, 0, 0, 0}, /* PR */
107 {1, 1, 1, 0, 0, 0, 0, 0}, /* PW */
108 {1, 1, 0, 0, 0, 0, 0, 0}, /* EX */
109 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
113 * This defines the direction of transfer of LVB data.
114 * Granted mode is the row; requested mode is the column.
115 * Usage: matrix[grmode+1][rqmode+1]
116 * 1 = LVB is returned to the caller
117 * 0 = LVB is written to the resource
118 * -1 = nothing happens to the LVB
121 const int dlm_lvb_operations[8][8] = {
122 /* UN NL CR CW PR PW EX PD*/
123 { -1, 1, 1, 1, 1, 1, 1, -1 }, /* UN */
124 { -1, 1, 1, 1, 1, 1, 1, 0 }, /* NL */
125 { -1, -1, 1, 1, 1, 1, 1, 0 }, /* CR */
126 { -1, -1, -1, 1, 1, 1, 1, 0 }, /* CW */
127 { -1, -1, -1, -1, 1, 1, 1, 0 }, /* PR */
128 { -1, 0, 0, 0, 0, 0, 1, 0 }, /* PW */
129 { -1, 0, 0, 0, 0, 0, 0, 0 }, /* EX */
130 { -1, 0, 0, 0, 0, 0, 0, 0 } /* PD */
133 #define modes_compat(gr, rq) \
134 __dlm_compat_matrix[(gr)->lkb_grmode + 1][(rq)->lkb_rqmode + 1]
136 int dlm_modes_compat(int mode1, int mode2)
138 return __dlm_compat_matrix[mode1 + 1][mode2 + 1];
142 * Compatibility matrix for conversions with QUECVT set.
143 * Granted mode is the row; requested mode is the column.
144 * Usage: matrix[grmode+1][rqmode+1]
147 static const int __quecvt_compat_matrix[8][8] = {
148 /* UN NL CR CW PR PW EX PD */
149 {0, 0, 0, 0, 0, 0, 0, 0}, /* UN */
150 {0, 0, 1, 1, 1, 1, 1, 0}, /* NL */
151 {0, 0, 0, 1, 1, 1, 1, 0}, /* CR */
152 {0, 0, 0, 0, 1, 1, 1, 0}, /* CW */
153 {0, 0, 0, 1, 0, 1, 1, 0}, /* PR */
154 {0, 0, 0, 0, 0, 0, 1, 0}, /* PW */
155 {0, 0, 0, 0, 0, 0, 0, 0}, /* EX */
156 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
159 void dlm_print_lkb(struct dlm_lkb *lkb)
161 printk(KERN_ERR "lkb: nodeid %d id %x remid %x exflags %x flags %x\n"
162 " status %d rqmode %d grmode %d wait_type %d ast_type %d\n",
163 lkb->lkb_nodeid, lkb->lkb_id, lkb->lkb_remid, lkb->lkb_exflags,
164 lkb->lkb_flags, lkb->lkb_status, lkb->lkb_rqmode,
165 lkb->lkb_grmode, lkb->lkb_wait_type, lkb->lkb_ast_type);
168 void dlm_print_rsb(struct dlm_rsb *r)
170 printk(KERN_ERR "rsb: nodeid %d flags %lx first %x rlc %d name %s\n",
171 r->res_nodeid, r->res_flags, r->res_first_lkid,
172 r->res_recover_locks_count, r->res_name);
175 void dlm_dump_rsb(struct dlm_rsb *r)
181 printk(KERN_ERR "rsb: root_list empty %d recover_list empty %d\n",
182 list_empty(&r->res_root_list), list_empty(&r->res_recover_list));
183 printk(KERN_ERR "rsb lookup list\n");
184 list_for_each_entry(lkb, &r->res_lookup, lkb_rsb_lookup)
186 printk(KERN_ERR "rsb grant queue:\n");
187 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue)
189 printk(KERN_ERR "rsb convert queue:\n");
190 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue)
192 printk(KERN_ERR "rsb wait queue:\n");
193 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue)
197 /* Threads cannot use the lockspace while it's being recovered */
199 static inline void dlm_lock_recovery(struct dlm_ls *ls)
201 down_read(&ls->ls_in_recovery);
204 void dlm_unlock_recovery(struct dlm_ls *ls)
206 up_read(&ls->ls_in_recovery);
209 int dlm_lock_recovery_try(struct dlm_ls *ls)
211 return down_read_trylock(&ls->ls_in_recovery);
214 static inline int can_be_queued(struct dlm_lkb *lkb)
216 return !(lkb->lkb_exflags & DLM_LKF_NOQUEUE);
219 static inline int force_blocking_asts(struct dlm_lkb *lkb)
221 return (lkb->lkb_exflags & DLM_LKF_NOQUEUEBAST);
224 static inline int is_demoted(struct dlm_lkb *lkb)
226 return (lkb->lkb_sbflags & DLM_SBF_DEMOTED);
229 static inline int is_altmode(struct dlm_lkb *lkb)
231 return (lkb->lkb_sbflags & DLM_SBF_ALTMODE);
234 static inline int is_granted(struct dlm_lkb *lkb)
236 return (lkb->lkb_status == DLM_LKSTS_GRANTED);
239 static inline int is_remote(struct dlm_rsb *r)
241 DLM_ASSERT(r->res_nodeid >= 0, dlm_print_rsb(r););
242 return !!r->res_nodeid;
245 static inline int is_process_copy(struct dlm_lkb *lkb)
247 return (lkb->lkb_nodeid && !(lkb->lkb_flags & DLM_IFL_MSTCPY));
250 static inline int is_master_copy(struct dlm_lkb *lkb)
252 if (lkb->lkb_flags & DLM_IFL_MSTCPY)
253 DLM_ASSERT(lkb->lkb_nodeid, dlm_print_lkb(lkb););
254 return (lkb->lkb_flags & DLM_IFL_MSTCPY) ? 1 : 0;
257 static inline int middle_conversion(struct dlm_lkb *lkb)
259 if ((lkb->lkb_grmode==DLM_LOCK_PR && lkb->lkb_rqmode==DLM_LOCK_CW) ||
260 (lkb->lkb_rqmode==DLM_LOCK_PR && lkb->lkb_grmode==DLM_LOCK_CW))
265 static inline int down_conversion(struct dlm_lkb *lkb)
267 return (!middle_conversion(lkb) && lkb->lkb_rqmode < lkb->lkb_grmode);
270 static inline int is_overlap_unlock(struct dlm_lkb *lkb)
272 return lkb->lkb_flags & DLM_IFL_OVERLAP_UNLOCK;
275 static inline int is_overlap_cancel(struct dlm_lkb *lkb)
277 return lkb->lkb_flags & DLM_IFL_OVERLAP_CANCEL;
280 static inline int is_overlap(struct dlm_lkb *lkb)
282 return (lkb->lkb_flags & (DLM_IFL_OVERLAP_UNLOCK |
283 DLM_IFL_OVERLAP_CANCEL));
286 static void queue_cast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
288 if (is_master_copy(lkb))
293 DLM_ASSERT(lkb->lkb_lksb, dlm_print_lkb(lkb););
295 /* if the operation was a cancel, then return -DLM_ECANCEL, if a
296 timeout caused the cancel then return -ETIMEDOUT */
297 if (rv == -DLM_ECANCEL && (lkb->lkb_flags & DLM_IFL_TIMEOUT_CANCEL)) {
298 lkb->lkb_flags &= ~DLM_IFL_TIMEOUT_CANCEL;
302 if (rv == -DLM_ECANCEL && (lkb->lkb_flags & DLM_IFL_DEADLOCK_CANCEL)) {
303 lkb->lkb_flags &= ~DLM_IFL_DEADLOCK_CANCEL;
307 lkb->lkb_lksb->sb_status = rv;
308 lkb->lkb_lksb->sb_flags = lkb->lkb_sbflags;
310 dlm_add_ast(lkb, AST_COMP);
313 static inline void queue_cast_overlap(struct dlm_rsb *r, struct dlm_lkb *lkb)
316 is_overlap_unlock(lkb) ? -DLM_EUNLOCK : -DLM_ECANCEL);
319 static void queue_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rqmode)
321 if (is_master_copy(lkb))
322 send_bast(r, lkb, rqmode);
324 lkb->lkb_bastmode = rqmode;
325 dlm_add_ast(lkb, AST_BAST);
330 * Basic operations on rsb's and lkb's
333 static struct dlm_rsb *create_rsb(struct dlm_ls *ls, char *name, int len)
337 r = dlm_allocate_rsb(ls, len);
343 memcpy(r->res_name, name, len);
344 mutex_init(&r->res_mutex);
346 INIT_LIST_HEAD(&r->res_lookup);
347 INIT_LIST_HEAD(&r->res_grantqueue);
348 INIT_LIST_HEAD(&r->res_convertqueue);
349 INIT_LIST_HEAD(&r->res_waitqueue);
350 INIT_LIST_HEAD(&r->res_root_list);
351 INIT_LIST_HEAD(&r->res_recover_list);
356 static int search_rsb_list(struct list_head *head, char *name, int len,
357 unsigned int flags, struct dlm_rsb **r_ret)
362 list_for_each_entry(r, head, res_hashchain) {
363 if (len == r->res_length && !memcmp(name, r->res_name, len))
369 if (r->res_nodeid && (flags & R_MASTER))
375 static int _search_rsb(struct dlm_ls *ls, char *name, int len, int b,
376 unsigned int flags, struct dlm_rsb **r_ret)
381 error = search_rsb_list(&ls->ls_rsbtbl[b].list, name, len, flags, &r);
383 kref_get(&r->res_ref);
386 error = search_rsb_list(&ls->ls_rsbtbl[b].toss, name, len, flags, &r);
390 list_move(&r->res_hashchain, &ls->ls_rsbtbl[b].list);
392 if (dlm_no_directory(ls))
395 if (r->res_nodeid == -1) {
396 rsb_clear_flag(r, RSB_MASTER_UNCERTAIN);
397 r->res_first_lkid = 0;
398 } else if (r->res_nodeid > 0) {
399 rsb_set_flag(r, RSB_MASTER_UNCERTAIN);
400 r->res_first_lkid = 0;
402 DLM_ASSERT(r->res_nodeid == 0, dlm_print_rsb(r););
403 DLM_ASSERT(!rsb_flag(r, RSB_MASTER_UNCERTAIN),);
410 static int search_rsb(struct dlm_ls *ls, char *name, int len, int b,
411 unsigned int flags, struct dlm_rsb **r_ret)
414 write_lock(&ls->ls_rsbtbl[b].lock);
415 error = _search_rsb(ls, name, len, b, flags, r_ret);
416 write_unlock(&ls->ls_rsbtbl[b].lock);
421 * Find rsb in rsbtbl and potentially create/add one
423 * Delaying the release of rsb's has a similar benefit to applications keeping
424 * NL locks on an rsb, but without the guarantee that the cached master value
425 * will still be valid when the rsb is reused. Apps aren't always smart enough
426 * to keep NL locks on an rsb that they may lock again shortly; this can lead
427 * to excessive master lookups and removals if we don't delay the release.
429 * Searching for an rsb means looking through both the normal list and toss
430 * list. When found on the toss list the rsb is moved to the normal list with
431 * ref count of 1; when found on normal list the ref count is incremented.
434 static int find_rsb(struct dlm_ls *ls, char *name, int namelen,
435 unsigned int flags, struct dlm_rsb **r_ret)
437 struct dlm_rsb *r, *tmp;
438 uint32_t hash, bucket;
441 if (dlm_no_directory(ls))
444 hash = jhash(name, namelen, 0);
445 bucket = hash & (ls->ls_rsbtbl_size - 1);
447 error = search_rsb(ls, name, namelen, bucket, flags, &r);
451 if (error == -EBADR && !(flags & R_CREATE))
454 /* the rsb was found but wasn't a master copy */
455 if (error == -ENOTBLK)
459 r = create_rsb(ls, name, namelen);
464 r->res_bucket = bucket;
466 kref_init(&r->res_ref);
468 /* With no directory, the master can be set immediately */
469 if (dlm_no_directory(ls)) {
470 int nodeid = dlm_dir_nodeid(r);
471 if (nodeid == dlm_our_nodeid())
473 r->res_nodeid = nodeid;
476 write_lock(&ls->ls_rsbtbl[bucket].lock);
477 error = _search_rsb(ls, name, namelen, bucket, 0, &tmp);
479 write_unlock(&ls->ls_rsbtbl[bucket].lock);
484 list_add(&r->res_hashchain, &ls->ls_rsbtbl[bucket].list);
485 write_unlock(&ls->ls_rsbtbl[bucket].lock);
492 /* This is only called to add a reference when the code already holds
493 a valid reference to the rsb, so there's no need for locking. */
495 static inline void hold_rsb(struct dlm_rsb *r)
497 kref_get(&r->res_ref);
500 void dlm_hold_rsb(struct dlm_rsb *r)
505 static void toss_rsb(struct kref *kref)
507 struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref);
508 struct dlm_ls *ls = r->res_ls;
510 DLM_ASSERT(list_empty(&r->res_root_list), dlm_print_rsb(r););
511 kref_init(&r->res_ref);
512 list_move(&r->res_hashchain, &ls->ls_rsbtbl[r->res_bucket].toss);
513 r->res_toss_time = jiffies;
515 dlm_free_lvb(r->res_lvbptr);
516 r->res_lvbptr = NULL;
520 /* When all references to the rsb are gone it's transfered to
521 the tossed list for later disposal. */
523 static void put_rsb(struct dlm_rsb *r)
525 struct dlm_ls *ls = r->res_ls;
526 uint32_t bucket = r->res_bucket;
528 write_lock(&ls->ls_rsbtbl[bucket].lock);
529 kref_put(&r->res_ref, toss_rsb);
530 write_unlock(&ls->ls_rsbtbl[bucket].lock);
533 void dlm_put_rsb(struct dlm_rsb *r)
538 /* See comment for unhold_lkb */
540 static void unhold_rsb(struct dlm_rsb *r)
543 rv = kref_put(&r->res_ref, toss_rsb);
544 DLM_ASSERT(!rv, dlm_dump_rsb(r););
547 static void kill_rsb(struct kref *kref)
549 struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref);
551 /* All work is done after the return from kref_put() so we
552 can release the write_lock before the remove and free. */
554 DLM_ASSERT(list_empty(&r->res_lookup), dlm_dump_rsb(r););
555 DLM_ASSERT(list_empty(&r->res_grantqueue), dlm_dump_rsb(r););
556 DLM_ASSERT(list_empty(&r->res_convertqueue), dlm_dump_rsb(r););
557 DLM_ASSERT(list_empty(&r->res_waitqueue), dlm_dump_rsb(r););
558 DLM_ASSERT(list_empty(&r->res_root_list), dlm_dump_rsb(r););
559 DLM_ASSERT(list_empty(&r->res_recover_list), dlm_dump_rsb(r););
562 /* Attaching/detaching lkb's from rsb's is for rsb reference counting.
563 The rsb must exist as long as any lkb's for it do. */
565 static void attach_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb)
568 lkb->lkb_resource = r;
571 static void detach_lkb(struct dlm_lkb *lkb)
573 if (lkb->lkb_resource) {
574 put_rsb(lkb->lkb_resource);
575 lkb->lkb_resource = NULL;
579 static int create_lkb(struct dlm_ls *ls, struct dlm_lkb **lkb_ret)
581 struct dlm_lkb *lkb, *tmp;
585 lkb = dlm_allocate_lkb(ls);
589 lkb->lkb_nodeid = -1;
590 lkb->lkb_grmode = DLM_LOCK_IV;
591 kref_init(&lkb->lkb_ref);
592 INIT_LIST_HEAD(&lkb->lkb_ownqueue);
593 INIT_LIST_HEAD(&lkb->lkb_rsb_lookup);
594 INIT_LIST_HEAD(&lkb->lkb_time_list);
596 get_random_bytes(&bucket, sizeof(bucket));
597 bucket &= (ls->ls_lkbtbl_size - 1);
599 write_lock(&ls->ls_lkbtbl[bucket].lock);
601 /* counter can roll over so we must verify lkid is not in use */
604 lkid = (bucket << 16) | ls->ls_lkbtbl[bucket].counter++;
606 list_for_each_entry(tmp, &ls->ls_lkbtbl[bucket].list,
608 if (tmp->lkb_id != lkid)
616 list_add(&lkb->lkb_idtbl_list, &ls->ls_lkbtbl[bucket].list);
617 write_unlock(&ls->ls_lkbtbl[bucket].lock);
623 static struct dlm_lkb *__find_lkb(struct dlm_ls *ls, uint32_t lkid)
626 uint16_t bucket = (lkid >> 16);
628 list_for_each_entry(lkb, &ls->ls_lkbtbl[bucket].list, lkb_idtbl_list) {
629 if (lkb->lkb_id == lkid)
635 static int find_lkb(struct dlm_ls *ls, uint32_t lkid, struct dlm_lkb **lkb_ret)
638 uint16_t bucket = (lkid >> 16);
640 if (bucket >= ls->ls_lkbtbl_size)
643 read_lock(&ls->ls_lkbtbl[bucket].lock);
644 lkb = __find_lkb(ls, lkid);
646 kref_get(&lkb->lkb_ref);
647 read_unlock(&ls->ls_lkbtbl[bucket].lock);
650 return lkb ? 0 : -ENOENT;
653 static void kill_lkb(struct kref *kref)
655 struct dlm_lkb *lkb = container_of(kref, struct dlm_lkb, lkb_ref);
657 /* All work is done after the return from kref_put() so we
658 can release the write_lock before the detach_lkb */
660 DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb););
663 /* __put_lkb() is used when an lkb may not have an rsb attached to
664 it so we need to provide the lockspace explicitly */
666 static int __put_lkb(struct dlm_ls *ls, struct dlm_lkb *lkb)
668 uint16_t bucket = (lkb->lkb_id >> 16);
670 write_lock(&ls->ls_lkbtbl[bucket].lock);
671 if (kref_put(&lkb->lkb_ref, kill_lkb)) {
672 list_del(&lkb->lkb_idtbl_list);
673 write_unlock(&ls->ls_lkbtbl[bucket].lock);
677 /* for local/process lkbs, lvbptr points to caller's lksb */
678 if (lkb->lkb_lvbptr && is_master_copy(lkb))
679 dlm_free_lvb(lkb->lkb_lvbptr);
683 write_unlock(&ls->ls_lkbtbl[bucket].lock);
688 int dlm_put_lkb(struct dlm_lkb *lkb)
692 DLM_ASSERT(lkb->lkb_resource, dlm_print_lkb(lkb););
693 DLM_ASSERT(lkb->lkb_resource->res_ls, dlm_print_lkb(lkb););
695 ls = lkb->lkb_resource->res_ls;
696 return __put_lkb(ls, lkb);
699 /* This is only called to add a reference when the code already holds
700 a valid reference to the lkb, so there's no need for locking. */
702 static inline void hold_lkb(struct dlm_lkb *lkb)
704 kref_get(&lkb->lkb_ref);
707 /* This is called when we need to remove a reference and are certain
708 it's not the last ref. e.g. del_lkb is always called between a
709 find_lkb/put_lkb and is always the inverse of a previous add_lkb.
710 put_lkb would work fine, but would involve unnecessary locking */
712 static inline void unhold_lkb(struct dlm_lkb *lkb)
715 rv = kref_put(&lkb->lkb_ref, kill_lkb);
716 DLM_ASSERT(!rv, dlm_print_lkb(lkb););
719 static void lkb_add_ordered(struct list_head *new, struct list_head *head,
722 struct dlm_lkb *lkb = NULL;
724 list_for_each_entry(lkb, head, lkb_statequeue)
725 if (lkb->lkb_rqmode < mode)
729 list_add_tail(new, head);
731 __list_add(new, lkb->lkb_statequeue.prev, &lkb->lkb_statequeue);
734 /* add/remove lkb to rsb's grant/convert/wait queue */
736 static void add_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int status)
738 kref_get(&lkb->lkb_ref);
740 DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb););
742 lkb->lkb_status = status;
745 case DLM_LKSTS_WAITING:
746 if (lkb->lkb_exflags & DLM_LKF_HEADQUE)
747 list_add(&lkb->lkb_statequeue, &r->res_waitqueue);
749 list_add_tail(&lkb->lkb_statequeue, &r->res_waitqueue);
751 case DLM_LKSTS_GRANTED:
752 /* convention says granted locks kept in order of grmode */
753 lkb_add_ordered(&lkb->lkb_statequeue, &r->res_grantqueue,
756 case DLM_LKSTS_CONVERT:
757 if (lkb->lkb_exflags & DLM_LKF_HEADQUE)
758 list_add(&lkb->lkb_statequeue, &r->res_convertqueue);
760 list_add_tail(&lkb->lkb_statequeue,
761 &r->res_convertqueue);
764 DLM_ASSERT(0, dlm_print_lkb(lkb); printk("sts=%d\n", status););
768 static void del_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb)
771 list_del(&lkb->lkb_statequeue);
775 static void move_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int sts)
779 add_lkb(r, lkb, sts);
783 static int msg_reply_type(int mstype)
786 case DLM_MSG_REQUEST:
787 return DLM_MSG_REQUEST_REPLY;
788 case DLM_MSG_CONVERT:
789 return DLM_MSG_CONVERT_REPLY;
791 return DLM_MSG_UNLOCK_REPLY;
793 return DLM_MSG_CANCEL_REPLY;
795 return DLM_MSG_LOOKUP_REPLY;
800 /* add/remove lkb from global waiters list of lkb's waiting for
801 a reply from a remote node */
803 static int add_to_waiters(struct dlm_lkb *lkb, int mstype)
805 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
808 mutex_lock(&ls->ls_waiters_mutex);
810 if (is_overlap_unlock(lkb) ||
811 (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL))) {
816 if (lkb->lkb_wait_type || is_overlap_cancel(lkb)) {
819 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
822 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
828 lkb->lkb_wait_count++;
831 log_debug(ls, "add overlap %x cur %d new %d count %d flags %x",
832 lkb->lkb_id, lkb->lkb_wait_type, mstype,
833 lkb->lkb_wait_count, lkb->lkb_flags);
837 DLM_ASSERT(!lkb->lkb_wait_count,
839 printk("wait_count %d\n", lkb->lkb_wait_count););
841 lkb->lkb_wait_count++;
842 lkb->lkb_wait_type = mstype;
844 list_add(&lkb->lkb_wait_reply, &ls->ls_waiters);
847 log_error(ls, "add_to_waiters %x error %d flags %x %d %d %s",
848 lkb->lkb_id, error, lkb->lkb_flags, mstype,
849 lkb->lkb_wait_type, lkb->lkb_resource->res_name);
850 mutex_unlock(&ls->ls_waiters_mutex);
854 /* We clear the RESEND flag because we might be taking an lkb off the waiters
855 list as part of process_requestqueue (e.g. a lookup that has an optimized
856 request reply on the requestqueue) between dlm_recover_waiters_pre() which
857 set RESEND and dlm_recover_waiters_post() */
859 static int _remove_from_waiters(struct dlm_lkb *lkb, int mstype)
861 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
862 int overlap_done = 0;
864 if (is_overlap_unlock(lkb) && (mstype == DLM_MSG_UNLOCK_REPLY)) {
865 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
870 if (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL_REPLY)) {
871 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
876 /* N.B. type of reply may not always correspond to type of original
877 msg due to lookup->request optimization, verify others? */
879 if (lkb->lkb_wait_type) {
880 lkb->lkb_wait_type = 0;
884 log_error(ls, "remove_from_waiters lkid %x flags %x types %d %d",
885 lkb->lkb_id, lkb->lkb_flags, mstype, lkb->lkb_wait_type);
889 /* the force-unlock/cancel has completed and we haven't recvd a reply
890 to the op that was in progress prior to the unlock/cancel; we
891 give up on any reply to the earlier op. FIXME: not sure when/how
894 if (overlap_done && lkb->lkb_wait_type) {
895 log_error(ls, "remove_from_waiters %x reply %d give up on %d",
896 lkb->lkb_id, mstype, lkb->lkb_wait_type);
897 lkb->lkb_wait_count--;
898 lkb->lkb_wait_type = 0;
901 DLM_ASSERT(lkb->lkb_wait_count, dlm_print_lkb(lkb););
903 lkb->lkb_flags &= ~DLM_IFL_RESEND;
904 lkb->lkb_wait_count--;
905 if (!lkb->lkb_wait_count)
906 list_del_init(&lkb->lkb_wait_reply);
911 static int remove_from_waiters(struct dlm_lkb *lkb, int mstype)
913 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
916 mutex_lock(&ls->ls_waiters_mutex);
917 error = _remove_from_waiters(lkb, mstype);
918 mutex_unlock(&ls->ls_waiters_mutex);
922 /* Handles situations where we might be processing a "fake" or "stub" reply in
923 which we can't try to take waiters_mutex again. */
925 static int remove_from_waiters_ms(struct dlm_lkb *lkb, struct dlm_message *ms)
927 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
930 if (ms != &ls->ls_stub_ms)
931 mutex_lock(&ls->ls_waiters_mutex);
932 error = _remove_from_waiters(lkb, ms->m_type);
933 if (ms != &ls->ls_stub_ms)
934 mutex_unlock(&ls->ls_waiters_mutex);
938 static void dir_remove(struct dlm_rsb *r)
942 if (dlm_no_directory(r->res_ls))
945 to_nodeid = dlm_dir_nodeid(r);
946 if (to_nodeid != dlm_our_nodeid())
949 dlm_dir_remove_entry(r->res_ls, to_nodeid,
950 r->res_name, r->res_length);
953 /* FIXME: shouldn't this be able to exit as soon as one non-due rsb is
954 found since they are in order of newest to oldest? */
956 static int shrink_bucket(struct dlm_ls *ls, int b)
959 int count = 0, found;
963 write_lock(&ls->ls_rsbtbl[b].lock);
964 list_for_each_entry_reverse(r, &ls->ls_rsbtbl[b].toss,
966 if (!time_after_eq(jiffies, r->res_toss_time +
967 dlm_config.ci_toss_secs * HZ))
974 write_unlock(&ls->ls_rsbtbl[b].lock);
978 if (kref_put(&r->res_ref, kill_rsb)) {
979 list_del(&r->res_hashchain);
980 write_unlock(&ls->ls_rsbtbl[b].lock);
987 write_unlock(&ls->ls_rsbtbl[b].lock);
988 log_error(ls, "tossed rsb in use %s", r->res_name);
995 void dlm_scan_rsbs(struct dlm_ls *ls)
999 for (i = 0; i < ls->ls_rsbtbl_size; i++) {
1000 shrink_bucket(ls, i);
1001 if (dlm_locking_stopped(ls))
1007 static void add_timeout(struct dlm_lkb *lkb)
1009 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1011 if (is_master_copy(lkb)) {
1012 lkb->lkb_timestamp = jiffies;
1016 if (test_bit(LSFL_TIMEWARN, &ls->ls_flags) &&
1017 !(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) {
1018 lkb->lkb_flags |= DLM_IFL_WATCH_TIMEWARN;
1021 if (lkb->lkb_exflags & DLM_LKF_TIMEOUT)
1026 DLM_ASSERT(list_empty(&lkb->lkb_time_list), dlm_print_lkb(lkb););
1027 mutex_lock(&ls->ls_timeout_mutex);
1029 lkb->lkb_timestamp = jiffies;
1030 list_add_tail(&lkb->lkb_time_list, &ls->ls_timeout);
1031 mutex_unlock(&ls->ls_timeout_mutex);
1034 static void del_timeout(struct dlm_lkb *lkb)
1036 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
1038 mutex_lock(&ls->ls_timeout_mutex);
1039 if (!list_empty(&lkb->lkb_time_list)) {
1040 list_del_init(&lkb->lkb_time_list);
1043 mutex_unlock(&ls->ls_timeout_mutex);
1046 /* FIXME: is it safe to look at lkb_exflags, lkb_flags, lkb_timestamp, and
1047 lkb_lksb_timeout without lock_rsb? Note: we can't lock timeout_mutex
1048 and then lock rsb because of lock ordering in add_timeout. We may need
1049 to specify some special timeout-related bits in the lkb that are just to
1050 be accessed under the timeout_mutex. */
1052 void dlm_scan_timeout(struct dlm_ls *ls)
1055 struct dlm_lkb *lkb;
1056 int do_cancel, do_warn;
1059 if (dlm_locking_stopped(ls))
1064 mutex_lock(&ls->ls_timeout_mutex);
1065 list_for_each_entry(lkb, &ls->ls_timeout, lkb_time_list) {
1067 if ((lkb->lkb_exflags & DLM_LKF_TIMEOUT) &&
1068 time_after_eq(jiffies, lkb->lkb_timestamp +
1069 lkb->lkb_timeout_cs * HZ/100))
1072 if ((lkb->lkb_flags & DLM_IFL_WATCH_TIMEWARN) &&
1073 time_after_eq(jiffies, lkb->lkb_timestamp +
1074 dlm_config.ci_timewarn_cs * HZ/100))
1077 if (!do_cancel && !do_warn)
1082 mutex_unlock(&ls->ls_timeout_mutex);
1084 if (!do_cancel && !do_warn)
1087 r = lkb->lkb_resource;
1092 /* clear flag so we only warn once */
1093 lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN;
1094 if (!(lkb->lkb_exflags & DLM_LKF_TIMEOUT))
1096 dlm_timeout_warn(lkb);
1100 log_debug(ls, "timeout cancel %x node %d %s",
1101 lkb->lkb_id, lkb->lkb_nodeid, r->res_name);
1102 lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN;
1103 lkb->lkb_flags |= DLM_IFL_TIMEOUT_CANCEL;
1105 _cancel_lock(r, lkb);
1114 /* This is only called by dlm_recoverd, and we rely on dlm_ls_stop() stopping
1115 dlm_recoverd before checking/setting ls_recover_begin. */
1117 void dlm_adjust_timeouts(struct dlm_ls *ls)
1119 struct dlm_lkb *lkb;
1120 long adj = jiffies - ls->ls_recover_begin;
1122 ls->ls_recover_begin = 0;
1123 mutex_lock(&ls->ls_timeout_mutex);
1124 list_for_each_entry(lkb, &ls->ls_timeout, lkb_time_list)
1125 lkb->lkb_timestamp += adj;
1126 mutex_unlock(&ls->ls_timeout_mutex);
1129 /* lkb is master or local copy */
1131 static void set_lvb_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1133 int b, len = r->res_ls->ls_lvblen;
1135 /* b=1 lvb returned to caller
1136 b=0 lvb written to rsb or invalidated
1139 b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1];
1142 if (!lkb->lkb_lvbptr)
1145 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1151 memcpy(lkb->lkb_lvbptr, r->res_lvbptr, len);
1152 lkb->lkb_lvbseq = r->res_lvbseq;
1154 } else if (b == 0) {
1155 if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) {
1156 rsb_set_flag(r, RSB_VALNOTVALID);
1160 if (!lkb->lkb_lvbptr)
1163 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1167 r->res_lvbptr = dlm_allocate_lvb(r->res_ls);
1172 memcpy(r->res_lvbptr, lkb->lkb_lvbptr, len);
1174 lkb->lkb_lvbseq = r->res_lvbseq;
1175 rsb_clear_flag(r, RSB_VALNOTVALID);
1178 if (rsb_flag(r, RSB_VALNOTVALID))
1179 lkb->lkb_sbflags |= DLM_SBF_VALNOTVALID;
1182 static void set_lvb_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1184 if (lkb->lkb_grmode < DLM_LOCK_PW)
1187 if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) {
1188 rsb_set_flag(r, RSB_VALNOTVALID);
1192 if (!lkb->lkb_lvbptr)
1195 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1199 r->res_lvbptr = dlm_allocate_lvb(r->res_ls);
1204 memcpy(r->res_lvbptr, lkb->lkb_lvbptr, r->res_ls->ls_lvblen);
1206 rsb_clear_flag(r, RSB_VALNOTVALID);
1209 /* lkb is process copy (pc) */
1211 static void set_lvb_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb,
1212 struct dlm_message *ms)
1216 if (!lkb->lkb_lvbptr)
1219 if (!(lkb->lkb_exflags & DLM_LKF_VALBLK))
1222 b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1];
1224 int len = receive_extralen(ms);
1225 memcpy(lkb->lkb_lvbptr, ms->m_extra, len);
1226 lkb->lkb_lvbseq = ms->m_lvbseq;
1230 /* Manipulate lkb's on rsb's convert/granted/waiting queues
1231 remove_lock -- used for unlock, removes lkb from granted
1232 revert_lock -- used for cancel, moves lkb from convert to granted
1233 grant_lock -- used for request and convert, adds lkb to granted or
1234 moves lkb from convert or waiting to granted
1236 Each of these is used for master or local copy lkb's. There is
1237 also a _pc() variation used to make the corresponding change on
1238 a process copy (pc) lkb. */
1240 static void _remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1243 lkb->lkb_grmode = DLM_LOCK_IV;
1244 /* this unhold undoes the original ref from create_lkb()
1245 so this leads to the lkb being freed */
1249 static void remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1251 set_lvb_unlock(r, lkb);
1252 _remove_lock(r, lkb);
1255 static void remove_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb)
1257 _remove_lock(r, lkb);
1260 /* returns: 0 did nothing
1261 1 moved lock to granted
1264 static int revert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1268 lkb->lkb_rqmode = DLM_LOCK_IV;
1270 switch (lkb->lkb_status) {
1271 case DLM_LKSTS_GRANTED:
1273 case DLM_LKSTS_CONVERT:
1274 move_lkb(r, lkb, DLM_LKSTS_GRANTED);
1277 case DLM_LKSTS_WAITING:
1279 lkb->lkb_grmode = DLM_LOCK_IV;
1280 /* this unhold undoes the original ref from create_lkb()
1281 so this leads to the lkb being freed */
1286 log_print("invalid status for revert %d", lkb->lkb_status);
1291 static int revert_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb)
1293 return revert_lock(r, lkb);
1296 static void _grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1298 if (lkb->lkb_grmode != lkb->lkb_rqmode) {
1299 lkb->lkb_grmode = lkb->lkb_rqmode;
1300 if (lkb->lkb_status)
1301 move_lkb(r, lkb, DLM_LKSTS_GRANTED);
1303 add_lkb(r, lkb, DLM_LKSTS_GRANTED);
1306 lkb->lkb_rqmode = DLM_LOCK_IV;
1309 static void grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
1311 set_lvb_lock(r, lkb);
1312 _grant_lock(r, lkb);
1313 lkb->lkb_highbast = 0;
1316 static void grant_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb,
1317 struct dlm_message *ms)
1319 set_lvb_lock_pc(r, lkb, ms);
1320 _grant_lock(r, lkb);
1323 /* called by grant_pending_locks() which means an async grant message must
1324 be sent to the requesting node in addition to granting the lock if the
1325 lkb belongs to a remote node. */
1327 static void grant_lock_pending(struct dlm_rsb *r, struct dlm_lkb *lkb)
1330 if (is_master_copy(lkb))
1333 queue_cast(r, lkb, 0);
1336 /* The special CONVDEADLK, ALTPR and ALTCW flags allow the master to
1337 change the granted/requested modes. We're munging things accordingly in
1339 CONVDEADLK: our grmode may have been forced down to NL to resolve a
1341 ALTPR/ALTCW: our rqmode may have been changed to PR or CW to become
1342 compatible with other granted locks */
1344 static void munge_demoted(struct dlm_lkb *lkb, struct dlm_message *ms)
1346 if (ms->m_type != DLM_MSG_CONVERT_REPLY) {
1347 log_print("munge_demoted %x invalid reply type %d",
1348 lkb->lkb_id, ms->m_type);
1352 if (lkb->lkb_rqmode == DLM_LOCK_IV || lkb->lkb_grmode == DLM_LOCK_IV) {
1353 log_print("munge_demoted %x invalid modes gr %d rq %d",
1354 lkb->lkb_id, lkb->lkb_grmode, lkb->lkb_rqmode);
1358 lkb->lkb_grmode = DLM_LOCK_NL;
1361 static void munge_altmode(struct dlm_lkb *lkb, struct dlm_message *ms)
1363 if (ms->m_type != DLM_MSG_REQUEST_REPLY &&
1364 ms->m_type != DLM_MSG_GRANT) {
1365 log_print("munge_altmode %x invalid reply type %d",
1366 lkb->lkb_id, ms->m_type);
1370 if (lkb->lkb_exflags & DLM_LKF_ALTPR)
1371 lkb->lkb_rqmode = DLM_LOCK_PR;
1372 else if (lkb->lkb_exflags & DLM_LKF_ALTCW)
1373 lkb->lkb_rqmode = DLM_LOCK_CW;
1375 log_print("munge_altmode invalid exflags %x", lkb->lkb_exflags);
1380 static inline int first_in_list(struct dlm_lkb *lkb, struct list_head *head)
1382 struct dlm_lkb *first = list_entry(head->next, struct dlm_lkb,
1384 if (lkb->lkb_id == first->lkb_id)
1390 /* Check if the given lkb conflicts with another lkb on the queue. */
1392 static int queue_conflict(struct list_head *head, struct dlm_lkb *lkb)
1394 struct dlm_lkb *this;
1396 list_for_each_entry(this, head, lkb_statequeue) {
1399 if (!modes_compat(this, lkb))
1406 * "A conversion deadlock arises with a pair of lock requests in the converting
1407 * queue for one resource. The granted mode of each lock blocks the requested
1408 * mode of the other lock."
1410 * Part 2: if the granted mode of lkb is preventing an earlier lkb in the
1411 * convert queue from being granted, then deadlk/demote lkb.
1414 * Granted Queue: empty
1415 * Convert Queue: NL->EX (first lock)
1416 * PR->EX (second lock)
1418 * The first lock can't be granted because of the granted mode of the second
1419 * lock and the second lock can't be granted because it's not first in the
1420 * list. We either cancel lkb's conversion (PR->EX) and return EDEADLK, or we
1421 * demote the granted mode of lkb (from PR to NL) if it has the CONVDEADLK
1422 * flag set and return DEMOTED in the lksb flags.
1424 * Originally, this function detected conv-deadlk in a more limited scope:
1425 * - if !modes_compat(lkb1, lkb2) && !modes_compat(lkb2, lkb1), or
1426 * - if lkb1 was the first entry in the queue (not just earlier), and was
1427 * blocked by the granted mode of lkb2, and there was nothing on the
1428 * granted queue preventing lkb1 from being granted immediately, i.e.
1429 * lkb2 was the only thing preventing lkb1 from being granted.
1431 * That second condition meant we'd only say there was conv-deadlk if
1432 * resolving it (by demotion) would lead to the first lock on the convert
1433 * queue being granted right away. It allowed conversion deadlocks to exist
1434 * between locks on the convert queue while they couldn't be granted anyway.
1436 * Now, we detect and take action on conversion deadlocks immediately when
1437 * they're created, even if they may not be immediately consequential. If
1438 * lkb1 exists anywhere in the convert queue and lkb2 comes in with a granted
1439 * mode that would prevent lkb1's conversion from being granted, we do a
1440 * deadlk/demote on lkb2 right away and don't let it onto the convert queue.
1441 * I think this means that the lkb_is_ahead condition below should always
1442 * be zero, i.e. there will never be conv-deadlk between two locks that are
1443 * both already on the convert queue.
1446 static int conversion_deadlock_detect(struct dlm_rsb *r, struct dlm_lkb *lkb2)
1448 struct dlm_lkb *lkb1;
1449 int lkb_is_ahead = 0;
1451 list_for_each_entry(lkb1, &r->res_convertqueue, lkb_statequeue) {
1457 if (!lkb_is_ahead) {
1458 if (!modes_compat(lkb2, lkb1))
1461 if (!modes_compat(lkb2, lkb1) &&
1462 !modes_compat(lkb1, lkb2))
1470 * Return 1 if the lock can be granted, 0 otherwise.
1471 * Also detect and resolve conversion deadlocks.
1473 * lkb is the lock to be granted
1475 * now is 1 if the function is being called in the context of the
1476 * immediate request, it is 0 if called later, after the lock has been
1479 * References are from chapter 6 of "VAXcluster Principles" by Roy Davis
1482 static int _can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now)
1484 int8_t conv = (lkb->lkb_grmode != DLM_LOCK_IV);
1487 * 6-10: Version 5.4 introduced an option to address the phenomenon of
1488 * a new request for a NL mode lock being blocked.
1490 * 6-11: If the optional EXPEDITE flag is used with the new NL mode
1491 * request, then it would be granted. In essence, the use of this flag
1492 * tells the Lock Manager to expedite theis request by not considering
1493 * what may be in the CONVERTING or WAITING queues... As of this
1494 * writing, the EXPEDITE flag can be used only with new requests for NL
1495 * mode locks. This flag is not valid for conversion requests.
1497 * A shortcut. Earlier checks return an error if EXPEDITE is used in a
1498 * conversion or used with a non-NL requested mode. We also know an
1499 * EXPEDITE request is always granted immediately, so now must always
1500 * be 1. The full condition to grant an expedite request: (now &&
1501 * !conv && lkb->rqmode == DLM_LOCK_NL && (flags & EXPEDITE)) can
1502 * therefore be shortened to just checking the flag.
1505 if (lkb->lkb_exflags & DLM_LKF_EXPEDITE)
1509 * A shortcut. Without this, !queue_conflict(grantqueue, lkb) would be
1510 * added to the remaining conditions.
1513 if (queue_conflict(&r->res_grantqueue, lkb))
1517 * 6-3: By default, a conversion request is immediately granted if the
1518 * requested mode is compatible with the modes of all other granted
1522 if (queue_conflict(&r->res_convertqueue, lkb))
1526 * 6-5: But the default algorithm for deciding whether to grant or
1527 * queue conversion requests does not by itself guarantee that such
1528 * requests are serviced on a "first come first serve" basis. This, in
1529 * turn, can lead to a phenomenon known as "indefinate postponement".
1531 * 6-7: This issue is dealt with by using the optional QUECVT flag with
1532 * the system service employed to request a lock conversion. This flag
1533 * forces certain conversion requests to be queued, even if they are
1534 * compatible with the granted modes of other locks on the same
1535 * resource. Thus, the use of this flag results in conversion requests
1536 * being ordered on a "first come first servce" basis.
1538 * DCT: This condition is all about new conversions being able to occur
1539 * "in place" while the lock remains on the granted queue (assuming
1540 * nothing else conflicts.) IOW if QUECVT isn't set, a conversion
1541 * doesn't _have_ to go onto the convert queue where it's processed in
1542 * order. The "now" variable is necessary to distinguish converts
1543 * being received and processed for the first time now, because once a
1544 * convert is moved to the conversion queue the condition below applies
1545 * requiring fifo granting.
1548 if (now && conv && !(lkb->lkb_exflags & DLM_LKF_QUECVT))
1552 * The NOORDER flag is set to avoid the standard vms rules on grant
1556 if (lkb->lkb_exflags & DLM_LKF_NOORDER)
1560 * 6-3: Once in that queue [CONVERTING], a conversion request cannot be
1561 * granted until all other conversion requests ahead of it are granted
1565 if (!now && conv && first_in_list(lkb, &r->res_convertqueue))
1569 * 6-4: By default, a new request is immediately granted only if all
1570 * three of the following conditions are satisfied when the request is
1572 * - The queue of ungranted conversion requests for the resource is
1574 * - The queue of ungranted new requests for the resource is empty.
1575 * - The mode of the new request is compatible with the most
1576 * restrictive mode of all granted locks on the resource.
1579 if (now && !conv && list_empty(&r->res_convertqueue) &&
1580 list_empty(&r->res_waitqueue))
1584 * 6-4: Once a lock request is in the queue of ungranted new requests,
1585 * it cannot be granted until the queue of ungranted conversion
1586 * requests is empty, all ungranted new requests ahead of it are
1587 * granted and/or canceled, and it is compatible with the granted mode
1588 * of the most restrictive lock granted on the resource.
1591 if (!now && !conv && list_empty(&r->res_convertqueue) &&
1592 first_in_list(lkb, &r->res_waitqueue))
1598 static int can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now,
1602 int8_t alt = 0, rqmode = lkb->lkb_rqmode;
1603 int8_t is_convert = (lkb->lkb_grmode != DLM_LOCK_IV);
1608 rv = _can_be_granted(r, lkb, now);
1613 * The CONVDEADLK flag is non-standard and tells the dlm to resolve
1614 * conversion deadlocks by demoting grmode to NL, otherwise the dlm
1615 * cancels one of the locks.
1618 if (is_convert && can_be_queued(lkb) &&
1619 conversion_deadlock_detect(r, lkb)) {
1620 if (lkb->lkb_exflags & DLM_LKF_CONVDEADLK) {
1621 lkb->lkb_grmode = DLM_LOCK_NL;
1622 lkb->lkb_sbflags |= DLM_SBF_DEMOTED;
1623 } else if (!(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) {
1627 log_print("can_be_granted deadlock %x now %d",
1636 * The ALTPR and ALTCW flags are non-standard and tell the dlm to try
1637 * to grant a request in a mode other than the normal rqmode. It's a
1638 * simple way to provide a big optimization to applications that can
1642 if (rqmode != DLM_LOCK_PR && (lkb->lkb_exflags & DLM_LKF_ALTPR))
1644 else if (rqmode != DLM_LOCK_CW && (lkb->lkb_exflags & DLM_LKF_ALTCW))
1648 lkb->lkb_rqmode = alt;
1649 rv = _can_be_granted(r, lkb, now);
1651 lkb->lkb_sbflags |= DLM_SBF_ALTMODE;
1653 lkb->lkb_rqmode = rqmode;
1659 /* FIXME: I don't think that can_be_granted() can/will demote or find deadlock
1660 for locks pending on the convert list. Once verified (watch for these
1661 log_prints), we should be able to just call _can_be_granted() and not
1662 bother with the demote/deadlk cases here (and there's no easy way to deal
1663 with a deadlk here, we'd have to generate something like grant_lock with
1664 the deadlk error.) */
1666 /* Returns the highest requested mode of all blocked conversions; sets
1667 cw if there's a blocked conversion to DLM_LOCK_CW. */
1669 static int grant_pending_convert(struct dlm_rsb *r, int high, int *cw)
1671 struct dlm_lkb *lkb, *s;
1672 int hi, demoted, quit, grant_restart, demote_restart;
1681 list_for_each_entry_safe(lkb, s, &r->res_convertqueue, lkb_statequeue) {
1682 demoted = is_demoted(lkb);
1685 if (can_be_granted(r, lkb, 0, &deadlk)) {
1686 grant_lock_pending(r, lkb);
1691 if (!demoted && is_demoted(lkb)) {
1692 log_print("WARN: pending demoted %x node %d %s",
1693 lkb->lkb_id, lkb->lkb_nodeid, r->res_name);
1699 log_print("WARN: pending deadlock %x node %d %s",
1700 lkb->lkb_id, lkb->lkb_nodeid, r->res_name);
1705 hi = max_t(int, lkb->lkb_rqmode, hi);
1707 if (cw && lkb->lkb_rqmode == DLM_LOCK_CW)
1713 if (demote_restart && !quit) {
1718 return max_t(int, high, hi);
1721 static int grant_pending_wait(struct dlm_rsb *r, int high, int *cw)
1723 struct dlm_lkb *lkb, *s;
1725 list_for_each_entry_safe(lkb, s, &r->res_waitqueue, lkb_statequeue) {
1726 if (can_be_granted(r, lkb, 0, NULL))
1727 grant_lock_pending(r, lkb);
1729 high = max_t(int, lkb->lkb_rqmode, high);
1730 if (lkb->lkb_rqmode == DLM_LOCK_CW)
1738 /* cw of 1 means there's a lock with a rqmode of DLM_LOCK_CW that's blocked
1739 on either the convert or waiting queue.
1740 high is the largest rqmode of all locks blocked on the convert or
1743 static int lock_requires_bast(struct dlm_lkb *gr, int high, int cw)
1745 if (gr->lkb_grmode == DLM_LOCK_PR && cw) {
1746 if (gr->lkb_highbast < DLM_LOCK_EX)
1751 if (gr->lkb_highbast < high &&
1752 !__dlm_compat_matrix[gr->lkb_grmode+1][high+1])
1757 static void grant_pending_locks(struct dlm_rsb *r)
1759 struct dlm_lkb *lkb, *s;
1760 int high = DLM_LOCK_IV;
1763 DLM_ASSERT(is_master(r), dlm_dump_rsb(r););
1765 high = grant_pending_convert(r, high, &cw);
1766 high = grant_pending_wait(r, high, &cw);
1768 if (high == DLM_LOCK_IV)
1772 * If there are locks left on the wait/convert queue then send blocking
1773 * ASTs to granted locks based on the largest requested mode (high)
1777 list_for_each_entry_safe(lkb, s, &r->res_grantqueue, lkb_statequeue) {
1778 if (lkb->lkb_bastaddr && lock_requires_bast(lkb, high, cw)) {
1779 if (cw && high == DLM_LOCK_PR)
1780 queue_bast(r, lkb, DLM_LOCK_CW);
1782 queue_bast(r, lkb, high);
1783 lkb->lkb_highbast = high;
1788 static int modes_require_bast(struct dlm_lkb *gr, struct dlm_lkb *rq)
1790 if ((gr->lkb_grmode == DLM_LOCK_PR && rq->lkb_rqmode == DLM_LOCK_CW) ||
1791 (gr->lkb_grmode == DLM_LOCK_CW && rq->lkb_rqmode == DLM_LOCK_PR)) {
1792 if (gr->lkb_highbast < DLM_LOCK_EX)
1797 if (gr->lkb_highbast < rq->lkb_rqmode && !modes_compat(gr, rq))
1802 static void send_bast_queue(struct dlm_rsb *r, struct list_head *head,
1803 struct dlm_lkb *lkb)
1807 list_for_each_entry(gr, head, lkb_statequeue) {
1808 if (gr->lkb_bastaddr && modes_require_bast(gr, lkb)) {
1809 queue_bast(r, gr, lkb->lkb_rqmode);
1810 gr->lkb_highbast = lkb->lkb_rqmode;
1815 static void send_blocking_asts(struct dlm_rsb *r, struct dlm_lkb *lkb)
1817 send_bast_queue(r, &r->res_grantqueue, lkb);
1820 static void send_blocking_asts_all(struct dlm_rsb *r, struct dlm_lkb *lkb)
1822 send_bast_queue(r, &r->res_grantqueue, lkb);
1823 send_bast_queue(r, &r->res_convertqueue, lkb);
1826 /* set_master(r, lkb) -- set the master nodeid of a resource
1828 The purpose of this function is to set the nodeid field in the given
1829 lkb using the nodeid field in the given rsb. If the rsb's nodeid is
1830 known, it can just be copied to the lkb and the function will return
1831 0. If the rsb's nodeid is _not_ known, it needs to be looked up
1832 before it can be copied to the lkb.
1834 When the rsb nodeid is being looked up remotely, the initial lkb
1835 causing the lookup is kept on the ls_waiters list waiting for the
1836 lookup reply. Other lkb's waiting for the same rsb lookup are kept
1837 on the rsb's res_lookup list until the master is verified.
1840 0: nodeid is set in rsb/lkb and the caller should go ahead and use it
1841 1: the rsb master is not available and the lkb has been placed on
1845 static int set_master(struct dlm_rsb *r, struct dlm_lkb *lkb)
1847 struct dlm_ls *ls = r->res_ls;
1848 int i, error, dir_nodeid, ret_nodeid, our_nodeid = dlm_our_nodeid();
1850 if (rsb_flag(r, RSB_MASTER_UNCERTAIN)) {
1851 rsb_clear_flag(r, RSB_MASTER_UNCERTAIN);
1852 r->res_first_lkid = lkb->lkb_id;
1853 lkb->lkb_nodeid = r->res_nodeid;
1857 if (r->res_first_lkid && r->res_first_lkid != lkb->lkb_id) {
1858 list_add_tail(&lkb->lkb_rsb_lookup, &r->res_lookup);
1862 if (r->res_nodeid == 0) {
1863 lkb->lkb_nodeid = 0;
1867 if (r->res_nodeid > 0) {
1868 lkb->lkb_nodeid = r->res_nodeid;
1872 DLM_ASSERT(r->res_nodeid == -1, dlm_dump_rsb(r););
1874 dir_nodeid = dlm_dir_nodeid(r);
1876 if (dir_nodeid != our_nodeid) {
1877 r->res_first_lkid = lkb->lkb_id;
1878 send_lookup(r, lkb);
1882 for (i = 0; i < 2; i++) {
1883 /* It's possible for dlm_scand to remove an old rsb for
1884 this same resource from the toss list, us to create
1885 a new one, look up the master locally, and find it
1886 already exists just before dlm_scand does the
1887 dir_remove() on the previous rsb. */
1889 error = dlm_dir_lookup(ls, our_nodeid, r->res_name,
1890 r->res_length, &ret_nodeid);
1893 log_debug(ls, "dir_lookup error %d %s", error, r->res_name);
1896 if (error && error != -EEXIST)
1899 if (ret_nodeid == our_nodeid) {
1900 r->res_first_lkid = 0;
1902 lkb->lkb_nodeid = 0;
1904 r->res_first_lkid = lkb->lkb_id;
1905 r->res_nodeid = ret_nodeid;
1906 lkb->lkb_nodeid = ret_nodeid;
1911 static void process_lookup_list(struct dlm_rsb *r)
1913 struct dlm_lkb *lkb, *safe;
1915 list_for_each_entry_safe(lkb, safe, &r->res_lookup, lkb_rsb_lookup) {
1916 list_del_init(&lkb->lkb_rsb_lookup);
1917 _request_lock(r, lkb);
1922 /* confirm_master -- confirm (or deny) an rsb's master nodeid */
1924 static void confirm_master(struct dlm_rsb *r, int error)
1926 struct dlm_lkb *lkb;
1928 if (!r->res_first_lkid)
1934 r->res_first_lkid = 0;
1935 process_lookup_list(r);
1941 /* the remote request failed and won't be retried (it was
1942 a NOQUEUE, or has been canceled/unlocked); make a waiting
1943 lkb the first_lkid */
1945 r->res_first_lkid = 0;
1947 if (!list_empty(&r->res_lookup)) {
1948 lkb = list_entry(r->res_lookup.next, struct dlm_lkb,
1950 list_del_init(&lkb->lkb_rsb_lookup);
1951 r->res_first_lkid = lkb->lkb_id;
1952 _request_lock(r, lkb);
1958 log_error(r->res_ls, "confirm_master unknown error %d", error);
1962 static int set_lock_args(int mode, struct dlm_lksb *lksb, uint32_t flags,
1963 int namelen, unsigned long timeout_cs, void *ast,
1964 void *astarg, void *bast, struct dlm_args *args)
1968 /* check for invalid arg usage */
1970 if (mode < 0 || mode > DLM_LOCK_EX)
1973 if (!(flags & DLM_LKF_CONVERT) && (namelen > DLM_RESNAME_MAXLEN))
1976 if (flags & DLM_LKF_CANCEL)
1979 if (flags & DLM_LKF_QUECVT && !(flags & DLM_LKF_CONVERT))
1982 if (flags & DLM_LKF_CONVDEADLK && !(flags & DLM_LKF_CONVERT))
1985 if (flags & DLM_LKF_CONVDEADLK && flags & DLM_LKF_NOQUEUE)
1988 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_CONVERT)
1991 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_QUECVT)
1994 if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_NOQUEUE)
1997 if (flags & DLM_LKF_EXPEDITE && mode != DLM_LOCK_NL)
2003 if (flags & DLM_LKF_VALBLK && !lksb->sb_lvbptr)
2006 if (flags & DLM_LKF_CONVERT && !lksb->sb_lkid)
2009 /* these args will be copied to the lkb in validate_lock_args,
2010 it cannot be done now because when converting locks, fields in
2011 an active lkb cannot be modified before locking the rsb */
2013 args->flags = flags;
2014 args->astaddr = ast;
2015 args->astparam = (long) astarg;
2016 args->bastaddr = bast;
2017 args->timeout = timeout_cs;
2025 static int set_unlock_args(uint32_t flags, void *astarg, struct dlm_args *args)
2027 if (flags & ~(DLM_LKF_CANCEL | DLM_LKF_VALBLK | DLM_LKF_IVVALBLK |
2028 DLM_LKF_FORCEUNLOCK))
2031 if (flags & DLM_LKF_CANCEL && flags & DLM_LKF_FORCEUNLOCK)
2034 args->flags = flags;
2035 args->astparam = (long) astarg;
2039 static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
2040 struct dlm_args *args)
2044 if (args->flags & DLM_LKF_CONVERT) {
2045 if (lkb->lkb_flags & DLM_IFL_MSTCPY)
2048 if (args->flags & DLM_LKF_QUECVT &&
2049 !__quecvt_compat_matrix[lkb->lkb_grmode+1][args->mode+1])
2053 if (lkb->lkb_status != DLM_LKSTS_GRANTED)
2056 if (lkb->lkb_wait_type)
2059 if (is_overlap(lkb))
2063 lkb->lkb_exflags = args->flags;
2064 lkb->lkb_sbflags = 0;
2065 lkb->lkb_astaddr = args->astaddr;
2066 lkb->lkb_astparam = args->astparam;
2067 lkb->lkb_bastaddr = args->bastaddr;
2068 lkb->lkb_rqmode = args->mode;
2069 lkb->lkb_lksb = args->lksb;
2070 lkb->lkb_lvbptr = args->lksb->sb_lvbptr;
2071 lkb->lkb_ownpid = (int) current->pid;
2072 lkb->lkb_timeout_cs = args->timeout;
2078 /* when dlm_unlock() sees -EBUSY with CANCEL/FORCEUNLOCK it returns 0
2081 /* note: it's valid for lkb_nodeid/res_nodeid to be -1 when we get here
2082 because there may be a lookup in progress and it's valid to do
2083 cancel/unlockf on it */
2085 static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args)
2087 struct dlm_ls *ls = lkb->lkb_resource->res_ls;
2090 if (lkb->lkb_flags & DLM_IFL_MSTCPY) {
2091 log_error(ls, "unlock on MSTCPY %x", lkb->lkb_id);
2096 /* an lkb may still exist even though the lock is EOL'ed due to a
2097 cancel, unlock or failed noqueue request; an app can't use these
2098 locks; return same error as if the lkid had not been found at all */
2100 if (lkb->lkb_flags & DLM_IFL_ENDOFLIFE) {
2101 log_debug(ls, "unlock on ENDOFLIFE %x", lkb->lkb_id);
2106 /* an lkb may be waiting for an rsb lookup to complete where the
2107 lookup was initiated by another lock */
2109 if (!list_empty(&lkb->lkb_rsb_lookup)) {
2110 if (args->flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)) {
2111 log_debug(ls, "unlock on rsb_lookup %x", lkb->lkb_id);
2112 list_del_init(&lkb->lkb_rsb_lookup);
2113 queue_cast(lkb->lkb_resource, lkb,
2114 args->flags & DLM_LKF_CANCEL ?
2115 -DLM_ECANCEL : -DLM_EUNLOCK);
2116 unhold_lkb(lkb); /* undoes create_lkb() */
2118 /* caller changes -EBUSY to 0 for CANCEL and FORCEUNLOCK */
2123 /* cancel not allowed with another cancel/unlock in progress */
2125 if (args->flags & DLM_LKF_CANCEL) {
2126 if (lkb->lkb_exflags & DLM_LKF_CANCEL)
2129 if (is_overlap(lkb))
2132 /* don't let scand try to do a cancel */
2135 if (lkb->lkb_flags & DLM_IFL_RESEND) {
2136 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
2141 switch (lkb->lkb_wait_type) {
2142 case DLM_MSG_LOOKUP:
2143 case DLM_MSG_REQUEST:
2144 lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL;
2147 case DLM_MSG_UNLOCK:
2148 case DLM_MSG_CANCEL:
2151 /* add_to_waiters() will set OVERLAP_CANCEL */
2155 /* do we need to allow a force-unlock if there's a normal unlock
2156 already in progress? in what conditions could the normal unlock
2157 fail such that we'd want to send a force-unlock to be sure? */
2159 if (args->flags & DLM_LKF_FORCEUNLOCK) {
2160 if (lkb->lkb_exflags & DLM_LKF_FORCEUNLOCK)
2163 if (is_overlap_unlock(lkb))
2166 /* don't let scand try to do a cancel */
2169 if (lkb->lkb_flags & DLM_IFL_RESEND) {
2170 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
2175 switch (lkb->lkb_wait_type) {
2176 case DLM_MSG_LOOKUP:
2177 case DLM_MSG_REQUEST:
2178 lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK;
2181 case DLM_MSG_UNLOCK:
2184 /* add_to_waiters() will set OVERLAP_UNLOCK */
2188 /* normal unlock not allowed if there's any op in progress */
2190 if (lkb->lkb_wait_type || lkb->lkb_wait_count)
2194 /* an overlapping op shouldn't blow away exflags from other op */
2195 lkb->lkb_exflags |= args->flags;
2196 lkb->lkb_sbflags = 0;
2197 lkb->lkb_astparam = args->astparam;
2201 log_debug(ls, "validate_unlock_args %d %x %x %x %x %d %s", rv,
2202 lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags,
2203 args->flags, lkb->lkb_wait_type,
2204 lkb->lkb_resource->res_name);
2209 * Four stage 4 varieties:
2210 * do_request(), do_convert(), do_unlock(), do_cancel()
2211 * These are called on the master node for the given lock and
2212 * from the central locking logic.
2215 static int do_request(struct dlm_rsb *r, struct dlm_lkb *lkb)
2219 if (can_be_granted(r, lkb, 1, NULL)) {
2221 queue_cast(r, lkb, 0);
2225 if (can_be_queued(lkb)) {
2226 error = -EINPROGRESS;
2227 add_lkb(r, lkb, DLM_LKSTS_WAITING);
2228 send_blocking_asts(r, lkb);
2234 if (force_blocking_asts(lkb))
2235 send_blocking_asts_all(r, lkb);
2236 queue_cast(r, lkb, -EAGAIN);
2242 static int do_convert(struct dlm_rsb *r, struct dlm_lkb *lkb)
2247 /* changing an existing lock may allow others to be granted */
2249 if (can_be_granted(r, lkb, 1, &deadlk)) {
2251 queue_cast(r, lkb, 0);
2252 grant_pending_locks(r);
2256 /* can_be_granted() detected that this lock would block in a conversion
2257 deadlock, so we leave it on the granted queue and return EDEADLK in
2258 the ast for the convert. */
2261 /* it's left on the granted queue */
2262 log_debug(r->res_ls, "deadlock %x node %d sts%d g%d r%d %s",
2263 lkb->lkb_id, lkb->lkb_nodeid, lkb->lkb_status,
2264 lkb->lkb_grmode, lkb->lkb_rqmode, r->res_name);
2265 revert_lock(r, lkb);
2266 queue_cast(r, lkb, -EDEADLK);
2271 /* is_demoted() means the can_be_granted() above set the grmode
2272 to NL, and left us on the granted queue. This auto-demotion
2273 (due to CONVDEADLK) might mean other locks, and/or this lock, are
2274 now grantable. We have to try to grant other converting locks
2275 before we try again to grant this one. */
2277 if (is_demoted(lkb)) {
2278 grant_pending_convert(r, DLM_LOCK_IV, NULL);
2279 if (_can_be_granted(r, lkb, 1)) {
2281 queue_cast(r, lkb, 0);
2282 grant_pending_locks(r);
2285 /* else fall through and move to convert queue */
2288 if (can_be_queued(lkb)) {
2289 error = -EINPROGRESS;
2291 add_lkb(r, lkb, DLM_LKSTS_CONVERT);
2292 send_blocking_asts(r, lkb);
2298 if (force_blocking_asts(lkb))
2299 send_blocking_asts_all(r, lkb);
2300 queue_cast(r, lkb, -EAGAIN);
2306 static int do_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2308 remove_lock(r, lkb);
2309 queue_cast(r, lkb, -DLM_EUNLOCK);
2310 grant_pending_locks(r);
2311 return -DLM_EUNLOCK;
2314 /* returns: 0 did nothing, -DLM_ECANCEL canceled lock */
2316 static int do_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb)
2320 error = revert_lock(r, lkb);
2322 queue_cast(r, lkb, -DLM_ECANCEL);
2323 grant_pending_locks(r);
2324 return -DLM_ECANCEL;
2330 * Four stage 3 varieties:
2331 * _request_lock(), _convert_lock(), _unlock_lock(), _cancel_lock()
2334 /* add a new lkb to a possibly new rsb, called by requesting process */
2336 static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2340 /* set_master: sets lkb nodeid from r */
2342 error = set_master(r, lkb);
2351 /* receive_request() calls do_request() on remote node */
2352 error = send_request(r, lkb);
2354 error = do_request(r, lkb);
2359 /* change some property of an existing lkb, e.g. mode */
2361 static int _convert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2366 /* receive_convert() calls do_convert() on remote node */
2367 error = send_convert(r, lkb);
2369 error = do_convert(r, lkb);
2374 /* remove an existing lkb from the granted queue */
2376 static int _unlock_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2381 /* receive_unlock() calls do_unlock() on remote node */
2382 error = send_unlock(r, lkb);
2384 error = do_unlock(r, lkb);
2389 /* remove an existing lkb from the convert or wait queue */
2391 static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2396 /* receive_cancel() calls do_cancel() on remote node */
2397 error = send_cancel(r, lkb);
2399 error = do_cancel(r, lkb);
2405 * Four stage 2 varieties:
2406 * request_lock(), convert_lock(), unlock_lock(), cancel_lock()
2409 static int request_lock(struct dlm_ls *ls, struct dlm_lkb *lkb, char *name,
2410 int len, struct dlm_args *args)
2415 error = validate_lock_args(ls, lkb, args);
2419 error = find_rsb(ls, name, len, R_CREATE, &r);
2426 lkb->lkb_lksb->sb_lkid = lkb->lkb_id;
2428 error = _request_lock(r, lkb);
2437 static int convert_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
2438 struct dlm_args *args)
2443 r = lkb->lkb_resource;
2448 error = validate_lock_args(ls, lkb, args);
2452 error = _convert_lock(r, lkb);
2459 static int unlock_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
2460 struct dlm_args *args)
2465 r = lkb->lkb_resource;
2470 error = validate_unlock_args(lkb, args);
2474 error = _unlock_lock(r, lkb);
2481 static int cancel_lock(struct dlm_ls *ls, struct dlm_lkb *lkb,
2482 struct dlm_args *args)
2487 r = lkb->lkb_resource;
2492 error = validate_unlock_args(lkb, args);
2496 error = _cancel_lock(r, lkb);
2504 * Two stage 1 varieties: dlm_lock() and dlm_unlock()
2507 int dlm_lock(dlm_lockspace_t *lockspace,
2509 struct dlm_lksb *lksb,
2512 unsigned int namelen,
2513 uint32_t parent_lkid,
2514 void (*ast) (void *astarg),
2516 void (*bast) (void *astarg, int mode))
2519 struct dlm_lkb *lkb;
2520 struct dlm_args args;
2521 int error, convert = flags & DLM_LKF_CONVERT;
2523 ls = dlm_find_lockspace_local(lockspace);
2527 dlm_lock_recovery(ls);
2530 error = find_lkb(ls, lksb->sb_lkid, &lkb);
2532 error = create_lkb(ls, &lkb);
2537 error = set_lock_args(mode, lksb, flags, namelen, 0, ast,
2538 astarg, bast, &args);
2543 error = convert_lock(ls, lkb, &args);
2545 error = request_lock(ls, lkb, name, namelen, &args);
2547 if (error == -EINPROGRESS)
2550 if (convert || error)
2552 if (error == -EAGAIN || error == -EDEADLK)
2555 dlm_unlock_recovery(ls);
2556 dlm_put_lockspace(ls);
2560 int dlm_unlock(dlm_lockspace_t *lockspace,
2563 struct dlm_lksb *lksb,
2567 struct dlm_lkb *lkb;
2568 struct dlm_args args;
2571 ls = dlm_find_lockspace_local(lockspace);
2575 dlm_lock_recovery(ls);
2577 error = find_lkb(ls, lkid, &lkb);
2581 error = set_unlock_args(flags, astarg, &args);
2585 if (flags & DLM_LKF_CANCEL)
2586 error = cancel_lock(ls, lkb, &args);
2588 error = unlock_lock(ls, lkb, &args);
2590 if (error == -DLM_EUNLOCK || error == -DLM_ECANCEL)
2592 if (error == -EBUSY && (flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)))
2597 dlm_unlock_recovery(ls);
2598 dlm_put_lockspace(ls);
2603 * send/receive routines for remote operations and replies
2607 * send_request receive_request
2608 * send_convert receive_convert
2609 * send_unlock receive_unlock
2610 * send_cancel receive_cancel
2611 * send_grant receive_grant
2612 * send_bast receive_bast
2613 * send_lookup receive_lookup
2614 * send_remove receive_remove
2617 * receive_request_reply send_request_reply
2618 * receive_convert_reply send_convert_reply
2619 * receive_unlock_reply send_unlock_reply
2620 * receive_cancel_reply send_cancel_reply
2621 * receive_lookup_reply send_lookup_reply
2624 static int _create_message(struct dlm_ls *ls, int mb_len,
2625 int to_nodeid, int mstype,
2626 struct dlm_message **ms_ret,
2627 struct dlm_mhandle **mh_ret)
2629 struct dlm_message *ms;
2630 struct dlm_mhandle *mh;
2633 /* get_buffer gives us a message handle (mh) that we need to
2634 pass into lowcomms_commit and a message buffer (mb) that we
2635 write our data into */
2637 mh = dlm_lowcomms_get_buffer(to_nodeid, mb_len, ls->ls_allocation, &mb);
2641 memset(mb, 0, mb_len);
2643 ms = (struct dlm_message *) mb;
2645 ms->m_header.h_version = (DLM_HEADER_MAJOR | DLM_HEADER_MINOR);
2646 ms->m_header.h_lockspace = ls->ls_global_id;
2647 ms->m_header.h_nodeid = dlm_our_nodeid();
2648 ms->m_header.h_length = mb_len;
2649 ms->m_header.h_cmd = DLM_MSG;
2651 ms->m_type = mstype;
2658 static int create_message(struct dlm_rsb *r, struct dlm_lkb *lkb,
2659 int to_nodeid, int mstype,
2660 struct dlm_message **ms_ret,
2661 struct dlm_mhandle **mh_ret)
2663 int mb_len = sizeof(struct dlm_message);
2666 case DLM_MSG_REQUEST:
2667 case DLM_MSG_LOOKUP:
2668 case DLM_MSG_REMOVE:
2669 mb_len += r->res_length;
2671 case DLM_MSG_CONVERT:
2672 case DLM_MSG_UNLOCK:
2673 case DLM_MSG_REQUEST_REPLY:
2674 case DLM_MSG_CONVERT_REPLY:
2676 if (lkb && lkb->lkb_lvbptr)
2677 mb_len += r->res_ls->ls_lvblen;
2681 return _create_message(r->res_ls, mb_len, to_nodeid, mstype,
2685 /* further lowcomms enhancements or alternate implementations may make
2686 the return value from this function useful at some point */
2688 static int send_message(struct dlm_mhandle *mh, struct dlm_message *ms)
2690 dlm_message_out(ms);
2691 dlm_lowcomms_commit_buffer(mh);
2695 static void send_args(struct dlm_rsb *r, struct dlm_lkb *lkb,
2696 struct dlm_message *ms)
2698 ms->m_nodeid = lkb->lkb_nodeid;
2699 ms->m_pid = lkb->lkb_ownpid;
2700 ms->m_lkid = lkb->lkb_id;
2701 ms->m_remid = lkb->lkb_remid;
2702 ms->m_exflags = lkb->lkb_exflags;
2703 ms->m_sbflags = lkb->lkb_sbflags;
2704 ms->m_flags = lkb->lkb_flags;
2705 ms->m_lvbseq = lkb->lkb_lvbseq;
2706 ms->m_status = lkb->lkb_status;
2707 ms->m_grmode = lkb->lkb_grmode;
2708 ms->m_rqmode = lkb->lkb_rqmode;
2709 ms->m_hash = r->res_hash;
2711 /* m_result and m_bastmode are set from function args,
2712 not from lkb fields */
2714 if (lkb->lkb_bastaddr)
2715 ms->m_asts |= AST_BAST;
2716 if (lkb->lkb_astaddr)
2717 ms->m_asts |= AST_COMP;
2719 /* compare with switch in create_message; send_remove() doesn't
2722 switch (ms->m_type) {
2723 case DLM_MSG_REQUEST:
2724 case DLM_MSG_LOOKUP:
2725 memcpy(ms->m_extra, r->res_name, r->res_length);
2727 case DLM_MSG_CONVERT:
2728 case DLM_MSG_UNLOCK:
2729 case DLM_MSG_REQUEST_REPLY:
2730 case DLM_MSG_CONVERT_REPLY:
2732 if (!lkb->lkb_lvbptr)
2734 memcpy(ms->m_extra, lkb->lkb_lvbptr, r->res_ls->ls_lvblen);
2739 static int send_common(struct dlm_rsb *r, struct dlm_lkb *lkb, int mstype)
2741 struct dlm_message *ms;
2742 struct dlm_mhandle *mh;
2743 int to_nodeid, error;
2745 error = add_to_waiters(lkb, mstype);
2749 to_nodeid = r->res_nodeid;
2751 error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh);
2755 send_args(r, lkb, ms);
2757 error = send_message(mh, ms);
2763 remove_from_waiters(lkb, msg_reply_type(mstype));
2767 static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb)
2769 return send_common(r, lkb, DLM_MSG_REQUEST);
2772 static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb)
2776 error = send_common(r, lkb, DLM_MSG_CONVERT);
2778 /* down conversions go without a reply from the master */
2779 if (!error && down_conversion(lkb)) {
2780 remove_from_waiters(lkb, DLM_MSG_CONVERT_REPLY);
2781 r->res_ls->ls_stub_ms.m_type = DLM_MSG_CONVERT_REPLY;
2782 r->res_ls->ls_stub_ms.m_result = 0;
2783 r->res_ls->ls_stub_ms.m_flags = lkb->lkb_flags;
2784 __receive_convert_reply(r, lkb, &r->res_ls->ls_stub_ms);
2790 /* FIXME: if this lkb is the only lock we hold on the rsb, then set
2791 MASTER_UNCERTAIN to force the next request on the rsb to confirm
2792 that the master is still correct. */
2794 static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb)
2796 return send_common(r, lkb, DLM_MSG_UNLOCK);
2799 static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb)
2801 return send_common(r, lkb, DLM_MSG_CANCEL);
2804 static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb)
2806 struct dlm_message *ms;
2807 struct dlm_mhandle *mh;
2808 int to_nodeid, error;
2810 to_nodeid = lkb->lkb_nodeid;
2812 error = create_message(r, lkb, to_nodeid, DLM_MSG_GRANT, &ms, &mh);
2816 send_args(r, lkb, ms);
2820 error = send_message(mh, ms);
2825 static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode)
2827 struct dlm_message *ms;
2828 struct dlm_mhandle *mh;
2829 int to_nodeid, error;
2831 to_nodeid = lkb->lkb_nodeid;
2833 error = create_message(r, NULL, to_nodeid, DLM_MSG_BAST, &ms, &mh);
2837 send_args(r, lkb, ms);
2839 ms->m_bastmode = mode;
2841 error = send_message(mh, ms);
2846 static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb)
2848 struct dlm_message *ms;
2849 struct dlm_mhandle *mh;
2850 int to_nodeid, error;
2852 error = add_to_waiters(lkb, DLM_MSG_LOOKUP);
2856 to_nodeid = dlm_dir_nodeid(r);
2858 error = create_message(r, NULL, to_nodeid, DLM_MSG_LOOKUP, &ms, &mh);
2862 send_args(r, lkb, ms);
2864 error = send_message(mh, ms);
2870 remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY);
2874 static int send_remove(struct dlm_rsb *r)
2876 struct dlm_message *ms;
2877 struct dlm_mhandle *mh;
2878 int to_nodeid, error;
2880 to_nodeid = dlm_dir_nodeid(r);
2882 error = create_message(r, NULL, to_nodeid, DLM_MSG_REMOVE, &ms, &mh);
2886 memcpy(ms->m_extra, r->res_name, r->res_length);
2887 ms->m_hash = r->res_hash;
2889 error = send_message(mh, ms);
2894 static int send_common_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
2897 struct dlm_message *ms;
2898 struct dlm_mhandle *mh;
2899 int to_nodeid, error;
2901 to_nodeid = lkb->lkb_nodeid;
2903 error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh);
2907 send_args(r, lkb, ms);
2911 error = send_message(mh, ms);
2916 static int send_request_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
2918 return send_common_reply(r, lkb, DLM_MSG_REQUEST_REPLY, rv);
2921 static int send_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
2923 return send_common_reply(r, lkb, DLM_MSG_CONVERT_REPLY, rv);
2926 static int send_unlock_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
2928 return send_common_reply(r, lkb, DLM_MSG_UNLOCK_REPLY, rv);
2931 static int send_cancel_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv)
2933 return send_common_reply(r, lkb, DLM_MSG_CANCEL_REPLY, rv);
2936 static int send_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms_in,
2937 int ret_nodeid, int rv)
2939 struct dlm_rsb *r = &ls->ls_stub_rsb;
2940 struct dlm_message *ms;
2941 struct dlm_mhandle *mh;
2942 int error, nodeid = ms_in->m_header.h_nodeid;
2944 error = create_message(r, NULL, nodeid, DLM_MSG_LOOKUP_REPLY, &ms, &mh);
2948 ms->m_lkid = ms_in->m_lkid;
2950 ms->m_nodeid = ret_nodeid;
2952 error = send_message(mh, ms);
2957 /* which args we save from a received message depends heavily on the type
2958 of message, unlike the send side where we can safely send everything about
2959 the lkb for any type of message */
2961 static void receive_flags(struct dlm_lkb *lkb, struct dlm_message *ms)
2963 lkb->lkb_exflags = ms->m_exflags;
2964 lkb->lkb_sbflags = ms->m_sbflags;
2965 lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) |
2966 (ms->m_flags & 0x0000FFFF);
2969 static void receive_flags_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
2971 lkb->lkb_sbflags = ms->m_sbflags;
2972 lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) |
2973 (ms->m_flags & 0x0000FFFF);
2976 static int receive_extralen(struct dlm_message *ms)
2978 return (ms->m_header.h_length - sizeof(struct dlm_message));
2981 static int receive_lvb(struct dlm_ls *ls, struct dlm_lkb *lkb,
2982 struct dlm_message *ms)
2986 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
2987 if (!lkb->lkb_lvbptr)
2988 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
2989 if (!lkb->lkb_lvbptr)
2991 len = receive_extralen(ms);
2992 memcpy(lkb->lkb_lvbptr, ms->m_extra, len);
2997 static int receive_request_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
2998 struct dlm_message *ms)
3000 lkb->lkb_nodeid = ms->m_header.h_nodeid;
3001 lkb->lkb_ownpid = ms->m_pid;
3002 lkb->lkb_remid = ms->m_lkid;
3003 lkb->lkb_grmode = DLM_LOCK_IV;
3004 lkb->lkb_rqmode = ms->m_rqmode;
3005 lkb->lkb_bastaddr = (void *) (long) (ms->m_asts & AST_BAST);
3006 lkb->lkb_astaddr = (void *) (long) (ms->m_asts & AST_COMP);
3008 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
3009 /* lkb was just created so there won't be an lvb yet */
3010 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
3011 if (!lkb->lkb_lvbptr)
3018 static int receive_convert_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
3019 struct dlm_message *ms)
3021 if (lkb->lkb_status != DLM_LKSTS_GRANTED)
3024 if (receive_lvb(ls, lkb, ms))
3027 lkb->lkb_rqmode = ms->m_rqmode;
3028 lkb->lkb_lvbseq = ms->m_lvbseq;
3033 static int receive_unlock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
3034 struct dlm_message *ms)
3036 if (receive_lvb(ls, lkb, ms))
3041 /* We fill in the stub-lkb fields with the info that send_xxxx_reply()
3042 uses to send a reply and that the remote end uses to process the reply. */
3044 static void setup_stub_lkb(struct dlm_ls *ls, struct dlm_message *ms)
3046 struct dlm_lkb *lkb = &ls->ls_stub_lkb;
3047 lkb->lkb_nodeid = ms->m_header.h_nodeid;
3048 lkb->lkb_remid = ms->m_lkid;
3051 /* This is called after the rsb is locked so that we can safely inspect
3052 fields in the lkb. */
3054 static int validate_message(struct dlm_lkb *lkb, struct dlm_message *ms)
3056 int from = ms->m_header.h_nodeid;
3059 switch (ms->m_type) {
3060 case DLM_MSG_CONVERT:
3061 case DLM_MSG_UNLOCK:
3062 case DLM_MSG_CANCEL:
3063 if (!is_master_copy(lkb) || lkb->lkb_nodeid != from)
3067 case DLM_MSG_CONVERT_REPLY:
3068 case DLM_MSG_UNLOCK_REPLY:
3069 case DLM_MSG_CANCEL_REPLY:
3072 if (!is_process_copy(lkb) || lkb->lkb_nodeid != from)
3076 case DLM_MSG_REQUEST_REPLY:
3077 if (!is_process_copy(lkb))
3079 else if (lkb->lkb_nodeid != -1 && lkb->lkb_nodeid != from)
3088 log_error(lkb->lkb_resource->res_ls,
3089 "ignore invalid message %d from %d %x %x %x %d",
3090 ms->m_type, from, lkb->lkb_id, lkb->lkb_remid,
3091 lkb->lkb_flags, lkb->lkb_nodeid);
3095 static void receive_request(struct dlm_ls *ls, struct dlm_message *ms)
3097 struct dlm_lkb *lkb;
3101 error = create_lkb(ls, &lkb);
3105 receive_flags(lkb, ms);
3106 lkb->lkb_flags |= DLM_IFL_MSTCPY;
3107 error = receive_request_args(ls, lkb, ms);
3113 namelen = receive_extralen(ms);
3115 error = find_rsb(ls, ms->m_extra, namelen, R_MASTER, &r);
3124 error = do_request(r, lkb);
3125 send_request_reply(r, lkb, error);
3130 if (error == -EINPROGRESS)
3137 setup_stub_lkb(ls, ms);
3138 send_request_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
3141 static void receive_convert(struct dlm_ls *ls, struct dlm_message *ms)
3143 struct dlm_lkb *lkb;
3145 int error, reply = 1;
3147 error = find_lkb(ls, ms->m_remid, &lkb);
3151 r = lkb->lkb_resource;
3156 error = validate_message(lkb, ms);
3160 receive_flags(lkb, ms);
3161 error = receive_convert_args(ls, lkb, ms);
3164 reply = !down_conversion(lkb);
3166 error = do_convert(r, lkb);
3169 send_convert_reply(r, lkb, error);
3177 setup_stub_lkb(ls, ms);
3178 send_convert_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
3181 static void receive_unlock(struct dlm_ls *ls, struct dlm_message *ms)
3183 struct dlm_lkb *lkb;
3187 error = find_lkb(ls, ms->m_remid, &lkb);
3191 r = lkb->lkb_resource;
3196 error = validate_message(lkb, ms);
3200 receive_flags(lkb, ms);
3201 error = receive_unlock_args(ls, lkb, ms);
3205 error = do_unlock(r, lkb);
3207 send_unlock_reply(r, lkb, error);
3215 setup_stub_lkb(ls, ms);
3216 send_unlock_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
3219 static void receive_cancel(struct dlm_ls *ls, struct dlm_message *ms)
3221 struct dlm_lkb *lkb;
3225 error = find_lkb(ls, ms->m_remid, &lkb);
3229 receive_flags(lkb, ms);
3231 r = lkb->lkb_resource;
3236 error = validate_message(lkb, ms);
3240 error = do_cancel(r, lkb);
3241 send_cancel_reply(r, lkb, error);
3249 setup_stub_lkb(ls, ms);
3250 send_cancel_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error);
3253 static void receive_grant(struct dlm_ls *ls, struct dlm_message *ms)
3255 struct dlm_lkb *lkb;
3259 error = find_lkb(ls, ms->m_remid, &lkb);
3261 log_debug(ls, "receive_grant from %d no lkb %x",
3262 ms->m_header.h_nodeid, ms->m_remid);
3266 r = lkb->lkb_resource;
3271 error = validate_message(lkb, ms);
3275 receive_flags_reply(lkb, ms);
3276 if (is_altmode(lkb))
3277 munge_altmode(lkb, ms);
3278 grant_lock_pc(r, lkb, ms);
3279 queue_cast(r, lkb, 0);
3286 static void receive_bast(struct dlm_ls *ls, struct dlm_message *ms)
3288 struct dlm_lkb *lkb;
3292 error = find_lkb(ls, ms->m_remid, &lkb);
3294 log_debug(ls, "receive_bast from %d no lkb %x",
3295 ms->m_header.h_nodeid, ms->m_remid);
3299 r = lkb->lkb_resource;
3304 error = validate_message(lkb, ms);
3308 queue_bast(r, lkb, ms->m_bastmode);
3315 static void receive_lookup(struct dlm_ls *ls, struct dlm_message *ms)
3317 int len, error, ret_nodeid, dir_nodeid, from_nodeid, our_nodeid;
3319 from_nodeid = ms->m_header.h_nodeid;
3320 our_nodeid = dlm_our_nodeid();
3322 len = receive_extralen(ms);
3324 dir_nodeid = dlm_hash2nodeid(ls, ms->m_hash);
3325 if (dir_nodeid != our_nodeid) {
3326 log_error(ls, "lookup dir_nodeid %d from %d",
3327 dir_nodeid, from_nodeid);
3333 error = dlm_dir_lookup(ls, from_nodeid, ms->m_extra, len, &ret_nodeid);
3335 /* Optimization: we're master so treat lookup as a request */
3336 if (!error && ret_nodeid == our_nodeid) {
3337 receive_request(ls, ms);
3341 send_lookup_reply(ls, ms, ret_nodeid, error);
3344 static void receive_remove(struct dlm_ls *ls, struct dlm_message *ms)
3346 int len, dir_nodeid, from_nodeid;
3348 from_nodeid = ms->m_header.h_nodeid;
3350 len = receive_extralen(ms);
3352 dir_nodeid = dlm_hash2nodeid(ls, ms->m_hash);
3353 if (dir_nodeid != dlm_our_nodeid()) {
3354 log_error(ls, "remove dir entry dir_nodeid %d from %d",
3355 dir_nodeid, from_nodeid);
3359 dlm_dir_remove_entry(ls, from_nodeid, ms->m_extra, len);
3362 static void receive_purge(struct dlm_ls *ls, struct dlm_message *ms)
3364 do_purge(ls, ms->m_nodeid, ms->m_pid);
3367 static void receive_request_reply(struct dlm_ls *ls, struct dlm_message *ms)
3369 struct dlm_lkb *lkb;
3371 int error, mstype, result;
3373 error = find_lkb(ls, ms->m_remid, &lkb);
3375 log_debug(ls, "receive_request_reply from %d no lkb %x",
3376 ms->m_header.h_nodeid, ms->m_remid);
3380 r = lkb->lkb_resource;
3384 error = validate_message(lkb, ms);
3388 mstype = lkb->lkb_wait_type;
3389 error = remove_from_waiters(lkb, DLM_MSG_REQUEST_REPLY);
3393 /* Optimization: the dir node was also the master, so it took our
3394 lookup as a request and sent request reply instead of lookup reply */
3395 if (mstype == DLM_MSG_LOOKUP) {
3396 r->res_nodeid = ms->m_header.h_nodeid;
3397 lkb->lkb_nodeid = r->res_nodeid;
3400 /* this is the value returned from do_request() on the master */
3401 result = ms->m_result;
3405 /* request would block (be queued) on remote master */
3406 queue_cast(r, lkb, -EAGAIN);
3407 confirm_master(r, -EAGAIN);
3408 unhold_lkb(lkb); /* undoes create_lkb() */
3413 /* request was queued or granted on remote master */
3414 receive_flags_reply(lkb, ms);
3415 lkb->lkb_remid = ms->m_lkid;
3416 if (is_altmode(lkb))
3417 munge_altmode(lkb, ms);
3419 add_lkb(r, lkb, DLM_LKSTS_WAITING);
3422 grant_lock_pc(r, lkb, ms);
3423 queue_cast(r, lkb, 0);
3425 confirm_master(r, result);
3430 /* find_rsb failed to find rsb or rsb wasn't master */
3431 log_debug(ls, "receive_request_reply %x %x master diff %d %d",
3432 lkb->lkb_id, lkb->lkb_flags, r->res_nodeid, result);
3434 lkb->lkb_nodeid = -1;
3436 if (is_overlap(lkb)) {
3437 /* we'll ignore error in cancel/unlock reply */
3438 queue_cast_overlap(r, lkb);
3439 confirm_master(r, result);
3440 unhold_lkb(lkb); /* undoes create_lkb() */
3442 _request_lock(r, lkb);
3446 log_error(ls, "receive_request_reply %x error %d",
3447 lkb->lkb_id, result);
3450 if (is_overlap_unlock(lkb) && (result == 0 || result == -EINPROGRESS)) {
3451 log_debug(ls, "receive_request_reply %x result %d unlock",
3452 lkb->lkb_id, result);
3453 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
3454 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
3455 send_unlock(r, lkb);
3456 } else if (is_overlap_cancel(lkb) && (result == -EINPROGRESS)) {
3457 log_debug(ls, "receive_request_reply %x cancel", lkb->lkb_id);
3458 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
3459 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
3460 send_cancel(r, lkb);
3462 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
3463 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
3471 static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb,
3472 struct dlm_message *ms)
3474 /* this is the value returned from do_convert() on the master */
3475 switch (ms->m_result) {
3477 /* convert would block (be queued) on remote master */
3478 queue_cast(r, lkb, -EAGAIN);
3482 receive_flags_reply(lkb, ms);
3483 revert_lock_pc(r, lkb);
3484 queue_cast(r, lkb, -EDEADLK);
3488 /* convert was queued on remote master */
3489 receive_flags_reply(lkb, ms);
3490 if (is_demoted(lkb))
3491 munge_demoted(lkb, ms);
3493 add_lkb(r, lkb, DLM_LKSTS_CONVERT);
3498 /* convert was granted on remote master */
3499 receive_flags_reply(lkb, ms);
3500 if (is_demoted(lkb))
3501 munge_demoted(lkb, ms);
3502 grant_lock_pc(r, lkb, ms);
3503 queue_cast(r, lkb, 0);
3507 log_error(r->res_ls, "receive_convert_reply %x error %d",
3508 lkb->lkb_id, ms->m_result);
3512 static void _receive_convert_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
3514 struct dlm_rsb *r = lkb->lkb_resource;
3520 error = validate_message(lkb, ms);
3524 /* stub reply can happen with waiters_mutex held */
3525 error = remove_from_waiters_ms(lkb, ms);
3529 __receive_convert_reply(r, lkb, ms);
3535 static void receive_convert_reply(struct dlm_ls *ls, struct dlm_message *ms)
3537 struct dlm_lkb *lkb;
3540 error = find_lkb(ls, ms->m_remid, &lkb);
3542 log_debug(ls, "receive_convert_reply from %d no lkb %x",
3543 ms->m_header.h_nodeid, ms->m_remid);
3547 _receive_convert_reply(lkb, ms);
3551 static void _receive_unlock_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
3553 struct dlm_rsb *r = lkb->lkb_resource;
3559 error = validate_message(lkb, ms);
3563 /* stub reply can happen with waiters_mutex held */
3564 error = remove_from_waiters_ms(lkb, ms);
3568 /* this is the value returned from do_unlock() on the master */
3570 switch (ms->m_result) {
3572 receive_flags_reply(lkb, ms);
3573 remove_lock_pc(r, lkb);
3574 queue_cast(r, lkb, -DLM_EUNLOCK);
3579 log_error(r->res_ls, "receive_unlock_reply %x error %d",
3580 lkb->lkb_id, ms->m_result);
3587 static void receive_unlock_reply(struct dlm_ls *ls, struct dlm_message *ms)
3589 struct dlm_lkb *lkb;
3592 error = find_lkb(ls, ms->m_remid, &lkb);
3594 log_debug(ls, "receive_unlock_reply from %d no lkb %x",
3595 ms->m_header.h_nodeid, ms->m_remid);
3599 _receive_unlock_reply(lkb, ms);
3603 static void _receive_cancel_reply(struct dlm_lkb *lkb, struct dlm_message *ms)
3605 struct dlm_rsb *r = lkb->lkb_resource;
3611 error = validate_message(lkb, ms);
3615 /* stub reply can happen with waiters_mutex held */
3616 error = remove_from_waiters_ms(lkb, ms);
3620 /* this is the value returned from do_cancel() on the master */
3622 switch (ms->m_result) {
3624 receive_flags_reply(lkb, ms);
3625 revert_lock_pc(r, lkb);
3626 queue_cast(r, lkb, -DLM_ECANCEL);
3631 log_error(r->res_ls, "receive_cancel_reply %x error %d",
3632 lkb->lkb_id, ms->m_result);
3639 static void receive_cancel_reply(struct dlm_ls *ls, struct dlm_message *ms)
3641 struct dlm_lkb *lkb;
3644 error = find_lkb(ls, ms->m_remid, &lkb);
3646 log_debug(ls, "receive_cancel_reply from %d no lkb %x",
3647 ms->m_header.h_nodeid, ms->m_remid);
3651 _receive_cancel_reply(lkb, ms);
3655 static void receive_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms)
3657 struct dlm_lkb *lkb;
3659 int error, ret_nodeid;
3661 error = find_lkb(ls, ms->m_lkid, &lkb);
3663 log_error(ls, "receive_lookup_reply no lkb");
3667 /* ms->m_result is the value returned by dlm_dir_lookup on dir node
3668 FIXME: will a non-zero error ever be returned? */
3670 r = lkb->lkb_resource;
3674 error = remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY);
3678 ret_nodeid = ms->m_nodeid;
3679 if (ret_nodeid == dlm_our_nodeid()) {
3682 r->res_first_lkid = 0;
3684 /* set_master() will copy res_nodeid to lkb_nodeid */
3685 r->res_nodeid = ret_nodeid;
3688 if (is_overlap(lkb)) {
3689 log_debug(ls, "receive_lookup_reply %x unlock %x",
3690 lkb->lkb_id, lkb->lkb_flags);
3691 queue_cast_overlap(r, lkb);
3692 unhold_lkb(lkb); /* undoes create_lkb() */
3696 _request_lock(r, lkb);
3700 process_lookup_list(r);
3707 static void _receive_message(struct dlm_ls *ls, struct dlm_message *ms)
3709 if (!dlm_is_member(ls, ms->m_header.h_nodeid)) {
3710 log_debug(ls, "ignore non-member message %d from %d %x %x %d",
3711 ms->m_type, ms->m_header.h_nodeid, ms->m_lkid,
3712 ms->m_remid, ms->m_result);
3716 switch (ms->m_type) {
3718 /* messages sent to a master node */
3720 case DLM_MSG_REQUEST:
3721 receive_request(ls, ms);
3724 case DLM_MSG_CONVERT:
3725 receive_convert(ls, ms);
3728 case DLM_MSG_UNLOCK:
3729 receive_unlock(ls, ms);
3732 case DLM_MSG_CANCEL:
3733 receive_cancel(ls, ms);
3736 /* messages sent from a master node (replies to above) */
3738 case DLM_MSG_REQUEST_REPLY:
3739 receive_request_reply(ls, ms);
3742 case DLM_MSG_CONVERT_REPLY:
3743 receive_convert_reply(ls, ms);
3746 case DLM_MSG_UNLOCK_REPLY:
3747 receive_unlock_reply(ls, ms);
3750 case DLM_MSG_CANCEL_REPLY:
3751 receive_cancel_reply(ls, ms);
3754 /* messages sent from a master node (only two types of async msg) */
3757 receive_grant(ls, ms);
3761 receive_bast(ls, ms);
3764 /* messages sent to a dir node */
3766 case DLM_MSG_LOOKUP:
3767 receive_lookup(ls, ms);
3770 case DLM_MSG_REMOVE:
3771 receive_remove(ls, ms);
3774 /* messages sent from a dir node (remove has no reply) */
3776 case DLM_MSG_LOOKUP_REPLY:
3777 receive_lookup_reply(ls, ms);
3780 /* other messages */
3783 receive_purge(ls, ms);
3787 log_error(ls, "unknown message type %d", ms->m_type);
3793 /* If the lockspace is in recovery mode (locking stopped), then normal
3794 messages are saved on the requestqueue for processing after recovery is
3795 done. When not in recovery mode, we wait for dlm_recoverd to drain saved
3796 messages off the requestqueue before we process new ones. This occurs right
3797 after recovery completes when we transition from saving all messages on
3798 requestqueue, to processing all the saved messages, to processing new
3799 messages as they arrive. */
3801 static void dlm_receive_message(struct dlm_ls *ls, struct dlm_message *ms,
3804 if (dlm_locking_stopped(ls)) {
3805 dlm_add_requestqueue(ls, nodeid, (struct dlm_header *) ms);
3807 dlm_wait_requestqueue(ls);
3808 _receive_message(ls, ms);
3812 /* This is called by dlm_recoverd to process messages that were saved on
3813 the requestqueue. */
3815 void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms)
3817 _receive_message(ls, ms);
3820 /* This is called by the midcomms layer when something is received for
3821 the lockspace. It could be either a MSG (normal message sent as part of
3822 standard locking activity) or an RCOM (recovery message sent as part of
3823 lockspace recovery). */
3825 void dlm_receive_buffer(struct dlm_header *hd, int nodeid)
3827 struct dlm_message *ms = (struct dlm_message *) hd;
3828 struct dlm_rcom *rc = (struct dlm_rcom *) hd;
3832 switch (hd->h_cmd) {
3842 log_print("invalid h_cmd %d from %u", hd->h_cmd, nodeid);
3846 if (hd->h_nodeid != nodeid) {
3847 log_print("invalid h_nodeid %d from %d lockspace %x",
3848 hd->h_nodeid, nodeid, hd->h_lockspace);
3852 ls = dlm_find_lockspace_global(hd->h_lockspace);
3854 if (dlm_config.ci_log_debug)
3855 log_print("invalid lockspace %x from %d cmd %d type %d",
3856 hd->h_lockspace, nodeid, hd->h_cmd, type);
3858 if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS)
3859 dlm_send_ls_not_ready(nodeid, rc);
3863 /* this rwsem allows dlm_ls_stop() to wait for all dlm_recv threads to
3864 be inactive (in this ls) before transitioning to recovery mode */
3866 down_read(&ls->ls_recv_active);
3867 if (hd->h_cmd == DLM_MSG)
3868 dlm_receive_message(ls, ms, nodeid);
3870 dlm_receive_rcom(ls, rc, nodeid);
3871 up_read(&ls->ls_recv_active);
3873 dlm_put_lockspace(ls);
3876 static void recover_convert_waiter(struct dlm_ls *ls, struct dlm_lkb *lkb)
3878 if (middle_conversion(lkb)) {
3880 ls->ls_stub_ms.m_type = DLM_MSG_CONVERT_REPLY;
3881 ls->ls_stub_ms.m_result = -EINPROGRESS;
3882 ls->ls_stub_ms.m_flags = lkb->lkb_flags;
3883 ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid;
3884 _receive_convert_reply(lkb, &ls->ls_stub_ms);
3886 /* Same special case as in receive_rcom_lock_args() */
3887 lkb->lkb_grmode = DLM_LOCK_IV;
3888 rsb_set_flag(lkb->lkb_resource, RSB_RECOVER_CONVERT);
3891 } else if (lkb->lkb_rqmode >= lkb->lkb_grmode) {
3892 lkb->lkb_flags |= DLM_IFL_RESEND;
3895 /* lkb->lkb_rqmode < lkb->lkb_grmode shouldn't happen since down
3896 conversions are async; there's no reply from the remote master */
3899 /* A waiting lkb needs recovery if the master node has failed, or
3900 the master node is changing (only when no directory is used) */
3902 static int waiter_needs_recovery(struct dlm_ls *ls, struct dlm_lkb *lkb)
3904 if (dlm_is_removed(ls, lkb->lkb_nodeid))
3907 if (!dlm_no_directory(ls))
3910 if (dlm_dir_nodeid(lkb->lkb_resource) != lkb->lkb_nodeid)
3916 /* Recovery for locks that are waiting for replies from nodes that are now
3917 gone. We can just complete unlocks and cancels by faking a reply from the
3918 dead node. Requests and up-conversions we flag to be resent after
3919 recovery. Down-conversions can just be completed with a fake reply like
3920 unlocks. Conversions between PR and CW need special attention. */
3922 void dlm_recover_waiters_pre(struct dlm_ls *ls)
3924 struct dlm_lkb *lkb, *safe;
3925 int wait_type, stub_unlock_result, stub_cancel_result;
3927 mutex_lock(&ls->ls_waiters_mutex);
3929 list_for_each_entry_safe(lkb, safe, &ls->ls_waiters, lkb_wait_reply) {
3930 log_debug(ls, "pre recover waiter lkid %x type %d flags %x",
3931 lkb->lkb_id, lkb->lkb_wait_type, lkb->lkb_flags);
3933 /* all outstanding lookups, regardless of destination will be
3934 resent after recovery is done */
3936 if (lkb->lkb_wait_type == DLM_MSG_LOOKUP) {
3937 lkb->lkb_flags |= DLM_IFL_RESEND;
3941 if (!waiter_needs_recovery(ls, lkb))
3944 wait_type = lkb->lkb_wait_type;
3945 stub_unlock_result = -DLM_EUNLOCK;
3946 stub_cancel_result = -DLM_ECANCEL;
3948 /* Main reply may have been received leaving a zero wait_type,
3949 but a reply for the overlapping op may not have been
3950 received. In that case we need to fake the appropriate
3951 reply for the overlap op. */
3954 if (is_overlap_cancel(lkb)) {
3955 wait_type = DLM_MSG_CANCEL;
3956 if (lkb->lkb_grmode == DLM_LOCK_IV)
3957 stub_cancel_result = 0;
3959 if (is_overlap_unlock(lkb)) {
3960 wait_type = DLM_MSG_UNLOCK;
3961 if (lkb->lkb_grmode == DLM_LOCK_IV)
3962 stub_unlock_result = -ENOENT;
3965 log_debug(ls, "rwpre overlap %x %x %d %d %d",
3966 lkb->lkb_id, lkb->lkb_flags, wait_type,
3967 stub_cancel_result, stub_unlock_result);
3970 switch (wait_type) {
3972 case DLM_MSG_REQUEST:
3973 lkb->lkb_flags |= DLM_IFL_RESEND;
3976 case DLM_MSG_CONVERT:
3977 recover_convert_waiter(ls, lkb);
3980 case DLM_MSG_UNLOCK:
3982 ls->ls_stub_ms.m_type = DLM_MSG_UNLOCK_REPLY;
3983 ls->ls_stub_ms.m_result = stub_unlock_result;
3984 ls->ls_stub_ms.m_flags = lkb->lkb_flags;
3985 ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid;
3986 _receive_unlock_reply(lkb, &ls->ls_stub_ms);
3990 case DLM_MSG_CANCEL:
3992 ls->ls_stub_ms.m_type = DLM_MSG_CANCEL_REPLY;
3993 ls->ls_stub_ms.m_result = stub_cancel_result;
3994 ls->ls_stub_ms.m_flags = lkb->lkb_flags;
3995 ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid;
3996 _receive_cancel_reply(lkb, &ls->ls_stub_ms);
4001 log_error(ls, "invalid lkb wait_type %d %d",
4002 lkb->lkb_wait_type, wait_type);
4006 mutex_unlock(&ls->ls_waiters_mutex);
4009 static struct dlm_lkb *find_resend_waiter(struct dlm_ls *ls)
4011 struct dlm_lkb *lkb;
4014 mutex_lock(&ls->ls_waiters_mutex);
4015 list_for_each_entry(lkb, &ls->ls_waiters, lkb_wait_reply) {
4016 if (lkb->lkb_flags & DLM_IFL_RESEND) {
4022 mutex_unlock(&ls->ls_waiters_mutex);
4029 /* Deal with lookups and lkb's marked RESEND from _pre. We may now be the
4030 master or dir-node for r. Processing the lkb may result in it being placed
4033 /* We do this after normal locking has been enabled and any saved messages
4034 (in requestqueue) have been processed. We should be confident that at
4035 this point we won't get or process a reply to any of these waiting
4036 operations. But, new ops may be coming in on the rsbs/locks here from
4037 userspace or remotely. */
4039 /* there may have been an overlap unlock/cancel prior to recovery or after
4040 recovery. if before, the lkb may still have a pos wait_count; if after, the
4041 overlap flag would just have been set and nothing new sent. we can be
4042 confident here than any replies to either the initial op or overlap ops
4043 prior to recovery have been received. */
4045 int dlm_recover_waiters_post(struct dlm_ls *ls)
4047 struct dlm_lkb *lkb;
4049 int error = 0, mstype, err, oc, ou;
4052 if (dlm_locking_stopped(ls)) {
4053 log_debug(ls, "recover_waiters_post aborted");
4058 lkb = find_resend_waiter(ls);
4062 r = lkb->lkb_resource;
4066 mstype = lkb->lkb_wait_type;
4067 oc = is_overlap_cancel(lkb);
4068 ou = is_overlap_unlock(lkb);
4071 log_debug(ls, "recover_waiters_post %x type %d flags %x %s",
4072 lkb->lkb_id, mstype, lkb->lkb_flags, r->res_name);
4074 /* At this point we assume that we won't get a reply to any
4075 previous op or overlap op on this lock. First, do a big
4076 remove_from_waiters() for all previous ops. */
4078 lkb->lkb_flags &= ~DLM_IFL_RESEND;
4079 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK;
4080 lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL;
4081 lkb->lkb_wait_type = 0;
4082 lkb->lkb_wait_count = 0;
4083 mutex_lock(&ls->ls_waiters_mutex);
4084 list_del_init(&lkb->lkb_wait_reply);
4085 mutex_unlock(&ls->ls_waiters_mutex);
4086 unhold_lkb(lkb); /* for waiters list */
4089 /* do an unlock or cancel instead of resending */
4091 case DLM_MSG_LOOKUP:
4092 case DLM_MSG_REQUEST:
4093 queue_cast(r, lkb, ou ? -DLM_EUNLOCK :
4095 unhold_lkb(lkb); /* undoes create_lkb() */
4097 case DLM_MSG_CONVERT:
4099 queue_cast(r, lkb, -DLM_ECANCEL);
4101 lkb->lkb_exflags |= DLM_LKF_FORCEUNLOCK;
4102 _unlock_lock(r, lkb);
4110 case DLM_MSG_LOOKUP:
4111 case DLM_MSG_REQUEST:
4112 _request_lock(r, lkb);
4114 confirm_master(r, 0);
4116 case DLM_MSG_CONVERT:
4117 _convert_lock(r, lkb);
4125 log_error(ls, "recover_waiters_post %x %d %x %d %d",
4126 lkb->lkb_id, mstype, lkb->lkb_flags, oc, ou);
4135 static void purge_queue(struct dlm_rsb *r, struct list_head *queue,
4136 int (*test)(struct dlm_ls *ls, struct dlm_lkb *lkb))
4138 struct dlm_ls *ls = r->res_ls;
4139 struct dlm_lkb *lkb, *safe;
4141 list_for_each_entry_safe(lkb, safe, queue, lkb_statequeue) {
4142 if (test(ls, lkb)) {
4143 rsb_set_flag(r, RSB_LOCKS_PURGED);
4145 /* this put should free the lkb */
4146 if (!dlm_put_lkb(lkb))
4147 log_error(ls, "purged lkb not released");
4152 static int purge_dead_test(struct dlm_ls *ls, struct dlm_lkb *lkb)
4154 return (is_master_copy(lkb) && dlm_is_removed(ls, lkb->lkb_nodeid));
4157 static int purge_mstcpy_test(struct dlm_ls *ls, struct dlm_lkb *lkb)
4159 return is_master_copy(lkb);
4162 static void purge_dead_locks(struct dlm_rsb *r)
4164 purge_queue(r, &r->res_grantqueue, &purge_dead_test);
4165 purge_queue(r, &r->res_convertqueue, &purge_dead_test);
4166 purge_queue(r, &r->res_waitqueue, &purge_dead_test);
4169 void dlm_purge_mstcpy_locks(struct dlm_rsb *r)
4171 purge_queue(r, &r->res_grantqueue, &purge_mstcpy_test);
4172 purge_queue(r, &r->res_convertqueue, &purge_mstcpy_test);
4173 purge_queue(r, &r->res_waitqueue, &purge_mstcpy_test);
4176 /* Get rid of locks held by nodes that are gone. */
4178 int dlm_purge_locks(struct dlm_ls *ls)
4182 log_debug(ls, "dlm_purge_locks");
4184 down_write(&ls->ls_root_sem);
4185 list_for_each_entry(r, &ls->ls_root_list, res_root_list) {
4189 purge_dead_locks(r);
4195 up_write(&ls->ls_root_sem);
4200 static struct dlm_rsb *find_purged_rsb(struct dlm_ls *ls, int bucket)
4202 struct dlm_rsb *r, *r_ret = NULL;
4204 read_lock(&ls->ls_rsbtbl[bucket].lock);
4205 list_for_each_entry(r, &ls->ls_rsbtbl[bucket].list, res_hashchain) {
4206 if (!rsb_flag(r, RSB_LOCKS_PURGED))
4209 rsb_clear_flag(r, RSB_LOCKS_PURGED);
4213 read_unlock(&ls->ls_rsbtbl[bucket].lock);
4217 void dlm_grant_after_purge(struct dlm_ls *ls)
4223 r = find_purged_rsb(ls, bucket);
4225 if (bucket == ls->ls_rsbtbl_size - 1)
4232 grant_pending_locks(r);
4233 confirm_master(r, 0);
4241 static struct dlm_lkb *search_remid_list(struct list_head *head, int nodeid,
4244 struct dlm_lkb *lkb;
4246 list_for_each_entry(lkb, head, lkb_statequeue) {
4247 if (lkb->lkb_nodeid == nodeid && lkb->lkb_remid == remid)
4253 static struct dlm_lkb *search_remid(struct dlm_rsb *r, int nodeid,
4256 struct dlm_lkb *lkb;
4258 lkb = search_remid_list(&r->res_grantqueue, nodeid, remid);
4261 lkb = search_remid_list(&r->res_convertqueue, nodeid, remid);
4264 lkb = search_remid_list(&r->res_waitqueue, nodeid, remid);
4270 static int receive_rcom_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb,
4271 struct dlm_rsb *r, struct dlm_rcom *rc)
4273 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
4276 lkb->lkb_nodeid = rc->rc_header.h_nodeid;
4277 lkb->lkb_ownpid = rl->rl_ownpid;
4278 lkb->lkb_remid = rl->rl_lkid;
4279 lkb->lkb_exflags = rl->rl_exflags;
4280 lkb->lkb_flags = rl->rl_flags & 0x0000FFFF;
4281 lkb->lkb_flags |= DLM_IFL_MSTCPY;
4282 lkb->lkb_lvbseq = rl->rl_lvbseq;
4283 lkb->lkb_rqmode = rl->rl_rqmode;
4284 lkb->lkb_grmode = rl->rl_grmode;
4285 /* don't set lkb_status because add_lkb wants to itself */
4287 lkb->lkb_bastaddr = (void *) (long) (rl->rl_asts & AST_BAST);
4288 lkb->lkb_astaddr = (void *) (long) (rl->rl_asts & AST_COMP);
4290 if (lkb->lkb_exflags & DLM_LKF_VALBLK) {
4291 lkb->lkb_lvbptr = dlm_allocate_lvb(ls);
4292 if (!lkb->lkb_lvbptr)
4294 lvblen = rc->rc_header.h_length - sizeof(struct dlm_rcom) -
4295 sizeof(struct rcom_lock);
4296 memcpy(lkb->lkb_lvbptr, rl->rl_lvb, lvblen);
4299 /* Conversions between PR and CW (middle modes) need special handling.
4300 The real granted mode of these converting locks cannot be determined
4301 until all locks have been rebuilt on the rsb (recover_conversion) */
4303 if (rl->rl_wait_type == DLM_MSG_CONVERT && middle_conversion(lkb)) {
4304 rl->rl_status = DLM_LKSTS_CONVERT;
4305 lkb->lkb_grmode = DLM_LOCK_IV;
4306 rsb_set_flag(r, RSB_RECOVER_CONVERT);
4312 /* This lkb may have been recovered in a previous aborted recovery so we need
4313 to check if the rsb already has an lkb with the given remote nodeid/lkid.
4314 If so we just send back a standard reply. If not, we create a new lkb with
4315 the given values and send back our lkid. We send back our lkid by sending
4316 back the rcom_lock struct we got but with the remid field filled in. */
4318 int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc)
4320 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
4322 struct dlm_lkb *lkb;
4325 if (rl->rl_parent_lkid) {
4326 error = -EOPNOTSUPP;
4330 error = find_rsb(ls, rl->rl_name, rl->rl_namelen, R_MASTER, &r);
4336 lkb = search_remid(r, rc->rc_header.h_nodeid, rl->rl_lkid);
4342 error = create_lkb(ls, &lkb);
4346 error = receive_rcom_lock_args(ls, lkb, r, rc);
4353 add_lkb(r, lkb, rl->rl_status);
4357 /* this is the new value returned to the lock holder for
4358 saving in its process-copy lkb */
4359 rl->rl_remid = lkb->lkb_id;
4366 log_debug(ls, "recover_master_copy %d %x", error, rl->rl_lkid);
4367 rl->rl_result = error;
4371 int dlm_recover_process_copy(struct dlm_ls *ls, struct dlm_rcom *rc)
4373 struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf;
4375 struct dlm_lkb *lkb;
4378 error = find_lkb(ls, rl->rl_lkid, &lkb);
4380 log_error(ls, "recover_process_copy no lkid %x", rl->rl_lkid);
4384 DLM_ASSERT(is_process_copy(lkb), dlm_print_lkb(lkb););
4386 error = rl->rl_result;
4388 r = lkb->lkb_resource;
4394 /* There's a chance the new master received our lock before
4395 dlm_recover_master_reply(), this wouldn't happen if we did
4396 a barrier between recover_masters and recover_locks. */
4397 log_debug(ls, "master copy not ready %x r %lx %s", lkb->lkb_id,
4398 (unsigned long)r, r->res_name);
4399 dlm_send_rcom_lock(r, lkb);
4402 log_debug(ls, "master copy exists %x", lkb->lkb_id);
4405 lkb->lkb_remid = rl->rl_remid;
4408 log_error(ls, "dlm_recover_process_copy unknown error %d %x",
4409 error, lkb->lkb_id);
4412 /* an ack for dlm_recover_locks() which waits for replies from
4413 all the locks it sends to new masters */
4414 dlm_recovered_lock(r);
4423 int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua,
4424 int mode, uint32_t flags, void *name, unsigned int namelen,
4425 unsigned long timeout_cs)
4427 struct dlm_lkb *lkb;
4428 struct dlm_args args;
4431 dlm_lock_recovery(ls);
4433 error = create_lkb(ls, &lkb);
4439 if (flags & DLM_LKF_VALBLK) {
4440 ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_KERNEL);
4441 if (!ua->lksb.sb_lvbptr) {
4449 /* After ua is attached to lkb it will be freed by dlm_free_lkb().
4450 When DLM_IFL_USER is set, the dlm knows that this is a userspace
4451 lock and that lkb_astparam is the dlm_user_args structure. */
4453 error = set_lock_args(mode, &ua->lksb, flags, namelen, timeout_cs,
4454 DLM_FAKE_USER_AST, ua, DLM_FAKE_USER_AST, &args);
4455 lkb->lkb_flags |= DLM_IFL_USER;
4456 ua->old_mode = DLM_LOCK_IV;
4463 error = request_lock(ls, lkb, name, namelen, &args);
4479 /* add this new lkb to the per-process list of locks */
4480 spin_lock(&ua->proc->locks_spin);
4482 list_add_tail(&lkb->lkb_ownqueue, &ua->proc->locks);
4483 spin_unlock(&ua->proc->locks_spin);
4485 dlm_unlock_recovery(ls);
4489 int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
4490 int mode, uint32_t flags, uint32_t lkid, char *lvb_in,
4491 unsigned long timeout_cs)
4493 struct dlm_lkb *lkb;
4494 struct dlm_args args;
4495 struct dlm_user_args *ua;
4498 dlm_lock_recovery(ls);
4500 error = find_lkb(ls, lkid, &lkb);
4504 /* user can change the params on its lock when it converts it, or
4505 add an lvb that didn't exist before */
4507 ua = (struct dlm_user_args *)lkb->lkb_astparam;
4509 if (flags & DLM_LKF_VALBLK && !ua->lksb.sb_lvbptr) {
4510 ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_KERNEL);
4511 if (!ua->lksb.sb_lvbptr) {
4516 if (lvb_in && ua->lksb.sb_lvbptr)
4517 memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN);
4519 ua->xid = ua_tmp->xid;
4520 ua->castparam = ua_tmp->castparam;
4521 ua->castaddr = ua_tmp->castaddr;
4522 ua->bastparam = ua_tmp->bastparam;
4523 ua->bastaddr = ua_tmp->bastaddr;
4524 ua->user_lksb = ua_tmp->user_lksb;
4525 ua->old_mode = lkb->lkb_grmode;
4527 error = set_lock_args(mode, &ua->lksb, flags, 0, timeout_cs,
4528 DLM_FAKE_USER_AST, ua, DLM_FAKE_USER_AST, &args);
4532 error = convert_lock(ls, lkb, &args);
4534 if (error == -EINPROGRESS || error == -EAGAIN || error == -EDEADLK)
4539 dlm_unlock_recovery(ls);
4544 int dlm_user_unlock(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
4545 uint32_t flags, uint32_t lkid, char *lvb_in)
4547 struct dlm_lkb *lkb;
4548 struct dlm_args args;
4549 struct dlm_user_args *ua;
4552 dlm_lock_recovery(ls);
4554 error = find_lkb(ls, lkid, &lkb);
4558 ua = (struct dlm_user_args *)lkb->lkb_astparam;
4560 if (lvb_in && ua->lksb.sb_lvbptr)
4561 memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN);
4562 if (ua_tmp->castparam)
4563 ua->castparam = ua_tmp->castparam;
4564 ua->user_lksb = ua_tmp->user_lksb;
4566 error = set_unlock_args(flags, ua, &args);
4570 error = unlock_lock(ls, lkb, &args);
4572 if (error == -DLM_EUNLOCK)
4574 /* from validate_unlock_args() */
4575 if (error == -EBUSY && (flags & DLM_LKF_FORCEUNLOCK))
4580 spin_lock(&ua->proc->locks_spin);
4581 /* dlm_user_add_ast() may have already taken lkb off the proc list */
4582 if (!list_empty(&lkb->lkb_ownqueue))
4583 list_move(&lkb->lkb_ownqueue, &ua->proc->unlocking);
4584 spin_unlock(&ua->proc->locks_spin);
4588 dlm_unlock_recovery(ls);
4593 int dlm_user_cancel(struct dlm_ls *ls, struct dlm_user_args *ua_tmp,
4594 uint32_t flags, uint32_t lkid)
4596 struct dlm_lkb *lkb;
4597 struct dlm_args args;
4598 struct dlm_user_args *ua;
4601 dlm_lock_recovery(ls);
4603 error = find_lkb(ls, lkid, &lkb);
4607 ua = (struct dlm_user_args *)lkb->lkb_astparam;
4608 if (ua_tmp->castparam)
4609 ua->castparam = ua_tmp->castparam;
4610 ua->user_lksb = ua_tmp->user_lksb;
4612 error = set_unlock_args(flags, ua, &args);
4616 error = cancel_lock(ls, lkb, &args);
4618 if (error == -DLM_ECANCEL)
4620 /* from validate_unlock_args() */
4621 if (error == -EBUSY)
4626 dlm_unlock_recovery(ls);
4631 int dlm_user_deadlock(struct dlm_ls *ls, uint32_t flags, uint32_t lkid)
4633 struct dlm_lkb *lkb;
4634 struct dlm_args args;
4635 struct dlm_user_args *ua;
4639 dlm_lock_recovery(ls);
4641 error = find_lkb(ls, lkid, &lkb);
4645 ua = (struct dlm_user_args *)lkb->lkb_astparam;
4647 error = set_unlock_args(flags, ua, &args);
4651 /* same as cancel_lock(), but set DEADLOCK_CANCEL after lock_rsb */
4653 r = lkb->lkb_resource;
4657 error = validate_unlock_args(lkb, &args);
4660 lkb->lkb_flags |= DLM_IFL_DEADLOCK_CANCEL;
4662 error = _cancel_lock(r, lkb);
4667 if (error == -DLM_ECANCEL)
4669 /* from validate_unlock_args() */
4670 if (error == -EBUSY)
4675 dlm_unlock_recovery(ls);
4679 /* lkb's that are removed from the waiters list by revert are just left on the
4680 orphans list with the granted orphan locks, to be freed by purge */
4682 static int orphan_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb)
4684 struct dlm_user_args *ua = (struct dlm_user_args *)lkb->lkb_astparam;
4685 struct dlm_args args;
4689 mutex_lock(&ls->ls_orphans_mutex);
4690 list_add_tail(&lkb->lkb_ownqueue, &ls->ls_orphans);
4691 mutex_unlock(&ls->ls_orphans_mutex);
4693 set_unlock_args(0, ua, &args);
4695 error = cancel_lock(ls, lkb, &args);
4696 if (error == -DLM_ECANCEL)
4701 /* The force flag allows the unlock to go ahead even if the lkb isn't granted.
4702 Regardless of what rsb queue the lock is on, it's removed and freed. */
4704 static int unlock_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb)
4706 struct dlm_user_args *ua = (struct dlm_user_args *)lkb->lkb_astparam;
4707 struct dlm_args args;
4710 set_unlock_args(DLM_LKF_FORCEUNLOCK, ua, &args);
4712 error = unlock_lock(ls, lkb, &args);
4713 if (error == -DLM_EUNLOCK)
4718 /* We have to release clear_proc_locks mutex before calling unlock_proc_lock()
4719 (which does lock_rsb) due to deadlock with receiving a message that does
4720 lock_rsb followed by dlm_user_add_ast() */
4722 static struct dlm_lkb *del_proc_lock(struct dlm_ls *ls,
4723 struct dlm_user_proc *proc)
4725 struct dlm_lkb *lkb = NULL;
4727 mutex_lock(&ls->ls_clear_proc_locks);
4728 if (list_empty(&proc->locks))
4731 lkb = list_entry(proc->locks.next, struct dlm_lkb, lkb_ownqueue);
4732 list_del_init(&lkb->lkb_ownqueue);
4734 if (lkb->lkb_exflags & DLM_LKF_PERSISTENT)
4735 lkb->lkb_flags |= DLM_IFL_ORPHAN;
4737 lkb->lkb_flags |= DLM_IFL_DEAD;
4739 mutex_unlock(&ls->ls_clear_proc_locks);
4743 /* The ls_clear_proc_locks mutex protects against dlm_user_add_asts() which
4744 1) references lkb->ua which we free here and 2) adds lkbs to proc->asts,
4745 which we clear here. */
4747 /* proc CLOSING flag is set so no more device_reads should look at proc->asts
4748 list, and no more device_writes should add lkb's to proc->locks list; so we
4749 shouldn't need to take asts_spin or locks_spin here. this assumes that
4750 device reads/writes/closes are serialized -- FIXME: we may need to serialize
4753 void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc)
4755 struct dlm_lkb *lkb, *safe;
4757 dlm_lock_recovery(ls);
4760 lkb = del_proc_lock(ls, proc);
4764 if (lkb->lkb_exflags & DLM_LKF_PERSISTENT)
4765 orphan_proc_lock(ls, lkb);
4767 unlock_proc_lock(ls, lkb);
4769 /* this removes the reference for the proc->locks list
4770 added by dlm_user_request, it may result in the lkb
4776 mutex_lock(&ls->ls_clear_proc_locks);
4778 /* in-progress unlocks */
4779 list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) {
4780 list_del_init(&lkb->lkb_ownqueue);
4781 lkb->lkb_flags |= DLM_IFL_DEAD;
4785 list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_astqueue) {
4786 lkb->lkb_ast_type = 0;
4787 list_del(&lkb->lkb_astqueue);
4791 mutex_unlock(&ls->ls_clear_proc_locks);
4792 dlm_unlock_recovery(ls);
4795 static void purge_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc)
4797 struct dlm_lkb *lkb, *safe;
4801 spin_lock(&proc->locks_spin);
4802 if (!list_empty(&proc->locks)) {
4803 lkb = list_entry(proc->locks.next, struct dlm_lkb,
4805 list_del_init(&lkb->lkb_ownqueue);
4807 spin_unlock(&proc->locks_spin);
4812 lkb->lkb_flags |= DLM_IFL_DEAD;
4813 unlock_proc_lock(ls, lkb);
4814 dlm_put_lkb(lkb); /* ref from proc->locks list */
4817 spin_lock(&proc->locks_spin);
4818 list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) {
4819 list_del_init(&lkb->lkb_ownqueue);
4820 lkb->lkb_flags |= DLM_IFL_DEAD;
4823 spin_unlock(&proc->locks_spin);
4825 spin_lock(&proc->asts_spin);
4826 list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_astqueue) {
4827 list_del(&lkb->lkb_astqueue);
4830 spin_unlock(&proc->asts_spin);
4833 /* pid of 0 means purge all orphans */
4835 static void do_purge(struct dlm_ls *ls, int nodeid, int pid)
4837 struct dlm_lkb *lkb, *safe;
4839 mutex_lock(&ls->ls_orphans_mutex);
4840 list_for_each_entry_safe(lkb, safe, &ls->ls_orphans, lkb_ownqueue) {
4841 if (pid && lkb->lkb_ownpid != pid)
4843 unlock_proc_lock(ls, lkb);
4844 list_del_init(&lkb->lkb_ownqueue);
4847 mutex_unlock(&ls->ls_orphans_mutex);
4850 static int send_purge(struct dlm_ls *ls, int nodeid, int pid)
4852 struct dlm_message *ms;
4853 struct dlm_mhandle *mh;
4856 error = _create_message(ls, sizeof(struct dlm_message), nodeid,
4857 DLM_MSG_PURGE, &ms, &mh);
4860 ms->m_nodeid = nodeid;
4863 return send_message(mh, ms);
4866 int dlm_user_purge(struct dlm_ls *ls, struct dlm_user_proc *proc,
4867 int nodeid, int pid)
4871 if (nodeid != dlm_our_nodeid()) {
4872 error = send_purge(ls, nodeid, pid);
4874 dlm_lock_recovery(ls);
4875 if (pid == current->pid)
4876 purge_proc_locks(ls, proc);
4878 do_purge(ls, nodeid, pid);
4879 dlm_unlock_recovery(ls);