]>
Commit | Line | Data |
---|---|---|
e7fd4179 DT |
1 | /****************************************************************************** |
2 | ******************************************************************************* | |
3 | ** | |
7fe2b319 | 4 | ** Copyright (C) 2005-2010 Red Hat, Inc. All rights reserved. |
e7fd4179 DT |
5 | ** |
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. | |
9 | ** | |
10 | ******************************************************************************* | |
11 | ******************************************************************************/ | |
12 | ||
13 | /* Central locking logic has four stages: | |
14 | ||
15 | dlm_lock() | |
16 | dlm_unlock() | |
17 | ||
18 | request_lock(ls, lkb) | |
19 | convert_lock(ls, lkb) | |
20 | unlock_lock(ls, lkb) | |
21 | cancel_lock(ls, lkb) | |
22 | ||
23 | _request_lock(r, lkb) | |
24 | _convert_lock(r, lkb) | |
25 | _unlock_lock(r, lkb) | |
26 | _cancel_lock(r, lkb) | |
27 | ||
28 | do_request(r, lkb) | |
29 | do_convert(r, lkb) | |
30 | do_unlock(r, lkb) | |
31 | do_cancel(r, lkb) | |
32 | ||
33 | Stage 1 (lock, unlock) is mainly about checking input args and | |
34 | splitting into one of the four main operations: | |
35 | ||
36 | dlm_lock = request_lock | |
37 | dlm_lock+CONVERT = convert_lock | |
38 | dlm_unlock = unlock_lock | |
39 | dlm_unlock+CANCEL = cancel_lock | |
40 | ||
41 | Stage 2, xxxx_lock(), just finds and locks the relevant rsb which is | |
42 | provided to the next stage. | |
43 | ||
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(). | |
46 | ||
47 | Stage 4, do_xxxx(), is the guts of the operation. It manipulates the | |
48 | given rsb and lkb and queues callbacks. | |
49 | ||
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: | |
53 | ||
54 | L: send_xxxx() -> R: receive_xxxx() | |
55 | R: do_xxxx() | |
56 | L: receive_xxxx_reply() <- R: send_xxxx_reply() | |
57 | */ | |
597d0cae | 58 | #include <linux/types.h> |
5a0e3ad6 | 59 | #include <linux/slab.h> |
e7fd4179 | 60 | #include "dlm_internal.h" |
597d0cae | 61 | #include <linux/dlm_device.h> |
e7fd4179 DT |
62 | #include "memory.h" |
63 | #include "lowcomms.h" | |
64 | #include "requestqueue.h" | |
65 | #include "util.h" | |
66 | #include "dir.h" | |
67 | #include "member.h" | |
68 | #include "lockspace.h" | |
69 | #include "ast.h" | |
70 | #include "lock.h" | |
71 | #include "rcom.h" | |
72 | #include "recover.h" | |
73 | #include "lvb_table.h" | |
597d0cae | 74 | #include "user.h" |
e7fd4179 DT |
75 | #include "config.h" |
76 | ||
77 | static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
78 | static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
79 | static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
80 | static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
81 | static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
82 | static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode); | |
83 | static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
84 | static int send_remove(struct dlm_rsb *r); | |
85 | static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb); | |
3ae1acf9 | 86 | static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb); |
e7fd4179 DT |
87 | static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, |
88 | struct dlm_message *ms); | |
89 | static int receive_extralen(struct dlm_message *ms); | |
8499137d | 90 | static void do_purge(struct dlm_ls *ls, int nodeid, int pid); |
3ae1acf9 | 91 | static void del_timeout(struct dlm_lkb *lkb); |
e7fd4179 DT |
92 | |
93 | /* | |
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) | |
99 | */ | |
100 | ||
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 */ | |
111 | }; | |
112 | ||
113 | /* | |
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 | |
120 | */ | |
121 | ||
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 */ | |
132 | }; | |
e7fd4179 DT |
133 | |
134 | #define modes_compat(gr, rq) \ | |
135 | __dlm_compat_matrix[(gr)->lkb_grmode + 1][(rq)->lkb_rqmode + 1] | |
136 | ||
137 | int dlm_modes_compat(int mode1, int mode2) | |
138 | { | |
139 | return __dlm_compat_matrix[mode1 + 1][mode2 + 1]; | |
140 | } | |
141 | ||
142 | /* | |
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] | |
146 | */ | |
147 | ||
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 */ | |
158 | }; | |
159 | ||
597d0cae | 160 | void dlm_print_lkb(struct dlm_lkb *lkb) |
e7fd4179 DT |
161 | { |
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); | |
167 | } | |
168 | ||
170e19ab | 169 | static void dlm_print_rsb(struct dlm_rsb *r) |
e7fd4179 DT |
170 | { |
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); | |
174 | } | |
175 | ||
a345da3e DT |
176 | void dlm_dump_rsb(struct dlm_rsb *r) |
177 | { | |
178 | struct dlm_lkb *lkb; | |
179 | ||
180 | dlm_print_rsb(r); | |
181 | ||
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) | |
186 | dlm_print_lkb(lkb); | |
187 | printk(KERN_ERR "rsb grant queue:\n"); | |
188 | list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue) | |
189 | dlm_print_lkb(lkb); | |
190 | printk(KERN_ERR "rsb convert queue:\n"); | |
191 | list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue) | |
192 | dlm_print_lkb(lkb); | |
193 | printk(KERN_ERR "rsb wait queue:\n"); | |
194 | list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue) | |
195 | dlm_print_lkb(lkb); | |
196 | } | |
197 | ||
e7fd4179 DT |
198 | /* Threads cannot use the lockspace while it's being recovered */ |
199 | ||
85e86edf | 200 | static inline void dlm_lock_recovery(struct dlm_ls *ls) |
e7fd4179 DT |
201 | { |
202 | down_read(&ls->ls_in_recovery); | |
203 | } | |
204 | ||
85e86edf | 205 | void dlm_unlock_recovery(struct dlm_ls *ls) |
e7fd4179 DT |
206 | { |
207 | up_read(&ls->ls_in_recovery); | |
208 | } | |
209 | ||
85e86edf | 210 | int dlm_lock_recovery_try(struct dlm_ls *ls) |
e7fd4179 DT |
211 | { |
212 | return down_read_trylock(&ls->ls_in_recovery); | |
213 | } | |
214 | ||
215 | static inline int can_be_queued(struct dlm_lkb *lkb) | |
216 | { | |
217 | return !(lkb->lkb_exflags & DLM_LKF_NOQUEUE); | |
218 | } | |
219 | ||
220 | static inline int force_blocking_asts(struct dlm_lkb *lkb) | |
221 | { | |
222 | return (lkb->lkb_exflags & DLM_LKF_NOQUEUEBAST); | |
223 | } | |
224 | ||
225 | static inline int is_demoted(struct dlm_lkb *lkb) | |
226 | { | |
227 | return (lkb->lkb_sbflags & DLM_SBF_DEMOTED); | |
228 | } | |
229 | ||
7d3c1feb DT |
230 | static inline int is_altmode(struct dlm_lkb *lkb) |
231 | { | |
232 | return (lkb->lkb_sbflags & DLM_SBF_ALTMODE); | |
233 | } | |
234 | ||
235 | static inline int is_granted(struct dlm_lkb *lkb) | |
236 | { | |
237 | return (lkb->lkb_status == DLM_LKSTS_GRANTED); | |
238 | } | |
239 | ||
e7fd4179 DT |
240 | static inline int is_remote(struct dlm_rsb *r) |
241 | { | |
242 | DLM_ASSERT(r->res_nodeid >= 0, dlm_print_rsb(r);); | |
243 | return !!r->res_nodeid; | |
244 | } | |
245 | ||
246 | static inline int is_process_copy(struct dlm_lkb *lkb) | |
247 | { | |
248 | return (lkb->lkb_nodeid && !(lkb->lkb_flags & DLM_IFL_MSTCPY)); | |
249 | } | |
250 | ||
251 | static inline int is_master_copy(struct dlm_lkb *lkb) | |
252 | { | |
253 | if (lkb->lkb_flags & DLM_IFL_MSTCPY) | |
254 | DLM_ASSERT(lkb->lkb_nodeid, dlm_print_lkb(lkb);); | |
90135925 | 255 | return (lkb->lkb_flags & DLM_IFL_MSTCPY) ? 1 : 0; |
e7fd4179 DT |
256 | } |
257 | ||
258 | static inline int middle_conversion(struct dlm_lkb *lkb) | |
259 | { | |
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)) | |
90135925 DT |
262 | return 1; |
263 | return 0; | |
e7fd4179 DT |
264 | } |
265 | ||
266 | static inline int down_conversion(struct dlm_lkb *lkb) | |
267 | { | |
268 | return (!middle_conversion(lkb) && lkb->lkb_rqmode < lkb->lkb_grmode); | |
269 | } | |
270 | ||
ef0c2bb0 DT |
271 | static inline int is_overlap_unlock(struct dlm_lkb *lkb) |
272 | { | |
273 | return lkb->lkb_flags & DLM_IFL_OVERLAP_UNLOCK; | |
274 | } | |
275 | ||
276 | static inline int is_overlap_cancel(struct dlm_lkb *lkb) | |
277 | { | |
278 | return lkb->lkb_flags & DLM_IFL_OVERLAP_CANCEL; | |
279 | } | |
280 | ||
281 | static inline int is_overlap(struct dlm_lkb *lkb) | |
282 | { | |
283 | return (lkb->lkb_flags & (DLM_IFL_OVERLAP_UNLOCK | | |
284 | DLM_IFL_OVERLAP_CANCEL)); | |
285 | } | |
286 | ||
e7fd4179 DT |
287 | static void queue_cast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv) |
288 | { | |
289 | if (is_master_copy(lkb)) | |
290 | return; | |
291 | ||
3ae1acf9 DT |
292 | del_timeout(lkb); |
293 | ||
e7fd4179 DT |
294 | DLM_ASSERT(lkb->lkb_lksb, dlm_print_lkb(lkb);); |
295 | ||
3ae1acf9 DT |
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; | |
300 | rv = -ETIMEDOUT; | |
301 | } | |
302 | ||
8b4021fa DT |
303 | if (rv == -DLM_ECANCEL && (lkb->lkb_flags & DLM_IFL_DEADLOCK_CANCEL)) { |
304 | lkb->lkb_flags &= ~DLM_IFL_DEADLOCK_CANCEL; | |
305 | rv = -EDEADLK; | |
306 | } | |
307 | ||
e7fd4179 DT |
308 | lkb->lkb_lksb->sb_status = rv; |
309 | lkb->lkb_lksb->sb_flags = lkb->lkb_sbflags; | |
310 | ||
7fe2b319 | 311 | dlm_add_ast(lkb, AST_COMP, lkb->lkb_grmode); |
e7fd4179 DT |
312 | } |
313 | ||
ef0c2bb0 DT |
314 | static inline void queue_cast_overlap(struct dlm_rsb *r, struct dlm_lkb *lkb) |
315 | { | |
316 | queue_cast(r, lkb, | |
317 | is_overlap_unlock(lkb) ? -DLM_EUNLOCK : -DLM_ECANCEL); | |
318 | } | |
319 | ||
e7fd4179 DT |
320 | static void queue_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int rqmode) |
321 | { | |
e3a84ad4 DT |
322 | lkb->lkb_time_bast = ktime_get(); |
323 | ||
b6fa8796 DT |
324 | if (is_master_copy(lkb)) { |
325 | lkb->lkb_bastmode = rqmode; /* printed by debugfs */ | |
e7fd4179 | 326 | send_bast(r, lkb, rqmode); |
b6fa8796 | 327 | } else { |
fd22a51b | 328 | dlm_add_ast(lkb, AST_BAST, rqmode); |
b6fa8796 | 329 | } |
e7fd4179 DT |
330 | } |
331 | ||
332 | /* | |
333 | * Basic operations on rsb's and lkb's | |
334 | */ | |
335 | ||
336 | static struct dlm_rsb *create_rsb(struct dlm_ls *ls, char *name, int len) | |
337 | { | |
338 | struct dlm_rsb *r; | |
339 | ||
52bda2b5 | 340 | r = dlm_allocate_rsb(ls, len); |
e7fd4179 DT |
341 | if (!r) |
342 | return NULL; | |
343 | ||
344 | r->res_ls = ls; | |
345 | r->res_length = len; | |
346 | memcpy(r->res_name, name, len); | |
90135925 | 347 | mutex_init(&r->res_mutex); |
e7fd4179 DT |
348 | |
349 | INIT_LIST_HEAD(&r->res_lookup); | |
350 | INIT_LIST_HEAD(&r->res_grantqueue); | |
351 | INIT_LIST_HEAD(&r->res_convertqueue); | |
352 | INIT_LIST_HEAD(&r->res_waitqueue); | |
353 | INIT_LIST_HEAD(&r->res_root_list); | |
354 | INIT_LIST_HEAD(&r->res_recover_list); | |
355 | ||
356 | return r; | |
357 | } | |
358 | ||
359 | static int search_rsb_list(struct list_head *head, char *name, int len, | |
360 | unsigned int flags, struct dlm_rsb **r_ret) | |
361 | { | |
362 | struct dlm_rsb *r; | |
363 | int error = 0; | |
364 | ||
365 | list_for_each_entry(r, head, res_hashchain) { | |
366 | if (len == r->res_length && !memcmp(name, r->res_name, len)) | |
367 | goto found; | |
368 | } | |
18c60c0a | 369 | *r_ret = NULL; |
597d0cae | 370 | return -EBADR; |
e7fd4179 DT |
371 | |
372 | found: | |
373 | if (r->res_nodeid && (flags & R_MASTER)) | |
374 | error = -ENOTBLK; | |
375 | *r_ret = r; | |
376 | return error; | |
377 | } | |
378 | ||
379 | static int _search_rsb(struct dlm_ls *ls, char *name, int len, int b, | |
380 | unsigned int flags, struct dlm_rsb **r_ret) | |
381 | { | |
382 | struct dlm_rsb *r; | |
383 | int error; | |
384 | ||
385 | error = search_rsb_list(&ls->ls_rsbtbl[b].list, name, len, flags, &r); | |
386 | if (!error) { | |
387 | kref_get(&r->res_ref); | |
388 | goto out; | |
389 | } | |
390 | error = search_rsb_list(&ls->ls_rsbtbl[b].toss, name, len, flags, &r); | |
391 | if (error) | |
392 | goto out; | |
393 | ||
394 | list_move(&r->res_hashchain, &ls->ls_rsbtbl[b].list); | |
395 | ||
396 | if (dlm_no_directory(ls)) | |
397 | goto out; | |
398 | ||
399 | if (r->res_nodeid == -1) { | |
400 | rsb_clear_flag(r, RSB_MASTER_UNCERTAIN); | |
401 | r->res_first_lkid = 0; | |
402 | } else if (r->res_nodeid > 0) { | |
403 | rsb_set_flag(r, RSB_MASTER_UNCERTAIN); | |
404 | r->res_first_lkid = 0; | |
405 | } else { | |
406 | DLM_ASSERT(r->res_nodeid == 0, dlm_print_rsb(r);); | |
407 | DLM_ASSERT(!rsb_flag(r, RSB_MASTER_UNCERTAIN),); | |
408 | } | |
409 | out: | |
410 | *r_ret = r; | |
411 | return error; | |
412 | } | |
413 | ||
414 | static int search_rsb(struct dlm_ls *ls, char *name, int len, int b, | |
415 | unsigned int flags, struct dlm_rsb **r_ret) | |
416 | { | |
417 | int error; | |
c7be761a | 418 | spin_lock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 | 419 | error = _search_rsb(ls, name, len, b, flags, r_ret); |
c7be761a | 420 | spin_unlock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 DT |
421 | return error; |
422 | } | |
423 | ||
424 | /* | |
425 | * Find rsb in rsbtbl and potentially create/add one | |
426 | * | |
427 | * Delaying the release of rsb's has a similar benefit to applications keeping | |
428 | * NL locks on an rsb, but without the guarantee that the cached master value | |
429 | * will still be valid when the rsb is reused. Apps aren't always smart enough | |
430 | * to keep NL locks on an rsb that they may lock again shortly; this can lead | |
431 | * to excessive master lookups and removals if we don't delay the release. | |
432 | * | |
433 | * Searching for an rsb means looking through both the normal list and toss | |
434 | * list. When found on the toss list the rsb is moved to the normal list with | |
435 | * ref count of 1; when found on normal list the ref count is incremented. | |
436 | */ | |
437 | ||
438 | static int find_rsb(struct dlm_ls *ls, char *name, int namelen, | |
439 | unsigned int flags, struct dlm_rsb **r_ret) | |
440 | { | |
a566a6b1 | 441 | struct dlm_rsb *r = NULL, *tmp; |
e7fd4179 | 442 | uint32_t hash, bucket; |
ef58bcca AV |
443 | int error = -EINVAL; |
444 | ||
445 | if (namelen > DLM_RESNAME_MAXLEN) | |
446 | goto out; | |
e7fd4179 DT |
447 | |
448 | if (dlm_no_directory(ls)) | |
449 | flags |= R_CREATE; | |
450 | ||
ef58bcca | 451 | error = 0; |
e7fd4179 DT |
452 | hash = jhash(name, namelen, 0); |
453 | bucket = hash & (ls->ls_rsbtbl_size - 1); | |
454 | ||
455 | error = search_rsb(ls, name, namelen, bucket, flags, &r); | |
456 | if (!error) | |
457 | goto out; | |
458 | ||
597d0cae | 459 | if (error == -EBADR && !(flags & R_CREATE)) |
e7fd4179 DT |
460 | goto out; |
461 | ||
462 | /* the rsb was found but wasn't a master copy */ | |
463 | if (error == -ENOTBLK) | |
464 | goto out; | |
465 | ||
466 | error = -ENOMEM; | |
467 | r = create_rsb(ls, name, namelen); | |
468 | if (!r) | |
469 | goto out; | |
470 | ||
471 | r->res_hash = hash; | |
472 | r->res_bucket = bucket; | |
473 | r->res_nodeid = -1; | |
474 | kref_init(&r->res_ref); | |
475 | ||
476 | /* With no directory, the master can be set immediately */ | |
477 | if (dlm_no_directory(ls)) { | |
478 | int nodeid = dlm_dir_nodeid(r); | |
479 | if (nodeid == dlm_our_nodeid()) | |
480 | nodeid = 0; | |
481 | r->res_nodeid = nodeid; | |
482 | } | |
483 | ||
c7be761a | 484 | spin_lock(&ls->ls_rsbtbl[bucket].lock); |
e7fd4179 DT |
485 | error = _search_rsb(ls, name, namelen, bucket, 0, &tmp); |
486 | if (!error) { | |
c7be761a | 487 | spin_unlock(&ls->ls_rsbtbl[bucket].lock); |
52bda2b5 | 488 | dlm_free_rsb(r); |
e7fd4179 DT |
489 | r = tmp; |
490 | goto out; | |
491 | } | |
492 | list_add(&r->res_hashchain, &ls->ls_rsbtbl[bucket].list); | |
c7be761a | 493 | spin_unlock(&ls->ls_rsbtbl[bucket].lock); |
e7fd4179 DT |
494 | error = 0; |
495 | out: | |
496 | *r_ret = r; | |
497 | return error; | |
498 | } | |
499 | ||
e7fd4179 DT |
500 | /* This is only called to add a reference when the code already holds |
501 | a valid reference to the rsb, so there's no need for locking. */ | |
502 | ||
503 | static inline void hold_rsb(struct dlm_rsb *r) | |
504 | { | |
505 | kref_get(&r->res_ref); | |
506 | } | |
507 | ||
508 | void dlm_hold_rsb(struct dlm_rsb *r) | |
509 | { | |
510 | hold_rsb(r); | |
511 | } | |
512 | ||
513 | static void toss_rsb(struct kref *kref) | |
514 | { | |
515 | struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref); | |
516 | struct dlm_ls *ls = r->res_ls; | |
517 | ||
518 | DLM_ASSERT(list_empty(&r->res_root_list), dlm_print_rsb(r);); | |
519 | kref_init(&r->res_ref); | |
520 | list_move(&r->res_hashchain, &ls->ls_rsbtbl[r->res_bucket].toss); | |
521 | r->res_toss_time = jiffies; | |
522 | if (r->res_lvbptr) { | |
52bda2b5 | 523 | dlm_free_lvb(r->res_lvbptr); |
e7fd4179 DT |
524 | r->res_lvbptr = NULL; |
525 | } | |
526 | } | |
527 | ||
528 | /* When all references to the rsb are gone it's transfered to | |
529 | the tossed list for later disposal. */ | |
530 | ||
531 | static void put_rsb(struct dlm_rsb *r) | |
532 | { | |
533 | struct dlm_ls *ls = r->res_ls; | |
534 | uint32_t bucket = r->res_bucket; | |
535 | ||
c7be761a | 536 | spin_lock(&ls->ls_rsbtbl[bucket].lock); |
e7fd4179 | 537 | kref_put(&r->res_ref, toss_rsb); |
c7be761a | 538 | spin_unlock(&ls->ls_rsbtbl[bucket].lock); |
e7fd4179 DT |
539 | } |
540 | ||
541 | void dlm_put_rsb(struct dlm_rsb *r) | |
542 | { | |
543 | put_rsb(r); | |
544 | } | |
545 | ||
546 | /* See comment for unhold_lkb */ | |
547 | ||
548 | static void unhold_rsb(struct dlm_rsb *r) | |
549 | { | |
550 | int rv; | |
551 | rv = kref_put(&r->res_ref, toss_rsb); | |
a345da3e | 552 | DLM_ASSERT(!rv, dlm_dump_rsb(r);); |
e7fd4179 DT |
553 | } |
554 | ||
555 | static void kill_rsb(struct kref *kref) | |
556 | { | |
557 | struct dlm_rsb *r = container_of(kref, struct dlm_rsb, res_ref); | |
558 | ||
559 | /* All work is done after the return from kref_put() so we | |
560 | can release the write_lock before the remove and free. */ | |
561 | ||
a345da3e DT |
562 | DLM_ASSERT(list_empty(&r->res_lookup), dlm_dump_rsb(r);); |
563 | DLM_ASSERT(list_empty(&r->res_grantqueue), dlm_dump_rsb(r);); | |
564 | DLM_ASSERT(list_empty(&r->res_convertqueue), dlm_dump_rsb(r);); | |
565 | DLM_ASSERT(list_empty(&r->res_waitqueue), dlm_dump_rsb(r);); | |
566 | DLM_ASSERT(list_empty(&r->res_root_list), dlm_dump_rsb(r);); | |
567 | DLM_ASSERT(list_empty(&r->res_recover_list), dlm_dump_rsb(r);); | |
e7fd4179 DT |
568 | } |
569 | ||
570 | /* Attaching/detaching lkb's from rsb's is for rsb reference counting. | |
571 | The rsb must exist as long as any lkb's for it do. */ | |
572 | ||
573 | static void attach_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
574 | { | |
575 | hold_rsb(r); | |
576 | lkb->lkb_resource = r; | |
577 | } | |
578 | ||
579 | static void detach_lkb(struct dlm_lkb *lkb) | |
580 | { | |
581 | if (lkb->lkb_resource) { | |
582 | put_rsb(lkb->lkb_resource); | |
583 | lkb->lkb_resource = NULL; | |
584 | } | |
585 | } | |
586 | ||
587 | static int create_lkb(struct dlm_ls *ls, struct dlm_lkb **lkb_ret) | |
588 | { | |
589 | struct dlm_lkb *lkb, *tmp; | |
590 | uint32_t lkid = 0; | |
591 | uint16_t bucket; | |
592 | ||
52bda2b5 | 593 | lkb = dlm_allocate_lkb(ls); |
e7fd4179 DT |
594 | if (!lkb) |
595 | return -ENOMEM; | |
596 | ||
597 | lkb->lkb_nodeid = -1; | |
598 | lkb->lkb_grmode = DLM_LOCK_IV; | |
599 | kref_init(&lkb->lkb_ref); | |
34e22bed | 600 | INIT_LIST_HEAD(&lkb->lkb_ownqueue); |
ef0c2bb0 | 601 | INIT_LIST_HEAD(&lkb->lkb_rsb_lookup); |
3ae1acf9 | 602 | INIT_LIST_HEAD(&lkb->lkb_time_list); |
e7fd4179 DT |
603 | |
604 | get_random_bytes(&bucket, sizeof(bucket)); | |
605 | bucket &= (ls->ls_lkbtbl_size - 1); | |
606 | ||
607 | write_lock(&ls->ls_lkbtbl[bucket].lock); | |
608 | ||
609 | /* counter can roll over so we must verify lkid is not in use */ | |
610 | ||
611 | while (lkid == 0) { | |
ce03f12b | 612 | lkid = (bucket << 16) | ls->ls_lkbtbl[bucket].counter++; |
e7fd4179 DT |
613 | |
614 | list_for_each_entry(tmp, &ls->ls_lkbtbl[bucket].list, | |
615 | lkb_idtbl_list) { | |
616 | if (tmp->lkb_id != lkid) | |
617 | continue; | |
618 | lkid = 0; | |
619 | break; | |
620 | } | |
621 | } | |
622 | ||
623 | lkb->lkb_id = lkid; | |
624 | list_add(&lkb->lkb_idtbl_list, &ls->ls_lkbtbl[bucket].list); | |
625 | write_unlock(&ls->ls_lkbtbl[bucket].lock); | |
626 | ||
627 | *lkb_ret = lkb; | |
628 | return 0; | |
629 | } | |
630 | ||
631 | static struct dlm_lkb *__find_lkb(struct dlm_ls *ls, uint32_t lkid) | |
632 | { | |
e7fd4179 | 633 | struct dlm_lkb *lkb; |
ce03f12b | 634 | uint16_t bucket = (lkid >> 16); |
e7fd4179 DT |
635 | |
636 | list_for_each_entry(lkb, &ls->ls_lkbtbl[bucket].list, lkb_idtbl_list) { | |
637 | if (lkb->lkb_id == lkid) | |
638 | return lkb; | |
639 | } | |
640 | return NULL; | |
641 | } | |
642 | ||
643 | static int find_lkb(struct dlm_ls *ls, uint32_t lkid, struct dlm_lkb **lkb_ret) | |
644 | { | |
645 | struct dlm_lkb *lkb; | |
ce03f12b | 646 | uint16_t bucket = (lkid >> 16); |
e7fd4179 DT |
647 | |
648 | if (bucket >= ls->ls_lkbtbl_size) | |
649 | return -EBADSLT; | |
650 | ||
651 | read_lock(&ls->ls_lkbtbl[bucket].lock); | |
652 | lkb = __find_lkb(ls, lkid); | |
653 | if (lkb) | |
654 | kref_get(&lkb->lkb_ref); | |
655 | read_unlock(&ls->ls_lkbtbl[bucket].lock); | |
656 | ||
657 | *lkb_ret = lkb; | |
658 | return lkb ? 0 : -ENOENT; | |
659 | } | |
660 | ||
661 | static void kill_lkb(struct kref *kref) | |
662 | { | |
663 | struct dlm_lkb *lkb = container_of(kref, struct dlm_lkb, lkb_ref); | |
664 | ||
665 | /* All work is done after the return from kref_put() so we | |
666 | can release the write_lock before the detach_lkb */ | |
667 | ||
668 | DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb);); | |
669 | } | |
670 | ||
b3f58d8f DT |
671 | /* __put_lkb() is used when an lkb may not have an rsb attached to |
672 | it so we need to provide the lockspace explicitly */ | |
673 | ||
674 | static int __put_lkb(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
e7fd4179 | 675 | { |
ce03f12b | 676 | uint16_t bucket = (lkb->lkb_id >> 16); |
e7fd4179 DT |
677 | |
678 | write_lock(&ls->ls_lkbtbl[bucket].lock); | |
679 | if (kref_put(&lkb->lkb_ref, kill_lkb)) { | |
680 | list_del(&lkb->lkb_idtbl_list); | |
681 | write_unlock(&ls->ls_lkbtbl[bucket].lock); | |
682 | ||
683 | detach_lkb(lkb); | |
684 | ||
685 | /* for local/process lkbs, lvbptr points to caller's lksb */ | |
686 | if (lkb->lkb_lvbptr && is_master_copy(lkb)) | |
52bda2b5 DT |
687 | dlm_free_lvb(lkb->lkb_lvbptr); |
688 | dlm_free_lkb(lkb); | |
e7fd4179 DT |
689 | return 1; |
690 | } else { | |
691 | write_unlock(&ls->ls_lkbtbl[bucket].lock); | |
692 | return 0; | |
693 | } | |
694 | } | |
695 | ||
696 | int dlm_put_lkb(struct dlm_lkb *lkb) | |
697 | { | |
b3f58d8f DT |
698 | struct dlm_ls *ls; |
699 | ||
700 | DLM_ASSERT(lkb->lkb_resource, dlm_print_lkb(lkb);); | |
701 | DLM_ASSERT(lkb->lkb_resource->res_ls, dlm_print_lkb(lkb);); | |
702 | ||
703 | ls = lkb->lkb_resource->res_ls; | |
704 | return __put_lkb(ls, lkb); | |
e7fd4179 DT |
705 | } |
706 | ||
707 | /* This is only called to add a reference when the code already holds | |
708 | a valid reference to the lkb, so there's no need for locking. */ | |
709 | ||
710 | static inline void hold_lkb(struct dlm_lkb *lkb) | |
711 | { | |
712 | kref_get(&lkb->lkb_ref); | |
713 | } | |
714 | ||
715 | /* This is called when we need to remove a reference and are certain | |
716 | it's not the last ref. e.g. del_lkb is always called between a | |
717 | find_lkb/put_lkb and is always the inverse of a previous add_lkb. | |
718 | put_lkb would work fine, but would involve unnecessary locking */ | |
719 | ||
720 | static inline void unhold_lkb(struct dlm_lkb *lkb) | |
721 | { | |
722 | int rv; | |
723 | rv = kref_put(&lkb->lkb_ref, kill_lkb); | |
724 | DLM_ASSERT(!rv, dlm_print_lkb(lkb);); | |
725 | } | |
726 | ||
727 | static void lkb_add_ordered(struct list_head *new, struct list_head *head, | |
728 | int mode) | |
729 | { | |
730 | struct dlm_lkb *lkb = NULL; | |
731 | ||
732 | list_for_each_entry(lkb, head, lkb_statequeue) | |
733 | if (lkb->lkb_rqmode < mode) | |
734 | break; | |
735 | ||
736 | if (!lkb) | |
737 | list_add_tail(new, head); | |
738 | else | |
739 | __list_add(new, lkb->lkb_statequeue.prev, &lkb->lkb_statequeue); | |
740 | } | |
741 | ||
742 | /* add/remove lkb to rsb's grant/convert/wait queue */ | |
743 | ||
744 | static void add_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int status) | |
745 | { | |
746 | kref_get(&lkb->lkb_ref); | |
747 | ||
748 | DLM_ASSERT(!lkb->lkb_status, dlm_print_lkb(lkb);); | |
749 | ||
eeda418d DT |
750 | lkb->lkb_timestamp = ktime_get(); |
751 | ||
e7fd4179 DT |
752 | lkb->lkb_status = status; |
753 | ||
754 | switch (status) { | |
755 | case DLM_LKSTS_WAITING: | |
756 | if (lkb->lkb_exflags & DLM_LKF_HEADQUE) | |
757 | list_add(&lkb->lkb_statequeue, &r->res_waitqueue); | |
758 | else | |
759 | list_add_tail(&lkb->lkb_statequeue, &r->res_waitqueue); | |
760 | break; | |
761 | case DLM_LKSTS_GRANTED: | |
762 | /* convention says granted locks kept in order of grmode */ | |
763 | lkb_add_ordered(&lkb->lkb_statequeue, &r->res_grantqueue, | |
764 | lkb->lkb_grmode); | |
765 | break; | |
766 | case DLM_LKSTS_CONVERT: | |
767 | if (lkb->lkb_exflags & DLM_LKF_HEADQUE) | |
768 | list_add(&lkb->lkb_statequeue, &r->res_convertqueue); | |
769 | else | |
770 | list_add_tail(&lkb->lkb_statequeue, | |
771 | &r->res_convertqueue); | |
772 | break; | |
773 | default: | |
774 | DLM_ASSERT(0, dlm_print_lkb(lkb); printk("sts=%d\n", status);); | |
775 | } | |
776 | } | |
777 | ||
778 | static void del_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
779 | { | |
780 | lkb->lkb_status = 0; | |
781 | list_del(&lkb->lkb_statequeue); | |
782 | unhold_lkb(lkb); | |
783 | } | |
784 | ||
785 | static void move_lkb(struct dlm_rsb *r, struct dlm_lkb *lkb, int sts) | |
786 | { | |
787 | hold_lkb(lkb); | |
788 | del_lkb(r, lkb); | |
789 | add_lkb(r, lkb, sts); | |
790 | unhold_lkb(lkb); | |
791 | } | |
792 | ||
ef0c2bb0 DT |
793 | static int msg_reply_type(int mstype) |
794 | { | |
795 | switch (mstype) { | |
796 | case DLM_MSG_REQUEST: | |
797 | return DLM_MSG_REQUEST_REPLY; | |
798 | case DLM_MSG_CONVERT: | |
799 | return DLM_MSG_CONVERT_REPLY; | |
800 | case DLM_MSG_UNLOCK: | |
801 | return DLM_MSG_UNLOCK_REPLY; | |
802 | case DLM_MSG_CANCEL: | |
803 | return DLM_MSG_CANCEL_REPLY; | |
804 | case DLM_MSG_LOOKUP: | |
805 | return DLM_MSG_LOOKUP_REPLY; | |
806 | } | |
807 | return -1; | |
808 | } | |
809 | ||
e7fd4179 DT |
810 | /* add/remove lkb from global waiters list of lkb's waiting for |
811 | a reply from a remote node */ | |
812 | ||
ef0c2bb0 | 813 | static int add_to_waiters(struct dlm_lkb *lkb, int mstype) |
e7fd4179 DT |
814 | { |
815 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; | |
ef0c2bb0 | 816 | int error = 0; |
e7fd4179 | 817 | |
90135925 | 818 | mutex_lock(&ls->ls_waiters_mutex); |
ef0c2bb0 DT |
819 | |
820 | if (is_overlap_unlock(lkb) || | |
821 | (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL))) { | |
822 | error = -EINVAL; | |
823 | goto out; | |
824 | } | |
825 | ||
826 | if (lkb->lkb_wait_type || is_overlap_cancel(lkb)) { | |
827 | switch (mstype) { | |
828 | case DLM_MSG_UNLOCK: | |
829 | lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK; | |
830 | break; | |
831 | case DLM_MSG_CANCEL: | |
832 | lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL; | |
833 | break; | |
834 | default: | |
835 | error = -EBUSY; | |
836 | goto out; | |
837 | } | |
838 | lkb->lkb_wait_count++; | |
839 | hold_lkb(lkb); | |
840 | ||
43279e53 | 841 | log_debug(ls, "addwait %x cur %d overlap %d count %d f %x", |
ef0c2bb0 DT |
842 | lkb->lkb_id, lkb->lkb_wait_type, mstype, |
843 | lkb->lkb_wait_count, lkb->lkb_flags); | |
e7fd4179 DT |
844 | goto out; |
845 | } | |
ef0c2bb0 DT |
846 | |
847 | DLM_ASSERT(!lkb->lkb_wait_count, | |
848 | dlm_print_lkb(lkb); | |
849 | printk("wait_count %d\n", lkb->lkb_wait_count);); | |
850 | ||
851 | lkb->lkb_wait_count++; | |
e7fd4179 | 852 | lkb->lkb_wait_type = mstype; |
ef0c2bb0 | 853 | hold_lkb(lkb); |
e7fd4179 DT |
854 | list_add(&lkb->lkb_wait_reply, &ls->ls_waiters); |
855 | out: | |
ef0c2bb0 | 856 | if (error) |
43279e53 | 857 | log_error(ls, "addwait error %x %d flags %x %d %d %s", |
ef0c2bb0 DT |
858 | lkb->lkb_id, error, lkb->lkb_flags, mstype, |
859 | lkb->lkb_wait_type, lkb->lkb_resource->res_name); | |
90135925 | 860 | mutex_unlock(&ls->ls_waiters_mutex); |
ef0c2bb0 | 861 | return error; |
e7fd4179 DT |
862 | } |
863 | ||
b790c3b7 DT |
864 | /* We clear the RESEND flag because we might be taking an lkb off the waiters |
865 | list as part of process_requestqueue (e.g. a lookup that has an optimized | |
866 | request reply on the requestqueue) between dlm_recover_waiters_pre() which | |
867 | set RESEND and dlm_recover_waiters_post() */ | |
868 | ||
43279e53 DT |
869 | static int _remove_from_waiters(struct dlm_lkb *lkb, int mstype, |
870 | struct dlm_message *ms) | |
e7fd4179 | 871 | { |
ef0c2bb0 DT |
872 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; |
873 | int overlap_done = 0; | |
e7fd4179 | 874 | |
ef0c2bb0 | 875 | if (is_overlap_unlock(lkb) && (mstype == DLM_MSG_UNLOCK_REPLY)) { |
43279e53 | 876 | log_debug(ls, "remwait %x unlock_reply overlap", lkb->lkb_id); |
ef0c2bb0 DT |
877 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; |
878 | overlap_done = 1; | |
879 | goto out_del; | |
e7fd4179 | 880 | } |
ef0c2bb0 DT |
881 | |
882 | if (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL_REPLY)) { | |
43279e53 | 883 | log_debug(ls, "remwait %x cancel_reply overlap", lkb->lkb_id); |
ef0c2bb0 DT |
884 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; |
885 | overlap_done = 1; | |
886 | goto out_del; | |
887 | } | |
888 | ||
43279e53 DT |
889 | /* Cancel state was preemptively cleared by a successful convert, |
890 | see next comment, nothing to do. */ | |
891 | ||
892 | if ((mstype == DLM_MSG_CANCEL_REPLY) && | |
893 | (lkb->lkb_wait_type != DLM_MSG_CANCEL)) { | |
894 | log_debug(ls, "remwait %x cancel_reply wait_type %d", | |
895 | lkb->lkb_id, lkb->lkb_wait_type); | |
896 | return -1; | |
897 | } | |
898 | ||
899 | /* Remove for the convert reply, and premptively remove for the | |
900 | cancel reply. A convert has been granted while there's still | |
901 | an outstanding cancel on it (the cancel is moot and the result | |
902 | in the cancel reply should be 0). We preempt the cancel reply | |
903 | because the app gets the convert result and then can follow up | |
904 | with another op, like convert. This subsequent op would see the | |
905 | lingering state of the cancel and fail with -EBUSY. */ | |
906 | ||
907 | if ((mstype == DLM_MSG_CONVERT_REPLY) && | |
908 | (lkb->lkb_wait_type == DLM_MSG_CONVERT) && | |
909 | is_overlap_cancel(lkb) && ms && !ms->m_result) { | |
910 | log_debug(ls, "remwait %x convert_reply zap overlap_cancel", | |
911 | lkb->lkb_id); | |
912 | lkb->lkb_wait_type = 0; | |
913 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; | |
914 | lkb->lkb_wait_count--; | |
915 | goto out_del; | |
916 | } | |
917 | ||
ef0c2bb0 DT |
918 | /* N.B. type of reply may not always correspond to type of original |
919 | msg due to lookup->request optimization, verify others? */ | |
920 | ||
921 | if (lkb->lkb_wait_type) { | |
922 | lkb->lkb_wait_type = 0; | |
923 | goto out_del; | |
924 | } | |
925 | ||
43279e53 DT |
926 | log_error(ls, "remwait error %x reply %d flags %x no wait_type", |
927 | lkb->lkb_id, mstype, lkb->lkb_flags); | |
ef0c2bb0 DT |
928 | return -1; |
929 | ||
930 | out_del: | |
931 | /* the force-unlock/cancel has completed and we haven't recvd a reply | |
932 | to the op that was in progress prior to the unlock/cancel; we | |
933 | give up on any reply to the earlier op. FIXME: not sure when/how | |
934 | this would happen */ | |
935 | ||
936 | if (overlap_done && lkb->lkb_wait_type) { | |
43279e53 | 937 | log_error(ls, "remwait error %x reply %d wait_type %d overlap", |
ef0c2bb0 DT |
938 | lkb->lkb_id, mstype, lkb->lkb_wait_type); |
939 | lkb->lkb_wait_count--; | |
940 | lkb->lkb_wait_type = 0; | |
941 | } | |
942 | ||
943 | DLM_ASSERT(lkb->lkb_wait_count, dlm_print_lkb(lkb);); | |
944 | ||
b790c3b7 | 945 | lkb->lkb_flags &= ~DLM_IFL_RESEND; |
ef0c2bb0 DT |
946 | lkb->lkb_wait_count--; |
947 | if (!lkb->lkb_wait_count) | |
948 | list_del_init(&lkb->lkb_wait_reply); | |
e7fd4179 | 949 | unhold_lkb(lkb); |
ef0c2bb0 | 950 | return 0; |
e7fd4179 DT |
951 | } |
952 | ||
ef0c2bb0 | 953 | static int remove_from_waiters(struct dlm_lkb *lkb, int mstype) |
e7fd4179 DT |
954 | { |
955 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; | |
956 | int error; | |
957 | ||
90135925 | 958 | mutex_lock(&ls->ls_waiters_mutex); |
43279e53 | 959 | error = _remove_from_waiters(lkb, mstype, NULL); |
90135925 | 960 | mutex_unlock(&ls->ls_waiters_mutex); |
e7fd4179 DT |
961 | return error; |
962 | } | |
963 | ||
ef0c2bb0 DT |
964 | /* Handles situations where we might be processing a "fake" or "stub" reply in |
965 | which we can't try to take waiters_mutex again. */ | |
966 | ||
967 | static int remove_from_waiters_ms(struct dlm_lkb *lkb, struct dlm_message *ms) | |
968 | { | |
969 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; | |
970 | int error; | |
971 | ||
972 | if (ms != &ls->ls_stub_ms) | |
973 | mutex_lock(&ls->ls_waiters_mutex); | |
43279e53 | 974 | error = _remove_from_waiters(lkb, ms->m_type, ms); |
ef0c2bb0 DT |
975 | if (ms != &ls->ls_stub_ms) |
976 | mutex_unlock(&ls->ls_waiters_mutex); | |
977 | return error; | |
978 | } | |
979 | ||
e7fd4179 DT |
980 | static void dir_remove(struct dlm_rsb *r) |
981 | { | |
982 | int to_nodeid; | |
983 | ||
984 | if (dlm_no_directory(r->res_ls)) | |
985 | return; | |
986 | ||
987 | to_nodeid = dlm_dir_nodeid(r); | |
988 | if (to_nodeid != dlm_our_nodeid()) | |
989 | send_remove(r); | |
990 | else | |
991 | dlm_dir_remove_entry(r->res_ls, to_nodeid, | |
992 | r->res_name, r->res_length); | |
993 | } | |
994 | ||
995 | /* FIXME: shouldn't this be able to exit as soon as one non-due rsb is | |
996 | found since they are in order of newest to oldest? */ | |
997 | ||
998 | static int shrink_bucket(struct dlm_ls *ls, int b) | |
999 | { | |
1000 | struct dlm_rsb *r; | |
1001 | int count = 0, found; | |
1002 | ||
1003 | for (;;) { | |
90135925 | 1004 | found = 0; |
c7be761a | 1005 | spin_lock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 DT |
1006 | list_for_each_entry_reverse(r, &ls->ls_rsbtbl[b].toss, |
1007 | res_hashchain) { | |
1008 | if (!time_after_eq(jiffies, r->res_toss_time + | |
68c817a1 | 1009 | dlm_config.ci_toss_secs * HZ)) |
e7fd4179 | 1010 | continue; |
90135925 | 1011 | found = 1; |
e7fd4179 DT |
1012 | break; |
1013 | } | |
1014 | ||
1015 | if (!found) { | |
c7be761a | 1016 | spin_unlock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 DT |
1017 | break; |
1018 | } | |
1019 | ||
1020 | if (kref_put(&r->res_ref, kill_rsb)) { | |
1021 | list_del(&r->res_hashchain); | |
c7be761a | 1022 | spin_unlock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 DT |
1023 | |
1024 | if (is_master(r)) | |
1025 | dir_remove(r); | |
52bda2b5 | 1026 | dlm_free_rsb(r); |
e7fd4179 DT |
1027 | count++; |
1028 | } else { | |
c7be761a | 1029 | spin_unlock(&ls->ls_rsbtbl[b].lock); |
e7fd4179 DT |
1030 | log_error(ls, "tossed rsb in use %s", r->res_name); |
1031 | } | |
1032 | } | |
1033 | ||
1034 | return count; | |
1035 | } | |
1036 | ||
1037 | void dlm_scan_rsbs(struct dlm_ls *ls) | |
1038 | { | |
1039 | int i; | |
1040 | ||
e7fd4179 DT |
1041 | for (i = 0; i < ls->ls_rsbtbl_size; i++) { |
1042 | shrink_bucket(ls, i); | |
85e86edf DT |
1043 | if (dlm_locking_stopped(ls)) |
1044 | break; | |
e7fd4179 DT |
1045 | cond_resched(); |
1046 | } | |
1047 | } | |
1048 | ||
3ae1acf9 DT |
1049 | static void add_timeout(struct dlm_lkb *lkb) |
1050 | { | |
1051 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; | |
1052 | ||
eeda418d | 1053 | if (is_master_copy(lkb)) |
3ae1acf9 | 1054 | return; |
3ae1acf9 DT |
1055 | |
1056 | if (test_bit(LSFL_TIMEWARN, &ls->ls_flags) && | |
1057 | !(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) { | |
1058 | lkb->lkb_flags |= DLM_IFL_WATCH_TIMEWARN; | |
1059 | goto add_it; | |
1060 | } | |
84d8cd69 DT |
1061 | if (lkb->lkb_exflags & DLM_LKF_TIMEOUT) |
1062 | goto add_it; | |
3ae1acf9 DT |
1063 | return; |
1064 | ||
1065 | add_it: | |
1066 | DLM_ASSERT(list_empty(&lkb->lkb_time_list), dlm_print_lkb(lkb);); | |
1067 | mutex_lock(&ls->ls_timeout_mutex); | |
1068 | hold_lkb(lkb); | |
3ae1acf9 DT |
1069 | list_add_tail(&lkb->lkb_time_list, &ls->ls_timeout); |
1070 | mutex_unlock(&ls->ls_timeout_mutex); | |
1071 | } | |
1072 | ||
1073 | static void del_timeout(struct dlm_lkb *lkb) | |
1074 | { | |
1075 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; | |
1076 | ||
1077 | mutex_lock(&ls->ls_timeout_mutex); | |
1078 | if (!list_empty(&lkb->lkb_time_list)) { | |
1079 | list_del_init(&lkb->lkb_time_list); | |
1080 | unhold_lkb(lkb); | |
1081 | } | |
1082 | mutex_unlock(&ls->ls_timeout_mutex); | |
1083 | } | |
1084 | ||
1085 | /* FIXME: is it safe to look at lkb_exflags, lkb_flags, lkb_timestamp, and | |
1086 | lkb_lksb_timeout without lock_rsb? Note: we can't lock timeout_mutex | |
1087 | and then lock rsb because of lock ordering in add_timeout. We may need | |
1088 | to specify some special timeout-related bits in the lkb that are just to | |
1089 | be accessed under the timeout_mutex. */ | |
1090 | ||
1091 | void dlm_scan_timeout(struct dlm_ls *ls) | |
1092 | { | |
1093 | struct dlm_rsb *r; | |
1094 | struct dlm_lkb *lkb; | |
1095 | int do_cancel, do_warn; | |
eeda418d | 1096 | s64 wait_us; |
3ae1acf9 DT |
1097 | |
1098 | for (;;) { | |
1099 | if (dlm_locking_stopped(ls)) | |
1100 | break; | |
1101 | ||
1102 | do_cancel = 0; | |
1103 | do_warn = 0; | |
1104 | mutex_lock(&ls->ls_timeout_mutex); | |
1105 | list_for_each_entry(lkb, &ls->ls_timeout, lkb_time_list) { | |
1106 | ||
eeda418d DT |
1107 | wait_us = ktime_to_us(ktime_sub(ktime_get(), |
1108 | lkb->lkb_timestamp)); | |
1109 | ||
3ae1acf9 | 1110 | if ((lkb->lkb_exflags & DLM_LKF_TIMEOUT) && |
eeda418d | 1111 | wait_us >= (lkb->lkb_timeout_cs * 10000)) |
3ae1acf9 DT |
1112 | do_cancel = 1; |
1113 | ||
1114 | if ((lkb->lkb_flags & DLM_IFL_WATCH_TIMEWARN) && | |
eeda418d | 1115 | wait_us >= dlm_config.ci_timewarn_cs * 10000) |
3ae1acf9 DT |
1116 | do_warn = 1; |
1117 | ||
1118 | if (!do_cancel && !do_warn) | |
1119 | continue; | |
1120 | hold_lkb(lkb); | |
1121 | break; | |
1122 | } | |
1123 | mutex_unlock(&ls->ls_timeout_mutex); | |
1124 | ||
1125 | if (!do_cancel && !do_warn) | |
1126 | break; | |
1127 | ||
1128 | r = lkb->lkb_resource; | |
1129 | hold_rsb(r); | |
1130 | lock_rsb(r); | |
1131 | ||
1132 | if (do_warn) { | |
1133 | /* clear flag so we only warn once */ | |
1134 | lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN; | |
1135 | if (!(lkb->lkb_exflags & DLM_LKF_TIMEOUT)) | |
1136 | del_timeout(lkb); | |
1137 | dlm_timeout_warn(lkb); | |
1138 | } | |
1139 | ||
1140 | if (do_cancel) { | |
b3cab7b9 | 1141 | log_debug(ls, "timeout cancel %x node %d %s", |
639aca41 | 1142 | lkb->lkb_id, lkb->lkb_nodeid, r->res_name); |
3ae1acf9 DT |
1143 | lkb->lkb_flags &= ~DLM_IFL_WATCH_TIMEWARN; |
1144 | lkb->lkb_flags |= DLM_IFL_TIMEOUT_CANCEL; | |
1145 | del_timeout(lkb); | |
1146 | _cancel_lock(r, lkb); | |
1147 | } | |
1148 | ||
1149 | unlock_rsb(r); | |
1150 | unhold_rsb(r); | |
1151 | dlm_put_lkb(lkb); | |
1152 | } | |
1153 | } | |
1154 | ||
1155 | /* This is only called by dlm_recoverd, and we rely on dlm_ls_stop() stopping | |
1156 | dlm_recoverd before checking/setting ls_recover_begin. */ | |
1157 | ||
1158 | void dlm_adjust_timeouts(struct dlm_ls *ls) | |
1159 | { | |
1160 | struct dlm_lkb *lkb; | |
eeda418d | 1161 | u64 adj_us = jiffies_to_usecs(jiffies - ls->ls_recover_begin); |
3ae1acf9 DT |
1162 | |
1163 | ls->ls_recover_begin = 0; | |
1164 | mutex_lock(&ls->ls_timeout_mutex); | |
1165 | list_for_each_entry(lkb, &ls->ls_timeout, lkb_time_list) | |
eeda418d | 1166 | lkb->lkb_timestamp = ktime_add_us(lkb->lkb_timestamp, adj_us); |
3ae1acf9 DT |
1167 | mutex_unlock(&ls->ls_timeout_mutex); |
1168 | } | |
1169 | ||
e7fd4179 DT |
1170 | /* lkb is master or local copy */ |
1171 | ||
1172 | static void set_lvb_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1173 | { | |
1174 | int b, len = r->res_ls->ls_lvblen; | |
1175 | ||
1176 | /* b=1 lvb returned to caller | |
1177 | b=0 lvb written to rsb or invalidated | |
1178 | b=-1 do nothing */ | |
1179 | ||
1180 | b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1]; | |
1181 | ||
1182 | if (b == 1) { | |
1183 | if (!lkb->lkb_lvbptr) | |
1184 | return; | |
1185 | ||
1186 | if (!(lkb->lkb_exflags & DLM_LKF_VALBLK)) | |
1187 | return; | |
1188 | ||
1189 | if (!r->res_lvbptr) | |
1190 | return; | |
1191 | ||
1192 | memcpy(lkb->lkb_lvbptr, r->res_lvbptr, len); | |
1193 | lkb->lkb_lvbseq = r->res_lvbseq; | |
1194 | ||
1195 | } else if (b == 0) { | |
1196 | if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) { | |
1197 | rsb_set_flag(r, RSB_VALNOTVALID); | |
1198 | return; | |
1199 | } | |
1200 | ||
1201 | if (!lkb->lkb_lvbptr) | |
1202 | return; | |
1203 | ||
1204 | if (!(lkb->lkb_exflags & DLM_LKF_VALBLK)) | |
1205 | return; | |
1206 | ||
1207 | if (!r->res_lvbptr) | |
52bda2b5 | 1208 | r->res_lvbptr = dlm_allocate_lvb(r->res_ls); |
e7fd4179 DT |
1209 | |
1210 | if (!r->res_lvbptr) | |
1211 | return; | |
1212 | ||
1213 | memcpy(r->res_lvbptr, lkb->lkb_lvbptr, len); | |
1214 | r->res_lvbseq++; | |
1215 | lkb->lkb_lvbseq = r->res_lvbseq; | |
1216 | rsb_clear_flag(r, RSB_VALNOTVALID); | |
1217 | } | |
1218 | ||
1219 | if (rsb_flag(r, RSB_VALNOTVALID)) | |
1220 | lkb->lkb_sbflags |= DLM_SBF_VALNOTVALID; | |
1221 | } | |
1222 | ||
1223 | static void set_lvb_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1224 | { | |
1225 | if (lkb->lkb_grmode < DLM_LOCK_PW) | |
1226 | return; | |
1227 | ||
1228 | if (lkb->lkb_exflags & DLM_LKF_IVVALBLK) { | |
1229 | rsb_set_flag(r, RSB_VALNOTVALID); | |
1230 | return; | |
1231 | } | |
1232 | ||
1233 | if (!lkb->lkb_lvbptr) | |
1234 | return; | |
1235 | ||
1236 | if (!(lkb->lkb_exflags & DLM_LKF_VALBLK)) | |
1237 | return; | |
1238 | ||
1239 | if (!r->res_lvbptr) | |
52bda2b5 | 1240 | r->res_lvbptr = dlm_allocate_lvb(r->res_ls); |
e7fd4179 DT |
1241 | |
1242 | if (!r->res_lvbptr) | |
1243 | return; | |
1244 | ||
1245 | memcpy(r->res_lvbptr, lkb->lkb_lvbptr, r->res_ls->ls_lvblen); | |
1246 | r->res_lvbseq++; | |
1247 | rsb_clear_flag(r, RSB_VALNOTVALID); | |
1248 | } | |
1249 | ||
1250 | /* lkb is process copy (pc) */ | |
1251 | ||
1252 | static void set_lvb_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb, | |
1253 | struct dlm_message *ms) | |
1254 | { | |
1255 | int b; | |
1256 | ||
1257 | if (!lkb->lkb_lvbptr) | |
1258 | return; | |
1259 | ||
1260 | if (!(lkb->lkb_exflags & DLM_LKF_VALBLK)) | |
1261 | return; | |
1262 | ||
597d0cae | 1263 | b = dlm_lvb_operations[lkb->lkb_grmode + 1][lkb->lkb_rqmode + 1]; |
e7fd4179 DT |
1264 | if (b == 1) { |
1265 | int len = receive_extralen(ms); | |
a9cc9159 AV |
1266 | if (len > DLM_RESNAME_MAXLEN) |
1267 | len = DLM_RESNAME_MAXLEN; | |
e7fd4179 DT |
1268 | memcpy(lkb->lkb_lvbptr, ms->m_extra, len); |
1269 | lkb->lkb_lvbseq = ms->m_lvbseq; | |
1270 | } | |
1271 | } | |
1272 | ||
1273 | /* Manipulate lkb's on rsb's convert/granted/waiting queues | |
1274 | remove_lock -- used for unlock, removes lkb from granted | |
1275 | revert_lock -- used for cancel, moves lkb from convert to granted | |
1276 | grant_lock -- used for request and convert, adds lkb to granted or | |
1277 | moves lkb from convert or waiting to granted | |
1278 | ||
1279 | Each of these is used for master or local copy lkb's. There is | |
1280 | also a _pc() variation used to make the corresponding change on | |
1281 | a process copy (pc) lkb. */ | |
1282 | ||
1283 | static void _remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1284 | { | |
1285 | del_lkb(r, lkb); | |
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 */ | |
1289 | unhold_lkb(lkb); | |
1290 | } | |
1291 | ||
1292 | static void remove_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1293 | { | |
1294 | set_lvb_unlock(r, lkb); | |
1295 | _remove_lock(r, lkb); | |
1296 | } | |
1297 | ||
1298 | static void remove_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1299 | { | |
1300 | _remove_lock(r, lkb); | |
1301 | } | |
1302 | ||
ef0c2bb0 DT |
1303 | /* returns: 0 did nothing |
1304 | 1 moved lock to granted | |
1305 | -1 removed lock */ | |
1306 | ||
1307 | static int revert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
e7fd4179 | 1308 | { |
ef0c2bb0 DT |
1309 | int rv = 0; |
1310 | ||
e7fd4179 DT |
1311 | lkb->lkb_rqmode = DLM_LOCK_IV; |
1312 | ||
1313 | switch (lkb->lkb_status) { | |
597d0cae DT |
1314 | case DLM_LKSTS_GRANTED: |
1315 | break; | |
e7fd4179 DT |
1316 | case DLM_LKSTS_CONVERT: |
1317 | move_lkb(r, lkb, DLM_LKSTS_GRANTED); | |
ef0c2bb0 | 1318 | rv = 1; |
e7fd4179 DT |
1319 | break; |
1320 | case DLM_LKSTS_WAITING: | |
1321 | del_lkb(r, lkb); | |
1322 | lkb->lkb_grmode = DLM_LOCK_IV; | |
1323 | /* this unhold undoes the original ref from create_lkb() | |
1324 | so this leads to the lkb being freed */ | |
1325 | unhold_lkb(lkb); | |
ef0c2bb0 | 1326 | rv = -1; |
e7fd4179 DT |
1327 | break; |
1328 | default: | |
1329 | log_print("invalid status for revert %d", lkb->lkb_status); | |
1330 | } | |
ef0c2bb0 | 1331 | return rv; |
e7fd4179 DT |
1332 | } |
1333 | ||
ef0c2bb0 | 1334 | static int revert_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb) |
e7fd4179 | 1335 | { |
ef0c2bb0 | 1336 | return revert_lock(r, lkb); |
e7fd4179 DT |
1337 | } |
1338 | ||
1339 | static void _grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1340 | { | |
1341 | if (lkb->lkb_grmode != lkb->lkb_rqmode) { | |
1342 | lkb->lkb_grmode = lkb->lkb_rqmode; | |
1343 | if (lkb->lkb_status) | |
1344 | move_lkb(r, lkb, DLM_LKSTS_GRANTED); | |
1345 | else | |
1346 | add_lkb(r, lkb, DLM_LKSTS_GRANTED); | |
1347 | } | |
1348 | ||
1349 | lkb->lkb_rqmode = DLM_LOCK_IV; | |
e7fd4179 DT |
1350 | } |
1351 | ||
1352 | static void grant_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1353 | { | |
1354 | set_lvb_lock(r, lkb); | |
1355 | _grant_lock(r, lkb); | |
1356 | lkb->lkb_highbast = 0; | |
1357 | } | |
1358 | ||
1359 | static void grant_lock_pc(struct dlm_rsb *r, struct dlm_lkb *lkb, | |
1360 | struct dlm_message *ms) | |
1361 | { | |
1362 | set_lvb_lock_pc(r, lkb, ms); | |
1363 | _grant_lock(r, lkb); | |
1364 | } | |
1365 | ||
1366 | /* called by grant_pending_locks() which means an async grant message must | |
1367 | be sent to the requesting node in addition to granting the lock if the | |
1368 | lkb belongs to a remote node. */ | |
1369 | ||
1370 | static void grant_lock_pending(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1371 | { | |
1372 | grant_lock(r, lkb); | |
1373 | if (is_master_copy(lkb)) | |
1374 | send_grant(r, lkb); | |
1375 | else | |
1376 | queue_cast(r, lkb, 0); | |
1377 | } | |
1378 | ||
7d3c1feb DT |
1379 | /* The special CONVDEADLK, ALTPR and ALTCW flags allow the master to |
1380 | change the granted/requested modes. We're munging things accordingly in | |
1381 | the process copy. | |
1382 | CONVDEADLK: our grmode may have been forced down to NL to resolve a | |
1383 | conversion deadlock | |
1384 | ALTPR/ALTCW: our rqmode may have been changed to PR or CW to become | |
1385 | compatible with other granted locks */ | |
1386 | ||
1387 | static void munge_demoted(struct dlm_lkb *lkb, struct dlm_message *ms) | |
1388 | { | |
1389 | if (ms->m_type != DLM_MSG_CONVERT_REPLY) { | |
1390 | log_print("munge_demoted %x invalid reply type %d", | |
1391 | lkb->lkb_id, ms->m_type); | |
1392 | return; | |
1393 | } | |
1394 | ||
1395 | if (lkb->lkb_rqmode == DLM_LOCK_IV || lkb->lkb_grmode == DLM_LOCK_IV) { | |
1396 | log_print("munge_demoted %x invalid modes gr %d rq %d", | |
1397 | lkb->lkb_id, lkb->lkb_grmode, lkb->lkb_rqmode); | |
1398 | return; | |
1399 | } | |
1400 | ||
1401 | lkb->lkb_grmode = DLM_LOCK_NL; | |
1402 | } | |
1403 | ||
1404 | static void munge_altmode(struct dlm_lkb *lkb, struct dlm_message *ms) | |
1405 | { | |
1406 | if (ms->m_type != DLM_MSG_REQUEST_REPLY && | |
1407 | ms->m_type != DLM_MSG_GRANT) { | |
1408 | log_print("munge_altmode %x invalid reply type %d", | |
1409 | lkb->lkb_id, ms->m_type); | |
1410 | return; | |
1411 | } | |
1412 | ||
1413 | if (lkb->lkb_exflags & DLM_LKF_ALTPR) | |
1414 | lkb->lkb_rqmode = DLM_LOCK_PR; | |
1415 | else if (lkb->lkb_exflags & DLM_LKF_ALTCW) | |
1416 | lkb->lkb_rqmode = DLM_LOCK_CW; | |
1417 | else { | |
1418 | log_print("munge_altmode invalid exflags %x", lkb->lkb_exflags); | |
1419 | dlm_print_lkb(lkb); | |
1420 | } | |
1421 | } | |
1422 | ||
e7fd4179 DT |
1423 | static inline int first_in_list(struct dlm_lkb *lkb, struct list_head *head) |
1424 | { | |
1425 | struct dlm_lkb *first = list_entry(head->next, struct dlm_lkb, | |
1426 | lkb_statequeue); | |
1427 | if (lkb->lkb_id == first->lkb_id) | |
90135925 | 1428 | return 1; |
e7fd4179 | 1429 | |
90135925 | 1430 | return 0; |
e7fd4179 DT |
1431 | } |
1432 | ||
e7fd4179 DT |
1433 | /* Check if the given lkb conflicts with another lkb on the queue. */ |
1434 | ||
1435 | static int queue_conflict(struct list_head *head, struct dlm_lkb *lkb) | |
1436 | { | |
1437 | struct dlm_lkb *this; | |
1438 | ||
1439 | list_for_each_entry(this, head, lkb_statequeue) { | |
1440 | if (this == lkb) | |
1441 | continue; | |
3bcd3687 | 1442 | if (!modes_compat(this, lkb)) |
90135925 | 1443 | return 1; |
e7fd4179 | 1444 | } |
90135925 | 1445 | return 0; |
e7fd4179 DT |
1446 | } |
1447 | ||
1448 | /* | |
1449 | * "A conversion deadlock arises with a pair of lock requests in the converting | |
1450 | * queue for one resource. The granted mode of each lock blocks the requested | |
1451 | * mode of the other lock." | |
1452 | * | |
c85d65e9 DT |
1453 | * Part 2: if the granted mode of lkb is preventing an earlier lkb in the |
1454 | * convert queue from being granted, then deadlk/demote lkb. | |
e7fd4179 DT |
1455 | * |
1456 | * Example: | |
1457 | * Granted Queue: empty | |
1458 | * Convert Queue: NL->EX (first lock) | |
1459 | * PR->EX (second lock) | |
1460 | * | |
1461 | * The first lock can't be granted because of the granted mode of the second | |
1462 | * lock and the second lock can't be granted because it's not first in the | |
c85d65e9 DT |
1463 | * list. We either cancel lkb's conversion (PR->EX) and return EDEADLK, or we |
1464 | * demote the granted mode of lkb (from PR to NL) if it has the CONVDEADLK | |
1465 | * flag set and return DEMOTED in the lksb flags. | |
e7fd4179 | 1466 | * |
c85d65e9 DT |
1467 | * Originally, this function detected conv-deadlk in a more limited scope: |
1468 | * - if !modes_compat(lkb1, lkb2) && !modes_compat(lkb2, lkb1), or | |
1469 | * - if lkb1 was the first entry in the queue (not just earlier), and was | |
1470 | * blocked by the granted mode of lkb2, and there was nothing on the | |
1471 | * granted queue preventing lkb1 from being granted immediately, i.e. | |
1472 | * lkb2 was the only thing preventing lkb1 from being granted. | |
1473 | * | |
1474 | * That second condition meant we'd only say there was conv-deadlk if | |
1475 | * resolving it (by demotion) would lead to the first lock on the convert | |
1476 | * queue being granted right away. It allowed conversion deadlocks to exist | |
1477 | * between locks on the convert queue while they couldn't be granted anyway. | |
1478 | * | |
1479 | * Now, we detect and take action on conversion deadlocks immediately when | |
1480 | * they're created, even if they may not be immediately consequential. If | |
1481 | * lkb1 exists anywhere in the convert queue and lkb2 comes in with a granted | |
1482 | * mode that would prevent lkb1's conversion from being granted, we do a | |
1483 | * deadlk/demote on lkb2 right away and don't let it onto the convert queue. | |
1484 | * I think this means that the lkb_is_ahead condition below should always | |
1485 | * be zero, i.e. there will never be conv-deadlk between two locks that are | |
1486 | * both already on the convert queue. | |
e7fd4179 DT |
1487 | */ |
1488 | ||
c85d65e9 | 1489 | static int conversion_deadlock_detect(struct dlm_rsb *r, struct dlm_lkb *lkb2) |
e7fd4179 | 1490 | { |
c85d65e9 DT |
1491 | struct dlm_lkb *lkb1; |
1492 | int lkb_is_ahead = 0; | |
e7fd4179 | 1493 | |
c85d65e9 DT |
1494 | list_for_each_entry(lkb1, &r->res_convertqueue, lkb_statequeue) { |
1495 | if (lkb1 == lkb2) { | |
1496 | lkb_is_ahead = 1; | |
e7fd4179 DT |
1497 | continue; |
1498 | } | |
1499 | ||
c85d65e9 DT |
1500 | if (!lkb_is_ahead) { |
1501 | if (!modes_compat(lkb2, lkb1)) | |
1502 | return 1; | |
1503 | } else { | |
1504 | if (!modes_compat(lkb2, lkb1) && | |
1505 | !modes_compat(lkb1, lkb2)) | |
1506 | return 1; | |
1507 | } | |
e7fd4179 | 1508 | } |
90135925 | 1509 | return 0; |
e7fd4179 DT |
1510 | } |
1511 | ||
1512 | /* | |
1513 | * Return 1 if the lock can be granted, 0 otherwise. | |
1514 | * Also detect and resolve conversion deadlocks. | |
1515 | * | |
1516 | * lkb is the lock to be granted | |
1517 | * | |
1518 | * now is 1 if the function is being called in the context of the | |
1519 | * immediate request, it is 0 if called later, after the lock has been | |
1520 | * queued. | |
1521 | * | |
1522 | * References are from chapter 6 of "VAXcluster Principles" by Roy Davis | |
1523 | */ | |
1524 | ||
1525 | static int _can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now) | |
1526 | { | |
1527 | int8_t conv = (lkb->lkb_grmode != DLM_LOCK_IV); | |
1528 | ||
1529 | /* | |
1530 | * 6-10: Version 5.4 introduced an option to address the phenomenon of | |
1531 | * a new request for a NL mode lock being blocked. | |
1532 | * | |
1533 | * 6-11: If the optional EXPEDITE flag is used with the new NL mode | |
1534 | * request, then it would be granted. In essence, the use of this flag | |
1535 | * tells the Lock Manager to expedite theis request by not considering | |
1536 | * what may be in the CONVERTING or WAITING queues... As of this | |
1537 | * writing, the EXPEDITE flag can be used only with new requests for NL | |
1538 | * mode locks. This flag is not valid for conversion requests. | |
1539 | * | |
1540 | * A shortcut. Earlier checks return an error if EXPEDITE is used in a | |
1541 | * conversion or used with a non-NL requested mode. We also know an | |
1542 | * EXPEDITE request is always granted immediately, so now must always | |
1543 | * be 1. The full condition to grant an expedite request: (now && | |
1544 | * !conv && lkb->rqmode == DLM_LOCK_NL && (flags & EXPEDITE)) can | |
1545 | * therefore be shortened to just checking the flag. | |
1546 | */ | |
1547 | ||
1548 | if (lkb->lkb_exflags & DLM_LKF_EXPEDITE) | |
90135925 | 1549 | return 1; |
e7fd4179 DT |
1550 | |
1551 | /* | |
1552 | * A shortcut. Without this, !queue_conflict(grantqueue, lkb) would be | |
1553 | * added to the remaining conditions. | |
1554 | */ | |
1555 | ||
1556 | if (queue_conflict(&r->res_grantqueue, lkb)) | |
1557 | goto out; | |
1558 | ||
1559 | /* | |
1560 | * 6-3: By default, a conversion request is immediately granted if the | |
1561 | * requested mode is compatible with the modes of all other granted | |
1562 | * locks | |
1563 | */ | |
1564 | ||
1565 | if (queue_conflict(&r->res_convertqueue, lkb)) | |
1566 | goto out; | |
1567 | ||
1568 | /* | |
1569 | * 6-5: But the default algorithm for deciding whether to grant or | |
1570 | * queue conversion requests does not by itself guarantee that such | |
1571 | * requests are serviced on a "first come first serve" basis. This, in | |
1572 | * turn, can lead to a phenomenon known as "indefinate postponement". | |
1573 | * | |
1574 | * 6-7: This issue is dealt with by using the optional QUECVT flag with | |
1575 | * the system service employed to request a lock conversion. This flag | |
1576 | * forces certain conversion requests to be queued, even if they are | |
1577 | * compatible with the granted modes of other locks on the same | |
1578 | * resource. Thus, the use of this flag results in conversion requests | |
1579 | * being ordered on a "first come first servce" basis. | |
1580 | * | |
1581 | * DCT: This condition is all about new conversions being able to occur | |
1582 | * "in place" while the lock remains on the granted queue (assuming | |
1583 | * nothing else conflicts.) IOW if QUECVT isn't set, a conversion | |
1584 | * doesn't _have_ to go onto the convert queue where it's processed in | |
1585 | * order. The "now" variable is necessary to distinguish converts | |
1586 | * being received and processed for the first time now, because once a | |
1587 | * convert is moved to the conversion queue the condition below applies | |
1588 | * requiring fifo granting. | |
1589 | */ | |
1590 | ||
1591 | if (now && conv && !(lkb->lkb_exflags & DLM_LKF_QUECVT)) | |
90135925 | 1592 | return 1; |
e7fd4179 DT |
1593 | |
1594 | /* | |
3bcd3687 DT |
1595 | * The NOORDER flag is set to avoid the standard vms rules on grant |
1596 | * order. | |
e7fd4179 DT |
1597 | */ |
1598 | ||
1599 | if (lkb->lkb_exflags & DLM_LKF_NOORDER) | |
90135925 | 1600 | return 1; |
e7fd4179 DT |
1601 | |
1602 | /* | |
1603 | * 6-3: Once in that queue [CONVERTING], a conversion request cannot be | |
1604 | * granted until all other conversion requests ahead of it are granted | |
1605 | * and/or canceled. | |
1606 | */ | |
1607 | ||
1608 | if (!now && conv && first_in_list(lkb, &r->res_convertqueue)) | |
90135925 | 1609 | return 1; |
e7fd4179 DT |
1610 | |
1611 | /* | |
1612 | * 6-4: By default, a new request is immediately granted only if all | |
1613 | * three of the following conditions are satisfied when the request is | |
1614 | * issued: | |
1615 | * - The queue of ungranted conversion requests for the resource is | |
1616 | * empty. | |
1617 | * - The queue of ungranted new requests for the resource is empty. | |
1618 | * - The mode of the new request is compatible with the most | |
1619 | * restrictive mode of all granted locks on the resource. | |
1620 | */ | |
1621 | ||
1622 | if (now && !conv && list_empty(&r->res_convertqueue) && | |
1623 | list_empty(&r->res_waitqueue)) | |
90135925 | 1624 | return 1; |
e7fd4179 DT |
1625 | |
1626 | /* | |
1627 | * 6-4: Once a lock request is in the queue of ungranted new requests, | |
1628 | * it cannot be granted until the queue of ungranted conversion | |
1629 | * requests is empty, all ungranted new requests ahead of it are | |
1630 | * granted and/or canceled, and it is compatible with the granted mode | |
1631 | * of the most restrictive lock granted on the resource. | |
1632 | */ | |
1633 | ||
1634 | if (!now && !conv && list_empty(&r->res_convertqueue) && | |
1635 | first_in_list(lkb, &r->res_waitqueue)) | |
90135925 | 1636 | return 1; |
e7fd4179 | 1637 | out: |
90135925 | 1638 | return 0; |
e7fd4179 DT |
1639 | } |
1640 | ||
c85d65e9 DT |
1641 | static int can_be_granted(struct dlm_rsb *r, struct dlm_lkb *lkb, int now, |
1642 | int *err) | |
e7fd4179 | 1643 | { |
e7fd4179 DT |
1644 | int rv; |
1645 | int8_t alt = 0, rqmode = lkb->lkb_rqmode; | |
c85d65e9 DT |
1646 | int8_t is_convert = (lkb->lkb_grmode != DLM_LOCK_IV); |
1647 | ||
1648 | if (err) | |
1649 | *err = 0; | |
e7fd4179 DT |
1650 | |
1651 | rv = _can_be_granted(r, lkb, now); | |
1652 | if (rv) | |
1653 | goto out; | |
1654 | ||
c85d65e9 DT |
1655 | /* |
1656 | * The CONVDEADLK flag is non-standard and tells the dlm to resolve | |
1657 | * conversion deadlocks by demoting grmode to NL, otherwise the dlm | |
1658 | * cancels one of the locks. | |
1659 | */ | |
1660 | ||
1661 | if (is_convert && can_be_queued(lkb) && | |
1662 | conversion_deadlock_detect(r, lkb)) { | |
1663 | if (lkb->lkb_exflags & DLM_LKF_CONVDEADLK) { | |
1664 | lkb->lkb_grmode = DLM_LOCK_NL; | |
1665 | lkb->lkb_sbflags |= DLM_SBF_DEMOTED; | |
1666 | } else if (!(lkb->lkb_exflags & DLM_LKF_NODLCKWT)) { | |
1667 | if (err) | |
1668 | *err = -EDEADLK; | |
1669 | else { | |
1670 | log_print("can_be_granted deadlock %x now %d", | |
1671 | lkb->lkb_id, now); | |
1672 | dlm_dump_rsb(r); | |
1673 | } | |
1674 | } | |
e7fd4179 | 1675 | goto out; |
c85d65e9 | 1676 | } |
e7fd4179 | 1677 | |
c85d65e9 DT |
1678 | /* |
1679 | * The ALTPR and ALTCW flags are non-standard and tell the dlm to try | |
1680 | * to grant a request in a mode other than the normal rqmode. It's a | |
1681 | * simple way to provide a big optimization to applications that can | |
1682 | * use them. | |
1683 | */ | |
1684 | ||
1685 | if (rqmode != DLM_LOCK_PR && (lkb->lkb_exflags & DLM_LKF_ALTPR)) | |
e7fd4179 | 1686 | alt = DLM_LOCK_PR; |
c85d65e9 | 1687 | else if (rqmode != DLM_LOCK_CW && (lkb->lkb_exflags & DLM_LKF_ALTCW)) |
e7fd4179 DT |
1688 | alt = DLM_LOCK_CW; |
1689 | ||
1690 | if (alt) { | |
1691 | lkb->lkb_rqmode = alt; | |
1692 | rv = _can_be_granted(r, lkb, now); | |
1693 | if (rv) | |
1694 | lkb->lkb_sbflags |= DLM_SBF_ALTMODE; | |
1695 | else | |
1696 | lkb->lkb_rqmode = rqmode; | |
1697 | } | |
1698 | out: | |
1699 | return rv; | |
1700 | } | |
1701 | ||
c85d65e9 DT |
1702 | /* FIXME: I don't think that can_be_granted() can/will demote or find deadlock |
1703 | for locks pending on the convert list. Once verified (watch for these | |
1704 | log_prints), we should be able to just call _can_be_granted() and not | |
1705 | bother with the demote/deadlk cases here (and there's no easy way to deal | |
1706 | with a deadlk here, we'd have to generate something like grant_lock with | |
1707 | the deadlk error.) */ | |
1708 | ||
36509258 DT |
1709 | /* Returns the highest requested mode of all blocked conversions; sets |
1710 | cw if there's a blocked conversion to DLM_LOCK_CW. */ | |
c85d65e9 | 1711 | |
36509258 | 1712 | static int grant_pending_convert(struct dlm_rsb *r, int high, int *cw) |
e7fd4179 DT |
1713 | { |
1714 | struct dlm_lkb *lkb, *s; | |
1715 | int hi, demoted, quit, grant_restart, demote_restart; | |
c85d65e9 | 1716 | int deadlk; |
e7fd4179 DT |
1717 | |
1718 | quit = 0; | |
1719 | restart: | |
1720 | grant_restart = 0; | |
1721 | demote_restart = 0; | |
1722 | hi = DLM_LOCK_IV; | |
1723 | ||
1724 | list_for_each_entry_safe(lkb, s, &r->res_convertqueue, lkb_statequeue) { | |
1725 | demoted = is_demoted(lkb); | |
c85d65e9 DT |
1726 | deadlk = 0; |
1727 | ||
1728 | if (can_be_granted(r, lkb, 0, &deadlk)) { | |
e7fd4179 DT |
1729 | grant_lock_pending(r, lkb); |
1730 | grant_restart = 1; | |
c85d65e9 | 1731 | continue; |
e7fd4179 | 1732 | } |
c85d65e9 DT |
1733 | |
1734 | if (!demoted && is_demoted(lkb)) { | |
1735 | log_print("WARN: pending demoted %x node %d %s", | |
1736 | lkb->lkb_id, lkb->lkb_nodeid, r->res_name); | |
1737 | demote_restart = 1; | |
1738 | continue; | |
1739 | } | |
1740 | ||
1741 | if (deadlk) { | |
1742 | log_print("WARN: pending deadlock %x node %d %s", | |
1743 | lkb->lkb_id, lkb->lkb_nodeid, r->res_name); | |
1744 | dlm_dump_rsb(r); | |
1745 | continue; | |
1746 | } | |
1747 | ||
1748 | hi = max_t(int, lkb->lkb_rqmode, hi); | |
36509258 DT |
1749 | |
1750 | if (cw && lkb->lkb_rqmode == DLM_LOCK_CW) | |
1751 | *cw = 1; | |
e7fd4179 DT |
1752 | } |
1753 | ||
1754 | if (grant_restart) | |
1755 | goto restart; | |
1756 | if (demote_restart && !quit) { | |
1757 | quit = 1; | |
1758 | goto restart; | |
1759 | } | |
1760 | ||
1761 | return max_t(int, high, hi); | |
1762 | } | |
1763 | ||
36509258 | 1764 | static int grant_pending_wait(struct dlm_rsb *r, int high, int *cw) |
e7fd4179 DT |
1765 | { |
1766 | struct dlm_lkb *lkb, *s; | |
1767 | ||
1768 | list_for_each_entry_safe(lkb, s, &r->res_waitqueue, lkb_statequeue) { | |
c85d65e9 | 1769 | if (can_be_granted(r, lkb, 0, NULL)) |
e7fd4179 | 1770 | grant_lock_pending(r, lkb); |
36509258 | 1771 | else { |
e7fd4179 | 1772 | high = max_t(int, lkb->lkb_rqmode, high); |
36509258 DT |
1773 | if (lkb->lkb_rqmode == DLM_LOCK_CW) |
1774 | *cw = 1; | |
1775 | } | |
e7fd4179 DT |
1776 | } |
1777 | ||
1778 | return high; | |
1779 | } | |
1780 | ||
36509258 DT |
1781 | /* cw of 1 means there's a lock with a rqmode of DLM_LOCK_CW that's blocked |
1782 | on either the convert or waiting queue. | |
1783 | high is the largest rqmode of all locks blocked on the convert or | |
1784 | waiting queue. */ | |
1785 | ||
1786 | static int lock_requires_bast(struct dlm_lkb *gr, int high, int cw) | |
1787 | { | |
1788 | if (gr->lkb_grmode == DLM_LOCK_PR && cw) { | |
1789 | if (gr->lkb_highbast < DLM_LOCK_EX) | |
1790 | return 1; | |
1791 | return 0; | |
1792 | } | |
1793 | ||
1794 | if (gr->lkb_highbast < high && | |
1795 | !__dlm_compat_matrix[gr->lkb_grmode+1][high+1]) | |
1796 | return 1; | |
1797 | return 0; | |
1798 | } | |
1799 | ||
e7fd4179 DT |
1800 | static void grant_pending_locks(struct dlm_rsb *r) |
1801 | { | |
1802 | struct dlm_lkb *lkb, *s; | |
1803 | int high = DLM_LOCK_IV; | |
36509258 | 1804 | int cw = 0; |
e7fd4179 | 1805 | |
a345da3e | 1806 | DLM_ASSERT(is_master(r), dlm_dump_rsb(r);); |
e7fd4179 | 1807 | |
36509258 DT |
1808 | high = grant_pending_convert(r, high, &cw); |
1809 | high = grant_pending_wait(r, high, &cw); | |
e7fd4179 DT |
1810 | |
1811 | if (high == DLM_LOCK_IV) | |
1812 | return; | |
1813 | ||
1814 | /* | |
1815 | * If there are locks left on the wait/convert queue then send blocking | |
1816 | * ASTs to granted locks based on the largest requested mode (high) | |
36509258 | 1817 | * found above. |
e7fd4179 DT |
1818 | */ |
1819 | ||
1820 | list_for_each_entry_safe(lkb, s, &r->res_grantqueue, lkb_statequeue) { | |
e5dae548 | 1821 | if (lkb->lkb_bastfn && lock_requires_bast(lkb, high, cw)) { |
329fc4c3 DT |
1822 | if (cw && high == DLM_LOCK_PR && |
1823 | lkb->lkb_grmode == DLM_LOCK_PR) | |
36509258 DT |
1824 | queue_bast(r, lkb, DLM_LOCK_CW); |
1825 | else | |
1826 | queue_bast(r, lkb, high); | |
e7fd4179 DT |
1827 | lkb->lkb_highbast = high; |
1828 | } | |
1829 | } | |
1830 | } | |
1831 | ||
36509258 DT |
1832 | static int modes_require_bast(struct dlm_lkb *gr, struct dlm_lkb *rq) |
1833 | { | |
1834 | if ((gr->lkb_grmode == DLM_LOCK_PR && rq->lkb_rqmode == DLM_LOCK_CW) || | |
1835 | (gr->lkb_grmode == DLM_LOCK_CW && rq->lkb_rqmode == DLM_LOCK_PR)) { | |
1836 | if (gr->lkb_highbast < DLM_LOCK_EX) | |
1837 | return 1; | |
1838 | return 0; | |
1839 | } | |
1840 | ||
1841 | if (gr->lkb_highbast < rq->lkb_rqmode && !modes_compat(gr, rq)) | |
1842 | return 1; | |
1843 | return 0; | |
1844 | } | |
1845 | ||
e7fd4179 DT |
1846 | static void send_bast_queue(struct dlm_rsb *r, struct list_head *head, |
1847 | struct dlm_lkb *lkb) | |
1848 | { | |
1849 | struct dlm_lkb *gr; | |
1850 | ||
1851 | list_for_each_entry(gr, head, lkb_statequeue) { | |
e5dae548 | 1852 | if (gr->lkb_bastfn && modes_require_bast(gr, lkb)) { |
e7fd4179 DT |
1853 | queue_bast(r, gr, lkb->lkb_rqmode); |
1854 | gr->lkb_highbast = lkb->lkb_rqmode; | |
1855 | } | |
1856 | } | |
1857 | } | |
1858 | ||
1859 | static void send_blocking_asts(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1860 | { | |
1861 | send_bast_queue(r, &r->res_grantqueue, lkb); | |
1862 | } | |
1863 | ||
1864 | static void send_blocking_asts_all(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1865 | { | |
1866 | send_bast_queue(r, &r->res_grantqueue, lkb); | |
1867 | send_bast_queue(r, &r->res_convertqueue, lkb); | |
1868 | } | |
1869 | ||
1870 | /* set_master(r, lkb) -- set the master nodeid of a resource | |
1871 | ||
1872 | The purpose of this function is to set the nodeid field in the given | |
1873 | lkb using the nodeid field in the given rsb. If the rsb's nodeid is | |
1874 | known, it can just be copied to the lkb and the function will return | |
1875 | 0. If the rsb's nodeid is _not_ known, it needs to be looked up | |
1876 | before it can be copied to the lkb. | |
1877 | ||
1878 | When the rsb nodeid is being looked up remotely, the initial lkb | |
1879 | causing the lookup is kept on the ls_waiters list waiting for the | |
1880 | lookup reply. Other lkb's waiting for the same rsb lookup are kept | |
1881 | on the rsb's res_lookup list until the master is verified. | |
1882 | ||
1883 | Return values: | |
1884 | 0: nodeid is set in rsb/lkb and the caller should go ahead and use it | |
1885 | 1: the rsb master is not available and the lkb has been placed on | |
1886 | a wait queue | |
1887 | */ | |
1888 | ||
1889 | static int set_master(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
1890 | { | |
1891 | struct dlm_ls *ls = r->res_ls; | |
755b5eb8 | 1892 | int i, error, dir_nodeid, ret_nodeid, our_nodeid = dlm_our_nodeid(); |
e7fd4179 DT |
1893 | |
1894 | if (rsb_flag(r, RSB_MASTER_UNCERTAIN)) { | |
1895 | rsb_clear_flag(r, RSB_MASTER_UNCERTAIN); | |
1896 | r->res_first_lkid = lkb->lkb_id; | |
1897 | lkb->lkb_nodeid = r->res_nodeid; | |
1898 | return 0; | |
1899 | } | |
1900 | ||
1901 | if (r->res_first_lkid && r->res_first_lkid != lkb->lkb_id) { | |
1902 | list_add_tail(&lkb->lkb_rsb_lookup, &r->res_lookup); | |
1903 | return 1; | |
1904 | } | |
1905 | ||
1906 | if (r->res_nodeid == 0) { | |
1907 | lkb->lkb_nodeid = 0; | |
1908 | return 0; | |
1909 | } | |
1910 | ||
1911 | if (r->res_nodeid > 0) { | |
1912 | lkb->lkb_nodeid = r->res_nodeid; | |
1913 | return 0; | |
1914 | } | |
1915 | ||
a345da3e | 1916 | DLM_ASSERT(r->res_nodeid == -1, dlm_dump_rsb(r);); |
e7fd4179 DT |
1917 | |
1918 | dir_nodeid = dlm_dir_nodeid(r); | |
1919 | ||
1920 | if (dir_nodeid != our_nodeid) { | |
1921 | r->res_first_lkid = lkb->lkb_id; | |
1922 | send_lookup(r, lkb); | |
1923 | return 1; | |
1924 | } | |
1925 | ||
755b5eb8 | 1926 | for (i = 0; i < 2; i++) { |
e7fd4179 DT |
1927 | /* It's possible for dlm_scand to remove an old rsb for |
1928 | this same resource from the toss list, us to create | |
1929 | a new one, look up the master locally, and find it | |
1930 | already exists just before dlm_scand does the | |
1931 | dir_remove() on the previous rsb. */ | |
1932 | ||
1933 | error = dlm_dir_lookup(ls, our_nodeid, r->res_name, | |
1934 | r->res_length, &ret_nodeid); | |
1935 | if (!error) | |
1936 | break; | |
1937 | log_debug(ls, "dir_lookup error %d %s", error, r->res_name); | |
1938 | schedule(); | |
1939 | } | |
755b5eb8 DT |
1940 | if (error && error != -EEXIST) |
1941 | return error; | |
e7fd4179 DT |
1942 | |
1943 | if (ret_nodeid == our_nodeid) { | |
1944 | r->res_first_lkid = 0; | |
1945 | r->res_nodeid = 0; | |
1946 | lkb->lkb_nodeid = 0; | |
1947 | } else { | |
1948 | r->res_first_lkid = lkb->lkb_id; | |
1949 | r->res_nodeid = ret_nodeid; | |
1950 | lkb->lkb_nodeid = ret_nodeid; | |
1951 | } | |
1952 | return 0; | |
1953 | } | |
1954 | ||
1955 | static void process_lookup_list(struct dlm_rsb *r) | |
1956 | { | |
1957 | struct dlm_lkb *lkb, *safe; | |
1958 | ||
1959 | list_for_each_entry_safe(lkb, safe, &r->res_lookup, lkb_rsb_lookup) { | |
ef0c2bb0 | 1960 | list_del_init(&lkb->lkb_rsb_lookup); |
e7fd4179 DT |
1961 | _request_lock(r, lkb); |
1962 | schedule(); | |
1963 | } | |
1964 | } | |
1965 | ||
1966 | /* confirm_master -- confirm (or deny) an rsb's master nodeid */ | |
1967 | ||
1968 | static void confirm_master(struct dlm_rsb *r, int error) | |
1969 | { | |
1970 | struct dlm_lkb *lkb; | |
1971 | ||
1972 | if (!r->res_first_lkid) | |
1973 | return; | |
1974 | ||
1975 | switch (error) { | |
1976 | case 0: | |
1977 | case -EINPROGRESS: | |
1978 | r->res_first_lkid = 0; | |
1979 | process_lookup_list(r); | |
1980 | break; | |
1981 | ||
1982 | case -EAGAIN: | |
aec64e1b DT |
1983 | case -EBADR: |
1984 | case -ENOTBLK: | |
1985 | /* the remote request failed and won't be retried (it was | |
1986 | a NOQUEUE, or has been canceled/unlocked); make a waiting | |
1987 | lkb the first_lkid */ | |
e7fd4179 DT |
1988 | |
1989 | r->res_first_lkid = 0; | |
1990 | ||
1991 | if (!list_empty(&r->res_lookup)) { | |
1992 | lkb = list_entry(r->res_lookup.next, struct dlm_lkb, | |
1993 | lkb_rsb_lookup); | |
ef0c2bb0 | 1994 | list_del_init(&lkb->lkb_rsb_lookup); |
e7fd4179 DT |
1995 | r->res_first_lkid = lkb->lkb_id; |
1996 | _request_lock(r, lkb); | |
761b9d3f | 1997 | } |
e7fd4179 DT |
1998 | break; |
1999 | ||
2000 | default: | |
2001 | log_error(r->res_ls, "confirm_master unknown error %d", error); | |
2002 | } | |
2003 | } | |
2004 | ||
2005 | static int set_lock_args(int mode, struct dlm_lksb *lksb, uint32_t flags, | |
e5dae548 DT |
2006 | int namelen, unsigned long timeout_cs, |
2007 | void (*ast) (void *astparam), | |
2008 | void *astparam, | |
2009 | void (*bast) (void *astparam, int mode), | |
2010 | struct dlm_args *args) | |
e7fd4179 DT |
2011 | { |
2012 | int rv = -EINVAL; | |
2013 | ||
2014 | /* check for invalid arg usage */ | |
2015 | ||
2016 | if (mode < 0 || mode > DLM_LOCK_EX) | |
2017 | goto out; | |
2018 | ||
2019 | if (!(flags & DLM_LKF_CONVERT) && (namelen > DLM_RESNAME_MAXLEN)) | |
2020 | goto out; | |
2021 | ||
2022 | if (flags & DLM_LKF_CANCEL) | |
2023 | goto out; | |
2024 | ||
2025 | if (flags & DLM_LKF_QUECVT && !(flags & DLM_LKF_CONVERT)) | |
2026 | goto out; | |
2027 | ||
2028 | if (flags & DLM_LKF_CONVDEADLK && !(flags & DLM_LKF_CONVERT)) | |
2029 | goto out; | |
2030 | ||
2031 | if (flags & DLM_LKF_CONVDEADLK && flags & DLM_LKF_NOQUEUE) | |
2032 | goto out; | |
2033 | ||
2034 | if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_CONVERT) | |
2035 | goto out; | |
2036 | ||
2037 | if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_QUECVT) | |
2038 | goto out; | |
2039 | ||
2040 | if (flags & DLM_LKF_EXPEDITE && flags & DLM_LKF_NOQUEUE) | |
2041 | goto out; | |
2042 | ||
2043 | if (flags & DLM_LKF_EXPEDITE && mode != DLM_LOCK_NL) | |
2044 | goto out; | |
2045 | ||
2046 | if (!ast || !lksb) | |
2047 | goto out; | |
2048 | ||
2049 | if (flags & DLM_LKF_VALBLK && !lksb->sb_lvbptr) | |
2050 | goto out; | |
2051 | ||
e7fd4179 DT |
2052 | if (flags & DLM_LKF_CONVERT && !lksb->sb_lkid) |
2053 | goto out; | |
2054 | ||
2055 | /* these args will be copied to the lkb in validate_lock_args, | |
2056 | it cannot be done now because when converting locks, fields in | |
2057 | an active lkb cannot be modified before locking the rsb */ | |
2058 | ||
2059 | args->flags = flags; | |
e5dae548 DT |
2060 | args->astfn = ast; |
2061 | args->astparam = astparam; | |
2062 | args->bastfn = bast; | |
d7db923e | 2063 | args->timeout = timeout_cs; |
e7fd4179 DT |
2064 | args->mode = mode; |
2065 | args->lksb = lksb; | |
e7fd4179 DT |
2066 | rv = 0; |
2067 | out: | |
2068 | return rv; | |
2069 | } | |
2070 | ||
2071 | static int set_unlock_args(uint32_t flags, void *astarg, struct dlm_args *args) | |
2072 | { | |
2073 | if (flags & ~(DLM_LKF_CANCEL | DLM_LKF_VALBLK | DLM_LKF_IVVALBLK | | |
2074 | DLM_LKF_FORCEUNLOCK)) | |
2075 | return -EINVAL; | |
2076 | ||
ef0c2bb0 DT |
2077 | if (flags & DLM_LKF_CANCEL && flags & DLM_LKF_FORCEUNLOCK) |
2078 | return -EINVAL; | |
2079 | ||
e7fd4179 | 2080 | args->flags = flags; |
e5dae548 | 2081 | args->astparam = astarg; |
e7fd4179 DT |
2082 | return 0; |
2083 | } | |
2084 | ||
2085 | static int validate_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
2086 | struct dlm_args *args) | |
2087 | { | |
2088 | int rv = -EINVAL; | |
2089 | ||
2090 | if (args->flags & DLM_LKF_CONVERT) { | |
2091 | if (lkb->lkb_flags & DLM_IFL_MSTCPY) | |
2092 | goto out; | |
2093 | ||
2094 | if (args->flags & DLM_LKF_QUECVT && | |
2095 | !__quecvt_compat_matrix[lkb->lkb_grmode+1][args->mode+1]) | |
2096 | goto out; | |
2097 | ||
2098 | rv = -EBUSY; | |
2099 | if (lkb->lkb_status != DLM_LKSTS_GRANTED) | |
2100 | goto out; | |
2101 | ||
2102 | if (lkb->lkb_wait_type) | |
2103 | goto out; | |
ef0c2bb0 DT |
2104 | |
2105 | if (is_overlap(lkb)) | |
2106 | goto out; | |
e7fd4179 DT |
2107 | } |
2108 | ||
2109 | lkb->lkb_exflags = args->flags; | |
2110 | lkb->lkb_sbflags = 0; | |
e5dae548 | 2111 | lkb->lkb_astfn = args->astfn; |
e7fd4179 | 2112 | lkb->lkb_astparam = args->astparam; |
e5dae548 | 2113 | lkb->lkb_bastfn = args->bastfn; |
e7fd4179 DT |
2114 | lkb->lkb_rqmode = args->mode; |
2115 | lkb->lkb_lksb = args->lksb; | |
2116 | lkb->lkb_lvbptr = args->lksb->sb_lvbptr; | |
2117 | lkb->lkb_ownpid = (int) current->pid; | |
d7db923e | 2118 | lkb->lkb_timeout_cs = args->timeout; |
e7fd4179 DT |
2119 | rv = 0; |
2120 | out: | |
43279e53 DT |
2121 | if (rv) |
2122 | log_debug(ls, "validate_lock_args %d %x %x %x %d %d %s", | |
2123 | rv, lkb->lkb_id, lkb->lkb_flags, args->flags, | |
2124 | lkb->lkb_status, lkb->lkb_wait_type, | |
2125 | lkb->lkb_resource->res_name); | |
e7fd4179 DT |
2126 | return rv; |
2127 | } | |
2128 | ||
ef0c2bb0 DT |
2129 | /* when dlm_unlock() sees -EBUSY with CANCEL/FORCEUNLOCK it returns 0 |
2130 | for success */ | |
2131 | ||
2132 | /* note: it's valid for lkb_nodeid/res_nodeid to be -1 when we get here | |
2133 | because there may be a lookup in progress and it's valid to do | |
2134 | cancel/unlockf on it */ | |
2135 | ||
e7fd4179 DT |
2136 | static int validate_unlock_args(struct dlm_lkb *lkb, struct dlm_args *args) |
2137 | { | |
ef0c2bb0 | 2138 | struct dlm_ls *ls = lkb->lkb_resource->res_ls; |
e7fd4179 DT |
2139 | int rv = -EINVAL; |
2140 | ||
ef0c2bb0 DT |
2141 | if (lkb->lkb_flags & DLM_IFL_MSTCPY) { |
2142 | log_error(ls, "unlock on MSTCPY %x", lkb->lkb_id); | |
2143 | dlm_print_lkb(lkb); | |
e7fd4179 | 2144 | goto out; |
ef0c2bb0 | 2145 | } |
e7fd4179 | 2146 | |
ef0c2bb0 DT |
2147 | /* an lkb may still exist even though the lock is EOL'ed due to a |
2148 | cancel, unlock or failed noqueue request; an app can't use these | |
2149 | locks; return same error as if the lkid had not been found at all */ | |
e7fd4179 | 2150 | |
ef0c2bb0 DT |
2151 | if (lkb->lkb_flags & DLM_IFL_ENDOFLIFE) { |
2152 | log_debug(ls, "unlock on ENDOFLIFE %x", lkb->lkb_id); | |
2153 | rv = -ENOENT; | |
e7fd4179 | 2154 | goto out; |
ef0c2bb0 | 2155 | } |
e7fd4179 | 2156 | |
ef0c2bb0 DT |
2157 | /* an lkb may be waiting for an rsb lookup to complete where the |
2158 | lookup was initiated by another lock */ | |
2159 | ||
42dc1601 DT |
2160 | if (!list_empty(&lkb->lkb_rsb_lookup)) { |
2161 | if (args->flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK)) { | |
ef0c2bb0 DT |
2162 | log_debug(ls, "unlock on rsb_lookup %x", lkb->lkb_id); |
2163 | list_del_init(&lkb->lkb_rsb_lookup); | |
2164 | queue_cast(lkb->lkb_resource, lkb, | |
2165 | args->flags & DLM_LKF_CANCEL ? | |
2166 | -DLM_ECANCEL : -DLM_EUNLOCK); | |
2167 | unhold_lkb(lkb); /* undoes create_lkb() */ | |
ef0c2bb0 | 2168 | } |
42dc1601 DT |
2169 | /* caller changes -EBUSY to 0 for CANCEL and FORCEUNLOCK */ |
2170 | rv = -EBUSY; | |
2171 | goto out; | |
ef0c2bb0 DT |
2172 | } |
2173 | ||
2174 | /* cancel not allowed with another cancel/unlock in progress */ | |
2175 | ||
2176 | if (args->flags & DLM_LKF_CANCEL) { | |
2177 | if (lkb->lkb_exflags & DLM_LKF_CANCEL) | |
2178 | goto out; | |
2179 | ||
2180 | if (is_overlap(lkb)) | |
2181 | goto out; | |
2182 | ||
3ae1acf9 DT |
2183 | /* don't let scand try to do a cancel */ |
2184 | del_timeout(lkb); | |
2185 | ||
ef0c2bb0 DT |
2186 | if (lkb->lkb_flags & DLM_IFL_RESEND) { |
2187 | lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL; | |
2188 | rv = -EBUSY; | |
2189 | goto out; | |
2190 | } | |
2191 | ||
a536e381 DT |
2192 | /* there's nothing to cancel */ |
2193 | if (lkb->lkb_status == DLM_LKSTS_GRANTED && | |
2194 | !lkb->lkb_wait_type) { | |
2195 | rv = -EBUSY; | |
2196 | goto out; | |
2197 | } | |
2198 | ||
ef0c2bb0 DT |
2199 | switch (lkb->lkb_wait_type) { |
2200 | case DLM_MSG_LOOKUP: | |
2201 | case DLM_MSG_REQUEST: | |
2202 | lkb->lkb_flags |= DLM_IFL_OVERLAP_CANCEL; | |
2203 | rv = -EBUSY; | |
2204 | goto out; | |
2205 | case DLM_MSG_UNLOCK: | |
2206 | case DLM_MSG_CANCEL: | |
2207 | goto out; | |
2208 | } | |
2209 | /* add_to_waiters() will set OVERLAP_CANCEL */ | |
2210 | goto out_ok; | |
2211 | } | |
2212 | ||
2213 | /* do we need to allow a force-unlock if there's a normal unlock | |
2214 | already in progress? in what conditions could the normal unlock | |
2215 | fail such that we'd want to send a force-unlock to be sure? */ | |
2216 | ||
2217 | if (args->flags & DLM_LKF_FORCEUNLOCK) { | |
2218 | if (lkb->lkb_exflags & DLM_LKF_FORCEUNLOCK) | |
2219 | goto out; | |
2220 | ||
2221 | if (is_overlap_unlock(lkb)) | |
2222 | goto out; | |
e7fd4179 | 2223 | |
3ae1acf9 DT |
2224 | /* don't let scand try to do a cancel */ |
2225 | del_timeout(lkb); | |
2226 | ||
ef0c2bb0 DT |
2227 | if (lkb->lkb_flags & DLM_IFL_RESEND) { |
2228 | lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK; | |
2229 | rv = -EBUSY; | |
2230 | goto out; | |
2231 | } | |
2232 | ||
2233 | switch (lkb->lkb_wait_type) { | |
2234 | case DLM_MSG_LOOKUP: | |
2235 | case DLM_MSG_REQUEST: | |
2236 | lkb->lkb_flags |= DLM_IFL_OVERLAP_UNLOCK; | |
2237 | rv = -EBUSY; | |
2238 | goto out; | |
2239 | case DLM_MSG_UNLOCK: | |
2240 | goto out; | |
2241 | } | |
2242 | /* add_to_waiters() will set OVERLAP_UNLOCK */ | |
2243 | goto out_ok; | |
2244 | } | |
2245 | ||
2246 | /* normal unlock not allowed if there's any op in progress */ | |
e7fd4179 | 2247 | rv = -EBUSY; |
ef0c2bb0 | 2248 | if (lkb->lkb_wait_type || lkb->lkb_wait_count) |
e7fd4179 DT |
2249 | goto out; |
2250 | ||
2251 | out_ok: | |
ef0c2bb0 DT |
2252 | /* an overlapping op shouldn't blow away exflags from other op */ |
2253 | lkb->lkb_exflags |= args->flags; | |
e7fd4179 DT |
2254 | lkb->lkb_sbflags = 0; |
2255 | lkb->lkb_astparam = args->astparam; | |
e7fd4179 DT |
2256 | rv = 0; |
2257 | out: | |
ef0c2bb0 DT |
2258 | if (rv) |
2259 | log_debug(ls, "validate_unlock_args %d %x %x %x %x %d %s", rv, | |
2260 | lkb->lkb_id, lkb->lkb_flags, lkb->lkb_exflags, | |
2261 | args->flags, lkb->lkb_wait_type, | |
2262 | lkb->lkb_resource->res_name); | |
e7fd4179 DT |
2263 | return rv; |
2264 | } | |
2265 | ||
2266 | /* | |
2267 | * Four stage 4 varieties: | |
2268 | * do_request(), do_convert(), do_unlock(), do_cancel() | |
2269 | * These are called on the master node for the given lock and | |
2270 | * from the central locking logic. | |
2271 | */ | |
2272 | ||
2273 | static int do_request(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2274 | { | |
2275 | int error = 0; | |
2276 | ||
c85d65e9 | 2277 | if (can_be_granted(r, lkb, 1, NULL)) { |
e7fd4179 DT |
2278 | grant_lock(r, lkb); |
2279 | queue_cast(r, lkb, 0); | |
2280 | goto out; | |
2281 | } | |
2282 | ||
2283 | if (can_be_queued(lkb)) { | |
2284 | error = -EINPROGRESS; | |
2285 | add_lkb(r, lkb, DLM_LKSTS_WAITING); | |
3ae1acf9 | 2286 | add_timeout(lkb); |
e7fd4179 DT |
2287 | goto out; |
2288 | } | |
2289 | ||
2290 | error = -EAGAIN; | |
e7fd4179 | 2291 | queue_cast(r, lkb, -EAGAIN); |
e7fd4179 DT |
2292 | out: |
2293 | return error; | |
2294 | } | |
2295 | ||
cf6620ac DT |
2296 | static void do_request_effects(struct dlm_rsb *r, struct dlm_lkb *lkb, |
2297 | int error) | |
2298 | { | |
2299 | switch (error) { | |
2300 | case -EAGAIN: | |
2301 | if (force_blocking_asts(lkb)) | |
2302 | send_blocking_asts_all(r, lkb); | |
2303 | break; | |
2304 | case -EINPROGRESS: | |
2305 | send_blocking_asts(r, lkb); | |
2306 | break; | |
2307 | } | |
2308 | } | |
2309 | ||
e7fd4179 DT |
2310 | static int do_convert(struct dlm_rsb *r, struct dlm_lkb *lkb) |
2311 | { | |
2312 | int error = 0; | |
c85d65e9 | 2313 | int deadlk = 0; |
e7fd4179 DT |
2314 | |
2315 | /* changing an existing lock may allow others to be granted */ | |
2316 | ||
c85d65e9 | 2317 | if (can_be_granted(r, lkb, 1, &deadlk)) { |
e7fd4179 DT |
2318 | grant_lock(r, lkb); |
2319 | queue_cast(r, lkb, 0); | |
e7fd4179 DT |
2320 | goto out; |
2321 | } | |
2322 | ||
c85d65e9 DT |
2323 | /* can_be_granted() detected that this lock would block in a conversion |
2324 | deadlock, so we leave it on the granted queue and return EDEADLK in | |
2325 | the ast for the convert. */ | |
2326 | ||
2327 | if (deadlk) { | |
2328 | /* it's left on the granted queue */ | |
2329 | log_debug(r->res_ls, "deadlock %x node %d sts%d g%d r%d %s", | |
2330 | lkb->lkb_id, lkb->lkb_nodeid, lkb->lkb_status, | |
2331 | lkb->lkb_grmode, lkb->lkb_rqmode, r->res_name); | |
2332 | revert_lock(r, lkb); | |
2333 | queue_cast(r, lkb, -EDEADLK); | |
2334 | error = -EDEADLK; | |
2335 | goto out; | |
2336 | } | |
2337 | ||
7d3c1feb DT |
2338 | /* is_demoted() means the can_be_granted() above set the grmode |
2339 | to NL, and left us on the granted queue. This auto-demotion | |
2340 | (due to CONVDEADLK) might mean other locks, and/or this lock, are | |
2341 | now grantable. We have to try to grant other converting locks | |
2342 | before we try again to grant this one. */ | |
2343 | ||
2344 | if (is_demoted(lkb)) { | |
36509258 | 2345 | grant_pending_convert(r, DLM_LOCK_IV, NULL); |
7d3c1feb DT |
2346 | if (_can_be_granted(r, lkb, 1)) { |
2347 | grant_lock(r, lkb); | |
2348 | queue_cast(r, lkb, 0); | |
7d3c1feb DT |
2349 | goto out; |
2350 | } | |
2351 | /* else fall through and move to convert queue */ | |
2352 | } | |
2353 | ||
2354 | if (can_be_queued(lkb)) { | |
e7fd4179 DT |
2355 | error = -EINPROGRESS; |
2356 | del_lkb(r, lkb); | |
2357 | add_lkb(r, lkb, DLM_LKSTS_CONVERT); | |
3ae1acf9 | 2358 | add_timeout(lkb); |
e7fd4179 DT |
2359 | goto out; |
2360 | } | |
2361 | ||
2362 | error = -EAGAIN; | |
e7fd4179 | 2363 | queue_cast(r, lkb, -EAGAIN); |
e7fd4179 DT |
2364 | out: |
2365 | return error; | |
2366 | } | |
2367 | ||
cf6620ac DT |
2368 | static void do_convert_effects(struct dlm_rsb *r, struct dlm_lkb *lkb, |
2369 | int error) | |
2370 | { | |
2371 | switch (error) { | |
2372 | case 0: | |
2373 | grant_pending_locks(r); | |
2374 | /* grant_pending_locks also sends basts */ | |
2375 | break; | |
2376 | case -EAGAIN: | |
2377 | if (force_blocking_asts(lkb)) | |
2378 | send_blocking_asts_all(r, lkb); | |
2379 | break; | |
2380 | case -EINPROGRESS: | |
2381 | send_blocking_asts(r, lkb); | |
2382 | break; | |
2383 | } | |
2384 | } | |
2385 | ||
e7fd4179 DT |
2386 | static int do_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb) |
2387 | { | |
2388 | remove_lock(r, lkb); | |
2389 | queue_cast(r, lkb, -DLM_EUNLOCK); | |
e7fd4179 DT |
2390 | return -DLM_EUNLOCK; |
2391 | } | |
2392 | ||
cf6620ac DT |
2393 | static void do_unlock_effects(struct dlm_rsb *r, struct dlm_lkb *lkb, |
2394 | int error) | |
2395 | { | |
2396 | grant_pending_locks(r); | |
2397 | } | |
2398 | ||
ef0c2bb0 | 2399 | /* returns: 0 did nothing, -DLM_ECANCEL canceled lock */ |
907b9bce | 2400 | |
e7fd4179 DT |
2401 | static int do_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb) |
2402 | { | |
ef0c2bb0 DT |
2403 | int error; |
2404 | ||
2405 | error = revert_lock(r, lkb); | |
2406 | if (error) { | |
2407 | queue_cast(r, lkb, -DLM_ECANCEL); | |
ef0c2bb0 DT |
2408 | return -DLM_ECANCEL; |
2409 | } | |
2410 | return 0; | |
e7fd4179 DT |
2411 | } |
2412 | ||
cf6620ac DT |
2413 | static void do_cancel_effects(struct dlm_rsb *r, struct dlm_lkb *lkb, |
2414 | int error) | |
2415 | { | |
2416 | if (error) | |
2417 | grant_pending_locks(r); | |
2418 | } | |
2419 | ||
e7fd4179 DT |
2420 | /* |
2421 | * Four stage 3 varieties: | |
2422 | * _request_lock(), _convert_lock(), _unlock_lock(), _cancel_lock() | |
2423 | */ | |
2424 | ||
2425 | /* add a new lkb to a possibly new rsb, called by requesting process */ | |
2426 | ||
2427 | static int _request_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2428 | { | |
2429 | int error; | |
2430 | ||
2431 | /* set_master: sets lkb nodeid from r */ | |
2432 | ||
2433 | error = set_master(r, lkb); | |
2434 | if (error < 0) | |
2435 | goto out; | |
2436 | if (error) { | |
2437 | error = 0; | |
2438 | goto out; | |
2439 | } | |
2440 | ||
cf6620ac | 2441 | if (is_remote(r)) { |
e7fd4179 DT |
2442 | /* receive_request() calls do_request() on remote node */ |
2443 | error = send_request(r, lkb); | |
cf6620ac | 2444 | } else { |
e7fd4179 | 2445 | error = do_request(r, lkb); |
cf6620ac DT |
2446 | /* for remote locks the request_reply is sent |
2447 | between do_request and do_request_effects */ | |
2448 | do_request_effects(r, lkb, error); | |
2449 | } | |
e7fd4179 DT |
2450 | out: |
2451 | return error; | |
2452 | } | |
2453 | ||
3bcd3687 | 2454 | /* change some property of an existing lkb, e.g. mode */ |
e7fd4179 DT |
2455 | |
2456 | static int _convert_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2457 | { | |
2458 | int error; | |
2459 | ||
cf6620ac | 2460 | if (is_remote(r)) { |
e7fd4179 DT |
2461 | /* receive_convert() calls do_convert() on remote node */ |
2462 | error = send_convert(r, lkb); | |
cf6620ac | 2463 | } else { |
e7fd4179 | 2464 | error = do_convert(r, lkb); |
cf6620ac DT |
2465 | /* for remote locks the convert_reply is sent |
2466 | between do_convert and do_convert_effects */ | |
2467 | do_convert_effects(r, lkb, error); | |
2468 | } | |
e7fd4179 DT |
2469 | |
2470 | return error; | |
2471 | } | |
2472 | ||
2473 | /* remove an existing lkb from the granted queue */ | |
2474 | ||
2475 | static int _unlock_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2476 | { | |
2477 | int error; | |
2478 | ||
cf6620ac | 2479 | if (is_remote(r)) { |
e7fd4179 DT |
2480 | /* receive_unlock() calls do_unlock() on remote node */ |
2481 | error = send_unlock(r, lkb); | |
cf6620ac | 2482 | } else { |
e7fd4179 | 2483 | error = do_unlock(r, lkb); |
cf6620ac DT |
2484 | /* for remote locks the unlock_reply is sent |
2485 | between do_unlock and do_unlock_effects */ | |
2486 | do_unlock_effects(r, lkb, error); | |
2487 | } | |
e7fd4179 DT |
2488 | |
2489 | return error; | |
2490 | } | |
2491 | ||
2492 | /* remove an existing lkb from the convert or wait queue */ | |
2493 | ||
2494 | static int _cancel_lock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2495 | { | |
2496 | int error; | |
2497 | ||
cf6620ac | 2498 | if (is_remote(r)) { |
e7fd4179 DT |
2499 | /* receive_cancel() calls do_cancel() on remote node */ |
2500 | error = send_cancel(r, lkb); | |
cf6620ac | 2501 | } else { |
e7fd4179 | 2502 | error = do_cancel(r, lkb); |
cf6620ac DT |
2503 | /* for remote locks the cancel_reply is sent |
2504 | between do_cancel and do_cancel_effects */ | |
2505 | do_cancel_effects(r, lkb, error); | |
2506 | } | |
e7fd4179 DT |
2507 | |
2508 | return error; | |
2509 | } | |
2510 | ||
2511 | /* | |
2512 | * Four stage 2 varieties: | |
2513 | * request_lock(), convert_lock(), unlock_lock(), cancel_lock() | |
2514 | */ | |
2515 | ||
2516 | static int request_lock(struct dlm_ls *ls, struct dlm_lkb *lkb, char *name, | |
2517 | int len, struct dlm_args *args) | |
2518 | { | |
2519 | struct dlm_rsb *r; | |
2520 | int error; | |
2521 | ||
2522 | error = validate_lock_args(ls, lkb, args); | |
2523 | if (error) | |
2524 | goto out; | |
2525 | ||
2526 | error = find_rsb(ls, name, len, R_CREATE, &r); | |
2527 | if (error) | |
2528 | goto out; | |
2529 | ||
2530 | lock_rsb(r); | |
2531 | ||
2532 | attach_lkb(r, lkb); | |
2533 | lkb->lkb_lksb->sb_lkid = lkb->lkb_id; | |
2534 | ||
2535 | error = _request_lock(r, lkb); | |
2536 | ||
2537 | unlock_rsb(r); | |
2538 | put_rsb(r); | |
2539 | ||
2540 | out: | |
2541 | return error; | |
2542 | } | |
2543 | ||
2544 | static int convert_lock(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
2545 | struct dlm_args *args) | |
2546 | { | |
2547 | struct dlm_rsb *r; | |
2548 | int error; | |
2549 | ||
2550 | r = lkb->lkb_resource; | |
2551 | ||
2552 | hold_rsb(r); | |
2553 | lock_rsb(r); | |
2554 | ||
2555 | error = validate_lock_args(ls, lkb, args); | |
2556 | if (error) | |
2557 | goto out; | |
2558 | ||
2559 | error = _convert_lock(r, lkb); | |
2560 | out: | |
2561 | unlock_rsb(r); | |
2562 | put_rsb(r); | |
2563 | return error; | |
2564 | } | |
2565 | ||
2566 | static int unlock_lock(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
2567 | struct dlm_args *args) | |
2568 | { | |
2569 | struct dlm_rsb *r; | |
2570 | int error; | |
2571 | ||
2572 | r = lkb->lkb_resource; | |
2573 | ||
2574 | hold_rsb(r); | |
2575 | lock_rsb(r); | |
2576 | ||
2577 | error = validate_unlock_args(lkb, args); | |
2578 | if (error) | |
2579 | goto out; | |
2580 | ||
2581 | error = _unlock_lock(r, lkb); | |
2582 | out: | |
2583 | unlock_rsb(r); | |
2584 | put_rsb(r); | |
2585 | return error; | |
2586 | } | |
2587 | ||
2588 | static int cancel_lock(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
2589 | struct dlm_args *args) | |
2590 | { | |
2591 | struct dlm_rsb *r; | |
2592 | int error; | |
2593 | ||
2594 | r = lkb->lkb_resource; | |
2595 | ||
2596 | hold_rsb(r); | |
2597 | lock_rsb(r); | |
2598 | ||
2599 | error = validate_unlock_args(lkb, args); | |
2600 | if (error) | |
2601 | goto out; | |
2602 | ||
2603 | error = _cancel_lock(r, lkb); | |
2604 | out: | |
2605 | unlock_rsb(r); | |
2606 | put_rsb(r); | |
2607 | return error; | |
2608 | } | |
2609 | ||
2610 | /* | |
2611 | * Two stage 1 varieties: dlm_lock() and dlm_unlock() | |
2612 | */ | |
2613 | ||
2614 | int dlm_lock(dlm_lockspace_t *lockspace, | |
2615 | int mode, | |
2616 | struct dlm_lksb *lksb, | |
2617 | uint32_t flags, | |
2618 | void *name, | |
2619 | unsigned int namelen, | |
2620 | uint32_t parent_lkid, | |
2621 | void (*ast) (void *astarg), | |
2622 | void *astarg, | |
3bcd3687 | 2623 | void (*bast) (void *astarg, int mode)) |
e7fd4179 DT |
2624 | { |
2625 | struct dlm_ls *ls; | |
2626 | struct dlm_lkb *lkb; | |
2627 | struct dlm_args args; | |
2628 | int error, convert = flags & DLM_LKF_CONVERT; | |
2629 | ||
2630 | ls = dlm_find_lockspace_local(lockspace); | |
2631 | if (!ls) | |
2632 | return -EINVAL; | |
2633 | ||
85e86edf | 2634 | dlm_lock_recovery(ls); |
e7fd4179 DT |
2635 | |
2636 | if (convert) | |
2637 | error = find_lkb(ls, lksb->sb_lkid, &lkb); | |
2638 | else | |
2639 | error = create_lkb(ls, &lkb); | |
2640 | ||
2641 | if (error) | |
2642 | goto out; | |
2643 | ||
d7db923e | 2644 | error = set_lock_args(mode, lksb, flags, namelen, 0, ast, |
3bcd3687 | 2645 | astarg, bast, &args); |
e7fd4179 DT |
2646 | if (error) |
2647 | goto out_put; | |
2648 | ||
2649 | if (convert) | |
2650 | error = convert_lock(ls, lkb, &args); | |
2651 | else | |
2652 | error = request_lock(ls, lkb, name, namelen, &args); | |
2653 | ||
2654 | if (error == -EINPROGRESS) | |
2655 | error = 0; | |
2656 | out_put: | |
2657 | if (convert || error) | |
b3f58d8f | 2658 | __put_lkb(ls, lkb); |
c85d65e9 | 2659 | if (error == -EAGAIN || error == -EDEADLK) |
e7fd4179 DT |
2660 | error = 0; |
2661 | out: | |
85e86edf | 2662 | dlm_unlock_recovery(ls); |
e7fd4179 DT |
2663 | dlm_put_lockspace(ls); |
2664 | return error; | |
2665 | } | |
2666 | ||
2667 | int dlm_unlock(dlm_lockspace_t *lockspace, | |
2668 | uint32_t lkid, | |
2669 | uint32_t flags, | |
2670 | struct dlm_lksb *lksb, | |
2671 | void *astarg) | |
2672 | { | |
2673 | struct dlm_ls *ls; | |
2674 | struct dlm_lkb *lkb; | |
2675 | struct dlm_args args; | |
2676 | int error; | |
2677 | ||
2678 | ls = dlm_find_lockspace_local(lockspace); | |
2679 | if (!ls) | |
2680 | return -EINVAL; | |
2681 | ||
85e86edf | 2682 | dlm_lock_recovery(ls); |
e7fd4179 DT |
2683 | |
2684 | error = find_lkb(ls, lkid, &lkb); | |
2685 | if (error) | |
2686 | goto out; | |
2687 | ||
2688 | error = set_unlock_args(flags, astarg, &args); | |
2689 | if (error) | |
2690 | goto out_put; | |
2691 | ||
2692 | if (flags & DLM_LKF_CANCEL) | |
2693 | error = cancel_lock(ls, lkb, &args); | |
2694 | else | |
2695 | error = unlock_lock(ls, lkb, &args); | |
2696 | ||
2697 | if (error == -DLM_EUNLOCK || error == -DLM_ECANCEL) | |
2698 | error = 0; | |
ef0c2bb0 DT |
2699 | if (error == -EBUSY && (flags & (DLM_LKF_CANCEL | DLM_LKF_FORCEUNLOCK))) |
2700 | error = 0; | |
e7fd4179 | 2701 | out_put: |
b3f58d8f | 2702 | dlm_put_lkb(lkb); |
e7fd4179 | 2703 | out: |
85e86edf | 2704 | dlm_unlock_recovery(ls); |
e7fd4179 DT |
2705 | dlm_put_lockspace(ls); |
2706 | return error; | |
2707 | } | |
2708 | ||
2709 | /* | |
2710 | * send/receive routines for remote operations and replies | |
2711 | * | |
2712 | * send_args | |
2713 | * send_common | |
2714 | * send_request receive_request | |
2715 | * send_convert receive_convert | |
2716 | * send_unlock receive_unlock | |
2717 | * send_cancel receive_cancel | |
2718 | * send_grant receive_grant | |
2719 | * send_bast receive_bast | |
2720 | * send_lookup receive_lookup | |
2721 | * send_remove receive_remove | |
2722 | * | |
2723 | * send_common_reply | |
2724 | * receive_request_reply send_request_reply | |
2725 | * receive_convert_reply send_convert_reply | |
2726 | * receive_unlock_reply send_unlock_reply | |
2727 | * receive_cancel_reply send_cancel_reply | |
2728 | * receive_lookup_reply send_lookup_reply | |
2729 | */ | |
2730 | ||
7e4dac33 DT |
2731 | static int _create_message(struct dlm_ls *ls, int mb_len, |
2732 | int to_nodeid, int mstype, | |
2733 | struct dlm_message **ms_ret, | |
2734 | struct dlm_mhandle **mh_ret) | |
e7fd4179 DT |
2735 | { |
2736 | struct dlm_message *ms; | |
2737 | struct dlm_mhandle *mh; | |
2738 | char *mb; | |
e7fd4179 DT |
2739 | |
2740 | /* get_buffer gives us a message handle (mh) that we need to | |
2741 | pass into lowcomms_commit and a message buffer (mb) that we | |
2742 | write our data into */ | |
2743 | ||
573c24c4 | 2744 | mh = dlm_lowcomms_get_buffer(to_nodeid, mb_len, GFP_NOFS, &mb); |
e7fd4179 DT |
2745 | if (!mh) |
2746 | return -ENOBUFS; | |
2747 | ||
2748 | memset(mb, 0, mb_len); | |
2749 | ||
2750 | ms = (struct dlm_message *) mb; | |
2751 | ||
2752 | ms->m_header.h_version = (DLM_HEADER_MAJOR | DLM_HEADER_MINOR); | |
7e4dac33 | 2753 | ms->m_header.h_lockspace = ls->ls_global_id; |
e7fd4179 DT |
2754 | ms->m_header.h_nodeid = dlm_our_nodeid(); |
2755 | ms->m_header.h_length = mb_len; | |
2756 | ms->m_header.h_cmd = DLM_MSG; | |
2757 | ||
2758 | ms->m_type = mstype; | |
2759 | ||
2760 | *mh_ret = mh; | |
2761 | *ms_ret = ms; | |
2762 | return 0; | |
2763 | } | |
2764 | ||
7e4dac33 DT |
2765 | static int create_message(struct dlm_rsb *r, struct dlm_lkb *lkb, |
2766 | int to_nodeid, int mstype, | |
2767 | struct dlm_message **ms_ret, | |
2768 | struct dlm_mhandle **mh_ret) | |
2769 | { | |
2770 | int mb_len = sizeof(struct dlm_message); | |
2771 | ||
2772 | switch (mstype) { | |
2773 | case DLM_MSG_REQUEST: | |
2774 | case DLM_MSG_LOOKUP: | |
2775 | case DLM_MSG_REMOVE: | |
2776 | mb_len += r->res_length; | |
2777 | break; | |
2778 | case DLM_MSG_CONVERT: | |
2779 | case DLM_MSG_UNLOCK: | |
2780 | case DLM_MSG_REQUEST_REPLY: | |
2781 | case DLM_MSG_CONVERT_REPLY: | |
2782 | case DLM_MSG_GRANT: | |
2783 | if (lkb && lkb->lkb_lvbptr) | |
2784 | mb_len += r->res_ls->ls_lvblen; | |
2785 | break; | |
2786 | } | |
2787 | ||
2788 | return _create_message(r->res_ls, mb_len, to_nodeid, mstype, | |
2789 | ms_ret, mh_ret); | |
2790 | } | |
2791 | ||
e7fd4179 DT |
2792 | /* further lowcomms enhancements or alternate implementations may make |
2793 | the return value from this function useful at some point */ | |
2794 | ||
2795 | static int send_message(struct dlm_mhandle *mh, struct dlm_message *ms) | |
2796 | { | |
2797 | dlm_message_out(ms); | |
2798 | dlm_lowcomms_commit_buffer(mh); | |
2799 | return 0; | |
2800 | } | |
2801 | ||
2802 | static void send_args(struct dlm_rsb *r, struct dlm_lkb *lkb, | |
2803 | struct dlm_message *ms) | |
2804 | { | |
2805 | ms->m_nodeid = lkb->lkb_nodeid; | |
2806 | ms->m_pid = lkb->lkb_ownpid; | |
2807 | ms->m_lkid = lkb->lkb_id; | |
2808 | ms->m_remid = lkb->lkb_remid; | |
2809 | ms->m_exflags = lkb->lkb_exflags; | |
2810 | ms->m_sbflags = lkb->lkb_sbflags; | |
2811 | ms->m_flags = lkb->lkb_flags; | |
2812 | ms->m_lvbseq = lkb->lkb_lvbseq; | |
2813 | ms->m_status = lkb->lkb_status; | |
2814 | ms->m_grmode = lkb->lkb_grmode; | |
2815 | ms->m_rqmode = lkb->lkb_rqmode; | |
2816 | ms->m_hash = r->res_hash; | |
2817 | ||
2818 | /* m_result and m_bastmode are set from function args, | |
2819 | not from lkb fields */ | |
2820 | ||
e5dae548 | 2821 | if (lkb->lkb_bastfn) |
e7fd4179 | 2822 | ms->m_asts |= AST_BAST; |
e5dae548 | 2823 | if (lkb->lkb_astfn) |
e7fd4179 DT |
2824 | ms->m_asts |= AST_COMP; |
2825 | ||
da49f36f DT |
2826 | /* compare with switch in create_message; send_remove() doesn't |
2827 | use send_args() */ | |
e7fd4179 | 2828 | |
da49f36f DT |
2829 | switch (ms->m_type) { |
2830 | case DLM_MSG_REQUEST: | |
2831 | case DLM_MSG_LOOKUP: | |
2832 | memcpy(ms->m_extra, r->res_name, r->res_length); | |
2833 | break; | |
2834 | case DLM_MSG_CONVERT: | |
2835 | case DLM_MSG_UNLOCK: | |
2836 | case DLM_MSG_REQUEST_REPLY: | |
2837 | case DLM_MSG_CONVERT_REPLY: | |
2838 | case DLM_MSG_GRANT: | |
2839 | if (!lkb->lkb_lvbptr) | |
2840 | break; | |
e7fd4179 | 2841 | memcpy(ms->m_extra, lkb->lkb_lvbptr, r->res_ls->ls_lvblen); |
da49f36f DT |
2842 | break; |
2843 | } | |
e7fd4179 DT |
2844 | } |
2845 | ||
2846 | static int send_common(struct dlm_rsb *r, struct dlm_lkb *lkb, int mstype) | |
2847 | { | |
2848 | struct dlm_message *ms; | |
2849 | struct dlm_mhandle *mh; | |
2850 | int to_nodeid, error; | |
2851 | ||
ef0c2bb0 DT |
2852 | error = add_to_waiters(lkb, mstype); |
2853 | if (error) | |
2854 | return error; | |
e7fd4179 DT |
2855 | |
2856 | to_nodeid = r->res_nodeid; | |
2857 | ||
2858 | error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh); | |
2859 | if (error) | |
2860 | goto fail; | |
2861 | ||
2862 | send_args(r, lkb, ms); | |
2863 | ||
2864 | error = send_message(mh, ms); | |
2865 | if (error) | |
2866 | goto fail; | |
2867 | return 0; | |
2868 | ||
2869 | fail: | |
ef0c2bb0 | 2870 | remove_from_waiters(lkb, msg_reply_type(mstype)); |
e7fd4179 DT |
2871 | return error; |
2872 | } | |
2873 | ||
2874 | static int send_request(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2875 | { | |
2876 | return send_common(r, lkb, DLM_MSG_REQUEST); | |
2877 | } | |
2878 | ||
2879 | static int send_convert(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2880 | { | |
2881 | int error; | |
2882 | ||
2883 | error = send_common(r, lkb, DLM_MSG_CONVERT); | |
2884 | ||
2885 | /* down conversions go without a reply from the master */ | |
2886 | if (!error && down_conversion(lkb)) { | |
ef0c2bb0 DT |
2887 | remove_from_waiters(lkb, DLM_MSG_CONVERT_REPLY); |
2888 | r->res_ls->ls_stub_ms.m_type = DLM_MSG_CONVERT_REPLY; | |
e7fd4179 | 2889 | r->res_ls->ls_stub_ms.m_result = 0; |
32f105a1 | 2890 | r->res_ls->ls_stub_ms.m_flags = lkb->lkb_flags; |
e7fd4179 DT |
2891 | __receive_convert_reply(r, lkb, &r->res_ls->ls_stub_ms); |
2892 | } | |
2893 | ||
2894 | return error; | |
2895 | } | |
2896 | ||
2897 | /* FIXME: if this lkb is the only lock we hold on the rsb, then set | |
2898 | MASTER_UNCERTAIN to force the next request on the rsb to confirm | |
2899 | that the master is still correct. */ | |
2900 | ||
2901 | static int send_unlock(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2902 | { | |
2903 | return send_common(r, lkb, DLM_MSG_UNLOCK); | |
2904 | } | |
2905 | ||
2906 | static int send_cancel(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2907 | { | |
2908 | return send_common(r, lkb, DLM_MSG_CANCEL); | |
2909 | } | |
2910 | ||
2911 | static int send_grant(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2912 | { | |
2913 | struct dlm_message *ms; | |
2914 | struct dlm_mhandle *mh; | |
2915 | int to_nodeid, error; | |
2916 | ||
2917 | to_nodeid = lkb->lkb_nodeid; | |
2918 | ||
2919 | error = create_message(r, lkb, to_nodeid, DLM_MSG_GRANT, &ms, &mh); | |
2920 | if (error) | |
2921 | goto out; | |
2922 | ||
2923 | send_args(r, lkb, ms); | |
2924 | ||
2925 | ms->m_result = 0; | |
2926 | ||
2927 | error = send_message(mh, ms); | |
2928 | out: | |
2929 | return error; | |
2930 | } | |
2931 | ||
2932 | static int send_bast(struct dlm_rsb *r, struct dlm_lkb *lkb, int mode) | |
2933 | { | |
2934 | struct dlm_message *ms; | |
2935 | struct dlm_mhandle *mh; | |
2936 | int to_nodeid, error; | |
2937 | ||
2938 | to_nodeid = lkb->lkb_nodeid; | |
2939 | ||
2940 | error = create_message(r, NULL, to_nodeid, DLM_MSG_BAST, &ms, &mh); | |
2941 | if (error) | |
2942 | goto out; | |
2943 | ||
2944 | send_args(r, lkb, ms); | |
2945 | ||
2946 | ms->m_bastmode = mode; | |
2947 | ||
2948 | error = send_message(mh, ms); | |
2949 | out: | |
2950 | return error; | |
2951 | } | |
2952 | ||
2953 | static int send_lookup(struct dlm_rsb *r, struct dlm_lkb *lkb) | |
2954 | { | |
2955 | struct dlm_message *ms; | |
2956 | struct dlm_mhandle *mh; | |
2957 | int to_nodeid, error; | |
2958 | ||
ef0c2bb0 DT |
2959 | error = add_to_waiters(lkb, DLM_MSG_LOOKUP); |
2960 | if (error) | |
2961 | return error; | |
e7fd4179 DT |
2962 | |
2963 | to_nodeid = dlm_dir_nodeid(r); | |
2964 | ||
2965 | error = create_message(r, NULL, to_nodeid, DLM_MSG_LOOKUP, &ms, &mh); | |
2966 | if (error) | |
2967 | goto fail; | |
2968 | ||
2969 | send_args(r, lkb, ms); | |
2970 | ||
2971 | error = send_message(mh, ms); | |
2972 | if (error) | |
2973 | goto fail; | |
2974 | return 0; | |
2975 | ||
2976 | fail: | |
ef0c2bb0 | 2977 | remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY); |
e7fd4179 DT |
2978 | return error; |
2979 | } | |
2980 | ||
2981 | static int send_remove(struct dlm_rsb *r) | |
2982 | { | |
2983 | struct dlm_message *ms; | |
2984 | struct dlm_mhandle *mh; | |
2985 | int to_nodeid, error; | |
2986 | ||
2987 | to_nodeid = dlm_dir_nodeid(r); | |
2988 | ||
2989 | error = create_message(r, NULL, to_nodeid, DLM_MSG_REMOVE, &ms, &mh); | |
2990 | if (error) | |
2991 | goto out; | |
2992 | ||
2993 | memcpy(ms->m_extra, r->res_name, r->res_length); | |
2994 | ms->m_hash = r->res_hash; | |
2995 | ||
2996 | error = send_message(mh, ms); | |
2997 | out: | |
2998 | return error; | |
2999 | } | |
3000 | ||
3001 | static int send_common_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, | |
3002 | int mstype, int rv) | |
3003 | { | |
3004 | struct dlm_message *ms; | |
3005 | struct dlm_mhandle *mh; | |
3006 | int to_nodeid, error; | |
3007 | ||
3008 | to_nodeid = lkb->lkb_nodeid; | |
3009 | ||
3010 | error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh); | |
3011 | if (error) | |
3012 | goto out; | |
3013 | ||
3014 | send_args(r, lkb, ms); | |
3015 | ||
3016 | ms->m_result = rv; | |
3017 | ||
3018 | error = send_message(mh, ms); | |
3019 | out: | |
3020 | return error; | |
3021 | } | |
3022 | ||
3023 | static int send_request_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv) | |
3024 | { | |
3025 | return send_common_reply(r, lkb, DLM_MSG_REQUEST_REPLY, rv); | |
3026 | } | |
3027 | ||
3028 | static int send_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv) | |
3029 | { | |
3030 | return send_common_reply(r, lkb, DLM_MSG_CONVERT_REPLY, rv); | |
3031 | } | |
3032 | ||
3033 | static int send_unlock_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv) | |
3034 | { | |
3035 | return send_common_reply(r, lkb, DLM_MSG_UNLOCK_REPLY, rv); | |
3036 | } | |
3037 | ||
3038 | static int send_cancel_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, int rv) | |
3039 | { | |
3040 | return send_common_reply(r, lkb, DLM_MSG_CANCEL_REPLY, rv); | |
3041 | } | |
3042 | ||
3043 | static int send_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms_in, | |
3044 | int ret_nodeid, int rv) | |
3045 | { | |
3046 | struct dlm_rsb *r = &ls->ls_stub_rsb; | |
3047 | struct dlm_message *ms; | |
3048 | struct dlm_mhandle *mh; | |
3049 | int error, nodeid = ms_in->m_header.h_nodeid; | |
3050 | ||
3051 | error = create_message(r, NULL, nodeid, DLM_MSG_LOOKUP_REPLY, &ms, &mh); | |
3052 | if (error) | |
3053 | goto out; | |
3054 | ||
3055 | ms->m_lkid = ms_in->m_lkid; | |
3056 | ms->m_result = rv; | |
3057 | ms->m_nodeid = ret_nodeid; | |
3058 | ||
3059 | error = send_message(mh, ms); | |
3060 | out: | |
3061 | return error; | |
3062 | } | |
3063 | ||
3064 | /* which args we save from a received message depends heavily on the type | |
3065 | of message, unlike the send side where we can safely send everything about | |
3066 | the lkb for any type of message */ | |
3067 | ||
3068 | static void receive_flags(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3069 | { | |
3070 | lkb->lkb_exflags = ms->m_exflags; | |
6f90a8b1 | 3071 | lkb->lkb_sbflags = ms->m_sbflags; |
e7fd4179 DT |
3072 | lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) | |
3073 | (ms->m_flags & 0x0000FFFF); | |
3074 | } | |
3075 | ||
3076 | static void receive_flags_reply(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3077 | { | |
3078 | lkb->lkb_sbflags = ms->m_sbflags; | |
3079 | lkb->lkb_flags = (lkb->lkb_flags & 0xFFFF0000) | | |
3080 | (ms->m_flags & 0x0000FFFF); | |
3081 | } | |
3082 | ||
3083 | static int receive_extralen(struct dlm_message *ms) | |
3084 | { | |
3085 | return (ms->m_header.h_length - sizeof(struct dlm_message)); | |
3086 | } | |
3087 | ||
e7fd4179 DT |
3088 | static int receive_lvb(struct dlm_ls *ls, struct dlm_lkb *lkb, |
3089 | struct dlm_message *ms) | |
3090 | { | |
3091 | int len; | |
3092 | ||
3093 | if (lkb->lkb_exflags & DLM_LKF_VALBLK) { | |
3094 | if (!lkb->lkb_lvbptr) | |
52bda2b5 | 3095 | lkb->lkb_lvbptr = dlm_allocate_lvb(ls); |
e7fd4179 DT |
3096 | if (!lkb->lkb_lvbptr) |
3097 | return -ENOMEM; | |
3098 | len = receive_extralen(ms); | |
a9cc9159 AV |
3099 | if (len > DLM_RESNAME_MAXLEN) |
3100 | len = DLM_RESNAME_MAXLEN; | |
e7fd4179 DT |
3101 | memcpy(lkb->lkb_lvbptr, ms->m_extra, len); |
3102 | } | |
3103 | return 0; | |
3104 | } | |
3105 | ||
e5dae548 DT |
3106 | static void fake_bastfn(void *astparam, int mode) |
3107 | { | |
3108 | log_print("fake_bastfn should not be called"); | |
3109 | } | |
3110 | ||
3111 | static void fake_astfn(void *astparam) | |
3112 | { | |
3113 | log_print("fake_astfn should not be called"); | |
3114 | } | |
3115 | ||
e7fd4179 DT |
3116 | static int receive_request_args(struct dlm_ls *ls, struct dlm_lkb *lkb, |
3117 | struct dlm_message *ms) | |
3118 | { | |
3119 | lkb->lkb_nodeid = ms->m_header.h_nodeid; | |
3120 | lkb->lkb_ownpid = ms->m_pid; | |
3121 | lkb->lkb_remid = ms->m_lkid; | |
3122 | lkb->lkb_grmode = DLM_LOCK_IV; | |
3123 | lkb->lkb_rqmode = ms->m_rqmode; | |
e5dae548 DT |
3124 | |
3125 | lkb->lkb_bastfn = (ms->m_asts & AST_BAST) ? &fake_bastfn : NULL; | |
3126 | lkb->lkb_astfn = (ms->m_asts & AST_COMP) ? &fake_astfn : NULL; | |
e7fd4179 | 3127 | |
8d07fd50 DT |
3128 | if (lkb->lkb_exflags & DLM_LKF_VALBLK) { |
3129 | /* lkb was just created so there won't be an lvb yet */ | |
52bda2b5 | 3130 | lkb->lkb_lvbptr = dlm_allocate_lvb(ls); |
8d07fd50 DT |
3131 | if (!lkb->lkb_lvbptr) |
3132 | return -ENOMEM; | |
3133 | } | |
e7fd4179 DT |
3134 | |
3135 | return 0; | |
3136 | } | |
3137 | ||
3138 | static int receive_convert_args(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
3139 | struct dlm_message *ms) | |
3140 | { | |
e7fd4179 DT |
3141 | if (lkb->lkb_status != DLM_LKSTS_GRANTED) |
3142 | return -EBUSY; | |
3143 | ||
e7fd4179 DT |
3144 | if (receive_lvb(ls, lkb, ms)) |
3145 | return -ENOMEM; | |
3146 | ||
3147 | lkb->lkb_rqmode = ms->m_rqmode; | |
3148 | lkb->lkb_lvbseq = ms->m_lvbseq; | |
3149 | ||
3150 | return 0; | |
3151 | } | |
3152 | ||
3153 | static int receive_unlock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, | |
3154 | struct dlm_message *ms) | |
3155 | { | |
e7fd4179 DT |
3156 | if (receive_lvb(ls, lkb, ms)) |
3157 | return -ENOMEM; | |
3158 | return 0; | |
3159 | } | |
3160 | ||
3161 | /* We fill in the stub-lkb fields with the info that send_xxxx_reply() | |
3162 | uses to send a reply and that the remote end uses to process the reply. */ | |
3163 | ||
3164 | static void setup_stub_lkb(struct dlm_ls *ls, struct dlm_message *ms) | |
3165 | { | |
3166 | struct dlm_lkb *lkb = &ls->ls_stub_lkb; | |
3167 | lkb->lkb_nodeid = ms->m_header.h_nodeid; | |
3168 | lkb->lkb_remid = ms->m_lkid; | |
3169 | } | |
3170 | ||
c54e04b0 DT |
3171 | /* This is called after the rsb is locked so that we can safely inspect |
3172 | fields in the lkb. */ | |
3173 | ||
3174 | static int validate_message(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3175 | { | |
3176 | int from = ms->m_header.h_nodeid; | |
3177 | int error = 0; | |
3178 | ||
3179 | switch (ms->m_type) { | |
3180 | case DLM_MSG_CONVERT: | |
3181 | case DLM_MSG_UNLOCK: | |
3182 | case DLM_MSG_CANCEL: | |
3183 | if (!is_master_copy(lkb) || lkb->lkb_nodeid != from) | |
3184 | error = -EINVAL; | |
3185 | break; | |
3186 | ||
3187 | case DLM_MSG_CONVERT_REPLY: | |
3188 | case DLM_MSG_UNLOCK_REPLY: | |
3189 | case DLM_MSG_CANCEL_REPLY: | |
3190 | case DLM_MSG_GRANT: | |
3191 | case DLM_MSG_BAST: | |
3192 | if (!is_process_copy(lkb) || lkb->lkb_nodeid != from) | |
3193 | error = -EINVAL; | |
3194 | break; | |
3195 | ||
3196 | case DLM_MSG_REQUEST_REPLY: | |
3197 | if (!is_process_copy(lkb)) | |
3198 | error = -EINVAL; | |
3199 | else if (lkb->lkb_nodeid != -1 && lkb->lkb_nodeid != from) | |
3200 | error = -EINVAL; | |
3201 | break; | |
3202 | ||
3203 | default: | |
3204 | error = -EINVAL; | |
3205 | } | |
3206 | ||
3207 | if (error) | |
3208 | log_error(lkb->lkb_resource->res_ls, | |
3209 | "ignore invalid message %d from %d %x %x %x %d", | |
3210 | ms->m_type, from, lkb->lkb_id, lkb->lkb_remid, | |
3211 | lkb->lkb_flags, lkb->lkb_nodeid); | |
3212 | return error; | |
3213 | } | |
3214 | ||
e7fd4179 DT |
3215 | static void receive_request(struct dlm_ls *ls, struct dlm_message *ms) |
3216 | { | |
3217 | struct dlm_lkb *lkb; | |
3218 | struct dlm_rsb *r; | |
3219 | int error, namelen; | |
3220 | ||
3221 | error = create_lkb(ls, &lkb); | |
3222 | if (error) | |
3223 | goto fail; | |
3224 | ||
3225 | receive_flags(lkb, ms); | |
3226 | lkb->lkb_flags |= DLM_IFL_MSTCPY; | |
3227 | error = receive_request_args(ls, lkb, ms); | |
3228 | if (error) { | |
b3f58d8f | 3229 | __put_lkb(ls, lkb); |
e7fd4179 DT |
3230 | goto fail; |
3231 | } | |
3232 | ||
3233 | namelen = receive_extralen(ms); | |
3234 | ||
3235 | error = find_rsb(ls, ms->m_extra, namelen, R_MASTER, &r); | |
3236 | if (error) { | |
b3f58d8f | 3237 | __put_lkb(ls, lkb); |
e7fd4179 DT |
3238 | goto fail; |
3239 | } | |
3240 | ||
3241 | lock_rsb(r); | |
3242 | ||
3243 | attach_lkb(r, lkb); | |
3244 | error = do_request(r, lkb); | |
3245 | send_request_reply(r, lkb, error); | |
cf6620ac | 3246 | do_request_effects(r, lkb, error); |
e7fd4179 DT |
3247 | |
3248 | unlock_rsb(r); | |
3249 | put_rsb(r); | |
3250 | ||
3251 | if (error == -EINPROGRESS) | |
3252 | error = 0; | |
3253 | if (error) | |
b3f58d8f | 3254 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3255 | return; |
3256 | ||
3257 | fail: | |
3258 | setup_stub_lkb(ls, ms); | |
3259 | send_request_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error); | |
3260 | } | |
3261 | ||
3262 | static void receive_convert(struct dlm_ls *ls, struct dlm_message *ms) | |
3263 | { | |
3264 | struct dlm_lkb *lkb; | |
3265 | struct dlm_rsb *r; | |
90135925 | 3266 | int error, reply = 1; |
e7fd4179 DT |
3267 | |
3268 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3269 | if (error) | |
3270 | goto fail; | |
3271 | ||
3272 | r = lkb->lkb_resource; | |
3273 | ||
3274 | hold_rsb(r); | |
3275 | lock_rsb(r); | |
3276 | ||
c54e04b0 DT |
3277 | error = validate_message(lkb, ms); |
3278 | if (error) | |
3279 | goto out; | |
3280 | ||
e7fd4179 | 3281 | receive_flags(lkb, ms); |
cf6620ac | 3282 | |
e7fd4179 | 3283 | error = receive_convert_args(ls, lkb, ms); |
cf6620ac DT |
3284 | if (error) { |
3285 | send_convert_reply(r, lkb, error); | |
3286 | goto out; | |
3287 | } | |
3288 | ||
e7fd4179 DT |
3289 | reply = !down_conversion(lkb); |
3290 | ||
3291 | error = do_convert(r, lkb); | |
e7fd4179 DT |
3292 | if (reply) |
3293 | send_convert_reply(r, lkb, error); | |
cf6620ac | 3294 | do_convert_effects(r, lkb, error); |
c54e04b0 | 3295 | out: |
e7fd4179 DT |
3296 | unlock_rsb(r); |
3297 | put_rsb(r); | |
b3f58d8f | 3298 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3299 | return; |
3300 | ||
3301 | fail: | |
3302 | setup_stub_lkb(ls, ms); | |
3303 | send_convert_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error); | |
3304 | } | |
3305 | ||
3306 | static void receive_unlock(struct dlm_ls *ls, struct dlm_message *ms) | |
3307 | { | |
3308 | struct dlm_lkb *lkb; | |
3309 | struct dlm_rsb *r; | |
3310 | int error; | |
3311 | ||
3312 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3313 | if (error) | |
3314 | goto fail; | |
3315 | ||
3316 | r = lkb->lkb_resource; | |
3317 | ||
3318 | hold_rsb(r); | |
3319 | lock_rsb(r); | |
3320 | ||
c54e04b0 DT |
3321 | error = validate_message(lkb, ms); |
3322 | if (error) | |
3323 | goto out; | |
3324 | ||
e7fd4179 | 3325 | receive_flags(lkb, ms); |
cf6620ac | 3326 | |
e7fd4179 | 3327 | error = receive_unlock_args(ls, lkb, ms); |
cf6620ac DT |
3328 | if (error) { |
3329 | send_unlock_reply(r, lkb, error); | |
3330 | goto out; | |
3331 | } | |
e7fd4179 DT |
3332 | |
3333 | error = do_unlock(r, lkb); | |
e7fd4179 | 3334 | send_unlock_reply(r, lkb, error); |
cf6620ac | 3335 | do_unlock_effects(r, lkb, error); |
c54e04b0 | 3336 | out: |
e7fd4179 DT |
3337 | unlock_rsb(r); |
3338 | put_rsb(r); | |
b3f58d8f | 3339 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3340 | return; |
3341 | ||
3342 | fail: | |
3343 | setup_stub_lkb(ls, ms); | |
3344 | send_unlock_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error); | |
3345 | } | |
3346 | ||
3347 | static void receive_cancel(struct dlm_ls *ls, struct dlm_message *ms) | |
3348 | { | |
3349 | struct dlm_lkb *lkb; | |
3350 | struct dlm_rsb *r; | |
3351 | int error; | |
3352 | ||
3353 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3354 | if (error) | |
3355 | goto fail; | |
3356 | ||
3357 | receive_flags(lkb, ms); | |
3358 | ||
3359 | r = lkb->lkb_resource; | |
3360 | ||
3361 | hold_rsb(r); | |
3362 | lock_rsb(r); | |
3363 | ||
c54e04b0 DT |
3364 | error = validate_message(lkb, ms); |
3365 | if (error) | |
3366 | goto out; | |
3367 | ||
e7fd4179 DT |
3368 | error = do_cancel(r, lkb); |
3369 | send_cancel_reply(r, lkb, error); | |
cf6620ac | 3370 | do_cancel_effects(r, lkb, error); |
c54e04b0 | 3371 | out: |
e7fd4179 DT |
3372 | unlock_rsb(r); |
3373 | put_rsb(r); | |
b3f58d8f | 3374 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3375 | return; |
3376 | ||
3377 | fail: | |
3378 | setup_stub_lkb(ls, ms); | |
3379 | send_cancel_reply(&ls->ls_stub_rsb, &ls->ls_stub_lkb, error); | |
3380 | } | |
3381 | ||
3382 | static void receive_grant(struct dlm_ls *ls, struct dlm_message *ms) | |
3383 | { | |
3384 | struct dlm_lkb *lkb; | |
3385 | struct dlm_rsb *r; | |
3386 | int error; | |
3387 | ||
3388 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3389 | if (error) { | |
c54e04b0 DT |
3390 | log_debug(ls, "receive_grant from %d no lkb %x", |
3391 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3392 | return; |
3393 | } | |
e7fd4179 DT |
3394 | |
3395 | r = lkb->lkb_resource; | |
3396 | ||
3397 | hold_rsb(r); | |
3398 | lock_rsb(r); | |
3399 | ||
c54e04b0 DT |
3400 | error = validate_message(lkb, ms); |
3401 | if (error) | |
3402 | goto out; | |
3403 | ||
e7fd4179 | 3404 | receive_flags_reply(lkb, ms); |
7d3c1feb DT |
3405 | if (is_altmode(lkb)) |
3406 | munge_altmode(lkb, ms); | |
e7fd4179 DT |
3407 | grant_lock_pc(r, lkb, ms); |
3408 | queue_cast(r, lkb, 0); | |
c54e04b0 | 3409 | out: |
e7fd4179 DT |
3410 | unlock_rsb(r); |
3411 | put_rsb(r); | |
b3f58d8f | 3412 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3413 | } |
3414 | ||
3415 | static void receive_bast(struct dlm_ls *ls, struct dlm_message *ms) | |
3416 | { | |
3417 | struct dlm_lkb *lkb; | |
3418 | struct dlm_rsb *r; | |
3419 | int error; | |
3420 | ||
3421 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3422 | if (error) { | |
c54e04b0 DT |
3423 | log_debug(ls, "receive_bast from %d no lkb %x", |
3424 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3425 | return; |
3426 | } | |
e7fd4179 DT |
3427 | |
3428 | r = lkb->lkb_resource; | |
3429 | ||
3430 | hold_rsb(r); | |
3431 | lock_rsb(r); | |
3432 | ||
c54e04b0 DT |
3433 | error = validate_message(lkb, ms); |
3434 | if (error) | |
3435 | goto out; | |
e7fd4179 | 3436 | |
c54e04b0 DT |
3437 | queue_bast(r, lkb, ms->m_bastmode); |
3438 | out: | |
e7fd4179 DT |
3439 | unlock_rsb(r); |
3440 | put_rsb(r); | |
b3f58d8f | 3441 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3442 | } |
3443 | ||
3444 | static void receive_lookup(struct dlm_ls *ls, struct dlm_message *ms) | |
3445 | { | |
3446 | int len, error, ret_nodeid, dir_nodeid, from_nodeid, our_nodeid; | |
3447 | ||
3448 | from_nodeid = ms->m_header.h_nodeid; | |
3449 | our_nodeid = dlm_our_nodeid(); | |
3450 | ||
3451 | len = receive_extralen(ms); | |
3452 | ||
3453 | dir_nodeid = dlm_hash2nodeid(ls, ms->m_hash); | |
3454 | if (dir_nodeid != our_nodeid) { | |
3455 | log_error(ls, "lookup dir_nodeid %d from %d", | |
3456 | dir_nodeid, from_nodeid); | |
3457 | error = -EINVAL; | |
3458 | ret_nodeid = -1; | |
3459 | goto out; | |
3460 | } | |
3461 | ||
3462 | error = dlm_dir_lookup(ls, from_nodeid, ms->m_extra, len, &ret_nodeid); | |
3463 | ||
3464 | /* Optimization: we're master so treat lookup as a request */ | |
3465 | if (!error && ret_nodeid == our_nodeid) { | |
3466 | receive_request(ls, ms); | |
3467 | return; | |
3468 | } | |
3469 | out: | |
3470 | send_lookup_reply(ls, ms, ret_nodeid, error); | |
3471 | } | |
3472 | ||
3473 | static void receive_remove(struct dlm_ls *ls, struct dlm_message *ms) | |
3474 | { | |
3475 | int len, dir_nodeid, from_nodeid; | |
3476 | ||
3477 | from_nodeid = ms->m_header.h_nodeid; | |
3478 | ||
3479 | len = receive_extralen(ms); | |
3480 | ||
3481 | dir_nodeid = dlm_hash2nodeid(ls, ms->m_hash); | |
3482 | if (dir_nodeid != dlm_our_nodeid()) { | |
3483 | log_error(ls, "remove dir entry dir_nodeid %d from %d", | |
3484 | dir_nodeid, from_nodeid); | |
3485 | return; | |
3486 | } | |
3487 | ||
3488 | dlm_dir_remove_entry(ls, from_nodeid, ms->m_extra, len); | |
3489 | } | |
3490 | ||
8499137d DT |
3491 | static void receive_purge(struct dlm_ls *ls, struct dlm_message *ms) |
3492 | { | |
3493 | do_purge(ls, ms->m_nodeid, ms->m_pid); | |
3494 | } | |
3495 | ||
e7fd4179 DT |
3496 | static void receive_request_reply(struct dlm_ls *ls, struct dlm_message *ms) |
3497 | { | |
3498 | struct dlm_lkb *lkb; | |
3499 | struct dlm_rsb *r; | |
ef0c2bb0 | 3500 | int error, mstype, result; |
e7fd4179 DT |
3501 | |
3502 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3503 | if (error) { | |
c54e04b0 DT |
3504 | log_debug(ls, "receive_request_reply from %d no lkb %x", |
3505 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3506 | return; |
3507 | } | |
e7fd4179 | 3508 | |
e7fd4179 DT |
3509 | r = lkb->lkb_resource; |
3510 | hold_rsb(r); | |
3511 | lock_rsb(r); | |
3512 | ||
c54e04b0 DT |
3513 | error = validate_message(lkb, ms); |
3514 | if (error) | |
3515 | goto out; | |
3516 | ||
ef0c2bb0 DT |
3517 | mstype = lkb->lkb_wait_type; |
3518 | error = remove_from_waiters(lkb, DLM_MSG_REQUEST_REPLY); | |
3519 | if (error) | |
3520 | goto out; | |
3521 | ||
e7fd4179 DT |
3522 | /* Optimization: the dir node was also the master, so it took our |
3523 | lookup as a request and sent request reply instead of lookup reply */ | |
3524 | if (mstype == DLM_MSG_LOOKUP) { | |
3525 | r->res_nodeid = ms->m_header.h_nodeid; | |
3526 | lkb->lkb_nodeid = r->res_nodeid; | |
3527 | } | |
3528 | ||
ef0c2bb0 DT |
3529 | /* this is the value returned from do_request() on the master */ |
3530 | result = ms->m_result; | |
3531 | ||
3532 | switch (result) { | |
e7fd4179 | 3533 | case -EAGAIN: |
ef0c2bb0 | 3534 | /* request would block (be queued) on remote master */ |
e7fd4179 DT |
3535 | queue_cast(r, lkb, -EAGAIN); |
3536 | confirm_master(r, -EAGAIN); | |
ef0c2bb0 | 3537 | unhold_lkb(lkb); /* undoes create_lkb() */ |
e7fd4179 DT |
3538 | break; |
3539 | ||
3540 | case -EINPROGRESS: | |
3541 | case 0: | |
3542 | /* request was queued or granted on remote master */ | |
3543 | receive_flags_reply(lkb, ms); | |
3544 | lkb->lkb_remid = ms->m_lkid; | |
7d3c1feb DT |
3545 | if (is_altmode(lkb)) |
3546 | munge_altmode(lkb, ms); | |
3ae1acf9 | 3547 | if (result) { |
e7fd4179 | 3548 | add_lkb(r, lkb, DLM_LKSTS_WAITING); |
3ae1acf9 DT |
3549 | add_timeout(lkb); |
3550 | } else { | |
e7fd4179 DT |
3551 | grant_lock_pc(r, lkb, ms); |
3552 | queue_cast(r, lkb, 0); | |
3553 | } | |
ef0c2bb0 | 3554 | confirm_master(r, result); |
e7fd4179 DT |
3555 | break; |
3556 | ||
597d0cae | 3557 | case -EBADR: |
e7fd4179 DT |
3558 | case -ENOTBLK: |
3559 | /* find_rsb failed to find rsb or rsb wasn't master */ | |
ef0c2bb0 DT |
3560 | log_debug(ls, "receive_request_reply %x %x master diff %d %d", |
3561 | lkb->lkb_id, lkb->lkb_flags, r->res_nodeid, result); | |
e7fd4179 DT |
3562 | r->res_nodeid = -1; |
3563 | lkb->lkb_nodeid = -1; | |
ef0c2bb0 DT |
3564 | |
3565 | if (is_overlap(lkb)) { | |
3566 | /* we'll ignore error in cancel/unlock reply */ | |
3567 | queue_cast_overlap(r, lkb); | |
aec64e1b | 3568 | confirm_master(r, result); |
ef0c2bb0 DT |
3569 | unhold_lkb(lkb); /* undoes create_lkb() */ |
3570 | } else | |
3571 | _request_lock(r, lkb); | |
e7fd4179 DT |
3572 | break; |
3573 | ||
3574 | default: | |
ef0c2bb0 DT |
3575 | log_error(ls, "receive_request_reply %x error %d", |
3576 | lkb->lkb_id, result); | |
e7fd4179 DT |
3577 | } |
3578 | ||
ef0c2bb0 DT |
3579 | if (is_overlap_unlock(lkb) && (result == 0 || result == -EINPROGRESS)) { |
3580 | log_debug(ls, "receive_request_reply %x result %d unlock", | |
3581 | lkb->lkb_id, result); | |
3582 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; | |
3583 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; | |
3584 | send_unlock(r, lkb); | |
3585 | } else if (is_overlap_cancel(lkb) && (result == -EINPROGRESS)) { | |
3586 | log_debug(ls, "receive_request_reply %x cancel", lkb->lkb_id); | |
3587 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; | |
3588 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; | |
3589 | send_cancel(r, lkb); | |
3590 | } else { | |
3591 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; | |
3592 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; | |
3593 | } | |
3594 | out: | |
e7fd4179 DT |
3595 | unlock_rsb(r); |
3596 | put_rsb(r); | |
b3f58d8f | 3597 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3598 | } |
3599 | ||
3600 | static void __receive_convert_reply(struct dlm_rsb *r, struct dlm_lkb *lkb, | |
3601 | struct dlm_message *ms) | |
3602 | { | |
e7fd4179 | 3603 | /* this is the value returned from do_convert() on the master */ |
ef0c2bb0 | 3604 | switch (ms->m_result) { |
e7fd4179 DT |
3605 | case -EAGAIN: |
3606 | /* convert would block (be queued) on remote master */ | |
3607 | queue_cast(r, lkb, -EAGAIN); | |
3608 | break; | |
3609 | ||
c85d65e9 DT |
3610 | case -EDEADLK: |
3611 | receive_flags_reply(lkb, ms); | |
3612 | revert_lock_pc(r, lkb); | |
3613 | queue_cast(r, lkb, -EDEADLK); | |
3614 | break; | |
3615 | ||
e7fd4179 DT |
3616 | case -EINPROGRESS: |
3617 | /* convert was queued on remote master */ | |
7d3c1feb DT |
3618 | receive_flags_reply(lkb, ms); |
3619 | if (is_demoted(lkb)) | |
3620 | munge_demoted(lkb, ms); | |
e7fd4179 DT |
3621 | del_lkb(r, lkb); |
3622 | add_lkb(r, lkb, DLM_LKSTS_CONVERT); | |
3ae1acf9 | 3623 | add_timeout(lkb); |
e7fd4179 DT |
3624 | break; |
3625 | ||
3626 | case 0: | |
3627 | /* convert was granted on remote master */ | |
3628 | receive_flags_reply(lkb, ms); | |
7d3c1feb DT |
3629 | if (is_demoted(lkb)) |
3630 | munge_demoted(lkb, ms); | |
e7fd4179 DT |
3631 | grant_lock_pc(r, lkb, ms); |
3632 | queue_cast(r, lkb, 0); | |
3633 | break; | |
3634 | ||
3635 | default: | |
ef0c2bb0 DT |
3636 | log_error(r->res_ls, "receive_convert_reply %x error %d", |
3637 | lkb->lkb_id, ms->m_result); | |
e7fd4179 DT |
3638 | } |
3639 | } | |
3640 | ||
3641 | static void _receive_convert_reply(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3642 | { | |
3643 | struct dlm_rsb *r = lkb->lkb_resource; | |
ef0c2bb0 | 3644 | int error; |
e7fd4179 DT |
3645 | |
3646 | hold_rsb(r); | |
3647 | lock_rsb(r); | |
3648 | ||
c54e04b0 DT |
3649 | error = validate_message(lkb, ms); |
3650 | if (error) | |
3651 | goto out; | |
3652 | ||
ef0c2bb0 DT |
3653 | /* stub reply can happen with waiters_mutex held */ |
3654 | error = remove_from_waiters_ms(lkb, ms); | |
3655 | if (error) | |
3656 | goto out; | |
e7fd4179 | 3657 | |
ef0c2bb0 DT |
3658 | __receive_convert_reply(r, lkb, ms); |
3659 | out: | |
e7fd4179 DT |
3660 | unlock_rsb(r); |
3661 | put_rsb(r); | |
3662 | } | |
3663 | ||
3664 | static void receive_convert_reply(struct dlm_ls *ls, struct dlm_message *ms) | |
3665 | { | |
3666 | struct dlm_lkb *lkb; | |
3667 | int error; | |
3668 | ||
3669 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3670 | if (error) { | |
c54e04b0 DT |
3671 | log_debug(ls, "receive_convert_reply from %d no lkb %x", |
3672 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3673 | return; |
3674 | } | |
e7fd4179 | 3675 | |
e7fd4179 | 3676 | _receive_convert_reply(lkb, ms); |
b3f58d8f | 3677 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3678 | } |
3679 | ||
3680 | static void _receive_unlock_reply(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3681 | { | |
3682 | struct dlm_rsb *r = lkb->lkb_resource; | |
ef0c2bb0 | 3683 | int error; |
e7fd4179 DT |
3684 | |
3685 | hold_rsb(r); | |
3686 | lock_rsb(r); | |
3687 | ||
c54e04b0 DT |
3688 | error = validate_message(lkb, ms); |
3689 | if (error) | |
3690 | goto out; | |
3691 | ||
ef0c2bb0 DT |
3692 | /* stub reply can happen with waiters_mutex held */ |
3693 | error = remove_from_waiters_ms(lkb, ms); | |
3694 | if (error) | |
3695 | goto out; | |
3696 | ||
e7fd4179 DT |
3697 | /* this is the value returned from do_unlock() on the master */ |
3698 | ||
ef0c2bb0 | 3699 | switch (ms->m_result) { |
e7fd4179 DT |
3700 | case -DLM_EUNLOCK: |
3701 | receive_flags_reply(lkb, ms); | |
3702 | remove_lock_pc(r, lkb); | |
3703 | queue_cast(r, lkb, -DLM_EUNLOCK); | |
3704 | break; | |
ef0c2bb0 DT |
3705 | case -ENOENT: |
3706 | break; | |
e7fd4179 | 3707 | default: |
ef0c2bb0 DT |
3708 | log_error(r->res_ls, "receive_unlock_reply %x error %d", |
3709 | lkb->lkb_id, ms->m_result); | |
e7fd4179 | 3710 | } |
ef0c2bb0 | 3711 | out: |
e7fd4179 DT |
3712 | unlock_rsb(r); |
3713 | put_rsb(r); | |
3714 | } | |
3715 | ||
3716 | static void receive_unlock_reply(struct dlm_ls *ls, struct dlm_message *ms) | |
3717 | { | |
3718 | struct dlm_lkb *lkb; | |
3719 | int error; | |
3720 | ||
3721 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3722 | if (error) { | |
c54e04b0 DT |
3723 | log_debug(ls, "receive_unlock_reply from %d no lkb %x", |
3724 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3725 | return; |
3726 | } | |
e7fd4179 | 3727 | |
e7fd4179 | 3728 | _receive_unlock_reply(lkb, ms); |
b3f58d8f | 3729 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3730 | } |
3731 | ||
3732 | static void _receive_cancel_reply(struct dlm_lkb *lkb, struct dlm_message *ms) | |
3733 | { | |
3734 | struct dlm_rsb *r = lkb->lkb_resource; | |
ef0c2bb0 | 3735 | int error; |
e7fd4179 DT |
3736 | |
3737 | hold_rsb(r); | |
3738 | lock_rsb(r); | |
3739 | ||
c54e04b0 DT |
3740 | error = validate_message(lkb, ms); |
3741 | if (error) | |
3742 | goto out; | |
3743 | ||
ef0c2bb0 DT |
3744 | /* stub reply can happen with waiters_mutex held */ |
3745 | error = remove_from_waiters_ms(lkb, ms); | |
3746 | if (error) | |
3747 | goto out; | |
3748 | ||
e7fd4179 DT |
3749 | /* this is the value returned from do_cancel() on the master */ |
3750 | ||
ef0c2bb0 | 3751 | switch (ms->m_result) { |
e7fd4179 DT |
3752 | case -DLM_ECANCEL: |
3753 | receive_flags_reply(lkb, ms); | |
3754 | revert_lock_pc(r, lkb); | |
84d8cd69 | 3755 | queue_cast(r, lkb, -DLM_ECANCEL); |
ef0c2bb0 DT |
3756 | break; |
3757 | case 0: | |
e7fd4179 DT |
3758 | break; |
3759 | default: | |
ef0c2bb0 DT |
3760 | log_error(r->res_ls, "receive_cancel_reply %x error %d", |
3761 | lkb->lkb_id, ms->m_result); | |
e7fd4179 | 3762 | } |
ef0c2bb0 | 3763 | out: |
e7fd4179 DT |
3764 | unlock_rsb(r); |
3765 | put_rsb(r); | |
3766 | } | |
3767 | ||
3768 | static void receive_cancel_reply(struct dlm_ls *ls, struct dlm_message *ms) | |
3769 | { | |
3770 | struct dlm_lkb *lkb; | |
3771 | int error; | |
3772 | ||
3773 | error = find_lkb(ls, ms->m_remid, &lkb); | |
3774 | if (error) { | |
c54e04b0 DT |
3775 | log_debug(ls, "receive_cancel_reply from %d no lkb %x", |
3776 | ms->m_header.h_nodeid, ms->m_remid); | |
e7fd4179 DT |
3777 | return; |
3778 | } | |
e7fd4179 | 3779 | |
e7fd4179 | 3780 | _receive_cancel_reply(lkb, ms); |
b3f58d8f | 3781 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3782 | } |
3783 | ||
3784 | static void receive_lookup_reply(struct dlm_ls *ls, struct dlm_message *ms) | |
3785 | { | |
3786 | struct dlm_lkb *lkb; | |
3787 | struct dlm_rsb *r; | |
3788 | int error, ret_nodeid; | |
3789 | ||
3790 | error = find_lkb(ls, ms->m_lkid, &lkb); | |
3791 | if (error) { | |
3792 | log_error(ls, "receive_lookup_reply no lkb"); | |
3793 | return; | |
3794 | } | |
3795 | ||
ef0c2bb0 | 3796 | /* ms->m_result is the value returned by dlm_dir_lookup on dir node |
e7fd4179 | 3797 | FIXME: will a non-zero error ever be returned? */ |
e7fd4179 DT |
3798 | |
3799 | r = lkb->lkb_resource; | |
3800 | hold_rsb(r); | |
3801 | lock_rsb(r); | |
3802 | ||
ef0c2bb0 DT |
3803 | error = remove_from_waiters(lkb, DLM_MSG_LOOKUP_REPLY); |
3804 | if (error) | |
3805 | goto out; | |
3806 | ||
e7fd4179 DT |
3807 | ret_nodeid = ms->m_nodeid; |
3808 | if (ret_nodeid == dlm_our_nodeid()) { | |
3809 | r->res_nodeid = 0; | |
3810 | ret_nodeid = 0; | |
3811 | r->res_first_lkid = 0; | |
3812 | } else { | |
3813 | /* set_master() will copy res_nodeid to lkb_nodeid */ | |
3814 | r->res_nodeid = ret_nodeid; | |
3815 | } | |
3816 | ||
ef0c2bb0 DT |
3817 | if (is_overlap(lkb)) { |
3818 | log_debug(ls, "receive_lookup_reply %x unlock %x", | |
3819 | lkb->lkb_id, lkb->lkb_flags); | |
3820 | queue_cast_overlap(r, lkb); | |
3821 | unhold_lkb(lkb); /* undoes create_lkb() */ | |
3822 | goto out_list; | |
3823 | } | |
3824 | ||
e7fd4179 DT |
3825 | _request_lock(r, lkb); |
3826 | ||
ef0c2bb0 | 3827 | out_list: |
e7fd4179 DT |
3828 | if (!ret_nodeid) |
3829 | process_lookup_list(r); | |
ef0c2bb0 | 3830 | out: |
e7fd4179 DT |
3831 | unlock_rsb(r); |
3832 | put_rsb(r); | |
b3f58d8f | 3833 | dlm_put_lkb(lkb); |
e7fd4179 DT |
3834 | } |
3835 | ||
c36258b5 | 3836 | static void _receive_message(struct dlm_ls *ls, struct dlm_message *ms) |
e7fd4179 | 3837 | { |
46b43eed DT |
3838 | if (!dlm_is_member(ls, ms->m_header.h_nodeid)) { |
3839 | log_debug(ls, "ignore non-member message %d from %d %x %x %d", | |
3840 | ms->m_type, ms->m_header.h_nodeid, ms->m_lkid, | |
3841 | ms->m_remid, ms->m_result); | |
3842 | return; | |
3843 | } | |
3844 | ||
e7fd4179 DT |
3845 | switch (ms->m_type) { |
3846 | ||
3847 | /* messages sent to a master node */ | |
3848 | ||
3849 | case DLM_MSG_REQUEST: | |
3850 | receive_request(ls, ms); | |
3851 | break; | |
3852 | ||
3853 | case DLM_MSG_CONVERT: | |
3854 | receive_convert(ls, ms); | |
3855 | break; | |
3856 | ||
3857 | case DLM_MSG_UNLOCK: | |
3858 | receive_unlock(ls, ms); | |
3859 | break; | |
3860 | ||
3861 | case DLM_MSG_CANCEL: | |
3862 | receive_cancel(ls, ms); | |
3863 | break; | |
3864 | ||
3865 | /* messages sent from a master node (replies to above) */ | |
3866 | ||
3867 | case DLM_MSG_REQUEST_REPLY: | |
3868 | receive_request_reply(ls, ms); | |
3869 | break; | |
3870 | ||
3871 | case DLM_MSG_CONVERT_REPLY: | |
3872 | receive_convert_reply(ls, ms); | |
3873 | break; | |
3874 | ||
3875 | case DLM_MSG_UNLOCK_REPLY: | |
3876 | receive_unlock_reply(ls, ms); | |
3877 | break; | |
3878 | ||
3879 | case DLM_MSG_CANCEL_REPLY: | |
3880 | receive_cancel_reply(ls, ms); | |
3881 | break; | |
3882 | ||
3883 | /* messages sent from a master node (only two types of async msg) */ | |
3884 | ||
3885 | case DLM_MSG_GRANT: | |
3886 | receive_grant(ls, ms); | |
3887 | break; | |
3888 | ||
3889 | case DLM_MSG_BAST: | |
3890 | receive_bast(ls, ms); | |
3891 | break; | |
3892 | ||
3893 | /* messages sent to a dir node */ | |
3894 | ||
3895 | case DLM_MSG_LOOKUP: | |
3896 | receive_lookup(ls, ms); | |
3897 | break; | |
3898 | ||
3899 | case DLM_MSG_REMOVE: | |
3900 | receive_remove(ls, ms); | |
3901 | break; | |
3902 | ||
3903 | /* messages sent from a dir node (remove has no reply) */ | |
3904 | ||
3905 | case DLM_MSG_LOOKUP_REPLY: | |
3906 | receive_lookup_reply(ls, ms); | |
3907 | break; | |
3908 | ||
8499137d DT |
3909 | /* other messages */ |
3910 | ||
3911 | case DLM_MSG_PURGE: | |
3912 | receive_purge(ls, ms); | |
3913 | break; | |
3914 | ||
e7fd4179 DT |
3915 | default: |
3916 | log_error(ls, "unknown message type %d", ms->m_type); | |
3917 | } | |
3918 | ||
e7fd4179 | 3919 | dlm_astd_wake(); |
e7fd4179 DT |
3920 | } |
3921 | ||
c36258b5 DT |
3922 | /* If the lockspace is in recovery mode (locking stopped), then normal |
3923 | messages are saved on the requestqueue for processing after recovery is | |
3924 | done. When not in recovery mode, we wait for dlm_recoverd to drain saved | |
3925 | messages off the requestqueue before we process new ones. This occurs right | |
3926 | after recovery completes when we transition from saving all messages on | |
3927 | requestqueue, to processing all the saved messages, to processing new | |
3928 | messages as they arrive. */ | |
e7fd4179 | 3929 | |
c36258b5 DT |
3930 | static void dlm_receive_message(struct dlm_ls *ls, struct dlm_message *ms, |
3931 | int nodeid) | |
3932 | { | |
3933 | if (dlm_locking_stopped(ls)) { | |
8b0d8e03 | 3934 | dlm_add_requestqueue(ls, nodeid, ms); |
c36258b5 DT |
3935 | } else { |
3936 | dlm_wait_requestqueue(ls); | |
3937 | _receive_message(ls, ms); | |
3938 | } | |
3939 | } | |
3940 | ||
3941 | /* This is called by dlm_recoverd to process messages that were saved on | |
3942 | the requestqueue. */ | |
3943 | ||
3944 | void dlm_receive_message_saved(struct dlm_ls *ls, struct dlm_message *ms) | |
3945 | { | |
3946 | _receive_message(ls, ms); | |
3947 | } | |
3948 | ||
3949 | /* This is called by the midcomms layer when something is received for | |
3950 | the lockspace. It could be either a MSG (normal message sent as part of | |
3951 | standard locking activity) or an RCOM (recovery message sent as part of | |
3952 | lockspace recovery). */ | |
3953 | ||
eef7d739 | 3954 | void dlm_receive_buffer(union dlm_packet *p, int nodeid) |
c36258b5 | 3955 | { |
eef7d739 | 3956 | struct dlm_header *hd = &p->header; |
c36258b5 DT |
3957 | struct dlm_ls *ls; |
3958 | int type = 0; | |
3959 | ||
3960 | switch (hd->h_cmd) { | |
3961 | case DLM_MSG: | |
eef7d739 AV |
3962 | dlm_message_in(&p->message); |
3963 | type = p->message.m_type; | |
c36258b5 DT |
3964 | break; |
3965 | case DLM_RCOM: | |
eef7d739 AV |
3966 | dlm_rcom_in(&p->rcom); |
3967 | type = p->rcom.rc_type; | |
c36258b5 DT |
3968 | break; |
3969 | default: | |
3970 | log_print("invalid h_cmd %d from %u", hd->h_cmd, nodeid); | |
3971 | return; | |
3972 | } | |
3973 | ||
3974 | if (hd->h_nodeid != nodeid) { | |
3975 | log_print("invalid h_nodeid %d from %d lockspace %x", | |
3976 | hd->h_nodeid, nodeid, hd->h_lockspace); | |
3977 | return; | |
3978 | } | |
3979 | ||
3980 | ls = dlm_find_lockspace_global(hd->h_lockspace); | |
3981 | if (!ls) { | |
594199eb DT |
3982 | if (dlm_config.ci_log_debug) |
3983 | log_print("invalid lockspace %x from %d cmd %d type %d", | |
3984 | hd->h_lockspace, nodeid, hd->h_cmd, type); | |
c36258b5 DT |
3985 | |
3986 | if (hd->h_cmd == DLM_RCOM && type == DLM_RCOM_STATUS) | |
eef7d739 | 3987 | dlm_send_ls_not_ready(nodeid, &p->rcom); |
c36258b5 DT |
3988 | return; |
3989 | } | |
3990 | ||
3991 | /* this rwsem allows dlm_ls_stop() to wait for all dlm_recv threads to | |
3992 | be inactive (in this ls) before transitioning to recovery mode */ | |
3993 | ||
3994 | down_read(&ls->ls_recv_active); | |
3995 | if (hd->h_cmd == DLM_MSG) | |
eef7d739 | 3996 | dlm_receive_message(ls, &p->message, nodeid); |
c36258b5 | 3997 | else |
eef7d739 | 3998 | dlm_receive_rcom(ls, &p->rcom, nodeid); |
c36258b5 DT |
3999 | up_read(&ls->ls_recv_active); |
4000 | ||
4001 | dlm_put_lockspace(ls); | |
4002 | } | |
e7fd4179 DT |
4003 | |
4004 | static void recover_convert_waiter(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
4005 | { | |
4006 | if (middle_conversion(lkb)) { | |
4007 | hold_lkb(lkb); | |
ef0c2bb0 | 4008 | ls->ls_stub_ms.m_type = DLM_MSG_CONVERT_REPLY; |
e7fd4179 | 4009 | ls->ls_stub_ms.m_result = -EINPROGRESS; |
075529b5 | 4010 | ls->ls_stub_ms.m_flags = lkb->lkb_flags; |
c54e04b0 | 4011 | ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid; |
e7fd4179 DT |
4012 | _receive_convert_reply(lkb, &ls->ls_stub_ms); |
4013 | ||
4014 | /* Same special case as in receive_rcom_lock_args() */ | |
4015 | lkb->lkb_grmode = DLM_LOCK_IV; | |
4016 | rsb_set_flag(lkb->lkb_resource, RSB_RECOVER_CONVERT); | |
4017 | unhold_lkb(lkb); | |
4018 | ||
4019 | } else if (lkb->lkb_rqmode >= lkb->lkb_grmode) { | |
4020 | lkb->lkb_flags |= DLM_IFL_RESEND; | |
4021 | } | |
4022 | ||
4023 | /* lkb->lkb_rqmode < lkb->lkb_grmode shouldn't happen since down | |
4024 | conversions are async; there's no reply from the remote master */ | |
4025 | } | |
4026 | ||
4027 | /* A waiting lkb needs recovery if the master node has failed, or | |
4028 | the master node is changing (only when no directory is used) */ | |
4029 | ||
4030 | static int waiter_needs_recovery(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
4031 | { | |
4032 | if (dlm_is_removed(ls, lkb->lkb_nodeid)) | |
4033 | return 1; | |
4034 | ||
4035 | if (!dlm_no_directory(ls)) | |
4036 | return 0; | |
4037 | ||
4038 | if (dlm_dir_nodeid(lkb->lkb_resource) != lkb->lkb_nodeid) | |
4039 | return 1; | |
4040 | ||
4041 | return 0; | |
4042 | } | |
4043 | ||
4044 | /* Recovery for locks that are waiting for replies from nodes that are now | |
4045 | gone. We can just complete unlocks and cancels by faking a reply from the | |
4046 | dead node. Requests and up-conversions we flag to be resent after | |
4047 | recovery. Down-conversions can just be completed with a fake reply like | |
4048 | unlocks. Conversions between PR and CW need special attention. */ | |
4049 | ||
4050 | void dlm_recover_waiters_pre(struct dlm_ls *ls) | |
4051 | { | |
4052 | struct dlm_lkb *lkb, *safe; | |
601342ce | 4053 | int wait_type, stub_unlock_result, stub_cancel_result; |
e7fd4179 | 4054 | |
90135925 | 4055 | mutex_lock(&ls->ls_waiters_mutex); |
e7fd4179 DT |
4056 | |
4057 | list_for_each_entry_safe(lkb, safe, &ls->ls_waiters, lkb_wait_reply) { | |
4058 | log_debug(ls, "pre recover waiter lkid %x type %d flags %x", | |
4059 | lkb->lkb_id, lkb->lkb_wait_type, lkb->lkb_flags); | |
4060 | ||
4061 | /* all outstanding lookups, regardless of destination will be | |
4062 | resent after recovery is done */ | |
4063 | ||
4064 | if (lkb->lkb_wait_type == DLM_MSG_LOOKUP) { | |
4065 | lkb->lkb_flags |= DLM_IFL_RESEND; | |
4066 | continue; | |
4067 | } | |
4068 | ||
4069 | if (!waiter_needs_recovery(ls, lkb)) | |
4070 | continue; | |
4071 | ||
601342ce DT |
4072 | wait_type = lkb->lkb_wait_type; |
4073 | stub_unlock_result = -DLM_EUNLOCK; | |
4074 | stub_cancel_result = -DLM_ECANCEL; | |
4075 | ||
4076 | /* Main reply may have been received leaving a zero wait_type, | |
4077 | but a reply for the overlapping op may not have been | |
4078 | received. In that case we need to fake the appropriate | |
4079 | reply for the overlap op. */ | |
4080 | ||
4081 | if (!wait_type) { | |
4082 | if (is_overlap_cancel(lkb)) { | |
4083 | wait_type = DLM_MSG_CANCEL; | |
4084 | if (lkb->lkb_grmode == DLM_LOCK_IV) | |
4085 | stub_cancel_result = 0; | |
4086 | } | |
4087 | if (is_overlap_unlock(lkb)) { | |
4088 | wait_type = DLM_MSG_UNLOCK; | |
4089 | if (lkb->lkb_grmode == DLM_LOCK_IV) | |
4090 | stub_unlock_result = -ENOENT; | |
4091 | } | |
4092 | ||
4093 | log_debug(ls, "rwpre overlap %x %x %d %d %d", | |
4094 | lkb->lkb_id, lkb->lkb_flags, wait_type, | |
4095 | stub_cancel_result, stub_unlock_result); | |
4096 | } | |
4097 | ||
4098 | switch (wait_type) { | |
e7fd4179 DT |
4099 | |
4100 | case DLM_MSG_REQUEST: | |
4101 | lkb->lkb_flags |= DLM_IFL_RESEND; | |
4102 | break; | |
4103 | ||
4104 | case DLM_MSG_CONVERT: | |
4105 | recover_convert_waiter(ls, lkb); | |
4106 | break; | |
4107 | ||
4108 | case DLM_MSG_UNLOCK: | |
4109 | hold_lkb(lkb); | |
ef0c2bb0 | 4110 | ls->ls_stub_ms.m_type = DLM_MSG_UNLOCK_REPLY; |
601342ce | 4111 | ls->ls_stub_ms.m_result = stub_unlock_result; |
075529b5 | 4112 | ls->ls_stub_ms.m_flags = lkb->lkb_flags; |
c54e04b0 | 4113 | ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid; |
e7fd4179 | 4114 | _receive_unlock_reply(lkb, &ls->ls_stub_ms); |
b3f58d8f | 4115 | dlm_put_lkb(lkb); |
e7fd4179 DT |
4116 | break; |
4117 | ||
4118 | case DLM_MSG_CANCEL: | |
4119 | hold_lkb(lkb); | |
ef0c2bb0 | 4120 | ls->ls_stub_ms.m_type = DLM_MSG_CANCEL_REPLY; |
601342ce | 4121 | ls->ls_stub_ms.m_result = stub_cancel_result; |
075529b5 | 4122 | ls->ls_stub_ms.m_flags = lkb->lkb_flags; |
c54e04b0 | 4123 | ls->ls_stub_ms.m_header.h_nodeid = lkb->lkb_nodeid; |
e7fd4179 | 4124 | _receive_cancel_reply(lkb, &ls->ls_stub_ms); |
b3f58d8f | 4125 | dlm_put_lkb(lkb); |
e7fd4179 DT |
4126 | break; |
4127 | ||
4128 | default: | |
601342ce DT |
4129 | log_error(ls, "invalid lkb wait_type %d %d", |
4130 | lkb->lkb_wait_type, wait_type); | |
e7fd4179 | 4131 | } |
81456807 | 4132 | schedule(); |
e7fd4179 | 4133 | } |
90135925 | 4134 | mutex_unlock(&ls->ls_waiters_mutex); |
e7fd4179 DT |
4135 | } |
4136 | ||
ef0c2bb0 | 4137 | static struct dlm_lkb *find_resend_waiter(struct dlm_ls *ls) |
e7fd4179 DT |
4138 | { |
4139 | struct dlm_lkb *lkb; | |
ef0c2bb0 | 4140 | int found = 0; |
e7fd4179 | 4141 | |
90135925 | 4142 | mutex_lock(&ls->ls_waiters_mutex); |
e7fd4179 DT |
4143 | list_for_each_entry(lkb, &ls->ls_waiters, lkb_wait_reply) { |
4144 | if (lkb->lkb_flags & DLM_IFL_RESEND) { | |
ef0c2bb0 DT |
4145 | hold_lkb(lkb); |
4146 | found = 1; | |
e7fd4179 DT |
4147 | break; |
4148 | } | |
4149 | } | |
90135925 | 4150 | mutex_unlock(&ls->ls_waiters_mutex); |
e7fd4179 | 4151 | |
ef0c2bb0 | 4152 | if (!found) |
e7fd4179 | 4153 | lkb = NULL; |
ef0c2bb0 | 4154 | return lkb; |
e7fd4179 DT |
4155 | } |
4156 | ||
4157 | /* Deal with lookups and lkb's marked RESEND from _pre. We may now be the | |
4158 | master or dir-node for r. Processing the lkb may result in it being placed | |
4159 | back on waiters. */ | |
4160 | ||
ef0c2bb0 DT |
4161 | /* We do this after normal locking has been enabled and any saved messages |
4162 | (in requestqueue) have been processed. We should be confident that at | |
4163 | this point we won't get or process a reply to any of these waiting | |
4164 | operations. But, new ops may be coming in on the rsbs/locks here from | |
4165 | userspace or remotely. */ | |
4166 | ||
4167 | /* there may have been an overlap unlock/cancel prior to recovery or after | |
4168 | recovery. if before, the lkb may still have a pos wait_count; if after, the | |
4169 | overlap flag would just have been set and nothing new sent. we can be | |
4170 | confident here than any replies to either the initial op or overlap ops | |
4171 | prior to recovery have been received. */ | |
4172 | ||
e7fd4179 DT |
4173 | int dlm_recover_waiters_post(struct dlm_ls *ls) |
4174 | { | |
4175 | struct dlm_lkb *lkb; | |
4176 | struct dlm_rsb *r; | |
ef0c2bb0 | 4177 | int error = 0, mstype, err, oc, ou; |
e7fd4179 DT |
4178 | |
4179 | while (1) { | |
4180 | if (dlm_locking_stopped(ls)) { | |
4181 | log_debug(ls, "recover_waiters_post aborted"); | |
4182 | error = -EINTR; | |
4183 | break; | |
4184 | } | |
4185 | ||
ef0c2bb0 DT |
4186 | lkb = find_resend_waiter(ls); |
4187 | if (!lkb) | |
e7fd4179 DT |
4188 | break; |
4189 | ||
4190 | r = lkb->lkb_resource; | |
ef0c2bb0 DT |
4191 | hold_rsb(r); |
4192 | lock_rsb(r); | |
4193 | ||
4194 | mstype = lkb->lkb_wait_type; | |
4195 | oc = is_overlap_cancel(lkb); | |
4196 | ou = is_overlap_unlock(lkb); | |
4197 | err = 0; | |
e7fd4179 DT |
4198 | |
4199 | log_debug(ls, "recover_waiters_post %x type %d flags %x %s", | |
4200 | lkb->lkb_id, mstype, lkb->lkb_flags, r->res_name); | |
4201 | ||
ef0c2bb0 DT |
4202 | /* At this point we assume that we won't get a reply to any |
4203 | previous op or overlap op on this lock. First, do a big | |
4204 | remove_from_waiters() for all previous ops. */ | |
4205 | ||
4206 | lkb->lkb_flags &= ~DLM_IFL_RESEND; | |
4207 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_UNLOCK; | |
4208 | lkb->lkb_flags &= ~DLM_IFL_OVERLAP_CANCEL; | |
4209 | lkb->lkb_wait_type = 0; | |
4210 | lkb->lkb_wait_count = 0; | |
4211 | mutex_lock(&ls->ls_waiters_mutex); | |
4212 | list_del_init(&lkb->lkb_wait_reply); | |
4213 | mutex_unlock(&ls->ls_waiters_mutex); | |
4214 | unhold_lkb(lkb); /* for waiters list */ | |
4215 | ||
4216 | if (oc || ou) { | |
4217 | /* do an unlock or cancel instead of resending */ | |
4218 | switch (mstype) { | |
4219 | case DLM_MSG_LOOKUP: | |
4220 | case DLM_MSG_REQUEST: | |
4221 | queue_cast(r, lkb, ou ? -DLM_EUNLOCK : | |
4222 | -DLM_ECANCEL); | |
4223 | unhold_lkb(lkb); /* undoes create_lkb() */ | |
4224 | break; | |
4225 | case DLM_MSG_CONVERT: | |
4226 | if (oc) { | |
4227 | queue_cast(r, lkb, -DLM_ECANCEL); | |
4228 | } else { | |
4229 | lkb->lkb_exflags |= DLM_LKF_FORCEUNLOCK; | |
4230 | _unlock_lock(r, lkb); | |
4231 | } | |
4232 | break; | |
4233 | default: | |
4234 | err = 1; | |
4235 | } | |
4236 | } else { | |
4237 | switch (mstype) { | |
4238 | case DLM_MSG_LOOKUP: | |
4239 | case DLM_MSG_REQUEST: | |
4240 | _request_lock(r, lkb); | |
4241 | if (is_master(r)) | |
4242 | confirm_master(r, 0); | |
4243 | break; | |
4244 | case DLM_MSG_CONVERT: | |
4245 | _convert_lock(r, lkb); | |
4246 | break; | |
4247 | default: | |
4248 | err = 1; | |
4249 | } | |
e7fd4179 | 4250 | } |
ef0c2bb0 DT |
4251 | |
4252 | if (err) | |
4253 | log_error(ls, "recover_waiters_post %x %d %x %d %d", | |
4254 | lkb->lkb_id, mstype, lkb->lkb_flags, oc, ou); | |
4255 | unlock_rsb(r); | |
4256 | put_rsb(r); | |
4257 | dlm_put_lkb(lkb); | |
e7fd4179 DT |
4258 | } |
4259 | ||
4260 | return error; | |
4261 | } | |
4262 | ||
4263 | static void purge_queue(struct dlm_rsb *r, struct list_head *queue, | |
4264 | int (*test)(struct dlm_ls *ls, struct dlm_lkb *lkb)) | |
4265 | { | |
4266 | struct dlm_ls *ls = r->res_ls; | |
4267 | struct dlm_lkb *lkb, *safe; | |
4268 | ||
4269 | list_for_each_entry_safe(lkb, safe, queue, lkb_statequeue) { | |
4270 | if (test(ls, lkb)) { | |
97a35d1e | 4271 | rsb_set_flag(r, RSB_LOCKS_PURGED); |
e7fd4179 DT |
4272 | del_lkb(r, lkb); |
4273 | /* this put should free the lkb */ | |
b3f58d8f | 4274 | if (!dlm_put_lkb(lkb)) |
e7fd4179 DT |
4275 | log_error(ls, "purged lkb not released"); |
4276 | } | |
4277 | } | |
4278 | } | |
4279 | ||
4280 | static int purge_dead_test(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
4281 | { | |
4282 | return (is_master_copy(lkb) && dlm_is_removed(ls, lkb->lkb_nodeid)); | |
4283 | } | |
4284 | ||
4285 | static int purge_mstcpy_test(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
4286 | { | |
4287 | return is_master_copy(lkb); | |
4288 | } | |
4289 | ||
4290 | static void purge_dead_locks(struct dlm_rsb *r) | |
4291 | { | |
4292 | purge_queue(r, &r->res_grantqueue, &purge_dead_test); | |
4293 | purge_queue(r, &r->res_convertqueue, &purge_dead_test); | |
4294 | purge_queue(r, &r->res_waitqueue, &purge_dead_test); | |
4295 | } | |
4296 | ||
4297 | void dlm_purge_mstcpy_locks(struct dlm_rsb *r) | |
4298 | { | |
4299 | purge_queue(r, &r->res_grantqueue, &purge_mstcpy_test); | |
4300 | purge_queue(r, &r->res_convertqueue, &purge_mstcpy_test); | |
4301 | purge_queue(r, &r->res_waitqueue, &purge_mstcpy_test); | |
4302 | } | |
4303 | ||
4304 | /* Get rid of locks held by nodes that are gone. */ | |
4305 | ||
4306 | int dlm_purge_locks(struct dlm_ls *ls) | |
4307 | { | |
4308 | struct dlm_rsb *r; | |
4309 | ||
4310 | log_debug(ls, "dlm_purge_locks"); | |
4311 | ||
4312 | down_write(&ls->ls_root_sem); | |
4313 | list_for_each_entry(r, &ls->ls_root_list, res_root_list) { | |
4314 | hold_rsb(r); | |
4315 | lock_rsb(r); | |
4316 | if (is_master(r)) | |
4317 | purge_dead_locks(r); | |
4318 | unlock_rsb(r); | |
4319 | unhold_rsb(r); | |
4320 | ||
4321 | schedule(); | |
4322 | } | |
4323 | up_write(&ls->ls_root_sem); | |
4324 | ||
4325 | return 0; | |
4326 | } | |
4327 | ||
97a35d1e DT |
4328 | static struct dlm_rsb *find_purged_rsb(struct dlm_ls *ls, int bucket) |
4329 | { | |
4330 | struct dlm_rsb *r, *r_ret = NULL; | |
4331 | ||
c7be761a | 4332 | spin_lock(&ls->ls_rsbtbl[bucket].lock); |
97a35d1e DT |
4333 | list_for_each_entry(r, &ls->ls_rsbtbl[bucket].list, res_hashchain) { |
4334 | if (!rsb_flag(r, RSB_LOCKS_PURGED)) | |
4335 | continue; | |
4336 | hold_rsb(r); | |
4337 | rsb_clear_flag(r, RSB_LOCKS_PURGED); | |
4338 | r_ret = r; | |
4339 | break; | |
4340 | } | |
c7be761a | 4341 | spin_unlock(&ls->ls_rsbtbl[bucket].lock); |
97a35d1e DT |
4342 | return r_ret; |
4343 | } | |
4344 | ||
4345 | void dlm_grant_after_purge(struct dlm_ls *ls) | |
e7fd4179 DT |
4346 | { |
4347 | struct dlm_rsb *r; | |
2b4e926a | 4348 | int bucket = 0; |
e7fd4179 | 4349 | |
2b4e926a DT |
4350 | while (1) { |
4351 | r = find_purged_rsb(ls, bucket); | |
4352 | if (!r) { | |
4353 | if (bucket == ls->ls_rsbtbl_size - 1) | |
4354 | break; | |
4355 | bucket++; | |
97a35d1e | 4356 | continue; |
2b4e926a | 4357 | } |
97a35d1e DT |
4358 | lock_rsb(r); |
4359 | if (is_master(r)) { | |
4360 | grant_pending_locks(r); | |
4361 | confirm_master(r, 0); | |
e7fd4179 | 4362 | } |
97a35d1e DT |
4363 | unlock_rsb(r); |
4364 | put_rsb(r); | |
2b4e926a | 4365 | schedule(); |
e7fd4179 | 4366 | } |
e7fd4179 DT |
4367 | } |
4368 | ||
4369 | static struct dlm_lkb *search_remid_list(struct list_head *head, int nodeid, | |
4370 | uint32_t remid) | |
4371 | { | |
4372 | struct dlm_lkb *lkb; | |
4373 | ||
4374 | list_for_each_entry(lkb, head, lkb_statequeue) { | |
4375 | if (lkb->lkb_nodeid == nodeid && lkb->lkb_remid == remid) | |
4376 | return lkb; | |
4377 | } | |
4378 | return NULL; | |
4379 | } | |
4380 | ||
4381 | static struct dlm_lkb *search_remid(struct dlm_rsb *r, int nodeid, | |
4382 | uint32_t remid) | |
4383 | { | |
4384 | struct dlm_lkb *lkb; | |
4385 | ||
4386 | lkb = search_remid_list(&r->res_grantqueue, nodeid, remid); | |
4387 | if (lkb) | |
4388 | return lkb; | |
4389 | lkb = search_remid_list(&r->res_convertqueue, nodeid, remid); | |
4390 | if (lkb) | |
4391 | return lkb; | |
4392 | lkb = search_remid_list(&r->res_waitqueue, nodeid, remid); | |
4393 | if (lkb) | |
4394 | return lkb; | |
4395 | return NULL; | |
4396 | } | |
4397 | ||
ae773d0b | 4398 | /* needs at least dlm_rcom + rcom_lock */ |
e7fd4179 DT |
4399 | static int receive_rcom_lock_args(struct dlm_ls *ls, struct dlm_lkb *lkb, |
4400 | struct dlm_rsb *r, struct dlm_rcom *rc) | |
4401 | { | |
4402 | struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf; | |
e7fd4179 DT |
4403 | |
4404 | lkb->lkb_nodeid = rc->rc_header.h_nodeid; | |
163a1859 AV |
4405 | lkb->lkb_ownpid = le32_to_cpu(rl->rl_ownpid); |
4406 | lkb->lkb_remid = le32_to_cpu(rl->rl_lkid); | |
4407 | lkb->lkb_exflags = le32_to_cpu(rl->rl_exflags); | |
4408 | lkb->lkb_flags = le32_to_cpu(rl->rl_flags) & 0x0000FFFF; | |
e7fd4179 | 4409 | lkb->lkb_flags |= DLM_IFL_MSTCPY; |
163a1859 | 4410 | lkb->lkb_lvbseq = le32_to_cpu(rl->rl_lvbseq); |
e7fd4179 DT |
4411 | lkb->lkb_rqmode = rl->rl_rqmode; |
4412 | lkb->lkb_grmode = rl->rl_grmode; | |
4413 | /* don't set lkb_status because add_lkb wants to itself */ | |
4414 | ||
e5dae548 DT |
4415 | lkb->lkb_bastfn = (rl->rl_asts & AST_BAST) ? &fake_bastfn : NULL; |
4416 | lkb->lkb_astfn = (rl->rl_asts & AST_COMP) ? &fake_astfn : NULL; | |
e7fd4179 | 4417 | |
e7fd4179 | 4418 | if (lkb->lkb_exflags & DLM_LKF_VALBLK) { |
a5dd0631 AV |
4419 | int lvblen = rc->rc_header.h_length - sizeof(struct dlm_rcom) - |
4420 | sizeof(struct rcom_lock); | |
4421 | if (lvblen > ls->ls_lvblen) | |
4422 | return -EINVAL; | |
52bda2b5 | 4423 | lkb->lkb_lvbptr = dlm_allocate_lvb(ls); |
e7fd4179 DT |
4424 | if (!lkb->lkb_lvbptr) |
4425 | return -ENOMEM; | |
e7fd4179 DT |
4426 | memcpy(lkb->lkb_lvbptr, rl->rl_lvb, lvblen); |
4427 | } | |
4428 | ||
4429 | /* Conversions between PR and CW (middle modes) need special handling. | |
4430 | The real granted mode of these converting locks cannot be determined | |
4431 | until all locks have been rebuilt on the rsb (recover_conversion) */ | |
4432 | ||
163a1859 AV |
4433 | if (rl->rl_wait_type == cpu_to_le16(DLM_MSG_CONVERT) && |
4434 | middle_conversion(lkb)) { | |
e7fd4179 DT |
4435 | rl->rl_status = DLM_LKSTS_CONVERT; |
4436 | lkb->lkb_grmode = DLM_LOCK_IV; | |
4437 | rsb_set_flag(r, RSB_RECOVER_CONVERT); | |
4438 | } | |
4439 | ||
4440 | return 0; | |
4441 | } | |
4442 | ||
4443 | /* This lkb may have been recovered in a previous aborted recovery so we need | |
4444 | to check if the rsb already has an lkb with the given remote nodeid/lkid. | |
4445 | If so we just send back a standard reply. If not, we create a new lkb with | |
4446 | the given values and send back our lkid. We send back our lkid by sending | |
4447 | back the rcom_lock struct we got but with the remid field filled in. */ | |
4448 | ||
ae773d0b | 4449 | /* needs at least dlm_rcom + rcom_lock */ |
e7fd4179 DT |
4450 | int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc) |
4451 | { | |
4452 | struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf; | |
4453 | struct dlm_rsb *r; | |
4454 | struct dlm_lkb *lkb; | |
4455 | int error; | |
4456 | ||
4457 | if (rl->rl_parent_lkid) { | |
4458 | error = -EOPNOTSUPP; | |
4459 | goto out; | |
4460 | } | |
4461 | ||
163a1859 AV |
4462 | error = find_rsb(ls, rl->rl_name, le16_to_cpu(rl->rl_namelen), |
4463 | R_MASTER, &r); | |
e7fd4179 DT |
4464 | if (error) |
4465 | goto out; | |
4466 | ||
4467 | lock_rsb(r); | |
4468 | ||
163a1859 | 4469 | lkb = search_remid(r, rc->rc_header.h_nodeid, le32_to_cpu(rl->rl_lkid)); |
e7fd4179 DT |
4470 | if (lkb) { |
4471 | error = -EEXIST; | |
4472 | goto out_remid; | |
4473 | } | |
4474 | ||
4475 | error = create_lkb(ls, &lkb); | |
4476 | if (error) | |
4477 | goto out_unlock; | |
4478 | ||
4479 | error = receive_rcom_lock_args(ls, lkb, r, rc); | |
4480 | if (error) { | |
b3f58d8f | 4481 | __put_lkb(ls, lkb); |
e7fd4179 DT |
4482 | goto out_unlock; |
4483 | } | |
4484 | ||
4485 | attach_lkb(r, lkb); | |
4486 | add_lkb(r, lkb, rl->rl_status); | |
4487 | error = 0; | |
4488 | ||
4489 | out_remid: | |
4490 | /* this is the new value returned to the lock holder for | |
4491 | saving in its process-copy lkb */ | |
163a1859 | 4492 | rl->rl_remid = cpu_to_le32(lkb->lkb_id); |
e7fd4179 DT |
4493 | |
4494 | out_unlock: | |
4495 | unlock_rsb(r); | |
4496 | put_rsb(r); | |
4497 | out: | |
4498 | if (error) | |
163a1859 AV |
4499 | log_debug(ls, "recover_master_copy %d %x", error, |
4500 | le32_to_cpu(rl->rl_lkid)); | |
4501 | rl->rl_result = cpu_to_le32(error); | |
e7fd4179 DT |
4502 | return error; |
4503 | } | |
4504 | ||
ae773d0b | 4505 | /* needs at least dlm_rcom + rcom_lock */ |
e7fd4179 DT |
4506 | int dlm_recover_process_copy(struct dlm_ls *ls, struct dlm_rcom *rc) |
4507 | { | |
4508 | struct rcom_lock *rl = (struct rcom_lock *) rc->rc_buf; | |
4509 | struct dlm_rsb *r; | |
4510 | struct dlm_lkb *lkb; | |
4511 | int error; | |
4512 | ||
163a1859 | 4513 | error = find_lkb(ls, le32_to_cpu(rl->rl_lkid), &lkb); |
e7fd4179 | 4514 | if (error) { |
163a1859 AV |
4515 | log_error(ls, "recover_process_copy no lkid %x", |
4516 | le32_to_cpu(rl->rl_lkid)); | |
e7fd4179 DT |
4517 | return error; |
4518 | } | |
4519 | ||
4520 | DLM_ASSERT(is_process_copy(lkb), dlm_print_lkb(lkb);); | |
4521 | ||
163a1859 | 4522 | error = le32_to_cpu(rl->rl_result); |
e7fd4179 DT |
4523 | |
4524 | r = lkb->lkb_resource; | |
4525 | hold_rsb(r); | |
4526 | lock_rsb(r); | |
4527 | ||
4528 | switch (error) { | |
dc200a88 DT |
4529 | case -EBADR: |
4530 | /* There's a chance the new master received our lock before | |
4531 | dlm_recover_master_reply(), this wouldn't happen if we did | |
4532 | a barrier between recover_masters and recover_locks. */ | |
4533 | log_debug(ls, "master copy not ready %x r %lx %s", lkb->lkb_id, | |
4534 | (unsigned long)r, r->res_name); | |
4535 | dlm_send_rcom_lock(r, lkb); | |
4536 | goto out; | |
e7fd4179 DT |
4537 | case -EEXIST: |
4538 | log_debug(ls, "master copy exists %x", lkb->lkb_id); | |
4539 | /* fall through */ | |
4540 | case 0: | |
163a1859 | 4541 | lkb->lkb_remid = le32_to_cpu(rl->rl_remid); |
e7fd4179 DT |
4542 | break; |
4543 | default: | |
4544 | log_error(ls, "dlm_recover_process_copy unknown error %d %x", | |
4545 | error, lkb->lkb_id); | |
4546 | } | |
4547 | ||
4548 | /* an ack for dlm_recover_locks() which waits for replies from | |
4549 | all the locks it sends to new masters */ | |
4550 | dlm_recovered_lock(r); | |
dc200a88 | 4551 | out: |
e7fd4179 DT |
4552 | unlock_rsb(r); |
4553 | put_rsb(r); | |
b3f58d8f | 4554 | dlm_put_lkb(lkb); |
e7fd4179 DT |
4555 | |
4556 | return 0; | |
4557 | } | |
4558 | ||
597d0cae DT |
4559 | int dlm_user_request(struct dlm_ls *ls, struct dlm_user_args *ua, |
4560 | int mode, uint32_t flags, void *name, unsigned int namelen, | |
d7db923e | 4561 | unsigned long timeout_cs) |
597d0cae DT |
4562 | { |
4563 | struct dlm_lkb *lkb; | |
4564 | struct dlm_args args; | |
4565 | int error; | |
4566 | ||
85e86edf | 4567 | dlm_lock_recovery(ls); |
597d0cae DT |
4568 | |
4569 | error = create_lkb(ls, &lkb); | |
4570 | if (error) { | |
4571 | kfree(ua); | |
4572 | goto out; | |
4573 | } | |
4574 | ||
4575 | if (flags & DLM_LKF_VALBLK) { | |
573c24c4 | 4576 | ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_NOFS); |
597d0cae DT |
4577 | if (!ua->lksb.sb_lvbptr) { |
4578 | kfree(ua); | |
4579 | __put_lkb(ls, lkb); | |
4580 | error = -ENOMEM; | |
4581 | goto out; | |
4582 | } | |
4583 | } | |
4584 | ||
52bda2b5 | 4585 | /* After ua is attached to lkb it will be freed by dlm_free_lkb(). |
597d0cae DT |
4586 | When DLM_IFL_USER is set, the dlm knows that this is a userspace |
4587 | lock and that lkb_astparam is the dlm_user_args structure. */ | |
4588 | ||
d7db923e | 4589 | error = set_lock_args(mode, &ua->lksb, flags, namelen, timeout_cs, |
e5dae548 | 4590 | fake_astfn, ua, fake_bastfn, &args); |
597d0cae DT |
4591 | lkb->lkb_flags |= DLM_IFL_USER; |
4592 | ua->old_mode = DLM_LOCK_IV; | |
4593 | ||
4594 | if (error) { | |
4595 | __put_lkb(ls, lkb); | |
4596 | goto out; | |
4597 | } | |
4598 | ||
4599 | error = request_lock(ls, lkb, name, namelen, &args); | |
4600 | ||
4601 | switch (error) { | |
4602 | case 0: | |
4603 | break; | |
4604 | case -EINPROGRESS: | |
4605 | error = 0; | |
4606 | break; | |
4607 | case -EAGAIN: | |
4608 | error = 0; | |
4609 | /* fall through */ | |
4610 | default: | |
4611 | __put_lkb(ls, lkb); | |
4612 | goto out; | |
4613 | } | |
4614 | ||
4615 | /* add this new lkb to the per-process list of locks */ | |
4616 | spin_lock(&ua->proc->locks_spin); | |
ef0c2bb0 | 4617 | hold_lkb(lkb); |
597d0cae DT |
4618 | list_add_tail(&lkb->lkb_ownqueue, &ua->proc->locks); |
4619 | spin_unlock(&ua->proc->locks_spin); | |
4620 | out: | |
85e86edf | 4621 | dlm_unlock_recovery(ls); |
597d0cae DT |
4622 | return error; |
4623 | } | |
4624 | ||
4625 | int dlm_user_convert(struct dlm_ls *ls, struct dlm_user_args *ua_tmp, | |
d7db923e DT |
4626 | int mode, uint32_t flags, uint32_t lkid, char *lvb_in, |
4627 | unsigned long timeout_cs) | |
597d0cae DT |
4628 | { |
4629 | struct dlm_lkb *lkb; | |
4630 | struct dlm_args args; | |
4631 | struct dlm_user_args *ua; | |
4632 | int error; | |
4633 | ||
85e86edf | 4634 | dlm_lock_recovery(ls); |
597d0cae DT |
4635 | |
4636 | error = find_lkb(ls, lkid, &lkb); | |
4637 | if (error) | |
4638 | goto out; | |
4639 | ||
4640 | /* user can change the params on its lock when it converts it, or | |
4641 | add an lvb that didn't exist before */ | |
4642 | ||
d292c0cc | 4643 | ua = lkb->lkb_ua; |
597d0cae DT |
4644 | |
4645 | if (flags & DLM_LKF_VALBLK && !ua->lksb.sb_lvbptr) { | |
573c24c4 | 4646 | ua->lksb.sb_lvbptr = kzalloc(DLM_USER_LVB_LEN, GFP_NOFS); |
597d0cae DT |
4647 | if (!ua->lksb.sb_lvbptr) { |
4648 | error = -ENOMEM; | |
4649 | goto out_put; | |
4650 | } | |
4651 | } | |
4652 | if (lvb_in && ua->lksb.sb_lvbptr) | |
4653 | memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN); | |
4654 | ||
d7db923e | 4655 | ua->xid = ua_tmp->xid; |
597d0cae DT |
4656 | ua->castparam = ua_tmp->castparam; |
4657 | ua->castaddr = ua_tmp->castaddr; | |
4658 | ua->bastparam = ua_tmp->bastparam; | |
4659 | ua->bastaddr = ua_tmp->bastaddr; | |
10948eb4 | 4660 | ua->user_lksb = ua_tmp->user_lksb; |
597d0cae DT |
4661 | ua->old_mode = lkb->lkb_grmode; |
4662 | ||
d7db923e | 4663 | error = set_lock_args(mode, &ua->lksb, flags, 0, timeout_cs, |
e5dae548 | 4664 | fake_astfn, ua, fake_bastfn, &args); |
597d0cae DT |
4665 | if (error) |
4666 | goto out_put; | |
4667 | ||
4668 | error = convert_lock(ls, lkb, &args); | |
4669 | ||
c85d65e9 | 4670 | if (error == -EINPROGRESS || error == -EAGAIN || error == -EDEADLK) |
597d0cae DT |
4671 | error = 0; |
4672 | out_put: | |
4673 | dlm_put_lkb(lkb); | |
4674 | out: | |
85e86edf | 4675 | dlm_unlock_recovery(ls); |
597d0cae DT |
4676 | kfree(ua_tmp); |
4677 | return error; | |
4678 | } | |
4679 | ||
4680 | int dlm_user_unlock(struct dlm_ls *ls, struct dlm_user_args *ua_tmp, | |
4681 | uint32_t flags, uint32_t lkid, char *lvb_in) | |
4682 | { | |
4683 | struct dlm_lkb *lkb; | |
4684 | struct dlm_args args; | |
4685 | struct dlm_user_args *ua; | |
4686 | int error; | |
4687 | ||
85e86edf | 4688 | dlm_lock_recovery(ls); |
597d0cae DT |
4689 | |
4690 | error = find_lkb(ls, lkid, &lkb); | |
4691 | if (error) | |
4692 | goto out; | |
4693 | ||
d292c0cc | 4694 | ua = lkb->lkb_ua; |
597d0cae DT |
4695 | |
4696 | if (lvb_in && ua->lksb.sb_lvbptr) | |
4697 | memcpy(ua->lksb.sb_lvbptr, lvb_in, DLM_USER_LVB_LEN); | |
b434eda6 PC |
4698 | if (ua_tmp->castparam) |
4699 | ua->castparam = ua_tmp->castparam; | |
cc346d55 | 4700 | ua->user_lksb = ua_tmp->user_lksb; |
597d0cae DT |
4701 | |
4702 | error = set_unlock_args(flags, ua, &args); | |
4703 | if (error) | |
4704 | goto out_put; | |
4705 | ||
4706 | error = unlock_lock(ls, lkb, &args); | |
4707 | ||
4708 | if (error == -DLM_EUNLOCK) | |
4709 | error = 0; | |
ef0c2bb0 DT |
4710 | /* from validate_unlock_args() */ |
4711 | if (error == -EBUSY && (flags & DLM_LKF_FORCEUNLOCK)) | |
4712 | error = 0; | |
597d0cae DT |
4713 | if (error) |
4714 | goto out_put; | |
4715 | ||
4716 | spin_lock(&ua->proc->locks_spin); | |
a1bc86e6 DT |
4717 | /* dlm_user_add_ast() may have already taken lkb off the proc list */ |
4718 | if (!list_empty(&lkb->lkb_ownqueue)) | |
4719 | list_move(&lkb->lkb_ownqueue, &ua->proc->unlocking); | |
597d0cae | 4720 | spin_unlock(&ua->proc->locks_spin); |
597d0cae DT |
4721 | out_put: |
4722 | dlm_put_lkb(lkb); | |
4723 | out: | |
85e86edf | 4724 | dlm_unlock_recovery(ls); |
ef0c2bb0 | 4725 | kfree(ua_tmp); |
597d0cae DT |
4726 | return error; |
4727 | } | |
4728 | ||
4729 | int dlm_user_cancel(struct dlm_ls *ls, struct dlm_user_args *ua_tmp, | |
4730 | uint32_t flags, uint32_t lkid) | |
4731 | { | |
4732 | struct dlm_lkb *lkb; | |
4733 | struct dlm_args args; | |
4734 | struct dlm_user_args *ua; | |
4735 | int error; | |
4736 | ||
85e86edf | 4737 | dlm_lock_recovery(ls); |
597d0cae DT |
4738 | |
4739 | error = find_lkb(ls, lkid, &lkb); | |
4740 | if (error) | |
4741 | goto out; | |
4742 | ||
d292c0cc | 4743 | ua = lkb->lkb_ua; |
b434eda6 PC |
4744 | if (ua_tmp->castparam) |
4745 | ua->castparam = ua_tmp->castparam; | |
c059f70e | 4746 | ua->user_lksb = ua_tmp->user_lksb; |
597d0cae DT |
4747 | |
4748 | error = set_unlock_args(flags, ua, &args); | |
4749 | if (error) | |
4750 | goto out_put; | |
4751 | ||
4752 | error = cancel_lock(ls, lkb, &args); | |
4753 | ||
4754 | if (error == -DLM_ECANCEL) | |
4755 | error = 0; | |
ef0c2bb0 DT |
4756 | /* from validate_unlock_args() */ |
4757 | if (error == -EBUSY) | |
4758 | error = 0; | |
597d0cae DT |
4759 | out_put: |
4760 | dlm_put_lkb(lkb); | |
4761 | out: | |
85e86edf | 4762 | dlm_unlock_recovery(ls); |
ef0c2bb0 | 4763 | kfree(ua_tmp); |
597d0cae DT |
4764 | return error; |
4765 | } | |
4766 | ||
8b4021fa DT |
4767 | int dlm_user_deadlock(struct dlm_ls *ls, uint32_t flags, uint32_t lkid) |
4768 | { | |
4769 | struct dlm_lkb *lkb; | |
4770 | struct dlm_args args; | |
4771 | struct dlm_user_args *ua; | |
4772 | struct dlm_rsb *r; | |
4773 | int error; | |
4774 | ||
4775 | dlm_lock_recovery(ls); | |
4776 | ||
4777 | error = find_lkb(ls, lkid, &lkb); | |
4778 | if (error) | |
4779 | goto out; | |
4780 | ||
d292c0cc | 4781 | ua = lkb->lkb_ua; |
8b4021fa DT |
4782 | |
4783 | error = set_unlock_args(flags, ua, &args); | |
4784 | if (error) | |
4785 | goto out_put; | |
4786 | ||
4787 | /* same as cancel_lock(), but set DEADLOCK_CANCEL after lock_rsb */ | |
4788 | ||
4789 | r = lkb->lkb_resource; | |
4790 | hold_rsb(r); | |
4791 | lock_rsb(r); | |
4792 | ||
4793 | error = validate_unlock_args(lkb, &args); | |
4794 | if (error) | |
4795 | goto out_r; | |
4796 | lkb->lkb_flags |= DLM_IFL_DEADLOCK_CANCEL; | |
4797 | ||
4798 | error = _cancel_lock(r, lkb); | |
4799 | out_r: | |
4800 | unlock_rsb(r); | |
4801 | put_rsb(r); | |
4802 | ||
4803 | if (error == -DLM_ECANCEL) | |
4804 | error = 0; | |
4805 | /* from validate_unlock_args() */ | |
4806 | if (error == -EBUSY) | |
4807 | error = 0; | |
4808 | out_put: | |
4809 | dlm_put_lkb(lkb); | |
4810 | out: | |
4811 | dlm_unlock_recovery(ls); | |
4812 | return error; | |
4813 | } | |
4814 | ||
ef0c2bb0 DT |
4815 | /* lkb's that are removed from the waiters list by revert are just left on the |
4816 | orphans list with the granted orphan locks, to be freed by purge */ | |
4817 | ||
597d0cae DT |
4818 | static int orphan_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb) |
4819 | { | |
ef0c2bb0 DT |
4820 | struct dlm_args args; |
4821 | int error; | |
597d0cae | 4822 | |
ef0c2bb0 DT |
4823 | hold_lkb(lkb); |
4824 | mutex_lock(&ls->ls_orphans_mutex); | |
4825 | list_add_tail(&lkb->lkb_ownqueue, &ls->ls_orphans); | |
4826 | mutex_unlock(&ls->ls_orphans_mutex); | |
597d0cae | 4827 | |
d292c0cc | 4828 | set_unlock_args(0, lkb->lkb_ua, &args); |
ef0c2bb0 DT |
4829 | |
4830 | error = cancel_lock(ls, lkb, &args); | |
4831 | if (error == -DLM_ECANCEL) | |
4832 | error = 0; | |
4833 | return error; | |
597d0cae DT |
4834 | } |
4835 | ||
4836 | /* The force flag allows the unlock to go ahead even if the lkb isn't granted. | |
4837 | Regardless of what rsb queue the lock is on, it's removed and freed. */ | |
4838 | ||
4839 | static int unlock_proc_lock(struct dlm_ls *ls, struct dlm_lkb *lkb) | |
4840 | { | |
597d0cae DT |
4841 | struct dlm_args args; |
4842 | int error; | |
4843 | ||
d292c0cc | 4844 | set_unlock_args(DLM_LKF_FORCEUNLOCK, lkb->lkb_ua, &args); |
597d0cae DT |
4845 | |
4846 | error = unlock_lock(ls, lkb, &args); | |
4847 | if (error == -DLM_EUNLOCK) | |
4848 | error = 0; | |
4849 | return error; | |
4850 | } | |
4851 | ||
ef0c2bb0 DT |
4852 | /* We have to release clear_proc_locks mutex before calling unlock_proc_lock() |
4853 | (which does lock_rsb) due to deadlock with receiving a message that does | |
4854 | lock_rsb followed by dlm_user_add_ast() */ | |
4855 | ||
4856 | static struct dlm_lkb *del_proc_lock(struct dlm_ls *ls, | |
4857 | struct dlm_user_proc *proc) | |
4858 | { | |
4859 | struct dlm_lkb *lkb = NULL; | |
4860 | ||
4861 | mutex_lock(&ls->ls_clear_proc_locks); | |
4862 | if (list_empty(&proc->locks)) | |
4863 | goto out; | |
4864 | ||
4865 | lkb = list_entry(proc->locks.next, struct dlm_lkb, lkb_ownqueue); | |
4866 | list_del_init(&lkb->lkb_ownqueue); | |
4867 | ||
4868 | if (lkb->lkb_exflags & DLM_LKF_PERSISTENT) | |
4869 | lkb->lkb_flags |= DLM_IFL_ORPHAN; | |
4870 | else | |
4871 | lkb->lkb_flags |= DLM_IFL_DEAD; | |
4872 | out: | |
4873 | mutex_unlock(&ls->ls_clear_proc_locks); | |
4874 | return lkb; | |
4875 | } | |
4876 | ||
597d0cae DT |
4877 | /* The ls_clear_proc_locks mutex protects against dlm_user_add_asts() which |
4878 | 1) references lkb->ua which we free here and 2) adds lkbs to proc->asts, | |
4879 | which we clear here. */ | |
4880 | ||
4881 | /* proc CLOSING flag is set so no more device_reads should look at proc->asts | |
4882 | list, and no more device_writes should add lkb's to proc->locks list; so we | |
4883 | shouldn't need to take asts_spin or locks_spin here. this assumes that | |
4884 | device reads/writes/closes are serialized -- FIXME: we may need to serialize | |
4885 | them ourself. */ | |
4886 | ||
4887 | void dlm_clear_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc) | |
4888 | { | |
4889 | struct dlm_lkb *lkb, *safe; | |
4890 | ||
85e86edf | 4891 | dlm_lock_recovery(ls); |
597d0cae | 4892 | |
ef0c2bb0 DT |
4893 | while (1) { |
4894 | lkb = del_proc_lock(ls, proc); | |
4895 | if (!lkb) | |
4896 | break; | |
84d8cd69 | 4897 | del_timeout(lkb); |
ef0c2bb0 | 4898 | if (lkb->lkb_exflags & DLM_LKF_PERSISTENT) |
597d0cae | 4899 | orphan_proc_lock(ls, lkb); |
ef0c2bb0 | 4900 | else |
597d0cae | 4901 | unlock_proc_lock(ls, lkb); |
597d0cae DT |
4902 | |
4903 | /* this removes the reference for the proc->locks list | |
4904 | added by dlm_user_request, it may result in the lkb | |
4905 | being freed */ | |
4906 | ||
4907 | dlm_put_lkb(lkb); | |
4908 | } | |
a1bc86e6 | 4909 | |
ef0c2bb0 DT |
4910 | mutex_lock(&ls->ls_clear_proc_locks); |
4911 | ||
a1bc86e6 DT |
4912 | /* in-progress unlocks */ |
4913 | list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) { | |
4914 | list_del_init(&lkb->lkb_ownqueue); | |
4915 | lkb->lkb_flags |= DLM_IFL_DEAD; | |
4916 | dlm_put_lkb(lkb); | |
4917 | } | |
4918 | ||
4919 | list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_astqueue) { | |
8a358ca8 | 4920 | lkb->lkb_ast_type = 0; |
a1bc86e6 DT |
4921 | list_del(&lkb->lkb_astqueue); |
4922 | dlm_put_lkb(lkb); | |
4923 | } | |
4924 | ||
597d0cae | 4925 | mutex_unlock(&ls->ls_clear_proc_locks); |
85e86edf | 4926 | dlm_unlock_recovery(ls); |
597d0cae | 4927 | } |
a1bc86e6 | 4928 | |
8499137d DT |
4929 | static void purge_proc_locks(struct dlm_ls *ls, struct dlm_user_proc *proc) |
4930 | { | |
4931 | struct dlm_lkb *lkb, *safe; | |
4932 | ||
4933 | while (1) { | |
4934 | lkb = NULL; | |
4935 | spin_lock(&proc->locks_spin); | |
4936 | if (!list_empty(&proc->locks)) { | |
4937 | lkb = list_entry(proc->locks.next, struct dlm_lkb, | |
4938 | lkb_ownqueue); | |
4939 | list_del_init(&lkb->lkb_ownqueue); | |
4940 | } | |
4941 | spin_unlock(&proc->locks_spin); | |
4942 | ||
4943 | if (!lkb) | |
4944 | break; | |
4945 | ||
4946 | lkb->lkb_flags |= DLM_IFL_DEAD; | |
4947 | unlock_proc_lock(ls, lkb); | |
4948 | dlm_put_lkb(lkb); /* ref from proc->locks list */ | |
4949 | } | |
4950 | ||
4951 | spin_lock(&proc->locks_spin); | |
4952 | list_for_each_entry_safe(lkb, safe, &proc->unlocking, lkb_ownqueue) { | |
4953 | list_del_init(&lkb->lkb_ownqueue); | |
4954 | lkb->lkb_flags |= DLM_IFL_DEAD; | |
4955 | dlm_put_lkb(lkb); | |
4956 | } | |
4957 | spin_unlock(&proc->locks_spin); | |
4958 | ||
4959 | spin_lock(&proc->asts_spin); | |
4960 | list_for_each_entry_safe(lkb, safe, &proc->asts, lkb_astqueue) { | |
4961 | list_del(&lkb->lkb_astqueue); | |
4962 | dlm_put_lkb(lkb); | |
4963 | } | |
4964 | spin_unlock(&proc->asts_spin); | |
4965 | } | |
4966 | ||
4967 | /* pid of 0 means purge all orphans */ | |
4968 | ||
4969 | static void do_purge(struct dlm_ls *ls, int nodeid, int pid) | |
4970 | { | |
4971 | struct dlm_lkb *lkb, *safe; | |
4972 | ||
4973 | mutex_lock(&ls->ls_orphans_mutex); | |
4974 | list_for_each_entry_safe(lkb, safe, &ls->ls_orphans, lkb_ownqueue) { | |
4975 | if (pid && lkb->lkb_ownpid != pid) | |
4976 | continue; | |
4977 | unlock_proc_lock(ls, lkb); | |
4978 | list_del_init(&lkb->lkb_ownqueue); | |
4979 | dlm_put_lkb(lkb); | |
4980 | } | |
4981 | mutex_unlock(&ls->ls_orphans_mutex); | |
4982 | } | |
4983 | ||
4984 | static int send_purge(struct dlm_ls *ls, int nodeid, int pid) | |
4985 | { | |
4986 | struct dlm_message *ms; | |
4987 | struct dlm_mhandle *mh; | |
4988 | int error; | |
4989 | ||
4990 | error = _create_message(ls, sizeof(struct dlm_message), nodeid, | |
4991 | DLM_MSG_PURGE, &ms, &mh); | |
4992 | if (error) | |
4993 | return error; | |
4994 | ms->m_nodeid = nodeid; | |
4995 | ms->m_pid = pid; | |
4996 | ||
4997 | return send_message(mh, ms); | |
4998 | } | |
4999 | ||
5000 | int dlm_user_purge(struct dlm_ls *ls, struct dlm_user_proc *proc, | |
5001 | int nodeid, int pid) | |
5002 | { | |
5003 | int error = 0; | |
5004 | ||
5005 | if (nodeid != dlm_our_nodeid()) { | |
5006 | error = send_purge(ls, nodeid, pid); | |
5007 | } else { | |
85e86edf | 5008 | dlm_lock_recovery(ls); |
8499137d DT |
5009 | if (pid == current->pid) |
5010 | purge_proc_locks(ls, proc); | |
5011 | else | |
5012 | do_purge(ls, nodeid, pid); | |
85e86edf | 5013 | dlm_unlock_recovery(ls); |
8499137d DT |
5014 | } |
5015 | return error; | |
5016 | } | |
5017 |