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