blob: 9229e04362f67cd289ab01ec65d32a2939012401 [file] [log] [blame]
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * 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/utsname.h>
34#include <linux/init.h>
35#include <linux/sysctl.h>
36#include <linux/random.h>
37#include <linux/blkdev.h>
38#include <linux/socket.h>
39#include <linux/inet.h>
40#include <linux/spinlock.h>
41#include <linux/delay.h>
42
43
44#include "cluster/heartbeat.h"
45#include "cluster/nodemanager.h"
46#include "cluster/tcp.h"
47
48#include "dlmapi.h"
49#include "dlmcommon.h"
Adrian Bunk82353b52005-12-19 11:16:07 -080050#include "dlmdomain.h"
Kurt Hackel6714d8e2005-12-15 14:31:23 -080051
52#define MLOG_MASK_PREFIX (ML_DLM|ML_DLM_MASTER)
53#include "cluster/masklog.h"
54
55enum dlm_mle_type {
56 DLM_MLE_BLOCK,
57 DLM_MLE_MASTER,
58 DLM_MLE_MIGRATION
59};
60
61struct dlm_lock_name
62{
63 u8 len;
64 u8 name[DLM_LOCKID_NAME_MAX];
65};
66
67struct dlm_master_list_entry
68{
69 struct list_head list;
70 struct list_head hb_events;
71 struct dlm_ctxt *dlm;
72 spinlock_t spinlock;
73 wait_queue_head_t wq;
74 atomic_t woken;
75 struct kref mle_refs;
Kurt Hackela2bf0472006-04-27 18:51:26 -070076 int inuse;
Kurt Hackel6714d8e2005-12-15 14:31:23 -080077 unsigned long maybe_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
78 unsigned long vote_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
79 unsigned long response_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
80 unsigned long node_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
81 u8 master;
82 u8 new_master;
83 enum dlm_mle_type type;
84 struct o2hb_callback_func mle_hb_up;
85 struct o2hb_callback_func mle_hb_down;
86 union {
87 struct dlm_lock_resource *res;
88 struct dlm_lock_name name;
89 } u;
90};
91
92static void dlm_mle_node_down(struct dlm_ctxt *dlm,
93 struct dlm_master_list_entry *mle,
94 struct o2nm_node *node,
95 int idx);
96static void dlm_mle_node_up(struct dlm_ctxt *dlm,
97 struct dlm_master_list_entry *mle,
98 struct o2nm_node *node,
99 int idx);
100
101static void dlm_assert_master_worker(struct dlm_work_item *item, void *data);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800102static int dlm_do_assert_master(struct dlm_ctxt *dlm,
103 struct dlm_lock_resource *res,
104 void *nodemap, u32 flags);
Sunil Mushranf3f85462007-01-29 15:19:16 -0800105static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800106
107static inline int dlm_mle_equal(struct dlm_ctxt *dlm,
108 struct dlm_master_list_entry *mle,
109 const char *name,
110 unsigned int namelen)
111{
112 struct dlm_lock_resource *res;
113
114 if (dlm != mle->dlm)
115 return 0;
116
117 if (mle->type == DLM_MLE_BLOCK ||
118 mle->type == DLM_MLE_MIGRATION) {
119 if (namelen != mle->u.name.len ||
120 memcmp(name, mle->u.name.name, namelen)!=0)
121 return 0;
122 } else {
123 res = mle->u.res;
124 if (namelen != res->lockname.len ||
125 memcmp(res->lockname.name, name, namelen) != 0)
126 return 0;
127 }
128 return 1;
129}
130
Kurt Hackel95883712006-04-27 18:47:41 -0700131#define dlm_print_nodemap(m) _dlm_print_nodemap(m,#m)
Mark Fasheh8a9343f2006-05-01 14:55:10 -0700132static void _dlm_print_nodemap(unsigned long *map, const char *mapname)
Kurt Hackel95883712006-04-27 18:47:41 -0700133{
134 int i;
135 printk("%s=[ ", mapname);
136 for (i=0; i<O2NM_MAX_NODES; i++)
137 if (test_bit(i, map))
138 printk("%d ", i);
139 printk("]");
140}
141
Mark Fasheh8a9343f2006-05-01 14:55:10 -0700142static void dlm_print_one_mle(struct dlm_master_list_entry *mle)
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800143{
Kurt Hackel95883712006-04-27 18:47:41 -0700144 int refs;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800145 char *type;
146 char attached;
147 u8 master;
148 unsigned int namelen;
149 const char *name;
150 struct kref *k;
Kurt Hackel95883712006-04-27 18:47:41 -0700151 unsigned long *maybe = mle->maybe_map,
152 *vote = mle->vote_map,
153 *resp = mle->response_map,
154 *node = mle->node_map;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800155
156 k = &mle->mle_refs;
157 if (mle->type == DLM_MLE_BLOCK)
158 type = "BLK";
159 else if (mle->type == DLM_MLE_MASTER)
160 type = "MAS";
161 else
162 type = "MIG";
163 refs = atomic_read(&k->refcount);
164 master = mle->master;
165 attached = (list_empty(&mle->hb_events) ? 'N' : 'Y');
166
167 if (mle->type != DLM_MLE_MASTER) {
168 namelen = mle->u.name.len;
169 name = mle->u.name.name;
170 } else {
171 namelen = mle->u.res->lockname.len;
172 name = mle->u.res->lockname.name;
173 }
174
Kurt Hackel95883712006-04-27 18:47:41 -0700175 mlog(ML_NOTICE, "%.*s: %3s refs=%3d mas=%3u new=%3u evt=%c inuse=%d ",
176 namelen, name, type, refs, master, mle->new_master, attached,
177 mle->inuse);
178 dlm_print_nodemap(maybe);
179 printk(", ");
180 dlm_print_nodemap(vote);
181 printk(", ");
182 dlm_print_nodemap(resp);
183 printk(", ");
184 dlm_print_nodemap(node);
185 printk(", ");
186 printk("\n");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800187}
188
Mark Fasheh8a9343f2006-05-01 14:55:10 -0700189#if 0
190/* Code here is included but defined out as it aids debugging */
191
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800192static void dlm_dump_mles(struct dlm_ctxt *dlm)
193{
194 struct dlm_master_list_entry *mle;
195 struct list_head *iter;
196
197 mlog(ML_NOTICE, "dumping all mles for domain %s:\n", dlm->name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800198 spin_lock(&dlm->master_lock);
199 list_for_each(iter, &dlm->master_list) {
200 mle = list_entry(iter, struct dlm_master_list_entry, list);
201 dlm_print_one_mle(mle);
202 }
203 spin_unlock(&dlm->master_lock);
204}
205
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800206int dlm_dump_all_mles(const char __user *data, unsigned int len)
207{
208 struct list_head *iter;
209 struct dlm_ctxt *dlm;
210
211 spin_lock(&dlm_domain_lock);
212 list_for_each(iter, &dlm_domains) {
213 dlm = list_entry (iter, struct dlm_ctxt, list);
214 mlog(ML_NOTICE, "found dlm: %p, name=%s\n", dlm, dlm->name);
215 dlm_dump_mles(dlm);
216 }
217 spin_unlock(&dlm_domain_lock);
218 return len;
219}
220EXPORT_SYMBOL_GPL(dlm_dump_all_mles);
221
222#endif /* 0 */
223
224
Christoph Lametere18b8902006-12-06 20:33:20 -0800225static struct kmem_cache *dlm_mle_cache = NULL;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800226
227
228static void dlm_mle_release(struct kref *kref);
229static void dlm_init_mle(struct dlm_master_list_entry *mle,
230 enum dlm_mle_type type,
231 struct dlm_ctxt *dlm,
232 struct dlm_lock_resource *res,
233 const char *name,
234 unsigned int namelen);
235static void dlm_put_mle(struct dlm_master_list_entry *mle);
236static void __dlm_put_mle(struct dlm_master_list_entry *mle);
237static int dlm_find_mle(struct dlm_ctxt *dlm,
238 struct dlm_master_list_entry **mle,
239 char *name, unsigned int namelen);
240
Kurt Hackelba2bf212006-12-01 14:47:20 -0800241static int dlm_do_master_request(struct dlm_lock_resource *res,
242 struct dlm_master_list_entry *mle, int to);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800243
244
245static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm,
246 struct dlm_lock_resource *res,
247 struct dlm_master_list_entry *mle,
248 int *blocked);
249static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm,
250 struct dlm_lock_resource *res,
251 struct dlm_master_list_entry *mle,
252 int blocked);
253static int dlm_add_migration_mle(struct dlm_ctxt *dlm,
254 struct dlm_lock_resource *res,
255 struct dlm_master_list_entry *mle,
256 struct dlm_master_list_entry **oldmle,
257 const char *name, unsigned int namelen,
258 u8 new_master, u8 master);
259
260static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm,
261 struct dlm_lock_resource *res);
262static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm,
263 struct dlm_lock_resource *res);
264static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm,
265 struct dlm_lock_resource *res,
266 u8 target);
Kurt Hackelc03872f2006-03-06 14:08:49 -0800267static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm,
268 struct dlm_lock_resource *res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800269
270
271int dlm_is_host_down(int errno)
272{
273 switch (errno) {
274 case -EBADF:
275 case -ECONNREFUSED:
276 case -ENOTCONN:
277 case -ECONNRESET:
278 case -EPIPE:
279 case -EHOSTDOWN:
280 case -EHOSTUNREACH:
281 case -ETIMEDOUT:
282 case -ECONNABORTED:
283 case -ENETDOWN:
284 case -ENETUNREACH:
285 case -ENETRESET:
286 case -ESHUTDOWN:
287 case -ENOPROTOOPT:
288 case -EINVAL: /* if returned from our tcp code,
289 this means there is no socket */
290 return 1;
291 }
292 return 0;
293}
294
295
296/*
297 * MASTER LIST FUNCTIONS
298 */
299
300
301/*
302 * regarding master list entries and heartbeat callbacks:
303 *
304 * in order to avoid sleeping and allocation that occurs in
305 * heartbeat, master list entries are simply attached to the
306 * dlm's established heartbeat callbacks. the mle is attached
307 * when it is created, and since the dlm->spinlock is held at
308 * that time, any heartbeat event will be properly discovered
309 * by the mle. the mle needs to be detached from the
310 * dlm->mle_hb_events list as soon as heartbeat events are no
311 * longer useful to the mle, and before the mle is freed.
312 *
313 * as a general rule, heartbeat events are no longer needed by
314 * the mle once an "answer" regarding the lock master has been
315 * received.
316 */
317static inline void __dlm_mle_attach_hb_events(struct dlm_ctxt *dlm,
318 struct dlm_master_list_entry *mle)
319{
320 assert_spin_locked(&dlm->spinlock);
321
322 list_add_tail(&mle->hb_events, &dlm->mle_hb_events);
323}
324
325
326static inline void __dlm_mle_detach_hb_events(struct dlm_ctxt *dlm,
327 struct dlm_master_list_entry *mle)
328{
329 if (!list_empty(&mle->hb_events))
330 list_del_init(&mle->hb_events);
331}
332
333
334static inline void dlm_mle_detach_hb_events(struct dlm_ctxt *dlm,
335 struct dlm_master_list_entry *mle)
336{
337 spin_lock(&dlm->spinlock);
338 __dlm_mle_detach_hb_events(dlm, mle);
339 spin_unlock(&dlm->spinlock);
340}
341
Kurt Hackela2bf0472006-04-27 18:51:26 -0700342static void dlm_get_mle_inuse(struct dlm_master_list_entry *mle)
343{
344 struct dlm_ctxt *dlm;
345 dlm = mle->dlm;
346
347 assert_spin_locked(&dlm->spinlock);
348 assert_spin_locked(&dlm->master_lock);
349 mle->inuse++;
350 kref_get(&mle->mle_refs);
351}
352
353static void dlm_put_mle_inuse(struct dlm_master_list_entry *mle)
354{
355 struct dlm_ctxt *dlm;
356 dlm = mle->dlm;
357
358 spin_lock(&dlm->spinlock);
359 spin_lock(&dlm->master_lock);
360 mle->inuse--;
361 __dlm_put_mle(mle);
362 spin_unlock(&dlm->master_lock);
363 spin_unlock(&dlm->spinlock);
364
365}
366
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800367/* remove from list and free */
368static void __dlm_put_mle(struct dlm_master_list_entry *mle)
369{
370 struct dlm_ctxt *dlm;
371 dlm = mle->dlm;
372
373 assert_spin_locked(&dlm->spinlock);
374 assert_spin_locked(&dlm->master_lock);
Kurt Hackelaa852352006-04-27 19:04:49 -0700375 if (!atomic_read(&mle->mle_refs.refcount)) {
376 /* this may or may not crash, but who cares.
377 * it's a BUG. */
378 mlog(ML_ERROR, "bad mle: %p\n", mle);
379 dlm_print_one_mle(mle);
380 BUG();
381 } else
382 kref_put(&mle->mle_refs, dlm_mle_release);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800383}
384
385
386/* must not have any spinlocks coming in */
387static void dlm_put_mle(struct dlm_master_list_entry *mle)
388{
389 struct dlm_ctxt *dlm;
390 dlm = mle->dlm;
391
392 spin_lock(&dlm->spinlock);
393 spin_lock(&dlm->master_lock);
394 __dlm_put_mle(mle);
395 spin_unlock(&dlm->master_lock);
396 spin_unlock(&dlm->spinlock);
397}
398
399static inline void dlm_get_mle(struct dlm_master_list_entry *mle)
400{
401 kref_get(&mle->mle_refs);
402}
403
404static void dlm_init_mle(struct dlm_master_list_entry *mle,
405 enum dlm_mle_type type,
406 struct dlm_ctxt *dlm,
407 struct dlm_lock_resource *res,
408 const char *name,
409 unsigned int namelen)
410{
411 assert_spin_locked(&dlm->spinlock);
412
413 mle->dlm = dlm;
414 mle->type = type;
415 INIT_LIST_HEAD(&mle->list);
416 INIT_LIST_HEAD(&mle->hb_events);
417 memset(mle->maybe_map, 0, sizeof(mle->maybe_map));
418 spin_lock_init(&mle->spinlock);
419 init_waitqueue_head(&mle->wq);
420 atomic_set(&mle->woken, 0);
421 kref_init(&mle->mle_refs);
422 memset(mle->response_map, 0, sizeof(mle->response_map));
423 mle->master = O2NM_MAX_NODES;
424 mle->new_master = O2NM_MAX_NODES;
Kurt Hackela2bf0472006-04-27 18:51:26 -0700425 mle->inuse = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800426
427 if (mle->type == DLM_MLE_MASTER) {
428 BUG_ON(!res);
429 mle->u.res = res;
430 } else if (mle->type == DLM_MLE_BLOCK) {
431 BUG_ON(!name);
432 memcpy(mle->u.name.name, name, namelen);
433 mle->u.name.len = namelen;
434 } else /* DLM_MLE_MIGRATION */ {
435 BUG_ON(!name);
436 memcpy(mle->u.name.name, name, namelen);
437 mle->u.name.len = namelen;
438 }
439
440 /* copy off the node_map and register hb callbacks on our copy */
441 memcpy(mle->node_map, dlm->domain_map, sizeof(mle->node_map));
442 memcpy(mle->vote_map, dlm->domain_map, sizeof(mle->vote_map));
443 clear_bit(dlm->node_num, mle->vote_map);
444 clear_bit(dlm->node_num, mle->node_map);
445
446 /* attach the mle to the domain node up/down events */
447 __dlm_mle_attach_hb_events(dlm, mle);
448}
449
450
451/* returns 1 if found, 0 if not */
452static int dlm_find_mle(struct dlm_ctxt *dlm,
453 struct dlm_master_list_entry **mle,
454 char *name, unsigned int namelen)
455{
456 struct dlm_master_list_entry *tmpmle;
457 struct list_head *iter;
458
459 assert_spin_locked(&dlm->master_lock);
460
461 list_for_each(iter, &dlm->master_list) {
462 tmpmle = list_entry(iter, struct dlm_master_list_entry, list);
463 if (!dlm_mle_equal(dlm, tmpmle, name, namelen))
464 continue;
465 dlm_get_mle(tmpmle);
466 *mle = tmpmle;
467 return 1;
468 }
469 return 0;
470}
471
472void dlm_hb_event_notify_attached(struct dlm_ctxt *dlm, int idx, int node_up)
473{
474 struct dlm_master_list_entry *mle;
475 struct list_head *iter;
476
477 assert_spin_locked(&dlm->spinlock);
478
479 list_for_each(iter, &dlm->mle_hb_events) {
480 mle = list_entry(iter, struct dlm_master_list_entry,
481 hb_events);
482 if (node_up)
483 dlm_mle_node_up(dlm, mle, NULL, idx);
484 else
485 dlm_mle_node_down(dlm, mle, NULL, idx);
486 }
487}
488
489static void dlm_mle_node_down(struct dlm_ctxt *dlm,
490 struct dlm_master_list_entry *mle,
491 struct o2nm_node *node, int idx)
492{
493 spin_lock(&mle->spinlock);
494
495 if (!test_bit(idx, mle->node_map))
496 mlog(0, "node %u already removed from nodemap!\n", idx);
497 else
498 clear_bit(idx, mle->node_map);
499
500 spin_unlock(&mle->spinlock);
501}
502
503static void dlm_mle_node_up(struct dlm_ctxt *dlm,
504 struct dlm_master_list_entry *mle,
505 struct o2nm_node *node, int idx)
506{
507 spin_lock(&mle->spinlock);
508
509 if (test_bit(idx, mle->node_map))
510 mlog(0, "node %u already in node map!\n", idx);
511 else
512 set_bit(idx, mle->node_map);
513
514 spin_unlock(&mle->spinlock);
515}
516
517
518int dlm_init_mle_cache(void)
519{
520 dlm_mle_cache = kmem_cache_create("dlm_mle_cache",
521 sizeof(struct dlm_master_list_entry),
522 0, SLAB_HWCACHE_ALIGN,
523 NULL, NULL);
524 if (dlm_mle_cache == NULL)
525 return -ENOMEM;
526 return 0;
527}
528
529void dlm_destroy_mle_cache(void)
530{
531 if (dlm_mle_cache)
532 kmem_cache_destroy(dlm_mle_cache);
533}
534
535static void dlm_mle_release(struct kref *kref)
536{
537 struct dlm_master_list_entry *mle;
538 struct dlm_ctxt *dlm;
539
540 mlog_entry_void();
541
542 mle = container_of(kref, struct dlm_master_list_entry, mle_refs);
543 dlm = mle->dlm;
544
545 if (mle->type != DLM_MLE_MASTER) {
546 mlog(0, "calling mle_release for %.*s, type %d\n",
547 mle->u.name.len, mle->u.name.name, mle->type);
548 } else {
549 mlog(0, "calling mle_release for %.*s, type %d\n",
550 mle->u.res->lockname.len,
551 mle->u.res->lockname.name, mle->type);
552 }
553 assert_spin_locked(&dlm->spinlock);
554 assert_spin_locked(&dlm->master_lock);
555
556 /* remove from list if not already */
557 if (!list_empty(&mle->list))
558 list_del_init(&mle->list);
559
560 /* detach the mle from the domain node up/down events */
561 __dlm_mle_detach_hb_events(dlm, mle);
562
563 /* NOTE: kfree under spinlock here.
564 * if this is bad, we can move this to a freelist. */
565 kmem_cache_free(dlm_mle_cache, mle);
566}
567
568
569/*
570 * LOCK RESOURCE FUNCTIONS
571 */
572
573static void dlm_set_lockres_owner(struct dlm_ctxt *dlm,
574 struct dlm_lock_resource *res,
575 u8 owner)
576{
577 assert_spin_locked(&res->spinlock);
578
579 mlog_entry("%.*s, %u\n", res->lockname.len, res->lockname.name, owner);
580
581 if (owner == dlm->node_num)
582 atomic_inc(&dlm->local_resources);
583 else if (owner == DLM_LOCK_RES_OWNER_UNKNOWN)
584 atomic_inc(&dlm->unknown_resources);
585 else
586 atomic_inc(&dlm->remote_resources);
587
588 res->owner = owner;
589}
590
591void dlm_change_lockres_owner(struct dlm_ctxt *dlm,
592 struct dlm_lock_resource *res, u8 owner)
593{
594 assert_spin_locked(&res->spinlock);
595
596 if (owner == res->owner)
597 return;
598
599 if (res->owner == dlm->node_num)
600 atomic_dec(&dlm->local_resources);
601 else if (res->owner == DLM_LOCK_RES_OWNER_UNKNOWN)
602 atomic_dec(&dlm->unknown_resources);
603 else
604 atomic_dec(&dlm->remote_resources);
605
606 dlm_set_lockres_owner(dlm, res, owner);
607}
608
609
610static void dlm_lockres_release(struct kref *kref)
611{
612 struct dlm_lock_resource *res;
613
614 res = container_of(kref, struct dlm_lock_resource, refs);
615
616 /* This should not happen -- all lockres' have a name
617 * associated with them at init time. */
618 BUG_ON(!res->lockname.name);
619
620 mlog(0, "destroying lockres %.*s\n", res->lockname.len,
621 res->lockname.name);
622
Kurt Hackela7f90d82006-04-27 19:24:21 -0700623 if (!hlist_unhashed(&res->hash_node) ||
624 !list_empty(&res->granted) ||
625 !list_empty(&res->converting) ||
626 !list_empty(&res->blocked) ||
627 !list_empty(&res->dirty) ||
628 !list_empty(&res->recovering) ||
629 !list_empty(&res->purge)) {
630 mlog(ML_ERROR,
631 "Going to BUG for resource %.*s."
632 " We're on a list! [%c%c%c%c%c%c%c]\n",
633 res->lockname.len, res->lockname.name,
634 !hlist_unhashed(&res->hash_node) ? 'H' : ' ',
635 !list_empty(&res->granted) ? 'G' : ' ',
636 !list_empty(&res->converting) ? 'C' : ' ',
637 !list_empty(&res->blocked) ? 'B' : ' ',
638 !list_empty(&res->dirty) ? 'D' : ' ',
639 !list_empty(&res->recovering) ? 'R' : ' ',
640 !list_empty(&res->purge) ? 'P' : ' ');
641
642 dlm_print_one_lock_resource(res);
643 }
644
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800645 /* By the time we're ready to blow this guy away, we shouldn't
646 * be on any lists. */
Mark Fasheh81f20942006-02-28 17:31:22 -0800647 BUG_ON(!hlist_unhashed(&res->hash_node));
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800648 BUG_ON(!list_empty(&res->granted));
649 BUG_ON(!list_empty(&res->converting));
650 BUG_ON(!list_empty(&res->blocked));
651 BUG_ON(!list_empty(&res->dirty));
652 BUG_ON(!list_empty(&res->recovering));
653 BUG_ON(!list_empty(&res->purge));
654
655 kfree(res->lockname.name);
656
657 kfree(res);
658}
659
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800660void dlm_lockres_put(struct dlm_lock_resource *res)
661{
662 kref_put(&res->refs, dlm_lockres_release);
663}
664
665static void dlm_init_lockres(struct dlm_ctxt *dlm,
666 struct dlm_lock_resource *res,
667 const char *name, unsigned int namelen)
668{
669 char *qname;
670
671 /* If we memset here, we lose our reference to the kmalloc'd
672 * res->lockname.name, so be sure to init every field
673 * correctly! */
674
675 qname = (char *) res->lockname.name;
676 memcpy(qname, name, namelen);
677
678 res->lockname.len = namelen;
Mark Fasheha3d33292006-03-09 17:55:56 -0800679 res->lockname.hash = dlm_lockid_hash(name, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800680
681 init_waitqueue_head(&res->wq);
682 spin_lock_init(&res->spinlock);
Mark Fasheh81f20942006-02-28 17:31:22 -0800683 INIT_HLIST_NODE(&res->hash_node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800684 INIT_LIST_HEAD(&res->granted);
685 INIT_LIST_HEAD(&res->converting);
686 INIT_LIST_HEAD(&res->blocked);
687 INIT_LIST_HEAD(&res->dirty);
688 INIT_LIST_HEAD(&res->recovering);
689 INIT_LIST_HEAD(&res->purge);
690 atomic_set(&res->asts_reserved, 0);
691 res->migration_pending = 0;
Kurt Hackelba2bf212006-12-01 14:47:20 -0800692 res->inflight_locks = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800693
694 kref_init(&res->refs);
695
696 /* just for consistency */
697 spin_lock(&res->spinlock);
698 dlm_set_lockres_owner(dlm, res, DLM_LOCK_RES_OWNER_UNKNOWN);
699 spin_unlock(&res->spinlock);
700
701 res->state = DLM_LOCK_RES_IN_PROGRESS;
702
703 res->last_used = 0;
704
705 memset(res->lvb, 0, DLM_LVB_LEN);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800706 memset(res->refmap, 0, sizeof(res->refmap));
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800707}
708
709struct dlm_lock_resource *dlm_new_lockres(struct dlm_ctxt *dlm,
710 const char *name,
711 unsigned int namelen)
712{
713 struct dlm_lock_resource *res;
714
Kurt Hackelad8100e2006-05-01 14:25:21 -0700715 res = kmalloc(sizeof(struct dlm_lock_resource), GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800716 if (!res)
717 return NULL;
718
Kurt Hackelad8100e2006-05-01 14:25:21 -0700719 res->lockname.name = kmalloc(namelen, GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800720 if (!res->lockname.name) {
721 kfree(res);
722 return NULL;
723 }
724
725 dlm_init_lockres(dlm, res, name, namelen);
726 return res;
727}
728
Kurt Hackelba2bf212006-12-01 14:47:20 -0800729void __dlm_lockres_grab_inflight_ref(struct dlm_ctxt *dlm,
730 struct dlm_lock_resource *res,
731 int new_lockres,
732 const char *file,
733 int line)
734{
735 if (!new_lockres)
736 assert_spin_locked(&res->spinlock);
737
738 if (!test_bit(dlm->node_num, res->refmap)) {
739 BUG_ON(res->inflight_locks != 0);
740 dlm_lockres_set_refmap_bit(dlm->node_num, res);
741 }
742 res->inflight_locks++;
743 mlog(0, "%s:%.*s: inflight++: now %u\n",
744 dlm->name, res->lockname.len, res->lockname.name,
745 res->inflight_locks);
746}
747
748void __dlm_lockres_drop_inflight_ref(struct dlm_ctxt *dlm,
749 struct dlm_lock_resource *res,
750 const char *file,
751 int line)
752{
753 assert_spin_locked(&res->spinlock);
754
755 BUG_ON(res->inflight_locks == 0);
756 res->inflight_locks--;
757 mlog(0, "%s:%.*s: inflight--: now %u\n",
758 dlm->name, res->lockname.len, res->lockname.name,
759 res->inflight_locks);
760 if (res->inflight_locks == 0)
761 dlm_lockres_clear_refmap_bit(dlm->node_num, res);
762 wake_up(&res->wq);
763}
764
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800765/*
766 * lookup a lock resource by name.
767 * may already exist in the hashtable.
768 * lockid is null terminated
769 *
770 * if not, allocate enough for the lockres and for
771 * the temporary structure used in doing the mastering.
772 *
773 * also, do a lookup in the dlm->master_list to see
774 * if another node has begun mastering the same lock.
775 * if so, there should be a block entry in there
776 * for this name, and we should *not* attempt to master
777 * the lock here. need to wait around for that node
778 * to assert_master (or die).
779 *
780 */
781struct dlm_lock_resource * dlm_get_lock_resource(struct dlm_ctxt *dlm,
782 const char *lockid,
Mark Fasheh3384f3d2006-09-08 11:38:29 -0700783 int namelen,
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800784 int flags)
785{
786 struct dlm_lock_resource *tmpres=NULL, *res=NULL;
787 struct dlm_master_list_entry *mle = NULL;
788 struct dlm_master_list_entry *alloc_mle = NULL;
789 int blocked = 0;
790 int ret, nodenum;
791 struct dlm_node_iter iter;
Mark Fasheh3384f3d2006-09-08 11:38:29 -0700792 unsigned int hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800793 int tries = 0;
Kurt Hackelc03872f2006-03-06 14:08:49 -0800794 int bit, wait_on_recovery = 0;
Kurt Hackelba2bf212006-12-01 14:47:20 -0800795 int drop_inflight_if_nonlocal = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800796
797 BUG_ON(!lockid);
798
Mark Fasheha3d33292006-03-09 17:55:56 -0800799 hash = dlm_lockid_hash(lockid, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800800
801 mlog(0, "get lockres %s (len %d)\n", lockid, namelen);
802
803lookup:
804 spin_lock(&dlm->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800805 tmpres = __dlm_lookup_lockres_full(dlm, lockid, namelen, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800806 if (tmpres) {
Kurt Hackelba2bf212006-12-01 14:47:20 -0800807 int dropping_ref = 0;
808
809 spin_lock(&tmpres->spinlock);
810 if (tmpres->owner == dlm->node_num) {
811 BUG_ON(tmpres->state & DLM_LOCK_RES_DROPPING_REF);
812 dlm_lockres_grab_inflight_ref(dlm, tmpres);
813 } else if (tmpres->state & DLM_LOCK_RES_DROPPING_REF)
814 dropping_ref = 1;
815 spin_unlock(&tmpres->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800816 spin_unlock(&dlm->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800817
818 /* wait until done messaging the master, drop our ref to allow
819 * the lockres to be purged, start over. */
820 if (dropping_ref) {
821 spin_lock(&tmpres->spinlock);
822 __dlm_wait_on_lockres_flags(tmpres, DLM_LOCK_RES_DROPPING_REF);
823 spin_unlock(&tmpres->spinlock);
824 dlm_lockres_put(tmpres);
825 tmpres = NULL;
826 goto lookup;
827 }
828
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800829 mlog(0, "found in hash!\n");
830 if (res)
831 dlm_lockres_put(res);
832 res = tmpres;
833 goto leave;
834 }
835
836 if (!res) {
837 spin_unlock(&dlm->spinlock);
838 mlog(0, "allocating a new resource\n");
839 /* nothing found and we need to allocate one. */
840 alloc_mle = (struct dlm_master_list_entry *)
Kurt Hackelad8100e2006-05-01 14:25:21 -0700841 kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800842 if (!alloc_mle)
843 goto leave;
844 res = dlm_new_lockres(dlm, lockid, namelen);
845 if (!res)
846 goto leave;
847 goto lookup;
848 }
849
850 mlog(0, "no lockres found, allocated our own: %p\n", res);
851
852 if (flags & LKM_LOCAL) {
853 /* caller knows it's safe to assume it's not mastered elsewhere
854 * DONE! return right away */
855 spin_lock(&res->spinlock);
856 dlm_change_lockres_owner(dlm, res, dlm->node_num);
857 __dlm_insert_lockres(dlm, res);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800858 dlm_lockres_grab_inflight_ref(dlm, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800859 spin_unlock(&res->spinlock);
860 spin_unlock(&dlm->spinlock);
861 /* lockres still marked IN_PROGRESS */
862 goto wake_waiters;
863 }
864
865 /* check master list to see if another node has started mastering it */
866 spin_lock(&dlm->master_lock);
867
868 /* if we found a block, wait for lock to be mastered by another node */
869 blocked = dlm_find_mle(dlm, &mle, (char *)lockid, namelen);
870 if (blocked) {
Kurt Hackelba2bf212006-12-01 14:47:20 -0800871 int mig;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800872 if (mle->type == DLM_MLE_MASTER) {
873 mlog(ML_ERROR, "master entry for nonexistent lock!\n");
874 BUG();
Kurt Hackelba2bf212006-12-01 14:47:20 -0800875 }
876 mig = (mle->type == DLM_MLE_MIGRATION);
877 /* if there is a migration in progress, let the migration
878 * finish before continuing. we can wait for the absence
879 * of the MIGRATION mle: either the migrate finished or
880 * one of the nodes died and the mle was cleaned up.
881 * if there is a BLOCK here, but it already has a master
882 * set, we are too late. the master does not have a ref
883 * for us in the refmap. detach the mle and drop it.
884 * either way, go back to the top and start over. */
885 if (mig || mle->master != O2NM_MAX_NODES) {
886 BUG_ON(mig && mle->master == dlm->node_num);
887 /* we arrived too late. the master does not
888 * have a ref for us. retry. */
889 mlog(0, "%s:%.*s: late on %s\n",
890 dlm->name, namelen, lockid,
891 mig ? "MIGRATION" : "BLOCK");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800892 spin_unlock(&dlm->master_lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800893 spin_unlock(&dlm->spinlock);
894
895 /* master is known, detach */
Kurt Hackelba2bf212006-12-01 14:47:20 -0800896 if (!mig)
897 dlm_mle_detach_hb_events(dlm, mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800898 dlm_put_mle(mle);
899 mle = NULL;
Kurt Hackelba2bf212006-12-01 14:47:20 -0800900 /* this is lame, but we cant wait on either
901 * the mle or lockres waitqueue here */
902 if (mig)
903 msleep(100);
904 goto lookup;
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800905 }
906 } else {
907 /* go ahead and try to master lock on this node */
908 mle = alloc_mle;
909 /* make sure this does not get freed below */
910 alloc_mle = NULL;
911 dlm_init_mle(mle, DLM_MLE_MASTER, dlm, res, NULL, 0);
912 set_bit(dlm->node_num, mle->maybe_map);
913 list_add(&mle->list, &dlm->master_list);
Kurt Hackelc03872f2006-03-06 14:08:49 -0800914
915 /* still holding the dlm spinlock, check the recovery map
916 * to see if there are any nodes that still need to be
917 * considered. these will not appear in the mle nodemap
918 * but they might own this lockres. wait on them. */
919 bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0);
920 if (bit < O2NM_MAX_NODES) {
921 mlog(ML_NOTICE, "%s:%.*s: at least one node (%d) to"
922 "recover before lock mastery can begin\n",
923 dlm->name, namelen, (char *)lockid, bit);
924 wait_on_recovery = 1;
925 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800926 }
927
928 /* at this point there is either a DLM_MLE_BLOCK or a
929 * DLM_MLE_MASTER on the master list, so it's safe to add the
930 * lockres to the hashtable. anyone who finds the lock will
931 * still have to wait on the IN_PROGRESS. */
932
933 /* finally add the lockres to its hash bucket */
934 __dlm_insert_lockres(dlm, res);
Kurt Hackelba2bf212006-12-01 14:47:20 -0800935 /* since this lockres is new it doesnt not require the spinlock */
936 dlm_lockres_grab_inflight_ref_new(dlm, res);
937
938 /* if this node does not become the master make sure to drop
939 * this inflight reference below */
940 drop_inflight_if_nonlocal = 1;
941
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800942 /* get an extra ref on the mle in case this is a BLOCK
943 * if so, the creator of the BLOCK may try to put the last
944 * ref at this time in the assert master handler, so we
945 * need an extra one to keep from a bad ptr deref. */
Kurt Hackela2bf0472006-04-27 18:51:26 -0700946 dlm_get_mle_inuse(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800947 spin_unlock(&dlm->master_lock);
948 spin_unlock(&dlm->spinlock);
949
Kurt Hackele7e69eb2006-05-01 11:49:52 -0700950redo_request:
Kurt Hackelc03872f2006-03-06 14:08:49 -0800951 while (wait_on_recovery) {
952 /* any cluster changes that occurred after dropping the
953 * dlm spinlock would be detectable be a change on the mle,
954 * so we only need to clear out the recovery map once. */
955 if (dlm_is_recovery_lock(lockid, namelen)) {
956 mlog(ML_NOTICE, "%s: recovery map is not empty, but "
957 "must master $RECOVERY lock now\n", dlm->name);
958 if (!dlm_pre_master_reco_lockres(dlm, res))
959 wait_on_recovery = 0;
960 else {
961 mlog(0, "%s: waiting 500ms for heartbeat state "
962 "change\n", dlm->name);
963 msleep(500);
964 }
965 continue;
966 }
967
968 dlm_kick_recovery_thread(dlm);
Kurt Hackelaa087b82006-05-01 12:02:07 -0700969 msleep(1000);
Kurt Hackelc03872f2006-03-06 14:08:49 -0800970 dlm_wait_for_recovery(dlm);
971
972 spin_lock(&dlm->spinlock);
973 bit = find_next_bit(dlm->recovery_map, O2NM_MAX_NODES, 0);
974 if (bit < O2NM_MAX_NODES) {
975 mlog(ML_NOTICE, "%s:%.*s: at least one node (%d) to"
976 "recover before lock mastery can begin\n",
977 dlm->name, namelen, (char *)lockid, bit);
978 wait_on_recovery = 1;
979 } else
980 wait_on_recovery = 0;
981 spin_unlock(&dlm->spinlock);
Kurt Hackelb7084ab2006-05-01 13:54:07 -0700982
983 if (wait_on_recovery)
984 dlm_wait_for_node_recovery(dlm, bit, 10000);
Kurt Hackelc03872f2006-03-06 14:08:49 -0800985 }
986
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800987 /* must wait for lock to be mastered elsewhere */
988 if (blocked)
989 goto wait;
990
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800991 ret = -EINVAL;
992 dlm_node_iter_init(mle->vote_map, &iter);
993 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
Kurt Hackelba2bf212006-12-01 14:47:20 -0800994 ret = dlm_do_master_request(res, mle, nodenum);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800995 if (ret < 0)
996 mlog_errno(ret);
997 if (mle->master != O2NM_MAX_NODES) {
998 /* found a master ! */
Kurt Hackel9c6510a2006-03-02 18:09:26 -0800999 if (mle->master <= nodenum)
1000 break;
1001 /* if our master request has not reached the master
1002 * yet, keep going until it does. this is how the
1003 * master will know that asserts are needed back to
1004 * the lower nodes. */
1005 mlog(0, "%s:%.*s: requests only up to %u but master "
1006 "is %u, keep going\n", dlm->name, namelen,
1007 lockid, nodenum, mle->master);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001008 }
1009 }
1010
1011wait:
1012 /* keep going until the response map includes all nodes */
1013 ret = dlm_wait_for_lock_mastery(dlm, res, mle, &blocked);
1014 if (ret < 0) {
Kurt Hackele7e69eb2006-05-01 11:49:52 -07001015 wait_on_recovery = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001016 mlog(0, "%s:%.*s: node map changed, redo the "
1017 "master request now, blocked=%d\n",
1018 dlm->name, res->lockname.len,
1019 res->lockname.name, blocked);
1020 if (++tries > 20) {
1021 mlog(ML_ERROR, "%s:%.*s: spinning on "
1022 "dlm_wait_for_lock_mastery, blocked=%d\n",
1023 dlm->name, res->lockname.len,
1024 res->lockname.name, blocked);
1025 dlm_print_one_lock_resource(res);
Mark Fasheh8a9343f2006-05-01 14:55:10 -07001026 dlm_print_one_mle(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001027 tries = 0;
1028 }
1029 goto redo_request;
1030 }
1031
1032 mlog(0, "lockres mastered by %u\n", res->owner);
1033 /* make sure we never continue without this */
1034 BUG_ON(res->owner == O2NM_MAX_NODES);
1035
1036 /* master is known, detach if not already detached */
1037 dlm_mle_detach_hb_events(dlm, mle);
1038 dlm_put_mle(mle);
1039 /* put the extra ref */
Kurt Hackela2bf0472006-04-27 18:51:26 -07001040 dlm_put_mle_inuse(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001041
1042wake_waiters:
1043 spin_lock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001044 if (res->owner != dlm->node_num && drop_inflight_if_nonlocal)
1045 dlm_lockres_drop_inflight_ref(dlm, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001046 res->state &= ~DLM_LOCK_RES_IN_PROGRESS;
1047 spin_unlock(&res->spinlock);
1048 wake_up(&res->wq);
1049
1050leave:
1051 /* need to free the unused mle */
1052 if (alloc_mle)
1053 kmem_cache_free(dlm_mle_cache, alloc_mle);
1054
1055 return res;
1056}
1057
1058
1059#define DLM_MASTERY_TIMEOUT_MS 5000
1060
1061static int dlm_wait_for_lock_mastery(struct dlm_ctxt *dlm,
1062 struct dlm_lock_resource *res,
1063 struct dlm_master_list_entry *mle,
1064 int *blocked)
1065{
1066 u8 m;
1067 int ret, bit;
1068 int map_changed, voting_done;
1069 int assert, sleep;
1070
1071recheck:
1072 ret = 0;
1073 assert = 0;
1074
1075 /* check if another node has already become the owner */
1076 spin_lock(&res->spinlock);
1077 if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001078 mlog(0, "%s:%.*s: owner is suddenly %u\n", dlm->name,
1079 res->lockname.len, res->lockname.name, res->owner);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001080 spin_unlock(&res->spinlock);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001081 /* this will cause the master to re-assert across
1082 * the whole cluster, freeing up mles */
Kurt Hackel588e0092006-05-01 11:22:06 -07001083 if (res->owner != dlm->node_num) {
Kurt Hackelba2bf212006-12-01 14:47:20 -08001084 ret = dlm_do_master_request(res, mle, res->owner);
Kurt Hackel588e0092006-05-01 11:22:06 -07001085 if (ret < 0) {
1086 /* give recovery a chance to run */
1087 mlog(ML_ERROR, "link to %u went down?: %d\n", res->owner, ret);
1088 msleep(500);
1089 goto recheck;
1090 }
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001091 }
1092 ret = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001093 goto leave;
1094 }
1095 spin_unlock(&res->spinlock);
1096
1097 spin_lock(&mle->spinlock);
1098 m = mle->master;
1099 map_changed = (memcmp(mle->vote_map, mle->node_map,
1100 sizeof(mle->vote_map)) != 0);
1101 voting_done = (memcmp(mle->vote_map, mle->response_map,
1102 sizeof(mle->vote_map)) == 0);
1103
1104 /* restart if we hit any errors */
1105 if (map_changed) {
1106 int b;
1107 mlog(0, "%s: %.*s: node map changed, restarting\n",
1108 dlm->name, res->lockname.len, res->lockname.name);
1109 ret = dlm_restart_lock_mastery(dlm, res, mle, *blocked);
1110 b = (mle->type == DLM_MLE_BLOCK);
1111 if ((*blocked && !b) || (!*blocked && b)) {
1112 mlog(0, "%s:%.*s: status change: old=%d new=%d\n",
1113 dlm->name, res->lockname.len, res->lockname.name,
1114 *blocked, b);
1115 *blocked = b;
1116 }
1117 spin_unlock(&mle->spinlock);
1118 if (ret < 0) {
1119 mlog_errno(ret);
1120 goto leave;
1121 }
1122 mlog(0, "%s:%.*s: restart lock mastery succeeded, "
1123 "rechecking now\n", dlm->name, res->lockname.len,
1124 res->lockname.name);
1125 goto recheck;
Kurt Hackelaa852352006-04-27 19:04:49 -07001126 } else {
1127 if (!voting_done) {
1128 mlog(0, "map not changed and voting not done "
1129 "for %s:%.*s\n", dlm->name, res->lockname.len,
1130 res->lockname.name);
1131 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001132 }
1133
1134 if (m != O2NM_MAX_NODES) {
1135 /* another node has done an assert!
1136 * all done! */
1137 sleep = 0;
1138 } else {
1139 sleep = 1;
1140 /* have all nodes responded? */
1141 if (voting_done && !*blocked) {
1142 bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0);
1143 if (dlm->node_num <= bit) {
1144 /* my node number is lowest.
1145 * now tell other nodes that I am
1146 * mastering this. */
1147 mle->master = dlm->node_num;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001148 /* ref was grabbed in get_lock_resource
1149 * will be dropped in dlmlock_master */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001150 assert = 1;
1151 sleep = 0;
1152 }
1153 /* if voting is done, but we have not received
1154 * an assert master yet, we must sleep */
1155 }
1156 }
1157
1158 spin_unlock(&mle->spinlock);
1159
1160 /* sleep if we haven't finished voting yet */
1161 if (sleep) {
1162 unsigned long timeo = msecs_to_jiffies(DLM_MASTERY_TIMEOUT_MS);
1163
1164 /*
1165 if (atomic_read(&mle->mle_refs.refcount) < 2)
1166 mlog(ML_ERROR, "mle (%p) refs=%d, name=%.*s\n", mle,
1167 atomic_read(&mle->mle_refs.refcount),
1168 res->lockname.len, res->lockname.name);
1169 */
1170 atomic_set(&mle->woken, 0);
1171 (void)wait_event_timeout(mle->wq,
1172 (atomic_read(&mle->woken) == 1),
1173 timeo);
1174 if (res->owner == O2NM_MAX_NODES) {
Kurt Hackelba2bf212006-12-01 14:47:20 -08001175 mlog(0, "%s:%.*s: waiting again\n", dlm->name,
1176 res->lockname.len, res->lockname.name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001177 goto recheck;
1178 }
1179 mlog(0, "done waiting, master is %u\n", res->owner);
1180 ret = 0;
1181 goto leave;
1182 }
1183
1184 ret = 0; /* done */
1185 if (assert) {
1186 m = dlm->node_num;
1187 mlog(0, "about to master %.*s here, this=%u\n",
1188 res->lockname.len, res->lockname.name, m);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001189 ret = dlm_do_assert_master(dlm, res, mle->vote_map, 0);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001190 if (ret) {
1191 /* This is a failure in the network path,
1192 * not in the response to the assert_master
1193 * (any nonzero response is a BUG on this node).
1194 * Most likely a socket just got disconnected
1195 * due to node death. */
1196 mlog_errno(ret);
1197 }
1198 /* no longer need to restart lock mastery.
1199 * all living nodes have been contacted. */
1200 ret = 0;
1201 }
1202
1203 /* set the lockres owner */
1204 spin_lock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001205 /* mastery reference obtained either during
1206 * assert_master_handler or in get_lock_resource */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001207 dlm_change_lockres_owner(dlm, res, m);
1208 spin_unlock(&res->spinlock);
1209
1210leave:
1211 return ret;
1212}
1213
1214struct dlm_bitmap_diff_iter
1215{
1216 int curnode;
1217 unsigned long *orig_bm;
1218 unsigned long *cur_bm;
1219 unsigned long diff_bm[BITS_TO_LONGS(O2NM_MAX_NODES)];
1220};
1221
1222enum dlm_node_state_change
1223{
1224 NODE_DOWN = -1,
1225 NODE_NO_CHANGE = 0,
1226 NODE_UP
1227};
1228
1229static void dlm_bitmap_diff_iter_init(struct dlm_bitmap_diff_iter *iter,
1230 unsigned long *orig_bm,
1231 unsigned long *cur_bm)
1232{
1233 unsigned long p1, p2;
1234 int i;
1235
1236 iter->curnode = -1;
1237 iter->orig_bm = orig_bm;
1238 iter->cur_bm = cur_bm;
1239
1240 for (i = 0; i < BITS_TO_LONGS(O2NM_MAX_NODES); i++) {
1241 p1 = *(iter->orig_bm + i);
1242 p2 = *(iter->cur_bm + i);
1243 iter->diff_bm[i] = (p1 & ~p2) | (p2 & ~p1);
1244 }
1245}
1246
1247static int dlm_bitmap_diff_iter_next(struct dlm_bitmap_diff_iter *iter,
1248 enum dlm_node_state_change *state)
1249{
1250 int bit;
1251
1252 if (iter->curnode >= O2NM_MAX_NODES)
1253 return -ENOENT;
1254
1255 bit = find_next_bit(iter->diff_bm, O2NM_MAX_NODES,
1256 iter->curnode+1);
1257 if (bit >= O2NM_MAX_NODES) {
1258 iter->curnode = O2NM_MAX_NODES;
1259 return -ENOENT;
1260 }
1261
1262 /* if it was there in the original then this node died */
1263 if (test_bit(bit, iter->orig_bm))
1264 *state = NODE_DOWN;
1265 else
1266 *state = NODE_UP;
1267
1268 iter->curnode = bit;
1269 return bit;
1270}
1271
1272
1273static int dlm_restart_lock_mastery(struct dlm_ctxt *dlm,
1274 struct dlm_lock_resource *res,
1275 struct dlm_master_list_entry *mle,
1276 int blocked)
1277{
1278 struct dlm_bitmap_diff_iter bdi;
1279 enum dlm_node_state_change sc;
1280 int node;
1281 int ret = 0;
1282
1283 mlog(0, "something happened such that the "
1284 "master process may need to be restarted!\n");
1285
1286 assert_spin_locked(&mle->spinlock);
1287
1288 dlm_bitmap_diff_iter_init(&bdi, mle->vote_map, mle->node_map);
1289 node = dlm_bitmap_diff_iter_next(&bdi, &sc);
1290 while (node >= 0) {
1291 if (sc == NODE_UP) {
Kurt Hackele2faea42006-01-12 14:24:55 -08001292 /* a node came up. clear any old vote from
1293 * the response map and set it in the vote map
1294 * then restart the mastery. */
1295 mlog(ML_NOTICE, "node %d up while restarting\n", node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001296
1297 /* redo the master request, but only for the new node */
1298 mlog(0, "sending request to new node\n");
1299 clear_bit(node, mle->response_map);
1300 set_bit(node, mle->vote_map);
1301 } else {
1302 mlog(ML_ERROR, "node down! %d\n", node);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001303 if (blocked) {
1304 int lowest = find_next_bit(mle->maybe_map,
1305 O2NM_MAX_NODES, 0);
1306
1307 /* act like it was never there */
1308 clear_bit(node, mle->maybe_map);
1309
Kurt Hackele7e69eb2006-05-01 11:49:52 -07001310 if (node == lowest) {
1311 mlog(0, "expected master %u died"
1312 " while this node was blocked "
1313 "waiting on it!\n", node);
1314 lowest = find_next_bit(mle->maybe_map,
1315 O2NM_MAX_NODES,
1316 lowest+1);
1317 if (lowest < O2NM_MAX_NODES) {
1318 mlog(0, "%s:%.*s:still "
1319 "blocked. waiting on %u "
1320 "now\n", dlm->name,
1321 res->lockname.len,
1322 res->lockname.name,
1323 lowest);
1324 } else {
1325 /* mle is an MLE_BLOCK, but
1326 * there is now nothing left to
1327 * block on. we need to return
1328 * all the way back out and try
1329 * again with an MLE_MASTER.
1330 * dlm_do_local_recovery_cleanup
1331 * has already run, so the mle
1332 * refcount is ok */
1333 mlog(0, "%s:%.*s: no "
1334 "longer blocking. try to "
1335 "master this here\n",
1336 dlm->name,
1337 res->lockname.len,
1338 res->lockname.name);
1339 mle->type = DLM_MLE_MASTER;
1340 mle->u.res = res;
1341 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001342 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001343 }
1344
Kurt Hackele7e69eb2006-05-01 11:49:52 -07001345 /* now blank out everything, as if we had never
1346 * contacted anyone */
1347 memset(mle->maybe_map, 0, sizeof(mle->maybe_map));
1348 memset(mle->response_map, 0, sizeof(mle->response_map));
1349 /* reset the vote_map to the current node_map */
1350 memcpy(mle->vote_map, mle->node_map,
1351 sizeof(mle->node_map));
1352 /* put myself into the maybe map */
1353 if (mle->type != DLM_MLE_BLOCK)
1354 set_bit(dlm->node_num, mle->maybe_map);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001355 }
1356 ret = -EAGAIN;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001357 node = dlm_bitmap_diff_iter_next(&bdi, &sc);
1358 }
1359 return ret;
1360}
1361
1362
1363/*
1364 * DLM_MASTER_REQUEST_MSG
1365 *
1366 * returns: 0 on success,
1367 * -errno on a network error
1368 *
1369 * on error, the caller should assume the target node is "dead"
1370 *
1371 */
1372
Kurt Hackelba2bf212006-12-01 14:47:20 -08001373static int dlm_do_master_request(struct dlm_lock_resource *res,
1374 struct dlm_master_list_entry *mle, int to)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001375{
1376 struct dlm_ctxt *dlm = mle->dlm;
1377 struct dlm_master_request request;
1378 int ret, response=0, resend;
1379
1380 memset(&request, 0, sizeof(request));
1381 request.node_idx = dlm->node_num;
1382
1383 BUG_ON(mle->type == DLM_MLE_MIGRATION);
1384
1385 if (mle->type != DLM_MLE_MASTER) {
1386 request.namelen = mle->u.name.len;
1387 memcpy(request.name, mle->u.name.name, request.namelen);
1388 } else {
1389 request.namelen = mle->u.res->lockname.len;
1390 memcpy(request.name, mle->u.res->lockname.name,
1391 request.namelen);
1392 }
1393
1394again:
1395 ret = o2net_send_message(DLM_MASTER_REQUEST_MSG, dlm->key, &request,
1396 sizeof(request), to, &response);
1397 if (ret < 0) {
1398 if (ret == -ESRCH) {
1399 /* should never happen */
1400 mlog(ML_ERROR, "TCP stack not ready!\n");
1401 BUG();
1402 } else if (ret == -EINVAL) {
1403 mlog(ML_ERROR, "bad args passed to o2net!\n");
1404 BUG();
1405 } else if (ret == -ENOMEM) {
1406 mlog(ML_ERROR, "out of memory while trying to send "
1407 "network message! retrying\n");
1408 /* this is totally crude */
1409 msleep(50);
1410 goto again;
1411 } else if (!dlm_is_host_down(ret)) {
1412 /* not a network error. bad. */
1413 mlog_errno(ret);
1414 mlog(ML_ERROR, "unhandled error!");
1415 BUG();
1416 }
1417 /* all other errors should be network errors,
1418 * and likely indicate node death */
1419 mlog(ML_ERROR, "link to %d went down!\n", to);
1420 goto out;
1421 }
1422
1423 ret = 0;
1424 resend = 0;
1425 spin_lock(&mle->spinlock);
1426 switch (response) {
1427 case DLM_MASTER_RESP_YES:
1428 set_bit(to, mle->response_map);
1429 mlog(0, "node %u is the master, response=YES\n", to);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001430 mlog(0, "%s:%.*s: master node %u now knows I have a "
1431 "reference\n", dlm->name, res->lockname.len,
1432 res->lockname.name, to);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001433 mle->master = to;
1434 break;
1435 case DLM_MASTER_RESP_NO:
1436 mlog(0, "node %u not master, response=NO\n", to);
1437 set_bit(to, mle->response_map);
1438 break;
1439 case DLM_MASTER_RESP_MAYBE:
1440 mlog(0, "node %u not master, response=MAYBE\n", to);
1441 set_bit(to, mle->response_map);
1442 set_bit(to, mle->maybe_map);
1443 break;
1444 case DLM_MASTER_RESP_ERROR:
1445 mlog(0, "node %u hit an error, resending\n", to);
1446 resend = 1;
1447 response = 0;
1448 break;
1449 default:
1450 mlog(ML_ERROR, "bad response! %u\n", response);
1451 BUG();
1452 }
1453 spin_unlock(&mle->spinlock);
1454 if (resend) {
1455 /* this is also totally crude */
1456 msleep(50);
1457 goto again;
1458 }
1459
1460out:
1461 return ret;
1462}
1463
1464/*
1465 * locks that can be taken here:
1466 * dlm->spinlock
1467 * res->spinlock
1468 * mle->spinlock
1469 * dlm->master_list
1470 *
1471 * if possible, TRIM THIS DOWN!!!
1472 */
Kurt Hackeld74c9802007-01-17 17:04:25 -08001473int dlm_master_request_handler(struct o2net_msg *msg, u32 len, void *data,
1474 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001475{
1476 u8 response = DLM_MASTER_RESP_MAYBE;
1477 struct dlm_ctxt *dlm = data;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001478 struct dlm_lock_resource *res = NULL;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001479 struct dlm_master_request *request = (struct dlm_master_request *) msg->buf;
1480 struct dlm_master_list_entry *mle = NULL, *tmpmle = NULL;
1481 char *name;
Mark Fasheha3d33292006-03-09 17:55:56 -08001482 unsigned int namelen, hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001483 int found, ret;
1484 int set_maybe;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001485 int dispatch_assert = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001486
1487 if (!dlm_grab(dlm))
1488 return DLM_MASTER_RESP_NO;
1489
1490 if (!dlm_domain_fully_joined(dlm)) {
1491 response = DLM_MASTER_RESP_NO;
1492 goto send_response;
1493 }
1494
1495 name = request->name;
1496 namelen = request->namelen;
Mark Fasheha3d33292006-03-09 17:55:56 -08001497 hash = dlm_lockid_hash(name, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001498
1499 if (namelen > DLM_LOCKID_NAME_MAX) {
1500 response = DLM_IVBUFLEN;
1501 goto send_response;
1502 }
1503
1504way_up_top:
1505 spin_lock(&dlm->spinlock);
Mark Fasheha3d33292006-03-09 17:55:56 -08001506 res = __dlm_lookup_lockres(dlm, name, namelen, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001507 if (res) {
1508 spin_unlock(&dlm->spinlock);
1509
1510 /* take care of the easy cases up front */
1511 spin_lock(&res->spinlock);
Kurt Hackel1cd04db2007-01-17 14:53:37 -08001512 if (res->state & (DLM_LOCK_RES_RECOVERING|
1513 DLM_LOCK_RES_MIGRATING)) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001514 spin_unlock(&res->spinlock);
1515 mlog(0, "returning DLM_MASTER_RESP_ERROR since res is "
Kurt Hackel1cd04db2007-01-17 14:53:37 -08001516 "being recovered/migrated\n");
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001517 response = DLM_MASTER_RESP_ERROR;
1518 if (mle)
1519 kmem_cache_free(dlm_mle_cache, mle);
1520 goto send_response;
1521 }
1522
1523 if (res->owner == dlm->node_num) {
Kurt Hackelba2bf212006-12-01 14:47:20 -08001524 mlog(0, "%s:%.*s: setting bit %u in refmap\n",
1525 dlm->name, namelen, name, request->node_idx);
1526 dlm_lockres_set_refmap_bit(request->node_idx, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001527 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001528 response = DLM_MASTER_RESP_YES;
1529 if (mle)
1530 kmem_cache_free(dlm_mle_cache, mle);
1531
1532 /* this node is the owner.
1533 * there is some extra work that needs to
1534 * happen now. the requesting node has
1535 * caused all nodes up to this one to
1536 * create mles. this node now needs to
1537 * go back and clean those up. */
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001538 dispatch_assert = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001539 goto send_response;
1540 } else if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
1541 spin_unlock(&res->spinlock);
1542 // mlog(0, "node %u is the master\n", res->owner);
1543 response = DLM_MASTER_RESP_NO;
1544 if (mle)
1545 kmem_cache_free(dlm_mle_cache, mle);
1546 goto send_response;
1547 }
1548
1549 /* ok, there is no owner. either this node is
1550 * being blocked, or it is actively trying to
1551 * master this lock. */
1552 if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) {
1553 mlog(ML_ERROR, "lock with no owner should be "
1554 "in-progress!\n");
1555 BUG();
1556 }
1557
1558 // mlog(0, "lockres is in progress...\n");
1559 spin_lock(&dlm->master_lock);
1560 found = dlm_find_mle(dlm, &tmpmle, name, namelen);
1561 if (!found) {
1562 mlog(ML_ERROR, "no mle found for this lock!\n");
1563 BUG();
1564 }
1565 set_maybe = 1;
1566 spin_lock(&tmpmle->spinlock);
1567 if (tmpmle->type == DLM_MLE_BLOCK) {
1568 // mlog(0, "this node is waiting for "
1569 // "lockres to be mastered\n");
1570 response = DLM_MASTER_RESP_NO;
1571 } else if (tmpmle->type == DLM_MLE_MIGRATION) {
1572 mlog(0, "node %u is master, but trying to migrate to "
1573 "node %u.\n", tmpmle->master, tmpmle->new_master);
1574 if (tmpmle->master == dlm->node_num) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001575 mlog(ML_ERROR, "no owner on lockres, but this "
1576 "node is trying to migrate it to %u?!\n",
1577 tmpmle->new_master);
1578 BUG();
1579 } else {
1580 /* the real master can respond on its own */
1581 response = DLM_MASTER_RESP_NO;
1582 }
1583 } else if (tmpmle->master != DLM_LOCK_RES_OWNER_UNKNOWN) {
1584 set_maybe = 0;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001585 if (tmpmle->master == dlm->node_num) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001586 response = DLM_MASTER_RESP_YES;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001587 /* this node will be the owner.
1588 * go back and clean the mles on any
1589 * other nodes */
1590 dispatch_assert = 1;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001591 dlm_lockres_set_refmap_bit(request->node_idx, res);
1592 mlog(0, "%s:%.*s: setting bit %u in refmap\n",
1593 dlm->name, namelen, name,
1594 request->node_idx);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001595 } else
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001596 response = DLM_MASTER_RESP_NO;
1597 } else {
1598 // mlog(0, "this node is attempting to "
1599 // "master lockres\n");
1600 response = DLM_MASTER_RESP_MAYBE;
1601 }
1602 if (set_maybe)
1603 set_bit(request->node_idx, tmpmle->maybe_map);
1604 spin_unlock(&tmpmle->spinlock);
1605
1606 spin_unlock(&dlm->master_lock);
1607 spin_unlock(&res->spinlock);
1608
1609 /* keep the mle attached to heartbeat events */
1610 dlm_put_mle(tmpmle);
1611 if (mle)
1612 kmem_cache_free(dlm_mle_cache, mle);
1613 goto send_response;
1614 }
1615
1616 /*
1617 * lockres doesn't exist on this node
1618 * if there is an MLE_BLOCK, return NO
1619 * if there is an MLE_MASTER, return MAYBE
1620 * otherwise, add an MLE_BLOCK, return NO
1621 */
1622 spin_lock(&dlm->master_lock);
1623 found = dlm_find_mle(dlm, &tmpmle, name, namelen);
1624 if (!found) {
1625 /* this lockid has never been seen on this node yet */
1626 // mlog(0, "no mle found\n");
1627 if (!mle) {
1628 spin_unlock(&dlm->master_lock);
1629 spin_unlock(&dlm->spinlock);
1630
1631 mle = (struct dlm_master_list_entry *)
Kurt Hackelad8100e2006-05-01 14:25:21 -07001632 kmem_cache_alloc(dlm_mle_cache, GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001633 if (!mle) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001634 response = DLM_MASTER_RESP_ERROR;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001635 mlog_errno(-ENOMEM);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001636 goto send_response;
1637 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001638 goto way_up_top;
1639 }
1640
1641 // mlog(0, "this is second time thru, already allocated, "
1642 // "add the block.\n");
Kurt Hackel41b8c8a2006-04-27 19:00:26 -07001643 dlm_init_mle(mle, DLM_MLE_BLOCK, dlm, NULL, name, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001644 set_bit(request->node_idx, mle->maybe_map);
1645 list_add(&mle->list, &dlm->master_list);
1646 response = DLM_MASTER_RESP_NO;
1647 } else {
1648 // mlog(0, "mle was found\n");
1649 set_maybe = 1;
1650 spin_lock(&tmpmle->spinlock);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001651 if (tmpmle->master == dlm->node_num) {
1652 mlog(ML_ERROR, "no lockres, but an mle with this node as master!\n");
1653 BUG();
1654 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001655 if (tmpmle->type == DLM_MLE_BLOCK)
1656 response = DLM_MASTER_RESP_NO;
1657 else if (tmpmle->type == DLM_MLE_MIGRATION) {
1658 mlog(0, "migration mle was found (%u->%u)\n",
1659 tmpmle->master, tmpmle->new_master);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001660 /* real master can respond on its own */
1661 response = DLM_MASTER_RESP_NO;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001662 } else
1663 response = DLM_MASTER_RESP_MAYBE;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001664 if (set_maybe)
1665 set_bit(request->node_idx, tmpmle->maybe_map);
1666 spin_unlock(&tmpmle->spinlock);
1667 }
1668 spin_unlock(&dlm->master_lock);
1669 spin_unlock(&dlm->spinlock);
1670
1671 if (found) {
1672 /* keep the mle attached to heartbeat events */
1673 dlm_put_mle(tmpmle);
1674 }
1675send_response:
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001676
1677 if (dispatch_assert) {
1678 if (response != DLM_MASTER_RESP_YES)
1679 mlog(ML_ERROR, "invalid response %d\n", response);
1680 if (!res) {
1681 mlog(ML_ERROR, "bad lockres while trying to assert!\n");
1682 BUG();
1683 }
1684 mlog(0, "%u is the owner of %.*s, cleaning everyone else\n",
1685 dlm->node_num, res->lockname.len, res->lockname.name);
1686 ret = dlm_dispatch_assert_master(dlm, res, 0, request->node_idx,
1687 DLM_ASSERT_MASTER_MLE_CLEANUP);
1688 if (ret < 0) {
1689 mlog(ML_ERROR, "failed to dispatch assert master work\n");
1690 response = DLM_MASTER_RESP_ERROR;
1691 }
1692 }
1693
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001694 dlm_put(dlm);
1695 return response;
1696}
1697
1698/*
1699 * DLM_ASSERT_MASTER_MSG
1700 */
1701
1702
1703/*
1704 * NOTE: this can be used for debugging
1705 * can periodically run all locks owned by this node
1706 * and re-assert across the cluster...
1707 */
Kurt Hackelba2bf212006-12-01 14:47:20 -08001708int dlm_do_assert_master(struct dlm_ctxt *dlm,
1709 struct dlm_lock_resource *res,
1710 void *nodemap, u32 flags)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001711{
1712 struct dlm_assert_master assert;
1713 int to, tmpret;
1714 struct dlm_node_iter iter;
1715 int ret = 0;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001716 int reassert;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001717 const char *lockname = res->lockname.name;
1718 unsigned int namelen = res->lockname.len;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001719
1720 BUG_ON(namelen > O2NM_MAX_NAME_LEN);
Sunil Mushranf3f85462007-01-29 15:19:16 -08001721
1722 spin_lock(&res->spinlock);
1723 res->state |= DLM_LOCK_RES_SETREF_INPROG;
1724 spin_unlock(&res->spinlock);
1725
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001726again:
1727 reassert = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001728
1729 /* note that if this nodemap is empty, it returns 0 */
1730 dlm_node_iter_init(nodemap, &iter);
1731 while ((to = dlm_node_iter_next(&iter)) >= 0) {
1732 int r = 0;
Kurt Hackela9ee4c82006-04-27 19:26:15 -07001733 struct dlm_master_list_entry *mle = NULL;
1734
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001735 mlog(0, "sending assert master to %d (%.*s)\n", to,
1736 namelen, lockname);
1737 memset(&assert, 0, sizeof(assert));
1738 assert.node_idx = dlm->node_num;
1739 assert.namelen = namelen;
1740 memcpy(assert.name, lockname, namelen);
1741 assert.flags = cpu_to_be32(flags);
1742
1743 tmpret = o2net_send_message(DLM_ASSERT_MASTER_MSG, dlm->key,
1744 &assert, sizeof(assert), to, &r);
1745 if (tmpret < 0) {
Kurt Hackel3b3b84a2006-05-01 14:31:37 -07001746 mlog(0, "assert_master returned %d!\n", tmpret);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001747 if (!dlm_is_host_down(tmpret)) {
Kurt Hackel3b3b84a2006-05-01 14:31:37 -07001748 mlog(ML_ERROR, "unhandled error=%d!\n", tmpret);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001749 BUG();
1750 }
1751 /* a node died. finish out the rest of the nodes. */
Kurt Hackel3b3b84a2006-05-01 14:31:37 -07001752 mlog(0, "link to %d went down!\n", to);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001753 /* any nonzero status return will do */
1754 ret = tmpret;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001755 r = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001756 } else if (r < 0) {
1757 /* ok, something horribly messed. kill thyself. */
1758 mlog(ML_ERROR,"during assert master of %.*s to %u, "
1759 "got %d.\n", namelen, lockname, to, r);
Kurt Hackela9ee4c82006-04-27 19:26:15 -07001760 spin_lock(&dlm->spinlock);
1761 spin_lock(&dlm->master_lock);
1762 if (dlm_find_mle(dlm, &mle, (char *)lockname,
1763 namelen)) {
1764 dlm_print_one_mle(mle);
1765 __dlm_put_mle(mle);
1766 }
1767 spin_unlock(&dlm->master_lock);
1768 spin_unlock(&dlm->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001769 BUG();
Kurt Hackelba2bf212006-12-01 14:47:20 -08001770 }
1771
1772 if (r & DLM_ASSERT_RESPONSE_REASSERT &&
1773 !(r & DLM_ASSERT_RESPONSE_MASTERY_REF)) {
1774 mlog(ML_ERROR, "%.*s: very strange, "
1775 "master MLE but no lockres on %u\n",
1776 namelen, lockname, to);
1777 }
1778
1779 if (r & DLM_ASSERT_RESPONSE_REASSERT) {
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001780 mlog(0, "%.*s: node %u create mles on other "
1781 "nodes and requests a re-assert\n",
1782 namelen, lockname, to);
1783 reassert = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001784 }
Kurt Hackelba2bf212006-12-01 14:47:20 -08001785 if (r & DLM_ASSERT_RESPONSE_MASTERY_REF) {
1786 mlog(0, "%.*s: node %u has a reference to this "
1787 "lockres, set the bit in the refmap\n",
1788 namelen, lockname, to);
1789 spin_lock(&res->spinlock);
1790 dlm_lockres_set_refmap_bit(to, res);
1791 spin_unlock(&res->spinlock);
1792 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001793 }
1794
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001795 if (reassert)
1796 goto again;
1797
Sunil Mushranf3f85462007-01-29 15:19:16 -08001798 spin_lock(&res->spinlock);
1799 res->state &= ~DLM_LOCK_RES_SETREF_INPROG;
1800 spin_unlock(&res->spinlock);
1801 wake_up(&res->wq);
1802
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001803 return ret;
1804}
1805
1806/*
1807 * locks that can be taken here:
1808 * dlm->spinlock
1809 * res->spinlock
1810 * mle->spinlock
1811 * dlm->master_list
1812 *
1813 * if possible, TRIM THIS DOWN!!!
1814 */
Kurt Hackeld74c9802007-01-17 17:04:25 -08001815int dlm_assert_master_handler(struct o2net_msg *msg, u32 len, void *data,
1816 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001817{
1818 struct dlm_ctxt *dlm = data;
1819 struct dlm_master_list_entry *mle = NULL;
1820 struct dlm_assert_master *assert = (struct dlm_assert_master *)msg->buf;
1821 struct dlm_lock_resource *res = NULL;
1822 char *name;
Mark Fasheha3d33292006-03-09 17:55:56 -08001823 unsigned int namelen, hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001824 u32 flags;
Kurt Hackelba2bf212006-12-01 14:47:20 -08001825 int master_request = 0, have_lockres_ref = 0;
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001826 int ret = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001827
1828 if (!dlm_grab(dlm))
1829 return 0;
1830
1831 name = assert->name;
1832 namelen = assert->namelen;
Mark Fasheha3d33292006-03-09 17:55:56 -08001833 hash = dlm_lockid_hash(name, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001834 flags = be32_to_cpu(assert->flags);
1835
1836 if (namelen > DLM_LOCKID_NAME_MAX) {
1837 mlog(ML_ERROR, "Invalid name length!");
1838 goto done;
1839 }
1840
1841 spin_lock(&dlm->spinlock);
1842
1843 if (flags)
1844 mlog(0, "assert_master with flags: %u\n", flags);
1845
1846 /* find the MLE */
1847 spin_lock(&dlm->master_lock);
1848 if (!dlm_find_mle(dlm, &mle, name, namelen)) {
1849 /* not an error, could be master just re-asserting */
1850 mlog(0, "just got an assert_master from %u, but no "
1851 "MLE for it! (%.*s)\n", assert->node_idx,
1852 namelen, name);
1853 } else {
1854 int bit = find_next_bit (mle->maybe_map, O2NM_MAX_NODES, 0);
1855 if (bit >= O2NM_MAX_NODES) {
1856 /* not necessarily an error, though less likely.
1857 * could be master just re-asserting. */
Kurt Hackelaa852352006-04-27 19:04:49 -07001858 mlog(0, "no bits set in the maybe_map, but %u "
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001859 "is asserting! (%.*s)\n", assert->node_idx,
1860 namelen, name);
1861 } else if (bit != assert->node_idx) {
1862 if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) {
1863 mlog(0, "master %u was found, %u should "
1864 "back off\n", assert->node_idx, bit);
1865 } else {
1866 /* with the fix for bug 569, a higher node
1867 * number winning the mastery will respond
1868 * YES to mastery requests, but this node
1869 * had no way of knowing. let it pass. */
Kurt Hackelaa852352006-04-27 19:04:49 -07001870 mlog(0, "%u is the lowest node, "
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001871 "%u is asserting. (%.*s) %u must "
1872 "have begun after %u won.\n", bit,
1873 assert->node_idx, namelen, name, bit,
1874 assert->node_idx);
1875 }
1876 }
Kurt Hackel2d1a8682006-04-27 19:01:35 -07001877 if (mle->type == DLM_MLE_MIGRATION) {
1878 if (flags & DLM_ASSERT_MASTER_MLE_CLEANUP) {
1879 mlog(0, "%s:%.*s: got cleanup assert"
1880 " from %u for migration\n",
1881 dlm->name, namelen, name,
1882 assert->node_idx);
1883 } else if (!(flags & DLM_ASSERT_MASTER_FINISH_MIGRATION)) {
1884 mlog(0, "%s:%.*s: got unrelated assert"
1885 " from %u for migration, ignoring\n",
1886 dlm->name, namelen, name,
1887 assert->node_idx);
1888 __dlm_put_mle(mle);
1889 spin_unlock(&dlm->master_lock);
1890 spin_unlock(&dlm->spinlock);
1891 goto done;
1892 }
1893 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001894 }
1895 spin_unlock(&dlm->master_lock);
1896
1897 /* ok everything checks out with the MLE
1898 * now check to see if there is a lockres */
Mark Fasheha3d33292006-03-09 17:55:56 -08001899 res = __dlm_lookup_lockres(dlm, name, namelen, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001900 if (res) {
1901 spin_lock(&res->spinlock);
1902 if (res->state & DLM_LOCK_RES_RECOVERING) {
1903 mlog(ML_ERROR, "%u asserting but %.*s is "
1904 "RECOVERING!\n", assert->node_idx, namelen, name);
1905 goto kill;
1906 }
1907 if (!mle) {
Kurt Hackeldc2ed192006-04-27 19:03:18 -07001908 if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN &&
1909 res->owner != assert->node_idx) {
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001910 mlog(ML_ERROR, "assert_master from "
1911 "%u, but current owner is "
1912 "%u! (%.*s)\n",
1913 assert->node_idx, res->owner,
1914 namelen, name);
1915 goto kill;
1916 }
1917 } else if (mle->type != DLM_MLE_MIGRATION) {
1918 if (res->owner != DLM_LOCK_RES_OWNER_UNKNOWN) {
1919 /* owner is just re-asserting */
1920 if (res->owner == assert->node_idx) {
1921 mlog(0, "owner %u re-asserting on "
1922 "lock %.*s\n", assert->node_idx,
1923 namelen, name);
1924 goto ok;
1925 }
1926 mlog(ML_ERROR, "got assert_master from "
1927 "node %u, but %u is the owner! "
1928 "(%.*s)\n", assert->node_idx,
1929 res->owner, namelen, name);
1930 goto kill;
1931 }
1932 if (!(res->state & DLM_LOCK_RES_IN_PROGRESS)) {
1933 mlog(ML_ERROR, "got assert from %u, but lock "
1934 "with no owner should be "
1935 "in-progress! (%.*s)\n",
1936 assert->node_idx,
1937 namelen, name);
1938 goto kill;
1939 }
1940 } else /* mle->type == DLM_MLE_MIGRATION */ {
1941 /* should only be getting an assert from new master */
1942 if (assert->node_idx != mle->new_master) {
1943 mlog(ML_ERROR, "got assert from %u, but "
1944 "new master is %u, and old master "
1945 "was %u (%.*s)\n",
1946 assert->node_idx, mle->new_master,
1947 mle->master, namelen, name);
1948 goto kill;
1949 }
1950
1951 }
1952ok:
1953 spin_unlock(&res->spinlock);
1954 }
1955 spin_unlock(&dlm->spinlock);
1956
1957 // mlog(0, "woo! got an assert_master from node %u!\n",
1958 // assert->node_idx);
1959 if (mle) {
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001960 int extra_ref = 0;
1961 int nn = -1;
Kurt Hackela2bf0472006-04-27 18:51:26 -07001962 int rr, err = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001963
1964 spin_lock(&mle->spinlock);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08001965 if (mle->type == DLM_MLE_BLOCK || mle->type == DLM_MLE_MIGRATION)
1966 extra_ref = 1;
1967 else {
1968 /* MASTER mle: if any bits set in the response map
1969 * then the calling node needs to re-assert to clear
1970 * up nodes that this node contacted */
1971 while ((nn = find_next_bit (mle->response_map, O2NM_MAX_NODES,
1972 nn+1)) < O2NM_MAX_NODES) {
1973 if (nn != dlm->node_num && nn != assert->node_idx)
1974 master_request = 1;
1975 }
1976 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001977 mle->master = assert->node_idx;
1978 atomic_set(&mle->woken, 1);
1979 wake_up(&mle->wq);
1980 spin_unlock(&mle->spinlock);
1981
Kurt Hackela2bf0472006-04-27 18:51:26 -07001982 if (res) {
Kurt Hackela6fa3642007-01-17 14:59:12 -08001983 int wake = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001984 spin_lock(&res->spinlock);
Kurt Hackela2bf0472006-04-27 18:51:26 -07001985 if (mle->type == DLM_MLE_MIGRATION) {
1986 mlog(0, "finishing off migration of lockres %.*s, "
1987 "from %u to %u\n",
1988 res->lockname.len, res->lockname.name,
1989 dlm->node_num, mle->new_master);
1990 res->state &= ~DLM_LOCK_RES_MIGRATING;
Kurt Hackela6fa3642007-01-17 14:59:12 -08001991 wake = 1;
Kurt Hackela2bf0472006-04-27 18:51:26 -07001992 dlm_change_lockres_owner(dlm, res, mle->new_master);
1993 BUG_ON(res->state & DLM_LOCK_RES_DIRTY);
1994 } else {
1995 dlm_change_lockres_owner(dlm, res, mle->master);
1996 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001997 spin_unlock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08001998 have_lockres_ref = 1;
Kurt Hackela6fa3642007-01-17 14:59:12 -08001999 if (wake)
2000 wake_up(&res->wq);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002001 }
Kurt Hackela2bf0472006-04-27 18:51:26 -07002002
2003 /* master is known, detach if not already detached.
2004 * ensures that only one assert_master call will happen
2005 * on this mle. */
2006 spin_lock(&dlm->spinlock);
2007 spin_lock(&dlm->master_lock);
2008
2009 rr = atomic_read(&mle->mle_refs.refcount);
2010 if (mle->inuse > 0) {
2011 if (extra_ref && rr < 3)
2012 err = 1;
2013 else if (!extra_ref && rr < 2)
2014 err = 1;
2015 } else {
2016 if (extra_ref && rr < 2)
2017 err = 1;
2018 else if (!extra_ref && rr < 1)
2019 err = 1;
2020 }
2021 if (err) {
2022 mlog(ML_ERROR, "%s:%.*s: got assert master from %u "
2023 "that will mess up this node, refs=%d, extra=%d, "
2024 "inuse=%d\n", dlm->name, namelen, name,
2025 assert->node_idx, rr, extra_ref, mle->inuse);
2026 dlm_print_one_mle(mle);
2027 }
2028 list_del_init(&mle->list);
2029 __dlm_mle_detach_hb_events(dlm, mle);
2030 __dlm_put_mle(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002031 if (extra_ref) {
2032 /* the assert master message now balances the extra
2033 * ref given by the master / migration request message.
2034 * if this is the last put, it will be removed
2035 * from the list. */
Kurt Hackela2bf0472006-04-27 18:51:26 -07002036 __dlm_put_mle(mle);
2037 }
2038 spin_unlock(&dlm->master_lock);
2039 spin_unlock(&dlm->spinlock);
2040 } else if (res) {
2041 if (res->owner != assert->node_idx) {
2042 mlog(0, "assert_master from %u, but current "
2043 "owner is %u (%.*s), no mle\n", assert->node_idx,
2044 res->owner, namelen, name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002045 }
2046 }
2047
2048done:
Kurt Hackel9c6510a2006-03-02 18:09:26 -08002049 ret = 0;
Kurt Hackel3b8118c2007-01-17 17:05:53 -08002050 if (res) {
2051 spin_lock(&res->spinlock);
2052 res->state |= DLM_LOCK_RES_SETREF_INPROG;
2053 spin_unlock(&res->spinlock);
2054 *ret_data = (void *)res;
2055 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002056 dlm_put(dlm);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08002057 if (master_request) {
2058 mlog(0, "need to tell master to reassert\n");
Kurt Hackelba2bf212006-12-01 14:47:20 -08002059 /* positive. negative would shoot down the node. */
2060 ret |= DLM_ASSERT_RESPONSE_REASSERT;
2061 if (!have_lockres_ref) {
2062 mlog(ML_ERROR, "strange, got assert from %u, MASTER "
2063 "mle present here for %s:%.*s, but no lockres!\n",
2064 assert->node_idx, dlm->name, namelen, name);
2065 }
2066 }
2067 if (have_lockres_ref) {
2068 /* let the master know we have a reference to the lockres */
2069 ret |= DLM_ASSERT_RESPONSE_MASTERY_REF;
2070 mlog(0, "%s:%.*s: got assert from %u, need a ref\n",
2071 dlm->name, namelen, name, assert->node_idx);
Kurt Hackel9c6510a2006-03-02 18:09:26 -08002072 }
2073 return ret;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002074
2075kill:
2076 /* kill the caller! */
Kurt Hackela9ee4c82006-04-27 19:26:15 -07002077 mlog(ML_ERROR, "Bad message received from another node. Dumping state "
2078 "and killing the other node now! This node is OK and can continue.\n");
2079 __dlm_print_one_lock_resource(res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002080 spin_unlock(&res->spinlock);
2081 spin_unlock(&dlm->spinlock);
Kurt Hackel3b8118c2007-01-17 17:05:53 -08002082 *ret_data = (void *)res;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002083 dlm_put(dlm);
2084 return -EINVAL;
2085}
2086
Kurt Hackel3b8118c2007-01-17 17:05:53 -08002087void dlm_assert_master_post_handler(int status, void *data, void *ret_data)
2088{
2089 struct dlm_lock_resource *res = (struct dlm_lock_resource *)ret_data;
2090
2091 if (ret_data) {
2092 spin_lock(&res->spinlock);
2093 res->state &= ~DLM_LOCK_RES_SETREF_INPROG;
2094 spin_unlock(&res->spinlock);
2095 wake_up(&res->wq);
2096 dlm_lockres_put(res);
2097 }
2098 return;
2099}
2100
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002101int dlm_dispatch_assert_master(struct dlm_ctxt *dlm,
2102 struct dlm_lock_resource *res,
2103 int ignore_higher, u8 request_from, u32 flags)
2104{
2105 struct dlm_work_item *item;
Robert P. J. Daycd861282006-12-13 00:34:52 -08002106 item = kzalloc(sizeof(*item), GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002107 if (!item)
2108 return -ENOMEM;
2109
2110
2111 /* queue up work for dlm_assert_master_worker */
2112 dlm_grab(dlm); /* get an extra ref for the work item */
2113 dlm_init_work_item(dlm, item, dlm_assert_master_worker, NULL);
2114 item->u.am.lockres = res; /* already have a ref */
2115 /* can optionally ignore node numbers higher than this node */
2116 item->u.am.ignore_higher = ignore_higher;
2117 item->u.am.request_from = request_from;
2118 item->u.am.flags = flags;
2119
Kurt Hackel9c6510a2006-03-02 18:09:26 -08002120 if (ignore_higher)
2121 mlog(0, "IGNORE HIGHER: %.*s\n", res->lockname.len,
2122 res->lockname.name);
2123
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002124 spin_lock(&dlm->work_lock);
2125 list_add_tail(&item->list, &dlm->work_list);
2126 spin_unlock(&dlm->work_lock);
2127
Kurt Hackel3156d262006-05-01 14:39:29 -07002128 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002129 return 0;
2130}
2131
2132static void dlm_assert_master_worker(struct dlm_work_item *item, void *data)
2133{
2134 struct dlm_ctxt *dlm = data;
2135 int ret = 0;
2136 struct dlm_lock_resource *res;
2137 unsigned long nodemap[BITS_TO_LONGS(O2NM_MAX_NODES)];
2138 int ignore_higher;
2139 int bit;
2140 u8 request_from;
2141 u32 flags;
2142
2143 dlm = item->dlm;
2144 res = item->u.am.lockres;
2145 ignore_higher = item->u.am.ignore_higher;
2146 request_from = item->u.am.request_from;
2147 flags = item->u.am.flags;
2148
2149 spin_lock(&dlm->spinlock);
2150 memcpy(nodemap, dlm->domain_map, sizeof(nodemap));
2151 spin_unlock(&dlm->spinlock);
2152
2153 clear_bit(dlm->node_num, nodemap);
2154 if (ignore_higher) {
2155 /* if is this just to clear up mles for nodes below
2156 * this node, do not send the message to the original
2157 * caller or any node number higher than this */
2158 clear_bit(request_from, nodemap);
2159 bit = dlm->node_num;
2160 while (1) {
2161 bit = find_next_bit(nodemap, O2NM_MAX_NODES,
2162 bit+1);
2163 if (bit >= O2NM_MAX_NODES)
2164 break;
2165 clear_bit(bit, nodemap);
2166 }
2167 }
2168
Kurt Hackel36407482006-05-01 13:32:27 -07002169 /*
2170 * If we're migrating this lock to someone else, we are no
2171 * longer allowed to assert out own mastery. OTOH, we need to
2172 * prevent migration from starting while we're still asserting
2173 * our dominance. The reserved ast delays migration.
2174 */
2175 spin_lock(&res->spinlock);
2176 if (res->state & DLM_LOCK_RES_MIGRATING) {
2177 mlog(0, "Someone asked us to assert mastery, but we're "
2178 "in the middle of migration. Skipping assert, "
2179 "the new master will handle that.\n");
2180 spin_unlock(&res->spinlock);
2181 goto put;
2182 } else
2183 __dlm_lockres_reserve_ast(res);
2184 spin_unlock(&res->spinlock);
2185
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002186 /* this call now finishes out the nodemap
2187 * even if one or more nodes die */
2188 mlog(0, "worker about to master %.*s here, this=%u\n",
2189 res->lockname.len, res->lockname.name, dlm->node_num);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002190 ret = dlm_do_assert_master(dlm, res, nodemap, flags);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002191 if (ret < 0) {
2192 /* no need to restart, we are done */
Kurt Hackel3b3b84a2006-05-01 14:31:37 -07002193 if (!dlm_is_host_down(ret))
2194 mlog_errno(ret);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002195 }
2196
Kurt Hackel36407482006-05-01 13:32:27 -07002197 /* Ok, we've asserted ourselves. Let's let migration start. */
2198 dlm_lockres_release_ast(dlm, res);
2199
2200put:
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002201 dlm_lockres_put(res);
2202
2203 mlog(0, "finished with dlm_assert_master_worker\n");
2204}
2205
Kurt Hackelc03872f2006-03-06 14:08:49 -08002206/* SPECIAL CASE for the $RECOVERY lock used by the recovery thread.
2207 * We cannot wait for node recovery to complete to begin mastering this
2208 * lockres because this lockres is used to kick off recovery! ;-)
2209 * So, do a pre-check on all living nodes to see if any of those nodes
2210 * think that $RECOVERY is currently mastered by a dead node. If so,
2211 * we wait a short time to allow that node to get notified by its own
2212 * heartbeat stack, then check again. All $RECOVERY lock resources
2213 * mastered by dead nodes are purged when the hearbeat callback is
2214 * fired, so we can know for sure that it is safe to continue once
2215 * the node returns a live node or no node. */
2216static int dlm_pre_master_reco_lockres(struct dlm_ctxt *dlm,
2217 struct dlm_lock_resource *res)
2218{
2219 struct dlm_node_iter iter;
2220 int nodenum;
2221 int ret = 0;
2222 u8 master = DLM_LOCK_RES_OWNER_UNKNOWN;
2223
2224 spin_lock(&dlm->spinlock);
2225 dlm_node_iter_init(dlm->domain_map, &iter);
2226 spin_unlock(&dlm->spinlock);
2227
2228 while ((nodenum = dlm_node_iter_next(&iter)) >= 0) {
2229 /* do not send to self */
2230 if (nodenum == dlm->node_num)
2231 continue;
2232 ret = dlm_do_master_requery(dlm, res, nodenum, &master);
2233 if (ret < 0) {
2234 mlog_errno(ret);
2235 if (!dlm_is_host_down(ret))
2236 BUG();
2237 /* host is down, so answer for that node would be
2238 * DLM_LOCK_RES_OWNER_UNKNOWN. continue. */
Kurt Hackelf42a1002006-05-01 11:53:33 -07002239 ret = 0;
Kurt Hackelc03872f2006-03-06 14:08:49 -08002240 }
2241
2242 if (master != DLM_LOCK_RES_OWNER_UNKNOWN) {
2243 /* check to see if this master is in the recovery map */
2244 spin_lock(&dlm->spinlock);
2245 if (test_bit(master, dlm->recovery_map)) {
2246 mlog(ML_NOTICE, "%s: node %u has not seen "
2247 "node %u go down yet, and thinks the "
2248 "dead node is mastering the recovery "
2249 "lock. must wait.\n", dlm->name,
2250 nodenum, master);
2251 ret = -EAGAIN;
2252 }
2253 spin_unlock(&dlm->spinlock);
2254 mlog(0, "%s: reco lock master is %u\n", dlm->name,
2255 master);
2256 break;
2257 }
2258 }
2259 return ret;
2260}
2261
Kurt Hackelba2bf212006-12-01 14:47:20 -08002262/*
2263 * DLM_DEREF_LOCKRES_MSG
2264 */
2265
2266int dlm_drop_lockres_ref(struct dlm_ctxt *dlm, struct dlm_lock_resource *res)
2267{
2268 struct dlm_deref_lockres deref;
2269 int ret = 0, r;
2270 const char *lockname;
2271 unsigned int namelen;
2272
2273 lockname = res->lockname.name;
2274 namelen = res->lockname.len;
2275 BUG_ON(namelen > O2NM_MAX_NAME_LEN);
2276
2277 mlog(0, "%s:%.*s: sending deref to %d\n",
2278 dlm->name, namelen, lockname, res->owner);
2279 memset(&deref, 0, sizeof(deref));
2280 deref.node_idx = dlm->node_num;
2281 deref.namelen = namelen;
2282 memcpy(deref.name, lockname, namelen);
2283
2284 ret = o2net_send_message(DLM_DEREF_LOCKRES_MSG, dlm->key,
2285 &deref, sizeof(deref), res->owner, &r);
2286 if (ret < 0)
2287 mlog_errno(ret);
2288 else if (r < 0) {
2289 /* BAD. other node says I did not have a ref. */
2290 mlog(ML_ERROR,"while dropping ref on %s:%.*s "
2291 "(master=%u) got %d.\n", dlm->name, namelen,
2292 lockname, res->owner, r);
2293 dlm_print_one_lock_resource(res);
2294 BUG();
2295 }
2296 return ret;
2297}
2298
Kurt Hackeld74c9802007-01-17 17:04:25 -08002299int dlm_deref_lockres_handler(struct o2net_msg *msg, u32 len, void *data,
2300 void **ret_data)
Kurt Hackelba2bf212006-12-01 14:47:20 -08002301{
2302 struct dlm_ctxt *dlm = data;
2303 struct dlm_deref_lockres *deref = (struct dlm_deref_lockres *)msg->buf;
2304 struct dlm_lock_resource *res = NULL;
2305 char *name;
2306 unsigned int namelen;
2307 int ret = -EINVAL;
2308 u8 node;
2309 unsigned int hash;
Sunil Mushranf3f85462007-01-29 15:19:16 -08002310 struct dlm_work_item *item;
2311 int cleared = 0;
2312 int dispatch = 0;
Kurt Hackelba2bf212006-12-01 14:47:20 -08002313
2314 if (!dlm_grab(dlm))
2315 return 0;
2316
2317 name = deref->name;
2318 namelen = deref->namelen;
2319 node = deref->node_idx;
2320
2321 if (namelen > DLM_LOCKID_NAME_MAX) {
2322 mlog(ML_ERROR, "Invalid name length!");
2323 goto done;
2324 }
2325 if (deref->node_idx >= O2NM_MAX_NODES) {
2326 mlog(ML_ERROR, "Invalid node number: %u\n", node);
2327 goto done;
2328 }
2329
2330 hash = dlm_lockid_hash(name, namelen);
2331
2332 spin_lock(&dlm->spinlock);
2333 res = __dlm_lookup_lockres_full(dlm, name, namelen, hash);
2334 if (!res) {
2335 spin_unlock(&dlm->spinlock);
2336 mlog(ML_ERROR, "%s:%.*s: bad lockres name\n",
2337 dlm->name, namelen, name);
2338 goto done;
2339 }
2340 spin_unlock(&dlm->spinlock);
2341
2342 spin_lock(&res->spinlock);
Sunil Mushranf3f85462007-01-29 15:19:16 -08002343 if (res->state & DLM_LOCK_RES_SETREF_INPROG)
2344 dispatch = 1;
2345 else {
2346 BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF);
2347 if (test_bit(node, res->refmap)) {
2348 dlm_lockres_clear_refmap_bit(node, res);
2349 cleared = 1;
2350 }
Kurt Hackelba2bf212006-12-01 14:47:20 -08002351 }
2352 spin_unlock(&res->spinlock);
2353
Sunil Mushranf3f85462007-01-29 15:19:16 -08002354 if (!dispatch) {
2355 if (cleared)
2356 dlm_lockres_calc_usage(dlm, res);
2357 else {
2358 mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref "
2359 "but it is already dropped!\n", dlm->name,
2360 res->lockname.len, res->lockname.name, node);
2361 __dlm_print_one_lock_resource(res);
2362 }
2363 ret = 0;
2364 goto done;
2365 }
2366
2367 item = kzalloc(sizeof(*item), GFP_NOFS);
2368 if (!item) {
2369 ret = -ENOMEM;
2370 mlog_errno(ret);
2371 goto done;
2372 }
2373
2374 dlm_init_work_item(dlm, item, dlm_deref_lockres_worker, NULL);
2375 item->u.dl.deref_res = res;
2376 item->u.dl.deref_node = node;
2377
2378 spin_lock(&dlm->work_lock);
2379 list_add_tail(&item->list, &dlm->work_list);
2380 spin_unlock(&dlm->work_lock);
2381
2382 queue_work(dlm->dlm_worker, &dlm->dispatched_work);
2383 return 0;
2384
Kurt Hackelba2bf212006-12-01 14:47:20 -08002385done:
2386 if (res)
2387 dlm_lockres_put(res);
2388 dlm_put(dlm);
Sunil Mushranf3f85462007-01-29 15:19:16 -08002389
Kurt Hackelba2bf212006-12-01 14:47:20 -08002390 return ret;
2391}
2392
Sunil Mushranf3f85462007-01-29 15:19:16 -08002393static void dlm_deref_lockres_worker(struct dlm_work_item *item, void *data)
2394{
2395 struct dlm_ctxt *dlm;
2396 struct dlm_lock_resource *res;
2397 u8 node;
2398 u8 cleared = 0;
2399
2400 dlm = item->dlm;
2401 res = item->u.dl.deref_res;
2402 node = item->u.dl.deref_node;
2403
2404 spin_lock(&res->spinlock);
2405 BUG_ON(res->state & DLM_LOCK_RES_DROPPING_REF);
2406 if (test_bit(node, res->refmap)) {
2407 __dlm_wait_on_lockres_flags(res, DLM_LOCK_RES_SETREF_INPROG);
2408 dlm_lockres_clear_refmap_bit(node, res);
2409 cleared = 1;
2410 }
2411 spin_unlock(&res->spinlock);
2412
2413 if (cleared) {
2414 mlog(0, "%s:%.*s node %u ref dropped in dispatch\n",
2415 dlm->name, res->lockname.len, res->lockname.name, node);
2416 dlm_lockres_calc_usage(dlm, res);
2417 } else {
2418 mlog(ML_ERROR, "%s:%.*s: node %u trying to drop ref "
2419 "but it is already dropped!\n", dlm->name,
2420 res->lockname.len, res->lockname.name, node);
2421 __dlm_print_one_lock_resource(res);
2422 }
2423
2424 dlm_lockres_put(res);
2425}
2426
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002427
2428/*
2429 * DLM_MIGRATE_LOCKRES
2430 */
2431
2432
Adrian Bunkfaf0ec92006-12-14 00:17:32 +01002433static int dlm_migrate_lockres(struct dlm_ctxt *dlm,
2434 struct dlm_lock_resource *res,
2435 u8 target)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002436{
2437 struct dlm_master_list_entry *mle = NULL;
2438 struct dlm_master_list_entry *oldmle = NULL;
2439 struct dlm_migratable_lockres *mres = NULL;
2440 int ret = -EINVAL;
2441 const char *name;
2442 unsigned int namelen;
2443 int mle_added = 0;
2444 struct list_head *queue, *iter;
2445 int i;
2446 struct dlm_lock *lock;
Kurt Hackela6fa3642007-01-17 14:59:12 -08002447 int empty = 1, wake = 0;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002448
2449 if (!dlm_grab(dlm))
2450 return -EINVAL;
2451
2452 name = res->lockname.name;
2453 namelen = res->lockname.len;
2454
2455 mlog(0, "migrating %.*s to %u\n", namelen, name, target);
2456
2457 /*
2458 * ensure this lockres is a proper candidate for migration
2459 */
2460 spin_lock(&res->spinlock);
2461 if (res->owner == DLM_LOCK_RES_OWNER_UNKNOWN) {
2462 mlog(0, "cannot migrate lockres with unknown owner!\n");
2463 spin_unlock(&res->spinlock);
2464 goto leave;
2465 }
2466 if (res->owner != dlm->node_num) {
2467 mlog(0, "cannot migrate lockres this node doesn't own!\n");
2468 spin_unlock(&res->spinlock);
2469 goto leave;
2470 }
2471 mlog(0, "checking queues...\n");
2472 queue = &res->granted;
2473 for (i=0; i<3; i++) {
2474 list_for_each(iter, queue) {
2475 lock = list_entry (iter, struct dlm_lock, list);
2476 empty = 0;
2477 if (lock->ml.node == dlm->node_num) {
2478 mlog(0, "found a lock owned by this node "
2479 "still on the %s queue! will not "
2480 "migrate this lockres\n",
2481 i==0 ? "granted" :
2482 (i==1 ? "converting" : "blocked"));
2483 spin_unlock(&res->spinlock);
2484 ret = -ENOTEMPTY;
2485 goto leave;
2486 }
2487 }
2488 queue++;
2489 }
2490 mlog(0, "all locks on this lockres are nonlocal. continuing\n");
2491 spin_unlock(&res->spinlock);
2492
2493 /* no work to do */
2494 if (empty) {
2495 mlog(0, "no locks were found on this lockres! done!\n");
2496 ret = 0;
2497 goto leave;
2498 }
2499
2500 /*
2501 * preallocate up front
2502 * if this fails, abort
2503 */
2504
2505 ret = -ENOMEM;
Kurt Hackelad8100e2006-05-01 14:25:21 -07002506 mres = (struct dlm_migratable_lockres *) __get_free_page(GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002507 if (!mres) {
2508 mlog_errno(ret);
2509 goto leave;
2510 }
2511
2512 mle = (struct dlm_master_list_entry *) kmem_cache_alloc(dlm_mle_cache,
Kurt Hackelad8100e2006-05-01 14:25:21 -07002513 GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002514 if (!mle) {
2515 mlog_errno(ret);
2516 goto leave;
2517 }
2518 ret = 0;
2519
2520 /*
2521 * find a node to migrate the lockres to
2522 */
2523
2524 mlog(0, "picking a migration node\n");
2525 spin_lock(&dlm->spinlock);
2526 /* pick a new node */
2527 if (!test_bit(target, dlm->domain_map) ||
2528 target >= O2NM_MAX_NODES) {
2529 target = dlm_pick_migration_target(dlm, res);
2530 }
2531 mlog(0, "node %u chosen for migration\n", target);
2532
2533 if (target >= O2NM_MAX_NODES ||
2534 !test_bit(target, dlm->domain_map)) {
2535 /* target chosen is not alive */
2536 ret = -EINVAL;
2537 }
2538
2539 if (ret) {
2540 spin_unlock(&dlm->spinlock);
2541 goto fail;
2542 }
2543
2544 mlog(0, "continuing with target = %u\n", target);
2545
2546 /*
2547 * clear any existing master requests and
2548 * add the migration mle to the list
2549 */
2550 spin_lock(&dlm->master_lock);
2551 ret = dlm_add_migration_mle(dlm, res, mle, &oldmle, name,
2552 namelen, target, dlm->node_num);
2553 spin_unlock(&dlm->master_lock);
2554 spin_unlock(&dlm->spinlock);
2555
2556 if (ret == -EEXIST) {
2557 mlog(0, "another process is already migrating it\n");
2558 goto fail;
2559 }
2560 mle_added = 1;
2561
2562 /*
2563 * set the MIGRATING flag and flush asts
2564 * if we fail after this we need to re-dirty the lockres
2565 */
2566 if (dlm_mark_lockres_migrating(dlm, res, target) < 0) {
2567 mlog(ML_ERROR, "tried to migrate %.*s to %u, but "
2568 "the target went down.\n", res->lockname.len,
2569 res->lockname.name, target);
2570 spin_lock(&res->spinlock);
2571 res->state &= ~DLM_LOCK_RES_MIGRATING;
Kurt Hackela6fa3642007-01-17 14:59:12 -08002572 wake = 1;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002573 spin_unlock(&res->spinlock);
2574 ret = -EINVAL;
2575 }
2576
2577fail:
2578 if (oldmle) {
2579 /* master is known, detach if not already detached */
2580 dlm_mle_detach_hb_events(dlm, oldmle);
2581 dlm_put_mle(oldmle);
2582 }
2583
2584 if (ret < 0) {
2585 if (mle_added) {
2586 dlm_mle_detach_hb_events(dlm, mle);
2587 dlm_put_mle(mle);
2588 } else if (mle) {
2589 kmem_cache_free(dlm_mle_cache, mle);
2590 }
2591 goto leave;
2592 }
2593
2594 /*
2595 * at this point, we have a migration target, an mle
2596 * in the master list, and the MIGRATING flag set on
2597 * the lockres
2598 */
2599
Kurt Hackel1cd04db2007-01-17 14:53:37 -08002600 /* now that remote nodes are spinning on the MIGRATING flag,
2601 * ensure that all assert_master work is flushed. */
2602 flush_workqueue(dlm->dlm_worker);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002603
2604 /* get an extra reference on the mle.
2605 * otherwise the assert_master from the new
2606 * master will destroy this.
2607 * also, make sure that all callers of dlm_get_mle
2608 * take both dlm->spinlock and dlm->master_lock */
2609 spin_lock(&dlm->spinlock);
2610 spin_lock(&dlm->master_lock);
Kurt Hackela2bf0472006-04-27 18:51:26 -07002611 dlm_get_mle_inuse(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002612 spin_unlock(&dlm->master_lock);
2613 spin_unlock(&dlm->spinlock);
2614
2615 /* notify new node and send all lock state */
2616 /* call send_one_lockres with migration flag.
2617 * this serves as notice to the target node that a
2618 * migration is starting. */
2619 ret = dlm_send_one_lockres(dlm, res, mres, target,
2620 DLM_MRES_MIGRATION);
2621
2622 if (ret < 0) {
2623 mlog(0, "migration to node %u failed with %d\n",
2624 target, ret);
2625 /* migration failed, detach and clean up mle */
2626 dlm_mle_detach_hb_events(dlm, mle);
2627 dlm_put_mle(mle);
Kurt Hackela2bf0472006-04-27 18:51:26 -07002628 dlm_put_mle_inuse(mle);
2629 spin_lock(&res->spinlock);
2630 res->state &= ~DLM_LOCK_RES_MIGRATING;
Kurt Hackela6fa3642007-01-17 14:59:12 -08002631 wake = 1;
Kurt Hackela2bf0472006-04-27 18:51:26 -07002632 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002633 goto leave;
2634 }
2635
2636 /* at this point, the target sends a message to all nodes,
2637 * (using dlm_do_migrate_request). this node is skipped since
2638 * we had to put an mle in the list to begin the process. this
2639 * node now waits for target to do an assert master. this node
2640 * will be the last one notified, ensuring that the migration
2641 * is complete everywhere. if the target dies while this is
2642 * going on, some nodes could potentially see the target as the
2643 * master, so it is important that my recovery finds the migration
2644 * mle and sets the master to UNKNONWN. */
2645
2646
2647 /* wait for new node to assert master */
2648 while (1) {
2649 ret = wait_event_interruptible_timeout(mle->wq,
2650 (atomic_read(&mle->woken) == 1),
2651 msecs_to_jiffies(5000));
2652
2653 if (ret >= 0) {
2654 if (atomic_read(&mle->woken) == 1 ||
2655 res->owner == target)
2656 break;
2657
Kurt Hackel1cd04db2007-01-17 14:53:37 -08002658 mlog(0, "%s:%.*s: timed out during migration\n",
2659 dlm->name, res->lockname.len, res->lockname.name);
Kurt Hackele2faea42006-01-12 14:24:55 -08002660 /* avoid hang during shutdown when migrating lockres
2661 * to a node which also goes down */
2662 if (dlm_is_node_dead(dlm, target)) {
Kurt Hackelaa852352006-04-27 19:04:49 -07002663 mlog(0, "%s:%.*s: expected migration "
2664 "target %u is no longer up, restarting\n",
Kurt Hackele2faea42006-01-12 14:24:55 -08002665 dlm->name, res->lockname.len,
2666 res->lockname.name, target);
Kurt Hackel1cd04db2007-01-17 14:53:37 -08002667 ret = -EINVAL;
2668 /* migration failed, detach and clean up mle */
2669 dlm_mle_detach_hb_events(dlm, mle);
2670 dlm_put_mle(mle);
2671 dlm_put_mle_inuse(mle);
2672 spin_lock(&res->spinlock);
2673 res->state &= ~DLM_LOCK_RES_MIGRATING;
Kurt Hackela6fa3642007-01-17 14:59:12 -08002674 wake = 1;
Kurt Hackel1cd04db2007-01-17 14:53:37 -08002675 spin_unlock(&res->spinlock);
2676 goto leave;
Kurt Hackele2faea42006-01-12 14:24:55 -08002677 }
Kurt Hackel1cd04db2007-01-17 14:53:37 -08002678 } else
2679 mlog(0, "%s:%.*s: caught signal during migration\n",
2680 dlm->name, res->lockname.len, res->lockname.name);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002681 }
2682
2683 /* all done, set the owner, clear the flag */
2684 spin_lock(&res->spinlock);
2685 dlm_set_lockres_owner(dlm, res, target);
2686 res->state &= ~DLM_LOCK_RES_MIGRATING;
2687 dlm_remove_nonlocal_locks(dlm, res);
2688 spin_unlock(&res->spinlock);
2689 wake_up(&res->wq);
2690
2691 /* master is known, detach if not already detached */
2692 dlm_mle_detach_hb_events(dlm, mle);
Kurt Hackela2bf0472006-04-27 18:51:26 -07002693 dlm_put_mle_inuse(mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002694 ret = 0;
2695
2696 dlm_lockres_calc_usage(dlm, res);
2697
2698leave:
2699 /* re-dirty the lockres if we failed */
2700 if (ret < 0)
2701 dlm_kick_thread(dlm, res);
2702
Kurt Hackela6fa3642007-01-17 14:59:12 -08002703 /* wake up waiters if the MIGRATING flag got set
2704 * but migration failed */
2705 if (wake)
2706 wake_up(&res->wq);
2707
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002708 /* TODO: cleanup */
2709 if (mres)
2710 free_page((unsigned long)mres);
2711
2712 dlm_put(dlm);
2713
2714 mlog(0, "returning %d\n", ret);
2715 return ret;
2716}
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002717
Kurt Hackelba2bf212006-12-01 14:47:20 -08002718#define DLM_MIGRATION_RETRY_MS 100
2719
2720/* Should be called only after beginning the domain leave process.
2721 * There should not be any remaining locks on nonlocal lock resources,
2722 * and there should be no local locks left on locally mastered resources.
2723 *
2724 * Called with the dlm spinlock held, may drop it to do migration, but
2725 * will re-acquire before exit.
2726 *
2727 * Returns: 1 if dlm->spinlock was dropped/retaken, 0 if never dropped */
2728int dlm_empty_lockres(struct dlm_ctxt *dlm, struct dlm_lock_resource *res)
2729{
2730 int ret;
2731 int lock_dropped = 0;
2732
Sunil Mushranb36c3f82007-03-12 13:25:44 -07002733 spin_lock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002734 if (res->owner != dlm->node_num) {
2735 if (!__dlm_lockres_unused(res)) {
2736 mlog(ML_ERROR, "%s:%.*s: this node is not master, "
2737 "trying to free this but locks remain\n",
2738 dlm->name, res->lockname.len, res->lockname.name);
2739 }
Sunil Mushranb36c3f82007-03-12 13:25:44 -07002740 spin_unlock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002741 goto leave;
2742 }
Sunil Mushranb36c3f82007-03-12 13:25:44 -07002743 spin_unlock(&res->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002744
2745 /* Wheee! Migrate lockres here! Will sleep so drop spinlock. */
2746 spin_unlock(&dlm->spinlock);
2747 lock_dropped = 1;
2748 while (1) {
2749 ret = dlm_migrate_lockres(dlm, res, O2NM_MAX_NODES);
2750 if (ret >= 0)
2751 break;
2752 if (ret == -ENOTEMPTY) {
2753 mlog(ML_ERROR, "lockres %.*s still has local locks!\n",
2754 res->lockname.len, res->lockname.name);
2755 BUG();
2756 }
2757
2758 mlog(0, "lockres %.*s: migrate failed, "
2759 "retrying\n", res->lockname.len,
2760 res->lockname.name);
2761 msleep(DLM_MIGRATION_RETRY_MS);
2762 }
2763 spin_lock(&dlm->spinlock);
2764leave:
2765 return lock_dropped;
2766}
2767
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002768int dlm_lock_basts_flushed(struct dlm_ctxt *dlm, struct dlm_lock *lock)
2769{
2770 int ret;
2771 spin_lock(&dlm->ast_lock);
2772 spin_lock(&lock->spinlock);
2773 ret = (list_empty(&lock->bast_list) && !lock->bast_pending);
2774 spin_unlock(&lock->spinlock);
2775 spin_unlock(&dlm->ast_lock);
2776 return ret;
2777}
2778
2779static int dlm_migration_can_proceed(struct dlm_ctxt *dlm,
2780 struct dlm_lock_resource *res,
2781 u8 mig_target)
2782{
2783 int can_proceed;
2784 spin_lock(&res->spinlock);
2785 can_proceed = !!(res->state & DLM_LOCK_RES_MIGRATING);
2786 spin_unlock(&res->spinlock);
2787
2788 /* target has died, so make the caller break out of the
2789 * wait_event, but caller must recheck the domain_map */
2790 spin_lock(&dlm->spinlock);
2791 if (!test_bit(mig_target, dlm->domain_map))
2792 can_proceed = 1;
2793 spin_unlock(&dlm->spinlock);
2794 return can_proceed;
2795}
2796
Adrian Bunkfaf0ec92006-12-14 00:17:32 +01002797static int dlm_lockres_is_dirty(struct dlm_ctxt *dlm,
2798 struct dlm_lock_resource *res)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002799{
2800 int ret;
2801 spin_lock(&res->spinlock);
2802 ret = !!(res->state & DLM_LOCK_RES_DIRTY);
2803 spin_unlock(&res->spinlock);
2804 return ret;
2805}
2806
2807
2808static int dlm_mark_lockres_migrating(struct dlm_ctxt *dlm,
2809 struct dlm_lock_resource *res,
2810 u8 target)
2811{
2812 int ret = 0;
2813
2814 mlog(0, "dlm_mark_lockres_migrating: %.*s, from %u to %u\n",
2815 res->lockname.len, res->lockname.name, dlm->node_num,
2816 target);
2817 /* need to set MIGRATING flag on lockres. this is done by
2818 * ensuring that all asts have been flushed for this lockres. */
2819 spin_lock(&res->spinlock);
2820 BUG_ON(res->migration_pending);
2821 res->migration_pending = 1;
2822 /* strategy is to reserve an extra ast then release
2823 * it below, letting the release do all of the work */
2824 __dlm_lockres_reserve_ast(res);
2825 spin_unlock(&res->spinlock);
2826
Kurt Hackelddc09c82007-01-05 15:00:17 -08002827 /* now flush all the pending asts */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002828 dlm_kick_thread(dlm, res);
Kurt Hackelddc09c82007-01-05 15:00:17 -08002829 /* before waiting on DIRTY, block processes which may
2830 * try to dirty the lockres before MIGRATING is set */
2831 spin_lock(&res->spinlock);
2832 BUG_ON(res->state & DLM_LOCK_RES_BLOCK_DIRTY);
2833 res->state |= DLM_LOCK_RES_BLOCK_DIRTY;
2834 spin_unlock(&res->spinlock);
2835 /* now wait on any pending asts and the DIRTY state */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002836 wait_event(dlm->ast_wq, !dlm_lockres_is_dirty(dlm, res));
2837 dlm_lockres_release_ast(dlm, res);
2838
2839 mlog(0, "about to wait on migration_wq, dirty=%s\n",
2840 res->state & DLM_LOCK_RES_DIRTY ? "yes" : "no");
2841 /* if the extra ref we just put was the final one, this
2842 * will pass thru immediately. otherwise, we need to wait
2843 * for the last ast to finish. */
2844again:
2845 ret = wait_event_interruptible_timeout(dlm->migration_wq,
2846 dlm_migration_can_proceed(dlm, res, target),
2847 msecs_to_jiffies(1000));
2848 if (ret < 0) {
2849 mlog(0, "woken again: migrating? %s, dead? %s\n",
2850 res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no",
2851 test_bit(target, dlm->domain_map) ? "no":"yes");
2852 } else {
2853 mlog(0, "all is well: migrating? %s, dead? %s\n",
2854 res->state & DLM_LOCK_RES_MIGRATING ? "yes":"no",
2855 test_bit(target, dlm->domain_map) ? "no":"yes");
2856 }
2857 if (!dlm_migration_can_proceed(dlm, res, target)) {
2858 mlog(0, "trying again...\n");
2859 goto again;
2860 }
Kurt Hackelddc09c82007-01-05 15:00:17 -08002861 /* now that we are sure the MIGRATING state is there, drop
2862 * the unneded state which blocked threads trying to DIRTY */
2863 spin_lock(&res->spinlock);
2864 BUG_ON(!(res->state & DLM_LOCK_RES_BLOCK_DIRTY));
2865 BUG_ON(!(res->state & DLM_LOCK_RES_MIGRATING));
2866 res->state &= ~DLM_LOCK_RES_BLOCK_DIRTY;
2867 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002868
2869 /* did the target go down or die? */
2870 spin_lock(&dlm->spinlock);
2871 if (!test_bit(target, dlm->domain_map)) {
2872 mlog(ML_ERROR, "aha. migration target %u just went down\n",
2873 target);
2874 ret = -EHOSTDOWN;
2875 }
2876 spin_unlock(&dlm->spinlock);
2877
2878 /*
2879 * at this point:
2880 *
2881 * o the DLM_LOCK_RES_MIGRATING flag is set
2882 * o there are no pending asts on this lockres
2883 * o all processes trying to reserve an ast on this
2884 * lockres must wait for the MIGRATING flag to clear
2885 */
2886 return ret;
2887}
2888
2889/* last step in the migration process.
2890 * original master calls this to free all of the dlm_lock
2891 * structures that used to be for other nodes. */
2892static void dlm_remove_nonlocal_locks(struct dlm_ctxt *dlm,
2893 struct dlm_lock_resource *res)
2894{
2895 struct list_head *iter, *iter2;
2896 struct list_head *queue = &res->granted;
Kurt Hackelba2bf212006-12-01 14:47:20 -08002897 int i, bit;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002898 struct dlm_lock *lock;
2899
2900 assert_spin_locked(&res->spinlock);
2901
2902 BUG_ON(res->owner == dlm->node_num);
2903
2904 for (i=0; i<3; i++) {
2905 list_for_each_safe(iter, iter2, queue) {
2906 lock = list_entry (iter, struct dlm_lock, list);
2907 if (lock->ml.node != dlm->node_num) {
2908 mlog(0, "putting lock for node %u\n",
2909 lock->ml.node);
2910 /* be extra careful */
2911 BUG_ON(!list_empty(&lock->ast_list));
2912 BUG_ON(!list_empty(&lock->bast_list));
2913 BUG_ON(lock->ast_pending);
2914 BUG_ON(lock->bast_pending);
Kurt Hackelba2bf212006-12-01 14:47:20 -08002915 dlm_lockres_clear_refmap_bit(lock->ml.node, res);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002916 list_del_init(&lock->list);
2917 dlm_lock_put(lock);
2918 }
2919 }
2920 queue++;
2921 }
Kurt Hackelba2bf212006-12-01 14:47:20 -08002922 bit = 0;
2923 while (1) {
2924 bit = find_next_bit(res->refmap, O2NM_MAX_NODES, bit);
2925 if (bit >= O2NM_MAX_NODES)
2926 break;
2927 /* do not clear the local node reference, if there is a
2928 * process holding this, let it drop the ref itself */
2929 if (bit != dlm->node_num) {
2930 mlog(0, "%s:%.*s: node %u had a ref to this "
2931 "migrating lockres, clearing\n", dlm->name,
2932 res->lockname.len, res->lockname.name, bit);
2933 dlm_lockres_clear_refmap_bit(bit, res);
2934 }
2935 bit++;
2936 }
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002937}
2938
2939/* for now this is not too intelligent. we will
2940 * need stats to make this do the right thing.
2941 * this just finds the first lock on one of the
2942 * queues and uses that node as the target. */
2943static u8 dlm_pick_migration_target(struct dlm_ctxt *dlm,
2944 struct dlm_lock_resource *res)
2945{
2946 int i;
2947 struct list_head *queue = &res->granted;
2948 struct list_head *iter;
2949 struct dlm_lock *lock;
2950 int nodenum;
2951
2952 assert_spin_locked(&dlm->spinlock);
2953
2954 spin_lock(&res->spinlock);
2955 for (i=0; i<3; i++) {
2956 list_for_each(iter, queue) {
2957 /* up to the caller to make sure this node
2958 * is alive */
2959 lock = list_entry (iter, struct dlm_lock, list);
2960 if (lock->ml.node != dlm->node_num) {
2961 spin_unlock(&res->spinlock);
2962 return lock->ml.node;
2963 }
2964 }
2965 queue++;
2966 }
2967 spin_unlock(&res->spinlock);
2968 mlog(0, "have not found a suitable target yet! checking domain map\n");
2969
2970 /* ok now we're getting desperate. pick anyone alive. */
2971 nodenum = -1;
2972 while (1) {
2973 nodenum = find_next_bit(dlm->domain_map,
2974 O2NM_MAX_NODES, nodenum+1);
2975 mlog(0, "found %d in domain map\n", nodenum);
2976 if (nodenum >= O2NM_MAX_NODES)
2977 break;
2978 if (nodenum != dlm->node_num) {
2979 mlog(0, "picking %d\n", nodenum);
2980 return nodenum;
2981 }
2982 }
2983
2984 mlog(0, "giving up. no master to migrate to\n");
2985 return DLM_LOCK_RES_OWNER_UNKNOWN;
2986}
2987
2988
2989
2990/* this is called by the new master once all lockres
2991 * data has been received */
2992static int dlm_do_migrate_request(struct dlm_ctxt *dlm,
2993 struct dlm_lock_resource *res,
2994 u8 master, u8 new_master,
2995 struct dlm_node_iter *iter)
2996{
2997 struct dlm_migrate_request migrate;
2998 int ret, status = 0;
2999 int nodenum;
3000
3001 memset(&migrate, 0, sizeof(migrate));
3002 migrate.namelen = res->lockname.len;
3003 memcpy(migrate.name, res->lockname.name, migrate.namelen);
3004 migrate.new_master = new_master;
3005 migrate.master = master;
3006
3007 ret = 0;
3008
3009 /* send message to all nodes, except the master and myself */
3010 while ((nodenum = dlm_node_iter_next(iter)) >= 0) {
3011 if (nodenum == master ||
3012 nodenum == new_master)
3013 continue;
3014
3015 ret = o2net_send_message(DLM_MIGRATE_REQUEST_MSG, dlm->key,
3016 &migrate, sizeof(migrate), nodenum,
3017 &status);
3018 if (ret < 0)
3019 mlog_errno(ret);
3020 else if (status < 0) {
3021 mlog(0, "migrate request (node %u) returned %d!\n",
3022 nodenum, status);
3023 ret = status;
Kurt Hackelba2bf212006-12-01 14:47:20 -08003024 } else if (status == DLM_MIGRATE_RESPONSE_MASTERY_REF) {
3025 /* during the migration request we short-circuited
3026 * the mastery of the lockres. make sure we have
3027 * a mastery ref for nodenum */
3028 mlog(0, "%s:%.*s: need ref for node %u\n",
3029 dlm->name, res->lockname.len, res->lockname.name,
3030 nodenum);
3031 spin_lock(&res->spinlock);
3032 dlm_lockres_set_refmap_bit(nodenum, res);
3033 spin_unlock(&res->spinlock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003034 }
3035 }
3036
3037 if (ret < 0)
3038 mlog_errno(ret);
3039
3040 mlog(0, "returning ret=%d\n", ret);
3041 return ret;
3042}
3043
3044
3045/* if there is an existing mle for this lockres, we now know who the master is.
3046 * (the one who sent us *this* message) we can clear it up right away.
3047 * since the process that put the mle on the list still has a reference to it,
3048 * we can unhash it now, set the master and wake the process. as a result,
3049 * we will have no mle in the list to start with. now we can add an mle for
3050 * the migration and this should be the only one found for those scanning the
3051 * list. */
Kurt Hackeld74c9802007-01-17 17:04:25 -08003052int dlm_migrate_request_handler(struct o2net_msg *msg, u32 len, void *data,
3053 void **ret_data)
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003054{
3055 struct dlm_ctxt *dlm = data;
3056 struct dlm_lock_resource *res = NULL;
3057 struct dlm_migrate_request *migrate = (struct dlm_migrate_request *) msg->buf;
3058 struct dlm_master_list_entry *mle = NULL, *oldmle = NULL;
3059 const char *name;
Mark Fasheha3d33292006-03-09 17:55:56 -08003060 unsigned int namelen, hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003061 int ret = 0;
3062
3063 if (!dlm_grab(dlm))
3064 return -EINVAL;
3065
3066 name = migrate->name;
3067 namelen = migrate->namelen;
Mark Fasheha3d33292006-03-09 17:55:56 -08003068 hash = dlm_lockid_hash(name, namelen);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003069
3070 /* preallocate.. if this fails, abort */
3071 mle = (struct dlm_master_list_entry *) kmem_cache_alloc(dlm_mle_cache,
Kurt Hackelad8100e2006-05-01 14:25:21 -07003072 GFP_NOFS);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003073
3074 if (!mle) {
3075 ret = -ENOMEM;
3076 goto leave;
3077 }
3078
3079 /* check for pre-existing lock */
3080 spin_lock(&dlm->spinlock);
Mark Fasheha3d33292006-03-09 17:55:56 -08003081 res = __dlm_lookup_lockres(dlm, name, namelen, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003082 spin_lock(&dlm->master_lock);
3083
3084 if (res) {
3085 spin_lock(&res->spinlock);
3086 if (res->state & DLM_LOCK_RES_RECOVERING) {
3087 /* if all is working ok, this can only mean that we got
3088 * a migrate request from a node that we now see as
3089 * dead. what can we do here? drop it to the floor? */
3090 spin_unlock(&res->spinlock);
3091 mlog(ML_ERROR, "Got a migrate request, but the "
3092 "lockres is marked as recovering!");
3093 kmem_cache_free(dlm_mle_cache, mle);
3094 ret = -EINVAL; /* need a better solution */
3095 goto unlock;
3096 }
3097 res->state |= DLM_LOCK_RES_MIGRATING;
3098 spin_unlock(&res->spinlock);
3099 }
3100
3101 /* ignore status. only nonzero status would BUG. */
3102 ret = dlm_add_migration_mle(dlm, res, mle, &oldmle,
3103 name, namelen,
3104 migrate->new_master,
3105 migrate->master);
3106
3107unlock:
3108 spin_unlock(&dlm->master_lock);
3109 spin_unlock(&dlm->spinlock);
3110
3111 if (oldmle) {
3112 /* master is known, detach if not already detached */
3113 dlm_mle_detach_hb_events(dlm, oldmle);
3114 dlm_put_mle(oldmle);
3115 }
3116
3117 if (res)
3118 dlm_lockres_put(res);
3119leave:
3120 dlm_put(dlm);
3121 return ret;
3122}
3123
3124/* must be holding dlm->spinlock and dlm->master_lock
3125 * when adding a migration mle, we can clear any other mles
3126 * in the master list because we know with certainty that
3127 * the master is "master". so we remove any old mle from
3128 * the list after setting it's master field, and then add
3129 * the new migration mle. this way we can hold with the rule
3130 * of having only one mle for a given lock name at all times. */
3131static int dlm_add_migration_mle(struct dlm_ctxt *dlm,
3132 struct dlm_lock_resource *res,
3133 struct dlm_master_list_entry *mle,
3134 struct dlm_master_list_entry **oldmle,
3135 const char *name, unsigned int namelen,
3136 u8 new_master, u8 master)
3137{
3138 int found;
3139 int ret = 0;
3140
3141 *oldmle = NULL;
3142
3143 mlog_entry_void();
3144
3145 assert_spin_locked(&dlm->spinlock);
3146 assert_spin_locked(&dlm->master_lock);
3147
3148 /* caller is responsible for any ref taken here on oldmle */
3149 found = dlm_find_mle(dlm, oldmle, (char *)name, namelen);
3150 if (found) {
3151 struct dlm_master_list_entry *tmp = *oldmle;
3152 spin_lock(&tmp->spinlock);
3153 if (tmp->type == DLM_MLE_MIGRATION) {
3154 if (master == dlm->node_num) {
3155 /* ah another process raced me to it */
3156 mlog(0, "tried to migrate %.*s, but some "
3157 "process beat me to it\n",
3158 namelen, name);
3159 ret = -EEXIST;
3160 } else {
3161 /* bad. 2 NODES are trying to migrate! */
3162 mlog(ML_ERROR, "migration error mle: "
3163 "master=%u new_master=%u // request: "
3164 "master=%u new_master=%u // "
3165 "lockres=%.*s\n",
3166 tmp->master, tmp->new_master,
3167 master, new_master,
3168 namelen, name);
3169 BUG();
3170 }
3171 } else {
3172 /* this is essentially what assert_master does */
3173 tmp->master = master;
3174 atomic_set(&tmp->woken, 1);
3175 wake_up(&tmp->wq);
3176 /* remove it from the list so that only one
3177 * mle will be found */
3178 list_del_init(&tmp->list);
Kurt Hackelba2bf212006-12-01 14:47:20 -08003179 /* this was obviously WRONG. mle is uninited here. should be tmp. */
3180 __dlm_mle_detach_hb_events(dlm, tmp);
3181 ret = DLM_MIGRATE_RESPONSE_MASTERY_REF;
3182 mlog(0, "%s:%.*s: master=%u, newmaster=%u, "
3183 "telling master to get ref for cleared out mle "
3184 "during migration\n", dlm->name, namelen, name,
3185 master, new_master);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003186 }
3187 spin_unlock(&tmp->spinlock);
3188 }
3189
3190 /* now add a migration mle to the tail of the list */
3191 dlm_init_mle(mle, DLM_MLE_MIGRATION, dlm, res, name, namelen);
3192 mle->new_master = new_master;
Kurt Hackelba2bf212006-12-01 14:47:20 -08003193 /* the new master will be sending an assert master for this.
3194 * at that point we will get the refmap reference */
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003195 mle->master = master;
3196 /* do this for consistency with other mle types */
3197 set_bit(new_master, mle->maybe_map);
3198 list_add(&mle->list, &dlm->master_list);
3199
3200 return ret;
3201}
3202
3203
3204void dlm_clean_master_list(struct dlm_ctxt *dlm, u8 dead_node)
3205{
3206 struct list_head *iter, *iter2;
3207 struct dlm_master_list_entry *mle;
3208 struct dlm_lock_resource *res;
Mark Fasheha3d33292006-03-09 17:55:56 -08003209 unsigned int hash;
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003210
3211 mlog_entry("dlm=%s, dead node=%u\n", dlm->name, dead_node);
3212top:
3213 assert_spin_locked(&dlm->spinlock);
3214
3215 /* clean the master list */
3216 spin_lock(&dlm->master_lock);
3217 list_for_each_safe(iter, iter2, &dlm->master_list) {
3218 mle = list_entry(iter, struct dlm_master_list_entry, list);
3219
3220 BUG_ON(mle->type != DLM_MLE_BLOCK &&
3221 mle->type != DLM_MLE_MASTER &&
3222 mle->type != DLM_MLE_MIGRATION);
3223
3224 /* MASTER mles are initiated locally. the waiting
3225 * process will notice the node map change
3226 * shortly. let that happen as normal. */
3227 if (mle->type == DLM_MLE_MASTER)
3228 continue;
3229
3230
3231 /* BLOCK mles are initiated by other nodes.
3232 * need to clean up if the dead node would have
3233 * been the master. */
3234 if (mle->type == DLM_MLE_BLOCK) {
3235 int bit;
3236
3237 spin_lock(&mle->spinlock);
3238 bit = find_next_bit(mle->maybe_map, O2NM_MAX_NODES, 0);
3239 if (bit != dead_node) {
3240 mlog(0, "mle found, but dead node %u would "
3241 "not have been master\n", dead_node);
3242 spin_unlock(&mle->spinlock);
3243 } else {
3244 /* must drop the refcount by one since the
3245 * assert_master will never arrive. this
3246 * may result in the mle being unlinked and
3247 * freed, but there may still be a process
3248 * waiting in the dlmlock path which is fine. */
Kurt Hackel3b3b84a2006-05-01 14:31:37 -07003249 mlog(0, "node %u was expected master\n",
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003250 dead_node);
3251 atomic_set(&mle->woken, 1);
3252 spin_unlock(&mle->spinlock);
3253 wake_up(&mle->wq);
Kurt Hackelf671c092006-02-14 11:45:21 -08003254 /* do not need events any longer, so detach
3255 * from heartbeat */
3256 __dlm_mle_detach_hb_events(dlm, mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003257 __dlm_put_mle(mle);
3258 }
3259 continue;
3260 }
3261
3262 /* everything else is a MIGRATION mle */
3263
3264 /* the rule for MIGRATION mles is that the master
3265 * becomes UNKNOWN if *either* the original or
3266 * the new master dies. all UNKNOWN lockreses
3267 * are sent to whichever node becomes the recovery
3268 * master. the new master is responsible for
3269 * determining if there is still a master for
3270 * this lockres, or if he needs to take over
3271 * mastery. either way, this node should expect
3272 * another message to resolve this. */
3273 if (mle->master != dead_node &&
3274 mle->new_master != dead_node)
3275 continue;
3276
3277 /* if we have reached this point, this mle needs to
3278 * be removed from the list and freed. */
3279
3280 /* remove from the list early. NOTE: unlinking
3281 * list_head while in list_for_each_safe */
Kurt Hackelda01ad0552006-04-27 18:53:04 -07003282 __dlm_mle_detach_hb_events(dlm, mle);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003283 spin_lock(&mle->spinlock);
3284 list_del_init(&mle->list);
3285 atomic_set(&mle->woken, 1);
3286 spin_unlock(&mle->spinlock);
3287 wake_up(&mle->wq);
3288
Kurt Hackelaa852352006-04-27 19:04:49 -07003289 mlog(0, "%s: node %u died during migration from "
3290 "%u to %u!\n", dlm->name, dead_node,
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003291 mle->master, mle->new_master);
3292 /* if there is a lockres associated with this
3293 * mle, find it and set its owner to UNKNOWN */
Mark Fasheha3d33292006-03-09 17:55:56 -08003294 hash = dlm_lockid_hash(mle->u.name.name, mle->u.name.len);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003295 res = __dlm_lookup_lockres(dlm, mle->u.name.name,
Mark Fasheha3d33292006-03-09 17:55:56 -08003296 mle->u.name.len, hash);
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003297 if (res) {
3298 /* unfortunately if we hit this rare case, our
3299 * lock ordering is messed. we need to drop
3300 * the master lock so that we can take the
3301 * lockres lock, meaning that we will have to
3302 * restart from the head of list. */
3303 spin_unlock(&dlm->master_lock);
3304
3305 /* move lockres onto recovery list */
3306 spin_lock(&res->spinlock);
3307 dlm_set_lockres_owner(dlm, res,
3308 DLM_LOCK_RES_OWNER_UNKNOWN);
3309 dlm_move_lockres_to_recovery_list(dlm, res);
3310 spin_unlock(&res->spinlock);
3311 dlm_lockres_put(res);
3312
Kurt Hackelf671c092006-02-14 11:45:21 -08003313 /* about to get rid of mle, detach from heartbeat */
3314 __dlm_mle_detach_hb_events(dlm, mle);
3315
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003316 /* dump the mle */
3317 spin_lock(&dlm->master_lock);
3318 __dlm_put_mle(mle);
3319 spin_unlock(&dlm->master_lock);
3320
3321 /* restart */
3322 goto top;
3323 }
3324
3325 /* this may be the last reference */
3326 __dlm_put_mle(mle);
3327 }
3328 spin_unlock(&dlm->master_lock);
3329}
3330
3331
3332int dlm_finish_migration(struct dlm_ctxt *dlm, struct dlm_lock_resource *res,
3333 u8 old_master)
3334{
3335 struct dlm_node_iter iter;
3336 int ret = 0;
3337
3338 spin_lock(&dlm->spinlock);
3339 dlm_node_iter_init(dlm->domain_map, &iter);
3340 clear_bit(old_master, iter.node_map);
3341 clear_bit(dlm->node_num, iter.node_map);
3342 spin_unlock(&dlm->spinlock);
3343
Kurt Hackelba2bf212006-12-01 14:47:20 -08003344 /* ownership of the lockres is changing. account for the
3345 * mastery reference here since old_master will briefly have
3346 * a reference after the migration completes */
3347 spin_lock(&res->spinlock);
3348 dlm_lockres_set_refmap_bit(old_master, res);
3349 spin_unlock(&res->spinlock);
3350
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003351 mlog(0, "now time to do a migrate request to other nodes\n");
3352 ret = dlm_do_migrate_request(dlm, res, old_master,
3353 dlm->node_num, &iter);
3354 if (ret < 0) {
3355 mlog_errno(ret);
3356 goto leave;
3357 }
3358
3359 mlog(0, "doing assert master of %.*s to all except the original node\n",
3360 res->lockname.len, res->lockname.name);
3361 /* this call now finishes out the nodemap
3362 * even if one or more nodes die */
Kurt Hackelba2bf212006-12-01 14:47:20 -08003363 ret = dlm_do_assert_master(dlm, res, iter.node_map,
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003364 DLM_ASSERT_MASTER_FINISH_MIGRATION);
3365 if (ret < 0) {
3366 /* no longer need to retry. all living nodes contacted. */
3367 mlog_errno(ret);
3368 ret = 0;
3369 }
3370
3371 memset(iter.node_map, 0, sizeof(iter.node_map));
3372 set_bit(old_master, iter.node_map);
3373 mlog(0, "doing assert master of %.*s back to %u\n",
3374 res->lockname.len, res->lockname.name, old_master);
Kurt Hackelba2bf212006-12-01 14:47:20 -08003375 ret = dlm_do_assert_master(dlm, res, iter.node_map,
Kurt Hackel6714d8e2005-12-15 14:31:23 -08003376 DLM_ASSERT_MASTER_FINISH_MIGRATION);
3377 if (ret < 0) {
3378 mlog(0, "assert master to original master failed "
3379 "with %d.\n", ret);
3380 /* the only nonzero status here would be because of
3381 * a dead original node. we're done. */
3382 ret = 0;
3383 }
3384
3385 /* all done, set the owner, clear the flag */
3386 spin_lock(&res->spinlock);
3387 dlm_set_lockres_owner(dlm, res, dlm->node_num);
3388 res->state &= ~DLM_LOCK_RES_MIGRATING;
3389 spin_unlock(&res->spinlock);
3390 /* re-dirty it on the new master */
3391 dlm_kick_thread(dlm, res);
3392 wake_up(&res->wq);
3393leave:
3394 return ret;
3395}
3396
3397/*
3398 * LOCKRES AST REFCOUNT
3399 * this is integral to migration
3400 */
3401
3402/* for future intent to call an ast, reserve one ahead of time.
3403 * this should be called only after waiting on the lockres
3404 * with dlm_wait_on_lockres, and while still holding the
3405 * spinlock after the call. */
3406void __dlm_lockres_reserve_ast(struct dlm_lock_resource *res)
3407{
3408 assert_spin_locked(&res->spinlock);
3409 if (res->state & DLM_LOCK_RES_MIGRATING) {
3410 __dlm_print_one_lock_resource(res);
3411 }
3412 BUG_ON(res->state & DLM_LOCK_RES_MIGRATING);
3413
3414 atomic_inc(&res->asts_reserved);
3415}
3416
3417/*
3418 * used to drop the reserved ast, either because it went unused,
3419 * or because the ast/bast was actually called.
3420 *
3421 * also, if there is a pending migration on this lockres,
3422 * and this was the last pending ast on the lockres,
3423 * atomically set the MIGRATING flag before we drop the lock.
3424 * this is how we ensure that migration can proceed with no
3425 * asts in progress. note that it is ok if the state of the
3426 * queues is such that a lock should be granted in the future
3427 * or that a bast should be fired, because the new master will
3428 * shuffle the lists on this lockres as soon as it is migrated.
3429 */
3430void dlm_lockres_release_ast(struct dlm_ctxt *dlm,
3431 struct dlm_lock_resource *res)
3432{
3433 if (!atomic_dec_and_lock(&res->asts_reserved, &res->spinlock))
3434 return;
3435
3436 if (!res->migration_pending) {
3437 spin_unlock(&res->spinlock);
3438 return;
3439 }
3440
3441 BUG_ON(res->state & DLM_LOCK_RES_MIGRATING);
3442 res->migration_pending = 0;
3443 res->state |= DLM_LOCK_RES_MIGRATING;
3444 spin_unlock(&res->spinlock);
3445 wake_up(&res->wq);
3446 wake_up(&dlm->migration_wq);
3447}