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