ocfs2/dlm: clear refmap bit of recovery lock while doing local recovery cleanup
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ocfs2 / dlm / dlmrecovery.c
CommitLineData
6714d8e8
KH
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dlmrecovery.c
5 *
6 * recovery stuff
7 *
8 * Copyright (C) 2004 Oracle. All rights reserved.
9 *
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.
14 *
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.
19 *
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.
24 *
25 */
26
27
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>
6714d8e8
KH
33#include <linux/init.h>
34#include <linux/sysctl.h>
35#include <linux/random.h>
36#include <linux/blkdev.h>
37#include <linux/socket.h>
38#include <linux/inet.h>
39#include <linux/timer.h>
40#include <linux/kthread.h>
b4c7f538 41#include <linux/delay.h>
6714d8e8
KH
42
43
44#include "cluster/heartbeat.h"
45#include "cluster/nodemanager.h"
46#include "cluster/tcp.h"
47
48#include "dlmapi.h"
49#include "dlmcommon.h"
50#include "dlmdomain.h"
51
52#define MLOG_MASK_PREFIX (ML_DLM|ML_DLM_RECOVERY)
53#include "cluster/masklog.h"
54
55static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node);
56
57static int dlm_recovery_thread(void *data);
58void dlm_complete_recovery_thread(struct dlm_ctxt *dlm);
59int dlm_launch_recovery_thread(struct dlm_ctxt *dlm);
c03872f5 60void dlm_kick_recovery_thread(struct dlm_ctxt *dlm);
6714d8e8
KH
61static int dlm_do_recovery(struct dlm_ctxt *dlm);
62
63static int dlm_pick_recovery_master(struct dlm_ctxt *dlm);
64static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node);
65static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node);
66static int dlm_request_all_locks(struct dlm_ctxt *dlm,
67 u8 request_from, u8 dead_node);
68static void dlm_destroy_recovery_area(struct dlm_ctxt *dlm, u8 dead_node);
69
70static inline int dlm_num_locks_in_lockres(struct dlm_lock_resource *res);
71static void dlm_init_migratable_lockres(struct dlm_migratable_lockres *mres,
72 const char *lockname, int namelen,
73 int total_locks, u64 cookie,
74 u8 flags, u8 master);
75static int dlm_send_mig_lockres_msg(struct dlm_ctxt *dlm,
76 struct dlm_migratable_lockres *mres,
77 u8 send_to,
78 struct dlm_lock_resource *res,
79 int total_locks);
6714d8e8
KH
80static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
81 struct dlm_lock_resource *res,
82 struct dlm_migratable_lockres *mres);
6714d8e8
KH
83static int dlm_send_finalize_reco_message(struct dlm_ctxt *dlm);
84static int dlm_send_all_done_msg(struct dlm_ctxt *dlm,
85 u8 dead_node, u8 send_to);
86static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node);
87static void dlm_move_reco_locks_to_list(struct dlm_ctxt *dlm,
88 struct list_head *list, u8 dead_node);
89static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
90 u8 dead_node, u8 new_master);
91static void dlm_reco_ast(void *astdata);
92static void dlm_reco_bast(void *astdata, int blocked_type);
93static void dlm_reco_unlock_ast(void *astdata, enum dlm_status st);
94static void dlm_request_all_locks_worker(struct dlm_work_item *item,
95 void *data);
96static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data);
8169cae5
AB
97static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
98 struct dlm_lock_resource *res,
99 u8 *real_master);
6714d8e8
KH
100
101static u64 dlm_get_next_mig_cookie(void);
102
34af946a
IM
103static DEFINE_SPINLOCK(dlm_reco_state_lock);
104static DEFINE_SPINLOCK(dlm_mig_cookie_lock);
6714d8e8
KH
105static u64 dlm_mig_cookie = 1;
106
107static u64 dlm_get_next_mig_cookie(void)
108{
109 u64 c;
110 spin_lock(&dlm_mig_cookie_lock);
111 c = dlm_mig_cookie;
112 if (dlm_mig_cookie == (~0ULL))
113 dlm_mig_cookie = 1;
114 else
115 dlm_mig_cookie++;
116 spin_unlock(&dlm_mig_cookie_lock);
117 return c;
118}
119
ab27eb6f
KH
120static inline void dlm_set_reco_dead_node(struct dlm_ctxt *dlm,
121 u8 dead_node)
122{
123 assert_spin_locked(&dlm->spinlock);
124 if (dlm->reco.dead_node != dead_node)
125 mlog(0, "%s: changing dead_node from %u to %u\n",
126 dlm->name, dlm->reco.dead_node, dead_node);
127 dlm->reco.dead_node = dead_node;
128}
129
130static inline void dlm_set_reco_master(struct dlm_ctxt *dlm,
131 u8 master)
132{
133 assert_spin_locked(&dlm->spinlock);
134 mlog(0, "%s: changing new_master from %u to %u\n",
135 dlm->name, dlm->reco.new_master, master);
136 dlm->reco.new_master = master;
137}
138
466d1a45 139static inline void __dlm_reset_recovery(struct dlm_ctxt *dlm)
6714d8e8 140{
466d1a45 141 assert_spin_locked(&dlm->spinlock);
6714d8e8 142 clear_bit(dlm->reco.dead_node, dlm->recovery_map);
ab27eb6f
KH
143 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
144 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
466d1a45
KH
145}
146
147static inline void dlm_reset_recovery(struct dlm_ctxt *dlm)
148{
149 spin_lock(&dlm->spinlock);
150 __dlm_reset_recovery(dlm);
6714d8e8
KH
151 spin_unlock(&dlm->spinlock);
152}
153
154/* Worker function used during recovery. */
c4028958 155void dlm_dispatch_work(struct work_struct *work)
6714d8e8 156{
c4028958
DH
157 struct dlm_ctxt *dlm =
158 container_of(work, struct dlm_ctxt, dispatched_work);
6714d8e8 159 LIST_HEAD(tmp_list);
800deef3 160 struct dlm_work_item *item, *next;
6714d8e8 161 dlm_workfunc_t *workfunc;
3156d267
KH
162 int tot=0;
163
6714d8e8
KH
164 spin_lock(&dlm->work_lock);
165 list_splice_init(&dlm->work_list, &tmp_list);
166 spin_unlock(&dlm->work_lock);
167
800deef3 168 list_for_each_entry(item, &tmp_list, list) {
3156d267
KH
169 tot++;
170 }
171 mlog(0, "%s: work thread has %d work items\n", dlm->name, tot);
172
800deef3 173 list_for_each_entry_safe(item, next, &tmp_list, list) {
6714d8e8
KH
174 workfunc = item->func;
175 list_del_init(&item->list);
176
177 /* already have ref on dlm to avoid having
178 * it disappear. just double-check. */
179 BUG_ON(item->dlm != dlm);
180
181 /* this is allowed to sleep and
182 * call network stuff */
183 workfunc(item, item->data);
184
185 dlm_put(dlm);
186 kfree(item);
187 }
188}
189
190/*
191 * RECOVERY THREAD
192 */
193
c03872f5 194void dlm_kick_recovery_thread(struct dlm_ctxt *dlm)
6714d8e8
KH
195{
196 /* wake the recovery thread
197 * this will wake the reco thread in one of three places
198 * 1) sleeping with no recovery happening
199 * 2) sleeping with recovery mastered elsewhere
200 * 3) recovery mastered here, waiting on reco data */
201
202 wake_up(&dlm->dlm_reco_thread_wq);
203}
204
205/* Launch the recovery thread */
206int dlm_launch_recovery_thread(struct dlm_ctxt *dlm)
207{
208 mlog(0, "starting dlm recovery thread...\n");
209
210 dlm->dlm_reco_thread_task = kthread_run(dlm_recovery_thread, dlm,
211 "dlm_reco_thread");
212 if (IS_ERR(dlm->dlm_reco_thread_task)) {
213 mlog_errno(PTR_ERR(dlm->dlm_reco_thread_task));
214 dlm->dlm_reco_thread_task = NULL;
215 return -EINVAL;
216 }
217
218 return 0;
219}
220
221void dlm_complete_recovery_thread(struct dlm_ctxt *dlm)
222{
223 if (dlm->dlm_reco_thread_task) {
224 mlog(0, "waiting for dlm recovery thread to exit\n");
225 kthread_stop(dlm->dlm_reco_thread_task);
226 dlm->dlm_reco_thread_task = NULL;
227 }
228}
229
230
231
232/*
233 * this is lame, but here's how recovery works...
234 * 1) all recovery threads cluster wide will work on recovering
235 * ONE node at a time
236 * 2) negotiate who will take over all the locks for the dead node.
237 * thats right... ALL the locks.
238 * 3) once a new master is chosen, everyone scans all locks
239 * and moves aside those mastered by the dead guy
240 * 4) each of these locks should be locked until recovery is done
241 * 5) the new master collects up all of secondary lock queue info
242 * one lock at a time, forcing each node to communicate back
243 * before continuing
244 * 6) each secondary lock queue responds with the full known lock info
245 * 7) once the new master has run all its locks, it sends a ALLDONE!
246 * message to everyone
247 * 8) upon receiving this message, the secondary queue node unlocks
248 * and responds to the ALLDONE
249 * 9) once the new master gets responses from everyone, he unlocks
250 * everything and recovery for this dead node is done
251 *10) go back to 2) while there are still dead nodes
252 *
253 */
254
d6dea6e9
KH
255static void dlm_print_reco_node_status(struct dlm_ctxt *dlm)
256{
257 struct dlm_reco_node_data *ndata;
258 struct dlm_lock_resource *res;
259
260 mlog(ML_NOTICE, "%s(%d): recovery info, state=%s, dead=%u, master=%u\n",
ba25f9dc 261 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
d6dea6e9
KH
262 dlm->reco.state & DLM_RECO_STATE_ACTIVE ? "ACTIVE" : "inactive",
263 dlm->reco.dead_node, dlm->reco.new_master);
264
265 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
266 char *st = "unknown";
267 switch (ndata->state) {
268 case DLM_RECO_NODE_DATA_INIT:
269 st = "init";
270 break;
271 case DLM_RECO_NODE_DATA_REQUESTING:
272 st = "requesting";
273 break;
274 case DLM_RECO_NODE_DATA_DEAD:
275 st = "dead";
276 break;
277 case DLM_RECO_NODE_DATA_RECEIVING:
278 st = "receiving";
279 break;
280 case DLM_RECO_NODE_DATA_REQUESTED:
281 st = "requested";
282 break;
283 case DLM_RECO_NODE_DATA_DONE:
284 st = "done";
285 break;
286 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
287 st = "finalize-sent";
288 break;
289 default:
290 st = "bad";
291 break;
292 }
293 mlog(ML_NOTICE, "%s: reco state, node %u, state=%s\n",
294 dlm->name, ndata->node_num, st);
295 }
296 list_for_each_entry(res, &dlm->reco.resources, recovering) {
297 mlog(ML_NOTICE, "%s: lockres %.*s on recovering list\n",
298 dlm->name, res->lockname.len, res->lockname.name);
299 }
300}
6714d8e8
KH
301
302#define DLM_RECO_THREAD_TIMEOUT_MS (5 * 1000)
303
304static int dlm_recovery_thread(void *data)
305{
306 int status;
307 struct dlm_ctxt *dlm = data;
308 unsigned long timeout = msecs_to_jiffies(DLM_RECO_THREAD_TIMEOUT_MS);
309
310 mlog(0, "dlm thread running for %s...\n", dlm->name);
311
312 while (!kthread_should_stop()) {
bc9838c4 313 if (dlm_domain_fully_joined(dlm)) {
6714d8e8
KH
314 status = dlm_do_recovery(dlm);
315 if (status == -EAGAIN) {
316 /* do not sleep, recheck immediately. */
317 continue;
318 }
319 if (status < 0)
320 mlog_errno(status);
321 }
322
323 wait_event_interruptible_timeout(dlm->dlm_reco_thread_wq,
324 kthread_should_stop(),
325 timeout);
326 }
327
328 mlog(0, "quitting DLM recovery thread\n");
329 return 0;
330}
331
e2faea4c
KH
332/* returns true when the recovery master has contacted us */
333static int dlm_reco_master_ready(struct dlm_ctxt *dlm)
334{
335 int ready;
336 spin_lock(&dlm->spinlock);
337 ready = (dlm->reco.new_master != O2NM_INVALID_NODE_NUM);
338 spin_unlock(&dlm->spinlock);
339 return ready;
340}
341
342/* returns true if node is no longer in the domain
343 * could be dead or just not joined */
344int dlm_is_node_dead(struct dlm_ctxt *dlm, u8 node)
345{
346 int dead;
347 spin_lock(&dlm->spinlock);
aba9aac7 348 dead = !test_bit(node, dlm->domain_map);
e2faea4c
KH
349 spin_unlock(&dlm->spinlock);
350 return dead;
351}
352
b7084ab5
KH
353/* returns true if node is no longer in the domain
354 * could be dead or just not joined */
3fb5a989 355static int dlm_is_node_recovered(struct dlm_ctxt *dlm, u8 node)
b7084ab5
KH
356{
357 int recovered;
358 spin_lock(&dlm->spinlock);
359 recovered = !test_bit(node, dlm->recovery_map);
360 spin_unlock(&dlm->spinlock);
361 return recovered;
362}
363
364
ed8625c6 365void dlm_wait_for_node_death(struct dlm_ctxt *dlm, u8 node, int timeout)
44465a7d 366{
ed8625c6
SM
367 if (dlm_is_node_dead(dlm, node))
368 return;
369
370 printk(KERN_NOTICE "o2dlm: Waiting on the death of node %u in "
371 "domain %s\n", node, dlm->name);
372
373 if (timeout)
44465a7d 374 wait_event_timeout(dlm->dlm_reco_thread_wq,
ed8625c6
SM
375 dlm_is_node_dead(dlm, node),
376 msecs_to_jiffies(timeout));
377 else
44465a7d
KH
378 wait_event(dlm->dlm_reco_thread_wq,
379 dlm_is_node_dead(dlm, node));
44465a7d
KH
380}
381
ed8625c6 382void dlm_wait_for_node_recovery(struct dlm_ctxt *dlm, u8 node, int timeout)
b7084ab5 383{
ed8625c6
SM
384 if (dlm_is_node_recovered(dlm, node))
385 return;
386
387 printk(KERN_NOTICE "o2dlm: Waiting on the recovery of node %u in "
388 "domain %s\n", node, dlm->name);
389
390 if (timeout)
b7084ab5 391 wait_event_timeout(dlm->dlm_reco_thread_wq,
ed8625c6
SM
392 dlm_is_node_recovered(dlm, node),
393 msecs_to_jiffies(timeout));
394 else
b7084ab5
KH
395 wait_event(dlm->dlm_reco_thread_wq,
396 dlm_is_node_recovered(dlm, node));
b7084ab5
KH
397}
398
6714d8e8
KH
399/* callers of the top-level api calls (dlmlock/dlmunlock) should
400 * block on the dlm->reco.event when recovery is in progress.
401 * the dlm recovery thread will set this state when it begins
402 * recovering a dead node (as the new master or not) and clear
403 * the state and wake as soon as all affected lock resources have
404 * been marked with the RECOVERY flag */
405static int dlm_in_recovery(struct dlm_ctxt *dlm)
406{
407 int in_recovery;
408 spin_lock(&dlm->spinlock);
409 in_recovery = !!(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
410 spin_unlock(&dlm->spinlock);
411 return in_recovery;
412}
413
414
415void dlm_wait_for_recovery(struct dlm_ctxt *dlm)
416{
56a7c104 417 if (dlm_in_recovery(dlm)) {
3b3b84a8 418 mlog(0, "%s: reco thread %d in recovery: "
56a7c104 419 "state=%d, master=%u, dead=%u\n",
ba25f9dc 420 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
56a7c104
KH
421 dlm->reco.state, dlm->reco.new_master,
422 dlm->reco.dead_node);
423 }
6714d8e8
KH
424 wait_event(dlm->reco.event, !dlm_in_recovery(dlm));
425}
426
427static void dlm_begin_recovery(struct dlm_ctxt *dlm)
428{
429 spin_lock(&dlm->spinlock);
430 BUG_ON(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
8decab3c
SM
431 printk(KERN_NOTICE "o2dlm: Begin recovery on domain %s for node %u\n",
432 dlm->name, dlm->reco.dead_node);
6714d8e8
KH
433 dlm->reco.state |= DLM_RECO_STATE_ACTIVE;
434 spin_unlock(&dlm->spinlock);
435}
436
437static void dlm_end_recovery(struct dlm_ctxt *dlm)
438{
439 spin_lock(&dlm->spinlock);
440 BUG_ON(!(dlm->reco.state & DLM_RECO_STATE_ACTIVE));
441 dlm->reco.state &= ~DLM_RECO_STATE_ACTIVE;
442 spin_unlock(&dlm->spinlock);
8decab3c 443 printk(KERN_NOTICE "o2dlm: End recovery on domain %s\n", dlm->name);
6714d8e8
KH
444 wake_up(&dlm->reco.event);
445}
446
8decab3c
SM
447static void dlm_print_recovery_master(struct dlm_ctxt *dlm)
448{
449 printk(KERN_NOTICE "o2dlm: Node %u (%s) is the Recovery Master for the "
450 "dead node %u in domain %s\n", dlm->reco.new_master,
451 (dlm->node_num == dlm->reco.new_master ? "me" : "he"),
452 dlm->reco.dead_node, dlm->name);
453}
454
6714d8e8
KH
455static int dlm_do_recovery(struct dlm_ctxt *dlm)
456{
457 int status = 0;
e2faea4c 458 int ret;
6714d8e8
KH
459
460 spin_lock(&dlm->spinlock);
461
462 /* check to see if the new master has died */
463 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM &&
464 test_bit(dlm->reco.new_master, dlm->recovery_map)) {
465 mlog(0, "new master %u died while recovering %u!\n",
466 dlm->reco.new_master, dlm->reco.dead_node);
467 /* unset the new_master, leave dead_node */
ab27eb6f 468 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
6714d8e8
KH
469 }
470
471 /* select a target to recover */
472 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
473 int bit;
474
f471c9df 475 bit = find_next_bit (dlm->recovery_map, O2NM_MAX_NODES, 0);
6714d8e8 476 if (bit >= O2NM_MAX_NODES || bit < 0)
ab27eb6f 477 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
6714d8e8 478 else
ab27eb6f 479 dlm_set_reco_dead_node(dlm, bit);
6714d8e8
KH
480 } else if (!test_bit(dlm->reco.dead_node, dlm->recovery_map)) {
481 /* BUG? */
482 mlog(ML_ERROR, "dead_node %u no longer in recovery map!\n",
483 dlm->reco.dead_node);
ab27eb6f 484 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
6714d8e8
KH
485 }
486
487 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
488 // mlog(0, "nothing to recover! sleeping now!\n");
489 spin_unlock(&dlm->spinlock);
490 /* return to main thread loop and sleep. */
491 return 0;
492 }
d6dea6e9 493 mlog(0, "%s(%d):recovery thread found node %u in the recovery map!\n",
ba25f9dc 494 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
6714d8e8
KH
495 dlm->reco.dead_node);
496 spin_unlock(&dlm->spinlock);
497
498 /* take write barrier */
499 /* (stops the list reshuffling thread, proxy ast handling) */
500 dlm_begin_recovery(dlm);
501
502 if (dlm->reco.new_master == dlm->node_num)
503 goto master_here;
504
505 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
e2faea4c
KH
506 /* choose a new master, returns 0 if this node
507 * is the master, -EEXIST if it's another node.
508 * this does not return until a new master is chosen
509 * or recovery completes entirely. */
510 ret = dlm_pick_recovery_master(dlm);
511 if (!ret) {
6714d8e8 512 /* already notified everyone. go. */
6714d8e8
KH
513 goto master_here;
514 }
515 mlog(0, "another node will master this recovery session.\n");
516 }
8decab3c
SM
517
518 dlm_print_recovery_master(dlm);
6714d8e8
KH
519
520 /* it is safe to start everything back up here
521 * because all of the dead node's lock resources
522 * have been marked as in-recovery */
523 dlm_end_recovery(dlm);
524
525 /* sleep out in main dlm_recovery_thread loop. */
526 return 0;
527
528master_here:
8decab3c 529 dlm_print_recovery_master(dlm);
6714d8e8
KH
530
531 status = dlm_remaster_locks(dlm, dlm->reco.dead_node);
532 if (status < 0) {
6a413211 533 /* we should never hit this anymore */
8decab3c
SM
534 mlog(ML_ERROR, "%s: Error %d remastering locks for node %u, "
535 "retrying.\n", dlm->name, status, dlm->reco.dead_node);
e2faea4c
KH
536 /* yield a bit to allow any final network messages
537 * to get handled on remaining nodes */
538 msleep(100);
6714d8e8
KH
539 } else {
540 /* success! see if any other nodes need recovery */
e2faea4c
KH
541 mlog(0, "DONE mastering recovery of %s:%u here(this=%u)!\n",
542 dlm->name, dlm->reco.dead_node, dlm->node_num);
a093bced
JB
543 spin_lock(&dlm->spinlock);
544 __dlm_reset_recovery(dlm);
545 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
546 spin_unlock(&dlm->spinlock);
6714d8e8
KH
547 }
548 dlm_end_recovery(dlm);
549
550 /* continue and look for another dead node */
551 return -EAGAIN;
552}
553
554static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node)
555{
556 int status = 0;
557 struct dlm_reco_node_data *ndata;
6714d8e8
KH
558 int all_nodes_done;
559 int destroy = 0;
560 int pass = 0;
561
6a413211
KH
562 do {
563 /* we have become recovery master. there is no escaping
564 * this, so just keep trying until we get it. */
565 status = dlm_init_recovery_area(dlm, dead_node);
566 if (status < 0) {
567 mlog(ML_ERROR, "%s: failed to alloc recovery area, "
568 "retrying\n", dlm->name);
569 msleep(1000);
570 }
571 } while (status != 0);
6714d8e8
KH
572
573 /* safe to access the node data list without a lock, since this
574 * process is the only one to change the list */
800deef3 575 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
6714d8e8
KH
576 BUG_ON(ndata->state != DLM_RECO_NODE_DATA_INIT);
577 ndata->state = DLM_RECO_NODE_DATA_REQUESTING;
578
8decab3c 579 mlog(0, "%s: Requesting lock info from node %u\n", dlm->name,
6714d8e8
KH
580 ndata->node_num);
581
582 if (ndata->node_num == dlm->node_num) {
583 ndata->state = DLM_RECO_NODE_DATA_DONE;
584 continue;
585 }
586
6a413211
KH
587 do {
588 status = dlm_request_all_locks(dlm, ndata->node_num,
589 dead_node);
590 if (status < 0) {
591 mlog_errno(status);
592 if (dlm_is_host_down(status)) {
593 /* node died, ignore it for recovery */
594 status = 0;
595 ndata->state = DLM_RECO_NODE_DATA_DEAD;
596 /* wait for the domain map to catch up
597 * with the network state. */
598 wait_event_timeout(dlm->dlm_reco_thread_wq,
599 dlm_is_node_dead(dlm,
600 ndata->node_num),
601 msecs_to_jiffies(1000));
602 mlog(0, "waited 1 sec for %u, "
603 "dead? %s\n", ndata->node_num,
604 dlm_is_node_dead(dlm, ndata->node_num) ?
605 "yes" : "no");
606 } else {
607 /* -ENOMEM on the other node */
608 mlog(0, "%s: node %u returned "
609 "%d during recovery, retrying "
610 "after a short wait\n",
611 dlm->name, ndata->node_num,
612 status);
613 msleep(100);
614 }
6714d8e8 615 }
6a413211 616 } while (status != 0);
6714d8e8 617
756a1501 618 spin_lock(&dlm_reco_state_lock);
6714d8e8
KH
619 switch (ndata->state) {
620 case DLM_RECO_NODE_DATA_INIT:
621 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
622 case DLM_RECO_NODE_DATA_REQUESTED:
623 BUG();
624 break;
625 case DLM_RECO_NODE_DATA_DEAD:
626 mlog(0, "node %u died after requesting "
627 "recovery info for node %u\n",
628 ndata->node_num, dead_node);
6a413211
KH
629 /* fine. don't need this node's info.
630 * continue without it. */
631 break;
6714d8e8
KH
632 case DLM_RECO_NODE_DATA_REQUESTING:
633 ndata->state = DLM_RECO_NODE_DATA_REQUESTED;
634 mlog(0, "now receiving recovery data from "
635 "node %u for dead node %u\n",
636 ndata->node_num, dead_node);
637 break;
638 case DLM_RECO_NODE_DATA_RECEIVING:
639 mlog(0, "already receiving recovery data from "
640 "node %u for dead node %u\n",
641 ndata->node_num, dead_node);
642 break;
643 case DLM_RECO_NODE_DATA_DONE:
644 mlog(0, "already DONE receiving recovery data "
645 "from node %u for dead node %u\n",
646 ndata->node_num, dead_node);
647 break;
648 }
756a1501 649 spin_unlock(&dlm_reco_state_lock);
6714d8e8
KH
650 }
651
8decab3c 652 mlog(0, "%s: Done requesting all lock info\n", dlm->name);
6714d8e8
KH
653
654 /* nodes should be sending reco data now
655 * just need to wait */
656
657 while (1) {
658 /* check all the nodes now to see if we are
659 * done, or if anyone died */
660 all_nodes_done = 1;
661 spin_lock(&dlm_reco_state_lock);
800deef3 662 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
6714d8e8
KH
663 mlog(0, "checking recovery state of node %u\n",
664 ndata->node_num);
665 switch (ndata->state) {
666 case DLM_RECO_NODE_DATA_INIT:
667 case DLM_RECO_NODE_DATA_REQUESTING:
668 mlog(ML_ERROR, "bad ndata state for "
669 "node %u: state=%d\n",
670 ndata->node_num, ndata->state);
671 BUG();
672 break;
673 case DLM_RECO_NODE_DATA_DEAD:
6a413211 674 mlog(0, "node %u died after "
6714d8e8
KH
675 "requesting recovery info for "
676 "node %u\n", ndata->node_num,
677 dead_node);
6a413211 678 break;
6714d8e8
KH
679 case DLM_RECO_NODE_DATA_RECEIVING:
680 case DLM_RECO_NODE_DATA_REQUESTED:
d6dea6e9
KH
681 mlog(0, "%s: node %u still in state %s\n",
682 dlm->name, ndata->node_num,
683 ndata->state==DLM_RECO_NODE_DATA_RECEIVING ?
684 "receiving" : "requested");
6714d8e8
KH
685 all_nodes_done = 0;
686 break;
687 case DLM_RECO_NODE_DATA_DONE:
d6dea6e9
KH
688 mlog(0, "%s: node %u state is done\n",
689 dlm->name, ndata->node_num);
6714d8e8
KH
690 break;
691 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
d6dea6e9
KH
692 mlog(0, "%s: node %u state is finalize\n",
693 dlm->name, ndata->node_num);
6714d8e8
KH
694 break;
695 }
696 }
697 spin_unlock(&dlm_reco_state_lock);
698
699 mlog(0, "pass #%d, all_nodes_done?: %s\n", ++pass,
700 all_nodes_done?"yes":"no");
701 if (all_nodes_done) {
702 int ret;
703
a093bced
JB
704 /* Set this flag on recovery master to avoid
705 * a new recovery for another dead node start
706 * before the recovery is not done. That may
707 * cause recovery hung.*/
708 spin_lock(&dlm->spinlock);
709 dlm->reco.state |= DLM_RECO_STATE_FINALIZE;
710 spin_unlock(&dlm->spinlock);
711
6714d8e8
KH
712 /* all nodes are now in DLM_RECO_NODE_DATA_DONE state
713 * just send a finalize message to everyone and
714 * clean up */
715 mlog(0, "all nodes are done! send finalize\n");
716 ret = dlm_send_finalize_reco_message(dlm);
717 if (ret < 0)
718 mlog_errno(ret);
719
720 spin_lock(&dlm->spinlock);
721 dlm_finish_local_lockres_recovery(dlm, dead_node,
722 dlm->node_num);
723 spin_unlock(&dlm->spinlock);
724 mlog(0, "should be done with recovery!\n");
725
726 mlog(0, "finishing recovery of %s at %lu, "
727 "dead=%u, this=%u, new=%u\n", dlm->name,
728 jiffies, dlm->reco.dead_node,
729 dlm->node_num, dlm->reco.new_master);
730 destroy = 1;
6a413211 731 status = 0;
6714d8e8
KH
732 /* rescan everything marked dirty along the way */
733 dlm_kick_thread(dlm, NULL);
734 break;
735 }
736 /* wait to be signalled, with periodic timeout
737 * to check for node death */
738 wait_event_interruptible_timeout(dlm->dlm_reco_thread_wq,
739 kthread_should_stop(),
740 msecs_to_jiffies(DLM_RECO_THREAD_TIMEOUT_MS));
741
742 }
743
6714d8e8
KH
744 if (destroy)
745 dlm_destroy_recovery_area(dlm, dead_node);
746
6714d8e8
KH
747 return status;
748}
749
750static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
751{
752 int num=0;
753 struct dlm_reco_node_data *ndata;
754
755 spin_lock(&dlm->spinlock);
756 memcpy(dlm->reco.node_map, dlm->domain_map, sizeof(dlm->domain_map));
757 /* nodes can only be removed (by dying) after dropping
758 * this lock, and death will be trapped later, so this should do */
759 spin_unlock(&dlm->spinlock);
760
761 while (1) {
762 num = find_next_bit (dlm->reco.node_map, O2NM_MAX_NODES, num);
763 if (num >= O2NM_MAX_NODES) {
764 break;
765 }
766 BUG_ON(num == dead_node);
767
cd861280 768 ndata = kzalloc(sizeof(*ndata), GFP_NOFS);
6714d8e8
KH
769 if (!ndata) {
770 dlm_destroy_recovery_area(dlm, dead_node);
771 return -ENOMEM;
772 }
773 ndata->node_num = num;
774 ndata->state = DLM_RECO_NODE_DATA_INIT;
775 spin_lock(&dlm_reco_state_lock);
776 list_add_tail(&ndata->list, &dlm->reco.node_data);
777 spin_unlock(&dlm_reco_state_lock);
778 num++;
779 }
780
781 return 0;
782}
783
784static void dlm_destroy_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
785{
800deef3 786 struct dlm_reco_node_data *ndata, *next;
6714d8e8
KH
787 LIST_HEAD(tmplist);
788
789 spin_lock(&dlm_reco_state_lock);
790 list_splice_init(&dlm->reco.node_data, &tmplist);
791 spin_unlock(&dlm_reco_state_lock);
792
800deef3 793 list_for_each_entry_safe(ndata, next, &tmplist, list) {
6714d8e8
KH
794 list_del_init(&ndata->list);
795 kfree(ndata);
796 }
797}
798
799static int dlm_request_all_locks(struct dlm_ctxt *dlm, u8 request_from,
800 u8 dead_node)
801{
802 struct dlm_lock_request lr;
803 enum dlm_status ret;
804
805 mlog(0, "\n");
806
807
808 mlog(0, "dlm_request_all_locks: dead node is %u, sending request "
809 "to %u\n", dead_node, request_from);
810
811 memset(&lr, 0, sizeof(lr));
812 lr.node_idx = dlm->node_num;
813 lr.dead_node = dead_node;
814
815 // send message
816 ret = DLM_NOLOCKMGR;
817 ret = o2net_send_message(DLM_LOCK_REQUEST_MSG, dlm->key,
818 &lr, sizeof(lr), request_from, NULL);
819
820 /* negative status is handled by caller */
821 if (ret < 0)
8decab3c
SM
822 mlog(ML_ERROR, "%s: Error %d send LOCK_REQUEST to node %u "
823 "to recover dead node %u\n", dlm->name, ret,
824 request_from, dead_node);
6714d8e8
KH
825 // return from here, then
826 // sleep until all received or error
827 return ret;
828
829}
830
d74c9803
KH
831int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data,
832 void **ret_data)
6714d8e8
KH
833{
834 struct dlm_ctxt *dlm = data;
835 struct dlm_lock_request *lr = (struct dlm_lock_request *)msg->buf;
836 char *buf = NULL;
837 struct dlm_work_item *item = NULL;
838
839 if (!dlm_grab(dlm))
840 return -EINVAL;
841
c3187ce5
KH
842 if (lr->dead_node != dlm->reco.dead_node) {
843 mlog(ML_ERROR, "%s: node %u sent dead_node=%u, but local "
844 "dead_node is %u\n", dlm->name, lr->node_idx,
845 lr->dead_node, dlm->reco.dead_node);
d6dea6e9 846 dlm_print_reco_node_status(dlm);
c3187ce5
KH
847 /* this is a hack */
848 dlm_put(dlm);
849 return -ENOMEM;
850 }
6714d8e8
KH
851 BUG_ON(lr->dead_node != dlm->reco.dead_node);
852
cd861280 853 item = kzalloc(sizeof(*item), GFP_NOFS);
6714d8e8
KH
854 if (!item) {
855 dlm_put(dlm);
856 return -ENOMEM;
857 }
858
859 /* this will get freed by dlm_request_all_locks_worker */
ad8100e0 860 buf = (char *) __get_free_page(GFP_NOFS);
6714d8e8
KH
861 if (!buf) {
862 kfree(item);
863 dlm_put(dlm);
864 return -ENOMEM;
865 }
866
867 /* queue up work for dlm_request_all_locks_worker */
868 dlm_grab(dlm); /* get an extra ref for the work item */
869 dlm_init_work_item(dlm, item, dlm_request_all_locks_worker, buf);
870 item->u.ral.reco_master = lr->node_idx;
871 item->u.ral.dead_node = lr->dead_node;
872 spin_lock(&dlm->work_lock);
873 list_add_tail(&item->list, &dlm->work_list);
874 spin_unlock(&dlm->work_lock);
3156d267 875 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
6714d8e8
KH
876
877 dlm_put(dlm);
878 return 0;
879}
880
881static void dlm_request_all_locks_worker(struct dlm_work_item *item, void *data)
882{
883 struct dlm_migratable_lockres *mres;
884 struct dlm_lock_resource *res;
885 struct dlm_ctxt *dlm;
886 LIST_HEAD(resources);
6714d8e8
KH
887 int ret;
888 u8 dead_node, reco_master;
29c0fa0f 889 int skip_all_done = 0;
6714d8e8
KH
890
891 dlm = item->dlm;
892 dead_node = item->u.ral.dead_node;
893 reco_master = item->u.ral.reco_master;
e2faea4c
KH
894 mres = (struct dlm_migratable_lockres *)data;
895
d6dea6e9
KH
896 mlog(0, "%s: recovery worker started, dead=%u, master=%u\n",
897 dlm->name, dead_node, reco_master);
898
e2faea4c
KH
899 if (dead_node != dlm->reco.dead_node ||
900 reco_master != dlm->reco.new_master) {
6a413211
KH
901 /* worker could have been created before the recovery master
902 * died. if so, do not continue, but do not error. */
903 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
904 mlog(ML_NOTICE, "%s: will not send recovery state, "
905 "recovery master %u died, thread=(dead=%u,mas=%u)"
906 " current=(dead=%u,mas=%u)\n", dlm->name,
907 reco_master, dead_node, reco_master,
908 dlm->reco.dead_node, dlm->reco.new_master);
909 } else {
910 mlog(ML_NOTICE, "%s: reco state invalid: reco(dead=%u, "
911 "master=%u), request(dead=%u, master=%u)\n",
912 dlm->name, dlm->reco.dead_node,
913 dlm->reco.new_master, dead_node, reco_master);
914 }
915 goto leave;
e2faea4c 916 }
6714d8e8 917
6714d8e8
KH
918 /* lock resources should have already been moved to the
919 * dlm->reco.resources list. now move items from that list
920 * to a temp list if the dead owner matches. note that the
921 * whole cluster recovers only one node at a time, so we
922 * can safely move UNKNOWN lock resources for each recovery
923 * session. */
924 dlm_move_reco_locks_to_list(dlm, &resources, dead_node);
925
926 /* now we can begin blasting lockreses without the dlm lock */
29c0fa0f
KH
927
928 /* any errors returned will be due to the new_master dying,
929 * the dlm_reco_thread should detect this */
800deef3 930 list_for_each_entry(res, &resources, recovering) {
6714d8e8
KH
931 ret = dlm_send_one_lockres(dlm, res, mres, reco_master,
932 DLM_MRES_RECOVERY);
29c0fa0f 933 if (ret < 0) {
d6dea6e9
KH
934 mlog(ML_ERROR, "%s: node %u went down while sending "
935 "recovery state for dead node %u, ret=%d\n", dlm->name,
936 reco_master, dead_node, ret);
29c0fa0f
KH
937 skip_all_done = 1;
938 break;
939 }
6714d8e8
KH
940 }
941
942 /* move the resources back to the list */
943 spin_lock(&dlm->spinlock);
944 list_splice_init(&resources, &dlm->reco.resources);
945 spin_unlock(&dlm->spinlock);
946
29c0fa0f
KH
947 if (!skip_all_done) {
948 ret = dlm_send_all_done_msg(dlm, dead_node, reco_master);
949 if (ret < 0) {
d6dea6e9
KH
950 mlog(ML_ERROR, "%s: node %u went down while sending "
951 "recovery all-done for dead node %u, ret=%d\n",
952 dlm->name, reco_master, dead_node, ret);
29c0fa0f
KH
953 }
954 }
6a413211 955leave:
6714d8e8
KH
956 free_page((unsigned long)data);
957}
958
959
960static int dlm_send_all_done_msg(struct dlm_ctxt *dlm, u8 dead_node, u8 send_to)
961{
962 int ret, tmpret;
963 struct dlm_reco_data_done done_msg;
964
965 memset(&done_msg, 0, sizeof(done_msg));
966 done_msg.node_idx = dlm->node_num;
967 done_msg.dead_node = dead_node;
968 mlog(0, "sending DATA DONE message to %u, "
969 "my node=%u, dead node=%u\n", send_to, done_msg.node_idx,
970 done_msg.dead_node);
971
972 ret = o2net_send_message(DLM_RECO_DATA_DONE_MSG, dlm->key, &done_msg,
973 sizeof(done_msg), send_to, &tmpret);
29c0fa0f 974 if (ret < 0) {
8decab3c
SM
975 mlog(ML_ERROR, "%s: Error %d send RECO_DATA_DONE to node %u "
976 "to recover dead node %u\n", dlm->name, ret, send_to,
977 dead_node);
29c0fa0f 978 if (!dlm_is_host_down(ret)) {
29c0fa0f
KH
979 BUG();
980 }
981 } else
6714d8e8
KH
982 ret = tmpret;
983 return ret;
984}
985
986
d74c9803
KH
987int dlm_reco_data_done_handler(struct o2net_msg *msg, u32 len, void *data,
988 void **ret_data)
6714d8e8
KH
989{
990 struct dlm_ctxt *dlm = data;
991 struct dlm_reco_data_done *done = (struct dlm_reco_data_done *)msg->buf;
6714d8e8
KH
992 struct dlm_reco_node_data *ndata = NULL;
993 int ret = -EINVAL;
994
995 if (!dlm_grab(dlm))
996 return -EINVAL;
997
998 mlog(0, "got DATA DONE: dead_node=%u, reco.dead_node=%u, "
999 "node_idx=%u, this node=%u\n", done->dead_node,
1000 dlm->reco.dead_node, done->node_idx, dlm->node_num);
d6dea6e9
KH
1001
1002 mlog_bug_on_msg((done->dead_node != dlm->reco.dead_node),
1003 "Got DATA DONE: dead_node=%u, reco.dead_node=%u, "
1004 "node_idx=%u, this node=%u\n", done->dead_node,
1005 dlm->reco.dead_node, done->node_idx, dlm->node_num);
6714d8e8
KH
1006
1007 spin_lock(&dlm_reco_state_lock);
800deef3 1008 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
6714d8e8
KH
1009 if (ndata->node_num != done->node_idx)
1010 continue;
1011
1012 switch (ndata->state) {
e2faea4c 1013 /* should have moved beyond INIT but not to FINALIZE yet */
6714d8e8
KH
1014 case DLM_RECO_NODE_DATA_INIT:
1015 case DLM_RECO_NODE_DATA_DEAD:
6714d8e8
KH
1016 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
1017 mlog(ML_ERROR, "bad ndata state for node %u:"
1018 " state=%d\n", ndata->node_num,
1019 ndata->state);
1020 BUG();
1021 break;
e2faea4c
KH
1022 /* these states are possible at this point, anywhere along
1023 * the line of recovery */
1024 case DLM_RECO_NODE_DATA_DONE:
6714d8e8
KH
1025 case DLM_RECO_NODE_DATA_RECEIVING:
1026 case DLM_RECO_NODE_DATA_REQUESTED:
1027 case DLM_RECO_NODE_DATA_REQUESTING:
1028 mlog(0, "node %u is DONE sending "
1029 "recovery data!\n",
1030 ndata->node_num);
1031
1032 ndata->state = DLM_RECO_NODE_DATA_DONE;
1033 ret = 0;
1034 break;
1035 }
1036 }
1037 spin_unlock(&dlm_reco_state_lock);
1038
1039 /* wake the recovery thread, some node is done */
1040 if (!ret)
1041 dlm_kick_recovery_thread(dlm);
1042
1043 if (ret < 0)
1044 mlog(ML_ERROR, "failed to find recovery node data for node "
1045 "%u\n", done->node_idx);
1046 dlm_put(dlm);
1047
1048 mlog(0, "leaving reco data done handler, ret=%d\n", ret);
1049 return ret;
1050}
1051
1052static void dlm_move_reco_locks_to_list(struct dlm_ctxt *dlm,
1053 struct list_head *list,
1054 u8 dead_node)
1055{
800deef3 1056 struct dlm_lock_resource *res, *next;
e2faea4c 1057 struct dlm_lock *lock;
6714d8e8
KH
1058
1059 spin_lock(&dlm->spinlock);
800deef3 1060 list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) {
e2faea4c
KH
1061 /* always prune any $RECOVERY entries for dead nodes,
1062 * otherwise hangs can occur during later recovery */
6714d8e8 1063 if (dlm_is_recovery_lock(res->lockname.name,
e2faea4c
KH
1064 res->lockname.len)) {
1065 spin_lock(&res->spinlock);
1066 list_for_each_entry(lock, &res->granted, list) {
1067 if (lock->ml.node == dead_node) {
1068 mlog(0, "AHA! there was "
1069 "a $RECOVERY lock for dead "
2bd63216 1070 "node %u (%s)!\n",
e2faea4c
KH
1071 dead_node, dlm->name);
1072 list_del_init(&lock->list);
1073 dlm_lock_put(lock);
1074 break;
1075 }
1076 }
1077 spin_unlock(&res->spinlock);
6714d8e8 1078 continue;
e2faea4c
KH
1079 }
1080
6714d8e8
KH
1081 if (res->owner == dead_node) {
1082 mlog(0, "found lockres owned by dead node while "
1083 "doing recovery for node %u. sending it.\n",
1084 dead_node);
f116629d 1085 list_move_tail(&res->recovering, list);
6714d8e8
KH
1086 } else if (res->owner == DLM_LOCK_RES_OWNER_UNKNOWN) {
1087 mlog(0, "found UNKNOWN owner while doing recovery "
1088 "for node %u. sending it.\n", dead_node);
f116629d 1089 list_move_tail(&res->recovering, list);
6714d8e8
KH
1090 }
1091 }
1092 spin_unlock(&dlm->spinlock);
1093}
1094
1095static inline int dlm_num_locks_in_lockres(struct dlm_lock_resource *res)
1096{
1097 int total_locks = 0;
1098 struct list_head *iter, *queue = &res->granted;
1099 int i;
1100
1101 for (i=0; i<3; i++) {
1102 list_for_each(iter, queue)
1103 total_locks++;
1104 queue++;
1105 }
1106 return total_locks;
1107}
1108
1109
1110static int dlm_send_mig_lockres_msg(struct dlm_ctxt *dlm,
1111 struct dlm_migratable_lockres *mres,
1112 u8 send_to,
1113 struct dlm_lock_resource *res,
1114 int total_locks)
1115{
1116 u64 mig_cookie = be64_to_cpu(mres->mig_cookie);
1117 int mres_total_locks = be32_to_cpu(mres->total_locks);
1118 int sz, ret = 0, status = 0;
1119 u8 orig_flags = mres->flags,
1120 orig_master = mres->master;
1121
1122 BUG_ON(mres->num_locks > DLM_MAX_MIGRATABLE_LOCKS);
1123 if (!mres->num_locks)
1124 return 0;
1125
1126 sz = sizeof(struct dlm_migratable_lockres) +
1127 (mres->num_locks * sizeof(struct dlm_migratable_lock));
1128
1129 /* add an all-done flag if we reached the last lock */
1130 orig_flags = mres->flags;
1131 BUG_ON(total_locks > mres_total_locks);
1132 if (total_locks == mres_total_locks)
1133 mres->flags |= DLM_MRES_ALL_DONE;
1134
ba2bf218
KH
1135 mlog(0, "%s:%.*s: sending mig lockres (%s) to %u\n",
1136 dlm->name, res->lockname.len, res->lockname.name,
17ae26b6 1137 orig_flags & DLM_MRES_MIGRATION ? "migration" : "recovery",
ba2bf218
KH
1138 send_to);
1139
6714d8e8
KH
1140 /* send it */
1141 ret = o2net_send_message(DLM_MIG_LOCKRES_MSG, dlm->key, mres,
1142 sz, send_to, &status);
1143 if (ret < 0) {
1144 /* XXX: negative status is not handled.
1145 * this will end up killing this node. */
8decab3c
SM
1146 mlog(ML_ERROR, "%s: res %.*s, Error %d send MIG_LOCKRES to "
1147 "node %u (%s)\n", dlm->name, mres->lockname_len,
1148 mres->lockname, ret, send_to,
1149 (orig_flags & DLM_MRES_MIGRATION ?
1150 "migration" : "recovery"));
6714d8e8
KH
1151 } else {
1152 /* might get an -ENOMEM back here */
1153 ret = status;
1154 if (ret < 0) {
1155 mlog_errno(ret);
1156
1157 if (ret == -EFAULT) {
1158 mlog(ML_ERROR, "node %u told me to kill "
1159 "myself!\n", send_to);
1160 BUG();
1161 }
1162 }
1163 }
1164
1165 /* zero and reinit the message buffer */
1166 dlm_init_migratable_lockres(mres, res->lockname.name,
1167 res->lockname.len, mres_total_locks,
1168 mig_cookie, orig_flags, orig_master);
1169 return ret;
1170}
1171
1172static void dlm_init_migratable_lockres(struct dlm_migratable_lockres *mres,
1173 const char *lockname, int namelen,
1174 int total_locks, u64 cookie,
1175 u8 flags, u8 master)
1176{
1177 /* mres here is one full page */
5fb0f7f0 1178 clear_page(mres);
6714d8e8
KH
1179 mres->lockname_len = namelen;
1180 memcpy(mres->lockname, lockname, namelen);
1181 mres->num_locks = 0;
1182 mres->total_locks = cpu_to_be32(total_locks);
1183 mres->mig_cookie = cpu_to_be64(cookie);
1184 mres->flags = flags;
1185 mres->master = master;
1186}
1187
71656fa6
SM
1188static void dlm_prepare_lvb_for_migration(struct dlm_lock *lock,
1189 struct dlm_migratable_lockres *mres,
1190 int queue)
1191{
1192 if (!lock->lksb)
1193 return;
1194
1195 /* Ignore lvb in all locks in the blocked list */
1196 if (queue == DLM_BLOCKED_LIST)
1197 return;
1198
1199 /* Only consider lvbs in locks with granted EX or PR lock levels */
1200 if (lock->ml.type != LKM_EXMODE && lock->ml.type != LKM_PRMODE)
1201 return;
1202
1203 if (dlm_lvb_is_empty(mres->lvb)) {
1204 memcpy(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN);
1205 return;
1206 }
1207
1208 /* Ensure the lvb copied for migration matches in other valid locks */
1209 if (!memcmp(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN))
1210 return;
1211
1212 mlog(ML_ERROR, "Mismatched lvb in lock cookie=%u:%llu, name=%.*s, "
1213 "node=%u\n",
1214 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
1215 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
1216 lock->lockres->lockname.len, lock->lockres->lockname.name,
1217 lock->ml.node);
1218 dlm_print_one_lock_resource(lock->lockres);
1219 BUG();
1220}
6714d8e8
KH
1221
1222/* returns 1 if this lock fills the network structure,
1223 * 0 otherwise */
1224static int dlm_add_lock_to_array(struct dlm_lock *lock,
1225 struct dlm_migratable_lockres *mres, int queue)
1226{
1227 struct dlm_migratable_lock *ml;
1228 int lock_num = mres->num_locks;
1229
1230 ml = &(mres->ml[lock_num]);
1231 ml->cookie = lock->ml.cookie;
1232 ml->type = lock->ml.type;
1233 ml->convert_type = lock->ml.convert_type;
1234 ml->highest_blocked = lock->ml.highest_blocked;
1235 ml->list = queue;
1236 if (lock->lksb) {
1237 ml->flags = lock->lksb->flags;
71656fa6 1238 dlm_prepare_lvb_for_migration(lock, mres, queue);
6714d8e8
KH
1239 }
1240 ml->node = lock->ml.node;
1241 mres->num_locks++;
1242 /* we reached the max, send this network message */
1243 if (mres->num_locks == DLM_MAX_MIGRATABLE_LOCKS)
1244 return 1;
1245 return 0;
1246}
1247
ba2bf218
KH
1248static void dlm_add_dummy_lock(struct dlm_ctxt *dlm,
1249 struct dlm_migratable_lockres *mres)
1250{
1251 struct dlm_lock dummy;
1252 memset(&dummy, 0, sizeof(dummy));
1253 dummy.ml.cookie = 0;
1254 dummy.ml.type = LKM_IVMODE;
1255 dummy.ml.convert_type = LKM_IVMODE;
1256 dummy.ml.highest_blocked = LKM_IVMODE;
1257 dummy.lksb = NULL;
1258 dummy.ml.node = dlm->node_num;
1259 dlm_add_lock_to_array(&dummy, mres, DLM_BLOCKED_LIST);
1260}
1261
1262static inline int dlm_is_dummy_lock(struct dlm_ctxt *dlm,
1263 struct dlm_migratable_lock *ml,
1264 u8 *nodenum)
1265{
1266 if (unlikely(ml->cookie == 0 &&
1267 ml->type == LKM_IVMODE &&
1268 ml->convert_type == LKM_IVMODE &&
1269 ml->highest_blocked == LKM_IVMODE &&
1270 ml->list == DLM_BLOCKED_LIST)) {
1271 *nodenum = ml->node;
1272 return 1;
1273 }
1274 return 0;
1275}
6714d8e8
KH
1276
1277int dlm_send_one_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1278 struct dlm_migratable_lockres *mres,
1279 u8 send_to, u8 flags)
1280{
800deef3 1281 struct list_head *queue;
6714d8e8
KH
1282 int total_locks, i;
1283 u64 mig_cookie = 0;
1284 struct dlm_lock *lock;
1285 int ret = 0;
1286
1287 BUG_ON(!(flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1288
1289 mlog(0, "sending to %u\n", send_to);
1290
1291 total_locks = dlm_num_locks_in_lockres(res);
1292 if (total_locks > DLM_MAX_MIGRATABLE_LOCKS) {
1293 /* rare, but possible */
1294 mlog(0, "argh. lockres has %d locks. this will "
1295 "require more than one network packet to "
1296 "migrate\n", total_locks);
1297 mig_cookie = dlm_get_next_mig_cookie();
1298 }
1299
1300 dlm_init_migratable_lockres(mres, res->lockname.name,
1301 res->lockname.len, total_locks,
1302 mig_cookie, flags, res->owner);
1303
1304 total_locks = 0;
1305 for (i=DLM_GRANTED_LIST; i<=DLM_BLOCKED_LIST; i++) {
1306 queue = dlm_list_idx_to_ptr(res, i);
800deef3 1307 list_for_each_entry(lock, queue, list) {
6714d8e8
KH
1308 /* add another lock. */
1309 total_locks++;
1310 if (!dlm_add_lock_to_array(lock, mres, i))
1311 continue;
1312
1313 /* this filled the lock message,
1314 * we must send it immediately. */
1315 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to,
1316 res, total_locks);
29c0fa0f
KH
1317 if (ret < 0)
1318 goto error;
6714d8e8
KH
1319 }
1320 }
ba2bf218
KH
1321 if (total_locks == 0) {
1322 /* send a dummy lock to indicate a mastery reference only */
1323 mlog(0, "%s:%.*s: sending dummy lock to %u, %s\n",
1324 dlm->name, res->lockname.len, res->lockname.name,
1325 send_to, flags & DLM_MRES_RECOVERY ? "recovery" :
1326 "migration");
1327 dlm_add_dummy_lock(dlm, mres);
1328 }
6714d8e8
KH
1329 /* flush any remaining locks */
1330 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to, res, total_locks);
29c0fa0f
KH
1331 if (ret < 0)
1332 goto error;
1333 return ret;
1334
1335error:
1336 mlog(ML_ERROR, "%s: dlm_send_mig_lockres_msg returned %d\n",
1337 dlm->name, ret);
1338 if (!dlm_is_host_down(ret))
6714d8e8 1339 BUG();
29c0fa0f
KH
1340 mlog(0, "%s: node %u went down while sending %s "
1341 "lockres %.*s\n", dlm->name, send_to,
1342 flags & DLM_MRES_RECOVERY ? "recovery" : "migration",
1343 res->lockname.len, res->lockname.name);
6714d8e8
KH
1344 return ret;
1345}
1346
1347
1348
1349/*
1350 * this message will contain no more than one page worth of
1351 * recovery data, and it will work on only one lockres.
1352 * there may be many locks in this page, and we may need to wait
1353 * for additional packets to complete all the locks (rare, but
1354 * possible).
1355 */
1356/*
1357 * NOTE: the allocation error cases here are scary
1358 * we really cannot afford to fail an alloc in recovery
1359 * do we spin? returning an error only delays the problem really
1360 */
1361
d74c9803
KH
1362int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
1363 void **ret_data)
6714d8e8
KH
1364{
1365 struct dlm_ctxt *dlm = data;
1366 struct dlm_migratable_lockres *mres =
1367 (struct dlm_migratable_lockres *)msg->buf;
1368 int ret = 0;
1369 u8 real_master;
52987e2a 1370 u8 extra_refs = 0;
6714d8e8
KH
1371 char *buf = NULL;
1372 struct dlm_work_item *item = NULL;
1373 struct dlm_lock_resource *res = NULL;
1374
1375 if (!dlm_grab(dlm))
1376 return -EINVAL;
1377
1378 BUG_ON(!(mres->flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1379
1380 real_master = mres->master;
1381 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1382 /* cannot migrate a lockres with no master */
1383 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1384 }
1385
1386 mlog(0, "%s message received from node %u\n",
1387 (mres->flags & DLM_MRES_RECOVERY) ?
1388 "recovery" : "migration", mres->master);
1389 if (mres->flags & DLM_MRES_ALL_DONE)
1390 mlog(0, "all done flag. all lockres data received!\n");
1391
1392 ret = -ENOMEM;
ad8100e0 1393 buf = kmalloc(be16_to_cpu(msg->data_len), GFP_NOFS);
cd861280 1394 item = kzalloc(sizeof(*item), GFP_NOFS);
6714d8e8
KH
1395 if (!buf || !item)
1396 goto leave;
1397
1398 /* lookup the lock to see if we have a secondary queue for this
1399 * already... just add the locks in and this will have its owner
1400 * and RECOVERY flag changed when it completes. */
1401 res = dlm_lookup_lockres(dlm, mres->lockname, mres->lockname_len);
1402 if (res) {
1403 /* this will get a ref on res */
1404 /* mark it as recovering/migrating and hash it */
1405 spin_lock(&res->spinlock);
1406 if (mres->flags & DLM_MRES_RECOVERY) {
1407 res->state |= DLM_LOCK_RES_RECOVERING;
1408 } else {
1409 if (res->state & DLM_LOCK_RES_MIGRATING) {
1410 /* this is at least the second
1411 * lockres message */
1412 mlog(0, "lock %.*s is already migrating\n",
1413 mres->lockname_len,
1414 mres->lockname);
1415 } else if (res->state & DLM_LOCK_RES_RECOVERING) {
1416 /* caller should BUG */
1417 mlog(ML_ERROR, "node is attempting to migrate "
1418 "lock %.*s, but marked as recovering!\n",
1419 mres->lockname_len, mres->lockname);
1420 ret = -EFAULT;
1421 spin_unlock(&res->spinlock);
27749f2f 1422 dlm_lockres_put(res);
6714d8e8
KH
1423 goto leave;
1424 }
1425 res->state |= DLM_LOCK_RES_MIGRATING;
1426 }
1427 spin_unlock(&res->spinlock);
1428 } else {
1429 /* need to allocate, just like if it was
1430 * mastered here normally */
1431 res = dlm_new_lockres(dlm, mres->lockname, mres->lockname_len);
1432 if (!res)
1433 goto leave;
1434
1435 /* to match the ref that we would have gotten if
1436 * dlm_lookup_lockres had succeeded */
1437 dlm_lockres_get(res);
1438
1439 /* mark it as recovering/migrating and hash it */
1440 if (mres->flags & DLM_MRES_RECOVERY)
1441 res->state |= DLM_LOCK_RES_RECOVERING;
1442 else
1443 res->state |= DLM_LOCK_RES_MIGRATING;
1444
1445 spin_lock(&dlm->spinlock);
1446 __dlm_insert_lockres(dlm, res);
1447 spin_unlock(&dlm->spinlock);
1448
52987e2a
SM
1449 /* Add an extra ref for this lock-less lockres lest the
1450 * dlm_thread purges it before we get the chance to add
1451 * locks to it */
1452 dlm_lockres_get(res);
1453
1454 /* There are three refs that need to be put.
1455 * 1. Taken above.
1456 * 2. kref_init in dlm_new_lockres()->dlm_init_lockres().
1457 * 3. dlm_lookup_lockres()
1458 * The first one is handled at the end of this function. The
1459 * other two are handled in the worker thread after locks have
1460 * been attached. Yes, we don't wait for purge time to match
1461 * kref_init. The lockres will still have atleast one ref
1462 * added because it is in the hash __dlm_insert_lockres() */
1463 extra_refs++;
1464
6714d8e8
KH
1465 /* now that the new lockres is inserted,
1466 * make it usable by other processes */
1467 spin_lock(&res->spinlock);
1468 res->state &= ~DLM_LOCK_RES_IN_PROGRESS;
1469 spin_unlock(&res->spinlock);
a6fa3640 1470 wake_up(&res->wq);
6714d8e8
KH
1471 }
1472
1473 /* at this point we have allocated everything we need,
1474 * and we have a hashed lockres with an extra ref and
1475 * the proper res->state flags. */
1476 ret = 0;
ba2bf218
KH
1477 spin_lock(&res->spinlock);
1478 /* drop this either when master requery finds a different master
1479 * or when a lock is added by the recovery worker */
1480 dlm_lockres_grab_inflight_ref(dlm, res);
6714d8e8
KH
1481 if (mres->master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1482 /* migration cannot have an unknown master */
1483 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1484 mlog(0, "recovery has passed me a lockres with an "
1485 "unknown owner.. will need to requery: "
1486 "%.*s\n", mres->lockname_len, mres->lockname);
1487 } else {
ba2bf218
KH
1488 /* take a reference now to pin the lockres, drop it
1489 * when locks are added in the worker */
6714d8e8 1490 dlm_change_lockres_owner(dlm, res, dlm->node_num);
6714d8e8 1491 }
ba2bf218 1492 spin_unlock(&res->spinlock);
6714d8e8
KH
1493
1494 /* queue up work for dlm_mig_lockres_worker */
1495 dlm_grab(dlm); /* get an extra ref for the work item */
1496 memcpy(buf, msg->buf, be16_to_cpu(msg->data_len)); /* copy the whole message */
1497 dlm_init_work_item(dlm, item, dlm_mig_lockres_worker, buf);
1498 item->u.ml.lockres = res; /* already have a ref */
1499 item->u.ml.real_master = real_master;
52987e2a 1500 item->u.ml.extra_ref = extra_refs;
6714d8e8
KH
1501 spin_lock(&dlm->work_lock);
1502 list_add_tail(&item->list, &dlm->work_list);
1503 spin_unlock(&dlm->work_lock);
3156d267 1504 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
6714d8e8
KH
1505
1506leave:
52987e2a
SM
1507 /* One extra ref taken needs to be put here */
1508 if (extra_refs)
1509 dlm_lockres_put(res);
1510
6714d8e8
KH
1511 dlm_put(dlm);
1512 if (ret < 0) {
7cfa74d1
SK
1513 kfree(buf);
1514 kfree(item);
c1e8d35e 1515 mlog_errno(ret);
6714d8e8
KH
1516 }
1517
6714d8e8
KH
1518 return ret;
1519}
1520
1521
1522static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data)
1523{
52987e2a 1524 struct dlm_ctxt *dlm;
6714d8e8
KH
1525 struct dlm_migratable_lockres *mres;
1526 int ret = 0;
1527 struct dlm_lock_resource *res;
1528 u8 real_master;
52987e2a 1529 u8 extra_ref;
6714d8e8
KH
1530
1531 dlm = item->dlm;
1532 mres = (struct dlm_migratable_lockres *)data;
1533
1534 res = item->u.ml.lockres;
1535 real_master = item->u.ml.real_master;
52987e2a 1536 extra_ref = item->u.ml.extra_ref;
6714d8e8
KH
1537
1538 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1539 /* this case is super-rare. only occurs if
1540 * node death happens during migration. */
1541again:
1542 ret = dlm_lockres_master_requery(dlm, res, &real_master);
1543 if (ret < 0) {
e2faea4c 1544 mlog(0, "dlm_lockres_master_requery ret=%d\n",
6714d8e8
KH
1545 ret);
1546 goto again;
1547 }
1548 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1549 mlog(0, "lockres %.*s not claimed. "
1550 "this node will take it.\n",
1551 res->lockname.len, res->lockname.name);
1552 } else {
ba2bf218
KH
1553 spin_lock(&res->spinlock);
1554 dlm_lockres_drop_inflight_ref(dlm, res);
1555 spin_unlock(&res->spinlock);
6714d8e8
KH
1556 mlog(0, "master needs to respond to sender "
1557 "that node %u still owns %.*s\n",
1558 real_master, res->lockname.len,
1559 res->lockname.name);
1560 /* cannot touch this lockres */
1561 goto leave;
1562 }
1563 }
1564
1565 ret = dlm_process_recovery_data(dlm, res, mres);
1566 if (ret < 0)
1567 mlog(0, "dlm_process_recovery_data returned %d\n", ret);
1568 else
1569 mlog(0, "dlm_process_recovery_data succeeded\n");
1570
1571 if ((mres->flags & (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) ==
1572 (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) {
1573 ret = dlm_finish_migration(dlm, res, mres->master);
1574 if (ret < 0)
1575 mlog_errno(ret);
1576 }
1577
1578leave:
52987e2a
SM
1579 /* See comment in dlm_mig_lockres_handler() */
1580 if (res) {
1581 if (extra_ref)
1582 dlm_lockres_put(res);
1583 dlm_lockres_put(res);
1584 }
6714d8e8 1585 kfree(data);
6714d8e8
KH
1586}
1587
1588
1589
8169cae5
AB
1590static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
1591 struct dlm_lock_resource *res,
1592 u8 *real_master)
6714d8e8
KH
1593{
1594 struct dlm_node_iter iter;
1595 int nodenum;
1596 int ret = 0;
1597
1598 *real_master = DLM_LOCK_RES_OWNER_UNKNOWN;
1599
1600 /* we only reach here if one of the two nodes in a
1601 * migration died while the migration was in progress.
1602 * at this point we need to requery the master. we
1603 * know that the new_master got as far as creating
1604 * an mle on at least one node, but we do not know
1605 * if any nodes had actually cleared the mle and set
1606 * the master to the new_master. the old master
1607 * is supposed to set the owner to UNKNOWN in the
1608 * event of a new_master death, so the only possible
1609 * responses that we can get from nodes here are
1610 * that the master is new_master, or that the master
1611 * is UNKNOWN.
1612 * if all nodes come back with UNKNOWN then we know
1613 * the lock needs remastering here.
1614 * if any node comes back with a valid master, check
1615 * to see if that master is the one that we are
1616 * recovering. if so, then the new_master died and
1617 * we need to remaster this lock. if not, then the
1618 * new_master survived and that node will respond to
1619 * other nodes about the owner.
1620 * if there is an owner, this node needs to dump this
1621 * lockres and alert the sender that this lockres
1622 * was rejected. */
1623 spin_lock(&dlm->spinlock);
1624 dlm_node_iter_init(dlm->domain_map, &iter);
1625 spin_unlock(&dlm->spinlock);
1626
1627 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
1628 /* do not send to self */
1629 if (nodenum == dlm->node_num)
1630 continue;
1631 ret = dlm_do_master_requery(dlm, res, nodenum, real_master);
1632 if (ret < 0) {
1633 mlog_errno(ret);
c03872f5
KH
1634 if (!dlm_is_host_down(ret))
1635 BUG();
1636 /* host is down, so answer for that node would be
1637 * DLM_LOCK_RES_OWNER_UNKNOWN. continue. */
6714d8e8
KH
1638 }
1639 if (*real_master != DLM_LOCK_RES_OWNER_UNKNOWN) {
1640 mlog(0, "lock master is %u\n", *real_master);
1641 break;
1642 }
1643 }
1644 return ret;
1645}
1646
1647
c03872f5
KH
1648int dlm_do_master_requery(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1649 u8 nodenum, u8 *real_master)
6714d8e8
KH
1650{
1651 int ret = -EINVAL;
1652 struct dlm_master_requery req;
1653 int status = DLM_LOCK_RES_OWNER_UNKNOWN;
1654
1655 memset(&req, 0, sizeof(req));
1656 req.node_idx = dlm->node_num;
1657 req.namelen = res->lockname.len;
1658 memcpy(req.name, res->lockname.name, res->lockname.len);
1659
1660 ret = o2net_send_message(DLM_MASTER_REQUERY_MSG, dlm->key,
1661 &req, sizeof(req), nodenum, &status);
1662 /* XXX: negative status not handled properly here. */
1663 if (ret < 0)
a5196ec5
WW
1664 mlog(ML_ERROR, "Error %d when sending message %u (key "
1665 "0x%x) to node %u\n", ret, DLM_MASTER_REQUERY_MSG,
1666 dlm->key, nodenum);
6714d8e8
KH
1667 else {
1668 BUG_ON(status < 0);
1669 BUG_ON(status > DLM_LOCK_RES_OWNER_UNKNOWN);
1670 *real_master = (u8) (status & 0xff);
1671 mlog(0, "node %u responded to master requery with %u\n",
1672 nodenum, *real_master);
1673 ret = 0;
1674 }
1675 return ret;
1676}
1677
1678
1679/* this function cannot error, so unless the sending
1680 * or receiving of the message failed, the owner can
1681 * be trusted */
d74c9803
KH
1682int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data,
1683 void **ret_data)
6714d8e8
KH
1684{
1685 struct dlm_ctxt *dlm = data;
1686 struct dlm_master_requery *req = (struct dlm_master_requery *)msg->buf;
1687 struct dlm_lock_resource *res = NULL;
a3d33291 1688 unsigned int hash;
6714d8e8
KH
1689 int master = DLM_LOCK_RES_OWNER_UNKNOWN;
1690 u32 flags = DLM_ASSERT_MASTER_REQUERY;
1691
1692 if (!dlm_grab(dlm)) {
1693 /* since the domain has gone away on this
1694 * node, the proper response is UNKNOWN */
1695 return master;
1696 }
1697
a3d33291
MF
1698 hash = dlm_lockid_hash(req->name, req->namelen);
1699
6714d8e8 1700 spin_lock(&dlm->spinlock);
a3d33291 1701 res = __dlm_lookup_lockres(dlm, req->name, req->namelen, hash);
6714d8e8
KH
1702 if (res) {
1703 spin_lock(&res->spinlock);
1704 master = res->owner;
1705 if (master == dlm->node_num) {
1706 int ret = dlm_dispatch_assert_master(dlm, res,
1707 0, 0, flags);
1708 if (ret < 0) {
1709 mlog_errno(-ENOMEM);
1710 /* retry!? */
1711 BUG();
1712 }
52987e2a
SM
1713 } else /* put.. incase we are not the master */
1714 dlm_lockres_put(res);
6714d8e8
KH
1715 spin_unlock(&res->spinlock);
1716 }
1717 spin_unlock(&dlm->spinlock);
1718
1719 dlm_put(dlm);
1720 return master;
1721}
1722
1723static inline struct list_head *
1724dlm_list_num_to_pointer(struct dlm_lock_resource *res, int list_num)
1725{
1726 struct list_head *ret;
1727 BUG_ON(list_num < 0);
1728 BUG_ON(list_num > 2);
1729 ret = &(res->granted);
1730 ret += list_num;
1731 return ret;
1732}
1733/* TODO: do ast flush business
1734 * TODO: do MIGRATING and RECOVERING spinning
1735 */
1736
1737/*
1738* NOTE about in-flight requests during migration:
1739*
1740* Before attempting the migrate, the master has marked the lockres as
1741* MIGRATING and then flushed all of its pending ASTS. So any in-flight
1742* requests either got queued before the MIGRATING flag got set, in which
1743* case the lock data will reflect the change and a return message is on
1744* the way, or the request failed to get in before MIGRATING got set. In
1745* this case, the caller will be told to spin and wait for the MIGRATING
1746* flag to be dropped, then recheck the master.
1747* This holds true for the convert, cancel and unlock cases, and since lvb
1748* updates are tied to these same messages, it applies to lvb updates as
1749* well. For the lock case, there is no way a lock can be on the master
1750* queue and not be on the secondary queue since the lock is always added
1751* locally first. This means that the new target node will never be sent
1752* a lock that he doesn't already have on the list.
1753* In total, this means that the local lock is correct and should not be
1754* updated to match the one sent by the master. Any messages sent back
1755* from the master before the MIGRATING flag will bring the lock properly
1756* up-to-date, and the change will be ordered properly for the waiter.
1757* We will *not* attempt to modify the lock underneath the waiter.
1758*/
1759
1760static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
1761 struct dlm_lock_resource *res,
1762 struct dlm_migratable_lockres *mres)
1763{
1764 struct dlm_migratable_lock *ml;
261985c4 1765 struct list_head *queue, *iter;
e17e75ec 1766 struct list_head *tmpq = NULL;
6714d8e8
KH
1767 struct dlm_lock *newlock = NULL;
1768 struct dlm_lockstatus *lksb = NULL;
1769 int ret = 0;
e17e75ec 1770 int i, j, bad;
261985c4 1771 struct dlm_lock *lock;
ba2bf218
KH
1772 u8 from = O2NM_MAX_NODES;
1773 unsigned int added = 0;
26636bf6 1774 __be64 c;
6714d8e8
KH
1775
1776 mlog(0, "running %d locks for this lockres\n", mres->num_locks);
1777 for (i=0; i<mres->num_locks; i++) {
1778 ml = &(mres->ml[i]);
ba2bf218
KH
1779
1780 if (dlm_is_dummy_lock(dlm, ml, &from)) {
1781 /* placeholder, just need to set the refmap bit */
1782 BUG_ON(mres->num_locks != 1);
1783 mlog(0, "%s:%.*s: dummy lock for %u\n",
1784 dlm->name, mres->lockname_len, mres->lockname,
1785 from);
1786 spin_lock(&res->spinlock);
8d400b81 1787 dlm_lockres_set_refmap_bit(dlm, res, from);
ba2bf218
KH
1788 spin_unlock(&res->spinlock);
1789 added++;
1790 break;
1791 }
6714d8e8
KH
1792 BUG_ON(ml->highest_blocked != LKM_IVMODE);
1793 newlock = NULL;
1794 lksb = NULL;
1795
1796 queue = dlm_list_num_to_pointer(res, ml->list);
e17e75ec 1797 tmpq = NULL;
6714d8e8
KH
1798
1799 /* if the lock is for the local node it needs to
1800 * be moved to the proper location within the queue.
1801 * do not allocate a new lock structure. */
1802 if (ml->node == dlm->node_num) {
1803 /* MIGRATION ONLY! */
1804 BUG_ON(!(mres->flags & DLM_MRES_MIGRATION));
1805
261985c4 1806 lock = NULL;
6714d8e8 1807 spin_lock(&res->spinlock);
e17e75ec
KH
1808 for (j = DLM_GRANTED_LIST; j <= DLM_BLOCKED_LIST; j++) {
1809 tmpq = dlm_list_idx_to_ptr(res, j);
261985c4
JB
1810 list_for_each(iter, tmpq) {
1811 lock = list_entry(iter,
1812 struct dlm_lock, list);
1813 if (lock->ml.cookie == ml->cookie)
e17e75ec 1814 break;
261985c4 1815 lock = NULL;
e17e75ec
KH
1816 }
1817 if (lock)
6714d8e8
KH
1818 break;
1819 }
1820
1821 /* lock is always created locally first, and
1822 * destroyed locally last. it must be on the list */
1823 if (!lock) {
26636bf6
SM
1824 c = ml->cookie;
1825 mlog(ML_ERROR, "Could not find local lock "
1826 "with cookie %u:%llu, node %u, "
1827 "list %u, flags 0x%x, type %d, "
1828 "conv %d, highest blocked %d\n",
74aa2585 1829 dlm_get_lock_cookie_node(be64_to_cpu(c)),
26636bf6
SM
1830 dlm_get_lock_cookie_seq(be64_to_cpu(c)),
1831 ml->node, ml->list, ml->flags, ml->type,
1832 ml->convert_type, ml->highest_blocked);
1833 __dlm_print_one_lock_resource(res);
1834 BUG();
1835 }
1836
1837 if (lock->ml.node != ml->node) {
1838 c = lock->ml.cookie;
1839 mlog(ML_ERROR, "Mismatched node# in lock "
1840 "cookie %u:%llu, name %.*s, node %u\n",
1841 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1842 dlm_get_lock_cookie_seq(be64_to_cpu(c)),
1843 res->lockname.len, res->lockname.name,
1844 lock->ml.node);
1845 c = ml->cookie;
1846 mlog(ML_ERROR, "Migrate lock cookie %u:%llu, "
1847 "node %u, list %u, flags 0x%x, type %d, "
1848 "conv %d, highest blocked %d\n",
1849 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1850 dlm_get_lock_cookie_seq(be64_to_cpu(c)),
1851 ml->node, ml->list, ml->flags, ml->type,
1852 ml->convert_type, ml->highest_blocked);
71ac1062 1853 __dlm_print_one_lock_resource(res);
6714d8e8
KH
1854 BUG();
1855 }
6714d8e8 1856
e17e75ec 1857 if (tmpq != queue) {
26636bf6
SM
1858 c = ml->cookie;
1859 mlog(0, "Lock cookie %u:%llu was on list %u "
1860 "instead of list %u for %.*s\n",
1861 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1862 dlm_get_lock_cookie_seq(be64_to_cpu(c)),
1863 j, ml->list, res->lockname.len,
1864 res->lockname.name);
1865 __dlm_print_one_lock_resource(res);
e17e75ec
KH
1866 spin_unlock(&res->spinlock);
1867 continue;
1868 }
1869
6714d8e8
KH
1870 /* see NOTE above about why we do not update
1871 * to match the master here */
1872
1873 /* move the lock to its proper place */
1874 /* do not alter lock refcount. switching lists. */
f116629d 1875 list_move_tail(&lock->list, queue);
6714d8e8 1876 spin_unlock(&res->spinlock);
ba2bf218 1877 added++;
6714d8e8
KH
1878
1879 mlog(0, "just reordered a local lock!\n");
1880 continue;
1881 }
1882
1883 /* lock is for another node. */
1884 newlock = dlm_new_lock(ml->type, ml->node,
1885 be64_to_cpu(ml->cookie), NULL);
1886 if (!newlock) {
1887 ret = -ENOMEM;
1888 goto leave;
1889 }
1890 lksb = newlock->lksb;
1891 dlm_lock_attach_lockres(newlock, res);
1892
1893 if (ml->convert_type != LKM_IVMODE) {
1894 BUG_ON(queue != &res->converting);
1895 newlock->ml.convert_type = ml->convert_type;
1896 }
1897 lksb->flags |= (ml->flags &
1898 (DLM_LKSB_PUT_LVB|DLM_LKSB_GET_LVB));
ccd8b1f9
KH
1899
1900 if (ml->type == LKM_NLMODE)
1901 goto skip_lvb;
1902
8bc674cb 1903 if (!dlm_lvb_is_empty(mres->lvb)) {
6714d8e8
KH
1904 if (lksb->flags & DLM_LKSB_PUT_LVB) {
1905 /* other node was trying to update
1906 * lvb when node died. recreate the
1907 * lksb with the updated lvb. */
1908 memcpy(lksb->lvb, mres->lvb, DLM_LVB_LEN);
ccd8b1f9
KH
1909 /* the lock resource lvb update must happen
1910 * NOW, before the spinlock is dropped.
1911 * we no longer wait for the AST to update
1912 * the lvb. */
1913 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
6714d8e8 1914 } else {
2bd63216 1915 /* otherwise, the node is sending its
6714d8e8
KH
1916 * most recent valid lvb info */
1917 BUG_ON(ml->type != LKM_EXMODE &&
1918 ml->type != LKM_PRMODE);
8bc674cb 1919 if (!dlm_lvb_is_empty(res->lvb) &&
ccd8b1f9
KH
1920 (ml->type == LKM_EXMODE ||
1921 memcmp(res->lvb, mres->lvb, DLM_LVB_LEN))) {
1922 int i;
1923 mlog(ML_ERROR, "%s:%.*s: received bad "
1924 "lvb! type=%d\n", dlm->name,
1925 res->lockname.len,
1926 res->lockname.name, ml->type);
1927 printk("lockres lvb=[");
1928 for (i=0; i<DLM_LVB_LEN; i++)
1929 printk("%02x", res->lvb[i]);
1930 printk("]\nmigrated lvb=[");
1931 for (i=0; i<DLM_LVB_LEN; i++)
1932 printk("%02x", mres->lvb[i]);
1933 printk("]\n");
1934 dlm_print_one_lock_resource(res);
1935 BUG();
6714d8e8
KH
1936 }
1937 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
1938 }
1939 }
ccd8b1f9 1940skip_lvb:
6714d8e8
KH
1941
1942 /* NOTE:
1943 * wrt lock queue ordering and recovery:
1944 * 1. order of locks on granted queue is
1945 * meaningless.
1946 * 2. order of locks on converting queue is
1947 * LOST with the node death. sorry charlie.
1948 * 3. order of locks on the blocked queue is
1949 * also LOST.
1950 * order of locks does not affect integrity, it
1951 * just means that a lock request may get pushed
1952 * back in line as a result of the node death.
1953 * also note that for a given node the lock order
1954 * for its secondary queue locks is preserved
1955 * relative to each other, but clearly *not*
1956 * preserved relative to locks from other nodes.
1957 */
c3187ce5 1958 bad = 0;
6714d8e8 1959 spin_lock(&res->spinlock);
c3187ce5
KH
1960 list_for_each_entry(lock, queue, list) {
1961 if (lock->ml.cookie == ml->cookie) {
26636bf6 1962 c = lock->ml.cookie;
c3187ce5
KH
1963 mlog(ML_ERROR, "%s:%.*s: %u:%llu: lock already "
1964 "exists on this lockres!\n", dlm->name,
1965 res->lockname.len, res->lockname.name,
74aa2585
KH
1966 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1967 dlm_get_lock_cookie_seq(be64_to_cpu(c)));
c3187ce5
KH
1968
1969 mlog(ML_NOTICE, "sent lock: type=%d, conv=%d, "
1970 "node=%u, cookie=%u:%llu, queue=%d\n",
1971 ml->type, ml->convert_type, ml->node,
74aa2585
KH
1972 dlm_get_lock_cookie_node(be64_to_cpu(ml->cookie)),
1973 dlm_get_lock_cookie_seq(be64_to_cpu(ml->cookie)),
c3187ce5
KH
1974 ml->list);
1975
1976 __dlm_print_one_lock_resource(res);
1977 bad = 1;
1978 break;
1979 }
1980 }
1981 if (!bad) {
1982 dlm_lock_get(newlock);
1983 list_add_tail(&newlock->list, queue);
ba2bf218
KH
1984 mlog(0, "%s:%.*s: added lock for node %u, "
1985 "setting refmap bit\n", dlm->name,
1986 res->lockname.len, res->lockname.name, ml->node);
8d400b81 1987 dlm_lockres_set_refmap_bit(dlm, res, ml->node);
ba2bf218 1988 added++;
c3187ce5 1989 }
6714d8e8
KH
1990 spin_unlock(&res->spinlock);
1991 }
1992 mlog(0, "done running all the locks\n");
1993
1994leave:
ba2bf218 1995 /* balance the ref taken when the work was queued */
50635f15
KH
1996 spin_lock(&res->spinlock);
1997 dlm_lockres_drop_inflight_ref(dlm, res);
1998 spin_unlock(&res->spinlock);
ba2bf218 1999
6714d8e8
KH
2000 if (ret < 0) {
2001 mlog_errno(ret);
2002 if (newlock)
2003 dlm_lock_put(newlock);
2004 }
2005
6714d8e8
KH
2006 return ret;
2007}
2008
2009void dlm_move_lockres_to_recovery_list(struct dlm_ctxt *dlm,
2010 struct dlm_lock_resource *res)
2011{
2012 int i;
800deef3
CH
2013 struct list_head *queue;
2014 struct dlm_lock *lock, *next;
6714d8e8 2015
a524812b
WW
2016 assert_spin_locked(&dlm->spinlock);
2017 assert_spin_locked(&res->spinlock);
6714d8e8 2018 res->state |= DLM_LOCK_RES_RECOVERING;
69d72b06
KH
2019 if (!list_empty(&res->recovering)) {
2020 mlog(0,
2021 "Recovering res %s:%.*s, is already on recovery list!\n",
2022 dlm->name, res->lockname.len, res->lockname.name);
6714d8e8 2023 list_del_init(&res->recovering);
52987e2a 2024 dlm_lockres_put(res);
69d72b06
KH
2025 }
2026 /* We need to hold a reference while on the recovery list */
2027 dlm_lockres_get(res);
6714d8e8
KH
2028 list_add_tail(&res->recovering, &dlm->reco.resources);
2029
2030 /* find any pending locks and put them back on proper list */
2031 for (i=DLM_BLOCKED_LIST; i>=DLM_GRANTED_LIST; i--) {
2032 queue = dlm_list_idx_to_ptr(res, i);
800deef3 2033 list_for_each_entry_safe(lock, next, queue, list) {
6714d8e8
KH
2034 dlm_lock_get(lock);
2035 if (lock->convert_pending) {
2036 /* move converting lock back to granted */
2037 BUG_ON(i != DLM_CONVERTING_LIST);
2038 mlog(0, "node died with convert pending "
2039 "on %.*s. move back to granted list.\n",
2040 res->lockname.len, res->lockname.name);
2041 dlm_revert_pending_convert(res, lock);
2042 lock->convert_pending = 0;
2043 } else if (lock->lock_pending) {
2044 /* remove pending lock requests completely */
2045 BUG_ON(i != DLM_BLOCKED_LIST);
2046 mlog(0, "node died with lock pending "
2047 "on %.*s. remove from blocked list and skip.\n",
2048 res->lockname.len, res->lockname.name);
2049 /* lock will be floating until ref in
2050 * dlmlock_remote is freed after the network
2051 * call returns. ok for it to not be on any
2052 * list since no ast can be called
2053 * (the master is dead). */
2054 dlm_revert_pending_lock(res, lock);
2055 lock->lock_pending = 0;
2056 } else if (lock->unlock_pending) {
2057 /* if an unlock was in progress, treat as
2058 * if this had completed successfully
2059 * before sending this lock state to the
2060 * new master. note that the dlm_unlock
2061 * call is still responsible for calling
2062 * the unlockast. that will happen after
2063 * the network call times out. for now,
2064 * just move lists to prepare the new
2065 * recovery master. */
2066 BUG_ON(i != DLM_GRANTED_LIST);
2067 mlog(0, "node died with unlock pending "
2068 "on %.*s. remove from blocked list and skip.\n",
2069 res->lockname.len, res->lockname.name);
2070 dlm_commit_pending_unlock(res, lock);
2071 lock->unlock_pending = 0;
2072 } else if (lock->cancel_pending) {
2073 /* if a cancel was in progress, treat as
2074 * if this had completed successfully
2075 * before sending this lock state to the
2076 * new master */
2077 BUG_ON(i != DLM_CONVERTING_LIST);
2078 mlog(0, "node died with cancel pending "
2079 "on %.*s. move back to granted list.\n",
2080 res->lockname.len, res->lockname.name);
2081 dlm_commit_pending_cancel(res, lock);
2082 lock->cancel_pending = 0;
2083 }
2084 dlm_lock_put(lock);
2085 }
2086 }
2087}
2088
2089
2090
2091/* removes all recovered locks from the recovery list.
2092 * sets the res->owner to the new master.
2093 * unsets the RECOVERY flag and wakes waiters. */
2094static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
2095 u8 dead_node, u8 new_master)
2096{
2097 int i;
81f2094a 2098 struct hlist_head *bucket;
800deef3 2099 struct dlm_lock_resource *res, *next;
6714d8e8 2100
6714d8e8
KH
2101 assert_spin_locked(&dlm->spinlock);
2102
800deef3 2103 list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) {
6714d8e8 2104 if (res->owner == dead_node) {
0afbba13
SM
2105 mlog(0, "%s: res %.*s, Changing owner from %u to %u\n",
2106 dlm->name, res->lockname.len, res->lockname.name,
2107 res->owner, new_master);
6714d8e8
KH
2108 list_del_init(&res->recovering);
2109 spin_lock(&res->spinlock);
ba2bf218
KH
2110 /* new_master has our reference from
2111 * the lock state sent during recovery */
6714d8e8
KH
2112 dlm_change_lockres_owner(dlm, res, new_master);
2113 res->state &= ~DLM_LOCK_RES_RECOVERING;
ba2bf218 2114 if (__dlm_lockres_has_locks(res))
69d72b06 2115 __dlm_dirty_lockres(dlm, res);
6714d8e8
KH
2116 spin_unlock(&res->spinlock);
2117 wake_up(&res->wq);
69d72b06 2118 dlm_lockres_put(res);
6714d8e8
KH
2119 }
2120 }
2121
2122 /* this will become unnecessary eventually, but
2123 * for now we need to run the whole hash, clear
2124 * the RECOVERING state and set the owner
2125 * if necessary */
81f2094a 2126 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
03d864c0 2127 bucket = dlm_lockres_hash(dlm, i);
b67bfe0d 2128 hlist_for_each_entry(res, bucket, hash_node) {
0afbba13
SM
2129 if (!(res->state & DLM_LOCK_RES_RECOVERING))
2130 continue;
2131
2132 if (res->owner != dead_node &&
2133 res->owner != dlm->node_num)
2134 continue;
2135
2136 if (!list_empty(&res->recovering)) {
2137 list_del_init(&res->recovering);
2138 dlm_lockres_put(res);
6714d8e8 2139 }
0afbba13
SM
2140
2141 /* new_master has our reference from
2142 * the lock state sent during recovery */
2143 mlog(0, "%s: res %.*s, Changing owner from %u to %u\n",
2144 dlm->name, res->lockname.len, res->lockname.name,
2145 res->owner, new_master);
2146 spin_lock(&res->spinlock);
2147 dlm_change_lockres_owner(dlm, res, new_master);
2148 res->state &= ~DLM_LOCK_RES_RECOVERING;
2149 if (__dlm_lockres_has_locks(res))
2150 __dlm_dirty_lockres(dlm, res);
2151 spin_unlock(&res->spinlock);
2152 wake_up(&res->wq);
6714d8e8
KH
2153 }
2154 }
2155}
2156
2157static inline int dlm_lvb_needs_invalidation(struct dlm_lock *lock, int local)
2158{
2159 if (local) {
2160 if (lock->ml.type != LKM_EXMODE &&
2161 lock->ml.type != LKM_PRMODE)
2162 return 1;
2163 } else if (lock->ml.type == LKM_EXMODE)
2164 return 1;
2165 return 0;
2166}
2167
2168static void dlm_revalidate_lvb(struct dlm_ctxt *dlm,
2169 struct dlm_lock_resource *res, u8 dead_node)
2170{
800deef3 2171 struct list_head *queue;
6714d8e8
KH
2172 struct dlm_lock *lock;
2173 int blank_lvb = 0, local = 0;
2174 int i;
2175 u8 search_node;
2176
2177 assert_spin_locked(&dlm->spinlock);
2178 assert_spin_locked(&res->spinlock);
2179
2180 if (res->owner == dlm->node_num)
2bd63216 2181 /* if this node owned the lockres, and if the dead node
6714d8e8
KH
2182 * had an EX when he died, blank out the lvb */
2183 search_node = dead_node;
2184 else {
2185 /* if this is a secondary lockres, and we had no EX or PR
2186 * locks granted, we can no longer trust the lvb */
2187 search_node = dlm->node_num;
2188 local = 1; /* check local state for valid lvb */
2189 }
2190
2191 for (i=DLM_GRANTED_LIST; i<=DLM_CONVERTING_LIST; i++) {
2192 queue = dlm_list_idx_to_ptr(res, i);
800deef3 2193 list_for_each_entry(lock, queue, list) {
6714d8e8
KH
2194 if (lock->ml.node == search_node) {
2195 if (dlm_lvb_needs_invalidation(lock, local)) {
2196 /* zero the lksb lvb and lockres lvb */
2197 blank_lvb = 1;
2198 memset(lock->lksb->lvb, 0, DLM_LVB_LEN);
2199 }
2200 }
2201 }
2202 }
2203
2204 if (blank_lvb) {
2205 mlog(0, "clearing %.*s lvb, dead node %u had EX\n",
2206 res->lockname.len, res->lockname.name, dead_node);
2207 memset(res->lvb, 0, DLM_LVB_LEN);
2208 }
2209}
2210
2211static void dlm_free_dead_locks(struct dlm_ctxt *dlm,
2212 struct dlm_lock_resource *res, u8 dead_node)
2213{
800deef3 2214 struct dlm_lock *lock, *next;
ba2bf218 2215 unsigned int freed = 0;
6714d8e8
KH
2216
2217 /* this node is the lockres master:
2218 * 1) remove any stale locks for the dead node
2bd63216 2219 * 2) if the dead node had an EX when he died, blank out the lvb
6714d8e8
KH
2220 */
2221 assert_spin_locked(&dlm->spinlock);
2222 assert_spin_locked(&res->spinlock);
2223
2c5c54ac
SM
2224 /* We do two dlm_lock_put(). One for removing from list and the other is
2225 * to force the DLM_UNLOCK_FREE_LOCK action so as to free the locks */
2226
6714d8e8 2227 /* TODO: check pending_asts, pending_basts here */
800deef3 2228 list_for_each_entry_safe(lock, next, &res->granted, list) {
6714d8e8
KH
2229 if (lock->ml.node == dead_node) {
2230 list_del_init(&lock->list);
2231 dlm_lock_put(lock);
2c5c54ac
SM
2232 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2233 dlm_lock_put(lock);
ba2bf218 2234 freed++;
6714d8e8
KH
2235 }
2236 }
800deef3 2237 list_for_each_entry_safe(lock, next, &res->converting, list) {
6714d8e8
KH
2238 if (lock->ml.node == dead_node) {
2239 list_del_init(&lock->list);
2240 dlm_lock_put(lock);
2c5c54ac
SM
2241 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2242 dlm_lock_put(lock);
ba2bf218 2243 freed++;
6714d8e8
KH
2244 }
2245 }
800deef3 2246 list_for_each_entry_safe(lock, next, &res->blocked, list) {
6714d8e8
KH
2247 if (lock->ml.node == dead_node) {
2248 list_del_init(&lock->list);
2249 dlm_lock_put(lock);
2c5c54ac
SM
2250 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2251 dlm_lock_put(lock);
ba2bf218 2252 freed++;
6714d8e8
KH
2253 }
2254 }
2255
ba2bf218
KH
2256 if (freed) {
2257 mlog(0, "%s:%.*s: freed %u locks for dead node %u, "
2258 "dropping ref from lockres\n", dlm->name,
2259 res->lockname.len, res->lockname.name, freed, dead_node);
cda70ba8
SM
2260 if(!test_bit(dead_node, res->refmap)) {
2261 mlog(ML_ERROR, "%s:%.*s: freed %u locks for dead node %u, "
2262 "but ref was not set\n", dlm->name,
2263 res->lockname.len, res->lockname.name, freed, dead_node);
2264 __dlm_print_one_lock_resource(res);
2265 }
8d400b81 2266 dlm_lockres_clear_refmap_bit(dlm, res, dead_node);
ba2bf218
KH
2267 } else if (test_bit(dead_node, res->refmap)) {
2268 mlog(0, "%s:%.*s: dead node %u had a ref, but had "
2269 "no locks and had not purged before dying\n", dlm->name,
2270 res->lockname.len, res->lockname.name, dead_node);
8d400b81 2271 dlm_lockres_clear_refmap_bit(dlm, res, dead_node);
ba2bf218
KH
2272 }
2273
6714d8e8
KH
2274 /* do not kick thread yet */
2275 __dlm_dirty_lockres(dlm, res);
2276}
2277
2278/* if this node is the recovery master, and there are no
2279 * locks for a given lockres owned by this node that are in
2280 * either PR or EX mode, zero out the lvb before requesting.
2281 *
2282 */
2283
2284
2285static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node)
2286{
6714d8e8
KH
2287 struct dlm_lock_resource *res;
2288 int i;
81f2094a 2289 struct hlist_head *bucket;
e2faea4c 2290 struct dlm_lock *lock;
6714d8e8
KH
2291
2292
2293 /* purge any stale mles */
2294 dlm_clean_master_list(dlm, dead_node);
2295
2296 /*
2297 * now clean up all lock resources. there are two rules:
2298 *
2299 * 1) if the dead node was the master, move the lockres
2300 * to the recovering list. set the RECOVERING flag.
2301 * this lockres needs to be cleaned up before it can
2302 * be used further.
2303 *
2304 * 2) if this node was the master, remove all locks from
2305 * each of the lockres queues that were owned by the
2306 * dead node. once recovery finishes, the dlm thread
2307 * can be kicked again to see if any ASTs or BASTs
2308 * need to be fired as a result.
2309 */
81f2094a 2310 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
03d864c0 2311 bucket = dlm_lockres_hash(dlm, i);
b67bfe0d 2312 hlist_for_each_entry(res, bucket, hash_node) {
e2faea4c
KH
2313 /* always prune any $RECOVERY entries for dead nodes,
2314 * otherwise hangs can occur during later recovery */
6714d8e8 2315 if (dlm_is_recovery_lock(res->lockname.name,
e2faea4c
KH
2316 res->lockname.len)) {
2317 spin_lock(&res->spinlock);
2318 list_for_each_entry(lock, &res->granted, list) {
2319 if (lock->ml.node == dead_node) {
2320 mlog(0, "AHA! there was "
2321 "a $RECOVERY lock for dead "
2322 "node %u (%s)!\n",
2323 dead_node, dlm->name);
2324 list_del_init(&lock->list);
2325 dlm_lock_put(lock);
2326 break;
2327 }
2328 }
bb169b2b 2329 dlm_lockres_clear_refmap_bit(dlm, res,
2330 dead_node);
e2faea4c 2331 spin_unlock(&res->spinlock);
6714d8e8 2332 continue;
2bd63216 2333 }
6714d8e8
KH
2334 spin_lock(&res->spinlock);
2335 /* zero the lvb if necessary */
2336 dlm_revalidate_lvb(dlm, res, dead_node);
ba2bf218 2337 if (res->owner == dead_node) {
a524812b 2338 if (res->state & DLM_LOCK_RES_DROPPING_REF) {
8decab3c 2339 mlog(ML_NOTICE, "%s: res %.*s, Skip "
a524812b 2340 "recovery as it is being freed\n",
8decab3c 2341 dlm->name, res->lockname.len,
a524812b
WW
2342 res->lockname.name);
2343 } else
2344 dlm_move_lockres_to_recovery_list(dlm,
2345 res);
ba2bf218 2346
ba2bf218 2347 } else if (res->owner == dlm->node_num) {
6714d8e8
KH
2348 dlm_free_dead_locks(dlm, res, dead_node);
2349 __dlm_lockres_calc_usage(dlm, res);
2350 }
2351 spin_unlock(&res->spinlock);
2352 }
2353 }
2354
2355}
2356
2357static void __dlm_hb_node_down(struct dlm_ctxt *dlm, int idx)
2358{
2359 assert_spin_locked(&dlm->spinlock);
2360
466d1a45
KH
2361 if (dlm->reco.new_master == idx) {
2362 mlog(0, "%s: recovery master %d just died\n",
2363 dlm->name, idx);
2364 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2365 /* finalize1 was reached, so it is safe to clear
2366 * the new_master and dead_node. that recovery
2367 * is complete. */
2368 mlog(0, "%s: dead master %d had reached "
2369 "finalize1 state, clearing\n", dlm->name, idx);
2370 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
2371 __dlm_reset_recovery(dlm);
2372 }
2373 }
2374
2d4b1cbb
TM
2375 /* Clean up join state on node death. */
2376 if (dlm->joining_node == idx) {
2377 mlog(0, "Clearing join state for node %u\n", idx);
2378 __dlm_set_joining_node(dlm, DLM_LOCK_RES_OWNER_UNKNOWN);
2379 }
2380
6714d8e8
KH
2381 /* check to see if the node is already considered dead */
2382 if (!test_bit(idx, dlm->live_nodes_map)) {
2383 mlog(0, "for domain %s, node %d is already dead. "
2384 "another node likely did recovery already.\n",
2385 dlm->name, idx);
2386 return;
2387 }
2388
2389 /* check to see if we do not care about this node */
2390 if (!test_bit(idx, dlm->domain_map)) {
2391 /* This also catches the case that we get a node down
2392 * but haven't joined the domain yet. */
2393 mlog(0, "node %u already removed from domain!\n", idx);
2394 return;
2395 }
2396
2397 clear_bit(idx, dlm->live_nodes_map);
2398
6714d8e8
KH
2399 /* make sure local cleanup occurs before the heartbeat events */
2400 if (!test_bit(idx, dlm->recovery_map))
2401 dlm_do_local_recovery_cleanup(dlm, idx);
2402
2403 /* notify anything attached to the heartbeat events */
2404 dlm_hb_event_notify_attached(dlm, idx, 0);
2405
2406 mlog(0, "node %u being removed from domain map!\n", idx);
2407 clear_bit(idx, dlm->domain_map);
bddefdee 2408 clear_bit(idx, dlm->exit_domain_map);
6714d8e8
KH
2409 /* wake up migration waiters if a node goes down.
2410 * perhaps later we can genericize this for other waiters. */
2411 wake_up(&dlm->migration_wq);
2412
2413 if (test_bit(idx, dlm->recovery_map))
2414 mlog(0, "domain %s, node %u already added "
2415 "to recovery map!\n", dlm->name, idx);
2416 else
2417 set_bit(idx, dlm->recovery_map);
2418}
2419
2420void dlm_hb_node_down_cb(struct o2nm_node *node, int idx, void *data)
2421{
2422 struct dlm_ctxt *dlm = data;
2423
2424 if (!dlm_grab(dlm))
2425 return;
2426
6561168c
MF
2427 /*
2428 * This will notify any dlm users that a node in our domain
2429 * went away without notifying us first.
2430 */
2431 if (test_bit(idx, dlm->domain_map))
2432 dlm_fire_domain_eviction_callbacks(dlm, idx);
2433
6714d8e8
KH
2434 spin_lock(&dlm->spinlock);
2435 __dlm_hb_node_down(dlm, idx);
2436 spin_unlock(&dlm->spinlock);
2437
2438 dlm_put(dlm);
2439}
2440
2441void dlm_hb_node_up_cb(struct o2nm_node *node, int idx, void *data)
2442{
2443 struct dlm_ctxt *dlm = data;
2444
2445 if (!dlm_grab(dlm))
2446 return;
2447
2448 spin_lock(&dlm->spinlock);
6714d8e8 2449 set_bit(idx, dlm->live_nodes_map);
e2faea4c
KH
2450 /* do NOT notify mle attached to the heartbeat events.
2451 * new nodes are not interesting in mastery until joined. */
6714d8e8
KH
2452 spin_unlock(&dlm->spinlock);
2453
2454 dlm_put(dlm);
2455}
2456
2457static void dlm_reco_ast(void *astdata)
2458{
2459 struct dlm_ctxt *dlm = astdata;
2460 mlog(0, "ast for recovery lock fired!, this=%u, dlm=%s\n",
2461 dlm->node_num, dlm->name);
2462}
2463static void dlm_reco_bast(void *astdata, int blocked_type)
2464{
2465 struct dlm_ctxt *dlm = astdata;
2466 mlog(0, "bast for recovery lock fired!, this=%u, dlm=%s\n",
2467 dlm->node_num, dlm->name);
2468}
2469static void dlm_reco_unlock_ast(void *astdata, enum dlm_status st)
2470{
2471 mlog(0, "unlockast for recovery lock fired!\n");
2472}
2473
e2faea4c
KH
2474/*
2475 * dlm_pick_recovery_master will continually attempt to use
2476 * dlmlock() on the special "$RECOVERY" lockres with the
2477 * LKM_NOQUEUE flag to get an EX. every thread that enters
2478 * this function on each node racing to become the recovery
2479 * master will not stop attempting this until either:
2480 * a) this node gets the EX (and becomes the recovery master),
2bd63216 2481 * or b) dlm->reco.new_master gets set to some nodenum
e2faea4c
KH
2482 * != O2NM_INVALID_NODE_NUM (another node will do the reco).
2483 * so each time a recovery master is needed, the entire cluster
2484 * will sync at this point. if the new master dies, that will
2485 * be detected in dlm_do_recovery */
6714d8e8
KH
2486static int dlm_pick_recovery_master(struct dlm_ctxt *dlm)
2487{
2488 enum dlm_status ret;
2489 struct dlm_lockstatus lksb;
2490 int status = -EINVAL;
2491
2492 mlog(0, "starting recovery of %s at %lu, dead=%u, this=%u\n",
2493 dlm->name, jiffies, dlm->reco.dead_node, dlm->node_num);
2bd63216 2494again:
6714d8e8
KH
2495 memset(&lksb, 0, sizeof(lksb));
2496
2497 ret = dlmlock(dlm, LKM_EXMODE, &lksb, LKM_NOQUEUE|LKM_RECOVERY,
3384f3df
MF
2498 DLM_RECOVERY_LOCK_NAME, DLM_RECOVERY_LOCK_NAME_LEN,
2499 dlm_reco_ast, dlm, dlm_reco_bast);
6714d8e8 2500
e2faea4c
KH
2501 mlog(0, "%s: dlmlock($RECOVERY) returned %d, lksb=%d\n",
2502 dlm->name, ret, lksb.status);
2503
6714d8e8
KH
2504 if (ret == DLM_NORMAL) {
2505 mlog(0, "dlm=%s dlmlock says I got it (this=%u)\n",
2506 dlm->name, dlm->node_num);
2bd63216
SM
2507
2508 /* got the EX lock. check to see if another node
e2faea4c
KH
2509 * just became the reco master */
2510 if (dlm_reco_master_ready(dlm)) {
2511 mlog(0, "%s: got reco EX lock, but %u will "
2512 "do the recovery\n", dlm->name,
2513 dlm->reco.new_master);
2514 status = -EEXIST;
2515 } else {
898effac
KH
2516 status = 0;
2517
2518 /* see if recovery was already finished elsewhere */
2519 spin_lock(&dlm->spinlock);
2520 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
2bd63216 2521 status = -EINVAL;
898effac
KH
2522 mlog(0, "%s: got reco EX lock, but "
2523 "node got recovered already\n", dlm->name);
2524 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
2525 mlog(ML_ERROR, "%s: new master is %u "
2bd63216 2526 "but no dead node!\n",
898effac
KH
2527 dlm->name, dlm->reco.new_master);
2528 BUG();
2529 }
2530 }
2531 spin_unlock(&dlm->spinlock);
2532 }
2533
2534 /* if this node has actually become the recovery master,
2535 * set the master and send the messages to begin recovery */
2536 if (!status) {
2537 mlog(0, "%s: dead=%u, this=%u, sending "
2bd63216 2538 "begin_reco now\n", dlm->name,
898effac 2539 dlm->reco.dead_node, dlm->node_num);
e2faea4c
KH
2540 status = dlm_send_begin_reco_message(dlm,
2541 dlm->reco.dead_node);
2542 /* this always succeeds */
2543 BUG_ON(status);
2544
2545 /* set the new_master to this node */
2546 spin_lock(&dlm->spinlock);
ab27eb6f 2547 dlm_set_reco_master(dlm, dlm->node_num);
e2faea4c
KH
2548 spin_unlock(&dlm->spinlock);
2549 }
6714d8e8
KH
2550
2551 /* recovery lock is a special case. ast will not get fired,
2552 * so just go ahead and unlock it. */
2553 ret = dlmunlock(dlm, &lksb, 0, dlm_reco_unlock_ast, dlm);
e2faea4c
KH
2554 if (ret == DLM_DENIED) {
2555 mlog(0, "got DLM_DENIED, trying LKM_CANCEL\n");
2556 ret = dlmunlock(dlm, &lksb, LKM_CANCEL, dlm_reco_unlock_ast, dlm);
2557 }
6714d8e8
KH
2558 if (ret != DLM_NORMAL) {
2559 /* this would really suck. this could only happen
2560 * if there was a network error during the unlock
2561 * because of node death. this means the unlock
2562 * is actually "done" and the lock structure is
2563 * even freed. we can continue, but only
2564 * because this specific lock name is special. */
e2faea4c 2565 mlog(ML_ERROR, "dlmunlock returned %d\n", ret);
6714d8e8
KH
2566 }
2567 } else if (ret == DLM_NOTQUEUED) {
2568 mlog(0, "dlm=%s dlmlock says another node got it (this=%u)\n",
2569 dlm->name, dlm->node_num);
2570 /* another node is master. wait on
2bd63216 2571 * reco.new_master != O2NM_INVALID_NODE_NUM
e2faea4c
KH
2572 * for at most one second */
2573 wait_event_timeout(dlm->dlm_reco_thread_wq,
2574 dlm_reco_master_ready(dlm),
2575 msecs_to_jiffies(1000));
2576 if (!dlm_reco_master_ready(dlm)) {
2577 mlog(0, "%s: reco master taking awhile\n",
2578 dlm->name);
2579 goto again;
2580 }
2581 /* another node has informed this one that it is reco master */
2582 mlog(0, "%s: reco master %u is ready to recover %u\n",
2583 dlm->name, dlm->reco.new_master, dlm->reco.dead_node);
6714d8e8 2584 status = -EEXIST;
c8df412e
KH
2585 } else if (ret == DLM_RECOVERING) {
2586 mlog(0, "dlm=%s dlmlock says master node died (this=%u)\n",
2587 dlm->name, dlm->node_num);
2588 goto again;
e2faea4c
KH
2589 } else {
2590 struct dlm_lock_resource *res;
2591
2592 /* dlmlock returned something other than NOTQUEUED or NORMAL */
2593 mlog(ML_ERROR, "%s: got %s from dlmlock($RECOVERY), "
2594 "lksb.status=%s\n", dlm->name, dlm_errname(ret),
2595 dlm_errname(lksb.status));
2596 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2597 DLM_RECOVERY_LOCK_NAME_LEN);
2598 if (res) {
2599 dlm_print_one_lock_resource(res);
2600 dlm_lockres_put(res);
2601 } else {
2602 mlog(ML_ERROR, "recovery lock not found\n");
2603 }
2604 BUG();
6714d8e8
KH
2605 }
2606
2607 return status;
2608}
2609
2610static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node)
2611{
2612 struct dlm_begin_reco br;
2613 int ret = 0;
2614 struct dlm_node_iter iter;
2615 int nodenum;
2616 int status;
2617
d6dea6e9 2618 mlog(0, "%s: dead node is %u\n", dlm->name, dead_node);
6714d8e8
KH
2619
2620 spin_lock(&dlm->spinlock);
2621 dlm_node_iter_init(dlm->domain_map, &iter);
2622 spin_unlock(&dlm->spinlock);
2623
2624 clear_bit(dead_node, iter.node_map);
2625
2626 memset(&br, 0, sizeof(br));
2627 br.node_idx = dlm->node_num;
2628 br.dead_node = dead_node;
2629
2630 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2631 ret = 0;
2632 if (nodenum == dead_node) {
2633 mlog(0, "not sending begin reco to dead node "
2634 "%u\n", dead_node);
2635 continue;
2636 }
2637 if (nodenum == dlm->node_num) {
2638 mlog(0, "not sending begin reco to self\n");
2639 continue;
2640 }
e2faea4c 2641retry:
6714d8e8
KH
2642 ret = -EINVAL;
2643 mlog(0, "attempting to send begin reco msg to %d\n",
2644 nodenum);
2645 ret = o2net_send_message(DLM_BEGIN_RECO_MSG, dlm->key,
2646 &br, sizeof(br), nodenum, &status);
2647 /* negative status is handled ok by caller here */
2648 if (ret >= 0)
2649 ret = status;
e2faea4c
KH
2650 if (dlm_is_host_down(ret)) {
2651 /* node is down. not involved in recovery
2652 * so just keep going */
a5196ec5 2653 mlog(ML_NOTICE, "%s: node %u was down when sending "
e2faea4c
KH
2654 "begin reco msg (%d)\n", dlm->name, nodenum, ret);
2655 ret = 0;
2656 }
cd34edd8
SM
2657
2658 /*
2659 * Prior to commit aad1b15310b9bcd59fa81ab8f2b1513b59553ea8,
2660 * dlm_begin_reco_handler() returned EAGAIN and not -EAGAIN.
2661 * We are handling both for compatibility reasons.
2662 */
2663 if (ret == -EAGAIN || ret == EAGAIN) {
aad1b153
TY
2664 mlog(0, "%s: trying to start recovery of node "
2665 "%u, but node %u is waiting for last recovery "
2666 "to complete, backoff for a bit\n", dlm->name,
2667 dead_node, nodenum);
2668 msleep(100);
2669 goto retry;
2670 }
6714d8e8
KH
2671 if (ret < 0) {
2672 struct dlm_lock_resource *res;
a5196ec5 2673
2bd63216 2674 /* this is now a serious problem, possibly ENOMEM
e2faea4c 2675 * in the network stack. must retry */
6714d8e8
KH
2676 mlog_errno(ret);
2677 mlog(ML_ERROR, "begin reco of dlm %s to node %u "
a5196ec5 2678 "returned %d\n", dlm->name, nodenum, ret);
6714d8e8
KH
2679 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2680 DLM_RECOVERY_LOCK_NAME_LEN);
2681 if (res) {
2682 dlm_print_one_lock_resource(res);
2683 dlm_lockres_put(res);
2684 } else {
2685 mlog(ML_ERROR, "recovery lock not found\n");
2686 }
2bd63216 2687 /* sleep for a bit in hopes that we can avoid
e2faea4c
KH
2688 * another ENOMEM */
2689 msleep(100);
2690 goto retry;
6714d8e8
KH
2691 }
2692 }
2693
2694 return ret;
2695}
2696
d74c9803
KH
2697int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data,
2698 void **ret_data)
6714d8e8
KH
2699{
2700 struct dlm_ctxt *dlm = data;
2701 struct dlm_begin_reco *br = (struct dlm_begin_reco *)msg->buf;
2702
2703 /* ok to return 0, domain has gone away */
2704 if (!dlm_grab(dlm))
2705 return 0;
2706
466d1a45
KH
2707 spin_lock(&dlm->spinlock);
2708 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2709 mlog(0, "%s: node %u wants to recover node %u (%u:%u) "
2710 "but this node is in finalize state, waiting on finalize2\n",
2711 dlm->name, br->node_idx, br->dead_node,
2712 dlm->reco.dead_node, dlm->reco.new_master);
2713 spin_unlock(&dlm->spinlock);
aad1b153 2714 return -EAGAIN;
466d1a45
KH
2715 }
2716 spin_unlock(&dlm->spinlock);
2717
d6dea6e9
KH
2718 mlog(0, "%s: node %u wants to recover node %u (%u:%u)\n",
2719 dlm->name, br->node_idx, br->dead_node,
2720 dlm->reco.dead_node, dlm->reco.new_master);
6714d8e8
KH
2721
2722 dlm_fire_domain_eviction_callbacks(dlm, br->dead_node);
2723
2724 spin_lock(&dlm->spinlock);
2725 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
e2faea4c
KH
2726 if (test_bit(dlm->reco.new_master, dlm->recovery_map)) {
2727 mlog(0, "%s: new_master %u died, changing "
2728 "to %u\n", dlm->name, dlm->reco.new_master,
2729 br->node_idx);
2730 } else {
2731 mlog(0, "%s: new_master %u NOT DEAD, changing "
2732 "to %u\n", dlm->name, dlm->reco.new_master,
2733 br->node_idx);
2734 /* may not have seen the new master as dead yet */
2735 }
6714d8e8
KH
2736 }
2737 if (dlm->reco.dead_node != O2NM_INVALID_NODE_NUM) {
e2faea4c 2738 mlog(ML_NOTICE, "%s: dead_node previously set to %u, "
2bd63216 2739 "node %u changing it to %u\n", dlm->name,
e2faea4c 2740 dlm->reco.dead_node, br->node_idx, br->dead_node);
6714d8e8 2741 }
ab27eb6f
KH
2742 dlm_set_reco_master(dlm, br->node_idx);
2743 dlm_set_reco_dead_node(dlm, br->dead_node);
6714d8e8 2744 if (!test_bit(br->dead_node, dlm->recovery_map)) {
e2faea4c 2745 mlog(0, "recovery master %u sees %u as dead, but this "
6714d8e8
KH
2746 "node has not yet. marking %u as dead\n",
2747 br->node_idx, br->dead_node, br->dead_node);
e2faea4c
KH
2748 if (!test_bit(br->dead_node, dlm->domain_map) ||
2749 !test_bit(br->dead_node, dlm->live_nodes_map))
2750 mlog(0, "%u not in domain/live_nodes map "
2751 "so setting it in reco map manually\n",
2752 br->dead_node);
c03872f5
KH
2753 /* force the recovery cleanup in __dlm_hb_node_down
2754 * both of these will be cleared in a moment */
2755 set_bit(br->dead_node, dlm->domain_map);
2756 set_bit(br->dead_node, dlm->live_nodes_map);
6714d8e8
KH
2757 __dlm_hb_node_down(dlm, br->dead_node);
2758 }
2759 spin_unlock(&dlm->spinlock);
2760
2761 dlm_kick_recovery_thread(dlm);
d6dea6e9
KH
2762
2763 mlog(0, "%s: recovery started by node %u, for %u (%u:%u)\n",
2764 dlm->name, br->node_idx, br->dead_node,
2765 dlm->reco.dead_node, dlm->reco.new_master);
2766
6714d8e8
KH
2767 dlm_put(dlm);
2768 return 0;
2769}
2770
466d1a45 2771#define DLM_FINALIZE_STAGE2 0x01
6714d8e8
KH
2772static int dlm_send_finalize_reco_message(struct dlm_ctxt *dlm)
2773{
2774 int ret = 0;
2775 struct dlm_finalize_reco fr;
2776 struct dlm_node_iter iter;
2777 int nodenum;
2778 int status;
466d1a45 2779 int stage = 1;
6714d8e8 2780
466d1a45
KH
2781 mlog(0, "finishing recovery for node %s:%u, "
2782 "stage %d\n", dlm->name, dlm->reco.dead_node, stage);
6714d8e8
KH
2783
2784 spin_lock(&dlm->spinlock);
2785 dlm_node_iter_init(dlm->domain_map, &iter);
2786 spin_unlock(&dlm->spinlock);
2787
466d1a45 2788stage2:
6714d8e8
KH
2789 memset(&fr, 0, sizeof(fr));
2790 fr.node_idx = dlm->node_num;
2791 fr.dead_node = dlm->reco.dead_node;
466d1a45
KH
2792 if (stage == 2)
2793 fr.flags |= DLM_FINALIZE_STAGE2;
6714d8e8
KH
2794
2795 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2796 if (nodenum == dlm->node_num)
2797 continue;
2798 ret = o2net_send_message(DLM_FINALIZE_RECO_MSG, dlm->key,
2799 &fr, sizeof(fr), nodenum, &status);
466d1a45 2800 if (ret >= 0)
6714d8e8 2801 ret = status;
466d1a45 2802 if (ret < 0) {
a5196ec5
WW
2803 mlog(ML_ERROR, "Error %d when sending message %u (key "
2804 "0x%x) to node %u\n", ret, DLM_FINALIZE_RECO_MSG,
2805 dlm->key, nodenum);
6714d8e8 2806 if (dlm_is_host_down(ret)) {
2bd63216
SM
2807 /* this has no effect on this recovery
2808 * session, so set the status to zero to
6714d8e8
KH
2809 * finish out the last recovery */
2810 mlog(ML_ERROR, "node %u went down after this "
2811 "node finished recovery.\n", nodenum);
2812 ret = 0;
c27069e6 2813 continue;
6714d8e8 2814 }
6714d8e8
KH
2815 break;
2816 }
2817 }
466d1a45
KH
2818 if (stage == 1) {
2819 /* reset the node_iter back to the top and send finalize2 */
2820 iter.curnode = -1;
2821 stage = 2;
2822 goto stage2;
2823 }
6714d8e8
KH
2824
2825 return ret;
2826}
2827
d74c9803
KH
2828int dlm_finalize_reco_handler(struct o2net_msg *msg, u32 len, void *data,
2829 void **ret_data)
6714d8e8
KH
2830{
2831 struct dlm_ctxt *dlm = data;
2832 struct dlm_finalize_reco *fr = (struct dlm_finalize_reco *)msg->buf;
466d1a45 2833 int stage = 1;
6714d8e8
KH
2834
2835 /* ok to return 0, domain has gone away */
2836 if (!dlm_grab(dlm))
2837 return 0;
2838
466d1a45
KH
2839 if (fr->flags & DLM_FINALIZE_STAGE2)
2840 stage = 2;
6714d8e8 2841
466d1a45
KH
2842 mlog(0, "%s: node %u finalizing recovery stage%d of "
2843 "node %u (%u:%u)\n", dlm->name, fr->node_idx, stage,
2844 fr->dead_node, dlm->reco.dead_node, dlm->reco.new_master);
2bd63216 2845
6714d8e8
KH
2846 spin_lock(&dlm->spinlock);
2847
2848 if (dlm->reco.new_master != fr->node_idx) {
2849 mlog(ML_ERROR, "node %u sent recovery finalize msg, but node "
2850 "%u is supposed to be the new master, dead=%u\n",
2851 fr->node_idx, dlm->reco.new_master, fr->dead_node);
2852 BUG();
2853 }
2854 if (dlm->reco.dead_node != fr->dead_node) {
2855 mlog(ML_ERROR, "node %u sent recovery finalize msg for dead "
2856 "node %u, but node %u is supposed to be dead\n",
2857 fr->node_idx, fr->dead_node, dlm->reco.dead_node);
2858 BUG();
2859 }
2860
466d1a45
KH
2861 switch (stage) {
2862 case 1:
2863 dlm_finish_local_lockres_recovery(dlm, fr->dead_node, fr->node_idx);
2864 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2865 mlog(ML_ERROR, "%s: received finalize1 from "
2866 "new master %u for dead node %u, but "
2867 "this node has already received it!\n",
2868 dlm->name, fr->node_idx, fr->dead_node);
2869 dlm_print_reco_node_status(dlm);
2870 BUG();
2871 }
2872 dlm->reco.state |= DLM_RECO_STATE_FINALIZE;
2873 spin_unlock(&dlm->spinlock);
2874 break;
2875 case 2:
2876 if (!(dlm->reco.state & DLM_RECO_STATE_FINALIZE)) {
2877 mlog(ML_ERROR, "%s: received finalize2 from "
2878 "new master %u for dead node %u, but "
2879 "this node did not have finalize1!\n",
2880 dlm->name, fr->node_idx, fr->dead_node);
2881 dlm_print_reco_node_status(dlm);
2882 BUG();
2883 }
2884 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
a093bced 2885 __dlm_reset_recovery(dlm);
466d1a45 2886 spin_unlock(&dlm->spinlock);
466d1a45
KH
2887 dlm_kick_recovery_thread(dlm);
2888 break;
2889 default:
2890 BUG();
2891 }
6714d8e8 2892
d6dea6e9
KH
2893 mlog(0, "%s: recovery done, reco master was %u, dead now %u, master now %u\n",
2894 dlm->name, fr->node_idx, dlm->reco.dead_node, dlm->reco.new_master);
2895
6714d8e8
KH
2896 dlm_put(dlm);
2897 return 0;
2898}