pandora: defconfig: update
[pandora-kernel.git] / fs / ocfs2 / dlm / dlmmaster.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * dlmmod.c
5  *
6  * standalone DLM module
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/init.h>
34 #include <linux/sysctl.h>
35 #include <linux/random.h>
36 #include <linux/blkdev.h>
37 #include <linux/socket.h>
38 #include <linux/inet.h>
39 #include <linux/spinlock.h>
40 #include <linux/delay.h>
41
42
43 #include "cluster/heartbeat.h"
44 #include "cluster/nodemanager.h"
45 #include "cluster/tcp.h"
46
47 #include "dlmapi.h"
48 #include "dlmcommon.h"
49 #include "dlmdomain.h"
50 #include "dlmdebug.h"
51
52 #define MLOG_MASK_PREFIX (ML_DLM|ML_DLM_MASTER)
53 #include "cluster/masklog.h"
54
55 static void dlm_mle_node_down(struct dlm_ctxt *dlm,
56                               struct dlm_master_list_entry *mle,
57                               struct o2nm_node *node,
58                               int idx);
59 static void dlm_mle_node_up(struct dlm_ctxt *dlm,
60                             struct dlm_master_list_entry *mle,
61                             struct o2nm_node *node,
62                             int idx);
63
64 static void dlm_assert_master_worker(struct dlm_work_item *item, void *data);
65 static int dlm_do_assert_master(struct dlm_ctxt *dlm,
66                                 struct dlm_lock_resource *res,
67                                 void *nodemap, u32 flags);
68 static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data);
69
70 static inline int dlm_mle_equal(struct dlm_ctxt *dlm,
71                                 struct dlm_master_list_entry *mle,
72                                 const char *name,
73                                 unsigned int namelen)
74 {
75         if (dlm != mle->dlm)
76                 return 0;
77
78         if (namelen != mle->mnamelen ||
79             memcmp(name, mle->mname, namelen) != 0)
80                 return 0;
81
82         return 1;
83 }
84
85 static struct kmem_cache *dlm_lockres_cache = NULL;
86 static struct kmem_cache *dlm_lockname_cache = NULL;
87 static struct kmem_cache *dlm_mle_cache = NULL;
88
89 static void dlm_mle_release(struct kref *kref);
90 static void dlm_init_mle(struct dlm_master_list_entry *mle,
91                         enum dlm_mle_type type,
92                         struct dlm_ctxt *dlm,
93                         struct dlm_lock_resource *res,
94                         const char *name,
95                         unsigned int namelen);
96 static void dlm_put_mle(struct dlm_master_list_entry *mle);
97 static void __dlm_put_mle(struct dlm_master_list_entry *mle);
98 static int dlm_find_mle(struct dlm_ctxt *dlm,
99                         struct dlm_master_list_entry **mle,
100                         char *name, unsigned int namelen);
101
102 static int dlm_do_master_request(struct dlm_lock_resource *res,
103                                  struct dlm_master_list_entry *mle, int to);
104
105
106 static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm,
107                                      struct dlm_lock_resource *res,
108                                      struct dlm_master_list_entry *mle,
109                                      int *blocked);
110 static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm,
111                                     struct dlm_lock_resource *res,
112                                     struct dlm_master_list_entry *mle,
113                                     int blocked);
114 static int dlm_add_migration_mle(struct dlm_ctxt *dlm,
115                                  struct dlm_lock_resource *res,
116                                  struct dlm_master_list_entry *mle,
117                                  struct dlm_master_list_entry **oldmle,
118                                  const char *name, unsigned int namelen,
119                                  u8 new_master, u8 master);
120
121 static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm,
122                                     struct dlm_lock_resource *res);
123 static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm,
124                                       struct dlm_lock_resource *res);
125 static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm,
126                                        struct dlm_lock_resource *res,
127                                        u8 target);
128 static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm,
129                                        struct dlm_lock_resource *res);
130
131
132 int dlm_is_host_down(int errno)
133 {
134         switch (errno) {
135                 case -EBADF:
136                 case -ECONNREFUSED:
137                 case -ENOTCONN:
138                 case -ECONNRESET:
139                 case -EPIPE:
140                 case -EHOSTDOWN:
141                 case -EHOSTUNREACH:
142                 case -ETIMEDOUT:
143                 case -ECONNABORTED:
144                 case -ENETDOWN:
145                 case -ENETUNREACH:
146                 case -ENETRESET:
147                 case -ESHUTDOWN:
148                 case -ENOPROTOOPT:
149                 case -EINVAL:   /* if returned from our tcp code,
150                                    this means there is no socket */
151                         return 1;
152         }
153         return 0;
154 }
155
156
157 /*
158  * MASTER LIST FUNCTIONS
159  */
160
161
162 /*
163  * regarding master list entries and heartbeat callbacks:
164  *
165  * in order to avoid sleeping and allocation that occurs in
166  * heartbeat, master list entries are simply attached to the
167  * dlm's established heartbeat callbacks.  the mle is attached
168  * when it is created, and since the dlm->spinlock is held at
169  * that time, any heartbeat event will be properly discovered
170  * by the mle.  the mle needs to be detached from the
171  * dlm->mle_hb_events list as soon as heartbeat events are no
172  * longer useful to the mle, and before the mle is freed.
173  *
174  * as a general rule, heartbeat events are no longer needed by
175  * the mle once an "answer" regarding the lock master has been
176  * received.
177  */
178 static inline void __dlm_mle_attach_hb_events(struct dlm_ctxt *dlm,
179                                               struct dlm_master_list_entry *mle)
180 {
181         assert_spin_locked(&dlm->spinlock);
182
183         list_add_tail(&mle->hb_events, &dlm->mle_hb_events);
184 }
185
186
187 static inline void __dlm_mle_detach_hb_events(struct dlm_ctxt *dlm,
188                                               struct dlm_master_list_entry *mle)
189 {
190         if (!list_empty(&mle->hb_events))
191                 list_del_init(&mle->hb_events);
192 }
193
194
195 static inline void dlm_mle_detach_hb_events(struct dlm_ctxt *dlm,
196                                             struct dlm_master_list_entry *mle)
197 {
198         spin_lock(&dlm->spinlock);
199         __dlm_mle_detach_hb_events(dlm, mle);
200         spin_unlock(&dlm->spinlock);
201 }
202
203 static void dlm_get_mle_inuse(struct dlm_master_list_entry *mle)
204 {
205         struct dlm_ctxt *dlm;
206         dlm = mle->dlm;
207
208         assert_spin_locked(&dlm->spinlock);
209         assert_spin_locked(&dlm->master_lock);
210         mle->inuse++;
211         kref_get(&mle->mle_refs);
212 }
213
214 static void dlm_put_mle_inuse(struct dlm_master_list_entry *mle)
215 {
216         struct dlm_ctxt *dlm;
217         dlm = mle->dlm;
218
219         spin_lock(&dlm->spinlock);
220         spin_lock(&dlm->master_lock);
221         mle->inuse--;
222         __dlm_put_mle(mle);
223         spin_unlock(&dlm->master_lock);
224         spin_unlock(&dlm->spinlock);
225
226 }
227
228 /* remove from list and free */
229 static void __dlm_put_mle(struct dlm_master_list_entry *mle)
230 {
231         struct dlm_ctxt *dlm;
232         dlm = mle->dlm;
233
234         assert_spin_locked(&dlm->spinlock);
235         assert_spin_locked(&dlm->master_lock);
236         if (!atomic_read(&mle->mle_refs.refcount)) {
237                 /* this may or may not crash, but who cares.
238                  * it's a BUG. */
239                 mlog(ML_ERROR, "bad mle: %p\n", mle);
240                 dlm_print_one_mle(mle);
241                 BUG();
242         } else
243                 kref_put(&mle->mle_refs, dlm_mle_release);
244 }
245
246
247 /* must not have any spinlocks coming in */
248 static void dlm_put_mle(struct dlm_master_list_entry *mle)
249 {
250         struct dlm_ctxt *dlm;
251         dlm = mle->dlm;
252
253         spin_lock(&dlm->spinlock);
254         spin_lock(&dlm->master_lock);
255         __dlm_put_mle(mle);
256         spin_unlock(&dlm->master_lock);
257         spin_unlock(&dlm->spinlock);
258 }
259
260 static inline void dlm_get_mle(struct dlm_master_list_entry *mle)
261 {
262         kref_get(&mle->mle_refs);
263 }
264
265 static void dlm_init_mle(struct dlm_master_list_entry *mle,
266                         enum dlm_mle_type type,
267                         struct dlm_ctxt *dlm,
268                         struct dlm_lock_resource *res,
269                         const char *name,
270                         unsigned int namelen)
271 {
272         assert_spin_locked(&dlm->spinlock);
273
274         mle->dlm = dlm;
275         mle->type = type;
276         INIT_HLIST_NODE(&mle->master_hash_node);
277         INIT_LIST_HEAD(&mle->hb_events);
278         memset(mle->maybe_map, 0, sizeof(mle->maybe_map));
279         spin_lock_init(&mle->spinlock);
280         init_waitqueue_head(&mle->wq);
281         atomic_set(&mle->woken, 0);
282         kref_init(&mle->mle_refs);
283         memset(mle->response_map, 0, sizeof(mle->response_map));
284         mle->master = O2NM_MAX_NODES;
285         mle->new_master = O2NM_MAX_NODES;
286         mle->inuse = 0;
287
288         BUG_ON(mle->type != DLM_MLE_BLOCK &&
289                mle->type != DLM_MLE_MASTER &&
290                mle->type != DLM_MLE_MIGRATION);
291
292         if (mle->type == DLM_MLE_MASTER) {
293                 BUG_ON(!res);
294                 mle->mleres = res;
295                 memcpy(mle->mname, res->lockname.name, res->lockname.len);
296                 mle->mnamelen = res->lockname.len;
297                 mle->mnamehash = res->lockname.hash;
298         } else {
299                 BUG_ON(!name);
300                 mle->mleres = NULL;
301                 memcpy(mle->mname, name, namelen);
302                 mle->mnamelen = namelen;
303                 mle->mnamehash = dlm_lockid_hash(name, namelen);
304         }
305
306         atomic_inc(&dlm->mle_tot_count[mle->type]);
307         atomic_inc(&dlm->mle_cur_count[mle->type]);
308
309         /* copy off the node_map and register hb callbacks on our copy */
310         memcpy(mle->node_map, dlm->domain_map, sizeof(mle->node_map));
311         memcpy(mle->vote_map, dlm->domain_map, sizeof(mle->vote_map));
312         clear_bit(dlm->node_num, mle->vote_map);
313         clear_bit(dlm->node_num, mle->node_map);
314
315         /* attach the mle to the domain node up/down events */
316         __dlm_mle_attach_hb_events(dlm, mle);
317 }
318
319 void __dlm_unlink_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle)
320 {
321         assert_spin_locked(&dlm->spinlock);
322         assert_spin_locked(&dlm->master_lock);
323
324         if (!hlist_unhashed(&mle->master_hash_node))
325                 hlist_del_init(&mle->master_hash_node);
326 }
327
328 void __dlm_insert_mle(struct dlm_ctxt *dlm, struct dlm_master_list_entry *mle)
329 {
330         struct hlist_head *bucket;
331
332         assert_spin_locked(&dlm->master_lock);
333
334         bucket = dlm_master_hash(dlm, mle->mnamehash);
335         hlist_add_head(&mle->master_hash_node, bucket);
336 }
337
338 /* returns 1 if found, 0 if not */
339 static int dlm_find_mle(struct dlm_ctxt *dlm,
340                         struct dlm_master_list_entry **mle,
341                         char *name, unsigned int namelen)
342 {
343         struct dlm_master_list_entry *tmpmle;
344         struct hlist_head *bucket;
345         struct hlist_node *list;
346         unsigned int hash;
347
348         assert_spin_locked(&dlm->master_lock);
349
350         hash = dlm_lockid_hash(name, namelen);
351         bucket = dlm_master_hash(dlm, hash);
352         hlist_for_each(list, bucket) {
353                 tmpmle = hlist_entry(list, struct dlm_master_list_entry,
354                                      master_hash_node);
355                 if (!dlm_mle_equal(dlm, tmpmle, name, namelen))
356                         continue;
357                 dlm_get_mle(tmpmle);
358                 *mle = tmpmle;
359                 return 1;
360         }
361         return 0;
362 }
363
364 void dlm_hb_event_notify_attached(struct dlm_ctxt *dlm, int idx, int node_up)
365 {
366         struct dlm_master_list_entry *mle;
367
368         assert_spin_locked(&dlm->spinlock);
369
370         list_for_each_entry(mle, &dlm->mle_hb_events, hb_events) {
371                 if (node_up)
372                         dlm_mle_node_up(dlm, mle, NULL, idx);
373                 else
374                         dlm_mle_node_down(dlm, mle, NULL, idx);
375         }
376 }
377
378 static void dlm_mle_node_down(struct dlm_ctxt *dlm,
379                               struct dlm_master_list_entry *mle,
380                               struct o2nm_node *node, int idx)
381 {
382         spin_lock(&mle->spinlock);
383
384         if (!test_bit(idx, mle->node_map))
385                 mlog(0, "node %u already removed from nodemap!\n", idx);
386         else
387                 clear_bit(idx, mle->node_map);
388
389         spin_unlock(&mle->spinlock);
390 }
391
392 static void dlm_mle_node_up(struct dlm_ctxt *dlm,
393                             struct dlm_master_list_entry *mle,
394                             struct o2nm_node *node, int idx)
395 {
396         spin_lock(&mle->spinlock);
397
398         if (test_bit(idx, mle->node_map))
399                 mlog(0, "node %u already in node map!\n", idx);
400         else
401                 set_bit(idx, mle->node_map);
402
403         spin_unlock(&mle->spinlock);
404 }
405
406
407 int dlm_init_mle_cache(void)
408 {
409         dlm_mle_cache = kmem_cache_create("o2dlm_mle",
410                                           sizeof(struct dlm_master_list_entry),
411                                           0, SLAB_HWCACHE_ALIGN,
412                                           NULL);
413         if (dlm_mle_cache == NULL)
414                 return -ENOMEM;
415         return 0;
416 }
417
418 void dlm_destroy_mle_cache(void)
419 {
420         if (dlm_mle_cache)
421                 kmem_cache_destroy(dlm_mle_cache);
422 }
423
424 static void dlm_mle_release(struct kref *kref)
425 {
426         struct dlm_master_list_entry *mle;
427         struct dlm_ctxt *dlm;
428
429         mle = container_of(kref, struct dlm_master_list_entry, mle_refs);
430         dlm = mle->dlm;
431
432         assert_spin_locked(&dlm->spinlock);
433         assert_spin_locked(&dlm->master_lock);
434
435         mlog(0, "Releasing mle for %.*s, type %d\n", mle->mnamelen, mle->mname,
436              mle->type);
437
438         /* remove from list if not already */
439         __dlm_unlink_mle(dlm, mle);
440
441         /* detach the mle from the domain node up/down events */
442         __dlm_mle_detach_hb_events(dlm, mle);
443
444         atomic_dec(&dlm->mle_cur_count[mle->type]);
445
446         /* NOTE: kfree under spinlock here.
447          * if this is bad, we can move this to a freelist. */
448         kmem_cache_free(dlm_mle_cache, mle);
449 }
450
451
452 /*
453  * LOCK RESOURCE FUNCTIONS
454  */
455
456 int dlm_init_master_caches(void)
457 {
458         dlm_lockres_cache = kmem_cache_create("o2dlm_lockres",
459                                               sizeof(struct dlm_lock_resource),
460                                               0, SLAB_HWCACHE_ALIGN, NULL);
461         if (!dlm_lockres_cache)
462                 goto bail;
463
464         dlm_lockname_cache = kmem_cache_create("o2dlm_lockname",
465                                                DLM_LOCKID_NAME_MAX, 0,
466                                                SLAB_HWCACHE_ALIGN, NULL);
467         if (!dlm_lockname_cache)
468                 goto bail;
469
470         return 0;
471 bail:
472         dlm_destroy_master_caches();
473         return -ENOMEM;
474 }
475
476 void dlm_destroy_master_caches(void)
477 {
478         if (dlm_lockname_cache)
479                 kmem_cache_destroy(dlm_lockname_cache);
480
481         if (dlm_lockres_cache)
482                 kmem_cache_destroy(dlm_lockres_cache);
483 }
484
485 static void dlm_lockres_release(struct kref *kref)
486 {
487         struct dlm_lock_resource *res;
488         struct dlm_ctxt *dlm;
489
490         res = container_of(kref, struct dlm_lock_resource, refs);
491         dlm = res->dlm;
492
493         /* This should not happen -- all lockres' have a name
494          * associated with them at init time. */
495         BUG_ON(!res->lockname.name);
496
497         mlog(0, "destroying lockres %.*s\n", res->lockname.len,
498              res->lockname.name);
499
500         spin_lock(&dlm->track_lock);
501         if (!list_empty(&res->tracking))
502                 list_del_init(&res->tracking);
503         else {
504                 mlog(ML_ERROR, "Resource %.*s not on the Tracking list\n",
505                      res->lockname.len, res->lockname.name);
506                 dlm_print_one_lock_resource(res);
507         }
508         spin_unlock(&dlm->track_lock);
509
510         atomic_dec(&dlm->res_cur_count);
511
512         if (!hlist_unhashed(&res->hash_node) ||
513             !list_empty(&res->granted) ||
514             !list_empty(&res->converting) ||
515             !list_empty(&res->blocked) ||
516             !list_empty(&res->dirty) ||
517             !list_empty(&res->recovering) ||
518             !list_empty(&res->purge)) {
519                 mlog(ML_ERROR,
520                      "Going to BUG for resource %.*s."
521                      "  We're on a list! [%c%c%c%c%c%c%c]\n",
522                      res->lockname.len, res->lockname.name,
523                      !hlist_unhashed(&res->hash_node) ? 'H' : ' ',
524                      !list_empty(&res->granted) ? 'G' : ' ',
525                      !list_empty(&res->converting) ? 'C' : ' ',
526                      !list_empty(&res->blocked) ? 'B' : ' ',
527                      !list_empty(&res->dirty) ? 'D' : ' ',
528                      !list_empty(&res->recovering) ? 'R' : ' ',
529                      !list_empty(&res->purge) ? 'P' : ' ');
530
531                 dlm_print_one_lock_resource(res);
532         }
533
534         /* By the time we're ready to blow this guy away, we shouldn't
535          * be on any lists. */
536         BUG_ON(!hlist_unhashed(&res->hash_node));
537         BUG_ON(!list_empty(&res->granted));
538         BUG_ON(!list_empty(&res->converting));
539         BUG_ON(!list_empty(&res->blocked));
540         BUG_ON(!list_empty(&res->dirty));
541         BUG_ON(!list_empty(&res->recovering));
542         BUG_ON(!list_empty(&res->purge));
543
544         kmem_cache_free(dlm_lockname_cache, (void *)res->lockname.name);
545
546         kmem_cache_free(dlm_lockres_cache, res);
547 }
548
549 void dlm_lockres_put(struct dlm_lock_resource *res)
550 {
551         kref_put(&res->refs, dlm_lockres_release);
552 }
553
554 static void dlm_init_lockres(struct dlm_ctxt *dlm,
555                              struct dlm_lock_resource *res,
556                              const char *name, unsigned int namelen)
557 {
558         char *qname;
559
560         /* If we memset here, we lose our reference to the kmalloc'd
561          * res->lockname.name, so be sure to init every field
562          * correctly! */
563
564         qname = (char *) res->lockname.name;
565         memcpy(qname, name, namelen);
566
567         res->lockname.len = namelen;
568         res->lockname.hash = dlm_lockid_hash(name, namelen);
569
570         init_waitqueue_head(&res->wq);
571         spin_lock_init(&res->spinlock);
572         INIT_HLIST_NODE(&res->hash_node);
573         INIT_LIST_HEAD(&res->granted);
574         INIT_LIST_HEAD(&res->converting);
575         INIT_LIST_HEAD(&res->blocked);
576         INIT_LIST_HEAD(&res->dirty);
577         INIT_LIST_HEAD(&res->recovering);
578         INIT_LIST_HEAD(&res->purge);
579         INIT_LIST_HEAD(&res->tracking);
580         atomic_set(&res->asts_reserved, 0);
581         res->migration_pending = 0;
582         res->inflight_locks = 0;
583
584         res->dlm = dlm;
585
586         kref_init(&res->refs);
587
588         atomic_inc(&dlm->res_tot_count);
589         atomic_inc(&dlm->res_cur_count);
590
591         /* just for consistency */
592         spin_lock(&res->spinlock);
593         dlm_set_lockres_owner(dlm, res, DLM_LOCK_RES_OWNER_UNKNOWN);
594         spin_unlock(&res->spinlock);
595
596         res->state = DLM_LOCK_RES_IN_PROGRESS;
597
598         res->last_used = 0;
599
600         spin_lock(&dlm->spinlock);
601         list_add_tail(&res->tracking, &dlm->tracking_list);
602         spin_unlock(&dlm->spinlock);
603
604         memset(res->lvb, 0, DLM_LVB_LEN);
605         memset(res->refmap, 0, sizeof(res->refmap));
606 }
607
608 struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm,
609                                    const char *name,
610                                    unsigned int namelen)
611 {
612         struct dlm_lock_resource *res = NULL;
613
614         res = kmem_cache_zalloc(dlm_lockres_cache, GFP_NOFS);
615         if (!res)
616                 goto error;
617
618         res->lockname.name = kmem_cache_zalloc(dlm_lockname_cache, GFP_NOFS);
619         if (!res->lockname.name)
620                 goto error;
621
622         dlm_init_lockres(dlm, res, name, namelen);
623         return res;
624
625 error:
626         if (res && res->lockname.name)
627                 kmem_cache_free(dlm_lockname_cache, (void *)res->lockname.name);
628
629         if (res)
630                 kmem_cache_free(dlm_lockres_cache, res);
631         return NULL;
632 }
633
634 void dlm_lockres_set_refmap_bit(struct dlm_ctxt *dlm,
635                                 struct dlm_lock_resource *res, int bit)
636 {
637         assert_spin_locked(&res->spinlock);
638
639         mlog(0, "res %.*s, set node %u, %ps()\n", res->lockname.len,
640              res->lockname.name, bit, __builtin_return_address(0));
641
642         set_bit(bit, res->refmap);
643 }
644
645 void dlm_lockres_clear_refmap_bit(struct dlm_ctxt *dlm,
646                                   struct dlm_lock_resource *res, int bit)
647 {
648         assert_spin_locked(&res->spinlock);
649
650         mlog(0, "res %.*s, clr node %u, %ps()\n", res->lockname.len,
651              res->lockname.name, bit, __builtin_return_address(0));
652
653         clear_bit(bit, res->refmap);
654 }
655
656 static void __dlm_lockres_grab_inflight_ref(struct dlm_ctxt *dlm,
657                                    struct dlm_lock_resource *res)
658 {
659         res->inflight_locks++;
660
661         mlog(0, "%s: res %.*s, inflight++: now %u, %ps()\n", dlm->name,
662              res->lockname.len, res->lockname.name, res->inflight_locks,
663              __builtin_return_address(0));
664 }
665
666 void dlm_lockres_grab_inflight_ref(struct dlm_ctxt *dlm,
667                                    struct dlm_lock_resource *res)
668 {
669         assert_spin_locked(&res->spinlock);
670         __dlm_lockres_grab_inflight_ref(dlm, res);
671 }
672
673 void dlm_lockres_drop_inflight_ref(struct dlm_ctxt *dlm,
674                                    struct dlm_lock_resource *res)
675 {
676         assert_spin_locked(&res->spinlock);
677
678         BUG_ON(res->inflight_locks == 0);
679
680         res->inflight_locks--;
681
682         mlog(0, "%s: res %.*s, inflight--: now %u, %ps()\n", dlm->name,
683              res->lockname.len, res->lockname.name, res->inflight_locks,
684              __builtin_return_address(0));
685
686         wake_up(&res->wq);
687 }
688
689 /*
690  * lookup a lock resource by name.
691  * may already exist in the hashtable.
692  * lockid is null terminated
693  *
694  * if not, allocate enough for the lockres and for
695  * the temporary structure used in doing the mastering.
696  *
697  * also, do a lookup in the dlm->master_list to see
698  * if another node has begun mastering the same lock.
699  * if so, there should be a block entry in there
700  * for this name, and we should *not* attempt to master
701  * the lock here.   need to wait around for that node
702  * to assert_master (or die).
703  *
704  */
705 struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
706                                           const char *lockid,
707                                           int namelen,
708                                           int flags)
709 {
710         struct dlm_lock_resource *tmpres=NULL, *res=NULL;
711         struct dlm_master_list_entry *mle = NULL;
712         struct dlm_master_list_entry *alloc_mle = NULL;
713         int blocked = 0;
714         int ret, nodenum;
715         struct dlm_node_iter iter;
716         unsigned int hash;
717         int tries = 0;
718         int bit, wait_on_recovery = 0;
719
720         BUG_ON(!lockid);
721
722         hash = dlm_lockid_hash(lockid, namelen);
723
724         mlog(0, "get lockres %s (len %d)\n", lockid, namelen);
725
726 lookup:
727         spin_lock(&dlm->spinlock);
728         tmpres = __dlm_lookup_lockres_full(dlm, lockid, namelen, hash);
729         if (tmpres) {
730                 spin_unlock(&dlm->spinlock);
731                 spin_lock(&tmpres->spinlock);
732
733                 /*
734                  * Right after dlm spinlock was released, dlm_thread could have
735                  * purged the lockres. Check if lockres got unhashed. If so
736                  * start over.
737                  */
738                 if (hlist_unhashed(&tmpres->hash_node)) {
739                         spin_unlock(&tmpres->spinlock);
740                         dlm_lockres_put(tmpres);
741                         tmpres = NULL;
742                         goto lookup;
743                 }
744
745                 /* Wait on the thread that is mastering the resource */
746                 if (tmpres->owner == DLM_LOCK_RES_OWNER_UNKNOWN) {
747                         __dlm_wait_on_lockres(tmpres);
748                         BUG_ON(tmpres->owner == DLM_LOCK_RES_OWNER_UNKNOWN);
749                         spin_unlock(&tmpres->spinlock);
750                         dlm_lockres_put(tmpres);
751                         tmpres = NULL;
752                         goto lookup;
753                 }
754
755                 /* Wait on the resource purge to complete before continuing */
756                 if (tmpres->state & DLM_LOCK_RES_DROPPING_REF) {
757                         BUG_ON(tmpres->owner == dlm->node_num);
758                         __dlm_wait_on_lockres_flags(tmpres,
759                                                     DLM_LOCK_RES_DROPPING_REF);
760                         spin_unlock(&tmpres->spinlock);
761                         dlm_lockres_put(tmpres);
762                         tmpres = NULL;
763                         goto lookup;
764                 }
765
766                 /* Grab inflight ref to pin the resource */
767                 dlm_lockres_grab_inflight_ref(dlm, tmpres);
768
769                 spin_unlock(&tmpres->spinlock);
770                 if (res)
771                         dlm_lockres_put(res);
772                 res = tmpres;
773                 goto leave;
774         }
775
776         if (!res) {
777                 spin_unlock(&dlm->spinlock);
778                 mlog(0, "allocating a new resource\n");
779                 /* nothing found and we need to allocate one. */
780                 alloc_mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
781                 if (!alloc_mle)
782                         goto leave;
783                 res = dlm_new_lockres(dlm, lockid, namelen);
784                 if (!res)
785                         goto leave;
786                 goto lookup;
787         }
788
789         mlog(0, "no lockres found, allocated our own: %p\n", res);
790
791         if (flags & LKM_LOCAL) {
792                 /* caller knows it's safe to assume it's not mastered elsewhere
793                  * DONE!  return right away */
794                 spin_lock(&res->spinlock);
795                 dlm_change_lockres_owner(dlm, res, dlm->node_num);
796                 __dlm_insert_lockres(dlm, res);
797                 dlm_lockres_grab_inflight_ref(dlm, res);
798                 spin_unlock(&res->spinlock);
799                 spin_unlock(&dlm->spinlock);
800                 /* lockres still marked IN_PROGRESS */
801                 goto wake_waiters;
802         }
803
804         /* check master list to see if another node has started mastering it */
805         spin_lock(&dlm->master_lock);
806
807         /* if we found a block, wait for lock to be mastered by another node */
808         blocked = dlm_find_mle(dlm, &mle, (char *)lockid, namelen);
809         if (blocked) {
810                 int mig;
811                 if (mle->type == DLM_MLE_MASTER) {
812                         mlog(ML_ERROR, "master entry for nonexistent lock!\n");
813                         BUG();
814                 }
815                 mig = (mle->type == DLM_MLE_MIGRATION);
816                 /* if there is a migration in progress, let the migration
817                  * finish before continuing.  we can wait for the absence
818                  * of the MIGRATION mle: either the migrate finished or
819                  * one of the nodes died and the mle was cleaned up.
820                  * if there is a BLOCK here, but it already has a master
821                  * set, we are too late.  the master does not have a ref
822                  * for us in the refmap.  detach the mle and drop it.
823                  * either way, go back to the top and start over. */
824                 if (mig || mle->master != O2NM_MAX_NODES) {
825                         BUG_ON(mig && mle->master == dlm->node_num);
826                         /* we arrived too late.  the master does not
827                          * have a ref for us. retry. */
828                         mlog(0, "%s:%.*s: late on %s\n",
829                              dlm->name, namelen, lockid,
830                              mig ?  "MIGRATION" : "BLOCK");
831                         spin_unlock(&dlm->master_lock);
832                         spin_unlock(&dlm->spinlock);
833
834                         /* master is known, detach */
835                         if (!mig)
836                                 dlm_mle_detach_hb_events(dlm, mle);
837                         dlm_put_mle(mle);
838                         mle = NULL;
839                         /* this is lame, but we can't wait on either
840                          * the mle or lockres waitqueue here */
841                         if (mig)
842                                 msleep(100);
843                         goto lookup;
844                 }
845         } else {
846                 /* go ahead and try to master lock on this node */
847                 mle = alloc_mle;
848                 /* make sure this does not get freed below */
849                 alloc_mle = NULL;
850                 dlm_init_mle(mle, DLM_MLE_MASTER, dlm, res, NULL, 0);
851                 set_bit(dlm->node_num, mle->maybe_map);
852                 __dlm_insert_mle(dlm, mle);
853
854                 /* still holding the dlm spinlock, check the recovery map
855                  * to see if there are any nodes that still need to be
856                  * considered.  these will not appear in the mle nodemap
857                  * but they might own this lockres.  wait on them. */
858                 bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0);
859                 if (bit < O2NM_MAX_NODES) {
860                         mlog(0, "%s: res %.*s, At least one node (%d) "
861                              "to recover before lock mastery can begin\n",
862                              dlm->name, namelen, (char *)lockid, bit);
863                         wait_on_recovery = 1;
864                 }
865         }
866
867         /* at this point there is either a DLM_MLE_BLOCK or a
868          * DLM_MLE_MASTER on the master list, so it's safe to add the
869          * lockres to the hashtable.  anyone who finds the lock will
870          * still have to wait on the IN_PROGRESS. */
871
872         /* finally add the lockres to its hash bucket */
873         __dlm_insert_lockres(dlm, res);
874
875         /* since this lockres is new it doesn't not require the spinlock */
876         __dlm_lockres_grab_inflight_ref(dlm, res);
877
878         /* get an extra ref on the mle in case this is a BLOCK
879          * if so, the creator of the BLOCK may try to put the last
880          * ref at this time in the assert master handler, so we
881          * need an extra one to keep from a bad ptr deref. */
882         dlm_get_mle_inuse(mle);
883         spin_unlock(&dlm->master_lock);
884         spin_unlock(&dlm->spinlock);
885
886 redo_request:
887         while (wait_on_recovery) {
888                 /* any cluster changes that occurred after dropping the
889                  * dlm spinlock would be detectable be a change on the mle,
890                  * so we only need to clear out the recovery map once. */
891                 if (dlm_is_recovery_lock(lockid, namelen)) {
892                         mlog(0, "%s: Recovery map is not empty, but must "
893                              "master $RECOVERY lock now\n", dlm->name);
894                         if (!dlm_pre_master_reco_lockres(dlm, res))
895                                 wait_on_recovery = 0;
896                         else {
897                                 mlog(0, "%s: waiting 500ms for heartbeat state "
898                                     "change\n", dlm->name);
899                                 msleep(500);
900                         }
901                         continue;
902                 }
903
904                 dlm_kick_recovery_thread(dlm);
905                 msleep(1000);
906                 dlm_wait_for_recovery(dlm);
907
908                 spin_lock(&dlm->spinlock);
909                 bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0);
910                 if (bit < O2NM_MAX_NODES) {
911                         mlog(0, "%s: res %.*s, At least one node (%d) "
912                              "to recover before lock mastery can begin\n",
913                              dlm->name, namelen, (char *)lockid, bit);
914                         wait_on_recovery = 1;
915                 } else
916                         wait_on_recovery = 0;
917                 spin_unlock(&dlm->spinlock);
918
919                 if (wait_on_recovery)
920                         dlm_wait_for_node_recovery(dlm, bit, 10000);
921         }
922
923         /* must wait for lock to be mastered elsewhere */
924         if (blocked)
925                 goto wait;
926
927         ret = -EINVAL;
928         dlm_node_iter_init(mle->vote_map, &iter);
929         while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
930                 ret = dlm_do_master_request(res, mle, nodenum);
931                 if (ret < 0)
932                         mlog_errno(ret);
933                 if (mle->master != O2NM_MAX_NODES) {
934                         /* found a master ! */
935                         if (mle->master <= nodenum)
936                                 break;
937                         /* if our master request has not reached the master
938                          * yet, keep going until it does.  this is how the
939                          * master will know that asserts are needed back to
940                          * the lower nodes. */
941                         mlog(0, "%s: res %.*s, Requests only up to %u but "
942                              "master is %u, keep going\n", dlm->name, namelen,
943                              lockid, nodenum, mle->master);
944                 }
945         }
946
947 wait:
948         /* keep going until the response map includes all nodes */
949         ret = dlm_wait_for_lock_mastery(dlm, res, mle, &blocked);
950         if (ret < 0) {
951                 wait_on_recovery = 1;
952                 mlog(0, "%s: res %.*s, Node map changed, redo the master "
953                      "request now, blocked=%d\n", dlm->name, res->lockname.len,
954                      res->lockname.name, blocked);
955                 if (++tries > 20) {
956                         mlog(ML_ERROR, "%s: res %.*s, Spinning on "
957                              "dlm_wait_for_lock_mastery, blocked = %d\n",
958                              dlm->name, res->lockname.len,
959                              res->lockname.name, blocked);
960                         dlm_print_one_lock_resource(res);
961                         dlm_print_one_mle(mle);
962                         tries = 0;
963                 }
964                 goto redo_request;
965         }
966
967         mlog(0, "%s: res %.*s, Mastered by %u\n", dlm->name, res->lockname.len,
968              res->lockname.name, res->owner);
969         /* make sure we never continue without this */
970         BUG_ON(res->owner == O2NM_MAX_NODES);
971
972         /* master is known, detach if not already detached */
973         dlm_mle_detach_hb_events(dlm, mle);
974         dlm_put_mle(mle);
975         /* put the extra ref */
976         dlm_put_mle_inuse(mle);
977
978 wake_waiters:
979         spin_lock(&res->spinlock);
980         res->state &= ~DLM_LOCK_RES_IN_PROGRESS;
981         spin_unlock(&res->spinlock);
982         wake_up(&res->wq);
983
984 leave:
985         /* need to free the unused mle */
986         if (alloc_mle)
987                 kmem_cache_free(dlm_mle_cache, alloc_mle);
988
989         return res;
990 }
991
992
993 #define DLM_MASTERY_TIMEOUT_MS   5000
994
995 static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm,
996                                      struct dlm_lock_resource *res,
997                                      struct dlm_master_list_entry *mle,
998                                      int *blocked)
999 {
1000         u8 m;
1001         int ret, bit;
1002         int map_changed, voting_done;
1003         int assert, sleep;
1004
1005 recheck:
1006         ret = 0;
1007         assert = 0;
1008
1009         /* check if another node has already become the owner */
1010         spin_lock(&res->spinlock);
1011         if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
1012                 mlog(0, "%s:%.*s: owner is suddenly %u\n", dlm->name,
1013                      res->lockname.len, res->lockname.name, res->owner);
1014                 spin_unlock(&res->spinlock);
1015                 /* this will cause the master to re-assert across
1016                  * the whole cluster, freeing up mles */
1017                 if (res->owner != dlm->node_num) {
1018                         ret = dlm_do_master_request(res, mle, res->owner);
1019                         if (ret < 0) {
1020                                 /* give recovery a chance to run */
1021                                 mlog(ML_ERROR, "link to %u went down?: %d\n", res->owner, ret);
1022                                 msleep(500);
1023                                 goto recheck;
1024                         }
1025                 }
1026                 ret = 0;
1027                 goto leave;
1028         }
1029         spin_unlock(&res->spinlock);
1030
1031         spin_lock(&mle->spinlock);
1032         m = mle->master;
1033         map_changed = (memcmp(mle->vote_map, mle->node_map,
1034                               sizeof(mle->vote_map)) != 0);
1035         voting_done = (memcmp(mle->vote_map, mle->response_map,
1036                              sizeof(mle->vote_map)) == 0);
1037
1038         /* restart if we hit any errors */
1039         if (map_changed) {
1040                 int b;
1041                 mlog(0, "%s: %.*s: node map changed, restarting\n",
1042                      dlm->name, res->lockname.len, res->lockname.name);
1043                 ret = dlm_restart_lock_mastery(dlm, res, mle, *blocked);
1044                 b = (mle->type == DLM_MLE_BLOCK);
1045                 if ((*blocked && !b) || (!*blocked && b)) {
1046                         mlog(0, "%s:%.*s: status change: old=%d new=%d\n",
1047                              dlm->name, res->lockname.len, res->lockname.name,
1048                              *blocked, b);
1049                         *blocked = b;
1050                 }
1051                 spin_unlock(&mle->spinlock);
1052                 if (ret < 0) {
1053                         mlog_errno(ret);
1054                         goto leave;
1055                 }
1056                 mlog(0, "%s:%.*s: restart lock mastery succeeded, "
1057                      "rechecking now\n", dlm->name, res->lockname.len,
1058                      res->lockname.name);
1059                 goto recheck;
1060         } else {
1061                 if (!voting_done) {
1062                         mlog(0, "map not changed and voting not done "
1063                              "for %s:%.*s\n", dlm->name, res->lockname.len,
1064                              res->lockname.name);
1065                 }
1066         }
1067
1068         if (m != O2NM_MAX_NODES) {
1069                 /* another node has done an assert!
1070                  * all done! */
1071                 sleep = 0;
1072         } else {
1073                 sleep = 1;
1074                 /* have all nodes responded? */
1075                 if (voting_done && !*blocked) {
1076                         bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0);
1077                         if (dlm->node_num <= bit) {
1078                                 /* my node number is lowest.
1079                                  * now tell other nodes that I am
1080                                  * mastering this. */
1081                                 mle->master = dlm->node_num;
1082                                 /* ref was grabbed in get_lock_resource
1083                                  * will be dropped in dlmlock_master */
1084                                 assert = 1;
1085                                 sleep = 0;
1086                         }
1087                         /* if voting is done, but we have not received
1088                          * an assert master yet, we must sleep */
1089                 }
1090         }
1091
1092         spin_unlock(&mle->spinlock);
1093
1094         /* sleep if we haven't finished voting yet */
1095         if (sleep) {
1096                 unsigned long timeo = msecs_to_jiffies(DLM_MASTERY_TIMEOUT_MS);
1097
1098                 /*
1099                 if (atomic_read(&mle->mle_refs.refcount) < 2)
1100                         mlog(ML_ERROR, "mle (%p) refs=%d, name=%.*s\n", mle,
1101                         atomic_read(&mle->mle_refs.refcount),
1102                         res->lockname.len, res->lockname.name);
1103                 */
1104                 atomic_set(&mle->woken, 0);
1105                 (void)wait_event_timeout(mle->wq,
1106                                          (atomic_read(&mle->woken) == 1),
1107                                          timeo);
1108                 if (res->owner == O2NM_MAX_NODES) {
1109                         mlog(0, "%s:%.*s: waiting again\n", dlm->name,
1110                              res->lockname.len, res->lockname.name);
1111                         goto recheck;
1112                 }
1113                 mlog(0, "done waiting, master is %u\n", res->owner);
1114                 ret = 0;
1115                 goto leave;
1116         }
1117
1118         ret = 0;   /* done */
1119         if (assert) {
1120                 m = dlm->node_num;
1121                 mlog(0, "about to master %.*s here, this=%u\n",
1122                      res->lockname.len, res->lockname.name, m);
1123                 ret = dlm_do_assert_master(dlm, res, mle->vote_map, 0);
1124                 if (ret) {
1125                         /* This is a failure in the network path,
1126                          * not in the response to the assert_master
1127                          * (any nonzero response is a BUG on this node).
1128                          * Most likely a socket just got disconnected
1129                          * due to node death. */
1130                         mlog_errno(ret);
1131                 }
1132                 /* no longer need to restart lock mastery.
1133                  * all living nodes have been contacted. */
1134                 ret = 0;
1135         }
1136
1137         /* set the lockres owner */
1138         spin_lock(&res->spinlock);
1139         /* mastery reference obtained either during
1140          * assert_master_handler or in get_lock_resource */
1141         dlm_change_lockres_owner(dlm, res, m);
1142         spin_unlock(&res->spinlock);
1143
1144 leave:
1145         return ret;
1146 }
1147
1148 struct dlm_bitmap_diff_iter
1149 {
1150         int curnode;
1151         unsigned long *orig_bm;
1152         unsigned long *cur_bm;
1153         unsigned long diff_bm[BITS_TO_LONGS(O2NM_MAX_NODES)];
1154 };
1155
1156 enum dlm_node_state_change
1157 {
1158         NODE_DOWN = -1,
1159         NODE_NO_CHANGE = 0,
1160         NODE_UP
1161 };
1162
1163 static void dlm_bitmap_diff_iter_init(struct dlm_bitmap_diff_iter *iter,
1164                                       unsigned long *orig_bm,
1165                                       unsigned long *cur_bm)
1166 {
1167         unsigned long p1, p2;
1168         int i;
1169
1170         iter->curnode = -1;
1171         iter->orig_bm = orig_bm;
1172         iter->cur_bm = cur_bm;
1173
1174         for (i = 0; i < BITS_TO_LONGS(O2NM_MAX_NODES); i++) {
1175                 p1 = *(iter->orig_bm + i);
1176                 p2 = *(iter->cur_bm + i);
1177                 iter->diff_bm[i] = (p1 & ~p2) | (p2 & ~p1);
1178         }
1179 }
1180
1181 static int dlm_bitmap_diff_iter_next(struct dlm_bitmap_diff_iter *iter,
1182                                      enum dlm_node_state_change *state)
1183 {
1184         int bit;
1185
1186         if (iter->curnode >= O2NM_MAX_NODES)
1187                 return -ENOENT;
1188
1189         bit = find_next_bit(iter->diff_bm, O2NM_MAX_NODES,
1190                             iter->curnode+1);
1191         if (bit >= O2NM_MAX_NODES) {
1192                 iter->curnode = O2NM_MAX_NODES;
1193                 return -ENOENT;
1194         }
1195
1196         /* if it was there in the original then this node died */
1197         if (test_bit(bit, iter->orig_bm))
1198                 *state = NODE_DOWN;
1199         else
1200                 *state = NODE_UP;
1201
1202         iter->curnode = bit;
1203         return bit;
1204 }
1205
1206
1207 static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm,
1208                                     struct dlm_lock_resource *res,
1209                                     struct dlm_master_list_entry *mle,
1210                                     int blocked)
1211 {
1212         struct dlm_bitmap_diff_iter bdi;
1213         enum dlm_node_state_change sc;
1214         int node;
1215         int ret = 0;
1216
1217         mlog(0, "something happened such that the "
1218              "master process may need to be restarted!\n");
1219
1220         assert_spin_locked(&mle->spinlock);
1221
1222         dlm_bitmap_diff_iter_init(&bdi, mle->vote_map, mle->node_map);
1223         node = dlm_bitmap_diff_iter_next(&bdi, &sc);
1224         while (node >= 0) {
1225                 if (sc == NODE_UP) {
1226                         /* a node came up.  clear any old vote from
1227                          * the response map and set it in the vote map
1228                          * then restart the mastery. */
1229                         mlog(ML_NOTICE, "node %d up while restarting\n", node);
1230
1231                         /* redo the master request, but only for the new node */
1232                         mlog(0, "sending request to new node\n");
1233                         clear_bit(node, mle->response_map);
1234                         set_bit(node, mle->vote_map);
1235                 } else {
1236                         mlog(ML_ERROR, "node down! %d\n", node);
1237                         if (blocked) {
1238                                 int lowest = find_next_bit(mle->maybe_map,
1239                                                        O2NM_MAX_NODES, 0);
1240
1241                                 /* act like it was never there */
1242                                 clear_bit(node, mle->maybe_map);
1243
1244                                 if (node == lowest) {
1245                                         mlog(0, "expected master %u died"
1246                                             " while this node was blocked "
1247                                             "waiting on it!\n", node);
1248                                         lowest = find_next_bit(mle->maybe_map,
1249                                                         O2NM_MAX_NODES,
1250                                                         lowest+1);
1251                                         if (lowest < O2NM_MAX_NODES) {
1252                                                 mlog(0, "%s:%.*s:still "
1253                                                      "blocked. waiting on %u "
1254                                                      "now\n", dlm->name,
1255                                                      res->lockname.len,
1256                                                      res->lockname.name,
1257                                                      lowest);
1258                                         } else {
1259                                                 /* mle is an MLE_BLOCK, but
1260                                                  * there is now nothing left to
1261                                                  * block on.  we need to return
1262                                                  * all the way back out and try
1263                                                  * again with an MLE_MASTER.
1264                                                  * dlm_do_local_recovery_cleanup
1265                                                  * has already run, so the mle
1266                                                  * refcount is ok */
1267                                                 mlog(0, "%s:%.*s: no "
1268                                                      "longer blocking. try to "
1269                                                      "master this here\n",
1270                                                      dlm->name,
1271                                                      res->lockname.len,
1272                                                      res->lockname.name);
1273                                                 mle->type = DLM_MLE_MASTER;
1274                                                 mle->mleres = res;
1275                                         }
1276                                 }
1277                         }
1278
1279                         /* now blank out everything, as if we had never
1280                          * contacted anyone */
1281                         memset(mle->maybe_map, 0, sizeof(mle->maybe_map));
1282                         memset(mle->response_map, 0, sizeof(mle->response_map));
1283                         /* reset the vote_map to the current node_map */
1284                         memcpy(mle->vote_map, mle->node_map,
1285                                sizeof(mle->node_map));
1286                         /* put myself into the maybe map */
1287                         if (mle->type != DLM_MLE_BLOCK)
1288                                 set_bit(dlm->node_num, mle->maybe_map);
1289                 }
1290                 ret = -EAGAIN;
1291                 node = dlm_bitmap_diff_iter_next(&bdi, &sc);
1292         }
1293         return ret;
1294 }
1295
1296
1297 /*
1298  * DLM_MASTER_REQUEST_MSG
1299  *
1300  * returns: 0 on success,
1301  *          -errno on a network error
1302  *
1303  * on error, the caller should assume the target node is "dead"
1304  *
1305  */
1306
1307 static int dlm_do_master_request(struct dlm_lock_resource *res,
1308                                  struct dlm_master_list_entry *mle, int to)
1309 {
1310         struct dlm_ctxt *dlm = mle->dlm;
1311         struct dlm_master_request request;
1312         int ret, response=0, resend;
1313
1314         memset(&request, 0, sizeof(request));
1315         request.node_idx = dlm->node_num;
1316
1317         BUG_ON(mle->type == DLM_MLE_MIGRATION);
1318
1319         request.namelen = (u8)mle->mnamelen;
1320         memcpy(request.name, mle->mname, request.namelen);
1321
1322 again:
1323         ret = o2net_send_message(DLM_MASTER_REQUEST_MSG, dlm->key, &request,
1324                                  sizeof(request), to, &response);
1325         if (ret < 0)  {
1326                 if (ret == -ESRCH) {
1327                         /* should never happen */
1328                         mlog(ML_ERROR, "TCP stack not ready!\n");
1329                         BUG();
1330                 } else if (ret == -EINVAL) {
1331                         mlog(ML_ERROR, "bad args passed to o2net!\n");
1332                         BUG();
1333                 } else if (ret == -ENOMEM) {
1334                         mlog(ML_ERROR, "out of memory while trying to send "
1335                              "network message!  retrying\n");
1336                         /* this is totally crude */
1337                         msleep(50);
1338                         goto again;
1339                 } else if (!dlm_is_host_down(ret)) {
1340                         /* not a network error. bad. */
1341                         mlog_errno(ret);
1342                         mlog(ML_ERROR, "unhandled error!");
1343                         BUG();
1344                 }
1345                 /* all other errors should be network errors,
1346                  * and likely indicate node death */
1347                 mlog(ML_ERROR, "link to %d went down!\n", to);
1348                 goto out;
1349         }
1350
1351         ret = 0;
1352         resend = 0;
1353         spin_lock(&mle->spinlock);
1354         switch (response) {
1355                 case DLM_MASTER_RESP_YES:
1356                         set_bit(to, mle->response_map);
1357                         mlog(0, "node %u is the master, response=YES\n", to);
1358                         mlog(0, "%s:%.*s: master node %u now knows I have a "
1359                              "reference\n", dlm->name, res->lockname.len,
1360                              res->lockname.name, to);
1361                         mle->master = to;
1362                         break;
1363                 case DLM_MASTER_RESP_NO:
1364                         mlog(0, "node %u not master, response=NO\n", to);
1365                         set_bit(to, mle->response_map);
1366                         break;
1367                 case DLM_MASTER_RESP_MAYBE:
1368                         mlog(0, "node %u not master, response=MAYBE\n", to);
1369                         set_bit(to, mle->response_map);
1370                         set_bit(to, mle->maybe_map);
1371                         break;
1372                 case DLM_MASTER_RESP_ERROR:
1373                         mlog(0, "node %u hit an error, resending\n", to);
1374                         resend = 1;
1375                         response = 0;
1376                         break;
1377                 default:
1378                         mlog(ML_ERROR, "bad response! %u\n", response);
1379                         BUG();
1380         }
1381         spin_unlock(&mle->spinlock);
1382         if (resend) {
1383                 /* this is also totally crude */
1384                 msleep(50);
1385                 goto again;
1386         }
1387
1388 out:
1389         return ret;
1390 }
1391
1392 /*
1393  * locks that can be taken here:
1394  * dlm->spinlock
1395  * res->spinlock
1396  * mle->spinlock
1397  * dlm->master_list
1398  *
1399  * if possible, TRIM THIS DOWN!!!
1400  */
1401 int dlm_master_request_handler(struct o2net_msg *msg, u32 len, void *data,
1402                                void **ret_data)
1403 {
1404         u8 response = DLM_MASTER_RESP_MAYBE;
1405         struct dlm_ctxt *dlm = data;
1406         struct dlm_lock_resource *res = NULL;
1407         struct dlm_master_request *request = (struct dlm_master_request *) msg->buf;
1408         struct dlm_master_list_entry *mle = NULL, *tmpmle = NULL;
1409         char *name;
1410         unsigned int namelen, hash;
1411         int found, ret;
1412         int set_maybe;
1413         int dispatch_assert = 0;
1414         int dispatched = 0;
1415
1416         if (!dlm_grab(dlm))
1417                 return DLM_MASTER_RESP_NO;
1418
1419         if (!dlm_domain_fully_joined(dlm)) {
1420                 response = DLM_MASTER_RESP_NO;
1421                 goto send_response;
1422         }
1423
1424         name = request->name;
1425         namelen = request->namelen;
1426         hash = dlm_lockid_hash(name, namelen);
1427
1428         if (namelen > DLM_LOCKID_NAME_MAX) {
1429                 response = DLM_IVBUFLEN;
1430                 goto send_response;
1431         }
1432
1433 way_up_top:
1434         spin_lock(&dlm->spinlock);
1435         res = __dlm_lookup_lockres(dlm, name, namelen, hash);
1436         if (res) {
1437                 spin_unlock(&dlm->spinlock);
1438
1439                 /* take care of the easy cases up front */
1440                 spin_lock(&res->spinlock);
1441                 if (res->state & (DLM_LOCK_RES_RECOVERING|
1442                                   DLM_LOCK_RES_MIGRATING)) {
1443                         spin_unlock(&res->spinlock);
1444                         mlog(0, "returning DLM_MASTER_RESP_ERROR since res is "
1445                              "being recovered/migrated\n");
1446                         response = DLM_MASTER_RESP_ERROR;
1447                         if (mle)
1448                                 kmem_cache_free(dlm_mle_cache, mle);
1449                         goto send_response;
1450                 }
1451
1452                 if (res->owner == dlm->node_num) {
1453                         dlm_lockres_set_refmap_bit(dlm, res, request->node_idx);
1454                         spin_unlock(&res->spinlock);
1455                         response = DLM_MASTER_RESP_YES;
1456                         if (mle)
1457                                 kmem_cache_free(dlm_mle_cache, mle);
1458
1459                         /* this node is the owner.
1460                          * there is some extra work that needs to
1461                          * happen now.  the requesting node has
1462                          * caused all nodes up to this one to
1463                          * create mles.  this node now needs to
1464                          * go back and clean those up. */
1465                         dispatch_assert = 1;
1466                         goto send_response;
1467                 } else if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
1468                         spin_unlock(&res->spinlock);
1469                         // mlog(0, "node %u is the master\n", res->owner);
1470                         response = DLM_MASTER_RESP_NO;
1471                         if (mle)
1472                                 kmem_cache_free(dlm_mle_cache, mle);
1473                         goto send_response;
1474                 }
1475
1476                 /* ok, there is no owner.  either this node is
1477                  * being blocked, or it is actively trying to
1478                  * master this lock. */
1479                 if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) {
1480                         mlog(ML_ERROR, "lock with no owner should be "
1481                              "in-progress!\n");
1482                         BUG();
1483                 }
1484
1485                 // mlog(0, "lockres is in progress...\n");
1486                 spin_lock(&dlm->master_lock);
1487                 found = dlm_find_mle(dlm, &tmpmle, name, namelen);
1488                 if (!found) {
1489                         mlog(ML_ERROR, "no mle found for this lock!\n");
1490                         BUG();
1491                 }
1492                 set_maybe = 1;
1493                 spin_lock(&tmpmle->spinlock);
1494                 if (tmpmle->type == DLM_MLE_BLOCK) {
1495                         // mlog(0, "this node is waiting for "
1496                         // "lockres to be mastered\n");
1497                         response = DLM_MASTER_RESP_NO;
1498                 } else if (tmpmle->type == DLM_MLE_MIGRATION) {
1499                         mlog(0, "node %u is master, but trying to migrate to "
1500                              "node %u.\n", tmpmle->master, tmpmle->new_master);
1501                         if (tmpmle->master == dlm->node_num) {
1502                                 mlog(ML_ERROR, "no owner on lockres, but this "
1503                                      "node is trying to migrate it to %u?!\n",
1504                                      tmpmle->new_master);
1505                                 BUG();
1506                         } else {
1507                                 /* the real master can respond on its own */
1508                                 response = DLM_MASTER_RESP_NO;
1509                         }
1510                 } else if (tmpmle->master != DLM_LOCK_RES_OWNER_UNKNOWN) {
1511                         set_maybe = 0;
1512                         if (tmpmle->master == dlm->node_num) {
1513                                 response = DLM_MASTER_RESP_YES;
1514                                 /* this node will be the owner.
1515                                  * go back and clean the mles on any
1516                                  * other nodes */
1517                                 dispatch_assert = 1;
1518                                 dlm_lockres_set_refmap_bit(dlm, res,
1519                                                            request->node_idx);
1520                         } else
1521                                 response = DLM_MASTER_RESP_NO;
1522                 } else {
1523                         // mlog(0, "this node is attempting to "
1524                         // "master lockres\n");
1525                         response = DLM_MASTER_RESP_MAYBE;
1526                 }
1527                 if (set_maybe)
1528                         set_bit(request->node_idx, tmpmle->maybe_map);
1529                 spin_unlock(&tmpmle->spinlock);
1530
1531                 spin_unlock(&dlm->master_lock);
1532                 spin_unlock(&res->spinlock);
1533
1534                 /* keep the mle attached to heartbeat events */
1535                 dlm_put_mle(tmpmle);
1536                 if (mle)
1537                         kmem_cache_free(dlm_mle_cache, mle);
1538                 goto send_response;
1539         }
1540
1541         /*
1542          * lockres doesn't exist on this node
1543          * if there is an MLE_BLOCK, return NO
1544          * if there is an MLE_MASTER, return MAYBE
1545          * otherwise, add an MLE_BLOCK, return NO
1546          */
1547         spin_lock(&dlm->master_lock);
1548         found = dlm_find_mle(dlm, &tmpmle, name, namelen);
1549         if (!found) {
1550                 /* this lockid has never been seen on this node yet */
1551                 // mlog(0, "no mle found\n");
1552                 if (!mle) {
1553                         spin_unlock(&dlm->master_lock);
1554                         spin_unlock(&dlm->spinlock);
1555
1556                         mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
1557                         if (!mle) {
1558                                 response = DLM_MASTER_RESP_ERROR;
1559                                 mlog_errno(-ENOMEM);
1560                                 goto send_response;
1561                         }
1562                         goto way_up_top;
1563                 }
1564
1565                 // mlog(0, "this is second time thru, already allocated, "
1566                 // "add the block.\n");
1567                 dlm_init_mle(mle, DLM_MLE_BLOCK, dlm, NULL, name, namelen);
1568                 set_bit(request->node_idx, mle->maybe_map);
1569                 __dlm_insert_mle(dlm, mle);
1570                 response = DLM_MASTER_RESP_NO;
1571         } else {
1572                 // mlog(0, "mle was found\n");
1573                 set_maybe = 1;
1574                 spin_lock(&tmpmle->spinlock);
1575                 if (tmpmle->master == dlm->node_num) {
1576                         mlog(ML_ERROR, "no lockres, but an mle with this node as master!\n");
1577                         BUG();
1578                 }
1579                 if (tmpmle->type == DLM_MLE_BLOCK)
1580                         response = DLM_MASTER_RESP_NO;
1581                 else if (tmpmle->type == DLM_MLE_MIGRATION) {
1582                         mlog(0, "migration mle was found (%u->%u)\n",
1583                              tmpmle->master, tmpmle->new_master);
1584                         /* real master can respond on its own */
1585                         response = DLM_MASTER_RESP_NO;
1586                 } else
1587                         response = DLM_MASTER_RESP_MAYBE;
1588                 if (set_maybe)
1589                         set_bit(request->node_idx, tmpmle->maybe_map);
1590                 spin_unlock(&tmpmle->spinlock);
1591         }
1592         spin_unlock(&dlm->master_lock);
1593         spin_unlock(&dlm->spinlock);
1594
1595         if (found) {
1596                 /* keep the mle attached to heartbeat events */
1597                 dlm_put_mle(tmpmle);
1598         }
1599 send_response:
1600         /*
1601          * __dlm_lookup_lockres() grabbed a reference to this lockres.
1602          * The reference is released by dlm_assert_master_worker() under
1603          * the call to dlm_dispatch_assert_master().  If
1604          * dlm_assert_master_worker() isn't called, we drop it here.
1605          */
1606         if (dispatch_assert) {
1607                 if (response != DLM_MASTER_RESP_YES)
1608                         mlog(ML_ERROR, "invalid response %d\n", response);
1609                 if (!res) {
1610                         mlog(ML_ERROR, "bad lockres while trying to assert!\n");
1611                         BUG();
1612                 }
1613                 mlog(0, "%u is the owner of %.*s, cleaning everyone else\n",
1614                              dlm->node_num, res->lockname.len, res->lockname.name);
1615                 ret = dlm_dispatch_assert_master(dlm, res, 0, request->node_idx,
1616                                                  DLM_ASSERT_MASTER_MLE_CLEANUP);
1617                 if (ret < 0) {
1618                         mlog(ML_ERROR, "failed to dispatch assert master work\n");
1619                         response = DLM_MASTER_RESP_ERROR;
1620                         dlm_lockres_put(res);
1621                 } else {
1622                         dispatched = 1;
1623                 }
1624         } else {
1625                 if (res)
1626                         dlm_lockres_put(res);
1627         }
1628
1629         if (!dispatched)
1630                 dlm_put(dlm);
1631         return response;
1632 }
1633
1634 /*
1635  * DLM_ASSERT_MASTER_MSG
1636  */
1637
1638
1639 /*
1640  * NOTE: this can be used for debugging
1641  * can periodically run all locks owned by this node
1642  * and re-assert across the cluster...
1643  */
1644 static int dlm_do_assert_master(struct dlm_ctxt *dlm,
1645                                 struct dlm_lock_resource *res,
1646                                 void *nodemap, u32 flags)
1647 {
1648         struct dlm_assert_master assert;
1649         int to, tmpret;
1650         struct dlm_node_iter iter;
1651         int ret = 0;
1652         int reassert;
1653         const char *lockname = res->lockname.name;
1654         unsigned int namelen = res->lockname.len;
1655
1656         BUG_ON(namelen > O2NM_MAX_NAME_LEN);
1657
1658         spin_lock(&res->spinlock);
1659         res->state |= DLM_LOCK_RES_SETREF_INPROG;
1660         spin_unlock(&res->spinlock);
1661
1662 again:
1663         reassert = 0;
1664
1665         /* note that if this nodemap is empty, it returns 0 */
1666         dlm_node_iter_init(nodemap, &iter);
1667         while ((to = dlm_node_iter_next(&iter)) >= 0) {
1668                 int r = 0;
1669                 struct dlm_master_list_entry *mle = NULL;
1670
1671                 mlog(0, "sending assert master to %d (%.*s)\n", to,
1672                      namelen, lockname);
1673                 memset(&assert, 0, sizeof(assert));
1674                 assert.node_idx = dlm->node_num;
1675                 assert.namelen = namelen;
1676                 memcpy(assert.name, lockname, namelen);
1677                 assert.flags = cpu_to_be32(flags);
1678
1679                 tmpret = o2net_send_message(DLM_ASSERT_MASTER_MSG, dlm->key,
1680                                             &assert, sizeof(assert), to, &r);
1681                 if (tmpret < 0) {
1682                         mlog(ML_ERROR, "Error %d when sending message %u (key "
1683                              "0x%x) to node %u\n", tmpret,
1684                              DLM_ASSERT_MASTER_MSG, dlm->key, to);
1685                         if (!dlm_is_host_down(tmpret)) {
1686                                 mlog(ML_ERROR, "unhandled error=%d!\n", tmpret);
1687                                 BUG();
1688                         }
1689                         /* a node died.  finish out the rest of the nodes. */
1690                         mlog(0, "link to %d went down!\n", to);
1691                         /* any nonzero status return will do */
1692                         ret = tmpret;
1693                         r = 0;
1694                 } else if (r < 0) {
1695                         /* ok, something horribly messed.  kill thyself. */
1696                         mlog(ML_ERROR,"during assert master of %.*s to %u, "
1697                              "got %d.\n", namelen, lockname, to, r);
1698                         spin_lock(&dlm->spinlock);
1699                         spin_lock(&dlm->master_lock);
1700                         if (dlm_find_mle(dlm, &mle, (char *)lockname,
1701                                          namelen)) {
1702                                 dlm_print_one_mle(mle);
1703                                 __dlm_put_mle(mle);
1704                         }
1705                         spin_unlock(&dlm->master_lock);
1706                         spin_unlock(&dlm->spinlock);
1707                         BUG();
1708                 }
1709
1710                 if (r & DLM_ASSERT_RESPONSE_REASSERT &&
1711                     !(r & DLM_ASSERT_RESPONSE_MASTERY_REF)) {
1712                                 mlog(ML_ERROR, "%.*s: very strange, "
1713                                      "master MLE but no lockres on %u\n",
1714                                      namelen, lockname, to);
1715                 }
1716
1717                 if (r & DLM_ASSERT_RESPONSE_REASSERT) {
1718                         mlog(0, "%.*s: node %u create mles on other "
1719                              "nodes and requests a re-assert\n",
1720                              namelen, lockname, to);
1721                         reassert = 1;
1722                 }
1723                 if (r & DLM_ASSERT_RESPONSE_MASTERY_REF) {
1724                         mlog(0, "%.*s: node %u has a reference to this "
1725                              "lockres, set the bit in the refmap\n",
1726                              namelen, lockname, to);
1727                         spin_lock(&res->spinlock);
1728                         dlm_lockres_set_refmap_bit(dlm, res, to);
1729                         spin_unlock(&res->spinlock);
1730                 }
1731         }
1732
1733         if (reassert)
1734                 goto again;
1735
1736         spin_lock(&res->spinlock);
1737         res->state &= ~DLM_LOCK_RES_SETREF_INPROG;
1738         spin_unlock(&res->spinlock);
1739         wake_up(&res->wq);
1740
1741         return ret;
1742 }
1743
1744 /*
1745  * locks that can be taken here:
1746  * dlm->spinlock
1747  * res->spinlock
1748  * mle->spinlock
1749  * dlm->master_list
1750  *
1751  * if possible, TRIM THIS DOWN!!!
1752  */
1753 int dlm_assert_master_handler(struct o2net_msg *msg, u32 len, void *data,
1754                               void **ret_data)
1755 {
1756         struct dlm_ctxt *dlm = data;
1757         struct dlm_master_list_entry *mle = NULL;
1758         struct dlm_assert_master *assert = (struct dlm_assert_master *)msg->buf;
1759         struct dlm_lock_resource *res = NULL;
1760         char *name;
1761         unsigned int namelen, hash;
1762         u32 flags;
1763         int master_request = 0, have_lockres_ref = 0;
1764         int ret = 0;
1765
1766         if (!dlm_grab(dlm))
1767                 return 0;
1768
1769         name = assert->name;
1770         namelen = assert->namelen;
1771         hash = dlm_lockid_hash(name, namelen);
1772         flags = be32_to_cpu(assert->flags);
1773
1774         if (namelen > DLM_LOCKID_NAME_MAX) {
1775                 mlog(ML_ERROR, "Invalid name length!");
1776                 goto done;
1777         }
1778
1779         spin_lock(&dlm->spinlock);
1780
1781         if (flags)
1782                 mlog(0, "assert_master with flags: %u\n", flags);
1783
1784         /* find the MLE */
1785         spin_lock(&dlm->master_lock);
1786         if (!dlm_find_mle(dlm, &mle, name, namelen)) {
1787                 /* not an error, could be master just re-asserting */
1788                 mlog(0, "just got an assert_master from %u, but no "
1789                      "MLE for it! (%.*s)\n", assert->node_idx,
1790                      namelen, name);
1791         } else {
1792                 int bit = find_next_bit (mle->maybe_map, O2NM_MAX_NODES, 0);
1793                 if (bit >= O2NM_MAX_NODES) {
1794                         /* not necessarily an error, though less likely.
1795                          * could be master just re-asserting. */
1796                         mlog(0, "no bits set in the maybe_map, but %u "
1797                              "is asserting! (%.*s)\n", assert->node_idx,
1798                              namelen, name);
1799                 } else if (bit != assert->node_idx) {
1800                         if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) {
1801                                 mlog(0, "master %u was found, %u should "
1802                                      "back off\n", assert->node_idx, bit);
1803                         } else {
1804                                 /* with the fix for bug 569, a higher node
1805                                  * number winning the mastery will respond
1806                                  * YES to mastery requests, but this node
1807                                  * had no way of knowing.  let it pass. */
1808                                 mlog(0, "%u is the lowest node, "
1809                                      "%u is asserting. (%.*s)  %u must "
1810                                      "have begun after %u won.\n", bit,
1811                                      assert->node_idx, namelen, name, bit,
1812                                      assert->node_idx);
1813                         }
1814                 }
1815                 if (mle->type == DLM_MLE_MIGRATION) {
1816                         if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) {
1817                                 mlog(0, "%s:%.*s: got cleanup assert"
1818                                      " from %u for migration\n",
1819                                      dlm->name, namelen, name,
1820                                      assert->node_idx);
1821                         } else if (!(flags & DLM_ASSERT_MASTER_FINISH_MIGRATION)) {
1822                                 mlog(0, "%s:%.*s: got unrelated assert"
1823                                      " from %u for migration, ignoring\n",
1824                                      dlm->name, namelen, name,
1825                                      assert->node_idx);
1826                                 __dlm_put_mle(mle);
1827                                 spin_unlock(&dlm->master_lock);
1828                                 spin_unlock(&dlm->spinlock);
1829                                 goto done;
1830                         }
1831                 }
1832         }
1833         spin_unlock(&dlm->master_lock);
1834
1835         /* ok everything checks out with the MLE
1836          * now check to see if there is a lockres */
1837         res = __dlm_lookup_lockres(dlm, name, namelen, hash);
1838         if (res) {
1839                 spin_lock(&res->spinlock);
1840                 if (res->state & DLM_LOCK_RES_RECOVERING)  {
1841                         mlog(ML_ERROR, "%u asserting but %.*s is "
1842                              "RECOVERING!\n", assert->node_idx, namelen, name);
1843                         goto kill;
1844                 }
1845                 if (!mle) {
1846                         if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN &&
1847                             res->owner != assert->node_idx) {
1848                                 mlog(ML_ERROR, "DIE! Mastery assert from %u, "
1849                                      "but current owner is %u! (%.*s)\n",
1850                                      assert->node_idx, res->owner, namelen,
1851                                      name);
1852                                 __dlm_print_one_lock_resource(res);
1853                                 BUG();
1854                         }
1855                 } else if (mle->type != DLM_MLE_MIGRATION) {
1856                         if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
1857                                 /* owner is just re-asserting */
1858                                 if (res->owner == assert->node_idx) {
1859                                         mlog(0, "owner %u re-asserting on "
1860                                              "lock %.*s\n", assert->node_idx,
1861                                              namelen, name);
1862                                         goto ok;
1863                                 }
1864                                 mlog(ML_ERROR, "got assert_master from "
1865                                      "node %u, but %u is the owner! "
1866                                      "(%.*s)\n", assert->node_idx,
1867                                      res->owner, namelen, name);
1868                                 goto kill;
1869                         }
1870                         if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) {
1871                                 mlog(ML_ERROR, "got assert from %u, but lock "
1872                                      "with no owner should be "
1873                                      "in-progress! (%.*s)\n",
1874                                      assert->node_idx,
1875                                      namelen, name);
1876                                 goto kill;
1877                         }
1878                 } else /* mle->type == DLM_MLE_MIGRATION */ {
1879                         /* should only be getting an assert from new master */
1880                         if (assert->node_idx != mle->new_master) {
1881                                 mlog(ML_ERROR, "got assert from %u, but "
1882                                      "new master is %u, and old master "
1883                                      "was %u (%.*s)\n",
1884                                      assert->node_idx, mle->new_master,
1885                                      mle->master, namelen, name);
1886                                 goto kill;
1887                         }
1888
1889                 }
1890 ok:
1891                 spin_unlock(&res->spinlock);
1892         }
1893
1894         // mlog(0, "woo!  got an assert_master from node %u!\n",
1895         //           assert->node_idx);
1896         if (mle) {
1897                 int extra_ref = 0;
1898                 int nn = -1;
1899                 int rr, err = 0;
1900
1901                 spin_lock(&mle->spinlock);
1902                 if (mle->type == DLM_MLE_BLOCK || mle->type == DLM_MLE_MIGRATION)
1903                         extra_ref = 1;
1904                 else {
1905                         /* MASTER mle: if any bits set in the response map
1906                          * then the calling node needs to re-assert to clear
1907                          * up nodes that this node contacted */
1908                         while ((nn = find_next_bit (mle->response_map, O2NM_MAX_NODES,
1909                                                     nn+1)) < O2NM_MAX_NODES) {
1910                                 if (nn != dlm->node_num && nn != assert->node_idx)
1911                                         master_request = 1;
1912                         }
1913                 }
1914                 mle->master = assert->node_idx;
1915                 atomic_set(&mle->woken, 1);
1916                 wake_up(&mle->wq);
1917                 spin_unlock(&mle->spinlock);
1918
1919                 if (res) {
1920                         int wake = 0;
1921                         spin_lock(&res->spinlock);
1922                         if (mle->type == DLM_MLE_MIGRATION) {
1923                                 mlog(0, "finishing off migration of lockres %.*s, "
1924                                         "from %u to %u\n",
1925                                         res->lockname.len, res->lockname.name,
1926                                         dlm->node_num, mle->new_master);
1927                                 res->state &= ~DLM_LOCK_RES_MIGRATING;
1928                                 wake = 1;
1929                                 dlm_change_lockres_owner(dlm, res, mle->new_master);
1930                                 BUG_ON(res->state & DLM_LOCK_RES_DIRTY);
1931                         } else {
1932                                 dlm_change_lockres_owner(dlm, res, mle->master);
1933                         }
1934                         spin_unlock(&res->spinlock);
1935                         have_lockres_ref = 1;
1936                         if (wake)
1937                                 wake_up(&res->wq);
1938                 }
1939
1940                 /* master is known, detach if not already detached.
1941                  * ensures that only one assert_master call will happen
1942                  * on this mle. */
1943                 spin_lock(&dlm->master_lock);
1944
1945                 rr = atomic_read(&mle->mle_refs.refcount);
1946                 if (mle->inuse > 0) {
1947                         if (extra_ref && rr < 3)
1948                                 err = 1;
1949                         else if (!extra_ref && rr < 2)
1950                                 err = 1;
1951                 } else {
1952                         if (extra_ref && rr < 2)
1953                                 err = 1;
1954                         else if (!extra_ref && rr < 1)
1955                                 err = 1;
1956                 }
1957                 if (err) {
1958                         mlog(ML_ERROR, "%s:%.*s: got assert master from %u "
1959                              "that will mess up this node, refs=%d, extra=%d, "
1960                              "inuse=%d\n", dlm->name, namelen, name,
1961                              assert->node_idx, rr, extra_ref, mle->inuse);
1962                         dlm_print_one_mle(mle);
1963                 }
1964                 __dlm_unlink_mle(dlm, mle);
1965                 __dlm_mle_detach_hb_events(dlm, mle);
1966                 __dlm_put_mle(mle);
1967                 if (extra_ref) {
1968                         /* the assert master message now balances the extra
1969                          * ref given by the master / migration request message.
1970                          * if this is the last put, it will be removed
1971                          * from the list. */
1972                         __dlm_put_mle(mle);
1973                 }
1974                 spin_unlock(&dlm->master_lock);
1975         } else if (res) {
1976                 if (res->owner != assert->node_idx) {
1977                         mlog(0, "assert_master from %u, but current "
1978                              "owner is %u (%.*s), no mle\n", assert->node_idx,
1979                              res->owner, namelen, name);
1980                 }
1981         }
1982         spin_unlock(&dlm->spinlock);
1983
1984 done:
1985         ret = 0;
1986         if (res) {
1987                 spin_lock(&res->spinlock);
1988                 res->state |= DLM_LOCK_RES_SETREF_INPROG;
1989                 spin_unlock(&res->spinlock);
1990                 *ret_data = (void *)res;
1991         }
1992         dlm_put(dlm);
1993         if (master_request) {
1994                 mlog(0, "need to tell master to reassert\n");
1995                 /* positive. negative would shoot down the node. */
1996                 ret |= DLM_ASSERT_RESPONSE_REASSERT;
1997                 if (!have_lockres_ref) {
1998                         mlog(ML_ERROR, "strange, got assert from %u, MASTER "
1999                              "mle present here for %s:%.*s, but no lockres!\n",
2000                              assert->node_idx, dlm->name, namelen, name);
2001                 }
2002         }
2003         if (have_lockres_ref) {
2004                 /* let the master know we have a reference to the lockres */
2005                 ret |= DLM_ASSERT_RESPONSE_MASTERY_REF;
2006                 mlog(0, "%s:%.*s: got assert from %u, need a ref\n",
2007                      dlm->name, namelen, name, assert->node_idx);
2008         }
2009         return ret;
2010
2011 kill:
2012         /* kill the caller! */
2013         mlog(ML_ERROR, "Bad message received from another node.  Dumping state "
2014              "and killing the other node now!  This node is OK and can continue.\n");
2015         __dlm_print_one_lock_resource(res);
2016         spin_unlock(&res->spinlock);
2017         spin_unlock(&dlm->spinlock);
2018         *ret_data = (void *)res;
2019         dlm_put(dlm);
2020         return -EINVAL;
2021 }
2022
2023 void dlm_assert_master_post_handler(int status, void *data, void *ret_data)
2024 {
2025         struct dlm_lock_resource *res = (struct dlm_lock_resource *)ret_data;
2026
2027         if (ret_data) {
2028                 spin_lock(&res->spinlock);
2029                 res->state &= ~DLM_LOCK_RES_SETREF_INPROG;
2030                 spin_unlock(&res->spinlock);
2031                 wake_up(&res->wq);
2032                 dlm_lockres_put(res);
2033         }
2034         return;
2035 }
2036
2037 int dlm_dispatch_assert_master(struct dlm_ctxt *dlm,
2038                                struct dlm_lock_resource *res,
2039                                int ignore_higher, u8 request_from, u32 flags)
2040 {
2041         struct dlm_work_item *item;
2042         item = kzalloc(sizeof(*item), GFP_NOFS);
2043         if (!item)
2044                 return -ENOMEM;
2045
2046
2047         /* queue up work for dlm_assert_master_worker */
2048         dlm_init_work_item(dlm, item, dlm_assert_master_worker, NULL);
2049         item->u.am.lockres = res; /* already have a ref */
2050         /* can optionally ignore node numbers higher than this node */
2051         item->u.am.ignore_higher = ignore_higher;
2052         item->u.am.request_from = request_from;
2053         item->u.am.flags = flags;
2054
2055         if (ignore_higher)
2056                 mlog(0, "IGNORE HIGHER: %.*s\n", res->lockname.len,
2057                      res->lockname.name);
2058
2059         spin_lock(&dlm->work_lock);
2060         list_add_tail(&item->list, &dlm->work_list);
2061         spin_unlock(&dlm->work_lock);
2062
2063         queue_work(dlm->dlm_worker, &dlm->dispatched_work);
2064         return 0;
2065 }
2066
2067 static void dlm_assert_master_worker(struct dlm_work_item *item, void *data)
2068 {
2069         struct dlm_ctxt *dlm = data;
2070         int ret = 0;
2071         struct dlm_lock_resource *res;
2072         unsigned long nodemap[BITS_TO_LONGS(O2NM_MAX_NODES)];
2073         int ignore_higher;
2074         int bit;
2075         u8 request_from;
2076         u32 flags;
2077
2078         dlm = item->dlm;
2079         res = item->u.am.lockres;
2080         ignore_higher = item->u.am.ignore_higher;
2081         request_from = item->u.am.request_from;
2082         flags = item->u.am.flags;
2083
2084         spin_lock(&dlm->spinlock);
2085         memcpy(nodemap, dlm->domain_map, sizeof(nodemap));
2086         spin_unlock(&dlm->spinlock);
2087
2088         clear_bit(dlm->node_num, nodemap);
2089         if (ignore_higher) {
2090                 /* if is this just to clear up mles for nodes below
2091                  * this node, do not send the message to the original
2092                  * caller or any node number higher than this */
2093                 clear_bit(request_from, nodemap);
2094                 bit = dlm->node_num;
2095                 while (1) {
2096                         bit = find_next_bit(nodemap, O2NM_MAX_NODES,
2097                                             bit+1);
2098                         if (bit >= O2NM_MAX_NODES)
2099                                 break;
2100                         clear_bit(bit, nodemap);
2101                 }
2102         }
2103
2104         /*
2105          * If we're migrating this lock to someone else, we are no
2106          * longer allowed to assert out own mastery.  OTOH, we need to
2107          * prevent migration from starting while we're still asserting
2108          * our dominance.  The reserved ast delays migration.
2109          */
2110         spin_lock(&res->spinlock);
2111         if (res->state & DLM_LOCK_RES_MIGRATING) {
2112                 mlog(0, "Someone asked us to assert mastery, but we're "
2113                      "in the middle of migration.  Skipping assert, "
2114                      "the new master will handle that.\n");
2115                 spin_unlock(&res->spinlock);
2116                 goto put;
2117         } else
2118                 __dlm_lockres_reserve_ast(res);
2119         spin_unlock(&res->spinlock);
2120
2121         /* this call now finishes out the nodemap
2122          * even if one or more nodes die */
2123         mlog(0, "worker about to master %.*s here, this=%u\n",
2124                      res->lockname.len, res->lockname.name, dlm->node_num);
2125         ret = dlm_do_assert_master(dlm, res, nodemap, flags);
2126         if (ret < 0) {
2127                 /* no need to restart, we are done */
2128                 if (!dlm_is_host_down(ret))
2129                         mlog_errno(ret);
2130         }
2131
2132         /* Ok, we've asserted ourselves.  Let's let migration start. */
2133         dlm_lockres_release_ast(dlm, res);
2134
2135 put:
2136         dlm_lockres_put(res);
2137
2138         mlog(0, "finished with dlm_assert_master_worker\n");
2139 }
2140
2141 /* SPECIAL CASE for the $RECOVERY lock used by the recovery thread.
2142  * We cannot wait for node recovery to complete to begin mastering this
2143  * lockres because this lockres is used to kick off recovery! ;-)
2144  * So, do a pre-check on all living nodes to see if any of those nodes
2145  * think that $RECOVERY is currently mastered by a dead node.  If so,
2146  * we wait a short time to allow that node to get notified by its own
2147  * heartbeat stack, then check again.  All $RECOVERY lock resources
2148  * mastered by dead nodes are purged when the hearbeat callback is
2149  * fired, so we can know for sure that it is safe to continue once
2150  * the node returns a live node or no node.  */
2151 static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm,
2152                                        struct dlm_lock_resource *res)
2153 {
2154         struct dlm_node_iter iter;
2155         int nodenum;
2156         int ret = 0;
2157         u8 master = DLM_LOCK_RES_OWNER_UNKNOWN;
2158
2159         spin_lock(&dlm->spinlock);
2160         dlm_node_iter_init(dlm->domain_map, &iter);
2161         spin_unlock(&dlm->spinlock);
2162
2163         while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2164                 /* do not send to self */
2165                 if (nodenum == dlm->node_num)
2166                         continue;
2167                 ret = dlm_do_master_requery(dlm, res, nodenum, &master);
2168                 if (ret < 0) {
2169                         mlog_errno(ret);
2170                         if (!dlm_is_host_down(ret))
2171                                 BUG();
2172                         /* host is down, so answer for that node would be
2173                          * DLM_LOCK_RES_OWNER_UNKNOWN.  continue. */
2174                         ret = 0;
2175                 }
2176
2177                 if (master != DLM_LOCK_RES_OWNER_UNKNOWN) {
2178                         /* check to see if this master is in the recovery map */
2179                         spin_lock(&dlm->spinlock);
2180                         if (test_bit(master, dlm->recovery_map)) {
2181                                 mlog(ML_NOTICE, "%s: node %u has not seen "
2182                                      "node %u go down yet, and thinks the "
2183                                      "dead node is mastering the recovery "
2184                                      "lock.  must wait.\n", dlm->name,
2185                                      nodenum, master);
2186                                 ret = -EAGAIN;
2187                         }
2188                         spin_unlock(&dlm->spinlock);
2189                         mlog(0, "%s: reco lock master is %u\n", dlm->name,
2190                              master);
2191                         break;
2192                 }
2193         }
2194         return ret;
2195 }
2196
2197 /*
2198  * DLM_DEREF_LOCKRES_MSG
2199  */
2200
2201 int dlm_drop_lockres_ref(struct dlm_ctxt *dlm, struct dlm_lock_resource *res)
2202 {
2203         struct dlm_deref_lockres deref;
2204         int ret = 0, r;
2205         const char *lockname;
2206         unsigned int namelen;
2207
2208         lockname = res->lockname.name;
2209         namelen = res->lockname.len;
2210         BUG_ON(namelen > O2NM_MAX_NAME_LEN);
2211
2212         memset(&deref, 0, sizeof(deref));
2213         deref.node_idx = dlm->node_num;
2214         deref.namelen = namelen;
2215         memcpy(deref.name, lockname, namelen);
2216
2217         ret = o2net_send_message(DLM_DEREF_LOCKRES_MSG, dlm->key,
2218                                  &deref, sizeof(deref), res->owner, &r);
2219         if (ret < 0)
2220                 mlog(ML_ERROR, "%s: res %.*s, error %d send DEREF to node %u\n",
2221                      dlm->name, namelen, lockname, ret, res->owner);
2222         else if (r < 0) {
2223                 /* BAD.  other node says I did not have a ref. */
2224                 mlog(ML_ERROR, "%s: res %.*s, DEREF to node %u got %d\n",
2225                      dlm->name, namelen, lockname, res->owner, r);
2226                 dlm_print_one_lock_resource(res);
2227                 BUG();
2228         }
2229         return ret;
2230 }
2231
2232 int dlm_deref_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
2233                               void **ret_data)
2234 {
2235         struct dlm_ctxt *dlm = data;
2236         struct dlm_deref_lockres *deref = (struct dlm_deref_lockres *)msg->buf;
2237         struct dlm_lock_resource *res = NULL;
2238         char *name;
2239         unsigned int namelen;
2240         int ret = -EINVAL;
2241         u8 node;
2242         unsigned int hash;
2243         struct dlm_work_item *item;
2244         int cleared = 0;
2245         int dispatch = 0;
2246
2247         if (!dlm_grab(dlm))
2248                 return 0;
2249
2250         name = deref->name;
2251         namelen = deref->namelen;
2252         node = deref->node_idx;
2253
2254         if (namelen > DLM_LOCKID_NAME_MAX) {
2255                 mlog(ML_ERROR, "Invalid name length!");
2256                 goto done;
2257         }
2258         if (deref->node_idx >= O2NM_MAX_NODES) {
2259                 mlog(ML_ERROR, "Invalid node number: %u\n", node);
2260                 goto done;
2261         }
2262
2263         hash = dlm_lockid_hash(name, namelen);
2264
2265         spin_lock(&dlm->spinlock);
2266         res = __dlm_lookup_lockres_full(dlm, name, namelen, hash);
2267         if (!res) {
2268                 spin_unlock(&dlm->spinlock);
2269                 mlog(ML_ERROR, "%s:%.*s: bad lockres name\n",
2270                      dlm->name, namelen, name);
2271                 goto done;
2272         }
2273         spin_unlock(&dlm->spinlock);
2274
2275         spin_lock(&res->spinlock);
2276         if (res->state & DLM_LOCK_RES_SETREF_INPROG)
2277                 dispatch = 1;
2278         else {
2279                 BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF);
2280                 if (test_bit(node, res->refmap)) {
2281                         dlm_lockres_clear_refmap_bit(dlm, res, node);
2282                         cleared = 1;
2283                 }
2284         }
2285         spin_unlock(&res->spinlock);
2286
2287         if (!dispatch) {
2288                 if (cleared)
2289                         dlm_lockres_calc_usage(dlm, res);
2290                 else {
2291                         mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref "
2292                         "but it is already dropped!\n", dlm->name,
2293                         res->lockname.len, res->lockname.name, node);
2294                         dlm_print_one_lock_resource(res);
2295                 }
2296                 ret = 0;
2297                 goto done;
2298         }
2299
2300         item = kzalloc(sizeof(*item), GFP_NOFS);
2301         if (!item) {
2302                 ret = -ENOMEM;
2303                 mlog_errno(ret);
2304                 goto done;
2305         }
2306
2307         dlm_init_work_item(dlm, item, dlm_deref_lockres_worker, NULL);
2308         item->u.dl.deref_res = res;
2309         item->u.dl.deref_node = node;
2310
2311         spin_lock(&dlm->work_lock);
2312         list_add_tail(&item->list, &dlm->work_list);
2313         spin_unlock(&dlm->work_lock);
2314
2315         queue_work(dlm->dlm_worker, &dlm->dispatched_work);
2316         return 0;
2317
2318 done:
2319         if (res)
2320                 dlm_lockres_put(res);
2321         dlm_put(dlm);
2322
2323         return ret;
2324 }
2325
2326 static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data)
2327 {
2328         struct dlm_ctxt *dlm;
2329         struct dlm_lock_resource *res;
2330         u8 node;
2331         u8 cleared = 0;
2332
2333         dlm = item->dlm;
2334         res = item->u.dl.deref_res;
2335         node = item->u.dl.deref_node;
2336
2337         spin_lock(&res->spinlock);
2338         BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF);
2339         if (test_bit(node, res->refmap)) {
2340                 __dlm_wait_on_lockres_flags(res, DLM_LOCK_RES_SETREF_INPROG);
2341                 dlm_lockres_clear_refmap_bit(dlm, res, node);
2342                 cleared = 1;
2343         }
2344         spin_unlock(&res->spinlock);
2345
2346         if (cleared) {
2347                 mlog(0, "%s:%.*s node %u ref dropped in dispatch\n",
2348                      dlm->name, res->lockname.len, res->lockname.name, node);
2349                 dlm_lockres_calc_usage(dlm, res);
2350         } else {
2351                 mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref "
2352                      "but it is already dropped!\n", dlm->name,
2353                      res->lockname.len, res->lockname.name, node);
2354                 dlm_print_one_lock_resource(res);
2355         }
2356
2357         dlm_lockres_put(res);
2358 }
2359
2360 /*
2361  * A migrateable resource is one that is :
2362  * 1. locally mastered, and,
2363  * 2. zero local locks, and,
2364  * 3. one or more non-local locks, or, one or more references
2365  * Returns 1 if yes, 0 if not.
2366  */
2367 static int dlm_is_lockres_migrateable(struct dlm_ctxt *dlm,
2368                                       struct dlm_lock_resource *res)
2369 {
2370         enum dlm_lockres_list idx;
2371         int nonlocal = 0, node_ref;
2372         struct list_head *queue;
2373         struct dlm_lock *lock;
2374         u64 cookie;
2375
2376         assert_spin_locked(&res->spinlock);
2377
2378         if (res->owner != dlm->node_num)
2379                 return 0;
2380
2381         for (idx = DLM_GRANTED_LIST; idx <= DLM_BLOCKED_LIST; idx++) {
2382                 queue = dlm_list_idx_to_ptr(res, idx);
2383                 list_for_each_entry(lock, queue, list) {
2384                         if (lock->ml.node != dlm->node_num) {
2385                                 nonlocal++;
2386                                 continue;
2387                         }
2388                         cookie = be64_to_cpu(lock->ml.cookie);
2389                         mlog(0, "%s: Not migrateable res %.*s, lock %u:%llu on "
2390                              "%s list\n", dlm->name, res->lockname.len,
2391                              res->lockname.name,
2392                              dlm_get_lock_cookie_node(cookie),
2393                              dlm_get_lock_cookie_seq(cookie),
2394                              dlm_list_in_text(idx));
2395                         return 0;
2396                 }
2397         }
2398
2399         if (!nonlocal) {
2400                 node_ref = find_next_bit(res->refmap, O2NM_MAX_NODES, 0);
2401                 if (node_ref >= O2NM_MAX_NODES)
2402                         return 0;
2403         }
2404
2405         mlog(0, "%s: res %.*s, Migrateable\n", dlm->name, res->lockname.len,
2406              res->lockname.name);
2407
2408         return 1;
2409 }
2410
2411 /*
2412  * DLM_MIGRATE_LOCKRES
2413  */
2414
2415
2416 static int dlm_migrate_lockres(struct dlm_ctxt *dlm,
2417                                struct dlm_lock_resource *res, u8 target)
2418 {
2419         struct dlm_master_list_entry *mle = NULL;
2420         struct dlm_master_list_entry *oldmle = NULL;
2421         struct dlm_migratable_lockres *mres = NULL;
2422         int ret = 0;
2423         const char *name;
2424         unsigned int namelen;
2425         int mle_added = 0;
2426         int wake = 0;
2427
2428         if (!dlm_grab(dlm))
2429                 return -EINVAL;
2430
2431         BUG_ON(target == O2NM_MAX_NODES);
2432
2433         name = res->lockname.name;
2434         namelen = res->lockname.len;
2435
2436         mlog(0, "%s: Migrating %.*s to node %u\n", dlm->name, namelen, name,
2437              target);
2438
2439         /* preallocate up front. if this fails, abort */
2440         ret = -ENOMEM;
2441         mres = (struct dlm_migratable_lockres *) __get_free_page(GFP_NOFS);
2442         if (!mres) {
2443                 mlog_errno(ret);
2444                 goto leave;
2445         }
2446
2447         mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
2448         if (!mle) {
2449                 mlog_errno(ret);
2450                 goto leave;
2451         }
2452         ret = 0;
2453
2454         /*
2455          * clear any existing master requests and
2456          * add the migration mle to the list
2457          */
2458         spin_lock(&dlm->spinlock);
2459         spin_lock(&dlm->master_lock);
2460         ret = dlm_add_migration_mle(dlm, res, mle, &oldmle, name,
2461                                     namelen, target, dlm->node_num);
2462         /* get an extra reference on the mle.
2463          * otherwise the assert_master from the new
2464          * master will destroy this.
2465          */
2466         dlm_get_mle_inuse(mle);
2467         spin_unlock(&dlm->master_lock);
2468         spin_unlock(&dlm->spinlock);
2469
2470         if (ret == -EEXIST) {
2471                 mlog(0, "another process is already migrating it\n");
2472                 goto fail;
2473         }
2474         mle_added = 1;
2475
2476         /*
2477          * set the MIGRATING flag and flush asts
2478          * if we fail after this we need to re-dirty the lockres
2479          */
2480         if (dlm_mark_lockres_migrating(dlm, res, target) < 0) {
2481                 mlog(ML_ERROR, "tried to migrate %.*s to %u, but "
2482                      "the target went down.\n", res->lockname.len,
2483                      res->lockname.name, target);
2484                 spin_lock(&res->spinlock);
2485                 res->state &= ~DLM_LOCK_RES_MIGRATING;
2486                 wake = 1;
2487                 spin_unlock(&res->spinlock);
2488                 ret = -EINVAL;
2489         }
2490
2491 fail:
2492         if (oldmle) {
2493                 /* master is known, detach if not already detached */
2494                 dlm_mle_detach_hb_events(dlm, oldmle);
2495                 dlm_put_mle(oldmle);
2496         }
2497
2498         if (ret < 0) {
2499                 if (mle_added) {
2500                         dlm_mle_detach_hb_events(dlm, mle);
2501                         dlm_put_mle(mle);
2502                         dlm_put_mle_inuse(mle);
2503                 } else if (mle) {
2504                         kmem_cache_free(dlm_mle_cache, mle);
2505                         mle = NULL;
2506                 }
2507                 goto leave;
2508         }
2509
2510         /*
2511          * at this point, we have a migration target, an mle
2512          * in the master list, and the MIGRATING flag set on
2513          * the lockres
2514          */
2515
2516         /* now that remote nodes are spinning on the MIGRATING flag,
2517          * ensure that all assert_master work is flushed. */
2518         flush_workqueue(dlm->dlm_worker);
2519
2520         /* notify new node and send all lock state */
2521         /* call send_one_lockres with migration flag.
2522          * this serves as notice to the target node that a
2523          * migration is starting. */
2524         ret = dlm_send_one_lockres(dlm, res, mres, target,
2525                                    DLM_MRES_MIGRATION);
2526
2527         if (ret < 0) {
2528                 mlog(0, "migration to node %u failed with %d\n",
2529                      target, ret);
2530                 /* migration failed, detach and clean up mle */
2531                 dlm_mle_detach_hb_events(dlm, mle);
2532                 dlm_put_mle(mle);
2533                 dlm_put_mle_inuse(mle);
2534                 spin_lock(&res->spinlock);
2535                 res->state &= ~DLM_LOCK_RES_MIGRATING;
2536                 wake = 1;
2537                 spin_unlock(&res->spinlock);
2538                 if (dlm_is_host_down(ret))
2539                         dlm_wait_for_node_death(dlm, target,
2540                                                 DLM_NODE_DEATH_WAIT_MAX);
2541                 goto leave;
2542         }
2543
2544         /* at this point, the target sends a message to all nodes,
2545          * (using dlm_do_migrate_request).  this node is skipped since
2546          * we had to put an mle in the list to begin the process.  this
2547          * node now waits for target to do an assert master.  this node
2548          * will be the last one notified, ensuring that the migration
2549          * is complete everywhere.  if the target dies while this is
2550          * going on, some nodes could potentially see the target as the
2551          * master, so it is important that my recovery finds the migration
2552          * mle and sets the master to UNKNOWN. */
2553
2554
2555         /* wait for new node to assert master */
2556         while (1) {
2557                 ret = wait_event_interruptible_timeout(mle->wq,
2558                                         (atomic_read(&mle->woken) == 1),
2559                                         msecs_to_jiffies(5000));
2560
2561                 if (ret >= 0) {
2562                         if (atomic_read(&mle->woken) == 1 ||
2563                             res->owner == target)
2564                                 break;
2565
2566                         mlog(0, "%s:%.*s: timed out during migration\n",
2567                              dlm->name, res->lockname.len, res->lockname.name);
2568                         /* avoid hang during shutdown when migrating lockres
2569                          * to a node which also goes down */
2570                         if (dlm_is_node_dead(dlm, target)) {
2571                                 mlog(0, "%s:%.*s: expected migration "
2572                                      "target %u is no longer up, restarting\n",
2573                                      dlm->name, res->lockname.len,
2574                                      res->lockname.name, target);
2575                                 ret = -EINVAL;
2576                                 /* migration failed, detach and clean up mle */
2577                                 dlm_mle_detach_hb_events(dlm, mle);
2578                                 dlm_put_mle(mle);
2579                                 dlm_put_mle_inuse(mle);
2580                                 spin_lock(&res->spinlock);
2581                                 res->state &= ~DLM_LOCK_RES_MIGRATING;
2582                                 wake = 1;
2583                                 spin_unlock(&res->spinlock);
2584                                 goto leave;
2585                         }
2586                 } else
2587                         mlog(0, "%s:%.*s: caught signal during migration\n",
2588                              dlm->name, res->lockname.len, res->lockname.name);
2589         }
2590
2591         /* all done, set the owner, clear the flag */
2592         spin_lock(&res->spinlock);
2593         dlm_set_lockres_owner(dlm, res, target);
2594         res->state &= ~DLM_LOCK_RES_MIGRATING;
2595         dlm_remove_nonlocal_locks(dlm, res);
2596         spin_unlock(&res->spinlock);
2597         wake_up(&res->wq);
2598
2599         /* master is known, detach if not already detached */
2600         dlm_mle_detach_hb_events(dlm, mle);
2601         dlm_put_mle_inuse(mle);
2602         ret = 0;
2603
2604         dlm_lockres_calc_usage(dlm, res);
2605
2606 leave:
2607         /* re-dirty the lockres if we failed */
2608         if (ret < 0)
2609                 dlm_kick_thread(dlm, res);
2610
2611         /* wake up waiters if the MIGRATING flag got set
2612          * but migration failed */
2613         if (wake)
2614                 wake_up(&res->wq);
2615
2616         if (mres)
2617                 free_page((unsigned long)mres);
2618
2619         dlm_put(dlm);
2620
2621         mlog(0, "%s: Migrating %.*s to %u, returns %d\n", dlm->name, namelen,
2622              name, target, ret);
2623         return ret;
2624 }
2625
2626 #define DLM_MIGRATION_RETRY_MS  100
2627
2628 /*
2629  * Should be called only after beginning the domain leave process.
2630  * There should not be any remaining locks on nonlocal lock resources,
2631  * and there should be no local locks left on locally mastered resources.
2632  *
2633  * Called with the dlm spinlock held, may drop it to do migration, but
2634  * will re-acquire before exit.
2635  *
2636  * Returns: 1 if dlm->spinlock was dropped/retaken, 0 if never dropped
2637  */
2638 int dlm_empty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res)
2639 {
2640         int ret;
2641         int lock_dropped = 0;
2642         u8 target = O2NM_MAX_NODES;
2643
2644         assert_spin_locked(&dlm->spinlock);
2645
2646         spin_lock(&res->spinlock);
2647         if (dlm_is_lockres_migrateable(dlm, res))
2648                 target = dlm_pick_migration_target(dlm, res);
2649         spin_unlock(&res->spinlock);
2650
2651         if (target == O2NM_MAX_NODES)
2652                 goto leave;
2653
2654         /* Wheee! Migrate lockres here! Will sleep so drop spinlock. */
2655         spin_unlock(&dlm->spinlock);
2656         lock_dropped = 1;
2657         ret = dlm_migrate_lockres(dlm, res, target);
2658         if (ret)
2659                 mlog(0, "%s: res %.*s, Migrate to node %u failed with %d\n",
2660                      dlm->name, res->lockname.len, res->lockname.name,
2661                      target, ret);
2662         spin_lock(&dlm->spinlock);
2663 leave:
2664         return lock_dropped;
2665 }
2666
2667 int dlm_lock_basts_flushed(struct dlm_ctxt *dlm, struct dlm_lock *lock)
2668 {
2669         int ret;
2670         spin_lock(&dlm->ast_lock);
2671         spin_lock(&lock->spinlock);
2672         ret = (list_empty(&lock->bast_list) && !lock->bast_pending);
2673         spin_unlock(&lock->spinlock);
2674         spin_unlock(&dlm->ast_lock);
2675         return ret;
2676 }
2677
2678 static int dlm_migration_can_proceed(struct dlm_ctxt *dlm,
2679                                      struct dlm_lock_resource *res,
2680                                      u8 mig_target)
2681 {
2682         int can_proceed;
2683         spin_lock(&res->spinlock);
2684         can_proceed = !!(res->state & DLM_LOCK_RES_MIGRATING);
2685         spin_unlock(&res->spinlock);
2686
2687         /* target has died, so make the caller break out of the
2688          * wait_event, but caller must recheck the domain_map */
2689         spin_lock(&dlm->spinlock);
2690         if (!test_bit(mig_target, dlm->domain_map))
2691                 can_proceed = 1;
2692         spin_unlock(&dlm->spinlock);
2693         return can_proceed;
2694 }
2695
2696 static int dlm_lockres_is_dirty(struct dlm_ctxt *dlm,
2697                                 struct dlm_lock_resource *res)
2698 {
2699         int ret;
2700         spin_lock(&res->spinlock);
2701         ret = !!(res->state & DLM_LOCK_RES_DIRTY);
2702         spin_unlock(&res->spinlock);
2703         return ret;
2704 }
2705
2706
2707 static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm,
2708                                        struct dlm_lock_resource *res,
2709                                        u8 target)
2710 {
2711         int ret = 0;
2712
2713         mlog(0, "dlm_mark_lockres_migrating: %.*s, from %u to %u\n",
2714                res->lockname.len, res->lockname.name, dlm->node_num,
2715                target);
2716         /* need to set MIGRATING flag on lockres.  this is done by
2717          * ensuring that all asts have been flushed for this lockres. */
2718         spin_lock(&res->spinlock);
2719         BUG_ON(res->migration_pending);
2720         res->migration_pending = 1;
2721         /* strategy is to reserve an extra ast then release
2722          * it below, letting the release do all of the work */
2723         __dlm_lockres_reserve_ast(res);
2724         spin_unlock(&res->spinlock);
2725
2726         /* now flush all the pending asts */
2727         dlm_kick_thread(dlm, res);
2728         /* before waiting on DIRTY, block processes which may
2729          * try to dirty the lockres before MIGRATING is set */
2730         spin_lock(&res->spinlock);
2731         BUG_ON(res->state & DLM_LOCK_RES_BLOCK_DIRTY);
2732         res->state |= DLM_LOCK_RES_BLOCK_DIRTY;
2733         spin_unlock(&res->spinlock);
2734         /* now wait on any pending asts and the DIRTY state */
2735         wait_event(dlm->ast_wq, !dlm_lockres_is_dirty(dlm, res));
2736         dlm_lockres_release_ast(dlm, res);
2737
2738         mlog(0, "about to wait on migration_wq, dirty=%s\n",
2739                res->state & DLM_LOCK_RES_DIRTY ? "yes" : "no");
2740         /* if the extra ref we just put was the final one, this
2741          * will pass thru immediately.  otherwise, we need to wait
2742          * for the last ast to finish. */
2743 again:
2744         ret = wait_event_interruptible_timeout(dlm->migration_wq,
2745                    dlm_migration_can_proceed(dlm, res, target),
2746                    msecs_to_jiffies(1000));
2747         if (ret < 0) {
2748                 mlog(0, "woken again: migrating? %s, dead? %s\n",
2749                        res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no",
2750                        test_bit(target, dlm->domain_map) ? "no":"yes");
2751         } else {
2752                 mlog(0, "all is well: migrating? %s, dead? %s\n",
2753                        res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no",
2754                        test_bit(target, dlm->domain_map) ? "no":"yes");
2755         }
2756         if (!dlm_migration_can_proceed(dlm, res, target)) {
2757                 mlog(0, "trying again...\n");
2758                 goto again;
2759         }
2760
2761         ret = 0;
2762         /* did the target go down or die? */
2763         spin_lock(&dlm->spinlock);
2764         if (!test_bit(target, dlm->domain_map)) {
2765                 mlog(ML_ERROR, "aha. migration target %u just went down\n",
2766                      target);
2767                 ret = -EHOSTDOWN;
2768         }
2769         spin_unlock(&dlm->spinlock);
2770
2771         /*
2772          * if target is down, we need to clear DLM_LOCK_RES_BLOCK_DIRTY for
2773          * another try; otherwise, we are sure the MIGRATING state is there,
2774          * drop the unneded state which blocked threads trying to DIRTY
2775          */
2776         spin_lock(&res->spinlock);
2777         BUG_ON(!(res->state & DLM_LOCK_RES_BLOCK_DIRTY));
2778         res->state &= ~DLM_LOCK_RES_BLOCK_DIRTY;
2779         if (!ret)
2780                 BUG_ON(!(res->state & DLM_LOCK_RES_MIGRATING));
2781         spin_unlock(&res->spinlock);
2782
2783         /*
2784          * at this point:
2785          *
2786          *   o the DLM_LOCK_RES_MIGRATING flag is set if target not down
2787          *   o there are no pending asts on this lockres
2788          *   o all processes trying to reserve an ast on this
2789          *     lockres must wait for the MIGRATING flag to clear
2790          */
2791         return ret;
2792 }
2793
2794 /* last step in the migration process.
2795  * original master calls this to free all of the dlm_lock
2796  * structures that used to be for other nodes. */
2797 static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm,
2798                                       struct dlm_lock_resource *res)
2799 {
2800         struct list_head *queue = &res->granted;
2801         int i, bit;
2802         struct dlm_lock *lock, *next;
2803
2804         assert_spin_locked(&res->spinlock);
2805
2806         BUG_ON(res->owner == dlm->node_num);
2807
2808         for (i=0; i<3; i++) {
2809                 list_for_each_entry_safe(lock, next, queue, list) {
2810                         if (lock->ml.node != dlm->node_num) {
2811                                 mlog(0, "putting lock for node %u\n",
2812                                      lock->ml.node);
2813                                 /* be extra careful */
2814                                 BUG_ON(!list_empty(&lock->ast_list));
2815                                 BUG_ON(!list_empty(&lock->bast_list));
2816                                 BUG_ON(lock->ast_pending);
2817                                 BUG_ON(lock->bast_pending);
2818                                 dlm_lockres_clear_refmap_bit(dlm, res,
2819                                                              lock->ml.node);
2820                                 list_del_init(&lock->list);
2821                                 dlm_lock_put(lock);
2822                                 /* In a normal unlock, we would have added a
2823                                  * DLM_UNLOCK_FREE_LOCK action. Force it. */
2824                                 dlm_lock_put(lock);
2825                         }
2826                 }
2827                 queue++;
2828         }
2829         bit = 0;
2830         while (1) {
2831                 bit = find_next_bit(res->refmap, O2NM_MAX_NODES, bit);
2832                 if (bit >= O2NM_MAX_NODES)
2833                         break;
2834                 /* do not clear the local node reference, if there is a
2835                  * process holding this, let it drop the ref itself */
2836                 if (bit != dlm->node_num) {
2837                         mlog(0, "%s:%.*s: node %u had a ref to this "
2838                              "migrating lockres, clearing\n", dlm->name,
2839                              res->lockname.len, res->lockname.name, bit);
2840                         dlm_lockres_clear_refmap_bit(dlm, res, bit);
2841                 }
2842                 bit++;
2843         }
2844 }
2845
2846 /*
2847  * Pick a node to migrate the lock resource to. This function selects a
2848  * potential target based first on the locks and then on refmap. It skips
2849  * nodes that are in the process of exiting the domain.
2850  */
2851 static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm,
2852                                     struct dlm_lock_resource *res)
2853 {
2854         enum dlm_lockres_list idx;
2855         struct list_head *queue = &res->granted;
2856         struct dlm_lock *lock;
2857         int noderef;
2858         u8 nodenum = O2NM_MAX_NODES;
2859
2860         assert_spin_locked(&dlm->spinlock);
2861         assert_spin_locked(&res->spinlock);
2862
2863         /* Go through all the locks */
2864         for (idx = DLM_GRANTED_LIST; idx <= DLM_BLOCKED_LIST; idx++) {
2865                 queue = dlm_list_idx_to_ptr(res, idx);
2866                 list_for_each_entry(lock, queue, list) {
2867                         if (lock->ml.node == dlm->node_num)
2868                                 continue;
2869                         if (test_bit(lock->ml.node, dlm->exit_domain_map))
2870                                 continue;
2871                         nodenum = lock->ml.node;
2872                         goto bail;
2873                 }
2874         }
2875
2876         /* Go thru the refmap */
2877         noderef = -1;
2878         while (1) {
2879                 noderef = find_next_bit(res->refmap, O2NM_MAX_NODES,
2880                                         noderef + 1);
2881                 if (noderef >= O2NM_MAX_NODES)
2882                         break;
2883                 if (noderef == dlm->node_num)
2884                         continue;
2885                 if (test_bit(noderef, dlm->exit_domain_map))
2886                         continue;
2887                 nodenum = noderef;
2888                 goto bail;
2889         }
2890
2891 bail:
2892         return nodenum;
2893 }
2894
2895 /* this is called by the new master once all lockres
2896  * data has been received */
2897 static int dlm_do_migrate_request(struct dlm_ctxt *dlm,
2898                                   struct dlm_lock_resource *res,
2899                                   u8 master, u8 new_master,
2900                                   struct dlm_node_iter *iter)
2901 {
2902         struct dlm_migrate_request migrate;
2903         int ret, skip, status = 0;
2904         int nodenum;
2905
2906         memset(&migrate, 0, sizeof(migrate));
2907         migrate.namelen = res->lockname.len;
2908         memcpy(migrate.name, res->lockname.name, migrate.namelen);
2909         migrate.new_master = new_master;
2910         migrate.master = master;
2911
2912         ret = 0;
2913
2914         /* send message to all nodes, except the master and myself */
2915         while ((nodenum = dlm_node_iter_next(iter)) >= 0) {
2916                 if (nodenum == master ||
2917                     nodenum == new_master)
2918                         continue;
2919
2920                 /* We could race exit domain. If exited, skip. */
2921                 spin_lock(&dlm->spinlock);
2922                 skip = (!test_bit(nodenum, dlm->domain_map));
2923                 spin_unlock(&dlm->spinlock);
2924                 if (skip) {
2925                         clear_bit(nodenum, iter->node_map);
2926                         continue;
2927                 }
2928
2929                 ret = o2net_send_message(DLM_MIGRATE_REQUEST_MSG, dlm->key,
2930                                          &migrate, sizeof(migrate), nodenum,
2931                                          &status);
2932                 if (ret < 0) {
2933                         mlog(ML_ERROR, "%s: res %.*s, Error %d send "
2934                              "MIGRATE_REQUEST to node %u\n", dlm->name,
2935                              migrate.namelen, migrate.name, ret, nodenum);
2936                         if (!dlm_is_host_down(ret)) {
2937                                 mlog(ML_ERROR, "unhandled error=%d!\n", ret);
2938                                 BUG();
2939                         }
2940                         clear_bit(nodenum, iter->node_map);
2941                         ret = 0;
2942                 } else if (status < 0) {
2943                         mlog(0, "migrate request (node %u) returned %d!\n",
2944                              nodenum, status);
2945                         ret = status;
2946                 } else if (status == DLM_MIGRATE_RESPONSE_MASTERY_REF) {
2947                         /* during the migration request we short-circuited
2948                          * the mastery of the lockres.  make sure we have
2949                          * a mastery ref for nodenum */
2950                         mlog(0, "%s:%.*s: need ref for node %u\n",
2951                              dlm->name, res->lockname.len, res->lockname.name,
2952                              nodenum);
2953                         spin_lock(&res->spinlock);
2954                         dlm_lockres_set_refmap_bit(dlm, res, nodenum);
2955                         spin_unlock(&res->spinlock);
2956                 }
2957         }
2958
2959         if (ret < 0)
2960                 mlog_errno(ret);
2961
2962         mlog(0, "returning ret=%d\n", ret);
2963         return ret;
2964 }
2965
2966
2967 /* if there is an existing mle for this lockres, we now know who the master is.
2968  * (the one who sent us *this* message) we can clear it up right away.
2969  * since the process that put the mle on the list still has a reference to it,
2970  * we can unhash it now, set the master and wake the process.  as a result,
2971  * we will have no mle in the list to start with.  now we can add an mle for
2972  * the migration and this should be the only one found for those scanning the
2973  * list.  */
2974 int dlm_migrate_request_handler(struct o2net_msg *msg, u32 len, void *data,
2975                                 void **ret_data)
2976 {
2977         struct dlm_ctxt *dlm = data;
2978         struct dlm_lock_resource *res = NULL;
2979         struct dlm_migrate_request *migrate = (struct dlm_migrate_request *) msg->buf;
2980         struct dlm_master_list_entry *mle = NULL, *oldmle = NULL;
2981         const char *name;
2982         unsigned int namelen, hash;
2983         int ret = 0;
2984
2985         if (!dlm_grab(dlm))
2986                 return -EINVAL;
2987
2988         name = migrate->name;
2989         namelen = migrate->namelen;
2990         hash = dlm_lockid_hash(name, namelen);
2991
2992         /* preallocate.. if this fails, abort */
2993         mle = kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
2994
2995         if (!mle) {
2996                 ret = -ENOMEM;
2997                 goto leave;
2998         }
2999
3000         /* check for pre-existing lock */
3001         spin_lock(&dlm->spinlock);
3002         res = __dlm_lookup_lockres(dlm, name, namelen, hash);
3003         if (res) {
3004                 spin_lock(&res->spinlock);
3005                 if (res->state & DLM_LOCK_RES_RECOVERING) {
3006                         /* if all is working ok, this can only mean that we got
3007                         * a migrate request from a node that we now see as
3008                         * dead.  what can we do here?  drop it to the floor? */
3009                         spin_unlock(&res->spinlock);
3010                         mlog(ML_ERROR, "Got a migrate request, but the "
3011                              "lockres is marked as recovering!");
3012                         kmem_cache_free(dlm_mle_cache, mle);
3013                         ret = -EINVAL; /* need a better solution */
3014                         goto unlock;
3015                 }
3016                 res->state |= DLM_LOCK_RES_MIGRATING;
3017                 spin_unlock(&res->spinlock);
3018         }
3019
3020         spin_lock(&dlm->master_lock);
3021         /* ignore status.  only nonzero status would BUG. */
3022         ret = dlm_add_migration_mle(dlm, res, mle, &oldmle,
3023                                     name, namelen,
3024                                     migrate->new_master,
3025                                     migrate->master);
3026
3027         spin_unlock(&dlm->master_lock);
3028 unlock:
3029         spin_unlock(&dlm->spinlock);
3030
3031         if (oldmle) {
3032                 /* master is known, detach if not already detached */
3033                 dlm_mle_detach_hb_events(dlm, oldmle);
3034                 dlm_put_mle(oldmle);
3035         }
3036
3037         if (res)
3038                 dlm_lockres_put(res);
3039 leave:
3040         dlm_put(dlm);
3041         return ret;
3042 }
3043
3044 /* must be holding dlm->spinlock and dlm->master_lock
3045  * when adding a migration mle, we can clear any other mles
3046  * in the master list because we know with certainty that
3047  * the master is "master".  so we remove any old mle from
3048  * the list after setting it's master field, and then add
3049  * the new migration mle.  this way we can hold with the rule
3050  * of having only one mle for a given lock name at all times. */
3051 static int dlm_add_migration_mle(struct dlm_ctxt *dlm,
3052                                  struct dlm_lock_resource *res,
3053                                  struct dlm_master_list_entry *mle,
3054                                  struct dlm_master_list_entry **oldmle,
3055                                  const char *name, unsigned int namelen,
3056                                  u8 new_master, u8 master)
3057 {
3058         int found;
3059         int ret = 0;
3060
3061         *oldmle = NULL;
3062
3063         assert_spin_locked(&dlm->spinlock);
3064         assert_spin_locked(&dlm->master_lock);
3065
3066         /* caller is responsible for any ref taken here on oldmle */
3067         found = dlm_find_mle(dlm, oldmle, (char *)name, namelen);
3068         if (found) {
3069                 struct dlm_master_list_entry *tmp = *oldmle;
3070                 spin_lock(&tmp->spinlock);
3071                 if (tmp->type == DLM_MLE_MIGRATION) {
3072                         if (master == dlm->node_num) {
3073                                 /* ah another process raced me to it */
3074                                 mlog(0, "tried to migrate %.*s, but some "
3075                                      "process beat me to it\n",
3076                                      namelen, name);
3077                                 ret = -EEXIST;
3078                         } else {
3079                                 /* bad.  2 NODES are trying to migrate! */
3080                                 mlog(ML_ERROR, "migration error  mle: "
3081                                      "master=%u new_master=%u // request: "
3082                                      "master=%u new_master=%u // "
3083                                      "lockres=%.*s\n",
3084                                      tmp->master, tmp->new_master,
3085                                      master, new_master,
3086                                      namelen, name);
3087                                 BUG();
3088                         }
3089                 } else {
3090                         /* this is essentially what assert_master does */
3091                         tmp->master = master;
3092                         atomic_set(&tmp->woken, 1);
3093                         wake_up(&tmp->wq);
3094                         /* remove it so that only one mle will be found */
3095                         __dlm_unlink_mle(dlm, tmp);
3096                         __dlm_mle_detach_hb_events(dlm, tmp);
3097                         ret = DLM_MIGRATE_RESPONSE_MASTERY_REF;
3098                         mlog(0, "%s:%.*s: master=%u, newmaster=%u, "
3099                             "telling master to get ref for cleared out mle "
3100                             "during migration\n", dlm->name, namelen, name,
3101                             master, new_master);
3102                 }
3103                 spin_unlock(&tmp->spinlock);
3104         }
3105
3106         /* now add a migration mle to the tail of the list */
3107         dlm_init_mle(mle, DLM_MLE_MIGRATION, dlm, res, name, namelen);
3108         mle->new_master = new_master;
3109         /* the new master will be sending an assert master for this.
3110          * at that point we will get the refmap reference */
3111         mle->master = master;
3112         /* do this for consistency with other mle types */
3113         set_bit(new_master, mle->maybe_map);
3114         __dlm_insert_mle(dlm, mle);
3115
3116         return ret;
3117 }
3118
3119 /*
3120  * Sets the owner of the lockres, associated to the mle, to UNKNOWN
3121  */
3122 static struct dlm_lock_resource *dlm_reset_mleres_owner(struct dlm_ctxt *dlm,
3123                                         struct dlm_master_list_entry *mle)
3124 {
3125         struct dlm_lock_resource *res;
3126
3127         /* Find the lockres associated to the mle and set its owner to UNK */
3128         res = __dlm_lookup_lockres(dlm, mle->mname, mle->mnamelen,
3129                                    mle->mnamehash);
3130         if (res) {
3131                 spin_unlock(&dlm->master_lock);
3132
3133                 /* move lockres onto recovery list */
3134                 spin_lock(&res->spinlock);
3135                 dlm_set_lockres_owner(dlm, res, DLM_LOCK_RES_OWNER_UNKNOWN);
3136                 dlm_move_lockres_to_recovery_list(dlm, res);
3137                 spin_unlock(&res->spinlock);
3138                 dlm_lockres_put(res);
3139
3140                 /* about to get rid of mle, detach from heartbeat */
3141                 __dlm_mle_detach_hb_events(dlm, mle);
3142
3143                 /* dump the mle */
3144                 spin_lock(&dlm->master_lock);
3145                 __dlm_put_mle(mle);
3146                 spin_unlock(&dlm->master_lock);
3147         }
3148
3149         return res;
3150 }
3151
3152 static void dlm_clean_migration_mle(struct dlm_ctxt *dlm,
3153                                     struct dlm_master_list_entry *mle)
3154 {
3155         __dlm_mle_detach_hb_events(dlm, mle);
3156
3157         spin_lock(&mle->spinlock);
3158         __dlm_unlink_mle(dlm, mle);
3159         atomic_set(&mle->woken, 1);
3160         spin_unlock(&mle->spinlock);
3161
3162         wake_up(&mle->wq);
3163 }
3164
3165 static void dlm_clean_block_mle(struct dlm_ctxt *dlm,
3166                                 struct dlm_master_list_entry *mle, u8 dead_node)
3167 {
3168         int bit;
3169
3170         BUG_ON(mle->type != DLM_MLE_BLOCK);
3171
3172         spin_lock(&mle->spinlock);
3173         bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0);
3174         if (bit != dead_node) {
3175                 mlog(0, "mle found, but dead node %u would not have been "
3176                      "master\n", dead_node);
3177                 spin_unlock(&mle->spinlock);
3178         } else {
3179                 /* Must drop the refcount by one since the assert_master will
3180                  * never arrive. This may result in the mle being unlinked and
3181                  * freed, but there may still be a process waiting in the
3182                  * dlmlock path which is fine. */
3183                 mlog(0, "node %u was expected master\n", dead_node);
3184                 atomic_set(&mle->woken, 1);
3185                 spin_unlock(&mle->spinlock);
3186                 wake_up(&mle->wq);
3187
3188                 /* Do not need events any longer, so detach from heartbeat */
3189                 __dlm_mle_detach_hb_events(dlm, mle);
3190                 __dlm_put_mle(mle);
3191         }
3192 }
3193
3194 void dlm_clean_master_list(struct dlm_ctxt *dlm, u8 dead_node)
3195 {
3196         struct dlm_master_list_entry *mle;
3197         struct dlm_lock_resource *res;
3198         struct hlist_head *bucket;
3199         struct hlist_node *list;
3200         unsigned int i;
3201
3202         mlog(0, "dlm=%s, dead node=%u\n", dlm->name, dead_node);
3203 top:
3204         assert_spin_locked(&dlm->spinlock);
3205
3206         /* clean the master list */
3207         spin_lock(&dlm->master_lock);
3208         for (i = 0; i < DLM_HASH_BUCKETS; i++) {
3209                 bucket = dlm_master_hash(dlm, i);
3210                 hlist_for_each(list, bucket) {
3211                         mle = hlist_entry(list, struct dlm_master_list_entry,
3212                                           master_hash_node);
3213
3214                         BUG_ON(mle->type != DLM_MLE_BLOCK &&
3215                                mle->type != DLM_MLE_MASTER &&
3216                                mle->type != DLM_MLE_MIGRATION);
3217
3218                         /* MASTER mles are initiated locally. The waiting
3219                          * process will notice the node map change shortly.
3220                          * Let that happen as normal. */
3221                         if (mle->type == DLM_MLE_MASTER)
3222                                 continue;
3223
3224                         /* BLOCK mles are initiated by other nodes. Need to
3225                          * clean up if the dead node would have been the
3226                          * master. */
3227                         if (mle->type == DLM_MLE_BLOCK) {
3228                                 dlm_clean_block_mle(dlm, mle, dead_node);
3229                                 continue;
3230                         }
3231
3232                         /* Everything else is a MIGRATION mle */
3233
3234                         /* The rule for MIGRATION mles is that the master
3235                          * becomes UNKNOWN if *either* the original or the new
3236                          * master dies. All UNKNOWN lockres' are sent to
3237                          * whichever node becomes the recovery master. The new
3238                          * master is responsible for determining if there is
3239                          * still a master for this lockres, or if he needs to
3240                          * take over mastery. Either way, this node should
3241                          * expect another message to resolve this. */
3242
3243                         if (mle->master != dead_node &&
3244                             mle->new_master != dead_node)
3245                                 continue;
3246
3247                         if (mle->new_master == dead_node && mle->inuse) {
3248                                 mlog(ML_NOTICE, "%s: target %u died during "
3249                                                 "migration from %u, the MLE is "
3250                                                 "still keep used, ignore it!\n",
3251                                                 dlm->name, dead_node,
3252                                                 mle->master);
3253                                 continue;
3254                         }
3255
3256                         /* If we have reached this point, this mle needs to be
3257                          * removed from the list and freed. */
3258                         dlm_clean_migration_mle(dlm, mle);
3259
3260                         mlog(0, "%s: node %u died during migration from "
3261                              "%u to %u!\n", dlm->name, dead_node, mle->master,
3262                              mle->new_master);
3263
3264                         /* If we find a lockres associated with the mle, we've
3265                          * hit this rare case that messes up our lock ordering.
3266                          * If so, we need to drop the master lock so that we can
3267                          * take the lockres lock, meaning that we will have to
3268                          * restart from the head of list. */
3269                         res = dlm_reset_mleres_owner(dlm, mle);
3270                         if (res)
3271                                 /* restart */
3272                                 goto top;
3273
3274                         /* This may be the last reference */
3275                         __dlm_put_mle(mle);
3276                 }
3277         }
3278         spin_unlock(&dlm->master_lock);
3279 }
3280
3281 int dlm_finish_migration(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
3282                          u8 old_master)
3283 {
3284         struct dlm_node_iter iter;
3285         int ret = 0;
3286
3287         spin_lock(&dlm->spinlock);
3288         dlm_node_iter_init(dlm->domain_map, &iter);
3289         clear_bit(old_master, iter.node_map);
3290         clear_bit(dlm->node_num, iter.node_map);
3291         spin_unlock(&dlm->spinlock);
3292
3293         /* ownership of the lockres is changing.  account for the
3294          * mastery reference here since old_master will briefly have
3295          * a reference after the migration completes */
3296         spin_lock(&res->spinlock);
3297         dlm_lockres_set_refmap_bit(dlm, res, old_master);
3298         spin_unlock(&res->spinlock);
3299
3300         mlog(0, "now time to do a migrate request to other nodes\n");
3301         ret = dlm_do_migrate_request(dlm, res, old_master,
3302                                      dlm->node_num, &iter);
3303         if (ret < 0) {
3304                 mlog_errno(ret);
3305                 goto leave;
3306         }
3307
3308         mlog(0, "doing assert master of %.*s to all except the original node\n",
3309              res->lockname.len, res->lockname.name);
3310         /* this call now finishes out the nodemap
3311          * even if one or more nodes die */
3312         ret = dlm_do_assert_master(dlm, res, iter.node_map,
3313                                    DLM_ASSERT_MASTER_FINISH_MIGRATION);
3314         if (ret < 0) {
3315                 /* no longer need to retry.  all living nodes contacted. */
3316                 mlog_errno(ret);
3317                 ret = 0;
3318         }
3319
3320         memset(iter.node_map, 0, sizeof(iter.node_map));
3321         set_bit(old_master, iter.node_map);
3322         mlog(0, "doing assert master of %.*s back to %u\n",
3323              res->lockname.len, res->lockname.name, old_master);
3324         ret = dlm_do_assert_master(dlm, res, iter.node_map,
3325                                    DLM_ASSERT_MASTER_FINISH_MIGRATION);
3326         if (ret < 0) {
3327                 mlog(0, "assert master to original master failed "
3328                      "with %d.\n", ret);
3329                 /* the only nonzero status here would be because of
3330                  * a dead original node.  we're done. */
3331                 ret = 0;
3332         }
3333
3334         /* all done, set the owner, clear the flag */
3335         spin_lock(&res->spinlock);
3336         dlm_set_lockres_owner(dlm, res, dlm->node_num);
3337         res->state &= ~DLM_LOCK_RES_MIGRATING;
3338         spin_unlock(&res->spinlock);
3339         /* re-dirty it on the new master */
3340         dlm_kick_thread(dlm, res);
3341         wake_up(&res->wq);
3342 leave:
3343         return ret;
3344 }
3345
3346 /*
3347  * LOCKRES AST REFCOUNT
3348  * this is integral to migration
3349  */
3350
3351 /* for future intent to call an ast, reserve one ahead of time.
3352  * this should be called only after waiting on the lockres
3353  * with dlm_wait_on_lockres, and while still holding the
3354  * spinlock after the call. */
3355 void __dlm_lockres_reserve_ast(struct dlm_lock_resource *res)
3356 {
3357         assert_spin_locked(&res->spinlock);
3358         if (res->state & DLM_LOCK_RES_MIGRATING) {
3359                 __dlm_print_one_lock_resource(res);
3360         }
3361         BUG_ON(res->state & DLM_LOCK_RES_MIGRATING);
3362
3363         atomic_inc(&res->asts_reserved);
3364 }
3365
3366 /*
3367  * used to drop the reserved ast, either because it went unused,
3368  * or because the ast/bast was actually called.
3369  *
3370  * also, if there is a pending migration on this lockres,
3371  * and this was the last pending ast on the lockres,
3372  * atomically set the MIGRATING flag before we drop the lock.
3373  * this is how we ensure that migration can proceed with no
3374  * asts in progress.  note that it is ok if the state of the
3375  * queues is such that a lock should be granted in the future
3376  * or that a bast should be fired, because the new master will
3377  * shuffle the lists on this lockres as soon as it is migrated.
3378  */
3379 void dlm_lockres_release_ast(struct dlm_ctxt *dlm,
3380                              struct dlm_lock_resource *res)
3381 {
3382         if (!atomic_dec_and_lock(&res->asts_reserved, &res->spinlock))
3383                 return;
3384
3385         if (!res->migration_pending) {
3386                 spin_unlock(&res->spinlock);
3387                 return;
3388         }
3389
3390         BUG_ON(res->state & DLM_LOCK_RES_MIGRATING);
3391         res->migration_pending = 0;
3392         res->state |= DLM_LOCK_RES_MIGRATING;
3393         spin_unlock(&res->spinlock);
3394         wake_up(&res->wq);
3395         wake_up(&dlm->migration_wq);
3396 }
3397
3398 void dlm_force_free_mles(struct dlm_ctxt *dlm)
3399 {
3400         int i;
3401         struct hlist_head *bucket;
3402         struct dlm_master_list_entry *mle;
3403         struct hlist_node *tmp, *list;
3404
3405         /*
3406          * We notified all other nodes that we are exiting the domain and
3407          * marked the dlm state to DLM_CTXT_LEAVING. If any mles are still
3408          * around we force free them and wake any processes that are waiting
3409          * on the mles
3410          */
3411         spin_lock(&dlm->spinlock);
3412         spin_lock(&dlm->master_lock);
3413
3414         BUG_ON(dlm->dlm_state != DLM_CTXT_LEAVING);
3415         BUG_ON((find_next_bit(dlm->domain_map, O2NM_MAX_NODES, 0) < O2NM_MAX_NODES));
3416
3417         for (i = 0; i < DLM_HASH_BUCKETS; i++) {
3418                 bucket = dlm_master_hash(dlm, i);
3419                 hlist_for_each_safe(list, tmp, bucket) {
3420                         mle = hlist_entry(list, struct dlm_master_list_entry,
3421                                           master_hash_node);
3422                         if (mle->type != DLM_MLE_BLOCK) {
3423                                 mlog(ML_ERROR, "bad mle: %p\n", mle);
3424                                 dlm_print_one_mle(mle);
3425                         }
3426                         atomic_set(&mle->woken, 1);
3427                         wake_up(&mle->wq);
3428
3429                         __dlm_unlink_mle(dlm, mle);
3430                         __dlm_mle_detach_hb_events(dlm, mle);
3431                         __dlm_put_mle(mle);
3432                 }
3433         }
3434         spin_unlock(&dlm->master_lock);
3435         spin_unlock(&dlm->spinlock);
3436 }