1 /******************************************************************************
2 *******************************************************************************
4 ** Copyright (C) 2005-2007 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
);
91 void dlm_timeout_warn(struct dlm_lkb
*lkb
);
94 * Lock compatibilty matrix - thanks Steve
95 * UN = Unlocked state. Not really a state, used as a flag
96 * PD = Padding. Used to make the matrix a nice power of two in size
97 * Other states are the same as the VMS DLM.
98 * Usage: matrix[grmode+1][rqmode+1] (although m[rq+1][gr+1] is the same)
101 static const int __dlm_compat_matrix
[8][8] = {
102 /* UN NL CR CW PR PW EX PD */
103 {1, 1, 1, 1, 1, 1, 1, 0}, /* UN */
104 {1, 1, 1, 1, 1, 1, 1, 0}, /* NL */
105 {1, 1, 1, 1, 1, 1, 0, 0}, /* CR */
106 {1, 1, 1, 1, 0, 0, 0, 0}, /* CW */
107 {1, 1, 1, 0, 1, 0, 0, 0}, /* PR */
108 {1, 1, 1, 0, 0, 0, 0, 0}, /* PW */
109 {1, 1, 0, 0, 0, 0, 0, 0}, /* EX */
110 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
114 * This defines the direction of transfer of LVB data.
115 * Granted mode is the row; requested mode is the column.
116 * Usage: matrix[grmode+1][rqmode+1]
117 * 1 = LVB is returned to the caller
118 * 0 = LVB is written to the resource
119 * -1 = nothing happens to the LVB
122 const int dlm_lvb_operations
[8][8] = {
123 /* UN NL CR CW PR PW EX PD*/
124 { -1, 1, 1, 1, 1, 1, 1, -1 }, /* UN */
125 { -1, 1, 1, 1, 1, 1, 1, 0 }, /* NL */
126 { -1, -1, 1, 1, 1, 1, 1, 0 }, /* CR */
127 { -1, -1, -1, 1, 1, 1, 1, 0 }, /* CW */
128 { -1, -1, -1, -1, 1, 1, 1, 0 }, /* PR */
129 { -1, 0, 0, 0, 0, 0, 1, 0 }, /* PW */
130 { -1, 0, 0, 0, 0, 0, 0, 0 }, /* EX */
131 { -1, 0, 0, 0, 0, 0, 0, 0 } /* PD */
134 #define modes_compat(gr, rq) \
135 __dlm_compat_matrix[(gr)->lkb_grmode + 1][(rq)->lkb_rqmode + 1]
137 int dlm_modes_compat(int mode1
, int mode2
)
139 return __dlm_compat_matrix
[mode1
+ 1][mode2
+ 1];
143 * Compatibility matrix for conversions with QUECVT set.
144 * Granted mode is the row; requested mode is the column.
145 * Usage: matrix[grmode+1][rqmode+1]
148 static const int __quecvt_compat_matrix
[8][8] = {
149 /* UN NL CR CW PR PW EX PD */
150 {0, 0, 0, 0, 0, 0, 0, 0}, /* UN */
151 {0, 0, 1, 1, 1, 1, 1, 0}, /* NL */
152 {0, 0, 0, 1, 1, 1, 1, 0}, /* CR */
153 {0, 0, 0, 0, 1, 1, 1, 0}, /* CW */
154 {0, 0, 0, 1, 0, 1, 1, 0}, /* PR */
155 {0, 0, 0, 0, 0, 0, 1, 0}, /* PW */
156 {0, 0, 0, 0, 0, 0, 0, 0}, /* EX */
157 {0, 0, 0, 0, 0, 0, 0, 0} /* PD */
160 void dlm_print_lkb(struct dlm_lkb
*lkb
)
162 printk(KERN_ERR
"lkb: nodeid %d id %x remid %x exflags %x flags %x\n"
163 " status %d rqmode %d grmode %d wait_type %d ast_type %d\n",
164 lkb
->lkb_nodeid
, lkb
->lkb_id
, lkb
->lkb_remid
, lkb
->lkb_exflags
,
165 lkb
->lkb_flags
, lkb
->lkb_status
, lkb
->lkb_rqmode
,
166 lkb
->lkb_grmode
, lkb
->lkb_wait_type
, lkb
->lkb_ast_type
);
169 void dlm_print_rsb(struct dlm_rsb
*r
)
171 printk(KERN_ERR
"rsb: nodeid %d flags %lx first %x rlc %d name %s\n",
172 r
->res_nodeid
, r
->res_flags
, r
->res_first_lkid
,
173 r
->res_recover_locks_count
, r
->res_name
);
176 void dlm_dump_rsb(struct dlm_rsb
*r
)
182 printk(KERN_ERR
"rsb: root_list empty %d recover_list empty %d\n",
183 list_empty(&r
->res_root_list
), list_empty(&r
->res_recover_list
));
184 printk(KERN_ERR
"rsb lookup list\n");
185 list_for_each_entry(lkb
, &r
->res_lookup
, lkb_rsb_lookup
)
187 printk(KERN_ERR
"rsb grant queue:\n");
188 list_for_each_entry(lkb
, &r
->res_grantqueue
, lkb_statequeue
)
190 printk(KERN_ERR
"rsb convert queue:\n");
191 list_for_each_entry(lkb
, &r
->res_convertqueue
, lkb_statequeue
)
193 printk(KERN_ERR
"rsb wait queue:\n");
194 list_for_each_entry(lkb
, &r
->res_waitqueue
, lkb_statequeue
)
198 /* Threads cannot use the lockspace while it's being recovered */
200 static inline void dlm_lock_recovery(struct dlm_ls
*ls
)
202 down_read(&ls
->ls_in_recovery
);
205 void dlm_unlock_recovery(struct dlm_ls
*ls
)
207 up_read(&ls
->ls_in_recovery
);
210 int dlm_lock_recovery_try(struct dlm_ls
*ls
)
212 return down_read_trylock(&ls
->ls_in_recovery
);
215 static inline int can_be_queued(struct dlm_lkb
*lkb
)
217 return !(lkb
->lkb_exflags
& DLM_LKF_NOQUEUE
);
220 static inline int force_blocking_asts(struct dlm_lkb
*lkb
)
222 return (lkb
->lkb_exflags
& DLM_LKF_NOQUEUEBAST
);
225 static inline int is_demoted(struct dlm_lkb
*lkb
)
227 return (lkb
->lkb_sbflags
& DLM_SBF_DEMOTED
);
230 static inline int is_altmode(struct dlm_lkb
*lkb
)
232 return (lkb
->lkb_sbflags
& DLM_SBF_ALTMODE
);
235 static inline int is_granted(struct dlm_lkb
*lkb
)
237 return (lkb
->lkb_status
== DLM_LKSTS_GRANTED
);
240 static inline int is_remote(struct dlm_rsb
*r
)
242 DLM_ASSERT(r
->res_nodeid
>= 0, dlm_print_rsb(r
););
243 return !!r
->res_nodeid
;
246 static inline int is_process_copy(struct dlm_lkb
*lkb
)
248 return (lkb
->lkb_nodeid
&& !(lkb
->lkb_flags
& DLM_IFL_MSTCPY
));
251 static inline int is_master_copy(struct dlm_lkb
*lkb
)
253 if (lkb
->lkb_flags
& DLM_IFL_MSTCPY
)
254 DLM_ASSERT(lkb
->lkb_nodeid
, dlm_print_lkb(lkb
););
255 return (lkb
->lkb_flags
& DLM_IFL_MSTCPY
) ? 1 : 0;
258 static inline int middle_conversion(struct dlm_lkb
*lkb
)
260 if ((lkb
->lkb_grmode
==DLM_LOCK_PR
&& lkb
->lkb_rqmode
==DLM_LOCK_CW
) ||
261 (lkb
->lkb_rqmode
==DLM_LOCK_PR
&& lkb
->lkb_grmode
==DLM_LOCK_CW
))
266 static inline int down_conversion(struct dlm_lkb
*lkb
)
268 return (!middle_conversion(lkb
) && lkb
->lkb_rqmode
< lkb
->lkb_grmode
);
271 static inline int is_overlap_unlock(struct dlm_lkb
*lkb
)
273 return lkb
->lkb_flags
& DLM_IFL_OVERLAP_UNLOCK
;
276 static inline int is_overlap_cancel(struct dlm_lkb
*lkb
)
278 return lkb
->lkb_flags
& DLM_IFL_OVERLAP_CANCEL
;
281 static inline int is_overlap(struct dlm_lkb
*lkb
)
283 return (lkb
->lkb_flags
& (DLM_IFL_OVERLAP_UNLOCK
|
284 DLM_IFL_OVERLAP_CANCEL
));
287 static void queue_cast(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rv
)
289 if (is_master_copy(lkb
))
294 DLM_ASSERT(lkb
->lkb_lksb
, dlm_print_lkb(lkb
););
296 /* if the operation was a cancel, then return -DLM_ECANCEL, if a
297 timeout caused the cancel then return -ETIMEDOUT */
298 if (rv
== -DLM_ECANCEL
&& (lkb
->lkb_flags
& DLM_IFL_TIMEOUT_CANCEL
)) {
299 lkb
->lkb_flags
&= ~DLM_IFL_TIMEOUT_CANCEL
;
303 if (rv
== -DLM_ECANCEL
&& (lkb
->lkb_flags
& DLM_IFL_DEADLOCK_CANCEL
)) {
304 lkb
->lkb_flags
&= ~DLM_IFL_DEADLOCK_CANCEL
;
308 lkb
->lkb_lksb
->sb_status
= rv
;
309 lkb
->lkb_lksb
->sb_flags
= lkb
->lkb_sbflags
;
311 dlm_add_ast(lkb
, AST_COMP
);
314 static inline void queue_cast_overlap(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
317 is_overlap_unlock(lkb
) ? -DLM_EUNLOCK
: -DLM_ECANCEL
);
320 static void queue_bast(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rqmode
)
322 if (is_master_copy(lkb
))
323 send_bast(r
, lkb
, rqmode
);
325 lkb
->lkb_bastmode
= rqmode
;
326 dlm_add_ast(lkb
, AST_BAST
);
331 * Basic operations on rsb's and lkb's
334 static struct dlm_rsb
*create_rsb(struct dlm_ls
*ls
, char *name
, int len
)
338 r
= allocate_rsb(ls
, len
);
344 memcpy(r
->res_name
, name
, len
);
345 mutex_init(&r
->res_mutex
);
347 INIT_LIST_HEAD(&r
->res_lookup
);
348 INIT_LIST_HEAD(&r
->res_grantqueue
);
349 INIT_LIST_HEAD(&r
->res_convertqueue
);
350 INIT_LIST_HEAD(&r
->res_waitqueue
);
351 INIT_LIST_HEAD(&r
->res_root_list
);
352 INIT_LIST_HEAD(&r
->res_recover_list
);
357 static int search_rsb_list(struct list_head
*head
, char *name
, int len
,
358 unsigned int flags
, struct dlm_rsb
**r_ret
)
363 list_for_each_entry(r
, head
, res_hashchain
) {
364 if (len
== r
->res_length
&& !memcmp(name
, r
->res_name
, len
))
370 if (r
->res_nodeid
&& (flags
& R_MASTER
))
376 static int _search_rsb(struct dlm_ls
*ls
, char *name
, int len
, int b
,
377 unsigned int flags
, struct dlm_rsb
**r_ret
)
382 error
= search_rsb_list(&ls
->ls_rsbtbl
[b
].list
, name
, len
, flags
, &r
);
384 kref_get(&r
->res_ref
);
387 error
= search_rsb_list(&ls
->ls_rsbtbl
[b
].toss
, name
, len
, flags
, &r
);
391 list_move(&r
->res_hashchain
, &ls
->ls_rsbtbl
[b
].list
);
393 if (dlm_no_directory(ls
))
396 if (r
->res_nodeid
== -1) {
397 rsb_clear_flag(r
, RSB_MASTER_UNCERTAIN
);
398 r
->res_first_lkid
= 0;
399 } else if (r
->res_nodeid
> 0) {
400 rsb_set_flag(r
, RSB_MASTER_UNCERTAIN
);
401 r
->res_first_lkid
= 0;
403 DLM_ASSERT(r
->res_nodeid
== 0, dlm_print_rsb(r
););
404 DLM_ASSERT(!rsb_flag(r
, RSB_MASTER_UNCERTAIN
),);
411 static int search_rsb(struct dlm_ls
*ls
, char *name
, int len
, int b
,
412 unsigned int flags
, struct dlm_rsb
**r_ret
)
415 write_lock(&ls
->ls_rsbtbl
[b
].lock
);
416 error
= _search_rsb(ls
, name
, len
, b
, flags
, r_ret
);
417 write_unlock(&ls
->ls_rsbtbl
[b
].lock
);
422 * Find rsb in rsbtbl and potentially create/add one
424 * Delaying the release of rsb's has a similar benefit to applications keeping
425 * NL locks on an rsb, but without the guarantee that the cached master value
426 * will still be valid when the rsb is reused. Apps aren't always smart enough
427 * to keep NL locks on an rsb that they may lock again shortly; this can lead
428 * to excessive master lookups and removals if we don't delay the release.
430 * Searching for an rsb means looking through both the normal list and toss
431 * list. When found on the toss list the rsb is moved to the normal list with
432 * ref count of 1; when found on normal list the ref count is incremented.
435 static int find_rsb(struct dlm_ls
*ls
, char *name
, int namelen
,
436 unsigned int flags
, struct dlm_rsb
**r_ret
)
438 struct dlm_rsb
*r
, *tmp
;
439 uint32_t hash
, bucket
;
442 if (dlm_no_directory(ls
))
445 hash
= jhash(name
, namelen
, 0);
446 bucket
= hash
& (ls
->ls_rsbtbl_size
- 1);
448 error
= search_rsb(ls
, name
, namelen
, bucket
, flags
, &r
);
452 if (error
== -EBADR
&& !(flags
& R_CREATE
))
455 /* the rsb was found but wasn't a master copy */
456 if (error
== -ENOTBLK
)
460 r
= create_rsb(ls
, name
, namelen
);
465 r
->res_bucket
= bucket
;
467 kref_init(&r
->res_ref
);
469 /* With no directory, the master can be set immediately */
470 if (dlm_no_directory(ls
)) {
471 int nodeid
= dlm_dir_nodeid(r
);
472 if (nodeid
== dlm_our_nodeid())
474 r
->res_nodeid
= nodeid
;
477 write_lock(&ls
->ls_rsbtbl
[bucket
].lock
);
478 error
= _search_rsb(ls
, name
, namelen
, bucket
, 0, &tmp
);
480 write_unlock(&ls
->ls_rsbtbl
[bucket
].lock
);
485 list_add(&r
->res_hashchain
, &ls
->ls_rsbtbl
[bucket
].list
);
486 write_unlock(&ls
->ls_rsbtbl
[bucket
].lock
);
493 int dlm_find_rsb(struct dlm_ls
*ls
, char *name
, int namelen
,
494 unsigned int flags
, struct dlm_rsb
**r_ret
)
496 return find_rsb(ls
, name
, namelen
, flags
, r_ret
);
499 /* This is only called to add a reference when the code already holds
500 a valid reference to the rsb, so there's no need for locking. */
502 static inline void hold_rsb(struct dlm_rsb
*r
)
504 kref_get(&r
->res_ref
);
507 void dlm_hold_rsb(struct dlm_rsb
*r
)
512 static void toss_rsb(struct kref
*kref
)
514 struct dlm_rsb
*r
= container_of(kref
, struct dlm_rsb
, res_ref
);
515 struct dlm_ls
*ls
= r
->res_ls
;
517 DLM_ASSERT(list_empty(&r
->res_root_list
), dlm_print_rsb(r
););
518 kref_init(&r
->res_ref
);
519 list_move(&r
->res_hashchain
, &ls
->ls_rsbtbl
[r
->res_bucket
].toss
);
520 r
->res_toss_time
= jiffies
;
522 free_lvb(r
->res_lvbptr
);
523 r
->res_lvbptr
= NULL
;
527 /* When all references to the rsb are gone it's transfered to
528 the tossed list for later disposal. */
530 static void put_rsb(struct dlm_rsb
*r
)
532 struct dlm_ls
*ls
= r
->res_ls
;
533 uint32_t bucket
= r
->res_bucket
;
535 write_lock(&ls
->ls_rsbtbl
[bucket
].lock
);
536 kref_put(&r
->res_ref
, toss_rsb
);
537 write_unlock(&ls
->ls_rsbtbl
[bucket
].lock
);
540 void dlm_put_rsb(struct dlm_rsb
*r
)
545 /* See comment for unhold_lkb */
547 static void unhold_rsb(struct dlm_rsb
*r
)
550 rv
= kref_put(&r
->res_ref
, toss_rsb
);
551 DLM_ASSERT(!rv
, dlm_dump_rsb(r
););
554 static void kill_rsb(struct kref
*kref
)
556 struct dlm_rsb
*r
= container_of(kref
, struct dlm_rsb
, res_ref
);
558 /* All work is done after the return from kref_put() so we
559 can release the write_lock before the remove and free. */
561 DLM_ASSERT(list_empty(&r
->res_lookup
), dlm_dump_rsb(r
););
562 DLM_ASSERT(list_empty(&r
->res_grantqueue
), dlm_dump_rsb(r
););
563 DLM_ASSERT(list_empty(&r
->res_convertqueue
), dlm_dump_rsb(r
););
564 DLM_ASSERT(list_empty(&r
->res_waitqueue
), dlm_dump_rsb(r
););
565 DLM_ASSERT(list_empty(&r
->res_root_list
), dlm_dump_rsb(r
););
566 DLM_ASSERT(list_empty(&r
->res_recover_list
), dlm_dump_rsb(r
););
569 /* Attaching/detaching lkb's from rsb's is for rsb reference counting.
570 The rsb must exist as long as any lkb's for it do. */
572 static void attach_lkb(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
575 lkb
->lkb_resource
= r
;
578 static void detach_lkb(struct dlm_lkb
*lkb
)
580 if (lkb
->lkb_resource
) {
581 put_rsb(lkb
->lkb_resource
);
582 lkb
->lkb_resource
= NULL
;
586 static int create_lkb(struct dlm_ls
*ls
, struct dlm_lkb
**lkb_ret
)
588 struct dlm_lkb
*lkb
, *tmp
;
592 lkb
= allocate_lkb(ls
);
596 lkb
->lkb_nodeid
= -1;
597 lkb
->lkb_grmode
= DLM_LOCK_IV
;
598 kref_init(&lkb
->lkb_ref
);
599 INIT_LIST_HEAD(&lkb
->lkb_ownqueue
);
600 INIT_LIST_HEAD(&lkb
->lkb_rsb_lookup
);
601 INIT_LIST_HEAD(&lkb
->lkb_time_list
);
603 get_random_bytes(&bucket
, sizeof(bucket
));
604 bucket
&= (ls
->ls_lkbtbl_size
- 1);
606 write_lock(&ls
->ls_lkbtbl
[bucket
].lock
);
608 /* counter can roll over so we must verify lkid is not in use */
611 lkid
= (bucket
<< 16) | ls
->ls_lkbtbl
[bucket
].counter
++;
613 list_for_each_entry(tmp
, &ls
->ls_lkbtbl
[bucket
].list
,
615 if (tmp
->lkb_id
!= lkid
)
623 list_add(&lkb
->lkb_idtbl_list
, &ls
->ls_lkbtbl
[bucket
].list
);
624 write_unlock(&ls
->ls_lkbtbl
[bucket
].lock
);
630 static struct dlm_lkb
*__find_lkb(struct dlm_ls
*ls
, uint32_t lkid
)
633 uint16_t bucket
= (lkid
>> 16);
635 list_for_each_entry(lkb
, &ls
->ls_lkbtbl
[bucket
].list
, lkb_idtbl_list
) {
636 if (lkb
->lkb_id
== lkid
)
642 static int find_lkb(struct dlm_ls
*ls
, uint32_t lkid
, struct dlm_lkb
**lkb_ret
)
645 uint16_t bucket
= (lkid
>> 16);
647 if (bucket
>= ls
->ls_lkbtbl_size
)
650 read_lock(&ls
->ls_lkbtbl
[bucket
].lock
);
651 lkb
= __find_lkb(ls
, lkid
);
653 kref_get(&lkb
->lkb_ref
);
654 read_unlock(&ls
->ls_lkbtbl
[bucket
].lock
);
657 return lkb
? 0 : -ENOENT
;
660 static void kill_lkb(struct kref
*kref
)
662 struct dlm_lkb
*lkb
= container_of(kref
, struct dlm_lkb
, lkb_ref
);
664 /* All work is done after the return from kref_put() so we
665 can release the write_lock before the detach_lkb */
667 DLM_ASSERT(!lkb
->lkb_status
, dlm_print_lkb(lkb
););
670 /* __put_lkb() is used when an lkb may not have an rsb attached to
671 it so we need to provide the lockspace explicitly */
673 static int __put_lkb(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
675 uint16_t bucket
= (lkb
->lkb_id
>> 16);
677 write_lock(&ls
->ls_lkbtbl
[bucket
].lock
);
678 if (kref_put(&lkb
->lkb_ref
, kill_lkb
)) {
679 list_del(&lkb
->lkb_idtbl_list
);
680 write_unlock(&ls
->ls_lkbtbl
[bucket
].lock
);
684 /* for local/process lkbs, lvbptr points to caller's lksb */
685 if (lkb
->lkb_lvbptr
&& is_master_copy(lkb
))
686 free_lvb(lkb
->lkb_lvbptr
);
690 write_unlock(&ls
->ls_lkbtbl
[bucket
].lock
);
695 int dlm_put_lkb(struct dlm_lkb
*lkb
)
699 DLM_ASSERT(lkb
->lkb_resource
, dlm_print_lkb(lkb
););
700 DLM_ASSERT(lkb
->lkb_resource
->res_ls
, dlm_print_lkb(lkb
););
702 ls
= lkb
->lkb_resource
->res_ls
;
703 return __put_lkb(ls
, lkb
);
706 /* This is only called to add a reference when the code already holds
707 a valid reference to the lkb, so there's no need for locking. */
709 static inline void hold_lkb(struct dlm_lkb
*lkb
)
711 kref_get(&lkb
->lkb_ref
);
714 /* This is called when we need to remove a reference and are certain
715 it's not the last ref. e.g. del_lkb is always called between a
716 find_lkb/put_lkb and is always the inverse of a previous add_lkb.
717 put_lkb would work fine, but would involve unnecessary locking */
719 static inline void unhold_lkb(struct dlm_lkb
*lkb
)
722 rv
= kref_put(&lkb
->lkb_ref
, kill_lkb
);
723 DLM_ASSERT(!rv
, dlm_print_lkb(lkb
););
726 static void lkb_add_ordered(struct list_head
*new, struct list_head
*head
,
729 struct dlm_lkb
*lkb
= NULL
;
731 list_for_each_entry(lkb
, head
, lkb_statequeue
)
732 if (lkb
->lkb_rqmode
< mode
)
736 list_add_tail(new, head
);
738 __list_add(new, lkb
->lkb_statequeue
.prev
, &lkb
->lkb_statequeue
);
741 /* add/remove lkb to rsb's grant/convert/wait queue */
743 static void add_lkb(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int status
)
745 kref_get(&lkb
->lkb_ref
);
747 DLM_ASSERT(!lkb
->lkb_status
, dlm_print_lkb(lkb
););
749 lkb
->lkb_status
= status
;
752 case DLM_LKSTS_WAITING
:
753 if (lkb
->lkb_exflags
& DLM_LKF_HEADQUE
)
754 list_add(&lkb
->lkb_statequeue
, &r
->res_waitqueue
);
756 list_add_tail(&lkb
->lkb_statequeue
, &r
->res_waitqueue
);
758 case DLM_LKSTS_GRANTED
:
759 /* convention says granted locks kept in order of grmode */
760 lkb_add_ordered(&lkb
->lkb_statequeue
, &r
->res_grantqueue
,
763 case DLM_LKSTS_CONVERT
:
764 if (lkb
->lkb_exflags
& DLM_LKF_HEADQUE
)
765 list_add(&lkb
->lkb_statequeue
, &r
->res_convertqueue
);
767 list_add_tail(&lkb
->lkb_statequeue
,
768 &r
->res_convertqueue
);
771 DLM_ASSERT(0, dlm_print_lkb(lkb
); printk("sts=%d\n", status
););
775 static void del_lkb(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
778 list_del(&lkb
->lkb_statequeue
);
782 static void move_lkb(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int sts
)
786 add_lkb(r
, lkb
, sts
);
790 static int msg_reply_type(int mstype
)
793 case DLM_MSG_REQUEST
:
794 return DLM_MSG_REQUEST_REPLY
;
795 case DLM_MSG_CONVERT
:
796 return DLM_MSG_CONVERT_REPLY
;
798 return DLM_MSG_UNLOCK_REPLY
;
800 return DLM_MSG_CANCEL_REPLY
;
802 return DLM_MSG_LOOKUP_REPLY
;
807 /* add/remove lkb from global waiters list of lkb's waiting for
808 a reply from a remote node */
810 static int add_to_waiters(struct dlm_lkb
*lkb
, int mstype
)
812 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
815 mutex_lock(&ls
->ls_waiters_mutex
);
817 if (is_overlap_unlock(lkb
) ||
818 (is_overlap_cancel(lkb
) && (mstype
== DLM_MSG_CANCEL
))) {
823 if (lkb
->lkb_wait_type
|| is_overlap_cancel(lkb
)) {
826 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_UNLOCK
;
829 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_CANCEL
;
835 lkb
->lkb_wait_count
++;
838 log_debug(ls
, "add overlap %x cur %d new %d count %d flags %x",
839 lkb
->lkb_id
, lkb
->lkb_wait_type
, mstype
,
840 lkb
->lkb_wait_count
, lkb
->lkb_flags
);
844 DLM_ASSERT(!lkb
->lkb_wait_count
,
846 printk("wait_count %d\n", lkb
->lkb_wait_count
););
848 lkb
->lkb_wait_count
++;
849 lkb
->lkb_wait_type
= mstype
;
851 list_add(&lkb
->lkb_wait_reply
, &ls
->ls_waiters
);
854 log_error(ls
, "add_to_waiters %x error %d flags %x %d %d %s",
855 lkb
->lkb_id
, error
, lkb
->lkb_flags
, mstype
,
856 lkb
->lkb_wait_type
, lkb
->lkb_resource
->res_name
);
857 mutex_unlock(&ls
->ls_waiters_mutex
);
861 /* We clear the RESEND flag because we might be taking an lkb off the waiters
862 list as part of process_requestqueue (e.g. a lookup that has an optimized
863 request reply on the requestqueue) between dlm_recover_waiters_pre() which
864 set RESEND and dlm_recover_waiters_post() */
866 static int _remove_from_waiters(struct dlm_lkb
*lkb
, int mstype
)
868 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
869 int overlap_done
= 0;
871 if (is_overlap_unlock(lkb
) && (mstype
== DLM_MSG_UNLOCK_REPLY
)) {
872 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_UNLOCK
;
877 if (is_overlap_cancel(lkb
) && (mstype
== DLM_MSG_CANCEL_REPLY
)) {
878 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_CANCEL
;
883 /* N.B. type of reply may not always correspond to type of original
884 msg due to lookup->request optimization, verify others? */
886 if (lkb
->lkb_wait_type
) {
887 lkb
->lkb_wait_type
= 0;
891 log_error(ls
, "remove_from_waiters lkid %x flags %x types %d %d",
892 lkb
->lkb_id
, lkb
->lkb_flags
, mstype
, lkb
->lkb_wait_type
);
896 /* the force-unlock/cancel has completed and we haven't recvd a reply
897 to the op that was in progress prior to the unlock/cancel; we
898 give up on any reply to the earlier op. FIXME: not sure when/how
901 if (overlap_done
&& lkb
->lkb_wait_type
) {
902 log_error(ls
, "remove_from_waiters %x reply %d give up on %d",
903 lkb
->lkb_id
, mstype
, lkb
->lkb_wait_type
);
904 lkb
->lkb_wait_count
--;
905 lkb
->lkb_wait_type
= 0;
908 DLM_ASSERT(lkb
->lkb_wait_count
, dlm_print_lkb(lkb
););
910 lkb
->lkb_flags
&= ~DLM_IFL_RESEND
;
911 lkb
->lkb_wait_count
--;
912 if (!lkb
->lkb_wait_count
)
913 list_del_init(&lkb
->lkb_wait_reply
);
918 static int remove_from_waiters(struct dlm_lkb
*lkb
, int mstype
)
920 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
923 mutex_lock(&ls
->ls_waiters_mutex
);
924 error
= _remove_from_waiters(lkb
, mstype
);
925 mutex_unlock(&ls
->ls_waiters_mutex
);
929 /* Handles situations where we might be processing a "fake" or "stub" reply in
930 which we can't try to take waiters_mutex again. */
932 static int remove_from_waiters_ms(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
934 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
937 if (ms
!= &ls
->ls_stub_ms
)
938 mutex_lock(&ls
->ls_waiters_mutex
);
939 error
= _remove_from_waiters(lkb
, ms
->m_type
);
940 if (ms
!= &ls
->ls_stub_ms
)
941 mutex_unlock(&ls
->ls_waiters_mutex
);
945 static void dir_remove(struct dlm_rsb
*r
)
949 if (dlm_no_directory(r
->res_ls
))
952 to_nodeid
= dlm_dir_nodeid(r
);
953 if (to_nodeid
!= dlm_our_nodeid())
956 dlm_dir_remove_entry(r
->res_ls
, to_nodeid
,
957 r
->res_name
, r
->res_length
);
960 /* FIXME: shouldn't this be able to exit as soon as one non-due rsb is
961 found since they are in order of newest to oldest? */
963 static int shrink_bucket(struct dlm_ls
*ls
, int b
)
966 int count
= 0, found
;
970 write_lock(&ls
->ls_rsbtbl
[b
].lock
);
971 list_for_each_entry_reverse(r
, &ls
->ls_rsbtbl
[b
].toss
,
973 if (!time_after_eq(jiffies
, r
->res_toss_time
+
974 dlm_config
.ci_toss_secs
* HZ
))
981 write_unlock(&ls
->ls_rsbtbl
[b
].lock
);
985 if (kref_put(&r
->res_ref
, kill_rsb
)) {
986 list_del(&r
->res_hashchain
);
987 write_unlock(&ls
->ls_rsbtbl
[b
].lock
);
994 write_unlock(&ls
->ls_rsbtbl
[b
].lock
);
995 log_error(ls
, "tossed rsb in use %s", r
->res_name
);
1002 void dlm_scan_rsbs(struct dlm_ls
*ls
)
1006 for (i
= 0; i
< ls
->ls_rsbtbl_size
; i
++) {
1007 shrink_bucket(ls
, i
);
1008 if (dlm_locking_stopped(ls
))
1014 static void add_timeout(struct dlm_lkb
*lkb
)
1016 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
1018 if (is_master_copy(lkb
)) {
1019 lkb
->lkb_timestamp
= jiffies
;
1023 if (test_bit(LSFL_TIMEWARN
, &ls
->ls_flags
) &&
1024 !(lkb
->lkb_exflags
& DLM_LKF_NODLCKWT
)) {
1025 lkb
->lkb_flags
|= DLM_IFL_WATCH_TIMEWARN
;
1028 if (lkb
->lkb_exflags
& DLM_LKF_TIMEOUT
)
1033 DLM_ASSERT(list_empty(&lkb
->lkb_time_list
), dlm_print_lkb(lkb
););
1034 mutex_lock(&ls
->ls_timeout_mutex
);
1036 lkb
->lkb_timestamp
= jiffies
;
1037 list_add_tail(&lkb
->lkb_time_list
, &ls
->ls_timeout
);
1038 mutex_unlock(&ls
->ls_timeout_mutex
);
1041 static void del_timeout(struct dlm_lkb
*lkb
)
1043 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
1045 mutex_lock(&ls
->ls_timeout_mutex
);
1046 if (!list_empty(&lkb
->lkb_time_list
)) {
1047 list_del_init(&lkb
->lkb_time_list
);
1050 mutex_unlock(&ls
->ls_timeout_mutex
);
1053 /* FIXME: is it safe to look at lkb_exflags, lkb_flags, lkb_timestamp, and
1054 lkb_lksb_timeout without lock_rsb? Note: we can't lock timeout_mutex
1055 and then lock rsb because of lock ordering in add_timeout. We may need
1056 to specify some special timeout-related bits in the lkb that are just to
1057 be accessed under the timeout_mutex. */
1059 void dlm_scan_timeout(struct dlm_ls
*ls
)
1062 struct dlm_lkb
*lkb
;
1063 int do_cancel
, do_warn
;
1066 if (dlm_locking_stopped(ls
))
1071 mutex_lock(&ls
->ls_timeout_mutex
);
1072 list_for_each_entry(lkb
, &ls
->ls_timeout
, lkb_time_list
) {
1074 if ((lkb
->lkb_exflags
& DLM_LKF_TIMEOUT
) &&
1075 time_after_eq(jiffies
, lkb
->lkb_timestamp
+
1076 lkb
->lkb_timeout_cs
* HZ
/100))
1079 if ((lkb
->lkb_flags
& DLM_IFL_WATCH_TIMEWARN
) &&
1080 time_after_eq(jiffies
, lkb
->lkb_timestamp
+
1081 dlm_config
.ci_timewarn_cs
* HZ
/100))
1084 if (!do_cancel
&& !do_warn
)
1089 mutex_unlock(&ls
->ls_timeout_mutex
);
1091 if (!do_cancel
&& !do_warn
)
1094 r
= lkb
->lkb_resource
;
1099 /* clear flag so we only warn once */
1100 lkb
->lkb_flags
&= ~DLM_IFL_WATCH_TIMEWARN
;
1101 if (!(lkb
->lkb_exflags
& DLM_LKF_TIMEOUT
))
1103 dlm_timeout_warn(lkb
);
1107 log_debug(ls
, "timeout cancel %x node %d %s",
1108 lkb
->lkb_id
, lkb
->lkb_nodeid
, r
->res_name
);
1109 lkb
->lkb_flags
&= ~DLM_IFL_WATCH_TIMEWARN
;
1110 lkb
->lkb_flags
|= DLM_IFL_TIMEOUT_CANCEL
;
1112 _cancel_lock(r
, lkb
);
1121 /* This is only called by dlm_recoverd, and we rely on dlm_ls_stop() stopping
1122 dlm_recoverd before checking/setting ls_recover_begin. */
1124 void dlm_adjust_timeouts(struct dlm_ls
*ls
)
1126 struct dlm_lkb
*lkb
;
1127 long adj
= jiffies
- ls
->ls_recover_begin
;
1129 ls
->ls_recover_begin
= 0;
1130 mutex_lock(&ls
->ls_timeout_mutex
);
1131 list_for_each_entry(lkb
, &ls
->ls_timeout
, lkb_time_list
)
1132 lkb
->lkb_timestamp
+= adj
;
1133 mutex_unlock(&ls
->ls_timeout_mutex
);
1136 /* lkb is master or local copy */
1138 static void set_lvb_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1140 int b
, len
= r
->res_ls
->ls_lvblen
;
1142 /* b=1 lvb returned to caller
1143 b=0 lvb written to rsb or invalidated
1146 b
= dlm_lvb_operations
[lkb
->lkb_grmode
+ 1][lkb
->lkb_rqmode
+ 1];
1149 if (!lkb
->lkb_lvbptr
)
1152 if (!(lkb
->lkb_exflags
& DLM_LKF_VALBLK
))
1158 memcpy(lkb
->lkb_lvbptr
, r
->res_lvbptr
, len
);
1159 lkb
->lkb_lvbseq
= r
->res_lvbseq
;
1161 } else if (b
== 0) {
1162 if (lkb
->lkb_exflags
& DLM_LKF_IVVALBLK
) {
1163 rsb_set_flag(r
, RSB_VALNOTVALID
);
1167 if (!lkb
->lkb_lvbptr
)
1170 if (!(lkb
->lkb_exflags
& DLM_LKF_VALBLK
))
1174 r
->res_lvbptr
= allocate_lvb(r
->res_ls
);
1179 memcpy(r
->res_lvbptr
, lkb
->lkb_lvbptr
, len
);
1181 lkb
->lkb_lvbseq
= r
->res_lvbseq
;
1182 rsb_clear_flag(r
, RSB_VALNOTVALID
);
1185 if (rsb_flag(r
, RSB_VALNOTVALID
))
1186 lkb
->lkb_sbflags
|= DLM_SBF_VALNOTVALID
;
1189 static void set_lvb_unlock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1191 if (lkb
->lkb_grmode
< DLM_LOCK_PW
)
1194 if (lkb
->lkb_exflags
& DLM_LKF_IVVALBLK
) {
1195 rsb_set_flag(r
, RSB_VALNOTVALID
);
1199 if (!lkb
->lkb_lvbptr
)
1202 if (!(lkb
->lkb_exflags
& DLM_LKF_VALBLK
))
1206 r
->res_lvbptr
= allocate_lvb(r
->res_ls
);
1211 memcpy(r
->res_lvbptr
, lkb
->lkb_lvbptr
, r
->res_ls
->ls_lvblen
);
1213 rsb_clear_flag(r
, RSB_VALNOTVALID
);
1216 /* lkb is process copy (pc) */
1218 static void set_lvb_lock_pc(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
1219 struct dlm_message
*ms
)
1223 if (!lkb
->lkb_lvbptr
)
1226 if (!(lkb
->lkb_exflags
& DLM_LKF_VALBLK
))
1229 b
= dlm_lvb_operations
[lkb
->lkb_grmode
+ 1][lkb
->lkb_rqmode
+ 1];
1231 int len
= receive_extralen(ms
);
1232 memcpy(lkb
->lkb_lvbptr
, ms
->m_extra
, len
);
1233 lkb
->lkb_lvbseq
= ms
->m_lvbseq
;
1237 /* Manipulate lkb's on rsb's convert/granted/waiting queues
1238 remove_lock -- used for unlock, removes lkb from granted
1239 revert_lock -- used for cancel, moves lkb from convert to granted
1240 grant_lock -- used for request and convert, adds lkb to granted or
1241 moves lkb from convert or waiting to granted
1243 Each of these is used for master or local copy lkb's. There is
1244 also a _pc() variation used to make the corresponding change on
1245 a process copy (pc) lkb. */
1247 static void _remove_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1250 lkb
->lkb_grmode
= DLM_LOCK_IV
;
1251 /* this unhold undoes the original ref from create_lkb()
1252 so this leads to the lkb being freed */
1256 static void remove_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1258 set_lvb_unlock(r
, lkb
);
1259 _remove_lock(r
, lkb
);
1262 static void remove_lock_pc(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1264 _remove_lock(r
, lkb
);
1267 /* returns: 0 did nothing
1268 1 moved lock to granted
1271 static int revert_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1275 lkb
->lkb_rqmode
= DLM_LOCK_IV
;
1277 switch (lkb
->lkb_status
) {
1278 case DLM_LKSTS_GRANTED
:
1280 case DLM_LKSTS_CONVERT
:
1281 move_lkb(r
, lkb
, DLM_LKSTS_GRANTED
);
1284 case DLM_LKSTS_WAITING
:
1286 lkb
->lkb_grmode
= DLM_LOCK_IV
;
1287 /* this unhold undoes the original ref from create_lkb()
1288 so this leads to the lkb being freed */
1293 log_print("invalid status for revert %d", lkb
->lkb_status
);
1298 static int revert_lock_pc(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1300 return revert_lock(r
, lkb
);
1303 static void _grant_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1305 if (lkb
->lkb_grmode
!= lkb
->lkb_rqmode
) {
1306 lkb
->lkb_grmode
= lkb
->lkb_rqmode
;
1307 if (lkb
->lkb_status
)
1308 move_lkb(r
, lkb
, DLM_LKSTS_GRANTED
);
1310 add_lkb(r
, lkb
, DLM_LKSTS_GRANTED
);
1313 lkb
->lkb_rqmode
= DLM_LOCK_IV
;
1316 static void grant_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1318 set_lvb_lock(r
, lkb
);
1319 _grant_lock(r
, lkb
);
1320 lkb
->lkb_highbast
= 0;
1323 static void grant_lock_pc(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
1324 struct dlm_message
*ms
)
1326 set_lvb_lock_pc(r
, lkb
, ms
);
1327 _grant_lock(r
, lkb
);
1330 /* called by grant_pending_locks() which means an async grant message must
1331 be sent to the requesting node in addition to granting the lock if the
1332 lkb belongs to a remote node. */
1334 static void grant_lock_pending(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1337 if (is_master_copy(lkb
))
1340 queue_cast(r
, lkb
, 0);
1343 /* The special CONVDEADLK, ALTPR and ALTCW flags allow the master to
1344 change the granted/requested modes. We're munging things accordingly in
1346 CONVDEADLK: our grmode may have been forced down to NL to resolve a
1348 ALTPR/ALTCW: our rqmode may have been changed to PR or CW to become
1349 compatible with other granted locks */
1351 static void munge_demoted(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
1353 if (ms
->m_type
!= DLM_MSG_CONVERT_REPLY
) {
1354 log_print("munge_demoted %x invalid reply type %d",
1355 lkb
->lkb_id
, ms
->m_type
);
1359 if (lkb
->lkb_rqmode
== DLM_LOCK_IV
|| lkb
->lkb_grmode
== DLM_LOCK_IV
) {
1360 log_print("munge_demoted %x invalid modes gr %d rq %d",
1361 lkb
->lkb_id
, lkb
->lkb_grmode
, lkb
->lkb_rqmode
);
1365 lkb
->lkb_grmode
= DLM_LOCK_NL
;
1368 static void munge_altmode(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
1370 if (ms
->m_type
!= DLM_MSG_REQUEST_REPLY
&&
1371 ms
->m_type
!= DLM_MSG_GRANT
) {
1372 log_print("munge_altmode %x invalid reply type %d",
1373 lkb
->lkb_id
, ms
->m_type
);
1377 if (lkb
->lkb_exflags
& DLM_LKF_ALTPR
)
1378 lkb
->lkb_rqmode
= DLM_LOCK_PR
;
1379 else if (lkb
->lkb_exflags
& DLM_LKF_ALTCW
)
1380 lkb
->lkb_rqmode
= DLM_LOCK_CW
;
1382 log_print("munge_altmode invalid exflags %x", lkb
->lkb_exflags
);
1387 static inline int first_in_list(struct dlm_lkb
*lkb
, struct list_head
*head
)
1389 struct dlm_lkb
*first
= list_entry(head
->next
, struct dlm_lkb
,
1391 if (lkb
->lkb_id
== first
->lkb_id
)
1397 /* Check if the given lkb conflicts with another lkb on the queue. */
1399 static int queue_conflict(struct list_head
*head
, struct dlm_lkb
*lkb
)
1401 struct dlm_lkb
*this;
1403 list_for_each_entry(this, head
, lkb_statequeue
) {
1406 if (!modes_compat(this, lkb
))
1413 * "A conversion deadlock arises with a pair of lock requests in the converting
1414 * queue for one resource. The granted mode of each lock blocks the requested
1415 * mode of the other lock."
1417 * Part 2: if the granted mode of lkb is preventing an earlier lkb in the
1418 * convert queue from being granted, then deadlk/demote lkb.
1421 * Granted Queue: empty
1422 * Convert Queue: NL->EX (first lock)
1423 * PR->EX (second lock)
1425 * The first lock can't be granted because of the granted mode of the second
1426 * lock and the second lock can't be granted because it's not first in the
1427 * list. We either cancel lkb's conversion (PR->EX) and return EDEADLK, or we
1428 * demote the granted mode of lkb (from PR to NL) if it has the CONVDEADLK
1429 * flag set and return DEMOTED in the lksb flags.
1431 * Originally, this function detected conv-deadlk in a more limited scope:
1432 * - if !modes_compat(lkb1, lkb2) && !modes_compat(lkb2, lkb1), or
1433 * - if lkb1 was the first entry in the queue (not just earlier), and was
1434 * blocked by the granted mode of lkb2, and there was nothing on the
1435 * granted queue preventing lkb1 from being granted immediately, i.e.
1436 * lkb2 was the only thing preventing lkb1 from being granted.
1438 * That second condition meant we'd only say there was conv-deadlk if
1439 * resolving it (by demotion) would lead to the first lock on the convert
1440 * queue being granted right away. It allowed conversion deadlocks to exist
1441 * between locks on the convert queue while they couldn't be granted anyway.
1443 * Now, we detect and take action on conversion deadlocks immediately when
1444 * they're created, even if they may not be immediately consequential. If
1445 * lkb1 exists anywhere in the convert queue and lkb2 comes in with a granted
1446 * mode that would prevent lkb1's conversion from being granted, we do a
1447 * deadlk/demote on lkb2 right away and don't let it onto the convert queue.
1448 * I think this means that the lkb_is_ahead condition below should always
1449 * be zero, i.e. there will never be conv-deadlk between two locks that are
1450 * both already on the convert queue.
1453 static int conversion_deadlock_detect(struct dlm_rsb
*r
, struct dlm_lkb
*lkb2
)
1455 struct dlm_lkb
*lkb1
;
1456 int lkb_is_ahead
= 0;
1458 list_for_each_entry(lkb1
, &r
->res_convertqueue
, lkb_statequeue
) {
1464 if (!lkb_is_ahead
) {
1465 if (!modes_compat(lkb2
, lkb1
))
1468 if (!modes_compat(lkb2
, lkb1
) &&
1469 !modes_compat(lkb1
, lkb2
))
1477 * Return 1 if the lock can be granted, 0 otherwise.
1478 * Also detect and resolve conversion deadlocks.
1480 * lkb is the lock to be granted
1482 * now is 1 if the function is being called in the context of the
1483 * immediate request, it is 0 if called later, after the lock has been
1486 * References are from chapter 6 of "VAXcluster Principles" by Roy Davis
1489 static int _can_be_granted(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int now
)
1491 int8_t conv
= (lkb
->lkb_grmode
!= DLM_LOCK_IV
);
1494 * 6-10: Version 5.4 introduced an option to address the phenomenon of
1495 * a new request for a NL mode lock being blocked.
1497 * 6-11: If the optional EXPEDITE flag is used with the new NL mode
1498 * request, then it would be granted. In essence, the use of this flag
1499 * tells the Lock Manager to expedite theis request by not considering
1500 * what may be in the CONVERTING or WAITING queues... As of this
1501 * writing, the EXPEDITE flag can be used only with new requests for NL
1502 * mode locks. This flag is not valid for conversion requests.
1504 * A shortcut. Earlier checks return an error if EXPEDITE is used in a
1505 * conversion or used with a non-NL requested mode. We also know an
1506 * EXPEDITE request is always granted immediately, so now must always
1507 * be 1. The full condition to grant an expedite request: (now &&
1508 * !conv && lkb->rqmode == DLM_LOCK_NL && (flags & EXPEDITE)) can
1509 * therefore be shortened to just checking the flag.
1512 if (lkb
->lkb_exflags
& DLM_LKF_EXPEDITE
)
1516 * A shortcut. Without this, !queue_conflict(grantqueue, lkb) would be
1517 * added to the remaining conditions.
1520 if (queue_conflict(&r
->res_grantqueue
, lkb
))
1524 * 6-3: By default, a conversion request is immediately granted if the
1525 * requested mode is compatible with the modes of all other granted
1529 if (queue_conflict(&r
->res_convertqueue
, lkb
))
1533 * 6-5: But the default algorithm for deciding whether to grant or
1534 * queue conversion requests does not by itself guarantee that such
1535 * requests are serviced on a "first come first serve" basis. This, in
1536 * turn, can lead to a phenomenon known as "indefinate postponement".
1538 * 6-7: This issue is dealt with by using the optional QUECVT flag with
1539 * the system service employed to request a lock conversion. This flag
1540 * forces certain conversion requests to be queued, even if they are
1541 * compatible with the granted modes of other locks on the same
1542 * resource. Thus, the use of this flag results in conversion requests
1543 * being ordered on a "first come first servce" basis.
1545 * DCT: This condition is all about new conversions being able to occur
1546 * "in place" while the lock remains on the granted queue (assuming
1547 * nothing else conflicts.) IOW if QUECVT isn't set, a conversion
1548 * doesn't _have_ to go onto the convert queue where it's processed in
1549 * order. The "now" variable is necessary to distinguish converts
1550 * being received and processed for the first time now, because once a
1551 * convert is moved to the conversion queue the condition below applies
1552 * requiring fifo granting.
1555 if (now
&& conv
&& !(lkb
->lkb_exflags
& DLM_LKF_QUECVT
))
1559 * The NOORDER flag is set to avoid the standard vms rules on grant
1563 if (lkb
->lkb_exflags
& DLM_LKF_NOORDER
)
1567 * 6-3: Once in that queue [CONVERTING], a conversion request cannot be
1568 * granted until all other conversion requests ahead of it are granted
1572 if (!now
&& conv
&& first_in_list(lkb
, &r
->res_convertqueue
))
1576 * 6-4: By default, a new request is immediately granted only if all
1577 * three of the following conditions are satisfied when the request is
1579 * - The queue of ungranted conversion requests for the resource is
1581 * - The queue of ungranted new requests for the resource is empty.
1582 * - The mode of the new request is compatible with the most
1583 * restrictive mode of all granted locks on the resource.
1586 if (now
&& !conv
&& list_empty(&r
->res_convertqueue
) &&
1587 list_empty(&r
->res_waitqueue
))
1591 * 6-4: Once a lock request is in the queue of ungranted new requests,
1592 * it cannot be granted until the queue of ungranted conversion
1593 * requests is empty, all ungranted new requests ahead of it are
1594 * granted and/or canceled, and it is compatible with the granted mode
1595 * of the most restrictive lock granted on the resource.
1598 if (!now
&& !conv
&& list_empty(&r
->res_convertqueue
) &&
1599 first_in_list(lkb
, &r
->res_waitqueue
))
1605 static int can_be_granted(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int now
,
1609 int8_t alt
= 0, rqmode
= lkb
->lkb_rqmode
;
1610 int8_t is_convert
= (lkb
->lkb_grmode
!= DLM_LOCK_IV
);
1615 rv
= _can_be_granted(r
, lkb
, now
);
1620 * The CONVDEADLK flag is non-standard and tells the dlm to resolve
1621 * conversion deadlocks by demoting grmode to NL, otherwise the dlm
1622 * cancels one of the locks.
1625 if (is_convert
&& can_be_queued(lkb
) &&
1626 conversion_deadlock_detect(r
, lkb
)) {
1627 if (lkb
->lkb_exflags
& DLM_LKF_CONVDEADLK
) {
1628 lkb
->lkb_grmode
= DLM_LOCK_NL
;
1629 lkb
->lkb_sbflags
|= DLM_SBF_DEMOTED
;
1630 } else if (!(lkb
->lkb_exflags
& DLM_LKF_NODLCKWT
)) {
1634 log_print("can_be_granted deadlock %x now %d",
1643 * The ALTPR and ALTCW flags are non-standard and tell the dlm to try
1644 * to grant a request in a mode other than the normal rqmode. It's a
1645 * simple way to provide a big optimization to applications that can
1649 if (rqmode
!= DLM_LOCK_PR
&& (lkb
->lkb_exflags
& DLM_LKF_ALTPR
))
1651 else if (rqmode
!= DLM_LOCK_CW
&& (lkb
->lkb_exflags
& DLM_LKF_ALTCW
))
1655 lkb
->lkb_rqmode
= alt
;
1656 rv
= _can_be_granted(r
, lkb
, now
);
1658 lkb
->lkb_sbflags
|= DLM_SBF_ALTMODE
;
1660 lkb
->lkb_rqmode
= rqmode
;
1666 /* FIXME: I don't think that can_be_granted() can/will demote or find deadlock
1667 for locks pending on the convert list. Once verified (watch for these
1668 log_prints), we should be able to just call _can_be_granted() and not
1669 bother with the demote/deadlk cases here (and there's no easy way to deal
1670 with a deadlk here, we'd have to generate something like grant_lock with
1671 the deadlk error.) */
1673 /* Returns the highest requested mode of all blocked conversions; sets
1674 cw if there's a blocked conversion to DLM_LOCK_CW. */
1676 static int grant_pending_convert(struct dlm_rsb
*r
, int high
, int *cw
)
1678 struct dlm_lkb
*lkb
, *s
;
1679 int hi
, demoted
, quit
, grant_restart
, demote_restart
;
1688 list_for_each_entry_safe(lkb
, s
, &r
->res_convertqueue
, lkb_statequeue
) {
1689 demoted
= is_demoted(lkb
);
1692 if (can_be_granted(r
, lkb
, 0, &deadlk
)) {
1693 grant_lock_pending(r
, lkb
);
1698 if (!demoted
&& is_demoted(lkb
)) {
1699 log_print("WARN: pending demoted %x node %d %s",
1700 lkb
->lkb_id
, lkb
->lkb_nodeid
, r
->res_name
);
1706 log_print("WARN: pending deadlock %x node %d %s",
1707 lkb
->lkb_id
, lkb
->lkb_nodeid
, r
->res_name
);
1712 hi
= max_t(int, lkb
->lkb_rqmode
, hi
);
1714 if (cw
&& lkb
->lkb_rqmode
== DLM_LOCK_CW
)
1720 if (demote_restart
&& !quit
) {
1725 return max_t(int, high
, hi
);
1728 static int grant_pending_wait(struct dlm_rsb
*r
, int high
, int *cw
)
1730 struct dlm_lkb
*lkb
, *s
;
1732 list_for_each_entry_safe(lkb
, s
, &r
->res_waitqueue
, lkb_statequeue
) {
1733 if (can_be_granted(r
, lkb
, 0, NULL
))
1734 grant_lock_pending(r
, lkb
);
1736 high
= max_t(int, lkb
->lkb_rqmode
, high
);
1737 if (lkb
->lkb_rqmode
== DLM_LOCK_CW
)
1745 /* cw of 1 means there's a lock with a rqmode of DLM_LOCK_CW that's blocked
1746 on either the convert or waiting queue.
1747 high is the largest rqmode of all locks blocked on the convert or
1750 static int lock_requires_bast(struct dlm_lkb
*gr
, int high
, int cw
)
1752 if (gr
->lkb_grmode
== DLM_LOCK_PR
&& cw
) {
1753 if (gr
->lkb_highbast
< DLM_LOCK_EX
)
1758 if (gr
->lkb_highbast
< high
&&
1759 !__dlm_compat_matrix
[gr
->lkb_grmode
+1][high
+1])
1764 static void grant_pending_locks(struct dlm_rsb
*r
)
1766 struct dlm_lkb
*lkb
, *s
;
1767 int high
= DLM_LOCK_IV
;
1770 DLM_ASSERT(is_master(r
), dlm_dump_rsb(r
););
1772 high
= grant_pending_convert(r
, high
, &cw
);
1773 high
= grant_pending_wait(r
, high
, &cw
);
1775 if (high
== DLM_LOCK_IV
)
1779 * If there are locks left on the wait/convert queue then send blocking
1780 * ASTs to granted locks based on the largest requested mode (high)
1784 list_for_each_entry_safe(lkb
, s
, &r
->res_grantqueue
, lkb_statequeue
) {
1785 if (lkb
->lkb_bastaddr
&& lock_requires_bast(lkb
, high
, cw
)) {
1786 if (cw
&& high
== DLM_LOCK_PR
)
1787 queue_bast(r
, lkb
, DLM_LOCK_CW
);
1789 queue_bast(r
, lkb
, high
);
1790 lkb
->lkb_highbast
= high
;
1795 static int modes_require_bast(struct dlm_lkb
*gr
, struct dlm_lkb
*rq
)
1797 if ((gr
->lkb_grmode
== DLM_LOCK_PR
&& rq
->lkb_rqmode
== DLM_LOCK_CW
) ||
1798 (gr
->lkb_grmode
== DLM_LOCK_CW
&& rq
->lkb_rqmode
== DLM_LOCK_PR
)) {
1799 if (gr
->lkb_highbast
< DLM_LOCK_EX
)
1804 if (gr
->lkb_highbast
< rq
->lkb_rqmode
&& !modes_compat(gr
, rq
))
1809 static void send_bast_queue(struct dlm_rsb
*r
, struct list_head
*head
,
1810 struct dlm_lkb
*lkb
)
1814 list_for_each_entry(gr
, head
, lkb_statequeue
) {
1815 if (gr
->lkb_bastaddr
&& modes_require_bast(gr
, lkb
)) {
1816 queue_bast(r
, gr
, lkb
->lkb_rqmode
);
1817 gr
->lkb_highbast
= lkb
->lkb_rqmode
;
1822 static void send_blocking_asts(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1824 send_bast_queue(r
, &r
->res_grantqueue
, lkb
);
1827 static void send_blocking_asts_all(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1829 send_bast_queue(r
, &r
->res_grantqueue
, lkb
);
1830 send_bast_queue(r
, &r
->res_convertqueue
, lkb
);
1833 /* set_master(r, lkb) -- set the master nodeid of a resource
1835 The purpose of this function is to set the nodeid field in the given
1836 lkb using the nodeid field in the given rsb. If the rsb's nodeid is
1837 known, it can just be copied to the lkb and the function will return
1838 0. If the rsb's nodeid is _not_ known, it needs to be looked up
1839 before it can be copied to the lkb.
1841 When the rsb nodeid is being looked up remotely, the initial lkb
1842 causing the lookup is kept on the ls_waiters list waiting for the
1843 lookup reply. Other lkb's waiting for the same rsb lookup are kept
1844 on the rsb's res_lookup list until the master is verified.
1847 0: nodeid is set in rsb/lkb and the caller should go ahead and use it
1848 1: the rsb master is not available and the lkb has been placed on
1852 static int set_master(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
1854 struct dlm_ls
*ls
= r
->res_ls
;
1855 int error
, dir_nodeid
, ret_nodeid
, our_nodeid
= dlm_our_nodeid();
1857 if (rsb_flag(r
, RSB_MASTER_UNCERTAIN
)) {
1858 rsb_clear_flag(r
, RSB_MASTER_UNCERTAIN
);
1859 r
->res_first_lkid
= lkb
->lkb_id
;
1860 lkb
->lkb_nodeid
= r
->res_nodeid
;
1864 if (r
->res_first_lkid
&& r
->res_first_lkid
!= lkb
->lkb_id
) {
1865 list_add_tail(&lkb
->lkb_rsb_lookup
, &r
->res_lookup
);
1869 if (r
->res_nodeid
== 0) {
1870 lkb
->lkb_nodeid
= 0;
1874 if (r
->res_nodeid
> 0) {
1875 lkb
->lkb_nodeid
= r
->res_nodeid
;
1879 DLM_ASSERT(r
->res_nodeid
== -1, dlm_dump_rsb(r
););
1881 dir_nodeid
= dlm_dir_nodeid(r
);
1883 if (dir_nodeid
!= our_nodeid
) {
1884 r
->res_first_lkid
= lkb
->lkb_id
;
1885 send_lookup(r
, lkb
);
1890 /* It's possible for dlm_scand to remove an old rsb for
1891 this same resource from the toss list, us to create
1892 a new one, look up the master locally, and find it
1893 already exists just before dlm_scand does the
1894 dir_remove() on the previous rsb. */
1896 error
= dlm_dir_lookup(ls
, our_nodeid
, r
->res_name
,
1897 r
->res_length
, &ret_nodeid
);
1900 log_debug(ls
, "dir_lookup error %d %s", error
, r
->res_name
);
1904 if (ret_nodeid
== our_nodeid
) {
1905 r
->res_first_lkid
= 0;
1907 lkb
->lkb_nodeid
= 0;
1909 r
->res_first_lkid
= lkb
->lkb_id
;
1910 r
->res_nodeid
= ret_nodeid
;
1911 lkb
->lkb_nodeid
= ret_nodeid
;
1916 static void process_lookup_list(struct dlm_rsb
*r
)
1918 struct dlm_lkb
*lkb
, *safe
;
1920 list_for_each_entry_safe(lkb
, safe
, &r
->res_lookup
, lkb_rsb_lookup
) {
1921 list_del_init(&lkb
->lkb_rsb_lookup
);
1922 _request_lock(r
, lkb
);
1927 /* confirm_master -- confirm (or deny) an rsb's master nodeid */
1929 static void confirm_master(struct dlm_rsb
*r
, int error
)
1931 struct dlm_lkb
*lkb
;
1933 if (!r
->res_first_lkid
)
1939 r
->res_first_lkid
= 0;
1940 process_lookup_list(r
);
1944 /* the remote master didn't queue our NOQUEUE request;
1945 make a waiting lkb the first_lkid */
1947 r
->res_first_lkid
= 0;
1949 if (!list_empty(&r
->res_lookup
)) {
1950 lkb
= list_entry(r
->res_lookup
.next
, struct dlm_lkb
,
1952 list_del_init(&lkb
->lkb_rsb_lookup
);
1953 r
->res_first_lkid
= lkb
->lkb_id
;
1954 _request_lock(r
, lkb
);
1960 log_error(r
->res_ls
, "confirm_master unknown error %d", error
);
1964 static int set_lock_args(int mode
, struct dlm_lksb
*lksb
, uint32_t flags
,
1965 int namelen
, unsigned long timeout_cs
, void *ast
,
1966 void *astarg
, void *bast
, struct dlm_args
*args
)
1970 /* check for invalid arg usage */
1972 if (mode
< 0 || mode
> DLM_LOCK_EX
)
1975 if (!(flags
& DLM_LKF_CONVERT
) && (namelen
> DLM_RESNAME_MAXLEN
))
1978 if (flags
& DLM_LKF_CANCEL
)
1981 if (flags
& DLM_LKF_QUECVT
&& !(flags
& DLM_LKF_CONVERT
))
1984 if (flags
& DLM_LKF_CONVDEADLK
&& !(flags
& DLM_LKF_CONVERT
))
1987 if (flags
& DLM_LKF_CONVDEADLK
&& flags
& DLM_LKF_NOQUEUE
)
1990 if (flags
& DLM_LKF_EXPEDITE
&& flags
& DLM_LKF_CONVERT
)
1993 if (flags
& DLM_LKF_EXPEDITE
&& flags
& DLM_LKF_QUECVT
)
1996 if (flags
& DLM_LKF_EXPEDITE
&& flags
& DLM_LKF_NOQUEUE
)
1999 if (flags
& DLM_LKF_EXPEDITE
&& mode
!= DLM_LOCK_NL
)
2005 if (flags
& DLM_LKF_VALBLK
&& !lksb
->sb_lvbptr
)
2008 if (flags
& DLM_LKF_CONVERT
&& !lksb
->sb_lkid
)
2011 /* these args will be copied to the lkb in validate_lock_args,
2012 it cannot be done now because when converting locks, fields in
2013 an active lkb cannot be modified before locking the rsb */
2015 args
->flags
= flags
;
2016 args
->astaddr
= ast
;
2017 args
->astparam
= (long) astarg
;
2018 args
->bastaddr
= bast
;
2019 args
->timeout
= timeout_cs
;
2027 static int set_unlock_args(uint32_t flags
, void *astarg
, struct dlm_args
*args
)
2029 if (flags
& ~(DLM_LKF_CANCEL
| DLM_LKF_VALBLK
| DLM_LKF_IVVALBLK
|
2030 DLM_LKF_FORCEUNLOCK
))
2033 if (flags
& DLM_LKF_CANCEL
&& flags
& DLM_LKF_FORCEUNLOCK
)
2036 args
->flags
= flags
;
2037 args
->astparam
= (long) astarg
;
2041 static int validate_lock_args(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2042 struct dlm_args
*args
)
2046 if (args
->flags
& DLM_LKF_CONVERT
) {
2047 if (lkb
->lkb_flags
& DLM_IFL_MSTCPY
)
2050 if (args
->flags
& DLM_LKF_QUECVT
&&
2051 !__quecvt_compat_matrix
[lkb
->lkb_grmode
+1][args
->mode
+1])
2055 if (lkb
->lkb_status
!= DLM_LKSTS_GRANTED
)
2058 if (lkb
->lkb_wait_type
)
2061 if (is_overlap(lkb
))
2065 lkb
->lkb_exflags
= args
->flags
;
2066 lkb
->lkb_sbflags
= 0;
2067 lkb
->lkb_astaddr
= args
->astaddr
;
2068 lkb
->lkb_astparam
= args
->astparam
;
2069 lkb
->lkb_bastaddr
= args
->bastaddr
;
2070 lkb
->lkb_rqmode
= args
->mode
;
2071 lkb
->lkb_lksb
= args
->lksb
;
2072 lkb
->lkb_lvbptr
= args
->lksb
->sb_lvbptr
;
2073 lkb
->lkb_ownpid
= (int) current
->pid
;
2074 lkb
->lkb_timeout_cs
= args
->timeout
;
2080 /* when dlm_unlock() sees -EBUSY with CANCEL/FORCEUNLOCK it returns 0
2083 /* note: it's valid for lkb_nodeid/res_nodeid to be -1 when we get here
2084 because there may be a lookup in progress and it's valid to do
2085 cancel/unlockf on it */
2087 static int validate_unlock_args(struct dlm_lkb
*lkb
, struct dlm_args
*args
)
2089 struct dlm_ls
*ls
= lkb
->lkb_resource
->res_ls
;
2092 if (lkb
->lkb_flags
& DLM_IFL_MSTCPY
) {
2093 log_error(ls
, "unlock on MSTCPY %x", lkb
->lkb_id
);
2098 /* an lkb may still exist even though the lock is EOL'ed due to a
2099 cancel, unlock or failed noqueue request; an app can't use these
2100 locks; return same error as if the lkid had not been found at all */
2102 if (lkb
->lkb_flags
& DLM_IFL_ENDOFLIFE
) {
2103 log_debug(ls
, "unlock on ENDOFLIFE %x", lkb
->lkb_id
);
2108 /* an lkb may be waiting for an rsb lookup to complete where the
2109 lookup was initiated by another lock */
2111 if (args
->flags
& (DLM_LKF_CANCEL
| DLM_LKF_FORCEUNLOCK
)) {
2112 if (!list_empty(&lkb
->lkb_rsb_lookup
)) {
2113 log_debug(ls
, "unlock on rsb_lookup %x", lkb
->lkb_id
);
2114 list_del_init(&lkb
->lkb_rsb_lookup
);
2115 queue_cast(lkb
->lkb_resource
, lkb
,
2116 args
->flags
& DLM_LKF_CANCEL
?
2117 -DLM_ECANCEL
: -DLM_EUNLOCK
);
2118 unhold_lkb(lkb
); /* undoes create_lkb() */
2124 /* cancel not allowed with another cancel/unlock in progress */
2126 if (args
->flags
& DLM_LKF_CANCEL
) {
2127 if (lkb
->lkb_exflags
& DLM_LKF_CANCEL
)
2130 if (is_overlap(lkb
))
2133 /* don't let scand try to do a cancel */
2136 if (lkb
->lkb_flags
& DLM_IFL_RESEND
) {
2137 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_CANCEL
;
2142 switch (lkb
->lkb_wait_type
) {
2143 case DLM_MSG_LOOKUP
:
2144 case DLM_MSG_REQUEST
:
2145 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_CANCEL
;
2148 case DLM_MSG_UNLOCK
:
2149 case DLM_MSG_CANCEL
:
2152 /* add_to_waiters() will set OVERLAP_CANCEL */
2156 /* do we need to allow a force-unlock if there's a normal unlock
2157 already in progress? in what conditions could the normal unlock
2158 fail such that we'd want to send a force-unlock to be sure? */
2160 if (args
->flags
& DLM_LKF_FORCEUNLOCK
) {
2161 if (lkb
->lkb_exflags
& DLM_LKF_FORCEUNLOCK
)
2164 if (is_overlap_unlock(lkb
))
2167 /* don't let scand try to do a cancel */
2170 if (lkb
->lkb_flags
& DLM_IFL_RESEND
) {
2171 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_UNLOCK
;
2176 switch (lkb
->lkb_wait_type
) {
2177 case DLM_MSG_LOOKUP
:
2178 case DLM_MSG_REQUEST
:
2179 lkb
->lkb_flags
|= DLM_IFL_OVERLAP_UNLOCK
;
2182 case DLM_MSG_UNLOCK
:
2185 /* add_to_waiters() will set OVERLAP_UNLOCK */
2189 /* normal unlock not allowed if there's any op in progress */
2191 if (lkb
->lkb_wait_type
|| lkb
->lkb_wait_count
)
2195 /* an overlapping op shouldn't blow away exflags from other op */
2196 lkb
->lkb_exflags
|= args
->flags
;
2197 lkb
->lkb_sbflags
= 0;
2198 lkb
->lkb_astparam
= args
->astparam
;
2202 log_debug(ls
, "validate_unlock_args %d %x %x %x %x %d %s", rv
,
2203 lkb
->lkb_id
, lkb
->lkb_flags
, lkb
->lkb_exflags
,
2204 args
->flags
, lkb
->lkb_wait_type
,
2205 lkb
->lkb_resource
->res_name
);
2210 * Four stage 4 varieties:
2211 * do_request(), do_convert(), do_unlock(), do_cancel()
2212 * These are called on the master node for the given lock and
2213 * from the central locking logic.
2216 static int do_request(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2220 if (can_be_granted(r
, lkb
, 1, NULL
)) {
2222 queue_cast(r
, lkb
, 0);
2226 if (can_be_queued(lkb
)) {
2227 error
= -EINPROGRESS
;
2228 add_lkb(r
, lkb
, DLM_LKSTS_WAITING
);
2229 send_blocking_asts(r
, lkb
);
2235 if (force_blocking_asts(lkb
))
2236 send_blocking_asts_all(r
, lkb
);
2237 queue_cast(r
, lkb
, -EAGAIN
);
2243 static int do_convert(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2248 /* changing an existing lock may allow others to be granted */
2250 if (can_be_granted(r
, lkb
, 1, &deadlk
)) {
2252 queue_cast(r
, lkb
, 0);
2253 grant_pending_locks(r
);
2257 /* can_be_granted() detected that this lock would block in a conversion
2258 deadlock, so we leave it on the granted queue and return EDEADLK in
2259 the ast for the convert. */
2262 /* it's left on the granted queue */
2263 log_debug(r
->res_ls
, "deadlock %x node %d sts%d g%d r%d %s",
2264 lkb
->lkb_id
, lkb
->lkb_nodeid
, lkb
->lkb_status
,
2265 lkb
->lkb_grmode
, lkb
->lkb_rqmode
, r
->res_name
);
2266 revert_lock(r
, lkb
);
2267 queue_cast(r
, lkb
, -EDEADLK
);
2272 /* is_demoted() means the can_be_granted() above set the grmode
2273 to NL, and left us on the granted queue. This auto-demotion
2274 (due to CONVDEADLK) might mean other locks, and/or this lock, are
2275 now grantable. We have to try to grant other converting locks
2276 before we try again to grant this one. */
2278 if (is_demoted(lkb
)) {
2279 grant_pending_convert(r
, DLM_LOCK_IV
, NULL
);
2280 if (_can_be_granted(r
, lkb
, 1)) {
2282 queue_cast(r
, lkb
, 0);
2283 grant_pending_locks(r
);
2286 /* else fall through and move to convert queue */
2289 if (can_be_queued(lkb
)) {
2290 error
= -EINPROGRESS
;
2292 add_lkb(r
, lkb
, DLM_LKSTS_CONVERT
);
2293 send_blocking_asts(r
, lkb
);
2299 if (force_blocking_asts(lkb
))
2300 send_blocking_asts_all(r
, lkb
);
2301 queue_cast(r
, lkb
, -EAGAIN
);
2307 static int do_unlock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2309 remove_lock(r
, lkb
);
2310 queue_cast(r
, lkb
, -DLM_EUNLOCK
);
2311 grant_pending_locks(r
);
2312 return -DLM_EUNLOCK
;
2315 /* returns: 0 did nothing, -DLM_ECANCEL canceled lock */
2317 static int do_cancel(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2321 error
= revert_lock(r
, lkb
);
2323 queue_cast(r
, lkb
, -DLM_ECANCEL
);
2324 grant_pending_locks(r
);
2325 return -DLM_ECANCEL
;
2331 * Four stage 3 varieties:
2332 * _request_lock(), _convert_lock(), _unlock_lock(), _cancel_lock()
2335 /* add a new lkb to a possibly new rsb, called by requesting process */
2337 static int _request_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2341 /* set_master: sets lkb nodeid from r */
2343 error
= set_master(r
, lkb
);
2352 /* receive_request() calls do_request() on remote node */
2353 error
= send_request(r
, lkb
);
2355 error
= do_request(r
, lkb
);
2360 /* change some property of an existing lkb, e.g. mode */
2362 static int _convert_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2367 /* receive_convert() calls do_convert() on remote node */
2368 error
= send_convert(r
, lkb
);
2370 error
= do_convert(r
, lkb
);
2375 /* remove an existing lkb from the granted queue */
2377 static int _unlock_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2382 /* receive_unlock() calls do_unlock() on remote node */
2383 error
= send_unlock(r
, lkb
);
2385 error
= do_unlock(r
, lkb
);
2390 /* remove an existing lkb from the convert or wait queue */
2392 static int _cancel_lock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2397 /* receive_cancel() calls do_cancel() on remote node */
2398 error
= send_cancel(r
, lkb
);
2400 error
= do_cancel(r
, lkb
);
2406 * Four stage 2 varieties:
2407 * request_lock(), convert_lock(), unlock_lock(), cancel_lock()
2410 static int request_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
, char *name
,
2411 int len
, struct dlm_args
*args
)
2416 error
= validate_lock_args(ls
, lkb
, args
);
2420 error
= find_rsb(ls
, name
, len
, R_CREATE
, &r
);
2427 lkb
->lkb_lksb
->sb_lkid
= lkb
->lkb_id
;
2429 error
= _request_lock(r
, lkb
);
2438 static int convert_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2439 struct dlm_args
*args
)
2444 r
= lkb
->lkb_resource
;
2449 error
= validate_lock_args(ls
, lkb
, args
);
2453 error
= _convert_lock(r
, lkb
);
2460 static int unlock_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2461 struct dlm_args
*args
)
2466 r
= lkb
->lkb_resource
;
2471 error
= validate_unlock_args(lkb
, args
);
2475 error
= _unlock_lock(r
, lkb
);
2482 static int cancel_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2483 struct dlm_args
*args
)
2488 r
= lkb
->lkb_resource
;
2493 error
= validate_unlock_args(lkb
, args
);
2497 error
= _cancel_lock(r
, lkb
);
2505 * Two stage 1 varieties: dlm_lock() and dlm_unlock()
2508 int dlm_lock(dlm_lockspace_t
*lockspace
,
2510 struct dlm_lksb
*lksb
,
2513 unsigned int namelen
,
2514 uint32_t parent_lkid
,
2515 void (*ast
) (void *astarg
),
2517 void (*bast
) (void *astarg
, int mode
))
2520 struct dlm_lkb
*lkb
;
2521 struct dlm_args args
;
2522 int error
, convert
= flags
& DLM_LKF_CONVERT
;
2524 ls
= dlm_find_lockspace_local(lockspace
);
2528 dlm_lock_recovery(ls
);
2531 error
= find_lkb(ls
, lksb
->sb_lkid
, &lkb
);
2533 error
= create_lkb(ls
, &lkb
);
2538 error
= set_lock_args(mode
, lksb
, flags
, namelen
, 0, ast
,
2539 astarg
, bast
, &args
);
2544 error
= convert_lock(ls
, lkb
, &args
);
2546 error
= request_lock(ls
, lkb
, name
, namelen
, &args
);
2548 if (error
== -EINPROGRESS
)
2551 if (convert
|| error
)
2553 if (error
== -EAGAIN
|| error
== -EDEADLK
)
2556 dlm_unlock_recovery(ls
);
2557 dlm_put_lockspace(ls
);
2561 int dlm_unlock(dlm_lockspace_t
*lockspace
,
2564 struct dlm_lksb
*lksb
,
2568 struct dlm_lkb
*lkb
;
2569 struct dlm_args args
;
2572 ls
= dlm_find_lockspace_local(lockspace
);
2576 dlm_lock_recovery(ls
);
2578 error
= find_lkb(ls
, lkid
, &lkb
);
2582 error
= set_unlock_args(flags
, astarg
, &args
);
2586 if (flags
& DLM_LKF_CANCEL
)
2587 error
= cancel_lock(ls
, lkb
, &args
);
2589 error
= unlock_lock(ls
, lkb
, &args
);
2591 if (error
== -DLM_EUNLOCK
|| error
== -DLM_ECANCEL
)
2593 if (error
== -EBUSY
&& (flags
& (DLM_LKF_CANCEL
| DLM_LKF_FORCEUNLOCK
)))
2598 dlm_unlock_recovery(ls
);
2599 dlm_put_lockspace(ls
);
2604 * send/receive routines for remote operations and replies
2608 * send_request receive_request
2609 * send_convert receive_convert
2610 * send_unlock receive_unlock
2611 * send_cancel receive_cancel
2612 * send_grant receive_grant
2613 * send_bast receive_bast
2614 * send_lookup receive_lookup
2615 * send_remove receive_remove
2618 * receive_request_reply send_request_reply
2619 * receive_convert_reply send_convert_reply
2620 * receive_unlock_reply send_unlock_reply
2621 * receive_cancel_reply send_cancel_reply
2622 * receive_lookup_reply send_lookup_reply
2625 static int _create_message(struct dlm_ls
*ls
, int mb_len
,
2626 int to_nodeid
, int mstype
,
2627 struct dlm_message
**ms_ret
,
2628 struct dlm_mhandle
**mh_ret
)
2630 struct dlm_message
*ms
;
2631 struct dlm_mhandle
*mh
;
2634 /* get_buffer gives us a message handle (mh) that we need to
2635 pass into lowcomms_commit and a message buffer (mb) that we
2636 write our data into */
2638 mh
= dlm_lowcomms_get_buffer(to_nodeid
, mb_len
, ls
->ls_allocation
, &mb
);
2642 memset(mb
, 0, mb_len
);
2644 ms
= (struct dlm_message
*) mb
;
2646 ms
->m_header
.h_version
= (DLM_HEADER_MAJOR
| DLM_HEADER_MINOR
);
2647 ms
->m_header
.h_lockspace
= ls
->ls_global_id
;
2648 ms
->m_header
.h_nodeid
= dlm_our_nodeid();
2649 ms
->m_header
.h_length
= mb_len
;
2650 ms
->m_header
.h_cmd
= DLM_MSG
;
2652 ms
->m_type
= mstype
;
2659 static int create_message(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
2660 int to_nodeid
, int mstype
,
2661 struct dlm_message
**ms_ret
,
2662 struct dlm_mhandle
**mh_ret
)
2664 int mb_len
= sizeof(struct dlm_message
);
2667 case DLM_MSG_REQUEST
:
2668 case DLM_MSG_LOOKUP
:
2669 case DLM_MSG_REMOVE
:
2670 mb_len
+= r
->res_length
;
2672 case DLM_MSG_CONVERT
:
2673 case DLM_MSG_UNLOCK
:
2674 case DLM_MSG_REQUEST_REPLY
:
2675 case DLM_MSG_CONVERT_REPLY
:
2677 if (lkb
&& lkb
->lkb_lvbptr
)
2678 mb_len
+= r
->res_ls
->ls_lvblen
;
2682 return _create_message(r
->res_ls
, mb_len
, to_nodeid
, mstype
,
2686 /* further lowcomms enhancements or alternate implementations may make
2687 the return value from this function useful at some point */
2689 static int send_message(struct dlm_mhandle
*mh
, struct dlm_message
*ms
)
2691 dlm_message_out(ms
);
2692 dlm_lowcomms_commit_buffer(mh
);
2696 static void send_args(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
2697 struct dlm_message
*ms
)
2699 ms
->m_nodeid
= lkb
->lkb_nodeid
;
2700 ms
->m_pid
= lkb
->lkb_ownpid
;
2701 ms
->m_lkid
= lkb
->lkb_id
;
2702 ms
->m_remid
= lkb
->lkb_remid
;
2703 ms
->m_exflags
= lkb
->lkb_exflags
;
2704 ms
->m_sbflags
= lkb
->lkb_sbflags
;
2705 ms
->m_flags
= lkb
->lkb_flags
;
2706 ms
->m_lvbseq
= lkb
->lkb_lvbseq
;
2707 ms
->m_status
= lkb
->lkb_status
;
2708 ms
->m_grmode
= lkb
->lkb_grmode
;
2709 ms
->m_rqmode
= lkb
->lkb_rqmode
;
2710 ms
->m_hash
= r
->res_hash
;
2712 /* m_result and m_bastmode are set from function args,
2713 not from lkb fields */
2715 if (lkb
->lkb_bastaddr
)
2716 ms
->m_asts
|= AST_BAST
;
2717 if (lkb
->lkb_astaddr
)
2718 ms
->m_asts
|= AST_COMP
;
2720 /* compare with switch in create_message; send_remove() doesn't
2723 switch (ms
->m_type
) {
2724 case DLM_MSG_REQUEST
:
2725 case DLM_MSG_LOOKUP
:
2726 memcpy(ms
->m_extra
, r
->res_name
, r
->res_length
);
2728 case DLM_MSG_CONVERT
:
2729 case DLM_MSG_UNLOCK
:
2730 case DLM_MSG_REQUEST_REPLY
:
2731 case DLM_MSG_CONVERT_REPLY
:
2733 if (!lkb
->lkb_lvbptr
)
2735 memcpy(ms
->m_extra
, lkb
->lkb_lvbptr
, r
->res_ls
->ls_lvblen
);
2740 static int send_common(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int mstype
)
2742 struct dlm_message
*ms
;
2743 struct dlm_mhandle
*mh
;
2744 int to_nodeid
, error
;
2746 error
= add_to_waiters(lkb
, mstype
);
2750 to_nodeid
= r
->res_nodeid
;
2752 error
= create_message(r
, lkb
, to_nodeid
, mstype
, &ms
, &mh
);
2756 send_args(r
, lkb
, ms
);
2758 error
= send_message(mh
, ms
);
2764 remove_from_waiters(lkb
, msg_reply_type(mstype
));
2768 static int send_request(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2770 return send_common(r
, lkb
, DLM_MSG_REQUEST
);
2773 static int send_convert(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2777 error
= send_common(r
, lkb
, DLM_MSG_CONVERT
);
2779 /* down conversions go without a reply from the master */
2780 if (!error
&& down_conversion(lkb
)) {
2781 remove_from_waiters(lkb
, DLM_MSG_CONVERT_REPLY
);
2782 r
->res_ls
->ls_stub_ms
.m_type
= DLM_MSG_CONVERT_REPLY
;
2783 r
->res_ls
->ls_stub_ms
.m_result
= 0;
2784 r
->res_ls
->ls_stub_ms
.m_flags
= lkb
->lkb_flags
;
2785 __receive_convert_reply(r
, lkb
, &r
->res_ls
->ls_stub_ms
);
2791 /* FIXME: if this lkb is the only lock we hold on the rsb, then set
2792 MASTER_UNCERTAIN to force the next request on the rsb to confirm
2793 that the master is still correct. */
2795 static int send_unlock(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2797 return send_common(r
, lkb
, DLM_MSG_UNLOCK
);
2800 static int send_cancel(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2802 return send_common(r
, lkb
, DLM_MSG_CANCEL
);
2805 static int send_grant(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2807 struct dlm_message
*ms
;
2808 struct dlm_mhandle
*mh
;
2809 int to_nodeid
, error
;
2811 to_nodeid
= lkb
->lkb_nodeid
;
2813 error
= create_message(r
, lkb
, to_nodeid
, DLM_MSG_GRANT
, &ms
, &mh
);
2817 send_args(r
, lkb
, ms
);
2821 error
= send_message(mh
, ms
);
2826 static int send_bast(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int mode
)
2828 struct dlm_message
*ms
;
2829 struct dlm_mhandle
*mh
;
2830 int to_nodeid
, error
;
2832 to_nodeid
= lkb
->lkb_nodeid
;
2834 error
= create_message(r
, NULL
, to_nodeid
, DLM_MSG_BAST
, &ms
, &mh
);
2838 send_args(r
, lkb
, ms
);
2840 ms
->m_bastmode
= mode
;
2842 error
= send_message(mh
, ms
);
2847 static int send_lookup(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
)
2849 struct dlm_message
*ms
;
2850 struct dlm_mhandle
*mh
;
2851 int to_nodeid
, error
;
2853 error
= add_to_waiters(lkb
, DLM_MSG_LOOKUP
);
2857 to_nodeid
= dlm_dir_nodeid(r
);
2859 error
= create_message(r
, NULL
, to_nodeid
, DLM_MSG_LOOKUP
, &ms
, &mh
);
2863 send_args(r
, lkb
, ms
);
2865 error
= send_message(mh
, ms
);
2871 remove_from_waiters(lkb
, DLM_MSG_LOOKUP_REPLY
);
2875 static int send_remove(struct dlm_rsb
*r
)
2877 struct dlm_message
*ms
;
2878 struct dlm_mhandle
*mh
;
2879 int to_nodeid
, error
;
2881 to_nodeid
= dlm_dir_nodeid(r
);
2883 error
= create_message(r
, NULL
, to_nodeid
, DLM_MSG_REMOVE
, &ms
, &mh
);
2887 memcpy(ms
->m_extra
, r
->res_name
, r
->res_length
);
2888 ms
->m_hash
= r
->res_hash
;
2890 error
= send_message(mh
, ms
);
2895 static int send_common_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
2898 struct dlm_message
*ms
;
2899 struct dlm_mhandle
*mh
;
2900 int to_nodeid
, error
;
2902 to_nodeid
= lkb
->lkb_nodeid
;
2904 error
= create_message(r
, lkb
, to_nodeid
, mstype
, &ms
, &mh
);
2908 send_args(r
, lkb
, ms
);
2912 error
= send_message(mh
, ms
);
2917 static int send_request_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rv
)
2919 return send_common_reply(r
, lkb
, DLM_MSG_REQUEST_REPLY
, rv
);
2922 static int send_convert_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rv
)
2924 return send_common_reply(r
, lkb
, DLM_MSG_CONVERT_REPLY
, rv
);
2927 static int send_unlock_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rv
)
2929 return send_common_reply(r
, lkb
, DLM_MSG_UNLOCK_REPLY
, rv
);
2932 static int send_cancel_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
, int rv
)
2934 return send_common_reply(r
, lkb
, DLM_MSG_CANCEL_REPLY
, rv
);
2937 static int send_lookup_reply(struct dlm_ls
*ls
, struct dlm_message
*ms_in
,
2938 int ret_nodeid
, int rv
)
2940 struct dlm_rsb
*r
= &ls
->ls_stub_rsb
;
2941 struct dlm_message
*ms
;
2942 struct dlm_mhandle
*mh
;
2943 int error
, nodeid
= ms_in
->m_header
.h_nodeid
;
2945 error
= create_message(r
, NULL
, nodeid
, DLM_MSG_LOOKUP_REPLY
, &ms
, &mh
);
2949 ms
->m_lkid
= ms_in
->m_lkid
;
2951 ms
->m_nodeid
= ret_nodeid
;
2953 error
= send_message(mh
, ms
);
2958 /* which args we save from a received message depends heavily on the type
2959 of message, unlike the send side where we can safely send everything about
2960 the lkb for any type of message */
2962 static void receive_flags(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
2964 lkb
->lkb_exflags
= ms
->m_exflags
;
2965 lkb
->lkb_sbflags
= ms
->m_sbflags
;
2966 lkb
->lkb_flags
= (lkb
->lkb_flags
& 0xFFFF0000) |
2967 (ms
->m_flags
& 0x0000FFFF);
2970 static void receive_flags_reply(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
2972 lkb
->lkb_sbflags
= ms
->m_sbflags
;
2973 lkb
->lkb_flags
= (lkb
->lkb_flags
& 0xFFFF0000) |
2974 (ms
->m_flags
& 0x0000FFFF);
2977 static int receive_extralen(struct dlm_message
*ms
)
2979 return (ms
->m_header
.h_length
- sizeof(struct dlm_message
));
2982 static int receive_lvb(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2983 struct dlm_message
*ms
)
2987 if (lkb
->lkb_exflags
& DLM_LKF_VALBLK
) {
2988 if (!lkb
->lkb_lvbptr
)
2989 lkb
->lkb_lvbptr
= allocate_lvb(ls
);
2990 if (!lkb
->lkb_lvbptr
)
2992 len
= receive_extralen(ms
);
2993 memcpy(lkb
->lkb_lvbptr
, ms
->m_extra
, len
);
2998 static int receive_request_args(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
2999 struct dlm_message
*ms
)
3001 lkb
->lkb_nodeid
= ms
->m_header
.h_nodeid
;
3002 lkb
->lkb_ownpid
= ms
->m_pid
;
3003 lkb
->lkb_remid
= ms
->m_lkid
;
3004 lkb
->lkb_grmode
= DLM_LOCK_IV
;
3005 lkb
->lkb_rqmode
= ms
->m_rqmode
;
3006 lkb
->lkb_bastaddr
= (void *) (long) (ms
->m_asts
& AST_BAST
);
3007 lkb
->lkb_astaddr
= (void *) (long) (ms
->m_asts
& AST_COMP
);
3009 DLM_ASSERT(is_master_copy(lkb
), dlm_print_lkb(lkb
););
3011 if (lkb
->lkb_exflags
& DLM_LKF_VALBLK
) {
3012 /* lkb was just created so there won't be an lvb yet */
3013 lkb
->lkb_lvbptr
= allocate_lvb(ls
);
3014 if (!lkb
->lkb_lvbptr
)
3021 static int receive_convert_args(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
3022 struct dlm_message
*ms
)
3024 if (lkb
->lkb_nodeid
!= ms
->m_header
.h_nodeid
) {
3025 log_error(ls
, "convert_args nodeid %d %d lkid %x %x",
3026 lkb
->lkb_nodeid
, ms
->m_header
.h_nodeid
,
3027 lkb
->lkb_id
, lkb
->lkb_remid
);
3031 if (!is_master_copy(lkb
))
3034 if (lkb
->lkb_status
!= DLM_LKSTS_GRANTED
)
3037 if (receive_lvb(ls
, lkb
, ms
))
3040 lkb
->lkb_rqmode
= ms
->m_rqmode
;
3041 lkb
->lkb_lvbseq
= ms
->m_lvbseq
;
3046 static int receive_unlock_args(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
3047 struct dlm_message
*ms
)
3049 if (!is_master_copy(lkb
))
3051 if (receive_lvb(ls
, lkb
, ms
))
3056 /* We fill in the stub-lkb fields with the info that send_xxxx_reply()
3057 uses to send a reply and that the remote end uses to process the reply. */
3059 static void setup_stub_lkb(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3061 struct dlm_lkb
*lkb
= &ls
->ls_stub_lkb
;
3062 lkb
->lkb_nodeid
= ms
->m_header
.h_nodeid
;
3063 lkb
->lkb_remid
= ms
->m_lkid
;
3066 static void receive_request(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3068 struct dlm_lkb
*lkb
;
3072 error
= create_lkb(ls
, &lkb
);
3076 receive_flags(lkb
, ms
);
3077 lkb
->lkb_flags
|= DLM_IFL_MSTCPY
;
3078 error
= receive_request_args(ls
, lkb
, ms
);
3084 namelen
= receive_extralen(ms
);
3086 error
= find_rsb(ls
, ms
->m_extra
, namelen
, R_MASTER
, &r
);
3095 error
= do_request(r
, lkb
);
3096 send_request_reply(r
, lkb
, error
);
3101 if (error
== -EINPROGRESS
)
3108 setup_stub_lkb(ls
, ms
);
3109 send_request_reply(&ls
->ls_stub_rsb
, &ls
->ls_stub_lkb
, error
);
3112 static void receive_convert(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3114 struct dlm_lkb
*lkb
;
3116 int error
, reply
= 1;
3118 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3122 r
= lkb
->lkb_resource
;
3127 receive_flags(lkb
, ms
);
3128 error
= receive_convert_args(ls
, lkb
, ms
);
3131 reply
= !down_conversion(lkb
);
3133 error
= do_convert(r
, lkb
);
3136 send_convert_reply(r
, lkb
, error
);
3144 setup_stub_lkb(ls
, ms
);
3145 send_convert_reply(&ls
->ls_stub_rsb
, &ls
->ls_stub_lkb
, error
);
3148 static void receive_unlock(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3150 struct dlm_lkb
*lkb
;
3154 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3158 r
= lkb
->lkb_resource
;
3163 receive_flags(lkb
, ms
);
3164 error
= receive_unlock_args(ls
, lkb
, ms
);
3168 error
= do_unlock(r
, lkb
);
3170 send_unlock_reply(r
, lkb
, error
);
3178 setup_stub_lkb(ls
, ms
);
3179 send_unlock_reply(&ls
->ls_stub_rsb
, &ls
->ls_stub_lkb
, error
);
3182 static void receive_cancel(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3184 struct dlm_lkb
*lkb
;
3188 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3192 receive_flags(lkb
, ms
);
3194 r
= lkb
->lkb_resource
;
3199 error
= do_cancel(r
, lkb
);
3200 send_cancel_reply(r
, lkb
, error
);
3208 setup_stub_lkb(ls
, ms
);
3209 send_cancel_reply(&ls
->ls_stub_rsb
, &ls
->ls_stub_lkb
, error
);
3212 static void receive_grant(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3214 struct dlm_lkb
*lkb
;
3218 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3220 log_error(ls
, "receive_grant no lkb");
3223 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3225 r
= lkb
->lkb_resource
;
3230 receive_flags_reply(lkb
, ms
);
3231 if (is_altmode(lkb
))
3232 munge_altmode(lkb
, ms
);
3233 grant_lock_pc(r
, lkb
, ms
);
3234 queue_cast(r
, lkb
, 0);
3241 static void receive_bast(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3243 struct dlm_lkb
*lkb
;
3247 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3249 log_error(ls
, "receive_bast no lkb");
3252 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3254 r
= lkb
->lkb_resource
;
3259 queue_bast(r
, lkb
, ms
->m_bastmode
);
3266 static void receive_lookup(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3268 int len
, error
, ret_nodeid
, dir_nodeid
, from_nodeid
, our_nodeid
;
3270 from_nodeid
= ms
->m_header
.h_nodeid
;
3271 our_nodeid
= dlm_our_nodeid();
3273 len
= receive_extralen(ms
);
3275 dir_nodeid
= dlm_hash2nodeid(ls
, ms
->m_hash
);
3276 if (dir_nodeid
!= our_nodeid
) {
3277 log_error(ls
, "lookup dir_nodeid %d from %d",
3278 dir_nodeid
, from_nodeid
);
3284 error
= dlm_dir_lookup(ls
, from_nodeid
, ms
->m_extra
, len
, &ret_nodeid
);
3286 /* Optimization: we're master so treat lookup as a request */
3287 if (!error
&& ret_nodeid
== our_nodeid
) {
3288 receive_request(ls
, ms
);
3292 send_lookup_reply(ls
, ms
, ret_nodeid
, error
);
3295 static void receive_remove(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3297 int len
, dir_nodeid
, from_nodeid
;
3299 from_nodeid
= ms
->m_header
.h_nodeid
;
3301 len
= receive_extralen(ms
);
3303 dir_nodeid
= dlm_hash2nodeid(ls
, ms
->m_hash
);
3304 if (dir_nodeid
!= dlm_our_nodeid()) {
3305 log_error(ls
, "remove dir entry dir_nodeid %d from %d",
3306 dir_nodeid
, from_nodeid
);
3310 dlm_dir_remove_entry(ls
, from_nodeid
, ms
->m_extra
, len
);
3313 static void receive_purge(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3315 do_purge(ls
, ms
->m_nodeid
, ms
->m_pid
);
3318 static void receive_request_reply(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3320 struct dlm_lkb
*lkb
;
3322 int error
, mstype
, result
;
3324 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3326 log_error(ls
, "receive_request_reply no lkb");
3329 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3331 r
= lkb
->lkb_resource
;
3335 mstype
= lkb
->lkb_wait_type
;
3336 error
= remove_from_waiters(lkb
, DLM_MSG_REQUEST_REPLY
);
3340 /* Optimization: the dir node was also the master, so it took our
3341 lookup as a request and sent request reply instead of lookup reply */
3342 if (mstype
== DLM_MSG_LOOKUP
) {
3343 r
->res_nodeid
= ms
->m_header
.h_nodeid
;
3344 lkb
->lkb_nodeid
= r
->res_nodeid
;
3347 /* this is the value returned from do_request() on the master */
3348 result
= ms
->m_result
;
3352 /* request would block (be queued) on remote master */
3353 queue_cast(r
, lkb
, -EAGAIN
);
3354 confirm_master(r
, -EAGAIN
);
3355 unhold_lkb(lkb
); /* undoes create_lkb() */
3360 /* request was queued or granted on remote master */
3361 receive_flags_reply(lkb
, ms
);
3362 lkb
->lkb_remid
= ms
->m_lkid
;
3363 if (is_altmode(lkb
))
3364 munge_altmode(lkb
, ms
);
3366 add_lkb(r
, lkb
, DLM_LKSTS_WAITING
);
3369 grant_lock_pc(r
, lkb
, ms
);
3370 queue_cast(r
, lkb
, 0);
3372 confirm_master(r
, result
);
3377 /* find_rsb failed to find rsb or rsb wasn't master */
3378 log_debug(ls
, "receive_request_reply %x %x master diff %d %d",
3379 lkb
->lkb_id
, lkb
->lkb_flags
, r
->res_nodeid
, result
);
3381 lkb
->lkb_nodeid
= -1;
3383 if (is_overlap(lkb
)) {
3384 /* we'll ignore error in cancel/unlock reply */
3385 queue_cast_overlap(r
, lkb
);
3386 unhold_lkb(lkb
); /* undoes create_lkb() */
3388 _request_lock(r
, lkb
);
3392 log_error(ls
, "receive_request_reply %x error %d",
3393 lkb
->lkb_id
, result
);
3396 if (is_overlap_unlock(lkb
) && (result
== 0 || result
== -EINPROGRESS
)) {
3397 log_debug(ls
, "receive_request_reply %x result %d unlock",
3398 lkb
->lkb_id
, result
);
3399 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_UNLOCK
;
3400 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_CANCEL
;
3401 send_unlock(r
, lkb
);
3402 } else if (is_overlap_cancel(lkb
) && (result
== -EINPROGRESS
)) {
3403 log_debug(ls
, "receive_request_reply %x cancel", lkb
->lkb_id
);
3404 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_UNLOCK
;
3405 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_CANCEL
;
3406 send_cancel(r
, lkb
);
3408 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_CANCEL
;
3409 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_UNLOCK
;
3417 static void __receive_convert_reply(struct dlm_rsb
*r
, struct dlm_lkb
*lkb
,
3418 struct dlm_message
*ms
)
3420 /* this is the value returned from do_convert() on the master */
3421 switch (ms
->m_result
) {
3423 /* convert would block (be queued) on remote master */
3424 queue_cast(r
, lkb
, -EAGAIN
);
3428 receive_flags_reply(lkb
, ms
);
3429 revert_lock_pc(r
, lkb
);
3430 queue_cast(r
, lkb
, -EDEADLK
);
3434 /* convert was queued on remote master */
3435 receive_flags_reply(lkb
, ms
);
3436 if (is_demoted(lkb
))
3437 munge_demoted(lkb
, ms
);
3439 add_lkb(r
, lkb
, DLM_LKSTS_CONVERT
);
3444 /* convert was granted on remote master */
3445 receive_flags_reply(lkb
, ms
);
3446 if (is_demoted(lkb
))
3447 munge_demoted(lkb
, ms
);
3448 grant_lock_pc(r
, lkb
, ms
);
3449 queue_cast(r
, lkb
, 0);
3453 log_error(r
->res_ls
, "receive_convert_reply %x error %d",
3454 lkb
->lkb_id
, ms
->m_result
);
3458 static void _receive_convert_reply(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
3460 struct dlm_rsb
*r
= lkb
->lkb_resource
;
3466 /* stub reply can happen with waiters_mutex held */
3467 error
= remove_from_waiters_ms(lkb
, ms
);
3471 __receive_convert_reply(r
, lkb
, ms
);
3477 static void receive_convert_reply(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3479 struct dlm_lkb
*lkb
;
3482 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3484 log_error(ls
, "receive_convert_reply no lkb");
3487 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3489 _receive_convert_reply(lkb
, ms
);
3493 static void _receive_unlock_reply(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
3495 struct dlm_rsb
*r
= lkb
->lkb_resource
;
3501 /* stub reply can happen with waiters_mutex held */
3502 error
= remove_from_waiters_ms(lkb
, ms
);
3506 /* this is the value returned from do_unlock() on the master */
3508 switch (ms
->m_result
) {
3510 receive_flags_reply(lkb
, ms
);
3511 remove_lock_pc(r
, lkb
);
3512 queue_cast(r
, lkb
, -DLM_EUNLOCK
);
3517 log_error(r
->res_ls
, "receive_unlock_reply %x error %d",
3518 lkb
->lkb_id
, ms
->m_result
);
3525 static void receive_unlock_reply(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3527 struct dlm_lkb
*lkb
;
3530 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3532 log_error(ls
, "receive_unlock_reply no lkb");
3535 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3537 _receive_unlock_reply(lkb
, ms
);
3541 static void _receive_cancel_reply(struct dlm_lkb
*lkb
, struct dlm_message
*ms
)
3543 struct dlm_rsb
*r
= lkb
->lkb_resource
;
3549 /* stub reply can happen with waiters_mutex held */
3550 error
= remove_from_waiters_ms(lkb
, ms
);
3554 /* this is the value returned from do_cancel() on the master */
3556 switch (ms
->m_result
) {
3558 receive_flags_reply(lkb
, ms
);
3559 revert_lock_pc(r
, lkb
);
3560 queue_cast(r
, lkb
, -DLM_ECANCEL
);
3565 log_error(r
->res_ls
, "receive_cancel_reply %x error %d",
3566 lkb
->lkb_id
, ms
->m_result
);
3573 static void receive_cancel_reply(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3575 struct dlm_lkb
*lkb
;
3578 error
= find_lkb(ls
, ms
->m_remid
, &lkb
);
3580 log_error(ls
, "receive_cancel_reply no lkb");
3583 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
3585 _receive_cancel_reply(lkb
, ms
);
3589 static void receive_lookup_reply(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3591 struct dlm_lkb
*lkb
;
3593 int error
, ret_nodeid
;
3595 error
= find_lkb(ls
, ms
->m_lkid
, &lkb
);
3597 log_error(ls
, "receive_lookup_reply no lkb");
3601 /* ms->m_result is the value returned by dlm_dir_lookup on dir node
3602 FIXME: will a non-zero error ever be returned? */
3604 r
= lkb
->lkb_resource
;
3608 error
= remove_from_waiters(lkb
, DLM_MSG_LOOKUP_REPLY
);
3612 ret_nodeid
= ms
->m_nodeid
;
3613 if (ret_nodeid
== dlm_our_nodeid()) {
3616 r
->res_first_lkid
= 0;
3618 /* set_master() will copy res_nodeid to lkb_nodeid */
3619 r
->res_nodeid
= ret_nodeid
;
3622 if (is_overlap(lkb
)) {
3623 log_debug(ls
, "receive_lookup_reply %x unlock %x",
3624 lkb
->lkb_id
, lkb
->lkb_flags
);
3625 queue_cast_overlap(r
, lkb
);
3626 unhold_lkb(lkb
); /* undoes create_lkb() */
3630 _request_lock(r
, lkb
);
3634 process_lookup_list(r
);
3641 static void _receive_message(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3643 switch (ms
->m_type
) {
3645 /* messages sent to a master node */
3647 case DLM_MSG_REQUEST
:
3648 receive_request(ls
, ms
);
3651 case DLM_MSG_CONVERT
:
3652 receive_convert(ls
, ms
);
3655 case DLM_MSG_UNLOCK
:
3656 receive_unlock(ls
, ms
);
3659 case DLM_MSG_CANCEL
:
3660 receive_cancel(ls
, ms
);
3663 /* messages sent from a master node (replies to above) */
3665 case DLM_MSG_REQUEST_REPLY
:
3666 receive_request_reply(ls
, ms
);
3669 case DLM_MSG_CONVERT_REPLY
:
3670 receive_convert_reply(ls
, ms
);
3673 case DLM_MSG_UNLOCK_REPLY
:
3674 receive_unlock_reply(ls
, ms
);
3677 case DLM_MSG_CANCEL_REPLY
:
3678 receive_cancel_reply(ls
, ms
);
3681 /* messages sent from a master node (only two types of async msg) */
3684 receive_grant(ls
, ms
);
3688 receive_bast(ls
, ms
);
3691 /* messages sent to a dir node */
3693 case DLM_MSG_LOOKUP
:
3694 receive_lookup(ls
, ms
);
3697 case DLM_MSG_REMOVE
:
3698 receive_remove(ls
, ms
);
3701 /* messages sent from a dir node (remove has no reply) */
3703 case DLM_MSG_LOOKUP_REPLY
:
3704 receive_lookup_reply(ls
, ms
);
3707 /* other messages */
3710 receive_purge(ls
, ms
);
3714 log_error(ls
, "unknown message type %d", ms
->m_type
);
3720 /* If the lockspace is in recovery mode (locking stopped), then normal
3721 messages are saved on the requestqueue for processing after recovery is
3722 done. When not in recovery mode, we wait for dlm_recoverd to drain saved
3723 messages off the requestqueue before we process new ones. This occurs right
3724 after recovery completes when we transition from saving all messages on
3725 requestqueue, to processing all the saved messages, to processing new
3726 messages as they arrive. */
3728 static void dlm_receive_message(struct dlm_ls
*ls
, struct dlm_message
*ms
,
3731 if (dlm_locking_stopped(ls
)) {
3732 dlm_add_requestqueue(ls
, nodeid
, (struct dlm_header
*) ms
);
3734 dlm_wait_requestqueue(ls
);
3735 _receive_message(ls
, ms
);
3739 /* This is called by dlm_recoverd to process messages that were saved on
3740 the requestqueue. */
3742 void dlm_receive_message_saved(struct dlm_ls
*ls
, struct dlm_message
*ms
)
3744 _receive_message(ls
, ms
);
3747 /* This is called by the midcomms layer when something is received for
3748 the lockspace. It could be either a MSG (normal message sent as part of
3749 standard locking activity) or an RCOM (recovery message sent as part of
3750 lockspace recovery). */
3752 void dlm_receive_buffer(struct dlm_header
*hd
, int nodeid
)
3754 struct dlm_message
*ms
= (struct dlm_message
*) hd
;
3755 struct dlm_rcom
*rc
= (struct dlm_rcom
*) hd
;
3759 switch (hd
->h_cmd
) {
3769 log_print("invalid h_cmd %d from %u", hd
->h_cmd
, nodeid
);
3773 if (hd
->h_nodeid
!= nodeid
) {
3774 log_print("invalid h_nodeid %d from %d lockspace %x",
3775 hd
->h_nodeid
, nodeid
, hd
->h_lockspace
);
3779 ls
= dlm_find_lockspace_global(hd
->h_lockspace
);
3781 log_print("invalid h_lockspace %x from %d cmd %d type %d",
3782 hd
->h_lockspace
, nodeid
, hd
->h_cmd
, type
);
3784 if (hd
->h_cmd
== DLM_RCOM
&& type
== DLM_RCOM_STATUS
)
3785 dlm_send_ls_not_ready(nodeid
, rc
);
3789 /* this rwsem allows dlm_ls_stop() to wait for all dlm_recv threads to
3790 be inactive (in this ls) before transitioning to recovery mode */
3792 down_read(&ls
->ls_recv_active
);
3793 if (hd
->h_cmd
== DLM_MSG
)
3794 dlm_receive_message(ls
, ms
, nodeid
);
3796 dlm_receive_rcom(ls
, rc
, nodeid
);
3797 up_read(&ls
->ls_recv_active
);
3799 dlm_put_lockspace(ls
);
3802 static void recover_convert_waiter(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
3804 if (middle_conversion(lkb
)) {
3806 ls
->ls_stub_ms
.m_type
= DLM_MSG_CONVERT_REPLY
;
3807 ls
->ls_stub_ms
.m_result
= -EINPROGRESS
;
3808 ls
->ls_stub_ms
.m_flags
= lkb
->lkb_flags
;
3809 _receive_convert_reply(lkb
, &ls
->ls_stub_ms
);
3811 /* Same special case as in receive_rcom_lock_args() */
3812 lkb
->lkb_grmode
= DLM_LOCK_IV
;
3813 rsb_set_flag(lkb
->lkb_resource
, RSB_RECOVER_CONVERT
);
3816 } else if (lkb
->lkb_rqmode
>= lkb
->lkb_grmode
) {
3817 lkb
->lkb_flags
|= DLM_IFL_RESEND
;
3820 /* lkb->lkb_rqmode < lkb->lkb_grmode shouldn't happen since down
3821 conversions are async; there's no reply from the remote master */
3824 /* A waiting lkb needs recovery if the master node has failed, or
3825 the master node is changing (only when no directory is used) */
3827 static int waiter_needs_recovery(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
3829 if (dlm_is_removed(ls
, lkb
->lkb_nodeid
))
3832 if (!dlm_no_directory(ls
))
3835 if (dlm_dir_nodeid(lkb
->lkb_resource
) != lkb
->lkb_nodeid
)
3841 /* Recovery for locks that are waiting for replies from nodes that are now
3842 gone. We can just complete unlocks and cancels by faking a reply from the
3843 dead node. Requests and up-conversions we flag to be resent after
3844 recovery. Down-conversions can just be completed with a fake reply like
3845 unlocks. Conversions between PR and CW need special attention. */
3847 void dlm_recover_waiters_pre(struct dlm_ls
*ls
)
3849 struct dlm_lkb
*lkb
, *safe
;
3851 mutex_lock(&ls
->ls_waiters_mutex
);
3853 list_for_each_entry_safe(lkb
, safe
, &ls
->ls_waiters
, lkb_wait_reply
) {
3854 log_debug(ls
, "pre recover waiter lkid %x type %d flags %x",
3855 lkb
->lkb_id
, lkb
->lkb_wait_type
, lkb
->lkb_flags
);
3857 /* all outstanding lookups, regardless of destination will be
3858 resent after recovery is done */
3860 if (lkb
->lkb_wait_type
== DLM_MSG_LOOKUP
) {
3861 lkb
->lkb_flags
|= DLM_IFL_RESEND
;
3865 if (!waiter_needs_recovery(ls
, lkb
))
3868 switch (lkb
->lkb_wait_type
) {
3870 case DLM_MSG_REQUEST
:
3871 lkb
->lkb_flags
|= DLM_IFL_RESEND
;
3874 case DLM_MSG_CONVERT
:
3875 recover_convert_waiter(ls
, lkb
);
3878 case DLM_MSG_UNLOCK
:
3880 ls
->ls_stub_ms
.m_type
= DLM_MSG_UNLOCK_REPLY
;
3881 ls
->ls_stub_ms
.m_result
= -DLM_EUNLOCK
;
3882 ls
->ls_stub_ms
.m_flags
= lkb
->lkb_flags
;
3883 _receive_unlock_reply(lkb
, &ls
->ls_stub_ms
);
3887 case DLM_MSG_CANCEL
:
3889 ls
->ls_stub_ms
.m_type
= DLM_MSG_CANCEL_REPLY
;
3890 ls
->ls_stub_ms
.m_result
= -DLM_ECANCEL
;
3891 ls
->ls_stub_ms
.m_flags
= lkb
->lkb_flags
;
3892 _receive_cancel_reply(lkb
, &ls
->ls_stub_ms
);
3897 log_error(ls
, "invalid lkb wait_type %d",
3898 lkb
->lkb_wait_type
);
3902 mutex_unlock(&ls
->ls_waiters_mutex
);
3905 static struct dlm_lkb
*find_resend_waiter(struct dlm_ls
*ls
)
3907 struct dlm_lkb
*lkb
;
3910 mutex_lock(&ls
->ls_waiters_mutex
);
3911 list_for_each_entry(lkb
, &ls
->ls_waiters
, lkb_wait_reply
) {
3912 if (lkb
->lkb_flags
& DLM_IFL_RESEND
) {
3918 mutex_unlock(&ls
->ls_waiters_mutex
);
3925 /* Deal with lookups and lkb's marked RESEND from _pre. We may now be the
3926 master or dir-node for r. Processing the lkb may result in it being placed
3929 /* We do this after normal locking has been enabled and any saved messages
3930 (in requestqueue) have been processed. We should be confident that at
3931 this point we won't get or process a reply to any of these waiting
3932 operations. But, new ops may be coming in on the rsbs/locks here from
3933 userspace or remotely. */
3935 /* there may have been an overlap unlock/cancel prior to recovery or after
3936 recovery. if before, the lkb may still have a pos wait_count; if after, the
3937 overlap flag would just have been set and nothing new sent. we can be
3938 confident here than any replies to either the initial op or overlap ops
3939 prior to recovery have been received. */
3941 int dlm_recover_waiters_post(struct dlm_ls
*ls
)
3943 struct dlm_lkb
*lkb
;
3945 int error
= 0, mstype
, err
, oc
, ou
;
3948 if (dlm_locking_stopped(ls
)) {
3949 log_debug(ls
, "recover_waiters_post aborted");
3954 lkb
= find_resend_waiter(ls
);
3958 r
= lkb
->lkb_resource
;
3962 mstype
= lkb
->lkb_wait_type
;
3963 oc
= is_overlap_cancel(lkb
);
3964 ou
= is_overlap_unlock(lkb
);
3967 log_debug(ls
, "recover_waiters_post %x type %d flags %x %s",
3968 lkb
->lkb_id
, mstype
, lkb
->lkb_flags
, r
->res_name
);
3970 /* At this point we assume that we won't get a reply to any
3971 previous op or overlap op on this lock. First, do a big
3972 remove_from_waiters() for all previous ops. */
3974 lkb
->lkb_flags
&= ~DLM_IFL_RESEND
;
3975 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_UNLOCK
;
3976 lkb
->lkb_flags
&= ~DLM_IFL_OVERLAP_CANCEL
;
3977 lkb
->lkb_wait_type
= 0;
3978 lkb
->lkb_wait_count
= 0;
3979 mutex_lock(&ls
->ls_waiters_mutex
);
3980 list_del_init(&lkb
->lkb_wait_reply
);
3981 mutex_unlock(&ls
->ls_waiters_mutex
);
3982 unhold_lkb(lkb
); /* for waiters list */
3985 /* do an unlock or cancel instead of resending */
3987 case DLM_MSG_LOOKUP
:
3988 case DLM_MSG_REQUEST
:
3989 queue_cast(r
, lkb
, ou
? -DLM_EUNLOCK
:
3991 unhold_lkb(lkb
); /* undoes create_lkb() */
3993 case DLM_MSG_CONVERT
:
3995 queue_cast(r
, lkb
, -DLM_ECANCEL
);
3997 lkb
->lkb_exflags
|= DLM_LKF_FORCEUNLOCK
;
3998 _unlock_lock(r
, lkb
);
4006 case DLM_MSG_LOOKUP
:
4007 case DLM_MSG_REQUEST
:
4008 _request_lock(r
, lkb
);
4010 confirm_master(r
, 0);
4012 case DLM_MSG_CONVERT
:
4013 _convert_lock(r
, lkb
);
4021 log_error(ls
, "recover_waiters_post %x %d %x %d %d",
4022 lkb
->lkb_id
, mstype
, lkb
->lkb_flags
, oc
, ou
);
4031 static void purge_queue(struct dlm_rsb
*r
, struct list_head
*queue
,
4032 int (*test
)(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
))
4034 struct dlm_ls
*ls
= r
->res_ls
;
4035 struct dlm_lkb
*lkb
, *safe
;
4037 list_for_each_entry_safe(lkb
, safe
, queue
, lkb_statequeue
) {
4038 if (test(ls
, lkb
)) {
4039 rsb_set_flag(r
, RSB_LOCKS_PURGED
);
4041 /* this put should free the lkb */
4042 if (!dlm_put_lkb(lkb
))
4043 log_error(ls
, "purged lkb not released");
4048 static int purge_dead_test(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
4050 return (is_master_copy(lkb
) && dlm_is_removed(ls
, lkb
->lkb_nodeid
));
4053 static int purge_mstcpy_test(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
4055 return is_master_copy(lkb
);
4058 static void purge_dead_locks(struct dlm_rsb
*r
)
4060 purge_queue(r
, &r
->res_grantqueue
, &purge_dead_test
);
4061 purge_queue(r
, &r
->res_convertqueue
, &purge_dead_test
);
4062 purge_queue(r
, &r
->res_waitqueue
, &purge_dead_test
);
4065 void dlm_purge_mstcpy_locks(struct dlm_rsb
*r
)
4067 purge_queue(r
, &r
->res_grantqueue
, &purge_mstcpy_test
);
4068 purge_queue(r
, &r
->res_convertqueue
, &purge_mstcpy_test
);
4069 purge_queue(r
, &r
->res_waitqueue
, &purge_mstcpy_test
);
4072 /* Get rid of locks held by nodes that are gone. */
4074 int dlm_purge_locks(struct dlm_ls
*ls
)
4078 log_debug(ls
, "dlm_purge_locks");
4080 down_write(&ls
->ls_root_sem
);
4081 list_for_each_entry(r
, &ls
->ls_root_list
, res_root_list
) {
4085 purge_dead_locks(r
);
4091 up_write(&ls
->ls_root_sem
);
4096 static struct dlm_rsb
*find_purged_rsb(struct dlm_ls
*ls
, int bucket
)
4098 struct dlm_rsb
*r
, *r_ret
= NULL
;
4100 read_lock(&ls
->ls_rsbtbl
[bucket
].lock
);
4101 list_for_each_entry(r
, &ls
->ls_rsbtbl
[bucket
].list
, res_hashchain
) {
4102 if (!rsb_flag(r
, RSB_LOCKS_PURGED
))
4105 rsb_clear_flag(r
, RSB_LOCKS_PURGED
);
4109 read_unlock(&ls
->ls_rsbtbl
[bucket
].lock
);
4113 void dlm_grant_after_purge(struct dlm_ls
*ls
)
4119 r
= find_purged_rsb(ls
, bucket
);
4121 if (bucket
== ls
->ls_rsbtbl_size
- 1)
4128 grant_pending_locks(r
);
4129 confirm_master(r
, 0);
4137 static struct dlm_lkb
*search_remid_list(struct list_head
*head
, int nodeid
,
4140 struct dlm_lkb
*lkb
;
4142 list_for_each_entry(lkb
, head
, lkb_statequeue
) {
4143 if (lkb
->lkb_nodeid
== nodeid
&& lkb
->lkb_remid
== remid
)
4149 static struct dlm_lkb
*search_remid(struct dlm_rsb
*r
, int nodeid
,
4152 struct dlm_lkb
*lkb
;
4154 lkb
= search_remid_list(&r
->res_grantqueue
, nodeid
, remid
);
4157 lkb
= search_remid_list(&r
->res_convertqueue
, nodeid
, remid
);
4160 lkb
= search_remid_list(&r
->res_waitqueue
, nodeid
, remid
);
4166 static int receive_rcom_lock_args(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
,
4167 struct dlm_rsb
*r
, struct dlm_rcom
*rc
)
4169 struct rcom_lock
*rl
= (struct rcom_lock
*) rc
->rc_buf
;
4172 lkb
->lkb_nodeid
= rc
->rc_header
.h_nodeid
;
4173 lkb
->lkb_ownpid
= rl
->rl_ownpid
;
4174 lkb
->lkb_remid
= rl
->rl_lkid
;
4175 lkb
->lkb_exflags
= rl
->rl_exflags
;
4176 lkb
->lkb_flags
= rl
->rl_flags
& 0x0000FFFF;
4177 lkb
->lkb_flags
|= DLM_IFL_MSTCPY
;
4178 lkb
->lkb_lvbseq
= rl
->rl_lvbseq
;
4179 lkb
->lkb_rqmode
= rl
->rl_rqmode
;
4180 lkb
->lkb_grmode
= rl
->rl_grmode
;
4181 /* don't set lkb_status because add_lkb wants to itself */
4183 lkb
->lkb_bastaddr
= (void *) (long) (rl
->rl_asts
& AST_BAST
);
4184 lkb
->lkb_astaddr
= (void *) (long) (rl
->rl_asts
& AST_COMP
);
4186 if (lkb
->lkb_exflags
& DLM_LKF_VALBLK
) {
4187 lkb
->lkb_lvbptr
= allocate_lvb(ls
);
4188 if (!lkb
->lkb_lvbptr
)
4190 lvblen
= rc
->rc_header
.h_length
- sizeof(struct dlm_rcom
) -
4191 sizeof(struct rcom_lock
);
4192 memcpy(lkb
->lkb_lvbptr
, rl
->rl_lvb
, lvblen
);
4195 /* Conversions between PR and CW (middle modes) need special handling.
4196 The real granted mode of these converting locks cannot be determined
4197 until all locks have been rebuilt on the rsb (recover_conversion) */
4199 if (rl
->rl_wait_type
== DLM_MSG_CONVERT
&& middle_conversion(lkb
)) {
4200 rl
->rl_status
= DLM_LKSTS_CONVERT
;
4201 lkb
->lkb_grmode
= DLM_LOCK_IV
;
4202 rsb_set_flag(r
, RSB_RECOVER_CONVERT
);
4208 /* This lkb may have been recovered in a previous aborted recovery so we need
4209 to check if the rsb already has an lkb with the given remote nodeid/lkid.
4210 If so we just send back a standard reply. If not, we create a new lkb with
4211 the given values and send back our lkid. We send back our lkid by sending
4212 back the rcom_lock struct we got but with the remid field filled in. */
4214 int dlm_recover_master_copy(struct dlm_ls
*ls
, struct dlm_rcom
*rc
)
4216 struct rcom_lock
*rl
= (struct rcom_lock
*) rc
->rc_buf
;
4218 struct dlm_lkb
*lkb
;
4221 if (rl
->rl_parent_lkid
) {
4222 error
= -EOPNOTSUPP
;
4226 error
= find_rsb(ls
, rl
->rl_name
, rl
->rl_namelen
, R_MASTER
, &r
);
4232 lkb
= search_remid(r
, rc
->rc_header
.h_nodeid
, rl
->rl_lkid
);
4238 error
= create_lkb(ls
, &lkb
);
4242 error
= receive_rcom_lock_args(ls
, lkb
, r
, rc
);
4249 add_lkb(r
, lkb
, rl
->rl_status
);
4253 /* this is the new value returned to the lock holder for
4254 saving in its process-copy lkb */
4255 rl
->rl_remid
= lkb
->lkb_id
;
4262 log_print("recover_master_copy %d %x", error
, rl
->rl_lkid
);
4263 rl
->rl_result
= error
;
4267 int dlm_recover_process_copy(struct dlm_ls
*ls
, struct dlm_rcom
*rc
)
4269 struct rcom_lock
*rl
= (struct rcom_lock
*) rc
->rc_buf
;
4271 struct dlm_lkb
*lkb
;
4274 error
= find_lkb(ls
, rl
->rl_lkid
, &lkb
);
4276 log_error(ls
, "recover_process_copy no lkid %x", rl
->rl_lkid
);
4280 DLM_ASSERT(is_process_copy(lkb
), dlm_print_lkb(lkb
););
4282 error
= rl
->rl_result
;
4284 r
= lkb
->lkb_resource
;
4290 /* There's a chance the new master received our lock before
4291 dlm_recover_master_reply(), this wouldn't happen if we did
4292 a barrier between recover_masters and recover_locks. */
4293 log_debug(ls
, "master copy not ready %x r %lx %s", lkb
->lkb_id
,
4294 (unsigned long)r
, r
->res_name
);
4295 dlm_send_rcom_lock(r
, lkb
);
4298 log_debug(ls
, "master copy exists %x", lkb
->lkb_id
);
4301 lkb
->lkb_remid
= rl
->rl_remid
;
4304 log_error(ls
, "dlm_recover_process_copy unknown error %d %x",
4305 error
, lkb
->lkb_id
);
4308 /* an ack for dlm_recover_locks() which waits for replies from
4309 all the locks it sends to new masters */
4310 dlm_recovered_lock(r
);
4319 int dlm_user_request(struct dlm_ls
*ls
, struct dlm_user_args
*ua
,
4320 int mode
, uint32_t flags
, void *name
, unsigned int namelen
,
4321 unsigned long timeout_cs
)
4323 struct dlm_lkb
*lkb
;
4324 struct dlm_args args
;
4327 dlm_lock_recovery(ls
);
4329 error
= create_lkb(ls
, &lkb
);
4335 if (flags
& DLM_LKF_VALBLK
) {
4336 ua
->lksb
.sb_lvbptr
= kzalloc(DLM_USER_LVB_LEN
, GFP_KERNEL
);
4337 if (!ua
->lksb
.sb_lvbptr
) {
4345 /* After ua is attached to lkb it will be freed by free_lkb().
4346 When DLM_IFL_USER is set, the dlm knows that this is a userspace
4347 lock and that lkb_astparam is the dlm_user_args structure. */
4349 error
= set_lock_args(mode
, &ua
->lksb
, flags
, namelen
, timeout_cs
,
4350 DLM_FAKE_USER_AST
, ua
, DLM_FAKE_USER_AST
, &args
);
4351 lkb
->lkb_flags
|= DLM_IFL_USER
;
4352 ua
->old_mode
= DLM_LOCK_IV
;
4359 error
= request_lock(ls
, lkb
, name
, namelen
, &args
);
4375 /* add this new lkb to the per-process list of locks */
4376 spin_lock(&ua
->proc
->locks_spin
);
4378 list_add_tail(&lkb
->lkb_ownqueue
, &ua
->proc
->locks
);
4379 spin_unlock(&ua
->proc
->locks_spin
);
4381 dlm_unlock_recovery(ls
);
4385 int dlm_user_convert(struct dlm_ls
*ls
, struct dlm_user_args
*ua_tmp
,
4386 int mode
, uint32_t flags
, uint32_t lkid
, char *lvb_in
,
4387 unsigned long timeout_cs
)
4389 struct dlm_lkb
*lkb
;
4390 struct dlm_args args
;
4391 struct dlm_user_args
*ua
;
4394 dlm_lock_recovery(ls
);
4396 error
= find_lkb(ls
, lkid
, &lkb
);
4400 /* user can change the params on its lock when it converts it, or
4401 add an lvb that didn't exist before */
4403 ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4405 if (flags
& DLM_LKF_VALBLK
&& !ua
->lksb
.sb_lvbptr
) {
4406 ua
->lksb
.sb_lvbptr
= kzalloc(DLM_USER_LVB_LEN
, GFP_KERNEL
);
4407 if (!ua
->lksb
.sb_lvbptr
) {
4412 if (lvb_in
&& ua
->lksb
.sb_lvbptr
)
4413 memcpy(ua
->lksb
.sb_lvbptr
, lvb_in
, DLM_USER_LVB_LEN
);
4415 ua
->xid
= ua_tmp
->xid
;
4416 ua
->castparam
= ua_tmp
->castparam
;
4417 ua
->castaddr
= ua_tmp
->castaddr
;
4418 ua
->bastparam
= ua_tmp
->bastparam
;
4419 ua
->bastaddr
= ua_tmp
->bastaddr
;
4420 ua
->user_lksb
= ua_tmp
->user_lksb
;
4421 ua
->old_mode
= lkb
->lkb_grmode
;
4423 error
= set_lock_args(mode
, &ua
->lksb
, flags
, 0, timeout_cs
,
4424 DLM_FAKE_USER_AST
, ua
, DLM_FAKE_USER_AST
, &args
);
4428 error
= convert_lock(ls
, lkb
, &args
);
4430 if (error
== -EINPROGRESS
|| error
== -EAGAIN
|| error
== -EDEADLK
)
4435 dlm_unlock_recovery(ls
);
4440 int dlm_user_unlock(struct dlm_ls
*ls
, struct dlm_user_args
*ua_tmp
,
4441 uint32_t flags
, uint32_t lkid
, char *lvb_in
)
4443 struct dlm_lkb
*lkb
;
4444 struct dlm_args args
;
4445 struct dlm_user_args
*ua
;
4448 dlm_lock_recovery(ls
);
4450 error
= find_lkb(ls
, lkid
, &lkb
);
4454 ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4456 if (lvb_in
&& ua
->lksb
.sb_lvbptr
)
4457 memcpy(ua
->lksb
.sb_lvbptr
, lvb_in
, DLM_USER_LVB_LEN
);
4458 if (ua_tmp
->castparam
)
4459 ua
->castparam
= ua_tmp
->castparam
;
4460 ua
->user_lksb
= ua_tmp
->user_lksb
;
4462 error
= set_unlock_args(flags
, ua
, &args
);
4466 error
= unlock_lock(ls
, lkb
, &args
);
4468 if (error
== -DLM_EUNLOCK
)
4470 /* from validate_unlock_args() */
4471 if (error
== -EBUSY
&& (flags
& DLM_LKF_FORCEUNLOCK
))
4476 spin_lock(&ua
->proc
->locks_spin
);
4477 /* dlm_user_add_ast() may have already taken lkb off the proc list */
4478 if (!list_empty(&lkb
->lkb_ownqueue
))
4479 list_move(&lkb
->lkb_ownqueue
, &ua
->proc
->unlocking
);
4480 spin_unlock(&ua
->proc
->locks_spin
);
4484 dlm_unlock_recovery(ls
);
4489 int dlm_user_cancel(struct dlm_ls
*ls
, struct dlm_user_args
*ua_tmp
,
4490 uint32_t flags
, uint32_t lkid
)
4492 struct dlm_lkb
*lkb
;
4493 struct dlm_args args
;
4494 struct dlm_user_args
*ua
;
4497 dlm_lock_recovery(ls
);
4499 error
= find_lkb(ls
, lkid
, &lkb
);
4503 ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4504 if (ua_tmp
->castparam
)
4505 ua
->castparam
= ua_tmp
->castparam
;
4506 ua
->user_lksb
= ua_tmp
->user_lksb
;
4508 error
= set_unlock_args(flags
, ua
, &args
);
4512 error
= cancel_lock(ls
, lkb
, &args
);
4514 if (error
== -DLM_ECANCEL
)
4516 /* from validate_unlock_args() */
4517 if (error
== -EBUSY
)
4522 dlm_unlock_recovery(ls
);
4527 int dlm_user_deadlock(struct dlm_ls
*ls
, uint32_t flags
, uint32_t lkid
)
4529 struct dlm_lkb
*lkb
;
4530 struct dlm_args args
;
4531 struct dlm_user_args
*ua
;
4535 dlm_lock_recovery(ls
);
4537 error
= find_lkb(ls
, lkid
, &lkb
);
4541 ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4543 error
= set_unlock_args(flags
, ua
, &args
);
4547 /* same as cancel_lock(), but set DEADLOCK_CANCEL after lock_rsb */
4549 r
= lkb
->lkb_resource
;
4553 error
= validate_unlock_args(lkb
, &args
);
4556 lkb
->lkb_flags
|= DLM_IFL_DEADLOCK_CANCEL
;
4558 error
= _cancel_lock(r
, lkb
);
4563 if (error
== -DLM_ECANCEL
)
4565 /* from validate_unlock_args() */
4566 if (error
== -EBUSY
)
4571 dlm_unlock_recovery(ls
);
4575 /* lkb's that are removed from the waiters list by revert are just left on the
4576 orphans list with the granted orphan locks, to be freed by purge */
4578 static int orphan_proc_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
4580 struct dlm_user_args
*ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4581 struct dlm_args args
;
4585 mutex_lock(&ls
->ls_orphans_mutex
);
4586 list_add_tail(&lkb
->lkb_ownqueue
, &ls
->ls_orphans
);
4587 mutex_unlock(&ls
->ls_orphans_mutex
);
4589 set_unlock_args(0, ua
, &args
);
4591 error
= cancel_lock(ls
, lkb
, &args
);
4592 if (error
== -DLM_ECANCEL
)
4597 /* The force flag allows the unlock to go ahead even if the lkb isn't granted.
4598 Regardless of what rsb queue the lock is on, it's removed and freed. */
4600 static int unlock_proc_lock(struct dlm_ls
*ls
, struct dlm_lkb
*lkb
)
4602 struct dlm_user_args
*ua
= (struct dlm_user_args
*)lkb
->lkb_astparam
;
4603 struct dlm_args args
;
4606 set_unlock_args(DLM_LKF_FORCEUNLOCK
, ua
, &args
);
4608 error
= unlock_lock(ls
, lkb
, &args
);
4609 if (error
== -DLM_EUNLOCK
)
4614 /* We have to release clear_proc_locks mutex before calling unlock_proc_lock()
4615 (which does lock_rsb) due to deadlock with receiving a message that does
4616 lock_rsb followed by dlm_user_add_ast() */
4618 static struct dlm_lkb
*del_proc_lock(struct dlm_ls
*ls
,
4619 struct dlm_user_proc
*proc
)
4621 struct dlm_lkb
*lkb
= NULL
;
4623 mutex_lock(&ls
->ls_clear_proc_locks
);
4624 if (list_empty(&proc
->locks
))
4627 lkb
= list_entry(proc
->locks
.next
, struct dlm_lkb
, lkb_ownqueue
);
4628 list_del_init(&lkb
->lkb_ownqueue
);
4630 if (lkb
->lkb_exflags
& DLM_LKF_PERSISTENT
)
4631 lkb
->lkb_flags
|= DLM_IFL_ORPHAN
;
4633 lkb
->lkb_flags
|= DLM_IFL_DEAD
;
4635 mutex_unlock(&ls
->ls_clear_proc_locks
);
4639 /* The ls_clear_proc_locks mutex protects against dlm_user_add_asts() which
4640 1) references lkb->ua which we free here and 2) adds lkbs to proc->asts,
4641 which we clear here. */
4643 /* proc CLOSING flag is set so no more device_reads should look at proc->asts
4644 list, and no more device_writes should add lkb's to proc->locks list; so we
4645 shouldn't need to take asts_spin or locks_spin here. this assumes that
4646 device reads/writes/closes are serialized -- FIXME: we may need to serialize
4649 void dlm_clear_proc_locks(struct dlm_ls
*ls
, struct dlm_user_proc
*proc
)
4651 struct dlm_lkb
*lkb
, *safe
;
4653 dlm_lock_recovery(ls
);
4656 lkb
= del_proc_lock(ls
, proc
);
4660 if (lkb
->lkb_exflags
& DLM_LKF_PERSISTENT
)
4661 orphan_proc_lock(ls
, lkb
);
4663 unlock_proc_lock(ls
, lkb
);
4665 /* this removes the reference for the proc->locks list
4666 added by dlm_user_request, it may result in the lkb
4672 mutex_lock(&ls
->ls_clear_proc_locks
);
4674 /* in-progress unlocks */
4675 list_for_each_entry_safe(lkb
, safe
, &proc
->unlocking
, lkb_ownqueue
) {
4676 list_del_init(&lkb
->lkb_ownqueue
);
4677 lkb
->lkb_flags
|= DLM_IFL_DEAD
;
4681 list_for_each_entry_safe(lkb
, safe
, &proc
->asts
, lkb_astqueue
) {
4682 list_del(&lkb
->lkb_astqueue
);
4686 mutex_unlock(&ls
->ls_clear_proc_locks
);
4687 dlm_unlock_recovery(ls
);
4690 static void purge_proc_locks(struct dlm_ls
*ls
, struct dlm_user_proc
*proc
)
4692 struct dlm_lkb
*lkb
, *safe
;
4696 spin_lock(&proc
->locks_spin
);
4697 if (!list_empty(&proc
->locks
)) {
4698 lkb
= list_entry(proc
->locks
.next
, struct dlm_lkb
,
4700 list_del_init(&lkb
->lkb_ownqueue
);
4702 spin_unlock(&proc
->locks_spin
);
4707 lkb
->lkb_flags
|= DLM_IFL_DEAD
;
4708 unlock_proc_lock(ls
, lkb
);
4709 dlm_put_lkb(lkb
); /* ref from proc->locks list */
4712 spin_lock(&proc
->locks_spin
);
4713 list_for_each_entry_safe(lkb
, safe
, &proc
->unlocking
, lkb_ownqueue
) {
4714 list_del_init(&lkb
->lkb_ownqueue
);
4715 lkb
->lkb_flags
|= DLM_IFL_DEAD
;
4718 spin_unlock(&proc
->locks_spin
);
4720 spin_lock(&proc
->asts_spin
);
4721 list_for_each_entry_safe(lkb
, safe
, &proc
->asts
, lkb_astqueue
) {
4722 list_del(&lkb
->lkb_astqueue
);
4725 spin_unlock(&proc
->asts_spin
);
4728 /* pid of 0 means purge all orphans */
4730 static void do_purge(struct dlm_ls
*ls
, int nodeid
, int pid
)
4732 struct dlm_lkb
*lkb
, *safe
;
4734 mutex_lock(&ls
->ls_orphans_mutex
);
4735 list_for_each_entry_safe(lkb
, safe
, &ls
->ls_orphans
, lkb_ownqueue
) {
4736 if (pid
&& lkb
->lkb_ownpid
!= pid
)
4738 unlock_proc_lock(ls
, lkb
);
4739 list_del_init(&lkb
->lkb_ownqueue
);
4742 mutex_unlock(&ls
->ls_orphans_mutex
);
4745 static int send_purge(struct dlm_ls
*ls
, int nodeid
, int pid
)
4747 struct dlm_message
*ms
;
4748 struct dlm_mhandle
*mh
;
4751 error
= _create_message(ls
, sizeof(struct dlm_message
), nodeid
,
4752 DLM_MSG_PURGE
, &ms
, &mh
);
4755 ms
->m_nodeid
= nodeid
;
4758 return send_message(mh
, ms
);
4761 int dlm_user_purge(struct dlm_ls
*ls
, struct dlm_user_proc
*proc
,
4762 int nodeid
, int pid
)
4766 if (nodeid
!= dlm_our_nodeid()) {
4767 error
= send_purge(ls
, nodeid
, pid
);
4769 dlm_lock_recovery(ls
);
4770 if (pid
== current
->pid
)
4771 purge_proc_locks(ls
, proc
);
4773 do_purge(ls
, nodeid
, pid
);
4774 dlm_unlock_recovery(ls
);