blob: 9d67894cda6d002e278c3413f552959bdd8c9560 [file] [log] [blame]
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001/* -*- 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>
Kurt Hackel6714d8e2005-12-15 14:31:23 -080033#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>
Adrian Bunkb4c7f532006-01-14 20:55:10 +010041#include <linux/delay.h>
Kurt Hackel6714d8e2005-12-15 14:31:23 -080042
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);
Kurt Hackelc03872f2006-03-06 14:08:49 -080060void dlm_kick_recovery_thread(struct dlm_ctxt *dlm);
Kurt Hackel6714d8e2005-12-15 14:31:23 -080061static 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);
Kurt Hackel6714d8e2005-12-15 14:31:23 -080080static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
81 struct dlm_lock_resource *res,
82 struct dlm_migratable_lockres *mres);
Kurt Hackel6714d8e2005-12-15 14:31:23 -080083static 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);
Adrian Bunk8169cae2006-03-31 16:53:55 +020097static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
98 struct dlm_lock_resource *res,
99 u8 *real_master);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800100
101static u64 dlm_get_next_mig_cookie(void);
102
Ingo Molnar34af9462006-06-27 02:53:55 -0700103static DEFINE_SPINLOCK(dlm_reco_state_lock);
104static DEFINE_SPINLOCK(dlm_mig_cookie_lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800105static 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
Kurt Hackelab27eb62006-04-27 18:03:49 -0700120static 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
Kurt Hackel466d1a42006-05-01 11:11:13 -0700139static inline void __dlm_reset_recovery(struct dlm_ctxt *dlm)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800140{
Kurt Hackel466d1a42006-05-01 11:11:13 -0700141 assert_spin_locked(&dlm->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800142 clear_bit(dlm->reco.dead_node, dlm->recovery_map);
Kurt Hackelab27eb62006-04-27 18:03:49 -0700143 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
144 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
Kurt Hackel466d1a42006-05-01 11:11:13 -0700145}
146
147static inline void dlm_reset_recovery(struct dlm_ctxt *dlm)
148{
149 spin_lock(&dlm->spinlock);
150 __dlm_reset_recovery(dlm);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800151 spin_unlock(&dlm->spinlock);
152}
153
154/* Worker function used during recovery. */
David Howellsc4028952006-11-22 14:57:56 +0000155void dlm_dispatch_work(struct work_struct *work)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800156{
David Howellsc4028952006-11-22 14:57:56 +0000157 struct dlm_ctxt *dlm =
158 container_of(work, struct dlm_ctxt, dispatched_work);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800159 LIST_HEAD(tmp_list);
Christoph Hellwig800deef2007-05-17 16:03:13 +0200160 struct dlm_work_item *item, *next;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800161 dlm_workfunc_t *workfunc;
Kurt Hackel3156d262006-05-01 14:39:29 -0700162 int tot=0;
163
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800164 spin_lock(&dlm->work_lock);
165 list_splice_init(&dlm->work_list, &tmp_list);
166 spin_unlock(&dlm->work_lock);
167
Christoph Hellwig800deef2007-05-17 16:03:13 +0200168 list_for_each_entry(item, &tmp_list, list) {
Kurt Hackel3156d262006-05-01 14:39:29 -0700169 tot++;
170 }
171 mlog(0, "%s: work thread has %d work items\n", dlm->name, tot);
172
Christoph Hellwig800deef2007-05-17 16:03:13 +0200173 list_for_each_entry_safe(item, next, &tmp_list, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800174 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
Kurt Hackelc03872f2006-03-06 14:08:49 -0800194void dlm_kick_recovery_thread(struct dlm_ctxt *dlm)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800195{
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
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700255static 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",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700261 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700262 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}
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800301
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()) {
313 if (dlm_joined(dlm)) {
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
Kurt Hackele2faea42006-01-12 14:24:55 -0800332/* 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);
Kurt Hackelaba9aac2006-04-27 18:00:21 -0700348 dead = !test_bit(node, dlm->domain_map);
Kurt Hackele2faea42006-01-12 14:24:55 -0800349 spin_unlock(&dlm->spinlock);
350 return dead;
351}
352
Kurt Hackelb7084ab2006-05-01 13:54:07 -0700353/* returns true if node is no longer in the domain
354 * could be dead or just not joined */
Adrian Bunk3fb5a982006-05-16 17:26:41 +0200355static int dlm_is_node_recovered(struct dlm_ctxt *dlm, u8 node)
Kurt Hackelb7084ab2006-05-01 13:54:07 -0700356{
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
Kurt Hackel44465a72006-01-18 17:05:38 -0800365int dlm_wait_for_node_death(struct dlm_ctxt *dlm, u8 node, int timeout)
366{
367 if (timeout) {
368 mlog(ML_NOTICE, "%s: waiting %dms for notification of "
369 "death of node %u\n", dlm->name, timeout, node);
370 wait_event_timeout(dlm->dlm_reco_thread_wq,
371 dlm_is_node_dead(dlm, node),
372 msecs_to_jiffies(timeout));
373 } else {
374 mlog(ML_NOTICE, "%s: waiting indefinitely for notification "
375 "of death of node %u\n", dlm->name, node);
376 wait_event(dlm->dlm_reco_thread_wq,
377 dlm_is_node_dead(dlm, node));
378 }
379 /* for now, return 0 */
380 return 0;
381}
382
Kurt Hackelb7084ab2006-05-01 13:54:07 -0700383int dlm_wait_for_node_recovery(struct dlm_ctxt *dlm, u8 node, int timeout)
384{
385 if (timeout) {
386 mlog(0, "%s: waiting %dms for notification of "
387 "recovery of node %u\n", dlm->name, timeout, node);
388 wait_event_timeout(dlm->dlm_reco_thread_wq,
389 dlm_is_node_recovered(dlm, node),
390 msecs_to_jiffies(timeout));
391 } else {
392 mlog(0, "%s: waiting indefinitely for notification "
393 "of recovery of node %u\n", dlm->name, node);
394 wait_event(dlm->dlm_reco_thread_wq,
395 dlm_is_node_recovered(dlm, node));
396 }
397 /* for now, return 0 */
398 return 0;
399}
400
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800401/* callers of the top-level api calls (dlmlock/dlmunlock) should
402 * block on the dlm->reco.event when recovery is in progress.
403 * the dlm recovery thread will set this state when it begins
404 * recovering a dead node (as the new master or not) and clear
405 * the state and wake as soon as all affected lock resources have
406 * been marked with the RECOVERY flag */
407static int dlm_in_recovery(struct dlm_ctxt *dlm)
408{
409 int in_recovery;
410 spin_lock(&dlm->spinlock);
411 in_recovery = !!(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
412 spin_unlock(&dlm->spinlock);
413 return in_recovery;
414}
415
416
417void dlm_wait_for_recovery(struct dlm_ctxt *dlm)
418{
Kurt Hackel56a7c102006-05-01 14:30:39 -0700419 if (dlm_in_recovery(dlm)) {
Kurt Hackel3b3b84a2006-05-01 14:31:37 -0700420 mlog(0, "%s: reco thread %d in recovery: "
Kurt Hackel56a7c102006-05-01 14:30:39 -0700421 "state=%d, master=%u, dead=%u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700422 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
Kurt Hackel56a7c102006-05-01 14:30:39 -0700423 dlm->reco.state, dlm->reco.new_master,
424 dlm->reco.dead_node);
425 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800426 wait_event(dlm->reco.event, !dlm_in_recovery(dlm));
427}
428
429static void dlm_begin_recovery(struct dlm_ctxt *dlm)
430{
431 spin_lock(&dlm->spinlock);
432 BUG_ON(dlm->reco.state & DLM_RECO_STATE_ACTIVE);
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);
443 wake_up(&dlm->reco.event);
444}
445
446static int dlm_do_recovery(struct dlm_ctxt *dlm)
447{
448 int status = 0;
Kurt Hackele2faea42006-01-12 14:24:55 -0800449 int ret;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800450
451 spin_lock(&dlm->spinlock);
452
453 /* check to see if the new master has died */
454 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM &&
455 test_bit(dlm->reco.new_master, dlm->recovery_map)) {
456 mlog(0, "new master %u died while recovering %u!\n",
457 dlm->reco.new_master, dlm->reco.dead_node);
458 /* unset the new_master, leave dead_node */
Kurt Hackelab27eb62006-04-27 18:03:49 -0700459 dlm_set_reco_master(dlm, O2NM_INVALID_NODE_NUM);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800460 }
461
462 /* select a target to recover */
463 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
464 int bit;
465
466 bit = find_next_bit (dlm->recovery_map, O2NM_MAX_NODES+1, 0);
467 if (bit >= O2NM_MAX_NODES || bit < 0)
Kurt Hackelab27eb62006-04-27 18:03:49 -0700468 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800469 else
Kurt Hackelab27eb62006-04-27 18:03:49 -0700470 dlm_set_reco_dead_node(dlm, bit);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800471 } else if (!test_bit(dlm->reco.dead_node, dlm->recovery_map)) {
472 /* BUG? */
473 mlog(ML_ERROR, "dead_node %u no longer in recovery map!\n",
474 dlm->reco.dead_node);
Kurt Hackelab27eb62006-04-27 18:03:49 -0700475 dlm_set_reco_dead_node(dlm, O2NM_INVALID_NODE_NUM);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800476 }
477
478 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
479 // mlog(0, "nothing to recover! sleeping now!\n");
480 spin_unlock(&dlm->spinlock);
481 /* return to main thread loop and sleep. */
482 return 0;
483 }
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700484 mlog(0, "%s(%d):recovery thread found node %u in the recovery map!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700485 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task),
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800486 dlm->reco.dead_node);
487 spin_unlock(&dlm->spinlock);
488
489 /* take write barrier */
490 /* (stops the list reshuffling thread, proxy ast handling) */
491 dlm_begin_recovery(dlm);
492
493 if (dlm->reco.new_master == dlm->node_num)
494 goto master_here;
495
496 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
Kurt Hackele2faea42006-01-12 14:24:55 -0800497 /* choose a new master, returns 0 if this node
498 * is the master, -EEXIST if it's another node.
499 * this does not return until a new master is chosen
500 * or recovery completes entirely. */
501 ret = dlm_pick_recovery_master(dlm);
502 if (!ret) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800503 /* already notified everyone. go. */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800504 goto master_here;
505 }
506 mlog(0, "another node will master this recovery session.\n");
507 }
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700508 mlog(0, "dlm=%s (%d), new_master=%u, this node=%u, dead_node=%u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700509 dlm->name, task_pid_nr(dlm->dlm_reco_thread_task), dlm->reco.new_master,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800510 dlm->node_num, dlm->reco.dead_node);
511
512 /* it is safe to start everything back up here
513 * because all of the dead node's lock resources
514 * have been marked as in-recovery */
515 dlm_end_recovery(dlm);
516
517 /* sleep out in main dlm_recovery_thread loop. */
518 return 0;
519
520master_here:
Sunil Mushran535f7022008-03-01 14:04:24 -0800521 mlog(ML_NOTICE, "(%d) Node %u is the Recovery Master for the Dead Node "
522 "%u for Domain %s\n", task_pid_nr(dlm->dlm_reco_thread_task),
523 dlm->node_num, dlm->reco.dead_node, dlm->name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800524
525 status = dlm_remaster_locks(dlm, dlm->reco.dead_node);
526 if (status < 0) {
Kurt Hackel6a413212006-05-01 13:49:20 -0700527 /* we should never hit this anymore */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800528 mlog(ML_ERROR, "error %d remastering locks for node %u, "
529 "retrying.\n", status, dlm->reco.dead_node);
Kurt Hackele2faea42006-01-12 14:24:55 -0800530 /* yield a bit to allow any final network messages
531 * to get handled on remaining nodes */
532 msleep(100);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800533 } else {
534 /* success! see if any other nodes need recovery */
Kurt Hackele2faea42006-01-12 14:24:55 -0800535 mlog(0, "DONE mastering recovery of %s:%u here(this=%u)!\n",
536 dlm->name, dlm->reco.dead_node, dlm->node_num);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800537 dlm_reset_recovery(dlm);
538 }
539 dlm_end_recovery(dlm);
540
541 /* continue and look for another dead node */
542 return -EAGAIN;
543}
544
545static int dlm_remaster_locks(struct dlm_ctxt *dlm, u8 dead_node)
546{
547 int status = 0;
548 struct dlm_reco_node_data *ndata;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800549 int all_nodes_done;
550 int destroy = 0;
551 int pass = 0;
552
Kurt Hackel6a413212006-05-01 13:49:20 -0700553 do {
554 /* we have become recovery master. there is no escaping
555 * this, so just keep trying until we get it. */
556 status = dlm_init_recovery_area(dlm, dead_node);
557 if (status < 0) {
558 mlog(ML_ERROR, "%s: failed to alloc recovery area, "
559 "retrying\n", dlm->name);
560 msleep(1000);
561 }
562 } while (status != 0);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800563
564 /* safe to access the node data list without a lock, since this
565 * process is the only one to change the list */
Christoph Hellwig800deef2007-05-17 16:03:13 +0200566 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800567 BUG_ON(ndata->state != DLM_RECO_NODE_DATA_INIT);
568 ndata->state = DLM_RECO_NODE_DATA_REQUESTING;
569
570 mlog(0, "requesting lock info from node %u\n",
571 ndata->node_num);
572
573 if (ndata->node_num == dlm->node_num) {
574 ndata->state = DLM_RECO_NODE_DATA_DONE;
575 continue;
576 }
577
Kurt Hackel6a413212006-05-01 13:49:20 -0700578 do {
579 status = dlm_request_all_locks(dlm, ndata->node_num,
580 dead_node);
581 if (status < 0) {
582 mlog_errno(status);
583 if (dlm_is_host_down(status)) {
584 /* node died, ignore it for recovery */
585 status = 0;
586 ndata->state = DLM_RECO_NODE_DATA_DEAD;
587 /* wait for the domain map to catch up
588 * with the network state. */
589 wait_event_timeout(dlm->dlm_reco_thread_wq,
590 dlm_is_node_dead(dlm,
591 ndata->node_num),
592 msecs_to_jiffies(1000));
593 mlog(0, "waited 1 sec for %u, "
594 "dead? %s\n", ndata->node_num,
595 dlm_is_node_dead(dlm, ndata->node_num) ?
596 "yes" : "no");
597 } else {
598 /* -ENOMEM on the other node */
599 mlog(0, "%s: node %u returned "
600 "%d during recovery, retrying "
601 "after a short wait\n",
602 dlm->name, ndata->node_num,
603 status);
604 msleep(100);
605 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800606 }
Kurt Hackel6a413212006-05-01 13:49:20 -0700607 } while (status != 0);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800608
Srinivas Eeda756a1502007-04-17 13:26:33 -0700609 spin_lock(&dlm_reco_state_lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800610 switch (ndata->state) {
611 case DLM_RECO_NODE_DATA_INIT:
612 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
613 case DLM_RECO_NODE_DATA_REQUESTED:
614 BUG();
615 break;
616 case DLM_RECO_NODE_DATA_DEAD:
617 mlog(0, "node %u died after requesting "
618 "recovery info for node %u\n",
619 ndata->node_num, dead_node);
Kurt Hackel6a413212006-05-01 13:49:20 -0700620 /* fine. don't need this node's info.
621 * continue without it. */
622 break;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800623 case DLM_RECO_NODE_DATA_REQUESTING:
624 ndata->state = DLM_RECO_NODE_DATA_REQUESTED;
625 mlog(0, "now receiving recovery data from "
626 "node %u for dead node %u\n",
627 ndata->node_num, dead_node);
628 break;
629 case DLM_RECO_NODE_DATA_RECEIVING:
630 mlog(0, "already receiving recovery data from "
631 "node %u for dead node %u\n",
632 ndata->node_num, dead_node);
633 break;
634 case DLM_RECO_NODE_DATA_DONE:
635 mlog(0, "already DONE receiving recovery data "
636 "from node %u for dead node %u\n",
637 ndata->node_num, dead_node);
638 break;
639 }
Srinivas Eeda756a1502007-04-17 13:26:33 -0700640 spin_unlock(&dlm_reco_state_lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800641 }
642
643 mlog(0, "done requesting all lock info\n");
644
645 /* nodes should be sending reco data now
646 * just need to wait */
647
648 while (1) {
649 /* check all the nodes now to see if we are
650 * done, or if anyone died */
651 all_nodes_done = 1;
652 spin_lock(&dlm_reco_state_lock);
Christoph Hellwig800deef2007-05-17 16:03:13 +0200653 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800654 mlog(0, "checking recovery state of node %u\n",
655 ndata->node_num);
656 switch (ndata->state) {
657 case DLM_RECO_NODE_DATA_INIT:
658 case DLM_RECO_NODE_DATA_REQUESTING:
659 mlog(ML_ERROR, "bad ndata state for "
660 "node %u: state=%d\n",
661 ndata->node_num, ndata->state);
662 BUG();
663 break;
664 case DLM_RECO_NODE_DATA_DEAD:
Kurt Hackel6a413212006-05-01 13:49:20 -0700665 mlog(0, "node %u died after "
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800666 "requesting recovery info for "
667 "node %u\n", ndata->node_num,
668 dead_node);
Kurt Hackel6a413212006-05-01 13:49:20 -0700669 break;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800670 case DLM_RECO_NODE_DATA_RECEIVING:
671 case DLM_RECO_NODE_DATA_REQUESTED:
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700672 mlog(0, "%s: node %u still in state %s\n",
673 dlm->name, ndata->node_num,
674 ndata->state==DLM_RECO_NODE_DATA_RECEIVING ?
675 "receiving" : "requested");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800676 all_nodes_done = 0;
677 break;
678 case DLM_RECO_NODE_DATA_DONE:
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700679 mlog(0, "%s: node %u state is done\n",
680 dlm->name, ndata->node_num);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800681 break;
682 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700683 mlog(0, "%s: node %u state is finalize\n",
684 dlm->name, ndata->node_num);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800685 break;
686 }
687 }
688 spin_unlock(&dlm_reco_state_lock);
689
690 mlog(0, "pass #%d, all_nodes_done?: %s\n", ++pass,
691 all_nodes_done?"yes":"no");
692 if (all_nodes_done) {
693 int ret;
694
695 /* all nodes are now in DLM_RECO_NODE_DATA_DONE state
696 * just send a finalize message to everyone and
697 * clean up */
698 mlog(0, "all nodes are done! send finalize\n");
699 ret = dlm_send_finalize_reco_message(dlm);
700 if (ret < 0)
701 mlog_errno(ret);
702
703 spin_lock(&dlm->spinlock);
704 dlm_finish_local_lockres_recovery(dlm, dead_node,
705 dlm->node_num);
706 spin_unlock(&dlm->spinlock);
707 mlog(0, "should be done with recovery!\n");
708
709 mlog(0, "finishing recovery of %s at %lu, "
710 "dead=%u, this=%u, new=%u\n", dlm->name,
711 jiffies, dlm->reco.dead_node,
712 dlm->node_num, dlm->reco.new_master);
713 destroy = 1;
Kurt Hackel6a413212006-05-01 13:49:20 -0700714 status = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800715 /* rescan everything marked dirty along the way */
716 dlm_kick_thread(dlm, NULL);
717 break;
718 }
719 /* wait to be signalled, with periodic timeout
720 * to check for node death */
721 wait_event_interruptible_timeout(dlm->dlm_reco_thread_wq,
722 kthread_should_stop(),
723 msecs_to_jiffies(DLM_RECO_THREAD_TIMEOUT_MS));
724
725 }
726
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800727 if (destroy)
728 dlm_destroy_recovery_area(dlm, dead_node);
729
730 mlog_exit(status);
731 return status;
732}
733
734static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
735{
736 int num=0;
737 struct dlm_reco_node_data *ndata;
738
739 spin_lock(&dlm->spinlock);
740 memcpy(dlm->reco.node_map, dlm->domain_map, sizeof(dlm->domain_map));
741 /* nodes can only be removed (by dying) after dropping
742 * this lock, and death will be trapped later, so this should do */
743 spin_unlock(&dlm->spinlock);
744
745 while (1) {
746 num = find_next_bit (dlm->reco.node_map, O2NM_MAX_NODES, num);
747 if (num >= O2NM_MAX_NODES) {
748 break;
749 }
750 BUG_ON(num == dead_node);
751
Robert P. J. Daycd861282006-12-13 00:34:52 -0800752 ndata = kzalloc(sizeof(*ndata), GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800753 if (!ndata) {
754 dlm_destroy_recovery_area(dlm, dead_node);
755 return -ENOMEM;
756 }
757 ndata->node_num = num;
758 ndata->state = DLM_RECO_NODE_DATA_INIT;
759 spin_lock(&dlm_reco_state_lock);
760 list_add_tail(&ndata->list, &dlm->reco.node_data);
761 spin_unlock(&dlm_reco_state_lock);
762 num++;
763 }
764
765 return 0;
766}
767
768static void dlm_destroy_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
769{
Christoph Hellwig800deef2007-05-17 16:03:13 +0200770 struct dlm_reco_node_data *ndata, *next;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800771 LIST_HEAD(tmplist);
772
773 spin_lock(&dlm_reco_state_lock);
774 list_splice_init(&dlm->reco.node_data, &tmplist);
775 spin_unlock(&dlm_reco_state_lock);
776
Christoph Hellwig800deef2007-05-17 16:03:13 +0200777 list_for_each_entry_safe(ndata, next, &tmplist, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800778 list_del_init(&ndata->list);
779 kfree(ndata);
780 }
781}
782
783static int dlm_request_all_locks(struct dlm_ctxt *dlm, u8 request_from,
784 u8 dead_node)
785{
786 struct dlm_lock_request lr;
787 enum dlm_status ret;
788
789 mlog(0, "\n");
790
791
792 mlog(0, "dlm_request_all_locks: dead node is %u, sending request "
793 "to %u\n", dead_node, request_from);
794
795 memset(&lr, 0, sizeof(lr));
796 lr.node_idx = dlm->node_num;
797 lr.dead_node = dead_node;
798
799 // send message
800 ret = DLM_NOLOCKMGR;
801 ret = o2net_send_message(DLM_LOCK_REQUEST_MSG, dlm->key,
802 &lr, sizeof(lr), request_from, NULL);
803
804 /* negative status is handled by caller */
805 if (ret < 0)
806 mlog_errno(ret);
807
808 // return from here, then
809 // sleep until all received or error
810 return ret;
811
812}
813
Kurt Hackeld74c9802007-01-17 17:04:25 -0800814int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data,
815 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800816{
817 struct dlm_ctxt *dlm = data;
818 struct dlm_lock_request *lr = (struct dlm_lock_request *)msg->buf;
819 char *buf = NULL;
820 struct dlm_work_item *item = NULL;
821
822 if (!dlm_grab(dlm))
823 return -EINVAL;
824
Kurt Hackelc3187ce2006-04-27 18:05:41 -0700825 if (lr->dead_node != dlm->reco.dead_node) {
826 mlog(ML_ERROR, "%s: node %u sent dead_node=%u, but local "
827 "dead_node is %u\n", dlm->name, lr->node_idx,
828 lr->dead_node, dlm->reco.dead_node);
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700829 dlm_print_reco_node_status(dlm);
Kurt Hackelc3187ce2006-04-27 18:05:41 -0700830 /* this is a hack */
831 dlm_put(dlm);
832 return -ENOMEM;
833 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800834 BUG_ON(lr->dead_node != dlm->reco.dead_node);
835
Robert P. J. Daycd861282006-12-13 00:34:52 -0800836 item = kzalloc(sizeof(*item), GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800837 if (!item) {
838 dlm_put(dlm);
839 return -ENOMEM;
840 }
841
842 /* this will get freed by dlm_request_all_locks_worker */
Kurt Hackelad8100e2006-05-01 14:25:21 -0700843 buf = (char *) __get_free_page(GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800844 if (!buf) {
845 kfree(item);
846 dlm_put(dlm);
847 return -ENOMEM;
848 }
849
850 /* queue up work for dlm_request_all_locks_worker */
851 dlm_grab(dlm); /* get an extra ref for the work item */
852 dlm_init_work_item(dlm, item, dlm_request_all_locks_worker, buf);
853 item->u.ral.reco_master = lr->node_idx;
854 item->u.ral.dead_node = lr->dead_node;
855 spin_lock(&dlm->work_lock);
856 list_add_tail(&item->list, &dlm->work_list);
857 spin_unlock(&dlm->work_lock);
Kurt Hackel3156d262006-05-01 14:39:29 -0700858 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800859
860 dlm_put(dlm);
861 return 0;
862}
863
864static void dlm_request_all_locks_worker(struct dlm_work_item *item, void *data)
865{
866 struct dlm_migratable_lockres *mres;
867 struct dlm_lock_resource *res;
868 struct dlm_ctxt *dlm;
869 LIST_HEAD(resources);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800870 int ret;
871 u8 dead_node, reco_master;
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700872 int skip_all_done = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800873
874 dlm = item->dlm;
875 dead_node = item->u.ral.dead_node;
876 reco_master = item->u.ral.reco_master;
Kurt Hackele2faea42006-01-12 14:24:55 -0800877 mres = (struct dlm_migratable_lockres *)data;
878
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700879 mlog(0, "%s: recovery worker started, dead=%u, master=%u\n",
880 dlm->name, dead_node, reco_master);
881
Kurt Hackele2faea42006-01-12 14:24:55 -0800882 if (dead_node != dlm->reco.dead_node ||
883 reco_master != dlm->reco.new_master) {
Kurt Hackel6a413212006-05-01 13:49:20 -0700884 /* worker could have been created before the recovery master
885 * died. if so, do not continue, but do not error. */
886 if (dlm->reco.new_master == O2NM_INVALID_NODE_NUM) {
887 mlog(ML_NOTICE, "%s: will not send recovery state, "
888 "recovery master %u died, thread=(dead=%u,mas=%u)"
889 " current=(dead=%u,mas=%u)\n", dlm->name,
890 reco_master, dead_node, reco_master,
891 dlm->reco.dead_node, dlm->reco.new_master);
892 } else {
893 mlog(ML_NOTICE, "%s: reco state invalid: reco(dead=%u, "
894 "master=%u), request(dead=%u, master=%u)\n",
895 dlm->name, dlm->reco.dead_node,
896 dlm->reco.new_master, dead_node, reco_master);
897 }
898 goto leave;
Kurt Hackele2faea42006-01-12 14:24:55 -0800899 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800900
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800901 /* lock resources should have already been moved to the
902 * dlm->reco.resources list. now move items from that list
903 * to a temp list if the dead owner matches. note that the
904 * whole cluster recovers only one node at a time, so we
905 * can safely move UNKNOWN lock resources for each recovery
906 * session. */
907 dlm_move_reco_locks_to_list(dlm, &resources, dead_node);
908
909 /* now we can begin blasting lockreses without the dlm lock */
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700910
911 /* any errors returned will be due to the new_master dying,
912 * the dlm_reco_thread should detect this */
Christoph Hellwig800deef2007-05-17 16:03:13 +0200913 list_for_each_entry(res, &resources, recovering) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800914 ret = dlm_send_one_lockres(dlm, res, mres, reco_master,
915 DLM_MRES_RECOVERY);
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700916 if (ret < 0) {
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700917 mlog(ML_ERROR, "%s: node %u went down while sending "
918 "recovery state for dead node %u, ret=%d\n", dlm->name,
919 reco_master, dead_node, ret);
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700920 skip_all_done = 1;
921 break;
922 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800923 }
924
925 /* move the resources back to the list */
926 spin_lock(&dlm->spinlock);
927 list_splice_init(&resources, &dlm->reco.resources);
928 spin_unlock(&dlm->spinlock);
929
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700930 if (!skip_all_done) {
931 ret = dlm_send_all_done_msg(dlm, dead_node, reco_master);
932 if (ret < 0) {
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700933 mlog(ML_ERROR, "%s: node %u went down while sending "
934 "recovery all-done for dead node %u, ret=%d\n",
935 dlm->name, reco_master, dead_node, ret);
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700936 }
937 }
Kurt Hackel6a413212006-05-01 13:49:20 -0700938leave:
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800939 free_page((unsigned long)data);
940}
941
942
943static int dlm_send_all_done_msg(struct dlm_ctxt *dlm, u8 dead_node, u8 send_to)
944{
945 int ret, tmpret;
946 struct dlm_reco_data_done done_msg;
947
948 memset(&done_msg, 0, sizeof(done_msg));
949 done_msg.node_idx = dlm->node_num;
950 done_msg.dead_node = dead_node;
951 mlog(0, "sending DATA DONE message to %u, "
952 "my node=%u, dead node=%u\n", send_to, done_msg.node_idx,
953 done_msg.dead_node);
954
955 ret = o2net_send_message(DLM_RECO_DATA_DONE_MSG, dlm->key, &done_msg,
956 sizeof(done_msg), send_to, &tmpret);
Kurt Hackel29c0fa02006-04-27 18:06:58 -0700957 if (ret < 0) {
958 if (!dlm_is_host_down(ret)) {
959 mlog_errno(ret);
960 mlog(ML_ERROR, "%s: unknown error sending data-done "
961 "to %u\n", dlm->name, send_to);
962 BUG();
963 }
964 } else
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800965 ret = tmpret;
966 return ret;
967}
968
969
Kurt Hackeld74c9802007-01-17 17:04:25 -0800970int dlm_reco_data_done_handler(struct o2net_msg *msg, u32 len, void *data,
971 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800972{
973 struct dlm_ctxt *dlm = data;
974 struct dlm_reco_data_done *done = (struct dlm_reco_data_done *)msg->buf;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800975 struct dlm_reco_node_data *ndata = NULL;
976 int ret = -EINVAL;
977
978 if (!dlm_grab(dlm))
979 return -EINVAL;
980
981 mlog(0, "got DATA DONE: dead_node=%u, reco.dead_node=%u, "
982 "node_idx=%u, this node=%u\n", done->dead_node,
983 dlm->reco.dead_node, done->node_idx, dlm->node_num);
Kurt Hackeld6dea6e2006-04-27 18:08:51 -0700984
985 mlog_bug_on_msg((done->dead_node != dlm->reco.dead_node),
986 "Got DATA DONE: dead_node=%u, reco.dead_node=%u, "
987 "node_idx=%u, this node=%u\n", done->dead_node,
988 dlm->reco.dead_node, done->node_idx, dlm->node_num);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800989
990 spin_lock(&dlm_reco_state_lock);
Christoph Hellwig800deef2007-05-17 16:03:13 +0200991 list_for_each_entry(ndata, &dlm->reco.node_data, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800992 if (ndata->node_num != done->node_idx)
993 continue;
994
995 switch (ndata->state) {
Kurt Hackele2faea42006-01-12 14:24:55 -0800996 /* should have moved beyond INIT but not to FINALIZE yet */
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800997 case DLM_RECO_NODE_DATA_INIT:
998 case DLM_RECO_NODE_DATA_DEAD:
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800999 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
1000 mlog(ML_ERROR, "bad ndata state for node %u:"
1001 " state=%d\n", ndata->node_num,
1002 ndata->state);
1003 BUG();
1004 break;
Kurt Hackele2faea42006-01-12 14:24:55 -08001005 /* these states are possible at this point, anywhere along
1006 * the line of recovery */
1007 case DLM_RECO_NODE_DATA_DONE:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001008 case DLM_RECO_NODE_DATA_RECEIVING:
1009 case DLM_RECO_NODE_DATA_REQUESTED:
1010 case DLM_RECO_NODE_DATA_REQUESTING:
1011 mlog(0, "node %u is DONE sending "
1012 "recovery data!\n",
1013 ndata->node_num);
1014
1015 ndata->state = DLM_RECO_NODE_DATA_DONE;
1016 ret = 0;
1017 break;
1018 }
1019 }
1020 spin_unlock(&dlm_reco_state_lock);
1021
1022 /* wake the recovery thread, some node is done */
1023 if (!ret)
1024 dlm_kick_recovery_thread(dlm);
1025
1026 if (ret < 0)
1027 mlog(ML_ERROR, "failed to find recovery node data for node "
1028 "%u\n", done->node_idx);
1029 dlm_put(dlm);
1030
1031 mlog(0, "leaving reco data done handler, ret=%d\n", ret);
1032 return ret;
1033}
1034
1035static void dlm_move_reco_locks_to_list(struct dlm_ctxt *dlm,
1036 struct list_head *list,
1037 u8 dead_node)
1038{
Christoph Hellwig800deef2007-05-17 16:03:13 +02001039 struct dlm_lock_resource *res, *next;
Kurt Hackele2faea42006-01-12 14:24:55 -08001040 struct dlm_lock *lock;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001041
1042 spin_lock(&dlm->spinlock);
Christoph Hellwig800deef2007-05-17 16:03:13 +02001043 list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) {
Kurt Hackele2faea42006-01-12 14:24:55 -08001044 /* always prune any $RECOVERY entries for dead nodes,
1045 * otherwise hangs can occur during later recovery */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001046 if (dlm_is_recovery_lock(res->lockname.name,
Kurt Hackele2faea42006-01-12 14:24:55 -08001047 res->lockname.len)) {
1048 spin_lock(&res->spinlock);
1049 list_for_each_entry(lock, &res->granted, list) {
1050 if (lock->ml.node == dead_node) {
1051 mlog(0, "AHA! there was "
1052 "a $RECOVERY lock for dead "
Sunil Mushran2bd63212010-01-25 16:57:38 -08001053 "node %u (%s)!\n",
Kurt Hackele2faea42006-01-12 14:24:55 -08001054 dead_node, dlm->name);
1055 list_del_init(&lock->list);
1056 dlm_lock_put(lock);
1057 break;
1058 }
1059 }
1060 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001061 continue;
Kurt Hackele2faea42006-01-12 14:24:55 -08001062 }
1063
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001064 if (res->owner == dead_node) {
1065 mlog(0, "found lockres owned by dead node while "
1066 "doing recovery for node %u. sending it.\n",
1067 dead_node);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001068 list_move_tail(&res->recovering, list);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001069 } else if (res->owner == DLM_LOCK_RES_OWNER_UNKNOWN) {
1070 mlog(0, "found UNKNOWN owner while doing recovery "
1071 "for node %u. sending it.\n", dead_node);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001072 list_move_tail(&res->recovering, list);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001073 }
1074 }
1075 spin_unlock(&dlm->spinlock);
1076}
1077
1078static inline int dlm_num_locks_in_lockres(struct dlm_lock_resource *res)
1079{
1080 int total_locks = 0;
1081 struct list_head *iter, *queue = &res->granted;
1082 int i;
1083
1084 for (i=0; i<3; i++) {
1085 list_for_each(iter, queue)
1086 total_locks++;
1087 queue++;
1088 }
1089 return total_locks;
1090}
1091
1092
1093static int dlm_send_mig_lockres_msg(struct dlm_ctxt *dlm,
1094 struct dlm_migratable_lockres *mres,
1095 u8 send_to,
1096 struct dlm_lock_resource *res,
1097 int total_locks)
1098{
1099 u64 mig_cookie = be64_to_cpu(mres->mig_cookie);
1100 int mres_total_locks = be32_to_cpu(mres->total_locks);
1101 int sz, ret = 0, status = 0;
1102 u8 orig_flags = mres->flags,
1103 orig_master = mres->master;
1104
1105 BUG_ON(mres->num_locks > DLM_MAX_MIGRATABLE_LOCKS);
1106 if (!mres->num_locks)
1107 return 0;
1108
1109 sz = sizeof(struct dlm_migratable_lockres) +
1110 (mres->num_locks * sizeof(struct dlm_migratable_lock));
1111
1112 /* add an all-done flag if we reached the last lock */
1113 orig_flags = mres->flags;
1114 BUG_ON(total_locks > mres_total_locks);
1115 if (total_locks == mres_total_locks)
1116 mres->flags |= DLM_MRES_ALL_DONE;
1117
Kurt Hackelba2bf212006-12-01 14:47:20 -08001118 mlog(0, "%s:%.*s: sending mig lockres (%s) to %u\n",
1119 dlm->name, res->lockname.len, res->lockname.name,
Jeff Liu17ae26b2009-07-07 15:51:40 +08001120 orig_flags & DLM_MRES_MIGRATION ? "migration" : "recovery",
Kurt Hackelba2bf212006-12-01 14:47:20 -08001121 send_to);
1122
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001123 /* send it */
1124 ret = o2net_send_message(DLM_MIG_LOCKRES_MSG, dlm->key, mres,
1125 sz, send_to, &status);
1126 if (ret < 0) {
1127 /* XXX: negative status is not handled.
1128 * this will end up killing this node. */
1129 mlog_errno(ret);
1130 } else {
1131 /* might get an -ENOMEM back here */
1132 ret = status;
1133 if (ret < 0) {
1134 mlog_errno(ret);
1135
1136 if (ret == -EFAULT) {
1137 mlog(ML_ERROR, "node %u told me to kill "
1138 "myself!\n", send_to);
1139 BUG();
1140 }
1141 }
1142 }
1143
1144 /* zero and reinit the message buffer */
1145 dlm_init_migratable_lockres(mres, res->lockname.name,
1146 res->lockname.len, mres_total_locks,
1147 mig_cookie, orig_flags, orig_master);
1148 return ret;
1149}
1150
1151static void dlm_init_migratable_lockres(struct dlm_migratable_lockres *mres,
1152 const char *lockname, int namelen,
1153 int total_locks, u64 cookie,
1154 u8 flags, u8 master)
1155{
1156 /* mres here is one full page */
Shani Moideen5fb0f7f2007-06-11 09:38:19 +05301157 clear_page(mres);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001158 mres->lockname_len = namelen;
1159 memcpy(mres->lockname, lockname, namelen);
1160 mres->num_locks = 0;
1161 mres->total_locks = cpu_to_be32(total_locks);
1162 mres->mig_cookie = cpu_to_be64(cookie);
1163 mres->flags = flags;
1164 mres->master = master;
1165}
1166
Sunil Mushran71656fa2010-01-25 16:57:39 -08001167static void dlm_prepare_lvb_for_migration(struct dlm_lock *lock,
1168 struct dlm_migratable_lockres *mres,
1169 int queue)
1170{
1171 if (!lock->lksb)
1172 return;
1173
1174 /* Ignore lvb in all locks in the blocked list */
1175 if (queue == DLM_BLOCKED_LIST)
1176 return;
1177
1178 /* Only consider lvbs in locks with granted EX or PR lock levels */
1179 if (lock->ml.type != LKM_EXMODE && lock->ml.type != LKM_PRMODE)
1180 return;
1181
1182 if (dlm_lvb_is_empty(mres->lvb)) {
1183 memcpy(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN);
1184 return;
1185 }
1186
1187 /* Ensure the lvb copied for migration matches in other valid locks */
1188 if (!memcmp(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN))
1189 return;
1190
1191 mlog(ML_ERROR, "Mismatched lvb in lock cookie=%u:%llu, name=%.*s, "
1192 "node=%u\n",
1193 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
1194 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
1195 lock->lockres->lockname.len, lock->lockres->lockname.name,
1196 lock->ml.node);
1197 dlm_print_one_lock_resource(lock->lockres);
1198 BUG();
1199}
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001200
1201/* returns 1 if this lock fills the network structure,
1202 * 0 otherwise */
1203static int dlm_add_lock_to_array(struct dlm_lock *lock,
1204 struct dlm_migratable_lockres *mres, int queue)
1205{
1206 struct dlm_migratable_lock *ml;
1207 int lock_num = mres->num_locks;
1208
1209 ml = &(mres->ml[lock_num]);
1210 ml->cookie = lock->ml.cookie;
1211 ml->type = lock->ml.type;
1212 ml->convert_type = lock->ml.convert_type;
1213 ml->highest_blocked = lock->ml.highest_blocked;
1214 ml->list = queue;
1215 if (lock->lksb) {
1216 ml->flags = lock->lksb->flags;
Sunil Mushran71656fa2010-01-25 16:57:39 -08001217 dlm_prepare_lvb_for_migration(lock, mres, queue);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001218 }
1219 ml->node = lock->ml.node;
1220 mres->num_locks++;
1221 /* we reached the max, send this network message */
1222 if (mres->num_locks == DLM_MAX_MIGRATABLE_LOCKS)
1223 return 1;
1224 return 0;
1225}
1226
Kurt Hackelba2bf212006-12-01 14:47:20 -08001227static void dlm_add_dummy_lock(struct dlm_ctxt *dlm,
1228 struct dlm_migratable_lockres *mres)
1229{
1230 struct dlm_lock dummy;
1231 memset(&dummy, 0, sizeof(dummy));
1232 dummy.ml.cookie = 0;
1233 dummy.ml.type = LKM_IVMODE;
1234 dummy.ml.convert_type = LKM_IVMODE;
1235 dummy.ml.highest_blocked = LKM_IVMODE;
1236 dummy.lksb = NULL;
1237 dummy.ml.node = dlm->node_num;
1238 dlm_add_lock_to_array(&dummy, mres, DLM_BLOCKED_LIST);
1239}
1240
1241static inline int dlm_is_dummy_lock(struct dlm_ctxt *dlm,
1242 struct dlm_migratable_lock *ml,
1243 u8 *nodenum)
1244{
1245 if (unlikely(ml->cookie == 0 &&
1246 ml->type == LKM_IVMODE &&
1247 ml->convert_type == LKM_IVMODE &&
1248 ml->highest_blocked == LKM_IVMODE &&
1249 ml->list == DLM_BLOCKED_LIST)) {
1250 *nodenum = ml->node;
1251 return 1;
1252 }
1253 return 0;
1254}
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001255
1256int dlm_send_one_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1257 struct dlm_migratable_lockres *mres,
1258 u8 send_to, u8 flags)
1259{
Christoph Hellwig800deef2007-05-17 16:03:13 +02001260 struct list_head *queue;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001261 int total_locks, i;
1262 u64 mig_cookie = 0;
1263 struct dlm_lock *lock;
1264 int ret = 0;
1265
1266 BUG_ON(!(flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1267
1268 mlog(0, "sending to %u\n", send_to);
1269
1270 total_locks = dlm_num_locks_in_lockres(res);
1271 if (total_locks > DLM_MAX_MIGRATABLE_LOCKS) {
1272 /* rare, but possible */
1273 mlog(0, "argh. lockres has %d locks. this will "
1274 "require more than one network packet to "
1275 "migrate\n", total_locks);
1276 mig_cookie = dlm_get_next_mig_cookie();
1277 }
1278
1279 dlm_init_migratable_lockres(mres, res->lockname.name,
1280 res->lockname.len, total_locks,
1281 mig_cookie, flags, res->owner);
1282
1283 total_locks = 0;
1284 for (i=DLM_GRANTED_LIST; i<=DLM_BLOCKED_LIST; i++) {
1285 queue = dlm_list_idx_to_ptr(res, i);
Christoph Hellwig800deef2007-05-17 16:03:13 +02001286 list_for_each_entry(lock, queue, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001287 /* add another lock. */
1288 total_locks++;
1289 if (!dlm_add_lock_to_array(lock, mres, i))
1290 continue;
1291
1292 /* this filled the lock message,
1293 * we must send it immediately. */
1294 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to,
1295 res, total_locks);
Kurt Hackel29c0fa02006-04-27 18:06:58 -07001296 if (ret < 0)
1297 goto error;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001298 }
1299 }
Kurt Hackelba2bf212006-12-01 14:47:20 -08001300 if (total_locks == 0) {
1301 /* send a dummy lock to indicate a mastery reference only */
1302 mlog(0, "%s:%.*s: sending dummy lock to %u, %s\n",
1303 dlm->name, res->lockname.len, res->lockname.name,
1304 send_to, flags & DLM_MRES_RECOVERY ? "recovery" :
1305 "migration");
1306 dlm_add_dummy_lock(dlm, mres);
1307 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001308 /* flush any remaining locks */
1309 ret = dlm_send_mig_lockres_msg(dlm, mres, send_to, res, total_locks);
Kurt Hackel29c0fa02006-04-27 18:06:58 -07001310 if (ret < 0)
1311 goto error;
1312 return ret;
1313
1314error:
1315 mlog(ML_ERROR, "%s: dlm_send_mig_lockres_msg returned %d\n",
1316 dlm->name, ret);
1317 if (!dlm_is_host_down(ret))
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001318 BUG();
Kurt Hackel29c0fa02006-04-27 18:06:58 -07001319 mlog(0, "%s: node %u went down while sending %s "
1320 "lockres %.*s\n", dlm->name, send_to,
1321 flags & DLM_MRES_RECOVERY ? "recovery" : "migration",
1322 res->lockname.len, res->lockname.name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001323 return ret;
1324}
1325
1326
1327
1328/*
1329 * this message will contain no more than one page worth of
1330 * recovery data, and it will work on only one lockres.
1331 * there may be many locks in this page, and we may need to wait
1332 * for additional packets to complete all the locks (rare, but
1333 * possible).
1334 */
1335/*
1336 * NOTE: the allocation error cases here are scary
1337 * we really cannot afford to fail an alloc in recovery
1338 * do we spin? returning an error only delays the problem really
1339 */
1340
Kurt Hackeld74c9802007-01-17 17:04:25 -08001341int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
1342 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001343{
1344 struct dlm_ctxt *dlm = data;
1345 struct dlm_migratable_lockres *mres =
1346 (struct dlm_migratable_lockres *)msg->buf;
1347 int ret = 0;
1348 u8 real_master;
Sunil Mushran52987e22008-03-01 14:04:21 -08001349 u8 extra_refs = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001350 char *buf = NULL;
1351 struct dlm_work_item *item = NULL;
1352 struct dlm_lock_resource *res = NULL;
1353
1354 if (!dlm_grab(dlm))
1355 return -EINVAL;
1356
1357 BUG_ON(!(mres->flags & (DLM_MRES_RECOVERY|DLM_MRES_MIGRATION)));
1358
1359 real_master = mres->master;
1360 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1361 /* cannot migrate a lockres with no master */
1362 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1363 }
1364
1365 mlog(0, "%s message received from node %u\n",
1366 (mres->flags & DLM_MRES_RECOVERY) ?
1367 "recovery" : "migration", mres->master);
1368 if (mres->flags & DLM_MRES_ALL_DONE)
1369 mlog(0, "all done flag. all lockres data received!\n");
1370
1371 ret = -ENOMEM;
Kurt Hackelad8100e2006-05-01 14:25:21 -07001372 buf = kmalloc(be16_to_cpu(msg->data_len), GFP_NOFS);
Robert P. J. Daycd861282006-12-13 00:34:52 -08001373 item = kzalloc(sizeof(*item), GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001374 if (!buf || !item)
1375 goto leave;
1376
1377 /* lookup the lock to see if we have a secondary queue for this
1378 * already... just add the locks in and this will have its owner
1379 * and RECOVERY flag changed when it completes. */
1380 res = dlm_lookup_lockres(dlm, mres->lockname, mres->lockname_len);
1381 if (res) {
1382 /* this will get a ref on res */
1383 /* mark it as recovering/migrating and hash it */
1384 spin_lock(&res->spinlock);
1385 if (mres->flags & DLM_MRES_RECOVERY) {
1386 res->state |= DLM_LOCK_RES_RECOVERING;
1387 } else {
1388 if (res->state & DLM_LOCK_RES_MIGRATING) {
1389 /* this is at least the second
1390 * lockres message */
1391 mlog(0, "lock %.*s is already migrating\n",
1392 mres->lockname_len,
1393 mres->lockname);
1394 } else if (res->state & DLM_LOCK_RES_RECOVERING) {
1395 /* caller should BUG */
1396 mlog(ML_ERROR, "node is attempting to migrate "
1397 "lock %.*s, but marked as recovering!\n",
1398 mres->lockname_len, mres->lockname);
1399 ret = -EFAULT;
1400 spin_unlock(&res->spinlock);
1401 goto leave;
1402 }
1403 res->state |= DLM_LOCK_RES_MIGRATING;
1404 }
1405 spin_unlock(&res->spinlock);
1406 } else {
1407 /* need to allocate, just like if it was
1408 * mastered here normally */
1409 res = dlm_new_lockres(dlm, mres->lockname, mres->lockname_len);
1410 if (!res)
1411 goto leave;
1412
1413 /* to match the ref that we would have gotten if
1414 * dlm_lookup_lockres had succeeded */
1415 dlm_lockres_get(res);
1416
1417 /* mark it as recovering/migrating and hash it */
1418 if (mres->flags & DLM_MRES_RECOVERY)
1419 res->state |= DLM_LOCK_RES_RECOVERING;
1420 else
1421 res->state |= DLM_LOCK_RES_MIGRATING;
1422
1423 spin_lock(&dlm->spinlock);
1424 __dlm_insert_lockres(dlm, res);
1425 spin_unlock(&dlm->spinlock);
1426
Sunil Mushran52987e22008-03-01 14:04:21 -08001427 /* Add an extra ref for this lock-less lockres lest the
1428 * dlm_thread purges it before we get the chance to add
1429 * locks to it */
1430 dlm_lockres_get(res);
1431
1432 /* There are three refs that need to be put.
1433 * 1. Taken above.
1434 * 2. kref_init in dlm_new_lockres()->dlm_init_lockres().
1435 * 3. dlm_lookup_lockres()
1436 * The first one is handled at the end of this function. The
1437 * other two are handled in the worker thread after locks have
1438 * been attached. Yes, we don't wait for purge time to match
1439 * kref_init. The lockres will still have atleast one ref
1440 * added because it is in the hash __dlm_insert_lockres() */
1441 extra_refs++;
1442
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001443 /* now that the new lockres is inserted,
1444 * make it usable by other processes */
1445 spin_lock(&res->spinlock);
1446 res->state &= ~DLM_LOCK_RES_IN_PROGRESS;
1447 spin_unlock(&res->spinlock);
Kurt Hackela6fa3642007-01-17 14:59:12 -08001448 wake_up(&res->wq);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001449 }
1450
1451 /* at this point we have allocated everything we need,
1452 * and we have a hashed lockres with an extra ref and
1453 * the proper res->state flags. */
1454 ret = 0;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001455 spin_lock(&res->spinlock);
1456 /* drop this either when master requery finds a different master
1457 * or when a lock is added by the recovery worker */
1458 dlm_lockres_grab_inflight_ref(dlm, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001459 if (mres->master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1460 /* migration cannot have an unknown master */
1461 BUG_ON(!(mres->flags & DLM_MRES_RECOVERY));
1462 mlog(0, "recovery has passed me a lockres with an "
1463 "unknown owner.. will need to requery: "
1464 "%.*s\n", mres->lockname_len, mres->lockname);
1465 } else {
Kurt Hackelba2bf212006-12-01 14:47:20 -08001466 /* take a reference now to pin the lockres, drop it
1467 * when locks are added in the worker */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001468 dlm_change_lockres_owner(dlm, res, dlm->node_num);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001469 }
Kurt Hackelba2bf212006-12-01 14:47:20 -08001470 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001471
1472 /* queue up work for dlm_mig_lockres_worker */
1473 dlm_grab(dlm); /* get an extra ref for the work item */
1474 memcpy(buf, msg->buf, be16_to_cpu(msg->data_len)); /* copy the whole message */
1475 dlm_init_work_item(dlm, item, dlm_mig_lockres_worker, buf);
1476 item->u.ml.lockres = res; /* already have a ref */
1477 item->u.ml.real_master = real_master;
Sunil Mushran52987e22008-03-01 14:04:21 -08001478 item->u.ml.extra_ref = extra_refs;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001479 spin_lock(&dlm->work_lock);
1480 list_add_tail(&item->list, &dlm->work_list);
1481 spin_unlock(&dlm->work_lock);
Kurt Hackel3156d262006-05-01 14:39:29 -07001482 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001483
1484leave:
Sunil Mushran52987e22008-03-01 14:04:21 -08001485 /* One extra ref taken needs to be put here */
1486 if (extra_refs)
1487 dlm_lockres_put(res);
1488
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001489 dlm_put(dlm);
1490 if (ret < 0) {
1491 if (buf)
1492 kfree(buf);
1493 if (item)
1494 kfree(item);
1495 }
1496
1497 mlog_exit(ret);
1498 return ret;
1499}
1500
1501
1502static void dlm_mig_lockres_worker(struct dlm_work_item *item, void *data)
1503{
Sunil Mushran52987e22008-03-01 14:04:21 -08001504 struct dlm_ctxt *dlm;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001505 struct dlm_migratable_lockres *mres;
1506 int ret = 0;
1507 struct dlm_lock_resource *res;
1508 u8 real_master;
Sunil Mushran52987e22008-03-01 14:04:21 -08001509 u8 extra_ref;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001510
1511 dlm = item->dlm;
1512 mres = (struct dlm_migratable_lockres *)data;
1513
1514 res = item->u.ml.lockres;
1515 real_master = item->u.ml.real_master;
Sunil Mushran52987e22008-03-01 14:04:21 -08001516 extra_ref = item->u.ml.extra_ref;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001517
1518 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1519 /* this case is super-rare. only occurs if
1520 * node death happens during migration. */
1521again:
1522 ret = dlm_lockres_master_requery(dlm, res, &real_master);
1523 if (ret < 0) {
Kurt Hackele2faea42006-01-12 14:24:55 -08001524 mlog(0, "dlm_lockres_master_requery ret=%d\n",
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001525 ret);
1526 goto again;
1527 }
1528 if (real_master == DLM_LOCK_RES_OWNER_UNKNOWN) {
1529 mlog(0, "lockres %.*s not claimed. "
1530 "this node will take it.\n",
1531 res->lockname.len, res->lockname.name);
1532 } else {
Kurt Hackelba2bf212006-12-01 14:47:20 -08001533 spin_lock(&res->spinlock);
1534 dlm_lockres_drop_inflight_ref(dlm, res);
1535 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001536 mlog(0, "master needs to respond to sender "
1537 "that node %u still owns %.*s\n",
1538 real_master, res->lockname.len,
1539 res->lockname.name);
1540 /* cannot touch this lockres */
1541 goto leave;
1542 }
1543 }
1544
1545 ret = dlm_process_recovery_data(dlm, res, mres);
1546 if (ret < 0)
1547 mlog(0, "dlm_process_recovery_data returned %d\n", ret);
1548 else
1549 mlog(0, "dlm_process_recovery_data succeeded\n");
1550
1551 if ((mres->flags & (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) ==
1552 (DLM_MRES_MIGRATION|DLM_MRES_ALL_DONE)) {
1553 ret = dlm_finish_migration(dlm, res, mres->master);
1554 if (ret < 0)
1555 mlog_errno(ret);
1556 }
1557
1558leave:
Sunil Mushran52987e22008-03-01 14:04:21 -08001559 /* See comment in dlm_mig_lockres_handler() */
1560 if (res) {
1561 if (extra_ref)
1562 dlm_lockres_put(res);
1563 dlm_lockres_put(res);
1564 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001565 kfree(data);
1566 mlog_exit(ret);
1567}
1568
1569
1570
Adrian Bunk8169cae2006-03-31 16:53:55 +02001571static int dlm_lockres_master_requery(struct dlm_ctxt *dlm,
1572 struct dlm_lock_resource *res,
1573 u8 *real_master)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001574{
1575 struct dlm_node_iter iter;
1576 int nodenum;
1577 int ret = 0;
1578
1579 *real_master = DLM_LOCK_RES_OWNER_UNKNOWN;
1580
1581 /* we only reach here if one of the two nodes in a
1582 * migration died while the migration was in progress.
1583 * at this point we need to requery the master. we
1584 * know that the new_master got as far as creating
1585 * an mle on at least one node, but we do not know
1586 * if any nodes had actually cleared the mle and set
1587 * the master to the new_master. the old master
1588 * is supposed to set the owner to UNKNOWN in the
1589 * event of a new_master death, so the only possible
1590 * responses that we can get from nodes here are
1591 * that the master is new_master, or that the master
1592 * is UNKNOWN.
1593 * if all nodes come back with UNKNOWN then we know
1594 * the lock needs remastering here.
1595 * if any node comes back with a valid master, check
1596 * to see if that master is the one that we are
1597 * recovering. if so, then the new_master died and
1598 * we need to remaster this lock. if not, then the
1599 * new_master survived and that node will respond to
1600 * other nodes about the owner.
1601 * if there is an owner, this node needs to dump this
1602 * lockres and alert the sender that this lockres
1603 * was rejected. */
1604 spin_lock(&dlm->spinlock);
1605 dlm_node_iter_init(dlm->domain_map, &iter);
1606 spin_unlock(&dlm->spinlock);
1607
1608 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
1609 /* do not send to self */
1610 if (nodenum == dlm->node_num)
1611 continue;
1612 ret = dlm_do_master_requery(dlm, res, nodenum, real_master);
1613 if (ret < 0) {
1614 mlog_errno(ret);
Kurt Hackelc03872f2006-03-06 14:08:49 -08001615 if (!dlm_is_host_down(ret))
1616 BUG();
1617 /* host is down, so answer for that node would be
1618 * DLM_LOCK_RES_OWNER_UNKNOWN. continue. */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001619 }
1620 if (*real_master != DLM_LOCK_RES_OWNER_UNKNOWN) {
1621 mlog(0, "lock master is %u\n", *real_master);
1622 break;
1623 }
1624 }
1625 return ret;
1626}
1627
1628
Kurt Hackelc03872f2006-03-06 14:08:49 -08001629int dlm_do_master_requery(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
1630 u8 nodenum, u8 *real_master)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001631{
1632 int ret = -EINVAL;
1633 struct dlm_master_requery req;
1634 int status = DLM_LOCK_RES_OWNER_UNKNOWN;
1635
1636 memset(&req, 0, sizeof(req));
1637 req.node_idx = dlm->node_num;
1638 req.namelen = res->lockname.len;
1639 memcpy(req.name, res->lockname.name, res->lockname.len);
1640
1641 ret = o2net_send_message(DLM_MASTER_REQUERY_MSG, dlm->key,
1642 &req, sizeof(req), nodenum, &status);
1643 /* XXX: negative status not handled properly here. */
1644 if (ret < 0)
1645 mlog_errno(ret);
1646 else {
1647 BUG_ON(status < 0);
1648 BUG_ON(status > DLM_LOCK_RES_OWNER_UNKNOWN);
1649 *real_master = (u8) (status & 0xff);
1650 mlog(0, "node %u responded to master requery with %u\n",
1651 nodenum, *real_master);
1652 ret = 0;
1653 }
1654 return ret;
1655}
1656
1657
1658/* this function cannot error, so unless the sending
1659 * or receiving of the message failed, the owner can
1660 * be trusted */
Kurt Hackeld74c9802007-01-17 17:04:25 -08001661int dlm_master_requery_handler(struct o2net_msg *msg, u32 len, void *data,
1662 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001663{
1664 struct dlm_ctxt *dlm = data;
1665 struct dlm_master_requery *req = (struct dlm_master_requery *)msg->buf;
1666 struct dlm_lock_resource *res = NULL;
Mark Fasheha3d33292006-03-09 17:55:56 -08001667 unsigned int hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001668 int master = DLM_LOCK_RES_OWNER_UNKNOWN;
1669 u32 flags = DLM_ASSERT_MASTER_REQUERY;
1670
1671 if (!dlm_grab(dlm)) {
1672 /* since the domain has gone away on this
1673 * node, the proper response is UNKNOWN */
1674 return master;
1675 }
1676
Mark Fasheha3d33292006-03-09 17:55:56 -08001677 hash = dlm_lockid_hash(req->name, req->namelen);
1678
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001679 spin_lock(&dlm->spinlock);
Mark Fasheha3d33292006-03-09 17:55:56 -08001680 res = __dlm_lookup_lockres(dlm, req->name, req->namelen, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001681 if (res) {
1682 spin_lock(&res->spinlock);
1683 master = res->owner;
1684 if (master == dlm->node_num) {
1685 int ret = dlm_dispatch_assert_master(dlm, res,
1686 0, 0, flags);
1687 if (ret < 0) {
1688 mlog_errno(-ENOMEM);
1689 /* retry!? */
1690 BUG();
1691 }
Sunil Mushran52987e22008-03-01 14:04:21 -08001692 } else /* put.. incase we are not the master */
1693 dlm_lockres_put(res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001694 spin_unlock(&res->spinlock);
1695 }
1696 spin_unlock(&dlm->spinlock);
1697
1698 dlm_put(dlm);
1699 return master;
1700}
1701
1702static inline struct list_head *
1703dlm_list_num_to_pointer(struct dlm_lock_resource *res, int list_num)
1704{
1705 struct list_head *ret;
1706 BUG_ON(list_num < 0);
1707 BUG_ON(list_num > 2);
1708 ret = &(res->granted);
1709 ret += list_num;
1710 return ret;
1711}
1712/* TODO: do ast flush business
1713 * TODO: do MIGRATING and RECOVERING spinning
1714 */
1715
1716/*
1717* NOTE about in-flight requests during migration:
1718*
1719* Before attempting the migrate, the master has marked the lockres as
1720* MIGRATING and then flushed all of its pending ASTS. So any in-flight
1721* requests either got queued before the MIGRATING flag got set, in which
1722* case the lock data will reflect the change and a return message is on
1723* the way, or the request failed to get in before MIGRATING got set. In
1724* this case, the caller will be told to spin and wait for the MIGRATING
1725* flag to be dropped, then recheck the master.
1726* This holds true for the convert, cancel and unlock cases, and since lvb
1727* updates are tied to these same messages, it applies to lvb updates as
1728* well. For the lock case, there is no way a lock can be on the master
1729* queue and not be on the secondary queue since the lock is always added
1730* locally first. This means that the new target node will never be sent
1731* a lock that he doesn't already have on the list.
1732* In total, this means that the local lock is correct and should not be
1733* updated to match the one sent by the master. Any messages sent back
1734* from the master before the MIGRATING flag will bring the lock properly
1735* up-to-date, and the change will be ordered properly for the waiter.
1736* We will *not* attempt to modify the lock underneath the waiter.
1737*/
1738
1739static int dlm_process_recovery_data(struct dlm_ctxt *dlm,
1740 struct dlm_lock_resource *res,
1741 struct dlm_migratable_lockres *mres)
1742{
1743 struct dlm_migratable_lock *ml;
1744 struct list_head *queue;
Kurt Hackele17e75e2007-01-05 15:04:49 -08001745 struct list_head *tmpq = NULL;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001746 struct dlm_lock *newlock = NULL;
1747 struct dlm_lockstatus *lksb = NULL;
1748 int ret = 0;
Kurt Hackele17e75e2007-01-05 15:04:49 -08001749 int i, j, bad;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001750 struct dlm_lock *lock = NULL;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001751 u8 from = O2NM_MAX_NODES;
1752 unsigned int added = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001753
1754 mlog(0, "running %d locks for this lockres\n", mres->num_locks);
1755 for (i=0; i<mres->num_locks; i++) {
1756 ml = &(mres->ml[i]);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001757
1758 if (dlm_is_dummy_lock(dlm, ml, &from)) {
1759 /* placeholder, just need to set the refmap bit */
1760 BUG_ON(mres->num_locks != 1);
1761 mlog(0, "%s:%.*s: dummy lock for %u\n",
1762 dlm->name, mres->lockname_len, mres->lockname,
1763 from);
1764 spin_lock(&res->spinlock);
1765 dlm_lockres_set_refmap_bit(from, res);
1766 spin_unlock(&res->spinlock);
1767 added++;
1768 break;
1769 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001770 BUG_ON(ml->highest_blocked != LKM_IVMODE);
1771 newlock = NULL;
1772 lksb = NULL;
1773
1774 queue = dlm_list_num_to_pointer(res, ml->list);
Kurt Hackele17e75e2007-01-05 15:04:49 -08001775 tmpq = NULL;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001776
1777 /* if the lock is for the local node it needs to
1778 * be moved to the proper location within the queue.
1779 * do not allocate a new lock structure. */
1780 if (ml->node == dlm->node_num) {
1781 /* MIGRATION ONLY! */
1782 BUG_ON(!(mres->flags & DLM_MRES_MIGRATION));
1783
1784 spin_lock(&res->spinlock);
Kurt Hackele17e75e2007-01-05 15:04:49 -08001785 for (j = DLM_GRANTED_LIST; j <= DLM_BLOCKED_LIST; j++) {
1786 tmpq = dlm_list_idx_to_ptr(res, j);
Christoph Hellwig800deef2007-05-17 16:03:13 +02001787 list_for_each_entry(lock, tmpq, list) {
Kurt Hackele17e75e2007-01-05 15:04:49 -08001788 if (lock->ml.cookie != ml->cookie)
1789 lock = NULL;
1790 else
1791 break;
1792 }
1793 if (lock)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001794 break;
1795 }
1796
1797 /* lock is always created locally first, and
1798 * destroyed locally last. it must be on the list */
1799 if (!lock) {
Mark Fasheha7d25532007-04-27 16:49:20 -07001800 __be64 c = ml->cookie;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001801 mlog(ML_ERROR, "could not find local lock "
Kurt Hackel29004852006-03-02 16:43:36 -08001802 "with cookie %u:%llu!\n",
Kurt Hackel74aa2582007-01-17 15:11:36 -08001803 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1804 dlm_get_lock_cookie_seq(be64_to_cpu(c)));
Kurt Hackel71ac1062007-01-05 15:02:30 -08001805 __dlm_print_one_lock_resource(res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001806 BUG();
1807 }
1808 BUG_ON(lock->ml.node != ml->node);
1809
Kurt Hackele17e75e2007-01-05 15:04:49 -08001810 if (tmpq != queue) {
1811 mlog(0, "lock was on %u instead of %u for %.*s\n",
1812 j, ml->list, res->lockname.len, res->lockname.name);
1813 spin_unlock(&res->spinlock);
1814 continue;
1815 }
1816
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001817 /* see NOTE above about why we do not update
1818 * to match the master here */
1819
1820 /* move the lock to its proper place */
1821 /* do not alter lock refcount. switching lists. */
Akinobu Mitaf1166292006-06-26 00:24:46 -07001822 list_move_tail(&lock->list, queue);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001823 spin_unlock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001824 added++;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001825
1826 mlog(0, "just reordered a local lock!\n");
1827 continue;
1828 }
1829
1830 /* lock is for another node. */
1831 newlock = dlm_new_lock(ml->type, ml->node,
1832 be64_to_cpu(ml->cookie), NULL);
1833 if (!newlock) {
1834 ret = -ENOMEM;
1835 goto leave;
1836 }
1837 lksb = newlock->lksb;
1838 dlm_lock_attach_lockres(newlock, res);
1839
1840 if (ml->convert_type != LKM_IVMODE) {
1841 BUG_ON(queue != &res->converting);
1842 newlock->ml.convert_type = ml->convert_type;
1843 }
1844 lksb->flags |= (ml->flags &
1845 (DLM_LKSB_PUT_LVB|DLM_LKSB_GET_LVB));
Kurt Hackelccd8b1f2006-05-01 11:32:14 -07001846
1847 if (ml->type == LKM_NLMODE)
1848 goto skip_lvb;
1849
Kurt Hackel8bc674c2006-04-27 18:02:10 -07001850 if (!dlm_lvb_is_empty(mres->lvb)) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001851 if (lksb->flags & DLM_LKSB_PUT_LVB) {
1852 /* other node was trying to update
1853 * lvb when node died. recreate the
1854 * lksb with the updated lvb. */
1855 memcpy(lksb->lvb, mres->lvb, DLM_LVB_LEN);
Kurt Hackelccd8b1f2006-05-01 11:32:14 -07001856 /* the lock resource lvb update must happen
1857 * NOW, before the spinlock is dropped.
1858 * we no longer wait for the AST to update
1859 * the lvb. */
1860 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001861 } else {
Sunil Mushran2bd63212010-01-25 16:57:38 -08001862 /* otherwise, the node is sending its
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001863 * most recent valid lvb info */
1864 BUG_ON(ml->type != LKM_EXMODE &&
1865 ml->type != LKM_PRMODE);
Kurt Hackel8bc674c2006-04-27 18:02:10 -07001866 if (!dlm_lvb_is_empty(res->lvb) &&
Kurt Hackelccd8b1f2006-05-01 11:32:14 -07001867 (ml->type == LKM_EXMODE ||
1868 memcmp(res->lvb, mres->lvb, DLM_LVB_LEN))) {
1869 int i;
1870 mlog(ML_ERROR, "%s:%.*s: received bad "
1871 "lvb! type=%d\n", dlm->name,
1872 res->lockname.len,
1873 res->lockname.name, ml->type);
1874 printk("lockres lvb=[");
1875 for (i=0; i<DLM_LVB_LEN; i++)
1876 printk("%02x", res->lvb[i]);
1877 printk("]\nmigrated lvb=[");
1878 for (i=0; i<DLM_LVB_LEN; i++)
1879 printk("%02x", mres->lvb[i]);
1880 printk("]\n");
1881 dlm_print_one_lock_resource(res);
1882 BUG();
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001883 }
1884 memcpy(res->lvb, mres->lvb, DLM_LVB_LEN);
1885 }
1886 }
Kurt Hackelccd8b1f2006-05-01 11:32:14 -07001887skip_lvb:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001888
1889 /* NOTE:
1890 * wrt lock queue ordering and recovery:
1891 * 1. order of locks on granted queue is
1892 * meaningless.
1893 * 2. order of locks on converting queue is
1894 * LOST with the node death. sorry charlie.
1895 * 3. order of locks on the blocked queue is
1896 * also LOST.
1897 * order of locks does not affect integrity, it
1898 * just means that a lock request may get pushed
1899 * back in line as a result of the node death.
1900 * also note that for a given node the lock order
1901 * for its secondary queue locks is preserved
1902 * relative to each other, but clearly *not*
1903 * preserved relative to locks from other nodes.
1904 */
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001905 bad = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001906 spin_lock(&res->spinlock);
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001907 list_for_each_entry(lock, queue, list) {
1908 if (lock->ml.cookie == ml->cookie) {
Mark Fasheha7d25532007-04-27 16:49:20 -07001909 __be64 c = lock->ml.cookie;
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001910 mlog(ML_ERROR, "%s:%.*s: %u:%llu: lock already "
1911 "exists on this lockres!\n", dlm->name,
1912 res->lockname.len, res->lockname.name,
Kurt Hackel74aa2582007-01-17 15:11:36 -08001913 dlm_get_lock_cookie_node(be64_to_cpu(c)),
1914 dlm_get_lock_cookie_seq(be64_to_cpu(c)));
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001915
1916 mlog(ML_NOTICE, "sent lock: type=%d, conv=%d, "
1917 "node=%u, cookie=%u:%llu, queue=%d\n",
1918 ml->type, ml->convert_type, ml->node,
Kurt Hackel74aa2582007-01-17 15:11:36 -08001919 dlm_get_lock_cookie_node(be64_to_cpu(ml->cookie)),
1920 dlm_get_lock_cookie_seq(be64_to_cpu(ml->cookie)),
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001921 ml->list);
1922
1923 __dlm_print_one_lock_resource(res);
1924 bad = 1;
1925 break;
1926 }
1927 }
1928 if (!bad) {
1929 dlm_lock_get(newlock);
1930 list_add_tail(&newlock->list, queue);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001931 mlog(0, "%s:%.*s: added lock for node %u, "
1932 "setting refmap bit\n", dlm->name,
1933 res->lockname.len, res->lockname.name, ml->node);
1934 dlm_lockres_set_refmap_bit(ml->node, res);
1935 added++;
Kurt Hackelc3187ce2006-04-27 18:05:41 -07001936 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001937 spin_unlock(&res->spinlock);
1938 }
1939 mlog(0, "done running all the locks\n");
1940
1941leave:
Kurt Hackelba2bf212006-12-01 14:47:20 -08001942 /* balance the ref taken when the work was queued */
Kurt Hackel50635f12007-01-17 14:54:39 -08001943 spin_lock(&res->spinlock);
1944 dlm_lockres_drop_inflight_ref(dlm, res);
1945 spin_unlock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001946
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001947 if (ret < 0) {
1948 mlog_errno(ret);
1949 if (newlock)
1950 dlm_lock_put(newlock);
1951 }
1952
1953 mlog_exit(ret);
1954 return ret;
1955}
1956
1957void dlm_move_lockres_to_recovery_list(struct dlm_ctxt *dlm,
1958 struct dlm_lock_resource *res)
1959{
1960 int i;
Christoph Hellwig800deef2007-05-17 16:03:13 +02001961 struct list_head *queue;
1962 struct dlm_lock *lock, *next;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001963
1964 res->state |= DLM_LOCK_RES_RECOVERING;
Kurt Hackel69d72b02006-05-01 10:57:51 -07001965 if (!list_empty(&res->recovering)) {
1966 mlog(0,
1967 "Recovering res %s:%.*s, is already on recovery list!\n",
1968 dlm->name, res->lockname.len, res->lockname.name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001969 list_del_init(&res->recovering);
Sunil Mushran52987e22008-03-01 14:04:21 -08001970 dlm_lockres_put(res);
Kurt Hackel69d72b02006-05-01 10:57:51 -07001971 }
1972 /* We need to hold a reference while on the recovery list */
1973 dlm_lockres_get(res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001974 list_add_tail(&res->recovering, &dlm->reco.resources);
1975
1976 /* find any pending locks and put them back on proper list */
1977 for (i=DLM_BLOCKED_LIST; i>=DLM_GRANTED_LIST; i--) {
1978 queue = dlm_list_idx_to_ptr(res, i);
Christoph Hellwig800deef2007-05-17 16:03:13 +02001979 list_for_each_entry_safe(lock, next, queue, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001980 dlm_lock_get(lock);
1981 if (lock->convert_pending) {
1982 /* move converting lock back to granted */
1983 BUG_ON(i != DLM_CONVERTING_LIST);
1984 mlog(0, "node died with convert pending "
1985 "on %.*s. move back to granted list.\n",
1986 res->lockname.len, res->lockname.name);
1987 dlm_revert_pending_convert(res, lock);
1988 lock->convert_pending = 0;
1989 } else if (lock->lock_pending) {
1990 /* remove pending lock requests completely */
1991 BUG_ON(i != DLM_BLOCKED_LIST);
1992 mlog(0, "node died with lock pending "
1993 "on %.*s. remove from blocked list and skip.\n",
1994 res->lockname.len, res->lockname.name);
1995 /* lock will be floating until ref in
1996 * dlmlock_remote is freed after the network
1997 * call returns. ok for it to not be on any
1998 * list since no ast can be called
1999 * (the master is dead). */
2000 dlm_revert_pending_lock(res, lock);
2001 lock->lock_pending = 0;
2002 } else if (lock->unlock_pending) {
2003 /* if an unlock was in progress, treat as
2004 * if this had completed successfully
2005 * before sending this lock state to the
2006 * new master. note that the dlm_unlock
2007 * call is still responsible for calling
2008 * the unlockast. that will happen after
2009 * the network call times out. for now,
2010 * just move lists to prepare the new
2011 * recovery master. */
2012 BUG_ON(i != DLM_GRANTED_LIST);
2013 mlog(0, "node died with unlock pending "
2014 "on %.*s. remove from blocked list and skip.\n",
2015 res->lockname.len, res->lockname.name);
2016 dlm_commit_pending_unlock(res, lock);
2017 lock->unlock_pending = 0;
2018 } else if (lock->cancel_pending) {
2019 /* if a cancel was in progress, treat as
2020 * if this had completed successfully
2021 * before sending this lock state to the
2022 * new master */
2023 BUG_ON(i != DLM_CONVERTING_LIST);
2024 mlog(0, "node died with cancel pending "
2025 "on %.*s. move back to granted list.\n",
2026 res->lockname.len, res->lockname.name);
2027 dlm_commit_pending_cancel(res, lock);
2028 lock->cancel_pending = 0;
2029 }
2030 dlm_lock_put(lock);
2031 }
2032 }
2033}
2034
2035
2036
2037/* removes all recovered locks from the recovery list.
2038 * sets the res->owner to the new master.
2039 * unsets the RECOVERY flag and wakes waiters. */
2040static void dlm_finish_local_lockres_recovery(struct dlm_ctxt *dlm,
2041 u8 dead_node, u8 new_master)
2042{
2043 int i;
Mark Fasheh81f20942006-02-28 17:31:22 -08002044 struct hlist_node *hash_iter;
2045 struct hlist_head *bucket;
Christoph Hellwig800deef2007-05-17 16:03:13 +02002046 struct dlm_lock_resource *res, *next;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002047
2048 mlog_entry_void();
2049
2050 assert_spin_locked(&dlm->spinlock);
2051
Christoph Hellwig800deef2007-05-17 16:03:13 +02002052 list_for_each_entry_safe(res, next, &dlm->reco.resources, recovering) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002053 if (res->owner == dead_node) {
2054 list_del_init(&res->recovering);
2055 spin_lock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002056 /* new_master has our reference from
2057 * the lock state sent during recovery */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002058 dlm_change_lockres_owner(dlm, res, new_master);
2059 res->state &= ~DLM_LOCK_RES_RECOVERING;
Kurt Hackelba2bf212006-12-01 14:47:20 -08002060 if (__dlm_lockres_has_locks(res))
Kurt Hackel69d72b02006-05-01 10:57:51 -07002061 __dlm_dirty_lockres(dlm, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002062 spin_unlock(&res->spinlock);
2063 wake_up(&res->wq);
Kurt Hackel69d72b02006-05-01 10:57:51 -07002064 dlm_lockres_put(res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002065 }
2066 }
2067
2068 /* this will become unnecessary eventually, but
2069 * for now we need to run the whole hash, clear
2070 * the RECOVERING state and set the owner
2071 * if necessary */
Mark Fasheh81f20942006-02-28 17:31:22 -08002072 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
Daniel Phillips03d864c2006-03-10 18:08:16 -08002073 bucket = dlm_lockres_hash(dlm, i);
Mark Fasheh81f20942006-02-28 17:31:22 -08002074 hlist_for_each_entry(res, hash_iter, bucket, hash_node) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002075 if (res->state & DLM_LOCK_RES_RECOVERING) {
2076 if (res->owner == dead_node) {
2077 mlog(0, "(this=%u) res %.*s owner=%u "
2078 "was not on recovering list, but "
2079 "clearing state anyway\n",
2080 dlm->node_num, res->lockname.len,
2081 res->lockname.name, new_master);
2082 } else if (res->owner == dlm->node_num) {
2083 mlog(0, "(this=%u) res %.*s owner=%u "
2084 "was not on recovering list, "
2085 "owner is THIS node, clearing\n",
2086 dlm->node_num, res->lockname.len,
2087 res->lockname.name, new_master);
2088 } else
2089 continue;
2090
Kurt Hackelc03872f2006-03-06 14:08:49 -08002091 if (!list_empty(&res->recovering)) {
2092 mlog(0, "%s:%.*s: lockres was "
2093 "marked RECOVERING, owner=%u\n",
2094 dlm->name, res->lockname.len,
2095 res->lockname.name, res->owner);
2096 list_del_init(&res->recovering);
Kurt Hackel69d72b02006-05-01 10:57:51 -07002097 dlm_lockres_put(res);
Kurt Hackelc03872f2006-03-06 14:08:49 -08002098 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002099 spin_lock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002100 /* new_master has our reference from
2101 * the lock state sent during recovery */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002102 dlm_change_lockres_owner(dlm, res, new_master);
2103 res->state &= ~DLM_LOCK_RES_RECOVERING;
Kurt Hackelba2bf212006-12-01 14:47:20 -08002104 if (__dlm_lockres_has_locks(res))
Kurt Hackel69d72b02006-05-01 10:57:51 -07002105 __dlm_dirty_lockres(dlm, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002106 spin_unlock(&res->spinlock);
2107 wake_up(&res->wq);
2108 }
2109 }
2110 }
2111}
2112
2113static inline int dlm_lvb_needs_invalidation(struct dlm_lock *lock, int local)
2114{
2115 if (local) {
2116 if (lock->ml.type != LKM_EXMODE &&
2117 lock->ml.type != LKM_PRMODE)
2118 return 1;
2119 } else if (lock->ml.type == LKM_EXMODE)
2120 return 1;
2121 return 0;
2122}
2123
2124static void dlm_revalidate_lvb(struct dlm_ctxt *dlm,
2125 struct dlm_lock_resource *res, u8 dead_node)
2126{
Christoph Hellwig800deef2007-05-17 16:03:13 +02002127 struct list_head *queue;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002128 struct dlm_lock *lock;
2129 int blank_lvb = 0, local = 0;
2130 int i;
2131 u8 search_node;
2132
2133 assert_spin_locked(&dlm->spinlock);
2134 assert_spin_locked(&res->spinlock);
2135
2136 if (res->owner == dlm->node_num)
Sunil Mushran2bd63212010-01-25 16:57:38 -08002137 /* if this node owned the lockres, and if the dead node
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002138 * had an EX when he died, blank out the lvb */
2139 search_node = dead_node;
2140 else {
2141 /* if this is a secondary lockres, and we had no EX or PR
2142 * locks granted, we can no longer trust the lvb */
2143 search_node = dlm->node_num;
2144 local = 1; /* check local state for valid lvb */
2145 }
2146
2147 for (i=DLM_GRANTED_LIST; i<=DLM_CONVERTING_LIST; i++) {
2148 queue = dlm_list_idx_to_ptr(res, i);
Christoph Hellwig800deef2007-05-17 16:03:13 +02002149 list_for_each_entry(lock, queue, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002150 if (lock->ml.node == search_node) {
2151 if (dlm_lvb_needs_invalidation(lock, local)) {
2152 /* zero the lksb lvb and lockres lvb */
2153 blank_lvb = 1;
2154 memset(lock->lksb->lvb, 0, DLM_LVB_LEN);
2155 }
2156 }
2157 }
2158 }
2159
2160 if (blank_lvb) {
2161 mlog(0, "clearing %.*s lvb, dead node %u had EX\n",
2162 res->lockname.len, res->lockname.name, dead_node);
2163 memset(res->lvb, 0, DLM_LVB_LEN);
2164 }
2165}
2166
2167static void dlm_free_dead_locks(struct dlm_ctxt *dlm,
2168 struct dlm_lock_resource *res, u8 dead_node)
2169{
Christoph Hellwig800deef2007-05-17 16:03:13 +02002170 struct dlm_lock *lock, *next;
Kurt Hackelba2bf212006-12-01 14:47:20 -08002171 unsigned int freed = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002172
2173 /* this node is the lockres master:
2174 * 1) remove any stale locks for the dead node
Sunil Mushran2bd63212010-01-25 16:57:38 -08002175 * 2) if the dead node had an EX when he died, blank out the lvb
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002176 */
2177 assert_spin_locked(&dlm->spinlock);
2178 assert_spin_locked(&res->spinlock);
2179
Sunil Mushran2c5c54a2008-03-01 14:04:20 -08002180 /* We do two dlm_lock_put(). One for removing from list and the other is
2181 * to force the DLM_UNLOCK_FREE_LOCK action so as to free the locks */
2182
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002183 /* TODO: check pending_asts, pending_basts here */
Christoph Hellwig800deef2007-05-17 16:03:13 +02002184 list_for_each_entry_safe(lock, next, &res->granted, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002185 if (lock->ml.node == dead_node) {
2186 list_del_init(&lock->list);
2187 dlm_lock_put(lock);
Sunil Mushran2c5c54a2008-03-01 14:04:20 -08002188 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2189 dlm_lock_put(lock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002190 freed++;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002191 }
2192 }
Christoph Hellwig800deef2007-05-17 16:03:13 +02002193 list_for_each_entry_safe(lock, next, &res->converting, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002194 if (lock->ml.node == dead_node) {
2195 list_del_init(&lock->list);
2196 dlm_lock_put(lock);
Sunil Mushran2c5c54a2008-03-01 14:04:20 -08002197 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2198 dlm_lock_put(lock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002199 freed++;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002200 }
2201 }
Christoph Hellwig800deef2007-05-17 16:03:13 +02002202 list_for_each_entry_safe(lock, next, &res->blocked, list) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002203 if (lock->ml.node == dead_node) {
2204 list_del_init(&lock->list);
2205 dlm_lock_put(lock);
Sunil Mushran2c5c54a2008-03-01 14:04:20 -08002206 /* Can't schedule DLM_UNLOCK_FREE_LOCK - do manually */
2207 dlm_lock_put(lock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002208 freed++;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002209 }
2210 }
2211
Kurt Hackelba2bf212006-12-01 14:47:20 -08002212 if (freed) {
2213 mlog(0, "%s:%.*s: freed %u locks for dead node %u, "
2214 "dropping ref from lockres\n", dlm->name,
2215 res->lockname.len, res->lockname.name, freed, dead_node);
2216 BUG_ON(!test_bit(dead_node, res->refmap));
2217 dlm_lockres_clear_refmap_bit(dead_node, res);
2218 } else if (test_bit(dead_node, res->refmap)) {
2219 mlog(0, "%s:%.*s: dead node %u had a ref, but had "
2220 "no locks and had not purged before dying\n", dlm->name,
2221 res->lockname.len, res->lockname.name, dead_node);
2222 dlm_lockres_clear_refmap_bit(dead_node, res);
2223 }
2224
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002225 /* do not kick thread yet */
2226 __dlm_dirty_lockres(dlm, res);
2227}
2228
2229/* if this node is the recovery master, and there are no
2230 * locks for a given lockres owned by this node that are in
2231 * either PR or EX mode, zero out the lvb before requesting.
2232 *
2233 */
2234
2235
2236static void dlm_do_local_recovery_cleanup(struct dlm_ctxt *dlm, u8 dead_node)
2237{
Mark Fasheh81f20942006-02-28 17:31:22 -08002238 struct hlist_node *iter;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002239 struct dlm_lock_resource *res;
2240 int i;
Mark Fasheh81f20942006-02-28 17:31:22 -08002241 struct hlist_head *bucket;
Kurt Hackele2faea42006-01-12 14:24:55 -08002242 struct dlm_lock *lock;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002243
2244
2245 /* purge any stale mles */
2246 dlm_clean_master_list(dlm, dead_node);
2247
2248 /*
2249 * now clean up all lock resources. there are two rules:
2250 *
2251 * 1) if the dead node was the master, move the lockres
2252 * to the recovering list. set the RECOVERING flag.
2253 * this lockres needs to be cleaned up before it can
2254 * be used further.
2255 *
2256 * 2) if this node was the master, remove all locks from
2257 * each of the lockres queues that were owned by the
2258 * dead node. once recovery finishes, the dlm thread
2259 * can be kicked again to see if any ASTs or BASTs
2260 * need to be fired as a result.
2261 */
Mark Fasheh81f20942006-02-28 17:31:22 -08002262 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
Daniel Phillips03d864c2006-03-10 18:08:16 -08002263 bucket = dlm_lockres_hash(dlm, i);
Mark Fasheh81f20942006-02-28 17:31:22 -08002264 hlist_for_each_entry(res, iter, bucket, hash_node) {
Kurt Hackele2faea42006-01-12 14:24:55 -08002265 /* always prune any $RECOVERY entries for dead nodes,
2266 * otherwise hangs can occur during later recovery */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002267 if (dlm_is_recovery_lock(res->lockname.name,
Kurt Hackele2faea42006-01-12 14:24:55 -08002268 res->lockname.len)) {
2269 spin_lock(&res->spinlock);
2270 list_for_each_entry(lock, &res->granted, list) {
2271 if (lock->ml.node == dead_node) {
2272 mlog(0, "AHA! there was "
2273 "a $RECOVERY lock for dead "
2274 "node %u (%s)!\n",
2275 dead_node, dlm->name);
2276 list_del_init(&lock->list);
2277 dlm_lock_put(lock);
2278 break;
2279 }
2280 }
2281 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002282 continue;
Sunil Mushran2bd63212010-01-25 16:57:38 -08002283 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002284 spin_lock(&res->spinlock);
2285 /* zero the lvb if necessary */
2286 dlm_revalidate_lvb(dlm, res, dead_node);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002287 if (res->owner == dead_node) {
2288 if (res->state & DLM_LOCK_RES_DROPPING_REF)
2289 mlog(0, "%s:%.*s: owned by "
2290 "dead node %u, this node was "
2291 "dropping its ref when it died. "
2292 "continue, dropping the flag.\n",
2293 dlm->name, res->lockname.len,
2294 res->lockname.name, dead_node);
2295
2296 /* the wake_up for this will happen when the
2297 * RECOVERING flag is dropped later */
2298 res->state &= ~DLM_LOCK_RES_DROPPING_REF;
2299
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002300 dlm_move_lockres_to_recovery_list(dlm, res);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002301 } else if (res->owner == dlm->node_num) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002302 dlm_free_dead_locks(dlm, res, dead_node);
2303 __dlm_lockres_calc_usage(dlm, res);
2304 }
2305 spin_unlock(&res->spinlock);
2306 }
2307 }
2308
2309}
2310
2311static void __dlm_hb_node_down(struct dlm_ctxt *dlm, int idx)
2312{
2313 assert_spin_locked(&dlm->spinlock);
2314
Kurt Hackel466d1a42006-05-01 11:11:13 -07002315 if (dlm->reco.new_master == idx) {
2316 mlog(0, "%s: recovery master %d just died\n",
2317 dlm->name, idx);
2318 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2319 /* finalize1 was reached, so it is safe to clear
2320 * the new_master and dead_node. that recovery
2321 * is complete. */
2322 mlog(0, "%s: dead master %d had reached "
2323 "finalize1 state, clearing\n", dlm->name, idx);
2324 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
2325 __dlm_reset_recovery(dlm);
2326 }
2327 }
2328
Tao Ma2d4b1cb2008-01-10 15:20:55 +08002329 /* Clean up join state on node death. */
2330 if (dlm->joining_node == idx) {
2331 mlog(0, "Clearing join state for node %u\n", idx);
2332 __dlm_set_joining_node(dlm, DLM_LOCK_RES_OWNER_UNKNOWN);
2333 }
2334
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002335 /* check to see if the node is already considered dead */
2336 if (!test_bit(idx, dlm->live_nodes_map)) {
2337 mlog(0, "for domain %s, node %d is already dead. "
2338 "another node likely did recovery already.\n",
2339 dlm->name, idx);
2340 return;
2341 }
2342
2343 /* check to see if we do not care about this node */
2344 if (!test_bit(idx, dlm->domain_map)) {
2345 /* This also catches the case that we get a node down
2346 * but haven't joined the domain yet. */
2347 mlog(0, "node %u already removed from domain!\n", idx);
2348 return;
2349 }
2350
2351 clear_bit(idx, dlm->live_nodes_map);
2352
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002353 /* make sure local cleanup occurs before the heartbeat events */
2354 if (!test_bit(idx, dlm->recovery_map))
2355 dlm_do_local_recovery_cleanup(dlm, idx);
2356
2357 /* notify anything attached to the heartbeat events */
2358 dlm_hb_event_notify_attached(dlm, idx, 0);
2359
2360 mlog(0, "node %u being removed from domain map!\n", idx);
2361 clear_bit(idx, dlm->domain_map);
2362 /* wake up migration waiters if a node goes down.
2363 * perhaps later we can genericize this for other waiters. */
2364 wake_up(&dlm->migration_wq);
2365
2366 if (test_bit(idx, dlm->recovery_map))
2367 mlog(0, "domain %s, node %u already added "
2368 "to recovery map!\n", dlm->name, idx);
2369 else
2370 set_bit(idx, dlm->recovery_map);
2371}
2372
2373void dlm_hb_node_down_cb(struct o2nm_node *node, int idx, void *data)
2374{
2375 struct dlm_ctxt *dlm = data;
2376
2377 if (!dlm_grab(dlm))
2378 return;
2379
Mark Fasheh65611682007-09-07 11:11:10 -07002380 /*
2381 * This will notify any dlm users that a node in our domain
2382 * went away without notifying us first.
2383 */
2384 if (test_bit(idx, dlm->domain_map))
2385 dlm_fire_domain_eviction_callbacks(dlm, idx);
2386
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002387 spin_lock(&dlm->spinlock);
2388 __dlm_hb_node_down(dlm, idx);
2389 spin_unlock(&dlm->spinlock);
2390
2391 dlm_put(dlm);
2392}
2393
2394void dlm_hb_node_up_cb(struct o2nm_node *node, int idx, void *data)
2395{
2396 struct dlm_ctxt *dlm = data;
2397
2398 if (!dlm_grab(dlm))
2399 return;
2400
2401 spin_lock(&dlm->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002402 set_bit(idx, dlm->live_nodes_map);
Kurt Hackele2faea42006-01-12 14:24:55 -08002403 /* do NOT notify mle attached to the heartbeat events.
2404 * new nodes are not interesting in mastery until joined. */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002405 spin_unlock(&dlm->spinlock);
2406
2407 dlm_put(dlm);
2408}
2409
2410static void dlm_reco_ast(void *astdata)
2411{
2412 struct dlm_ctxt *dlm = astdata;
2413 mlog(0, "ast for recovery lock fired!, this=%u, dlm=%s\n",
2414 dlm->node_num, dlm->name);
2415}
2416static void dlm_reco_bast(void *astdata, int blocked_type)
2417{
2418 struct dlm_ctxt *dlm = astdata;
2419 mlog(0, "bast for recovery lock fired!, this=%u, dlm=%s\n",
2420 dlm->node_num, dlm->name);
2421}
2422static void dlm_reco_unlock_ast(void *astdata, enum dlm_status st)
2423{
2424 mlog(0, "unlockast for recovery lock fired!\n");
2425}
2426
Kurt Hackele2faea42006-01-12 14:24:55 -08002427/*
2428 * dlm_pick_recovery_master will continually attempt to use
2429 * dlmlock() on the special "$RECOVERY" lockres with the
2430 * LKM_NOQUEUE flag to get an EX. every thread that enters
2431 * this function on each node racing to become the recovery
2432 * master will not stop attempting this until either:
2433 * a) this node gets the EX (and becomes the recovery master),
Sunil Mushran2bd63212010-01-25 16:57:38 -08002434 * or b) dlm->reco.new_master gets set to some nodenum
Kurt Hackele2faea42006-01-12 14:24:55 -08002435 * != O2NM_INVALID_NODE_NUM (another node will do the reco).
2436 * so each time a recovery master is needed, the entire cluster
2437 * will sync at this point. if the new master dies, that will
2438 * be detected in dlm_do_recovery */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002439static int dlm_pick_recovery_master(struct dlm_ctxt *dlm)
2440{
2441 enum dlm_status ret;
2442 struct dlm_lockstatus lksb;
2443 int status = -EINVAL;
2444
2445 mlog(0, "starting recovery of %s at %lu, dead=%u, this=%u\n",
2446 dlm->name, jiffies, dlm->reco.dead_node, dlm->node_num);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002447again:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002448 memset(&lksb, 0, sizeof(lksb));
2449
2450 ret = dlmlock(dlm, LKM_EXMODE, &lksb, LKM_NOQUEUE|LKM_RECOVERY,
Mark Fasheh3384f3d2006-09-08 11:38:29 -07002451 DLM_RECOVERY_LOCK_NAME, DLM_RECOVERY_LOCK_NAME_LEN,
2452 dlm_reco_ast, dlm, dlm_reco_bast);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002453
Kurt Hackele2faea42006-01-12 14:24:55 -08002454 mlog(0, "%s: dlmlock($RECOVERY) returned %d, lksb=%d\n",
2455 dlm->name, ret, lksb.status);
2456
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002457 if (ret == DLM_NORMAL) {
2458 mlog(0, "dlm=%s dlmlock says I got it (this=%u)\n",
2459 dlm->name, dlm->node_num);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002460
2461 /* got the EX lock. check to see if another node
Kurt Hackele2faea42006-01-12 14:24:55 -08002462 * just became the reco master */
2463 if (dlm_reco_master_ready(dlm)) {
2464 mlog(0, "%s: got reco EX lock, but %u will "
2465 "do the recovery\n", dlm->name,
2466 dlm->reco.new_master);
2467 status = -EEXIST;
2468 } else {
Kurt Hackel898effa2006-01-18 17:01:25 -08002469 status = 0;
2470
2471 /* see if recovery was already finished elsewhere */
2472 spin_lock(&dlm->spinlock);
2473 if (dlm->reco.dead_node == O2NM_INVALID_NODE_NUM) {
Sunil Mushran2bd63212010-01-25 16:57:38 -08002474 status = -EINVAL;
Kurt Hackel898effa2006-01-18 17:01:25 -08002475 mlog(0, "%s: got reco EX lock, but "
2476 "node got recovered already\n", dlm->name);
2477 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
2478 mlog(ML_ERROR, "%s: new master is %u "
Sunil Mushran2bd63212010-01-25 16:57:38 -08002479 "but no dead node!\n",
Kurt Hackel898effa2006-01-18 17:01:25 -08002480 dlm->name, dlm->reco.new_master);
2481 BUG();
2482 }
2483 }
2484 spin_unlock(&dlm->spinlock);
2485 }
2486
2487 /* if this node has actually become the recovery master,
2488 * set the master and send the messages to begin recovery */
2489 if (!status) {
2490 mlog(0, "%s: dead=%u, this=%u, sending "
Sunil Mushran2bd63212010-01-25 16:57:38 -08002491 "begin_reco now\n", dlm->name,
Kurt Hackel898effa2006-01-18 17:01:25 -08002492 dlm->reco.dead_node, dlm->node_num);
Kurt Hackele2faea42006-01-12 14:24:55 -08002493 status = dlm_send_begin_reco_message(dlm,
2494 dlm->reco.dead_node);
2495 /* this always succeeds */
2496 BUG_ON(status);
2497
2498 /* set the new_master to this node */
2499 spin_lock(&dlm->spinlock);
Kurt Hackelab27eb62006-04-27 18:03:49 -07002500 dlm_set_reco_master(dlm, dlm->node_num);
Kurt Hackele2faea42006-01-12 14:24:55 -08002501 spin_unlock(&dlm->spinlock);
2502 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002503
2504 /* recovery lock is a special case. ast will not get fired,
2505 * so just go ahead and unlock it. */
2506 ret = dlmunlock(dlm, &lksb, 0, dlm_reco_unlock_ast, dlm);
Kurt Hackele2faea42006-01-12 14:24:55 -08002507 if (ret == DLM_DENIED) {
2508 mlog(0, "got DLM_DENIED, trying LKM_CANCEL\n");
2509 ret = dlmunlock(dlm, &lksb, LKM_CANCEL, dlm_reco_unlock_ast, dlm);
2510 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002511 if (ret != DLM_NORMAL) {
2512 /* this would really suck. this could only happen
2513 * if there was a network error during the unlock
2514 * because of node death. this means the unlock
2515 * is actually "done" and the lock structure is
2516 * even freed. we can continue, but only
2517 * because this specific lock name is special. */
Kurt Hackele2faea42006-01-12 14:24:55 -08002518 mlog(ML_ERROR, "dlmunlock returned %d\n", ret);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002519 }
2520 } else if (ret == DLM_NOTQUEUED) {
2521 mlog(0, "dlm=%s dlmlock says another node got it (this=%u)\n",
2522 dlm->name, dlm->node_num);
2523 /* another node is master. wait on
Sunil Mushran2bd63212010-01-25 16:57:38 -08002524 * reco.new_master != O2NM_INVALID_NODE_NUM
Kurt Hackele2faea42006-01-12 14:24:55 -08002525 * for at most one second */
2526 wait_event_timeout(dlm->dlm_reco_thread_wq,
2527 dlm_reco_master_ready(dlm),
2528 msecs_to_jiffies(1000));
2529 if (!dlm_reco_master_ready(dlm)) {
2530 mlog(0, "%s: reco master taking awhile\n",
2531 dlm->name);
2532 goto again;
2533 }
2534 /* another node has informed this one that it is reco master */
2535 mlog(0, "%s: reco master %u is ready to recover %u\n",
2536 dlm->name, dlm->reco.new_master, dlm->reco.dead_node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002537 status = -EEXIST;
Kurt Hackelc8df4122006-05-01 13:47:50 -07002538 } else if (ret == DLM_RECOVERING) {
2539 mlog(0, "dlm=%s dlmlock says master node died (this=%u)\n",
2540 dlm->name, dlm->node_num);
2541 goto again;
Kurt Hackele2faea42006-01-12 14:24:55 -08002542 } else {
2543 struct dlm_lock_resource *res;
2544
2545 /* dlmlock returned something other than NOTQUEUED or NORMAL */
2546 mlog(ML_ERROR, "%s: got %s from dlmlock($RECOVERY), "
2547 "lksb.status=%s\n", dlm->name, dlm_errname(ret),
2548 dlm_errname(lksb.status));
2549 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2550 DLM_RECOVERY_LOCK_NAME_LEN);
2551 if (res) {
2552 dlm_print_one_lock_resource(res);
2553 dlm_lockres_put(res);
2554 } else {
2555 mlog(ML_ERROR, "recovery lock not found\n");
2556 }
2557 BUG();
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002558 }
2559
2560 return status;
2561}
2562
2563static int dlm_send_begin_reco_message(struct dlm_ctxt *dlm, u8 dead_node)
2564{
2565 struct dlm_begin_reco br;
2566 int ret = 0;
2567 struct dlm_node_iter iter;
2568 int nodenum;
2569 int status;
2570
2571 mlog_entry("%u\n", dead_node);
2572
Kurt Hackeld6dea6e2006-04-27 18:08:51 -07002573 mlog(0, "%s: dead node is %u\n", dlm->name, dead_node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002574
2575 spin_lock(&dlm->spinlock);
2576 dlm_node_iter_init(dlm->domain_map, &iter);
2577 spin_unlock(&dlm->spinlock);
2578
2579 clear_bit(dead_node, iter.node_map);
2580
2581 memset(&br, 0, sizeof(br));
2582 br.node_idx = dlm->node_num;
2583 br.dead_node = dead_node;
2584
2585 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2586 ret = 0;
2587 if (nodenum == dead_node) {
2588 mlog(0, "not sending begin reco to dead node "
2589 "%u\n", dead_node);
2590 continue;
2591 }
2592 if (nodenum == dlm->node_num) {
2593 mlog(0, "not sending begin reco to self\n");
2594 continue;
2595 }
Kurt Hackele2faea42006-01-12 14:24:55 -08002596retry:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002597 ret = -EINVAL;
2598 mlog(0, "attempting to send begin reco msg to %d\n",
2599 nodenum);
2600 ret = o2net_send_message(DLM_BEGIN_RECO_MSG, dlm->key,
2601 &br, sizeof(br), nodenum, &status);
2602 /* negative status is handled ok by caller here */
2603 if (ret >= 0)
2604 ret = status;
Kurt Hackele2faea42006-01-12 14:24:55 -08002605 if (dlm_is_host_down(ret)) {
2606 /* node is down. not involved in recovery
2607 * so just keep going */
2608 mlog(0, "%s: node %u was down when sending "
2609 "begin reco msg (%d)\n", dlm->name, nodenum, ret);
2610 ret = 0;
2611 }
Tiger Yangaad1b152009-11-19 10:17:46 +08002612 if (ret == -EAGAIN) {
2613 mlog(0, "%s: trying to start recovery of node "
2614 "%u, but node %u is waiting for last recovery "
2615 "to complete, backoff for a bit\n", dlm->name,
2616 dead_node, nodenum);
2617 msleep(100);
2618 goto retry;
2619 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002620 if (ret < 0) {
2621 struct dlm_lock_resource *res;
Sunil Mushran2bd63212010-01-25 16:57:38 -08002622 /* this is now a serious problem, possibly ENOMEM
Kurt Hackele2faea42006-01-12 14:24:55 -08002623 * in the network stack. must retry */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002624 mlog_errno(ret);
2625 mlog(ML_ERROR, "begin reco of dlm %s to node %u "
2626 " returned %d\n", dlm->name, nodenum, ret);
2627 res = dlm_lookup_lockres(dlm, DLM_RECOVERY_LOCK_NAME,
2628 DLM_RECOVERY_LOCK_NAME_LEN);
2629 if (res) {
2630 dlm_print_one_lock_resource(res);
2631 dlm_lockres_put(res);
2632 } else {
2633 mlog(ML_ERROR, "recovery lock not found\n");
2634 }
Sunil Mushran2bd63212010-01-25 16:57:38 -08002635 /* sleep for a bit in hopes that we can avoid
Kurt Hackele2faea42006-01-12 14:24:55 -08002636 * another ENOMEM */
2637 msleep(100);
2638 goto retry;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002639 }
2640 }
2641
2642 return ret;
2643}
2644
Kurt Hackeld74c9802007-01-17 17:04:25 -08002645int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data,
2646 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002647{
2648 struct dlm_ctxt *dlm = data;
2649 struct dlm_begin_reco *br = (struct dlm_begin_reco *)msg->buf;
2650
2651 /* ok to return 0, domain has gone away */
2652 if (!dlm_grab(dlm))
2653 return 0;
2654
Kurt Hackel466d1a42006-05-01 11:11:13 -07002655 spin_lock(&dlm->spinlock);
2656 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2657 mlog(0, "%s: node %u wants to recover node %u (%u:%u) "
2658 "but this node is in finalize state, waiting on finalize2\n",
2659 dlm->name, br->node_idx, br->dead_node,
2660 dlm->reco.dead_node, dlm->reco.new_master);
2661 spin_unlock(&dlm->spinlock);
Tiger Yangaad1b152009-11-19 10:17:46 +08002662 return -EAGAIN;
Kurt Hackel466d1a42006-05-01 11:11:13 -07002663 }
2664 spin_unlock(&dlm->spinlock);
2665
Kurt Hackeld6dea6e2006-04-27 18:08:51 -07002666 mlog(0, "%s: node %u wants to recover node %u (%u:%u)\n",
2667 dlm->name, br->node_idx, br->dead_node,
2668 dlm->reco.dead_node, dlm->reco.new_master);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002669
2670 dlm_fire_domain_eviction_callbacks(dlm, br->dead_node);
2671
2672 spin_lock(&dlm->spinlock);
2673 if (dlm->reco.new_master != O2NM_INVALID_NODE_NUM) {
Kurt Hackele2faea42006-01-12 14:24:55 -08002674 if (test_bit(dlm->reco.new_master, dlm->recovery_map)) {
2675 mlog(0, "%s: new_master %u died, changing "
2676 "to %u\n", dlm->name, dlm->reco.new_master,
2677 br->node_idx);
2678 } else {
2679 mlog(0, "%s: new_master %u NOT DEAD, changing "
2680 "to %u\n", dlm->name, dlm->reco.new_master,
2681 br->node_idx);
2682 /* may not have seen the new master as dead yet */
2683 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002684 }
2685 if (dlm->reco.dead_node != O2NM_INVALID_NODE_NUM) {
Kurt Hackele2faea42006-01-12 14:24:55 -08002686 mlog(ML_NOTICE, "%s: dead_node previously set to %u, "
Sunil Mushran2bd63212010-01-25 16:57:38 -08002687 "node %u changing it to %u\n", dlm->name,
Kurt Hackele2faea42006-01-12 14:24:55 -08002688 dlm->reco.dead_node, br->node_idx, br->dead_node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002689 }
Kurt Hackelab27eb62006-04-27 18:03:49 -07002690 dlm_set_reco_master(dlm, br->node_idx);
2691 dlm_set_reco_dead_node(dlm, br->dead_node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002692 if (!test_bit(br->dead_node, dlm->recovery_map)) {
Kurt Hackele2faea42006-01-12 14:24:55 -08002693 mlog(0, "recovery master %u sees %u as dead, but this "
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002694 "node has not yet. marking %u as dead\n",
2695 br->node_idx, br->dead_node, br->dead_node);
Kurt Hackele2faea42006-01-12 14:24:55 -08002696 if (!test_bit(br->dead_node, dlm->domain_map) ||
2697 !test_bit(br->dead_node, dlm->live_nodes_map))
2698 mlog(0, "%u not in domain/live_nodes map "
2699 "so setting it in reco map manually\n",
2700 br->dead_node);
Kurt Hackelc03872f2006-03-06 14:08:49 -08002701 /* force the recovery cleanup in __dlm_hb_node_down
2702 * both of these will be cleared in a moment */
2703 set_bit(br->dead_node, dlm->domain_map);
2704 set_bit(br->dead_node, dlm->live_nodes_map);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002705 __dlm_hb_node_down(dlm, br->dead_node);
2706 }
2707 spin_unlock(&dlm->spinlock);
2708
2709 dlm_kick_recovery_thread(dlm);
Kurt Hackeld6dea6e2006-04-27 18:08:51 -07002710
2711 mlog(0, "%s: recovery started by node %u, for %u (%u:%u)\n",
2712 dlm->name, br->node_idx, br->dead_node,
2713 dlm->reco.dead_node, dlm->reco.new_master);
2714
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002715 dlm_put(dlm);
2716 return 0;
2717}
2718
Kurt Hackel466d1a42006-05-01 11:11:13 -07002719#define DLM_FINALIZE_STAGE2 0x01
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002720static int dlm_send_finalize_reco_message(struct dlm_ctxt *dlm)
2721{
2722 int ret = 0;
2723 struct dlm_finalize_reco fr;
2724 struct dlm_node_iter iter;
2725 int nodenum;
2726 int status;
Kurt Hackel466d1a42006-05-01 11:11:13 -07002727 int stage = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002728
Kurt Hackel466d1a42006-05-01 11:11:13 -07002729 mlog(0, "finishing recovery for node %s:%u, "
2730 "stage %d\n", dlm->name, dlm->reco.dead_node, stage);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002731
2732 spin_lock(&dlm->spinlock);
2733 dlm_node_iter_init(dlm->domain_map, &iter);
2734 spin_unlock(&dlm->spinlock);
2735
Kurt Hackel466d1a42006-05-01 11:11:13 -07002736stage2:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002737 memset(&fr, 0, sizeof(fr));
2738 fr.node_idx = dlm->node_num;
2739 fr.dead_node = dlm->reco.dead_node;
Kurt Hackel466d1a42006-05-01 11:11:13 -07002740 if (stage == 2)
2741 fr.flags |= DLM_FINALIZE_STAGE2;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002742
2743 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2744 if (nodenum == dlm->node_num)
2745 continue;
2746 ret = o2net_send_message(DLM_FINALIZE_RECO_MSG, dlm->key,
2747 &fr, sizeof(fr), nodenum, &status);
Kurt Hackel466d1a42006-05-01 11:11:13 -07002748 if (ret >= 0)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002749 ret = status;
Kurt Hackel466d1a42006-05-01 11:11:13 -07002750 if (ret < 0) {
2751 mlog_errno(ret);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002752 if (dlm_is_host_down(ret)) {
Sunil Mushran2bd63212010-01-25 16:57:38 -08002753 /* this has no effect on this recovery
2754 * session, so set the status to zero to
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002755 * finish out the last recovery */
2756 mlog(ML_ERROR, "node %u went down after this "
2757 "node finished recovery.\n", nodenum);
2758 ret = 0;
Kurt Hackelc27069e2006-05-01 13:51:49 -07002759 continue;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002760 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002761 break;
2762 }
2763 }
Kurt Hackel466d1a42006-05-01 11:11:13 -07002764 if (stage == 1) {
2765 /* reset the node_iter back to the top and send finalize2 */
2766 iter.curnode = -1;
2767 stage = 2;
2768 goto stage2;
2769 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002770
2771 return ret;
2772}
2773
Kurt Hackeld74c9802007-01-17 17:04:25 -08002774int dlm_finalize_reco_handler(struct o2net_msg *msg, u32 len, void *data,
2775 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002776{
2777 struct dlm_ctxt *dlm = data;
2778 struct dlm_finalize_reco *fr = (struct dlm_finalize_reco *)msg->buf;
Kurt Hackel466d1a42006-05-01 11:11:13 -07002779 int stage = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002780
2781 /* ok to return 0, domain has gone away */
2782 if (!dlm_grab(dlm))
2783 return 0;
2784
Kurt Hackel466d1a42006-05-01 11:11:13 -07002785 if (fr->flags & DLM_FINALIZE_STAGE2)
2786 stage = 2;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002787
Kurt Hackel466d1a42006-05-01 11:11:13 -07002788 mlog(0, "%s: node %u finalizing recovery stage%d of "
2789 "node %u (%u:%u)\n", dlm->name, fr->node_idx, stage,
2790 fr->dead_node, dlm->reco.dead_node, dlm->reco.new_master);
Sunil Mushran2bd63212010-01-25 16:57:38 -08002791
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002792 spin_lock(&dlm->spinlock);
2793
2794 if (dlm->reco.new_master != fr->node_idx) {
2795 mlog(ML_ERROR, "node %u sent recovery finalize msg, but node "
2796 "%u is supposed to be the new master, dead=%u\n",
2797 fr->node_idx, dlm->reco.new_master, fr->dead_node);
2798 BUG();
2799 }
2800 if (dlm->reco.dead_node != fr->dead_node) {
2801 mlog(ML_ERROR, "node %u sent recovery finalize msg for dead "
2802 "node %u, but node %u is supposed to be dead\n",
2803 fr->node_idx, fr->dead_node, dlm->reco.dead_node);
2804 BUG();
2805 }
2806
Kurt Hackel466d1a42006-05-01 11:11:13 -07002807 switch (stage) {
2808 case 1:
2809 dlm_finish_local_lockres_recovery(dlm, fr->dead_node, fr->node_idx);
2810 if (dlm->reco.state & DLM_RECO_STATE_FINALIZE) {
2811 mlog(ML_ERROR, "%s: received finalize1 from "
2812 "new master %u for dead node %u, but "
2813 "this node has already received it!\n",
2814 dlm->name, fr->node_idx, fr->dead_node);
2815 dlm_print_reco_node_status(dlm);
2816 BUG();
2817 }
2818 dlm->reco.state |= DLM_RECO_STATE_FINALIZE;
2819 spin_unlock(&dlm->spinlock);
2820 break;
2821 case 2:
2822 if (!(dlm->reco.state & DLM_RECO_STATE_FINALIZE)) {
2823 mlog(ML_ERROR, "%s: received finalize2 from "
2824 "new master %u for dead node %u, but "
2825 "this node did not have finalize1!\n",
2826 dlm->name, fr->node_idx, fr->dead_node);
2827 dlm_print_reco_node_status(dlm);
2828 BUG();
2829 }
2830 dlm->reco.state &= ~DLM_RECO_STATE_FINALIZE;
2831 spin_unlock(&dlm->spinlock);
2832 dlm_reset_recovery(dlm);
2833 dlm_kick_recovery_thread(dlm);
2834 break;
2835 default:
2836 BUG();
2837 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002838
Kurt Hackeld6dea6e2006-04-27 18:08:51 -07002839 mlog(0, "%s: recovery done, reco master was %u, dead now %u, master now %u\n",
2840 dlm->name, fr->node_idx, dlm->reco.dead_node, dlm->reco.new_master);
2841
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002842 dlm_put(dlm);
2843 return 0;
2844}