ocfs2_dlm: Drop inflight refmap even if no locks found on the lockres
[linux-2.6/kmemtrace.git] / fs / ocfs2 / dlm / dlmrecovery.c
blob2e32fe65c6c212aa1c5f967ae0db59538b887522
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * dlmrecovery.c
6 * recovery stuff
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>
29 #include <linux/fs.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/timer.h>
41 #include <linux/kthread.h>
42 #include <linux/delay.h>
45 #include "cluster/heartbeat.h"
46 #include "cluster/nodemanager.h"
47 #include "cluster/tcp.h"
49 #include "dlmapi.h"
50 #include "dlmcommon.h"
51 #include "dlmdomain.h"
53 #define MLOG_MASK_PREFIX (ML_DLM|ML_DLM_RECOVERY)
54 #include "cluster/masklog.h"
56 static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node);
58 static int dlm_recovery_thread(void *data);
59 void dlm_complete_recovery_thread(struct dlm_ctxt *dlm);
60 int dlm_launch_recovery_thread(struct dlm_ctxt *dlm);
61 void dlm_kick_recovery_thread(struct dlm_ctxt *dlm);
62 static int dlm_do_recovery(struct dlm_ctxt *dlm);
64 static int dlm_pick_recovery_master(struct dlm_ctxt *dlm);
65 static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node);
66 static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node);
67 static int dlm_request_all_locks(struct dlm_ctxt *dlm,
68 u8 request_from, u8 dead_node);
69 static void dlm_destroy_recovery_area(struct dlm_ctxt *dlm, u8 dead_node);
71 static inline int dlm_num_locks_in_lockres(struct dlm_lock_resource *res);
72 static void dlm_init_migratable_lockres(struct dlm_migratable_lockres *mres,
73 const char *lockname, int namelen,
74 int total_locks, u64 cookie,
75 u8 flags, u8 master);
76 static int dlm_send_mig_lockres_msg(struct dlm_ctxt *dlm,
77 struct dlm_migratable_lockres *mres,
78 u8 send_to,
79 struct dlm_lock_resource *res,
80 int total_locks);
81 static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
82 struct dlm_lock_resource *res,
83 struct dlm_migratable_lockres *mres);
84 static int dlm_send_finalize_reco_message(struct dlm_ctxt *dlm);
85 static int dlm_send_all_done_msg(struct dlm_ctxt *dlm,
86 u8 dead_node, u8 send_to);
87 static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node);
88 static void dlm_move_reco_locks_to_list(struct dlm_ctxt *dlm,
89 struct list_head *list, u8 dead_node);
90 static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
91 u8 dead_node, u8 new_master);
92 static void dlm_reco_ast(void *astdata);
93 static void dlm_reco_bast(void *astdata, int blocked_type);
94 static void dlm_reco_unlock_ast(void *astdata, enum dlm_status st);
95 static void dlm_request_all_locks_worker(struct dlm_work_item *item,
96 void *data);
97 static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data);
98 static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
99 struct dlm_lock_resource *res,
100 u8 *real_master);
102 static u64 dlm_get_next_mig_cookie(void);
104 static DEFINE_SPINLOCK(dlm_reco_state_lock);
105 static DEFINE_SPINLOCK(dlm_mig_cookie_lock);
106 static u64 dlm_mig_cookie = 1;
108 static u64 dlm_get_next_mig_cookie(void)
110 u64 c;
111 spin_lock(&dlm_mig_cookie_lock);
112 c = dlm_mig_cookie;
113 if (dlm_mig_cookie == (~0ULL))
114 dlm_mig_cookie = 1;
115 else
116 dlm_mig_cookie++;
117 spin_unlock(&dlm_mig_cookie_lock);
118 return c;
121 static inline void dlm_set_reco_dead_node(struct dlm_ctxt *dlm,
122 u8 dead_node)
124 assert_spin_locked(&dlm->spinlock);
125 if (dlm->reco.dead_node != dead_node)
126 mlog(0, "%s: changing dead_node from %u to %u\n",
127 dlm->name, dlm->reco.dead_node, dead_node);
128 dlm->reco.dead_node = dead_node;
131 static inline void dlm_set_reco_master(struct dlm_ctxt *dlm,
132 u8 master)
134 assert_spin_locked(&dlm->spinlock);
135 mlog(0, "%s: changing new_master from %u to %u\n",
136 dlm->name, dlm->reco.new_master, master);
137 dlm->reco.new_master = master;
140 static inline void __dlm_reset_recovery(struct dlm_ctxt *dlm)
142 assert_spin_locked(&dlm->spinlock);
143 clear_bit(dlm->reco.dead_node, dlm->recovery_map);
144 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
145 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
148 static inline void dlm_reset_recovery(struct dlm_ctxt *dlm)
150 spin_lock(&dlm->spinlock);
151 __dlm_reset_recovery(dlm);
152 spin_unlock(&dlm->spinlock);
155 /* Worker function used during recovery. */
156 void dlm_dispatch_work(struct work_struct *work)
158 struct dlm_ctxt *dlm =
159 container_of(work, struct dlm_ctxt, dispatched_work);
160 LIST_HEAD(tmp_list);
161 struct list_head *iter, *iter2;
162 struct dlm_work_item *item;
163 dlm_workfunc_t *workfunc;
164 int tot=0;
166 if (!dlm_joined(dlm))
167 return;
169 spin_lock(&dlm->work_lock);
170 list_splice_init(&dlm->work_list, &tmp_list);
171 spin_unlock(&dlm->work_lock);
173 list_for_each_safe(iter, iter2, &tmp_list) {
174 tot++;
176 mlog(0, "%s: work thread has %d work items\n", dlm->name, tot);
178 list_for_each_safe(iter, iter2, &tmp_list) {
179 item = list_entry(iter, struct dlm_work_item, list);
180 workfunc = item->func;
181 list_del_init(&item->list);
183 /* already have ref on dlm to avoid having
184 * it disappear. just double-check. */
185 BUG_ON(item->dlm != dlm);
187 /* this is allowed to sleep and
188 * call network stuff */
189 workfunc(item, item->data);
191 dlm_put(dlm);
192 kfree(item);
197 * RECOVERY THREAD
200 void dlm_kick_recovery_thread(struct dlm_ctxt *dlm)
202 /* wake the recovery thread
203 * this will wake the reco thread in one of three places
204 * 1) sleeping with no recovery happening
205 * 2) sleeping with recovery mastered elsewhere
206 * 3) recovery mastered here, waiting on reco data */
208 wake_up(&dlm->dlm_reco_thread_wq);
211 /* Launch the recovery thread */
212 int dlm_launch_recovery_thread(struct dlm_ctxt *dlm)
214 mlog(0, "starting dlm recovery thread...\n");
216 dlm->dlm_reco_thread_task = kthread_run(dlm_recovery_thread, dlm,
217 "dlm_reco_thread");
218 if (IS_ERR(dlm->dlm_reco_thread_task)) {
219 mlog_errno(PTR_ERR(dlm->dlm_reco_thread_task));
220 dlm->dlm_reco_thread_task = NULL;
221 return -EINVAL;
224 return 0;
227 void dlm_complete_recovery_thread(struct dlm_ctxt *dlm)
229 if (dlm->dlm_reco_thread_task) {
230 mlog(0, "waiting for dlm recovery thread to exit\n");
231 kthread_stop(dlm->dlm_reco_thread_task);
232 dlm->dlm_reco_thread_task = NULL;
239 * this is lame, but here's how recovery works...
240 * 1) all recovery threads cluster wide will work on recovering
241 * ONE node at a time
242 * 2) negotiate who will take over all the locks for the dead node.
243 * thats right... ALL the locks.
244 * 3) once a new master is chosen, everyone scans all locks
245 * and moves aside those mastered by the dead guy
246 * 4) each of these locks should be locked until recovery is done
247 * 5) the new master collects up all of secondary lock queue info
248 * one lock at a time, forcing each node to communicate back
249 * before continuing
250 * 6) each secondary lock queue responds with the full known lock info
251 * 7) once the new master has run all its locks, it sends a ALLDONE!
252 * message to everyone
253 * 8) upon receiving this message, the secondary queue node unlocks
254 * and responds to the ALLDONE
255 * 9) once the new master gets responses from everyone, he unlocks
256 * everything and recovery for this dead node is done
257 *10) go back to 2) while there are still dead nodes
261 static void dlm_print_reco_node_status(struct dlm_ctxt *dlm)
263 struct dlm_reco_node_data *ndata;
264 struct dlm_lock_resource *res;
266 mlog(ML_NOTICE, "%s(%d): recovery info, state=%s, dead=%u, master=%u\n",
267 dlm->name, dlm->dlm_reco_thread_task->pid,
268 dlm->reco.state & DLM_RECO_STATE_ACTIVE ? "ACTIVE" : "inactive",
269 dlm->reco.dead_node, dlm->reco.new_master);
271 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
272 char *st = "unknown";
273 switch (ndata->state) {
274 case DLM_RECO_NODE_DATA_INIT:
275 st = "init";
276 break;
277 case DLM_RECO_NODE_DATA_REQUESTING:
278 st = "requesting";
279 break;
280 case DLM_RECO_NODE_DATA_DEAD:
281 st = "dead";
282 break;
283 case DLM_RECO_NODE_DATA_RECEIVING:
284 st = "receiving";
285 break;
286 case DLM_RECO_NODE_DATA_REQUESTED:
287 st = "requested";
288 break;
289 case DLM_RECO_NODE_DATA_DONE:
290 st = "done";
291 break;
292 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
293 st = "finalize-sent";
294 break;
295 default:
296 st = "bad";
297 break;
299 mlog(ML_NOTICE, "%s: reco state, node %u, state=%s\n",
300 dlm->name, ndata->node_num, st);
302 list_for_each_entry(res, &dlm->reco.resources, recovering) {
303 mlog(ML_NOTICE, "%s: lockres %.*s on recovering list\n",
304 dlm->name, res->lockname.len, res->lockname.name);
308 #define DLM_RECO_THREAD_TIMEOUT_MS (5 * 1000)
310 static int dlm_recovery_thread(void *data)
312 int status;
313 struct dlm_ctxt *dlm = data;
314 unsigned long timeout = msecs_to_jiffies(DLM_RECO_THREAD_TIMEOUT_MS);
316 mlog(0, "dlm thread running for %s...\n", dlm->name);
318 while (!kthread_should_stop()) {
319 if (dlm_joined(dlm)) {
320 status = dlm_do_recovery(dlm);
321 if (status == -EAGAIN) {
322 /* do not sleep, recheck immediately. */
323 continue;
325 if (status < 0)
326 mlog_errno(status);
329 wait_event_interruptible_timeout(dlm->dlm_reco_thread_wq,
330 kthread_should_stop(),
331 timeout);
334 mlog(0, "quitting DLM recovery thread\n");
335 return 0;
338 /* returns true when the recovery master has contacted us */
339 static int dlm_reco_master_ready(struct dlm_ctxt *dlm)
341 int ready;
342 spin_lock(&dlm->spinlock);
343 ready = (dlm->reco.new_master != O2NM_INVALID_NODE_NUM);
344 spin_unlock(&dlm->spinlock);
345 return ready;
348 /* returns true if node is no longer in the domain
349 * could be dead or just not joined */
350 int dlm_is_node_dead(struct dlm_ctxt *dlm, u8 node)
352 int dead;
353 spin_lock(&dlm->spinlock);
354 dead = !test_bit(node, dlm->domain_map);
355 spin_unlock(&dlm->spinlock);
356 return dead;
359 /* returns true if node is no longer in the domain
360 * could be dead or just not joined */
361 static int dlm_is_node_recovered(struct dlm_ctxt *dlm, u8 node)
363 int recovered;
364 spin_lock(&dlm->spinlock);
365 recovered = !test_bit(node, dlm->recovery_map);
366 spin_unlock(&dlm->spinlock);
367 return recovered;
371 int dlm_wait_for_node_death(struct dlm_ctxt *dlm, u8 node, int timeout)
373 if (timeout) {
374 mlog(ML_NOTICE, "%s: waiting %dms for notification of "
375 "death of node %u\n", dlm->name, timeout, node);
376 wait_event_timeout(dlm->dlm_reco_thread_wq,
377 dlm_is_node_dead(dlm, node),
378 msecs_to_jiffies(timeout));
379 } else {
380 mlog(ML_NOTICE, "%s: waiting indefinitely for notification "
381 "of death of node %u\n", dlm->name, node);
382 wait_event(dlm->dlm_reco_thread_wq,
383 dlm_is_node_dead(dlm, node));
385 /* for now, return 0 */
386 return 0;
389 int dlm_wait_for_node_recovery(struct dlm_ctxt *dlm, u8 node, int timeout)
391 if (timeout) {
392 mlog(0, "%s: waiting %dms for notification of "
393 "recovery of node %u\n", dlm->name, timeout, node);
394 wait_event_timeout(dlm->dlm_reco_thread_wq,
395 dlm_is_node_recovered(dlm, node),
396 msecs_to_jiffies(timeout));
397 } else {
398 mlog(0, "%s: waiting indefinitely for notification "
399 "of recovery of node %u\n", dlm->name, node);
400 wait_event(dlm->dlm_reco_thread_wq,
401 dlm_is_node_recovered(dlm, node));
403 /* for now, return 0 */
404 return 0;
407 /* callers of the top-level api calls (dlmlock/dlmunlock) should
408 * block on the dlm->reco.event when recovery is in progress.
409 * the dlm recovery thread will set this state when it begins
410 * recovering a dead node (as the new master or not) and clear
411 * the state and wake as soon as all affected lock resources have
412 * been marked with the RECOVERY flag */
413 static int dlm_in_recovery(struct dlm_ctxt *dlm)
415 int in_recovery;
416 spin_lock(&dlm->spinlock);
417 in_recovery = !!(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
418 spin_unlock(&dlm->spinlock);
419 return in_recovery;
423 void dlm_wait_for_recovery(struct dlm_ctxt *dlm)
425 if (dlm_in_recovery(dlm)) {
426 mlog(0, "%s: reco thread %d in recovery: "
427 "state=%d, master=%u, dead=%u\n",
428 dlm->name, dlm->dlm_reco_thread_task->pid,
429 dlm->reco.state, dlm->reco.new_master,
430 dlm->reco.dead_node);
432 wait_event(dlm->reco.event, !dlm_in_recovery(dlm));
435 static void dlm_begin_recovery(struct dlm_ctxt *dlm)
437 spin_lock(&dlm->spinlock);
438 BUG_ON(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
439 dlm->reco.state |= DLM_RECO_STATE_ACTIVE;
440 spin_unlock(&dlm->spinlock);
443 static void dlm_end_recovery(struct dlm_ctxt *dlm)
445 spin_lock(&dlm->spinlock);
446 BUG_ON(!(dlm->reco.state & DLM_RECO_STATE_ACTIVE));
447 dlm->reco.state &= ~DLM_RECO_STATE_ACTIVE;
448 spin_unlock(&dlm->spinlock);
449 wake_up(&dlm->reco.event);
452 static int dlm_do_recovery(struct dlm_ctxt *dlm)
454 int status = 0;
455 int ret;
457 spin_lock(&dlm->spinlock);
459 /* check to see if the new master has died */
460 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM &&
461 test_bit(dlm->reco.new_master, dlm->recovery_map)) {
462 mlog(0, "new master %u died while recovering %u!\n",
463 dlm->reco.new_master, dlm->reco.dead_node);
464 /* unset the new_master, leave dead_node */
465 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
468 /* select a target to recover */
469 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
470 int bit;
472 bit = find_next_bit (dlm->recovery_map, O2NM_MAX_NODES+1, 0);
473 if (bit >= O2NM_MAX_NODES || bit < 0)
474 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
475 else
476 dlm_set_reco_dead_node(dlm, bit);
477 } else if (!test_bit(dlm->reco.dead_node, dlm->recovery_map)) {
478 /* BUG? */
479 mlog(ML_ERROR, "dead_node %u no longer in recovery map!\n",
480 dlm->reco.dead_node);
481 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
484 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
485 // mlog(0, "nothing to recover! sleeping now!\n");
486 spin_unlock(&dlm->spinlock);
487 /* return to main thread loop and sleep. */
488 return 0;
490 mlog(0, "%s(%d):recovery thread found node %u in the recovery map!\n",
491 dlm->name, dlm->dlm_reco_thread_task->pid,
492 dlm->reco.dead_node);
493 spin_unlock(&dlm->spinlock);
495 /* take write barrier */
496 /* (stops the list reshuffling thread, proxy ast handling) */
497 dlm_begin_recovery(dlm);
499 if (dlm->reco.new_master == dlm->node_num)
500 goto master_here;
502 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
503 /* choose a new master, returns 0 if this node
504 * is the master, -EEXIST if it's another node.
505 * this does not return until a new master is chosen
506 * or recovery completes entirely. */
507 ret = dlm_pick_recovery_master(dlm);
508 if (!ret) {
509 /* already notified everyone. go. */
510 goto master_here;
512 mlog(0, "another node will master this recovery session.\n");
514 mlog(0, "dlm=%s (%d), new_master=%u, this node=%u, dead_node=%u\n",
515 dlm->name, dlm->dlm_reco_thread_task->pid, dlm->reco.new_master,
516 dlm->node_num, dlm->reco.dead_node);
518 /* it is safe to start everything back up here
519 * because all of the dead node's lock resources
520 * have been marked as in-recovery */
521 dlm_end_recovery(dlm);
523 /* sleep out in main dlm_recovery_thread loop. */
524 return 0;
526 master_here:
527 mlog(0, "(%d) mastering recovery of %s:%u here(this=%u)!\n",
528 dlm->dlm_reco_thread_task->pid,
529 dlm->name, dlm->reco.dead_node, dlm->node_num);
531 status = dlm_remaster_locks(dlm, dlm->reco.dead_node);
532 if (status < 0) {
533 /* we should never hit this anymore */
534 mlog(ML_ERROR, "error %d remastering locks for node %u, "
535 "retrying.\n", status, dlm->reco.dead_node);
536 /* yield a bit to allow any final network messages
537 * to get handled on remaining nodes */
538 msleep(100);
539 } else {
540 /* success! see if any other nodes need recovery */
541 mlog(0, "DONE mastering recovery of %s:%u here(this=%u)!\n",
542 dlm->name, dlm->reco.dead_node, dlm->node_num);
543 dlm_reset_recovery(dlm);
545 dlm_end_recovery(dlm);
547 /* continue and look for another dead node */
548 return -EAGAIN;
551 static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node)
553 int status = 0;
554 struct dlm_reco_node_data *ndata;
555 struct list_head *iter;
556 int all_nodes_done;
557 int destroy = 0;
558 int pass = 0;
560 do {
561 /* we have become recovery master. there is no escaping
562 * this, so just keep trying until we get it. */
563 status = dlm_init_recovery_area(dlm, dead_node);
564 if (status < 0) {
565 mlog(ML_ERROR, "%s: failed to alloc recovery area, "
566 "retrying\n", dlm->name);
567 msleep(1000);
569 } while (status != 0);
571 /* safe to access the node data list without a lock, since this
572 * process is the only one to change the list */
573 list_for_each(iter, &dlm->reco.node_data) {
574 ndata = list_entry (iter, struct dlm_reco_node_data, list);
575 BUG_ON(ndata->state != DLM_RECO_NODE_DATA_INIT);
576 ndata->state = DLM_RECO_NODE_DATA_REQUESTING;
578 mlog(0, "requesting lock info from node %u\n",
579 ndata->node_num);
581 if (ndata->node_num == dlm->node_num) {
582 ndata->state = DLM_RECO_NODE_DATA_DONE;
583 continue;
586 do {
587 status = dlm_request_all_locks(dlm, ndata->node_num,
588 dead_node);
589 if (status < 0) {
590 mlog_errno(status);
591 if (dlm_is_host_down(status)) {
592 /* node died, ignore it for recovery */
593 status = 0;
594 ndata->state = DLM_RECO_NODE_DATA_DEAD;
595 /* wait for the domain map to catch up
596 * with the network state. */
597 wait_event_timeout(dlm->dlm_reco_thread_wq,
598 dlm_is_node_dead(dlm,
599 ndata->node_num),
600 msecs_to_jiffies(1000));
601 mlog(0, "waited 1 sec for %u, "
602 "dead? %s\n", ndata->node_num,
603 dlm_is_node_dead(dlm, ndata->node_num) ?
604 "yes" : "no");
605 } else {
606 /* -ENOMEM on the other node */
607 mlog(0, "%s: node %u returned "
608 "%d during recovery, retrying "
609 "after a short wait\n",
610 dlm->name, ndata->node_num,
611 status);
612 msleep(100);
615 } while (status != 0);
617 switch (ndata->state) {
618 case DLM_RECO_NODE_DATA_INIT:
619 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
620 case DLM_RECO_NODE_DATA_REQUESTED:
621 BUG();
622 break;
623 case DLM_RECO_NODE_DATA_DEAD:
624 mlog(0, "node %u died after requesting "
625 "recovery info for node %u\n",
626 ndata->node_num, dead_node);
627 /* fine. don't need this node's info.
628 * continue without it. */
629 break;
630 case DLM_RECO_NODE_DATA_REQUESTING:
631 ndata->state = DLM_RECO_NODE_DATA_REQUESTED;
632 mlog(0, "now receiving recovery data from "
633 "node %u for dead node %u\n",
634 ndata->node_num, dead_node);
635 break;
636 case DLM_RECO_NODE_DATA_RECEIVING:
637 mlog(0, "already receiving recovery data from "
638 "node %u for dead node %u\n",
639 ndata->node_num, dead_node);
640 break;
641 case DLM_RECO_NODE_DATA_DONE:
642 mlog(0, "already DONE receiving recovery data "
643 "from node %u for dead node %u\n",
644 ndata->node_num, dead_node);
645 break;
649 mlog(0, "done requesting all lock info\n");
651 /* nodes should be sending reco data now
652 * just need to wait */
654 while (1) {
655 /* check all the nodes now to see if we are
656 * done, or if anyone died */
657 all_nodes_done = 1;
658 spin_lock(&dlm_reco_state_lock);
659 list_for_each(iter, &dlm->reco.node_data) {
660 ndata = list_entry (iter, struct dlm_reco_node_data, list);
662 mlog(0, "checking recovery state of node %u\n",
663 ndata->node_num);
664 switch (ndata->state) {
665 case DLM_RECO_NODE_DATA_INIT:
666 case DLM_RECO_NODE_DATA_REQUESTING:
667 mlog(ML_ERROR, "bad ndata state for "
668 "node %u: state=%d\n",
669 ndata->node_num, ndata->state);
670 BUG();
671 break;
672 case DLM_RECO_NODE_DATA_DEAD:
673 mlog(0, "node %u died after "
674 "requesting recovery info for "
675 "node %u\n", ndata->node_num,
676 dead_node);
677 break;
678 case DLM_RECO_NODE_DATA_RECEIVING:
679 case DLM_RECO_NODE_DATA_REQUESTED:
680 mlog(0, "%s: node %u still in state %s\n",
681 dlm->name, ndata->node_num,
682 ndata->state==DLM_RECO_NODE_DATA_RECEIVING ?
683 "receiving" : "requested");
684 all_nodes_done = 0;
685 break;
686 case DLM_RECO_NODE_DATA_DONE:
687 mlog(0, "%s: node %u state is done\n",
688 dlm->name, ndata->node_num);
689 break;
690 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
691 mlog(0, "%s: node %u state is finalize\n",
692 dlm->name, ndata->node_num);
693 break;
696 spin_unlock(&dlm_reco_state_lock);
698 mlog(0, "pass #%d, all_nodes_done?: %s\n", ++pass,
699 all_nodes_done?"yes":"no");
700 if (all_nodes_done) {
701 int ret;
703 /* all nodes are now in DLM_RECO_NODE_DATA_DONE state
704 * just send a finalize message to everyone and
705 * clean up */
706 mlog(0, "all nodes are done! send finalize\n");
707 ret = dlm_send_finalize_reco_message(dlm);
708 if (ret < 0)
709 mlog_errno(ret);
711 spin_lock(&dlm->spinlock);
712 dlm_finish_local_lockres_recovery(dlm, dead_node,
713 dlm->node_num);
714 spin_unlock(&dlm->spinlock);
715 mlog(0, "should be done with recovery!\n");
717 mlog(0, "finishing recovery of %s at %lu, "
718 "dead=%u, this=%u, new=%u\n", dlm->name,
719 jiffies, dlm->reco.dead_node,
720 dlm->node_num, dlm->reco.new_master);
721 destroy = 1;
722 status = 0;
723 /* rescan everything marked dirty along the way */
724 dlm_kick_thread(dlm, NULL);
725 break;
727 /* wait to be signalled, with periodic timeout
728 * to check for node death */
729 wait_event_interruptible_timeout(dlm->dlm_reco_thread_wq,
730 kthread_should_stop(),
731 msecs_to_jiffies(DLM_RECO_THREAD_TIMEOUT_MS));
735 if (destroy)
736 dlm_destroy_recovery_area(dlm, dead_node);
738 mlog_exit(status);
739 return status;
742 static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
744 int num=0;
745 struct dlm_reco_node_data *ndata;
747 spin_lock(&dlm->spinlock);
748 memcpy(dlm->reco.node_map, dlm->domain_map, sizeof(dlm->domain_map));
749 /* nodes can only be removed (by dying) after dropping
750 * this lock, and death will be trapped later, so this should do */
751 spin_unlock(&dlm->spinlock);
753 while (1) {
754 num = find_next_bit (dlm->reco.node_map, O2NM_MAX_NODES, num);
755 if (num >= O2NM_MAX_NODES) {
756 break;
758 BUG_ON(num == dead_node);
760 ndata = kzalloc(sizeof(*ndata), GFP_NOFS);
761 if (!ndata) {
762 dlm_destroy_recovery_area(dlm, dead_node);
763 return -ENOMEM;
765 ndata->node_num = num;
766 ndata->state = DLM_RECO_NODE_DATA_INIT;
767 spin_lock(&dlm_reco_state_lock);
768 list_add_tail(&ndata->list, &dlm->reco.node_data);
769 spin_unlock(&dlm_reco_state_lock);
770 num++;
773 return 0;
776 static void dlm_destroy_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
778 struct list_head *iter, *iter2;
779 struct dlm_reco_node_data *ndata;
780 LIST_HEAD(tmplist);
782 spin_lock(&dlm_reco_state_lock);
783 list_splice_init(&dlm->reco.node_data, &tmplist);
784 spin_unlock(&dlm_reco_state_lock);
786 list_for_each_safe(iter, iter2, &tmplist) {
787 ndata = list_entry (iter, struct dlm_reco_node_data, list);
788 list_del_init(&ndata->list);
789 kfree(ndata);
793 static int dlm_request_all_locks(struct dlm_ctxt *dlm, u8 request_from,
794 u8 dead_node)
796 struct dlm_lock_request lr;
797 enum dlm_status ret;
799 mlog(0, "\n");
802 mlog(0, "dlm_request_all_locks: dead node is %u, sending request "
803 "to %u\n", dead_node, request_from);
805 memset(&lr, 0, sizeof(lr));
806 lr.node_idx = dlm->node_num;
807 lr.dead_node = dead_node;
809 // send message
810 ret = DLM_NOLOCKMGR;
811 ret = o2net_send_message(DLM_LOCK_REQUEST_MSG, dlm->key,
812 &lr, sizeof(lr), request_from, NULL);
814 /* negative status is handled by caller */
815 if (ret < 0)
816 mlog_errno(ret);
818 // return from here, then
819 // sleep until all received or error
820 return ret;
824 int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data)
826 struct dlm_ctxt *dlm = data;
827 struct dlm_lock_request *lr = (struct dlm_lock_request *)msg->buf;
828 char *buf = NULL;
829 struct dlm_work_item *item = NULL;
831 if (!dlm_grab(dlm))
832 return -EINVAL;
834 if (lr->dead_node != dlm->reco.dead_node) {
835 mlog(ML_ERROR, "%s: node %u sent dead_node=%u, but local "
836 "dead_node is %u\n", dlm->name, lr->node_idx,
837 lr->dead_node, dlm->reco.dead_node);
838 dlm_print_reco_node_status(dlm);
839 /* this is a hack */
840 dlm_put(dlm);
841 return -ENOMEM;
843 BUG_ON(lr->dead_node != dlm->reco.dead_node);
845 item = kzalloc(sizeof(*item), GFP_NOFS);
846 if (!item) {
847 dlm_put(dlm);
848 return -ENOMEM;
851 /* this will get freed by dlm_request_all_locks_worker */
852 buf = (char *) __get_free_page(GFP_NOFS);
853 if (!buf) {
854 kfree(item);
855 dlm_put(dlm);
856 return -ENOMEM;
859 /* queue up work for dlm_request_all_locks_worker */
860 dlm_grab(dlm); /* get an extra ref for the work item */
861 dlm_init_work_item(dlm, item, dlm_request_all_locks_worker, buf);
862 item->u.ral.reco_master = lr->node_idx;
863 item->u.ral.dead_node = lr->dead_node;
864 spin_lock(&dlm->work_lock);
865 list_add_tail(&item->list, &dlm->work_list);
866 spin_unlock(&dlm->work_lock);
867 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
869 dlm_put(dlm);
870 return 0;
873 static void dlm_request_all_locks_worker(struct dlm_work_item *item, void *data)
875 struct dlm_migratable_lockres *mres;
876 struct dlm_lock_resource *res;
877 struct dlm_ctxt *dlm;
878 LIST_HEAD(resources);
879 struct list_head *iter;
880 int ret;
881 u8 dead_node, reco_master;
882 int skip_all_done = 0;
884 dlm = item->dlm;
885 dead_node = item->u.ral.dead_node;
886 reco_master = item->u.ral.reco_master;
887 mres = (struct dlm_migratable_lockres *)data;
889 mlog(0, "%s: recovery worker started, dead=%u, master=%u\n",
890 dlm->name, dead_node, reco_master);
892 if (dead_node != dlm->reco.dead_node ||
893 reco_master != dlm->reco.new_master) {
894 /* worker could have been created before the recovery master
895 * died. if so, do not continue, but do not error. */
896 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
897 mlog(ML_NOTICE, "%s: will not send recovery state, "
898 "recovery master %u died, thread=(dead=%u,mas=%u)"
899 " current=(dead=%u,mas=%u)\n", dlm->name,
900 reco_master, dead_node, reco_master,
901 dlm->reco.dead_node, dlm->reco.new_master);
902 } else {
903 mlog(ML_NOTICE, "%s: reco state invalid: reco(dead=%u, "
904 "master=%u), request(dead=%u, master=%u)\n",
905 dlm->name, dlm->reco.dead_node,
906 dlm->reco.new_master, dead_node, reco_master);
908 goto leave;
911 /* lock resources should have already been moved to the
912 * dlm->reco.resources list. now move items from that list
913 * to a temp list if the dead owner matches. note that the
914 * whole cluster recovers only one node at a time, so we
915 * can safely move UNKNOWN lock resources for each recovery
916 * session. */
917 dlm_move_reco_locks_to_list(dlm, &resources, dead_node);
919 /* now we can begin blasting lockreses without the dlm lock */
921 /* any errors returned will be due to the new_master dying,
922 * the dlm_reco_thread should detect this */
923 list_for_each(iter, &resources) {
924 res = list_entry (iter, struct dlm_lock_resource, recovering);
925 ret = dlm_send_one_lockres(dlm, res, mres, reco_master,
926 DLM_MRES_RECOVERY);
927 if (ret < 0) {
928 mlog(ML_ERROR, "%s: node %u went down while sending "
929 "recovery state for dead node %u, ret=%d\n", dlm->name,
930 reco_master, dead_node, ret);
931 skip_all_done = 1;
932 break;
936 /* move the resources back to the list */
937 spin_lock(&dlm->spinlock);
938 list_splice_init(&resources, &dlm->reco.resources);
939 spin_unlock(&dlm->spinlock);
941 if (!skip_all_done) {
942 ret = dlm_send_all_done_msg(dlm, dead_node, reco_master);
943 if (ret < 0) {
944 mlog(ML_ERROR, "%s: node %u went down while sending "
945 "recovery all-done for dead node %u, ret=%d\n",
946 dlm->name, reco_master, dead_node, ret);
949 leave:
950 free_page((unsigned long)data);
954 static int dlm_send_all_done_msg(struct dlm_ctxt *dlm, u8 dead_node, u8 send_to)
956 int ret, tmpret;
957 struct dlm_reco_data_done done_msg;
959 memset(&done_msg, 0, sizeof(done_msg));
960 done_msg.node_idx = dlm->node_num;
961 done_msg.dead_node = dead_node;
962 mlog(0, "sending DATA DONE message to %u, "
963 "my node=%u, dead node=%u\n", send_to, done_msg.node_idx,
964 done_msg.dead_node);
966 ret = o2net_send_message(DLM_RECO_DATA_DONE_MSG, dlm->key, &done_msg,
967 sizeof(done_msg), send_to, &tmpret);
968 if (ret < 0) {
969 if (!dlm_is_host_down(ret)) {
970 mlog_errno(ret);
971 mlog(ML_ERROR, "%s: unknown error sending data-done "
972 "to %u\n", dlm->name, send_to);
973 BUG();
975 } else
976 ret = tmpret;
977 return ret;
981 int dlm_reco_data_done_handler(struct o2net_msg *msg, u32 len, void *data)
983 struct dlm_ctxt *dlm = data;
984 struct dlm_reco_data_done *done = (struct dlm_reco_data_done *)msg->buf;
985 struct list_head *iter;
986 struct dlm_reco_node_data *ndata = NULL;
987 int ret = -EINVAL;
989 if (!dlm_grab(dlm))
990 return -EINVAL;
992 mlog(0, "got DATA DONE: dead_node=%u, reco.dead_node=%u, "
993 "node_idx=%u, this node=%u\n", done->dead_node,
994 dlm->reco.dead_node, done->node_idx, dlm->node_num);
996 mlog_bug_on_msg((done->dead_node != dlm->reco.dead_node),
997 "Got DATA DONE: dead_node=%u, reco.dead_node=%u, "
998 "node_idx=%u, this node=%u\n", done->dead_node,
999 dlm->reco.dead_node, done->node_idx, dlm->node_num);
1001 spin_lock(&dlm_reco_state_lock);
1002 list_for_each(iter, &dlm->reco.node_data) {
1003 ndata = list_entry (iter, struct dlm_reco_node_data, list);
1004 if (ndata->node_num != done->node_idx)
1005 continue;
1007 switch (ndata->state) {
1008 /* should have moved beyond INIT but not to FINALIZE yet */
1009 case DLM_RECO_NODE_DATA_INIT:
1010 case DLM_RECO_NODE_DATA_DEAD:
1011 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
1012 mlog(ML_ERROR, "bad ndata state for node %u:"
1013 " state=%d\n", ndata->node_num,
1014 ndata->state);
1015 BUG();
1016 break;
1017 /* these states are possible at this point, anywhere along
1018 * the line of recovery */
1019 case DLM_RECO_NODE_DATA_DONE:
1020 case DLM_RECO_NODE_DATA_RECEIVING:
1021 case DLM_RECO_NODE_DATA_REQUESTED:
1022 case DLM_RECO_NODE_DATA_REQUESTING:
1023 mlog(0, "node %u is DONE sending "
1024 "recovery data!\n",
1025 ndata->node_num);
1027 ndata->state = DLM_RECO_NODE_DATA_DONE;
1028 ret = 0;
1029 break;
1032 spin_unlock(&dlm_reco_state_lock);
1034 /* wake the recovery thread, some node is done */
1035 if (!ret)
1036 dlm_kick_recovery_thread(dlm);
1038 if (ret < 0)
1039 mlog(ML_ERROR, "failed to find recovery node data for node "
1040 "%u\n", done->node_idx);
1041 dlm_put(dlm);
1043 mlog(0, "leaving reco data done handler, ret=%d\n", ret);
1044 return ret;
1047 static void dlm_move_reco_locks_to_list(struct dlm_ctxt *dlm,
1048 struct list_head *list,
1049 u8 dead_node)
1051 struct dlm_lock_resource *res;
1052 struct list_head *iter, *iter2;
1053 struct dlm_lock *lock;
1055 spin_lock(&dlm->spinlock);
1056 list_for_each_safe(iter, iter2, &dlm->reco.resources) {
1057 res = list_entry (iter, struct dlm_lock_resource, recovering);
1058 /* always prune any $RECOVERY entries for dead nodes,
1059 * otherwise hangs can occur during later recovery */
1060 if (dlm_is_recovery_lock(res->lockname.name,
1061 res->lockname.len)) {
1062 spin_lock(&res->spinlock);
1063 list_for_each_entry(lock, &res->granted, list) {
1064 if (lock->ml.node == dead_node) {
1065 mlog(0, "AHA! there was "
1066 "a $RECOVERY lock for dead "
1067 "node %u (%s)!\n",
1068 dead_node, dlm->name);
1069 list_del_init(&lock->list);
1070 dlm_lock_put(lock);
1071 break;
1074 spin_unlock(&res->spinlock);
1075 continue;
1078 if (res->owner == dead_node) {
1079 mlog(0, "found lockres owned by dead node while "
1080 "doing recovery for node %u. sending it.\n",
1081 dead_node);
1082 list_move_tail(&res->recovering, list);
1083 } else if (res->owner == DLM_LOCK_RES_OWNER_UNKNOWN) {
1084 mlog(0, "found UNKNOWN owner while doing recovery "
1085 "for node %u. sending it.\n", dead_node);
1086 list_move_tail(&res->recovering, list);
1089 spin_unlock(&dlm->spinlock);
1092 static inline int dlm_num_locks_in_lockres(struct dlm_lock_resource *res)
1094 int total_locks = 0;
1095 struct list_head *iter, *queue = &res->granted;
1096 int i;
1098 for (i=0; i<3; i++) {
1099 list_for_each(iter, queue)
1100 total_locks++;
1101 queue++;
1103 return total_locks;
1107 static int dlm_send_mig_lockres_msg(struct dlm_ctxt *dlm,
1108 struct dlm_migratable_lockres *mres,
1109 u8 send_to,
1110 struct dlm_lock_resource *res,
1111 int total_locks)
1113 u64 mig_cookie = be64_to_cpu(mres->mig_cookie);
1114 int mres_total_locks = be32_to_cpu(mres->total_locks);
1115 int sz, ret = 0, status = 0;
1116 u8 orig_flags = mres->flags,
1117 orig_master = mres->master;
1119 BUG_ON(mres->num_locks > DLM_MAX_MIGRATABLE_LOCKS);
1120 if (!mres->num_locks)
1121 return 0;
1123 sz = sizeof(struct dlm_migratable_lockres) +
1124 (mres->num_locks * sizeof(struct dlm_migratable_lock));
1126 /* add an all-done flag if we reached the last lock */
1127 orig_flags = mres->flags;
1128 BUG_ON(total_locks > mres_total_locks);
1129 if (total_locks == mres_total_locks)
1130 mres->flags |= DLM_MRES_ALL_DONE;
1132 mlog(0, "%s:%.*s: sending mig lockres (%s) to %u\n",
1133 dlm->name, res->lockname.len, res->lockname.name,
1134 orig_flags & DLM_MRES_MIGRATION ? "migrate" : "recovery",
1135 send_to);
1137 /* send it */
1138 ret = o2net_send_message(DLM_MIG_LOCKRES_MSG, dlm->key, mres,
1139 sz, send_to, &status);
1140 if (ret < 0) {
1141 /* XXX: negative status is not handled.
1142 * this will end up killing this node. */
1143 mlog_errno(ret);
1144 } else {
1145 /* might get an -ENOMEM back here */
1146 ret = status;
1147 if (ret < 0) {
1148 mlog_errno(ret);
1150 if (ret == -EFAULT) {
1151 mlog(ML_ERROR, "node %u told me to kill "
1152 "myself!\n", send_to);
1153 BUG();
1158 /* zero and reinit the message buffer */
1159 dlm_init_migratable_lockres(mres, res->lockname.name,
1160 res->lockname.len, mres_total_locks,
1161 mig_cookie, orig_flags, orig_master);
1162 return ret;
1165 static void dlm_init_migratable_lockres(struct dlm_migratable_lockres *mres,
1166 const char *lockname, int namelen,
1167 int total_locks, u64 cookie,
1168 u8 flags, u8 master)
1170 /* mres here is one full page */
1171 memset(mres, 0, PAGE_SIZE);
1172 mres->lockname_len = namelen;
1173 memcpy(mres->lockname, lockname, namelen);
1174 mres->num_locks = 0;
1175 mres->total_locks = cpu_to_be32(total_locks);
1176 mres->mig_cookie = cpu_to_be64(cookie);
1177 mres->flags = flags;
1178 mres->master = master;
1182 /* returns 1 if this lock fills the network structure,
1183 * 0 otherwise */
1184 static int dlm_add_lock_to_array(struct dlm_lock *lock,
1185 struct dlm_migratable_lockres *mres, int queue)
1187 struct dlm_migratable_lock *ml;
1188 int lock_num = mres->num_locks;
1190 ml = &(mres->ml[lock_num]);
1191 ml->cookie = lock->ml.cookie;
1192 ml->type = lock->ml.type;
1193 ml->convert_type = lock->ml.convert_type;
1194 ml->highest_blocked = lock->ml.highest_blocked;
1195 ml->list = queue;
1196 if (lock->lksb) {
1197 ml->flags = lock->lksb->flags;
1198 /* send our current lvb */
1199 if (ml->type == LKM_EXMODE ||
1200 ml->type == LKM_PRMODE) {
1201 /* if it is already set, this had better be a PR
1202 * and it has to match */
1203 if (!dlm_lvb_is_empty(mres->lvb) &&
1204 (ml->type == LKM_EXMODE ||
1205 memcmp(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN))) {
1206 mlog(ML_ERROR, "mismatched lvbs!\n");
1207 __dlm_print_one_lock_resource(lock->lockres);
1208 BUG();
1210 memcpy(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN);
1213 ml->node = lock->ml.node;
1214 mres->num_locks++;
1215 /* we reached the max, send this network message */
1216 if (mres->num_locks == DLM_MAX_MIGRATABLE_LOCKS)
1217 return 1;
1218 return 0;
1221 static void dlm_add_dummy_lock(struct dlm_ctxt *dlm,
1222 struct dlm_migratable_lockres *mres)
1224 struct dlm_lock dummy;
1225 memset(&dummy, 0, sizeof(dummy));
1226 dummy.ml.cookie = 0;
1227 dummy.ml.type = LKM_IVMODE;
1228 dummy.ml.convert_type = LKM_IVMODE;
1229 dummy.ml.highest_blocked = LKM_IVMODE;
1230 dummy.lksb = NULL;
1231 dummy.ml.node = dlm->node_num;
1232 dlm_add_lock_to_array(&dummy, mres, DLM_BLOCKED_LIST);
1235 static inline int dlm_is_dummy_lock(struct dlm_ctxt *dlm,
1236 struct dlm_migratable_lock *ml,
1237 u8 *nodenum)
1239 if (unlikely(ml->cookie == 0 &&
1240 ml->type == LKM_IVMODE &&
1241 ml->convert_type == LKM_IVMODE &&
1242 ml->highest_blocked == LKM_IVMODE &&
1243 ml->list == DLM_BLOCKED_LIST)) {
1244 *nodenum = ml->node;
1245 return 1;
1247 return 0;
1250 int dlm_send_one_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1251 struct dlm_migratable_lockres *mres,
1252 u8 send_to, u8 flags)
1254 struct list_head *queue, *iter;
1255 int total_locks, i;
1256 u64 mig_cookie = 0;
1257 struct dlm_lock *lock;
1258 int ret = 0;
1260 BUG_ON(!(flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1262 mlog(0, "sending to %u\n", send_to);
1264 total_locks = dlm_num_locks_in_lockres(res);
1265 if (total_locks > DLM_MAX_MIGRATABLE_LOCKS) {
1266 /* rare, but possible */
1267 mlog(0, "argh. lockres has %d locks. this will "
1268 "require more than one network packet to "
1269 "migrate\n", total_locks);
1270 mig_cookie = dlm_get_next_mig_cookie();
1273 dlm_init_migratable_lockres(mres, res->lockname.name,
1274 res->lockname.len, total_locks,
1275 mig_cookie, flags, res->owner);
1277 total_locks = 0;
1278 for (i=DLM_GRANTED_LIST; i<=DLM_BLOCKED_LIST; i++) {
1279 queue = dlm_list_idx_to_ptr(res, i);
1280 list_for_each(iter, queue) {
1281 lock = list_entry (iter, struct dlm_lock, list);
1283 /* add another lock. */
1284 total_locks++;
1285 if (!dlm_add_lock_to_array(lock, mres, i))
1286 continue;
1288 /* this filled the lock message,
1289 * we must send it immediately. */
1290 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to,
1291 res, total_locks);
1292 if (ret < 0)
1293 goto error;
1296 if (total_locks == 0) {
1297 /* send a dummy lock to indicate a mastery reference only */
1298 mlog(0, "%s:%.*s: sending dummy lock to %u, %s\n",
1299 dlm->name, res->lockname.len, res->lockname.name,
1300 send_to, flags & DLM_MRES_RECOVERY ? "recovery" :
1301 "migration");
1302 dlm_add_dummy_lock(dlm, mres);
1304 /* flush any remaining locks */
1305 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to, res, total_locks);
1306 if (ret < 0)
1307 goto error;
1308 return ret;
1310 error:
1311 mlog(ML_ERROR, "%s: dlm_send_mig_lockres_msg returned %d\n",
1312 dlm->name, ret);
1313 if (!dlm_is_host_down(ret))
1314 BUG();
1315 mlog(0, "%s: node %u went down while sending %s "
1316 "lockres %.*s\n", dlm->name, send_to,
1317 flags & DLM_MRES_RECOVERY ? "recovery" : "migration",
1318 res->lockname.len, res->lockname.name);
1319 return ret;
1325 * this message will contain no more than one page worth of
1326 * recovery data, and it will work on only one lockres.
1327 * there may be many locks in this page, and we may need to wait
1328 * for additional packets to complete all the locks (rare, but
1329 * possible).
1332 * NOTE: the allocation error cases here are scary
1333 * we really cannot afford to fail an alloc in recovery
1334 * do we spin? returning an error only delays the problem really
1337 int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data)
1339 struct dlm_ctxt *dlm = data;
1340 struct dlm_migratable_lockres *mres =
1341 (struct dlm_migratable_lockres *)msg->buf;
1342 int ret = 0;
1343 u8 real_master;
1344 char *buf = NULL;
1345 struct dlm_work_item *item = NULL;
1346 struct dlm_lock_resource *res = NULL;
1348 if (!dlm_grab(dlm))
1349 return -EINVAL;
1351 BUG_ON(!(mres->flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1353 real_master = mres->master;
1354 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1355 /* cannot migrate a lockres with no master */
1356 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1359 mlog(0, "%s message received from node %u\n",
1360 (mres->flags & DLM_MRES_RECOVERY) ?
1361 "recovery" : "migration", mres->master);
1362 if (mres->flags & DLM_MRES_ALL_DONE)
1363 mlog(0, "all done flag. all lockres data received!\n");
1365 ret = -ENOMEM;
1366 buf = kmalloc(be16_to_cpu(msg->data_len), GFP_NOFS);
1367 item = kzalloc(sizeof(*item), GFP_NOFS);
1368 if (!buf || !item)
1369 goto leave;
1371 /* lookup the lock to see if we have a secondary queue for this
1372 * already... just add the locks in and this will have its owner
1373 * and RECOVERY flag changed when it completes. */
1374 res = dlm_lookup_lockres(dlm, mres->lockname, mres->lockname_len);
1375 if (res) {
1376 /* this will get a ref on res */
1377 /* mark it as recovering/migrating and hash it */
1378 spin_lock(&res->spinlock);
1379 if (mres->flags & DLM_MRES_RECOVERY) {
1380 res->state |= DLM_LOCK_RES_RECOVERING;
1381 } else {
1382 if (res->state & DLM_LOCK_RES_MIGRATING) {
1383 /* this is at least the second
1384 * lockres message */
1385 mlog(0, "lock %.*s is already migrating\n",
1386 mres->lockname_len,
1387 mres->lockname);
1388 } else if (res->state & DLM_LOCK_RES_RECOVERING) {
1389 /* caller should BUG */
1390 mlog(ML_ERROR, "node is attempting to migrate "
1391 "lock %.*s, but marked as recovering!\n",
1392 mres->lockname_len, mres->lockname);
1393 ret = -EFAULT;
1394 spin_unlock(&res->spinlock);
1395 goto leave;
1397 res->state |= DLM_LOCK_RES_MIGRATING;
1399 spin_unlock(&res->spinlock);
1400 } else {
1401 /* need to allocate, just like if it was
1402 * mastered here normally */
1403 res = dlm_new_lockres(dlm, mres->lockname, mres->lockname_len);
1404 if (!res)
1405 goto leave;
1407 /* to match the ref that we would have gotten if
1408 * dlm_lookup_lockres had succeeded */
1409 dlm_lockres_get(res);
1411 /* mark it as recovering/migrating and hash it */
1412 if (mres->flags & DLM_MRES_RECOVERY)
1413 res->state |= DLM_LOCK_RES_RECOVERING;
1414 else
1415 res->state |= DLM_LOCK_RES_MIGRATING;
1417 spin_lock(&dlm->spinlock);
1418 __dlm_insert_lockres(dlm, res);
1419 spin_unlock(&dlm->spinlock);
1421 /* now that the new lockres is inserted,
1422 * make it usable by other processes */
1423 spin_lock(&res->spinlock);
1424 res->state &= ~DLM_LOCK_RES_IN_PROGRESS;
1425 spin_unlock(&res->spinlock);
1427 /* add an extra ref for just-allocated lockres
1428 * otherwise the lockres will be purged immediately */
1429 dlm_lockres_get(res);
1432 /* at this point we have allocated everything we need,
1433 * and we have a hashed lockres with an extra ref and
1434 * the proper res->state flags. */
1435 ret = 0;
1436 spin_lock(&res->spinlock);
1437 /* drop this either when master requery finds a different master
1438 * or when a lock is added by the recovery worker */
1439 dlm_lockres_grab_inflight_ref(dlm, res);
1440 if (mres->master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1441 /* migration cannot have an unknown master */
1442 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1443 mlog(0, "recovery has passed me a lockres with an "
1444 "unknown owner.. will need to requery: "
1445 "%.*s\n", mres->lockname_len, mres->lockname);
1446 } else {
1447 /* take a reference now to pin the lockres, drop it
1448 * when locks are added in the worker */
1449 dlm_change_lockres_owner(dlm, res, dlm->node_num);
1451 spin_unlock(&res->spinlock);
1453 /* queue up work for dlm_mig_lockres_worker */
1454 dlm_grab(dlm); /* get an extra ref for the work item */
1455 memcpy(buf, msg->buf, be16_to_cpu(msg->data_len)); /* copy the whole message */
1456 dlm_init_work_item(dlm, item, dlm_mig_lockres_worker, buf);
1457 item->u.ml.lockres = res; /* already have a ref */
1458 item->u.ml.real_master = real_master;
1459 spin_lock(&dlm->work_lock);
1460 list_add_tail(&item->list, &dlm->work_list);
1461 spin_unlock(&dlm->work_lock);
1462 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
1464 leave:
1465 dlm_put(dlm);
1466 if (ret < 0) {
1467 if (buf)
1468 kfree(buf);
1469 if (item)
1470 kfree(item);
1473 mlog_exit(ret);
1474 return ret;
1478 static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data)
1480 struct dlm_ctxt *dlm = data;
1481 struct dlm_migratable_lockres *mres;
1482 int ret = 0;
1483 struct dlm_lock_resource *res;
1484 u8 real_master;
1486 dlm = item->dlm;
1487 mres = (struct dlm_migratable_lockres *)data;
1489 res = item->u.ml.lockres;
1490 real_master = item->u.ml.real_master;
1492 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1493 /* this case is super-rare. only occurs if
1494 * node death happens during migration. */
1495 again:
1496 ret = dlm_lockres_master_requery(dlm, res, &real_master);
1497 if (ret < 0) {
1498 mlog(0, "dlm_lockres_master_requery ret=%d\n",
1499 ret);
1500 goto again;
1502 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1503 mlog(0, "lockres %.*s not claimed. "
1504 "this node will take it.\n",
1505 res->lockname.len, res->lockname.name);
1506 } else {
1507 spin_lock(&res->spinlock);
1508 dlm_lockres_drop_inflight_ref(dlm, res);
1509 spin_unlock(&res->spinlock);
1510 mlog(0, "master needs to respond to sender "
1511 "that node %u still owns %.*s\n",
1512 real_master, res->lockname.len,
1513 res->lockname.name);
1514 /* cannot touch this lockres */
1515 goto leave;
1519 ret = dlm_process_recovery_data(dlm, res, mres);
1520 if (ret < 0)
1521 mlog(0, "dlm_process_recovery_data returned %d\n", ret);
1522 else
1523 mlog(0, "dlm_process_recovery_data succeeded\n");
1525 if ((mres->flags & (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) ==
1526 (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) {
1527 ret = dlm_finish_migration(dlm, res, mres->master);
1528 if (ret < 0)
1529 mlog_errno(ret);
1532 leave:
1533 kfree(data);
1534 mlog_exit(ret);
1539 static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
1540 struct dlm_lock_resource *res,
1541 u8 *real_master)
1543 struct dlm_node_iter iter;
1544 int nodenum;
1545 int ret = 0;
1547 *real_master = DLM_LOCK_RES_OWNER_UNKNOWN;
1549 /* we only reach here if one of the two nodes in a
1550 * migration died while the migration was in progress.
1551 * at this point we need to requery the master. we
1552 * know that the new_master got as far as creating
1553 * an mle on at least one node, but we do not know
1554 * if any nodes had actually cleared the mle and set
1555 * the master to the new_master. the old master
1556 * is supposed to set the owner to UNKNOWN in the
1557 * event of a new_master death, so the only possible
1558 * responses that we can get from nodes here are
1559 * that the master is new_master, or that the master
1560 * is UNKNOWN.
1561 * if all nodes come back with UNKNOWN then we know
1562 * the lock needs remastering here.
1563 * if any node comes back with a valid master, check
1564 * to see if that master is the one that we are
1565 * recovering. if so, then the new_master died and
1566 * we need to remaster this lock. if not, then the
1567 * new_master survived and that node will respond to
1568 * other nodes about the owner.
1569 * if there is an owner, this node needs to dump this
1570 * lockres and alert the sender that this lockres
1571 * was rejected. */
1572 spin_lock(&dlm->spinlock);
1573 dlm_node_iter_init(dlm->domain_map, &iter);
1574 spin_unlock(&dlm->spinlock);
1576 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
1577 /* do not send to self */
1578 if (nodenum == dlm->node_num)
1579 continue;
1580 ret = dlm_do_master_requery(dlm, res, nodenum, real_master);
1581 if (ret < 0) {
1582 mlog_errno(ret);
1583 if (!dlm_is_host_down(ret))
1584 BUG();
1585 /* host is down, so answer for that node would be
1586 * DLM_LOCK_RES_OWNER_UNKNOWN. continue. */
1588 if (*real_master != DLM_LOCK_RES_OWNER_UNKNOWN) {
1589 mlog(0, "lock master is %u\n", *real_master);
1590 break;
1593 return ret;
1597 int dlm_do_master_requery(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1598 u8 nodenum, u8 *real_master)
1600 int ret = -EINVAL;
1601 struct dlm_master_requery req;
1602 int status = DLM_LOCK_RES_OWNER_UNKNOWN;
1604 memset(&req, 0, sizeof(req));
1605 req.node_idx = dlm->node_num;
1606 req.namelen = res->lockname.len;
1607 memcpy(req.name, res->lockname.name, res->lockname.len);
1609 ret = o2net_send_message(DLM_MASTER_REQUERY_MSG, dlm->key,
1610 &req, sizeof(req), nodenum, &status);
1611 /* XXX: negative status not handled properly here. */
1612 if (ret < 0)
1613 mlog_errno(ret);
1614 else {
1615 BUG_ON(status < 0);
1616 BUG_ON(status > DLM_LOCK_RES_OWNER_UNKNOWN);
1617 *real_master = (u8) (status & 0xff);
1618 mlog(0, "node %u responded to master requery with %u\n",
1619 nodenum, *real_master);
1620 ret = 0;
1622 return ret;
1626 /* this function cannot error, so unless the sending
1627 * or receiving of the message failed, the owner can
1628 * be trusted */
1629 int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data)
1631 struct dlm_ctxt *dlm = data;
1632 struct dlm_master_requery *req = (struct dlm_master_requery *)msg->buf;
1633 struct dlm_lock_resource *res = NULL;
1634 unsigned int hash;
1635 int master = DLM_LOCK_RES_OWNER_UNKNOWN;
1636 u32 flags = DLM_ASSERT_MASTER_REQUERY;
1638 if (!dlm_grab(dlm)) {
1639 /* since the domain has gone away on this
1640 * node, the proper response is UNKNOWN */
1641 return master;
1644 hash = dlm_lockid_hash(req->name, req->namelen);
1646 spin_lock(&dlm->spinlock);
1647 res = __dlm_lookup_lockres(dlm, req->name, req->namelen, hash);
1648 if (res) {
1649 spin_lock(&res->spinlock);
1650 master = res->owner;
1651 if (master == dlm->node_num) {
1652 int ret = dlm_dispatch_assert_master(dlm, res,
1653 0, 0, flags);
1654 if (ret < 0) {
1655 mlog_errno(-ENOMEM);
1656 /* retry!? */
1657 BUG();
1660 spin_unlock(&res->spinlock);
1662 spin_unlock(&dlm->spinlock);
1664 dlm_put(dlm);
1665 return master;
1668 static inline struct list_head *
1669 dlm_list_num_to_pointer(struct dlm_lock_resource *res, int list_num)
1671 struct list_head *ret;
1672 BUG_ON(list_num < 0);
1673 BUG_ON(list_num > 2);
1674 ret = &(res->granted);
1675 ret += list_num;
1676 return ret;
1678 /* TODO: do ast flush business
1679 * TODO: do MIGRATING and RECOVERING spinning
1683 * NOTE about in-flight requests during migration:
1685 * Before attempting the migrate, the master has marked the lockres as
1686 * MIGRATING and then flushed all of its pending ASTS. So any in-flight
1687 * requests either got queued before the MIGRATING flag got set, in which
1688 * case the lock data will reflect the change and a return message is on
1689 * the way, or the request failed to get in before MIGRATING got set. In
1690 * this case, the caller will be told to spin and wait for the MIGRATING
1691 * flag to be dropped, then recheck the master.
1692 * This holds true for the convert, cancel and unlock cases, and since lvb
1693 * updates are tied to these same messages, it applies to lvb updates as
1694 * well. For the lock case, there is no way a lock can be on the master
1695 * queue and not be on the secondary queue since the lock is always added
1696 * locally first. This means that the new target node will never be sent
1697 * a lock that he doesn't already have on the list.
1698 * In total, this means that the local lock is correct and should not be
1699 * updated to match the one sent by the master. Any messages sent back
1700 * from the master before the MIGRATING flag will bring the lock properly
1701 * up-to-date, and the change will be ordered properly for the waiter.
1702 * We will *not* attempt to modify the lock underneath the waiter.
1705 static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
1706 struct dlm_lock_resource *res,
1707 struct dlm_migratable_lockres *mres)
1709 struct dlm_migratable_lock *ml;
1710 struct list_head *queue;
1711 struct list_head *tmpq = NULL;
1712 struct dlm_lock *newlock = NULL;
1713 struct dlm_lockstatus *lksb = NULL;
1714 int ret = 0;
1715 int i, j, bad;
1716 struct list_head *iter;
1717 struct dlm_lock *lock = NULL;
1718 u8 from = O2NM_MAX_NODES;
1719 unsigned int added = 0;
1721 mlog(0, "running %d locks for this lockres\n", mres->num_locks);
1722 for (i=0; i<mres->num_locks; i++) {
1723 ml = &(mres->ml[i]);
1725 if (dlm_is_dummy_lock(dlm, ml, &from)) {
1726 /* placeholder, just need to set the refmap bit */
1727 BUG_ON(mres->num_locks != 1);
1728 mlog(0, "%s:%.*s: dummy lock for %u\n",
1729 dlm->name, mres->lockname_len, mres->lockname,
1730 from);
1731 spin_lock(&res->spinlock);
1732 dlm_lockres_set_refmap_bit(from, res);
1733 spin_unlock(&res->spinlock);
1734 added++;
1735 break;
1737 BUG_ON(ml->highest_blocked != LKM_IVMODE);
1738 newlock = NULL;
1739 lksb = NULL;
1741 queue = dlm_list_num_to_pointer(res, ml->list);
1742 tmpq = NULL;
1744 /* if the lock is for the local node it needs to
1745 * be moved to the proper location within the queue.
1746 * do not allocate a new lock structure. */
1747 if (ml->node == dlm->node_num) {
1748 /* MIGRATION ONLY! */
1749 BUG_ON(!(mres->flags & DLM_MRES_MIGRATION));
1751 spin_lock(&res->spinlock);
1752 for (j = DLM_GRANTED_LIST; j <= DLM_BLOCKED_LIST; j++) {
1753 tmpq = dlm_list_idx_to_ptr(res, j);
1754 list_for_each(iter, tmpq) {
1755 lock = list_entry (iter, struct dlm_lock, list);
1756 if (lock->ml.cookie != ml->cookie)
1757 lock = NULL;
1758 else
1759 break;
1761 if (lock)
1762 break;
1765 /* lock is always created locally first, and
1766 * destroyed locally last. it must be on the list */
1767 if (!lock) {
1768 u64 c = ml->cookie;
1769 mlog(ML_ERROR, "could not find local lock "
1770 "with cookie %u:%llu!\n",
1771 dlm_get_lock_cookie_node(c),
1772 dlm_get_lock_cookie_seq(c));
1773 __dlm_print_one_lock_resource(res);
1774 BUG();
1776 BUG_ON(lock->ml.node != ml->node);
1778 if (tmpq != queue) {
1779 mlog(0, "lock was on %u instead of %u for %.*s\n",
1780 j, ml->list, res->lockname.len, res->lockname.name);
1781 spin_unlock(&res->spinlock);
1782 continue;
1785 /* see NOTE above about why we do not update
1786 * to match the master here */
1788 /* move the lock to its proper place */
1789 /* do not alter lock refcount. switching lists. */
1790 list_move_tail(&lock->list, queue);
1791 spin_unlock(&res->spinlock);
1792 added++;
1794 mlog(0, "just reordered a local lock!\n");
1795 continue;
1798 /* lock is for another node. */
1799 newlock = dlm_new_lock(ml->type, ml->node,
1800 be64_to_cpu(ml->cookie), NULL);
1801 if (!newlock) {
1802 ret = -ENOMEM;
1803 goto leave;
1805 lksb = newlock->lksb;
1806 dlm_lock_attach_lockres(newlock, res);
1808 if (ml->convert_type != LKM_IVMODE) {
1809 BUG_ON(queue != &res->converting);
1810 newlock->ml.convert_type = ml->convert_type;
1812 lksb->flags |= (ml->flags &
1813 (DLM_LKSB_PUT_LVB|DLM_LKSB_GET_LVB));
1815 if (ml->type == LKM_NLMODE)
1816 goto skip_lvb;
1818 if (!dlm_lvb_is_empty(mres->lvb)) {
1819 if (lksb->flags & DLM_LKSB_PUT_LVB) {
1820 /* other node was trying to update
1821 * lvb when node died. recreate the
1822 * lksb with the updated lvb. */
1823 memcpy(lksb->lvb, mres->lvb, DLM_LVB_LEN);
1824 /* the lock resource lvb update must happen
1825 * NOW, before the spinlock is dropped.
1826 * we no longer wait for the AST to update
1827 * the lvb. */
1828 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
1829 } else {
1830 /* otherwise, the node is sending its
1831 * most recent valid lvb info */
1832 BUG_ON(ml->type != LKM_EXMODE &&
1833 ml->type != LKM_PRMODE);
1834 if (!dlm_lvb_is_empty(res->lvb) &&
1835 (ml->type == LKM_EXMODE ||
1836 memcmp(res->lvb, mres->lvb, DLM_LVB_LEN))) {
1837 int i;
1838 mlog(ML_ERROR, "%s:%.*s: received bad "
1839 "lvb! type=%d\n", dlm->name,
1840 res->lockname.len,
1841 res->lockname.name, ml->type);
1842 printk("lockres lvb=[");
1843 for (i=0; i<DLM_LVB_LEN; i++)
1844 printk("%02x", res->lvb[i]);
1845 printk("]\nmigrated lvb=[");
1846 for (i=0; i<DLM_LVB_LEN; i++)
1847 printk("%02x", mres->lvb[i]);
1848 printk("]\n");
1849 dlm_print_one_lock_resource(res);
1850 BUG();
1852 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
1855 skip_lvb:
1857 /* NOTE:
1858 * wrt lock queue ordering and recovery:
1859 * 1. order of locks on granted queue is
1860 * meaningless.
1861 * 2. order of locks on converting queue is
1862 * LOST with the node death. sorry charlie.
1863 * 3. order of locks on the blocked queue is
1864 * also LOST.
1865 * order of locks does not affect integrity, it
1866 * just means that a lock request may get pushed
1867 * back in line as a result of the node death.
1868 * also note that for a given node the lock order
1869 * for its secondary queue locks is preserved
1870 * relative to each other, but clearly *not*
1871 * preserved relative to locks from other nodes.
1873 bad = 0;
1874 spin_lock(&res->spinlock);
1875 list_for_each_entry(lock, queue, list) {
1876 if (lock->ml.cookie == ml->cookie) {
1877 u64 c = lock->ml.cookie;
1878 mlog(ML_ERROR, "%s:%.*s: %u:%llu: lock already "
1879 "exists on this lockres!\n", dlm->name,
1880 res->lockname.len, res->lockname.name,
1881 dlm_get_lock_cookie_node(c),
1882 dlm_get_lock_cookie_seq(c));
1884 mlog(ML_NOTICE, "sent lock: type=%d, conv=%d, "
1885 "node=%u, cookie=%u:%llu, queue=%d\n",
1886 ml->type, ml->convert_type, ml->node,
1887 dlm_get_lock_cookie_node(ml->cookie),
1888 dlm_get_lock_cookie_seq(ml->cookie),
1889 ml->list);
1891 __dlm_print_one_lock_resource(res);
1892 bad = 1;
1893 break;
1896 if (!bad) {
1897 dlm_lock_get(newlock);
1898 list_add_tail(&newlock->list, queue);
1899 mlog(0, "%s:%.*s: added lock for node %u, "
1900 "setting refmap bit\n", dlm->name,
1901 res->lockname.len, res->lockname.name, ml->node);
1902 dlm_lockres_set_refmap_bit(ml->node, res);
1903 added++;
1905 spin_unlock(&res->spinlock);
1907 mlog(0, "done running all the locks\n");
1909 leave:
1910 /* balance the ref taken when the work was queued */
1911 spin_lock(&res->spinlock);
1912 dlm_lockres_drop_inflight_ref(dlm, res);
1913 spin_unlock(&res->spinlock);
1915 if (ret < 0) {
1916 mlog_errno(ret);
1917 if (newlock)
1918 dlm_lock_put(newlock);
1921 mlog_exit(ret);
1922 return ret;
1925 void dlm_move_lockres_to_recovery_list(struct dlm_ctxt *dlm,
1926 struct dlm_lock_resource *res)
1928 int i;
1929 struct list_head *queue, *iter, *iter2;
1930 struct dlm_lock *lock;
1932 res->state |= DLM_LOCK_RES_RECOVERING;
1933 if (!list_empty(&res->recovering)) {
1934 mlog(0,
1935 "Recovering res %s:%.*s, is already on recovery list!\n",
1936 dlm->name, res->lockname.len, res->lockname.name);
1937 list_del_init(&res->recovering);
1939 /* We need to hold a reference while on the recovery list */
1940 dlm_lockres_get(res);
1941 list_add_tail(&res->recovering, &dlm->reco.resources);
1943 /* find any pending locks and put them back on proper list */
1944 for (i=DLM_BLOCKED_LIST; i>=DLM_GRANTED_LIST; i--) {
1945 queue = dlm_list_idx_to_ptr(res, i);
1946 list_for_each_safe(iter, iter2, queue) {
1947 lock = list_entry (iter, struct dlm_lock, list);
1948 dlm_lock_get(lock);
1949 if (lock->convert_pending) {
1950 /* move converting lock back to granted */
1951 BUG_ON(i != DLM_CONVERTING_LIST);
1952 mlog(0, "node died with convert pending "
1953 "on %.*s. move back to granted list.\n",
1954 res->lockname.len, res->lockname.name);
1955 dlm_revert_pending_convert(res, lock);
1956 lock->convert_pending = 0;
1957 } else if (lock->lock_pending) {
1958 /* remove pending lock requests completely */
1959 BUG_ON(i != DLM_BLOCKED_LIST);
1960 mlog(0, "node died with lock pending "
1961 "on %.*s. remove from blocked list and skip.\n",
1962 res->lockname.len, res->lockname.name);
1963 /* lock will be floating until ref in
1964 * dlmlock_remote is freed after the network
1965 * call returns. ok for it to not be on any
1966 * list since no ast can be called
1967 * (the master is dead). */
1968 dlm_revert_pending_lock(res, lock);
1969 lock->lock_pending = 0;
1970 } else if (lock->unlock_pending) {
1971 /* if an unlock was in progress, treat as
1972 * if this had completed successfully
1973 * before sending this lock state to the
1974 * new master. note that the dlm_unlock
1975 * call is still responsible for calling
1976 * the unlockast. that will happen after
1977 * the network call times out. for now,
1978 * just move lists to prepare the new
1979 * recovery master. */
1980 BUG_ON(i != DLM_GRANTED_LIST);
1981 mlog(0, "node died with unlock pending "
1982 "on %.*s. remove from blocked list and skip.\n",
1983 res->lockname.len, res->lockname.name);
1984 dlm_commit_pending_unlock(res, lock);
1985 lock->unlock_pending = 0;
1986 } else if (lock->cancel_pending) {
1987 /* if a cancel was in progress, treat as
1988 * if this had completed successfully
1989 * before sending this lock state to the
1990 * new master */
1991 BUG_ON(i != DLM_CONVERTING_LIST);
1992 mlog(0, "node died with cancel pending "
1993 "on %.*s. move back to granted list.\n",
1994 res->lockname.len, res->lockname.name);
1995 dlm_commit_pending_cancel(res, lock);
1996 lock->cancel_pending = 0;
1998 dlm_lock_put(lock);
2005 /* removes all recovered locks from the recovery list.
2006 * sets the res->owner to the new master.
2007 * unsets the RECOVERY flag and wakes waiters. */
2008 static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
2009 u8 dead_node, u8 new_master)
2011 int i;
2012 struct list_head *iter, *iter2;
2013 struct hlist_node *hash_iter;
2014 struct hlist_head *bucket;
2016 struct dlm_lock_resource *res;
2018 mlog_entry_void();
2020 assert_spin_locked(&dlm->spinlock);
2022 list_for_each_safe(iter, iter2, &dlm->reco.resources) {
2023 res = list_entry (iter, struct dlm_lock_resource, recovering);
2024 if (res->owner == dead_node) {
2025 list_del_init(&res->recovering);
2026 spin_lock(&res->spinlock);
2027 /* new_master has our reference from
2028 * the lock state sent during recovery */
2029 dlm_change_lockres_owner(dlm, res, new_master);
2030 res->state &= ~DLM_LOCK_RES_RECOVERING;
2031 if (__dlm_lockres_has_locks(res))
2032 __dlm_dirty_lockres(dlm, res);
2033 spin_unlock(&res->spinlock);
2034 wake_up(&res->wq);
2035 dlm_lockres_put(res);
2039 /* this will become unnecessary eventually, but
2040 * for now we need to run the whole hash, clear
2041 * the RECOVERING state and set the owner
2042 * if necessary */
2043 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
2044 bucket = dlm_lockres_hash(dlm, i);
2045 hlist_for_each_entry(res, hash_iter, bucket, hash_node) {
2046 if (res->state & DLM_LOCK_RES_RECOVERING) {
2047 if (res->owner == dead_node) {
2048 mlog(0, "(this=%u) res %.*s owner=%u "
2049 "was not on recovering list, but "
2050 "clearing state anyway\n",
2051 dlm->node_num, res->lockname.len,
2052 res->lockname.name, new_master);
2053 } else if (res->owner == dlm->node_num) {
2054 mlog(0, "(this=%u) res %.*s owner=%u "
2055 "was not on recovering list, "
2056 "owner is THIS node, clearing\n",
2057 dlm->node_num, res->lockname.len,
2058 res->lockname.name, new_master);
2059 } else
2060 continue;
2062 if (!list_empty(&res->recovering)) {
2063 mlog(0, "%s:%.*s: lockres was "
2064 "marked RECOVERING, owner=%u\n",
2065 dlm->name, res->lockname.len,
2066 res->lockname.name, res->owner);
2067 list_del_init(&res->recovering);
2068 dlm_lockres_put(res);
2070 spin_lock(&res->spinlock);
2071 /* new_master has our reference from
2072 * the lock state sent during recovery */
2073 dlm_change_lockres_owner(dlm, res, new_master);
2074 res->state &= ~DLM_LOCK_RES_RECOVERING;
2075 if (__dlm_lockres_has_locks(res))
2076 __dlm_dirty_lockres(dlm, res);
2077 spin_unlock(&res->spinlock);
2078 wake_up(&res->wq);
2084 static inline int dlm_lvb_needs_invalidation(struct dlm_lock *lock, int local)
2086 if (local) {
2087 if (lock->ml.type != LKM_EXMODE &&
2088 lock->ml.type != LKM_PRMODE)
2089 return 1;
2090 } else if (lock->ml.type == LKM_EXMODE)
2091 return 1;
2092 return 0;
2095 static void dlm_revalidate_lvb(struct dlm_ctxt *dlm,
2096 struct dlm_lock_resource *res, u8 dead_node)
2098 struct list_head *iter, *queue;
2099 struct dlm_lock *lock;
2100 int blank_lvb = 0, local = 0;
2101 int i;
2102 u8 search_node;
2104 assert_spin_locked(&dlm->spinlock);
2105 assert_spin_locked(&res->spinlock);
2107 if (res->owner == dlm->node_num)
2108 /* if this node owned the lockres, and if the dead node
2109 * had an EX when he died, blank out the lvb */
2110 search_node = dead_node;
2111 else {
2112 /* if this is a secondary lockres, and we had no EX or PR
2113 * locks granted, we can no longer trust the lvb */
2114 search_node = dlm->node_num;
2115 local = 1; /* check local state for valid lvb */
2118 for (i=DLM_GRANTED_LIST; i<=DLM_CONVERTING_LIST; i++) {
2119 queue = dlm_list_idx_to_ptr(res, i);
2120 list_for_each(iter, queue) {
2121 lock = list_entry (iter, struct dlm_lock, list);
2122 if (lock->ml.node == search_node) {
2123 if (dlm_lvb_needs_invalidation(lock, local)) {
2124 /* zero the lksb lvb and lockres lvb */
2125 blank_lvb = 1;
2126 memset(lock->lksb->lvb, 0, DLM_LVB_LEN);
2132 if (blank_lvb) {
2133 mlog(0, "clearing %.*s lvb, dead node %u had EX\n",
2134 res->lockname.len, res->lockname.name, dead_node);
2135 memset(res->lvb, 0, DLM_LVB_LEN);
2139 static void dlm_free_dead_locks(struct dlm_ctxt *dlm,
2140 struct dlm_lock_resource *res, u8 dead_node)
2142 struct list_head *iter, *tmpiter;
2143 struct dlm_lock *lock;
2144 unsigned int freed = 0;
2146 /* this node is the lockres master:
2147 * 1) remove any stale locks for the dead node
2148 * 2) if the dead node had an EX when he died, blank out the lvb
2150 assert_spin_locked(&dlm->spinlock);
2151 assert_spin_locked(&res->spinlock);
2153 /* TODO: check pending_asts, pending_basts here */
2154 list_for_each_safe(iter, tmpiter, &res->granted) {
2155 lock = list_entry (iter, struct dlm_lock, list);
2156 if (lock->ml.node == dead_node) {
2157 list_del_init(&lock->list);
2158 dlm_lock_put(lock);
2159 freed++;
2162 list_for_each_safe(iter, tmpiter, &res->converting) {
2163 lock = list_entry (iter, struct dlm_lock, list);
2164 if (lock->ml.node == dead_node) {
2165 list_del_init(&lock->list);
2166 dlm_lock_put(lock);
2167 freed++;
2170 list_for_each_safe(iter, tmpiter, &res->blocked) {
2171 lock = list_entry (iter, struct dlm_lock, list);
2172 if (lock->ml.node == dead_node) {
2173 list_del_init(&lock->list);
2174 dlm_lock_put(lock);
2175 freed++;
2179 if (freed) {
2180 mlog(0, "%s:%.*s: freed %u locks for dead node %u, "
2181 "dropping ref from lockres\n", dlm->name,
2182 res->lockname.len, res->lockname.name, freed, dead_node);
2183 BUG_ON(!test_bit(dead_node, res->refmap));
2184 dlm_lockres_clear_refmap_bit(dead_node, res);
2185 } else if (test_bit(dead_node, res->refmap)) {
2186 mlog(0, "%s:%.*s: dead node %u had a ref, but had "
2187 "no locks and had not purged before dying\n", dlm->name,
2188 res->lockname.len, res->lockname.name, dead_node);
2189 dlm_lockres_clear_refmap_bit(dead_node, res);
2192 /* do not kick thread yet */
2193 __dlm_dirty_lockres(dlm, res);
2196 /* if this node is the recovery master, and there are no
2197 * locks for a given lockres owned by this node that are in
2198 * either PR or EX mode, zero out the lvb before requesting.
2203 static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node)
2205 struct hlist_node *iter;
2206 struct dlm_lock_resource *res;
2207 int i;
2208 struct hlist_head *bucket;
2209 struct dlm_lock *lock;
2212 /* purge any stale mles */
2213 dlm_clean_master_list(dlm, dead_node);
2216 * now clean up all lock resources. there are two rules:
2218 * 1) if the dead node was the master, move the lockres
2219 * to the recovering list. set the RECOVERING flag.
2220 * this lockres needs to be cleaned up before it can
2221 * be used further.
2223 * 2) if this node was the master, remove all locks from
2224 * each of the lockres queues that were owned by the
2225 * dead node. once recovery finishes, the dlm thread
2226 * can be kicked again to see if any ASTs or BASTs
2227 * need to be fired as a result.
2229 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
2230 bucket = dlm_lockres_hash(dlm, i);
2231 hlist_for_each_entry(res, iter, bucket, hash_node) {
2232 /* always prune any $RECOVERY entries for dead nodes,
2233 * otherwise hangs can occur during later recovery */
2234 if (dlm_is_recovery_lock(res->lockname.name,
2235 res->lockname.len)) {
2236 spin_lock(&res->spinlock);
2237 list_for_each_entry(lock, &res->granted, list) {
2238 if (lock->ml.node == dead_node) {
2239 mlog(0, "AHA! there was "
2240 "a $RECOVERY lock for dead "
2241 "node %u (%s)!\n",
2242 dead_node, dlm->name);
2243 list_del_init(&lock->list);
2244 dlm_lock_put(lock);
2245 break;
2248 spin_unlock(&res->spinlock);
2249 continue;
2251 spin_lock(&res->spinlock);
2252 /* zero the lvb if necessary */
2253 dlm_revalidate_lvb(dlm, res, dead_node);
2254 if (res->owner == dead_node) {
2255 if (res->state & DLM_LOCK_RES_DROPPING_REF)
2256 mlog(0, "%s:%.*s: owned by "
2257 "dead node %u, this node was "
2258 "dropping its ref when it died. "
2259 "continue, dropping the flag.\n",
2260 dlm->name, res->lockname.len,
2261 res->lockname.name, dead_node);
2263 /* the wake_up for this will happen when the
2264 * RECOVERING flag is dropped later */
2265 res->state &= ~DLM_LOCK_RES_DROPPING_REF;
2267 dlm_move_lockres_to_recovery_list(dlm, res);
2268 } else if (res->owner == dlm->node_num) {
2269 dlm_free_dead_locks(dlm, res, dead_node);
2270 __dlm_lockres_calc_usage(dlm, res);
2272 spin_unlock(&res->spinlock);
2278 static void __dlm_hb_node_down(struct dlm_ctxt *dlm, int idx)
2280 assert_spin_locked(&dlm->spinlock);
2282 if (dlm->reco.new_master == idx) {
2283 mlog(0, "%s: recovery master %d just died\n",
2284 dlm->name, idx);
2285 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2286 /* finalize1 was reached, so it is safe to clear
2287 * the new_master and dead_node. that recovery
2288 * is complete. */
2289 mlog(0, "%s: dead master %d had reached "
2290 "finalize1 state, clearing\n", dlm->name, idx);
2291 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
2292 __dlm_reset_recovery(dlm);
2296 /* check to see if the node is already considered dead */
2297 if (!test_bit(idx, dlm->live_nodes_map)) {
2298 mlog(0, "for domain %s, node %d is already dead. "
2299 "another node likely did recovery already.\n",
2300 dlm->name, idx);
2301 return;
2304 /* check to see if we do not care about this node */
2305 if (!test_bit(idx, dlm->domain_map)) {
2306 /* This also catches the case that we get a node down
2307 * but haven't joined the domain yet. */
2308 mlog(0, "node %u already removed from domain!\n", idx);
2309 return;
2312 clear_bit(idx, dlm->live_nodes_map);
2314 /* Clean up join state on node death. */
2315 if (dlm->joining_node == idx) {
2316 mlog(0, "Clearing join state for node %u\n", idx);
2317 __dlm_set_joining_node(dlm, DLM_LOCK_RES_OWNER_UNKNOWN);
2320 /* make sure local cleanup occurs before the heartbeat events */
2321 if (!test_bit(idx, dlm->recovery_map))
2322 dlm_do_local_recovery_cleanup(dlm, idx);
2324 /* notify anything attached to the heartbeat events */
2325 dlm_hb_event_notify_attached(dlm, idx, 0);
2327 mlog(0, "node %u being removed from domain map!\n", idx);
2328 clear_bit(idx, dlm->domain_map);
2329 /* wake up migration waiters if a node goes down.
2330 * perhaps later we can genericize this for other waiters. */
2331 wake_up(&dlm->migration_wq);
2333 if (test_bit(idx, dlm->recovery_map))
2334 mlog(0, "domain %s, node %u already added "
2335 "to recovery map!\n", dlm->name, idx);
2336 else
2337 set_bit(idx, dlm->recovery_map);
2340 void dlm_hb_node_down_cb(struct o2nm_node *node, int idx, void *data)
2342 struct dlm_ctxt *dlm = data;
2344 if (!dlm_grab(dlm))
2345 return;
2347 spin_lock(&dlm->spinlock);
2348 __dlm_hb_node_down(dlm, idx);
2349 spin_unlock(&dlm->spinlock);
2351 dlm_put(dlm);
2354 void dlm_hb_node_up_cb(struct o2nm_node *node, int idx, void *data)
2356 struct dlm_ctxt *dlm = data;
2358 if (!dlm_grab(dlm))
2359 return;
2361 spin_lock(&dlm->spinlock);
2362 set_bit(idx, dlm->live_nodes_map);
2363 /* do NOT notify mle attached to the heartbeat events.
2364 * new nodes are not interesting in mastery until joined. */
2365 spin_unlock(&dlm->spinlock);
2367 dlm_put(dlm);
2370 static void dlm_reco_ast(void *astdata)
2372 struct dlm_ctxt *dlm = astdata;
2373 mlog(0, "ast for recovery lock fired!, this=%u, dlm=%s\n",
2374 dlm->node_num, dlm->name);
2376 static void dlm_reco_bast(void *astdata, int blocked_type)
2378 struct dlm_ctxt *dlm = astdata;
2379 mlog(0, "bast for recovery lock fired!, this=%u, dlm=%s\n",
2380 dlm->node_num, dlm->name);
2382 static void dlm_reco_unlock_ast(void *astdata, enum dlm_status st)
2384 mlog(0, "unlockast for recovery lock fired!\n");
2388 * dlm_pick_recovery_master will continually attempt to use
2389 * dlmlock() on the special "$RECOVERY" lockres with the
2390 * LKM_NOQUEUE flag to get an EX. every thread that enters
2391 * this function on each node racing to become the recovery
2392 * master will not stop attempting this until either:
2393 * a) this node gets the EX (and becomes the recovery master),
2394 * or b) dlm->reco.new_master gets set to some nodenum
2395 * != O2NM_INVALID_NODE_NUM (another node will do the reco).
2396 * so each time a recovery master is needed, the entire cluster
2397 * will sync at this point. if the new master dies, that will
2398 * be detected in dlm_do_recovery */
2399 static int dlm_pick_recovery_master(struct dlm_ctxt *dlm)
2401 enum dlm_status ret;
2402 struct dlm_lockstatus lksb;
2403 int status = -EINVAL;
2405 mlog(0, "starting recovery of %s at %lu, dead=%u, this=%u\n",
2406 dlm->name, jiffies, dlm->reco.dead_node, dlm->node_num);
2407 again:
2408 memset(&lksb, 0, sizeof(lksb));
2410 ret = dlmlock(dlm, LKM_EXMODE, &lksb, LKM_NOQUEUE|LKM_RECOVERY,
2411 DLM_RECOVERY_LOCK_NAME, DLM_RECOVERY_LOCK_NAME_LEN,
2412 dlm_reco_ast, dlm, dlm_reco_bast);
2414 mlog(0, "%s: dlmlock($RECOVERY) returned %d, lksb=%d\n",
2415 dlm->name, ret, lksb.status);
2417 if (ret == DLM_NORMAL) {
2418 mlog(0, "dlm=%s dlmlock says I got it (this=%u)\n",
2419 dlm->name, dlm->node_num);
2421 /* got the EX lock. check to see if another node
2422 * just became the reco master */
2423 if (dlm_reco_master_ready(dlm)) {
2424 mlog(0, "%s: got reco EX lock, but %u will "
2425 "do the recovery\n", dlm->name,
2426 dlm->reco.new_master);
2427 status = -EEXIST;
2428 } else {
2429 status = 0;
2431 /* see if recovery was already finished elsewhere */
2432 spin_lock(&dlm->spinlock);
2433 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
2434 status = -EINVAL;
2435 mlog(0, "%s: got reco EX lock, but "
2436 "node got recovered already\n", dlm->name);
2437 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
2438 mlog(ML_ERROR, "%s: new master is %u "
2439 "but no dead node!\n",
2440 dlm->name, dlm->reco.new_master);
2441 BUG();
2444 spin_unlock(&dlm->spinlock);
2447 /* if this node has actually become the recovery master,
2448 * set the master and send the messages to begin recovery */
2449 if (!status) {
2450 mlog(0, "%s: dead=%u, this=%u, sending "
2451 "begin_reco now\n", dlm->name,
2452 dlm->reco.dead_node, dlm->node_num);
2453 status = dlm_send_begin_reco_message(dlm,
2454 dlm->reco.dead_node);
2455 /* this always succeeds */
2456 BUG_ON(status);
2458 /* set the new_master to this node */
2459 spin_lock(&dlm->spinlock);
2460 dlm_set_reco_master(dlm, dlm->node_num);
2461 spin_unlock(&dlm->spinlock);
2464 /* recovery lock is a special case. ast will not get fired,
2465 * so just go ahead and unlock it. */
2466 ret = dlmunlock(dlm, &lksb, 0, dlm_reco_unlock_ast, dlm);
2467 if (ret == DLM_DENIED) {
2468 mlog(0, "got DLM_DENIED, trying LKM_CANCEL\n");
2469 ret = dlmunlock(dlm, &lksb, LKM_CANCEL, dlm_reco_unlock_ast, dlm);
2471 if (ret != DLM_NORMAL) {
2472 /* this would really suck. this could only happen
2473 * if there was a network error during the unlock
2474 * because of node death. this means the unlock
2475 * is actually "done" and the lock structure is
2476 * even freed. we can continue, but only
2477 * because this specific lock name is special. */
2478 mlog(ML_ERROR, "dlmunlock returned %d\n", ret);
2480 } else if (ret == DLM_NOTQUEUED) {
2481 mlog(0, "dlm=%s dlmlock says another node got it (this=%u)\n",
2482 dlm->name, dlm->node_num);
2483 /* another node is master. wait on
2484 * reco.new_master != O2NM_INVALID_NODE_NUM
2485 * for at most one second */
2486 wait_event_timeout(dlm->dlm_reco_thread_wq,
2487 dlm_reco_master_ready(dlm),
2488 msecs_to_jiffies(1000));
2489 if (!dlm_reco_master_ready(dlm)) {
2490 mlog(0, "%s: reco master taking awhile\n",
2491 dlm->name);
2492 goto again;
2494 /* another node has informed this one that it is reco master */
2495 mlog(0, "%s: reco master %u is ready to recover %u\n",
2496 dlm->name, dlm->reco.new_master, dlm->reco.dead_node);
2497 status = -EEXIST;
2498 } else if (ret == DLM_RECOVERING) {
2499 mlog(0, "dlm=%s dlmlock says master node died (this=%u)\n",
2500 dlm->name, dlm->node_num);
2501 goto again;
2502 } else {
2503 struct dlm_lock_resource *res;
2505 /* dlmlock returned something other than NOTQUEUED or NORMAL */
2506 mlog(ML_ERROR, "%s: got %s from dlmlock($RECOVERY), "
2507 "lksb.status=%s\n", dlm->name, dlm_errname(ret),
2508 dlm_errname(lksb.status));
2509 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2510 DLM_RECOVERY_LOCK_NAME_LEN);
2511 if (res) {
2512 dlm_print_one_lock_resource(res);
2513 dlm_lockres_put(res);
2514 } else {
2515 mlog(ML_ERROR, "recovery lock not found\n");
2517 BUG();
2520 return status;
2523 static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node)
2525 struct dlm_begin_reco br;
2526 int ret = 0;
2527 struct dlm_node_iter iter;
2528 int nodenum;
2529 int status;
2531 mlog_entry("%u\n", dead_node);
2533 mlog(0, "%s: dead node is %u\n", dlm->name, dead_node);
2535 spin_lock(&dlm->spinlock);
2536 dlm_node_iter_init(dlm->domain_map, &iter);
2537 spin_unlock(&dlm->spinlock);
2539 clear_bit(dead_node, iter.node_map);
2541 memset(&br, 0, sizeof(br));
2542 br.node_idx = dlm->node_num;
2543 br.dead_node = dead_node;
2545 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2546 ret = 0;
2547 if (nodenum == dead_node) {
2548 mlog(0, "not sending begin reco to dead node "
2549 "%u\n", dead_node);
2550 continue;
2552 if (nodenum == dlm->node_num) {
2553 mlog(0, "not sending begin reco to self\n");
2554 continue;
2556 retry:
2557 ret = -EINVAL;
2558 mlog(0, "attempting to send begin reco msg to %d\n",
2559 nodenum);
2560 ret = o2net_send_message(DLM_BEGIN_RECO_MSG, dlm->key,
2561 &br, sizeof(br), nodenum, &status);
2562 /* negative status is handled ok by caller here */
2563 if (ret >= 0)
2564 ret = status;
2565 if (dlm_is_host_down(ret)) {
2566 /* node is down. not involved in recovery
2567 * so just keep going */
2568 mlog(0, "%s: node %u was down when sending "
2569 "begin reco msg (%d)\n", dlm->name, nodenum, ret);
2570 ret = 0;
2572 if (ret < 0) {
2573 struct dlm_lock_resource *res;
2574 /* this is now a serious problem, possibly ENOMEM
2575 * in the network stack. must retry */
2576 mlog_errno(ret);
2577 mlog(ML_ERROR, "begin reco of dlm %s to node %u "
2578 " returned %d\n", dlm->name, nodenum, ret);
2579 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2580 DLM_RECOVERY_LOCK_NAME_LEN);
2581 if (res) {
2582 dlm_print_one_lock_resource(res);
2583 dlm_lockres_put(res);
2584 } else {
2585 mlog(ML_ERROR, "recovery lock not found\n");
2587 /* sleep for a bit in hopes that we can avoid
2588 * another ENOMEM */
2589 msleep(100);
2590 goto retry;
2591 } else if (ret == EAGAIN) {
2592 mlog(0, "%s: trying to start recovery of node "
2593 "%u, but node %u is waiting for last recovery "
2594 "to complete, backoff for a bit\n", dlm->name,
2595 dead_node, nodenum);
2596 /* TODO Look into replacing msleep with cond_resched() */
2597 msleep(100);
2598 goto retry;
2602 return ret;
2605 int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data)
2607 struct dlm_ctxt *dlm = data;
2608 struct dlm_begin_reco *br = (struct dlm_begin_reco *)msg->buf;
2610 /* ok to return 0, domain has gone away */
2611 if (!dlm_grab(dlm))
2612 return 0;
2614 spin_lock(&dlm->spinlock);
2615 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2616 mlog(0, "%s: node %u wants to recover node %u (%u:%u) "
2617 "but this node is in finalize state, waiting on finalize2\n",
2618 dlm->name, br->node_idx, br->dead_node,
2619 dlm->reco.dead_node, dlm->reco.new_master);
2620 spin_unlock(&dlm->spinlock);
2621 return EAGAIN;
2623 spin_unlock(&dlm->spinlock);
2625 mlog(0, "%s: node %u wants to recover node %u (%u:%u)\n",
2626 dlm->name, br->node_idx, br->dead_node,
2627 dlm->reco.dead_node, dlm->reco.new_master);
2629 dlm_fire_domain_eviction_callbacks(dlm, br->dead_node);
2631 spin_lock(&dlm->spinlock);
2632 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
2633 if (test_bit(dlm->reco.new_master, dlm->recovery_map)) {
2634 mlog(0, "%s: new_master %u died, changing "
2635 "to %u\n", dlm->name, dlm->reco.new_master,
2636 br->node_idx);
2637 } else {
2638 mlog(0, "%s: new_master %u NOT DEAD, changing "
2639 "to %u\n", dlm->name, dlm->reco.new_master,
2640 br->node_idx);
2641 /* may not have seen the new master as dead yet */
2644 if (dlm->reco.dead_node != O2NM_INVALID_NODE_NUM) {
2645 mlog(ML_NOTICE, "%s: dead_node previously set to %u, "
2646 "node %u changing it to %u\n", dlm->name,
2647 dlm->reco.dead_node, br->node_idx, br->dead_node);
2649 dlm_set_reco_master(dlm, br->node_idx);
2650 dlm_set_reco_dead_node(dlm, br->dead_node);
2651 if (!test_bit(br->dead_node, dlm->recovery_map)) {
2652 mlog(0, "recovery master %u sees %u as dead, but this "
2653 "node has not yet. marking %u as dead\n",
2654 br->node_idx, br->dead_node, br->dead_node);
2655 if (!test_bit(br->dead_node, dlm->domain_map) ||
2656 !test_bit(br->dead_node, dlm->live_nodes_map))
2657 mlog(0, "%u not in domain/live_nodes map "
2658 "so setting it in reco map manually\n",
2659 br->dead_node);
2660 /* force the recovery cleanup in __dlm_hb_node_down
2661 * both of these will be cleared in a moment */
2662 set_bit(br->dead_node, dlm->domain_map);
2663 set_bit(br->dead_node, dlm->live_nodes_map);
2664 __dlm_hb_node_down(dlm, br->dead_node);
2666 spin_unlock(&dlm->spinlock);
2668 dlm_kick_recovery_thread(dlm);
2670 mlog(0, "%s: recovery started by node %u, for %u (%u:%u)\n",
2671 dlm->name, br->node_idx, br->dead_node,
2672 dlm->reco.dead_node, dlm->reco.new_master);
2674 dlm_put(dlm);
2675 return 0;
2678 #define DLM_FINALIZE_STAGE2 0x01
2679 static int dlm_send_finalize_reco_message(struct dlm_ctxt *dlm)
2681 int ret = 0;
2682 struct dlm_finalize_reco fr;
2683 struct dlm_node_iter iter;
2684 int nodenum;
2685 int status;
2686 int stage = 1;
2688 mlog(0, "finishing recovery for node %s:%u, "
2689 "stage %d\n", dlm->name, dlm->reco.dead_node, stage);
2691 spin_lock(&dlm->spinlock);
2692 dlm_node_iter_init(dlm->domain_map, &iter);
2693 spin_unlock(&dlm->spinlock);
2695 stage2:
2696 memset(&fr, 0, sizeof(fr));
2697 fr.node_idx = dlm->node_num;
2698 fr.dead_node = dlm->reco.dead_node;
2699 if (stage == 2)
2700 fr.flags |= DLM_FINALIZE_STAGE2;
2702 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2703 if (nodenum == dlm->node_num)
2704 continue;
2705 ret = o2net_send_message(DLM_FINALIZE_RECO_MSG, dlm->key,
2706 &fr, sizeof(fr), nodenum, &status);
2707 if (ret >= 0)
2708 ret = status;
2709 if (ret < 0) {
2710 mlog_errno(ret);
2711 if (dlm_is_host_down(ret)) {
2712 /* this has no effect on this recovery
2713 * session, so set the status to zero to
2714 * finish out the last recovery */
2715 mlog(ML_ERROR, "node %u went down after this "
2716 "node finished recovery.\n", nodenum);
2717 ret = 0;
2718 continue;
2720 break;
2723 if (stage == 1) {
2724 /* reset the node_iter back to the top and send finalize2 */
2725 iter.curnode = -1;
2726 stage = 2;
2727 goto stage2;
2730 return ret;
2733 int dlm_finalize_reco_handler(struct o2net_msg *msg, u32 len, void *data)
2735 struct dlm_ctxt *dlm = data;
2736 struct dlm_finalize_reco *fr = (struct dlm_finalize_reco *)msg->buf;
2737 int stage = 1;
2739 /* ok to return 0, domain has gone away */
2740 if (!dlm_grab(dlm))
2741 return 0;
2743 if (fr->flags & DLM_FINALIZE_STAGE2)
2744 stage = 2;
2746 mlog(0, "%s: node %u finalizing recovery stage%d of "
2747 "node %u (%u:%u)\n", dlm->name, fr->node_idx, stage,
2748 fr->dead_node, dlm->reco.dead_node, dlm->reco.new_master);
2750 spin_lock(&dlm->spinlock);
2752 if (dlm->reco.new_master != fr->node_idx) {
2753 mlog(ML_ERROR, "node %u sent recovery finalize msg, but node "
2754 "%u is supposed to be the new master, dead=%u\n",
2755 fr->node_idx, dlm->reco.new_master, fr->dead_node);
2756 BUG();
2758 if (dlm->reco.dead_node != fr->dead_node) {
2759 mlog(ML_ERROR, "node %u sent recovery finalize msg for dead "
2760 "node %u, but node %u is supposed to be dead\n",
2761 fr->node_idx, fr->dead_node, dlm->reco.dead_node);
2762 BUG();
2765 switch (stage) {
2766 case 1:
2767 dlm_finish_local_lockres_recovery(dlm, fr->dead_node, fr->node_idx);
2768 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2769 mlog(ML_ERROR, "%s: received finalize1 from "
2770 "new master %u for dead node %u, but "
2771 "this node has already received it!\n",
2772 dlm->name, fr->node_idx, fr->dead_node);
2773 dlm_print_reco_node_status(dlm);
2774 BUG();
2776 dlm->reco.state |= DLM_RECO_STATE_FINALIZE;
2777 spin_unlock(&dlm->spinlock);
2778 break;
2779 case 2:
2780 if (!(dlm->reco.state & DLM_RECO_STATE_FINALIZE)) {
2781 mlog(ML_ERROR, "%s: received finalize2 from "
2782 "new master %u for dead node %u, but "
2783 "this node did not have finalize1!\n",
2784 dlm->name, fr->node_idx, fr->dead_node);
2785 dlm_print_reco_node_status(dlm);
2786 BUG();
2788 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
2789 spin_unlock(&dlm->spinlock);
2790 dlm_reset_recovery(dlm);
2791 dlm_kick_recovery_thread(dlm);
2792 break;
2793 default:
2794 BUG();
2797 mlog(0, "%s: recovery done, reco master was %u, dead now %u, master now %u\n",
2798 dlm->name, fr->node_idx, dlm->reco.dead_node, dlm->reco.new_master);
2800 dlm_put(dlm);
2801 return 0;