1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * AST and BAST functionality for local and remote nodes
8 * Copyright (C) 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
28 #include <linux/module.h>
30 #include <linux/types.h>
31 #include <linux/slab.h>
32 #include <linux/highmem.h>
33 #include <linux/utsname.h>
34 #include <linux/init.h>
35 #include <linux/sysctl.h>
36 #include <linux/random.h>
37 #include <linux/blkdev.h>
38 #include <linux/socket.h>
39 #include <linux/inet.h>
40 #include <linux/spinlock.h>
43 #include "cluster/heartbeat.h"
44 #include "cluster/nodemanager.h"
45 #include "cluster/tcp.h"
48 #include "dlmcommon.h"
50 #define MLOG_MASK_PREFIX ML_DLM
51 #include "cluster/masklog.h"
53 static void dlm_update_lvb(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
54 struct dlm_lock
*lock
);
55 static int dlm_should_cancel_bast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
);
57 /* Should be called as an ast gets queued to see if the new
58 * lock level will obsolete a pending bast.
59 * For example, if dlm_thread queued a bast for an EX lock that
60 * was blocking another EX, but before sending the bast the
61 * lock owner downconverted to NL, the bast is now obsolete.
62 * Only the ast should be sent.
63 * This is needed because the lock and convert paths can queue
64 * asts out-of-band (not waiting for dlm_thread) in order to
65 * allow for LKM_NOQUEUE to get immediate responses. */
66 static int dlm_should_cancel_bast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
)
68 assert_spin_locked(&dlm
->ast_lock
);
69 assert_spin_locked(&lock
->spinlock
);
71 if (lock
->ml
.highest_blocked
== LKM_IVMODE
)
73 BUG_ON(lock
->ml
.highest_blocked
== LKM_NLMODE
);
75 if (lock
->bast_pending
&&
76 list_empty(&lock
->bast_list
))
77 /* old bast already sent, ok */
80 if (lock
->ml
.type
== LKM_EXMODE
)
81 /* EX blocks anything left, any bast still valid */
83 else if (lock
->ml
.type
== LKM_NLMODE
)
84 /* NL blocks nothing, no reason to send any bast, cancel it */
86 else if (lock
->ml
.highest_blocked
!= LKM_EXMODE
)
87 /* PR only blocks EX */
93 static void __dlm_queue_ast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
)
100 assert_spin_locked(&dlm
->ast_lock
);
101 if (!list_empty(&lock
->ast_list
)) {
102 mlog(ML_ERROR
, "ast list not empty!! pending=%d, newlevel=%d\n",
103 lock
->ast_pending
, lock
->ml
.type
);
106 if (lock
->ast_pending
)
107 mlog(0, "lock has an ast getting flushed right now\n");
109 /* putting lock on list, add a ref */
111 spin_lock(&lock
->spinlock
);
113 /* check to see if this ast obsoletes the bast */
114 if (dlm_should_cancel_bast(dlm
, lock
)) {
115 struct dlm_lock_resource
*res
= lock
->lockres
;
116 mlog(0, "%s: cancelling bast for %.*s\n",
117 dlm
->name
, res
->lockname
.len
, res
->lockname
.name
);
118 lock
->bast_pending
= 0;
119 list_del_init(&lock
->bast_list
);
120 lock
->ml
.highest_blocked
= LKM_IVMODE
;
121 /* removing lock from list, remove a ref. guaranteed
122 * this won't be the last ref because of the get above,
123 * so res->spinlock will not be taken here */
125 /* free up the reserved bast that we are cancelling.
126 * guaranteed that this will not be the last reserved
127 * ast because *both* an ast and a bast were reserved
128 * to get to this point. the res->spinlock will not be
130 dlm_lockres_release_ast(dlm
, res
);
132 list_add_tail(&lock
->ast_list
, &dlm
->pending_asts
);
133 lock
->ast_pending
= 1;
134 spin_unlock(&lock
->spinlock
);
137 void dlm_queue_ast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
)
144 spin_lock(&dlm
->ast_lock
);
145 __dlm_queue_ast(dlm
, lock
);
146 spin_unlock(&dlm
->ast_lock
);
150 static void __dlm_queue_bast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
)
156 assert_spin_locked(&dlm
->ast_lock
);
158 BUG_ON(!list_empty(&lock
->bast_list
));
159 if (lock
->bast_pending
)
160 mlog(0, "lock has a bast getting flushed right now\n");
162 /* putting lock on list, add a ref */
164 spin_lock(&lock
->spinlock
);
165 list_add_tail(&lock
->bast_list
, &dlm
->pending_basts
);
166 lock
->bast_pending
= 1;
167 spin_unlock(&lock
->spinlock
);
170 void dlm_queue_bast(struct dlm_ctxt
*dlm
, struct dlm_lock
*lock
)
177 spin_lock(&dlm
->ast_lock
);
178 __dlm_queue_bast(dlm
, lock
);
179 spin_unlock(&dlm
->ast_lock
);
182 static void dlm_update_lvb(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
183 struct dlm_lock
*lock
)
185 struct dlm_lockstatus
*lksb
= lock
->lksb
;
188 /* only updates if this node masters the lockres */
189 if (res
->owner
== dlm
->node_num
) {
191 spin_lock(&res
->spinlock
);
192 /* check the lksb flags for the direction */
193 if (lksb
->flags
& DLM_LKSB_GET_LVB
) {
194 mlog(0, "getting lvb from lockres for %s node\n",
195 lock
->ml
.node
== dlm
->node_num
? "master" :
197 memcpy(lksb
->lvb
, res
->lvb
, DLM_LVB_LEN
);
199 /* Do nothing for lvb put requests - they should be done in
200 * place when the lock is downconverted - otherwise we risk
201 * racing gets and puts which could result in old lvb data
202 * being propagated. We leave the put flag set and clear it
203 * here. In the future we might want to clear it at the time
204 * the put is actually done.
206 spin_unlock(&res
->spinlock
);
209 /* reset any lvb flags on the lksb */
210 lksb
->flags
&= ~(DLM_LKSB_PUT_LVB
|DLM_LKSB_GET_LVB
);
213 void dlm_do_local_ast(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
214 struct dlm_lock
*lock
)
216 dlm_astlockfunc_t
*fn
;
217 struct dlm_lockstatus
*lksb
;
223 BUG_ON(lock
->ml
.node
!= dlm
->node_num
);
225 dlm_update_lvb(dlm
, res
, lock
);
226 (*fn
)(lock
->astdata
);
230 int dlm_do_remote_ast(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
231 struct dlm_lock
*lock
)
234 struct dlm_lockstatus
*lksb
;
240 BUG_ON(lock
->ml
.node
== dlm
->node_num
);
242 lksbflags
= lksb
->flags
;
243 dlm_update_lvb(dlm
, res
, lock
);
245 /* lock request came from another node
246 * go do the ast over there */
247 ret
= dlm_send_proxy_ast(dlm
, res
, lock
, lksbflags
);
251 void dlm_do_local_bast(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
252 struct dlm_lock
*lock
, int blocked_type
)
254 dlm_bastlockfunc_t
*fn
= lock
->bast
;
257 BUG_ON(lock
->ml
.node
!= dlm
->node_num
);
259 (*fn
)(lock
->astdata
, blocked_type
);
264 int dlm_proxy_ast_handler(struct o2net_msg
*msg
, u32 len
, void *data
,
268 unsigned int locklen
;
269 struct dlm_ctxt
*dlm
= data
;
270 struct dlm_lock_resource
*res
= NULL
;
271 struct dlm_lock
*lock
= NULL
;
272 struct dlm_proxy_ast
*past
= (struct dlm_proxy_ast
*) msg
->buf
;
274 struct list_head
*iter
, *head
=NULL
;
279 if (!dlm_grab(dlm
)) {
280 dlm_error(DLM_REJECTED
);
284 mlog_bug_on_msg(!dlm_domain_fully_joined(dlm
),
285 "Domain %s not fully joined!\n", dlm
->name
);
288 locklen
= past
->namelen
;
289 cookie
= past
->cookie
;
290 flags
= be32_to_cpu(past
->flags
);
291 node
= past
->node_idx
;
293 if (locklen
> DLM_LOCKID_NAME_MAX
) {
295 mlog(ML_ERROR
, "Invalid name length (%d) in proxy ast "
296 "handler!\n", locklen
);
300 if ((flags
& (LKM_PUT_LVB
|LKM_GET_LVB
)) ==
301 (LKM_PUT_LVB
|LKM_GET_LVB
)) {
302 mlog(ML_ERROR
, "Both PUT and GET lvb specified, (0x%x)\n",
308 mlog(0, "lvb: %s\n", flags
& LKM_PUT_LVB
? "put lvb" :
309 (flags
& LKM_GET_LVB
? "get lvb" : "none"));
311 mlog(0, "type=%d, blocked_type=%d\n", past
->type
, past
->blocked_type
);
313 if (past
->type
!= DLM_AST
&&
314 past
->type
!= DLM_BAST
) {
315 mlog(ML_ERROR
, "Unknown ast type! %d, cookie=%u:%llu"
316 "name=%.*s, node=%u\n", past
->type
,
317 dlm_get_lock_cookie_node(be64_to_cpu(cookie
)),
318 dlm_get_lock_cookie_seq(be64_to_cpu(cookie
)),
319 locklen
, name
, node
);
324 res
= dlm_lookup_lockres(dlm
, name
, locklen
);
326 mlog(0, "Got %sast for unknown lockres! cookie=%u:%llu, "
327 "name=%.*s, node=%u\n", (past
->type
== DLM_AST
? "" : "b"),
328 dlm_get_lock_cookie_node(be64_to_cpu(cookie
)),
329 dlm_get_lock_cookie_seq(be64_to_cpu(cookie
)),
330 locklen
, name
, node
);
335 /* cannot get a proxy ast message if this node owns it */
336 BUG_ON(res
->owner
== dlm
->node_num
);
338 mlog(0, "lockres %.*s\n", res
->lockname
.len
, res
->lockname
.name
);
340 spin_lock(&res
->spinlock
);
341 if (res
->state
& DLM_LOCK_RES_RECOVERING
) {
342 mlog(0, "Responding with DLM_RECOVERING!\n");
343 ret
= DLM_RECOVERING
;
346 if (res
->state
& DLM_LOCK_RES_MIGRATING
) {
347 mlog(0, "Responding with DLM_MIGRATING!\n");
351 /* try convert queue for both ast/bast */
352 head
= &res
->converting
;
354 list_for_each(iter
, head
) {
355 lock
= list_entry (iter
, struct dlm_lock
, list
);
356 if (lock
->ml
.cookie
== cookie
)
360 /* if not on convert, try blocked for ast, granted for bast */
361 if (past
->type
== DLM_AST
)
362 head
= &res
->blocked
;
364 head
= &res
->granted
;
366 list_for_each(iter
, head
) {
367 lock
= list_entry (iter
, struct dlm_lock
, list
);
368 if (lock
->ml
.cookie
== cookie
)
372 mlog(0, "Got %sast for unknown lock! cookie=%u:%llu, name=%.*s, "
373 "node=%u\n", past
->type
== DLM_AST
? "" : "b",
374 dlm_get_lock_cookie_node(be64_to_cpu(cookie
)),
375 dlm_get_lock_cookie_seq(be64_to_cpu(cookie
)),
376 locklen
, name
, node
);
380 spin_unlock(&res
->spinlock
);
385 if (past
->type
== DLM_AST
) {
386 /* do not alter lock refcount. switching lists. */
387 list_move_tail(&lock
->list
, &res
->granted
);
388 mlog(0, "ast: Adding to granted list... type=%d, "
389 "convert_type=%d\n", lock
->ml
.type
, lock
->ml
.convert_type
);
390 if (lock
->ml
.convert_type
!= LKM_IVMODE
) {
391 lock
->ml
.type
= lock
->ml
.convert_type
;
392 lock
->ml
.convert_type
= LKM_IVMODE
;
394 // should already be there....
397 lock
->lksb
->status
= DLM_NORMAL
;
399 /* if we requested the lvb, fetch it into our lksb now */
400 if (flags
& LKM_GET_LVB
) {
401 BUG_ON(!(lock
->lksb
->flags
& DLM_LKSB_GET_LVB
));
402 memcpy(lock
->lksb
->lvb
, past
->lvb
, DLM_LVB_LEN
);
405 spin_unlock(&res
->spinlock
);
407 if (past
->type
== DLM_AST
)
408 dlm_do_local_ast(dlm
, res
, lock
);
410 dlm_do_local_bast(dlm
, res
, lock
, past
->blocked_type
);
414 dlm_lockres_put(res
);
422 int dlm_send_proxy_ast_msg(struct dlm_ctxt
*dlm
, struct dlm_lock_resource
*res
,
423 struct dlm_lock
*lock
, int msg_type
,
424 int blocked_type
, int flags
)
427 struct dlm_proxy_ast past
;
432 mlog_entry("res %.*s, to=%u, type=%d, blocked_type=%d\n",
433 res
->lockname
.len
, res
->lockname
.name
, lock
->ml
.node
,
434 msg_type
, blocked_type
);
436 memset(&past
, 0, sizeof(struct dlm_proxy_ast
));
437 past
.node_idx
= dlm
->node_num
;
438 past
.type
= msg_type
;
439 past
.blocked_type
= blocked_type
;
440 past
.namelen
= res
->lockname
.len
;
441 memcpy(past
.name
, res
->lockname
.name
, past
.namelen
);
442 past
.cookie
= lock
->ml
.cookie
;
444 vec
[0].iov_len
= sizeof(struct dlm_proxy_ast
);
445 vec
[0].iov_base
= &past
;
446 if (flags
& DLM_LKSB_GET_LVB
) {
447 mlog(0, "returning requested LVB data\n");
448 be32_add_cpu(&past
.flags
, LKM_GET_LVB
);
449 vec
[1].iov_len
= DLM_LVB_LEN
;
450 vec
[1].iov_base
= lock
->lksb
->lvb
;
454 ret
= o2net_send_message_vec(DLM_PROXY_AST_MSG
, dlm
->key
, vec
, veclen
,
455 lock
->ml
.node
, &status
);
459 if (status
== DLM_RECOVERING
) {
460 mlog(ML_ERROR
, "sent AST to node %u, it thinks this "
461 "node is dead!\n", lock
->ml
.node
);
463 } else if (status
== DLM_MIGRATING
) {
464 mlog(ML_ERROR
, "sent AST to node %u, it returned "
465 "DLM_MIGRATING!\n", lock
->ml
.node
);
467 } else if (status
!= DLM_NORMAL
&& status
!= DLM_IVLOCKID
) {
468 mlog(ML_ERROR
, "AST to node %u returned %d!\n",
469 lock
->ml
.node
, status
);