uapi/if_ether.h: move __UAPI_DEF_ETHHDR libc define
[linux/fpc-iii.git] / drivers / md / md-cluster.c
blob717aaffc227dfa942821bebf4133670dbc684d95
1 /*
2 * Copyright (C) 2015, SUSE
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
9 */
12 #include <linux/module.h>
13 #include <linux/kthread.h>
14 #include <linux/dlm.h>
15 #include <linux/sched.h>
16 #include <linux/raid/md_p.h>
17 #include "md.h"
18 #include "bitmap.h"
19 #include "md-cluster.h"
21 #define LVB_SIZE 64
22 #define NEW_DEV_TIMEOUT 5000
24 struct dlm_lock_resource {
25 dlm_lockspace_t *ls;
26 struct dlm_lksb lksb;
27 char *name; /* lock name. */
28 uint32_t flags; /* flags to pass to dlm_lock() */
29 wait_queue_head_t sync_locking; /* wait queue for synchronized locking */
30 bool sync_locking_done;
31 void (*bast)(void *arg, int mode); /* blocking AST function pointer*/
32 struct mddev *mddev; /* pointing back to mddev. */
33 int mode;
36 struct suspend_info {
37 int slot;
38 sector_t lo;
39 sector_t hi;
40 struct list_head list;
43 struct resync_info {
44 __le64 lo;
45 __le64 hi;
48 /* md_cluster_info flags */
49 #define MD_CLUSTER_WAITING_FOR_NEWDISK 1
50 #define MD_CLUSTER_SUSPEND_READ_BALANCING 2
51 #define MD_CLUSTER_BEGIN_JOIN_CLUSTER 3
53 /* Lock the send communication. This is done through
54 * bit manipulation as opposed to a mutex in order to
55 * accomodate lock and hold. See next comment.
57 #define MD_CLUSTER_SEND_LOCK 4
58 /* If cluster operations (such as adding a disk) must lock the
59 * communication channel, so as to perform extra operations
60 * (update metadata) and no other operation is allowed on the
61 * MD. Token needs to be locked and held until the operation
62 * completes witha md_update_sb(), which would eventually release
63 * the lock.
65 #define MD_CLUSTER_SEND_LOCKED_ALREADY 5
66 /* We should receive message after node joined cluster and
67 * set up all the related infos such as bitmap and personality */
68 #define MD_CLUSTER_ALREADY_IN_CLUSTER 6
69 #define MD_CLUSTER_PENDING_RECV_EVENT 7
70 #define MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD 8
72 struct md_cluster_info {
73 struct mddev *mddev; /* the md device which md_cluster_info belongs to */
74 /* dlm lock space and resources for clustered raid. */
75 dlm_lockspace_t *lockspace;
76 int slot_number;
77 struct completion completion;
78 struct mutex recv_mutex;
79 struct dlm_lock_resource *bitmap_lockres;
80 struct dlm_lock_resource **other_bitmap_lockres;
81 struct dlm_lock_resource *resync_lockres;
82 struct list_head suspend_list;
83 spinlock_t suspend_lock;
84 struct md_thread *recovery_thread;
85 unsigned long recovery_map;
86 /* communication loc resources */
87 struct dlm_lock_resource *ack_lockres;
88 struct dlm_lock_resource *message_lockres;
89 struct dlm_lock_resource *token_lockres;
90 struct dlm_lock_resource *no_new_dev_lockres;
91 struct md_thread *recv_thread;
92 struct completion newdisk_completion;
93 wait_queue_head_t wait;
94 unsigned long state;
95 /* record the region in RESYNCING message */
96 sector_t sync_low;
97 sector_t sync_hi;
100 enum msg_type {
101 METADATA_UPDATED = 0,
102 RESYNCING,
103 NEWDISK,
104 REMOVE,
105 RE_ADD,
106 BITMAP_NEEDS_SYNC,
107 CHANGE_CAPACITY,
110 struct cluster_msg {
111 __le32 type;
112 __le32 slot;
113 /* TODO: Unionize this for smaller footprint */
114 __le64 low;
115 __le64 high;
116 char uuid[16];
117 __le32 raid_slot;
120 static void sync_ast(void *arg)
122 struct dlm_lock_resource *res;
124 res = arg;
125 res->sync_locking_done = true;
126 wake_up(&res->sync_locking);
129 static int dlm_lock_sync(struct dlm_lock_resource *res, int mode)
131 int ret = 0;
133 ret = dlm_lock(res->ls, mode, &res->lksb,
134 res->flags, res->name, strlen(res->name),
135 0, sync_ast, res, res->bast);
136 if (ret)
137 return ret;
138 wait_event(res->sync_locking, res->sync_locking_done);
139 res->sync_locking_done = false;
140 if (res->lksb.sb_status == 0)
141 res->mode = mode;
142 return res->lksb.sb_status;
145 static int dlm_unlock_sync(struct dlm_lock_resource *res)
147 return dlm_lock_sync(res, DLM_LOCK_NL);
151 * An variation of dlm_lock_sync, which make lock request could
152 * be interrupted
154 static int dlm_lock_sync_interruptible(struct dlm_lock_resource *res, int mode,
155 struct mddev *mddev)
157 int ret = 0;
159 ret = dlm_lock(res->ls, mode, &res->lksb,
160 res->flags, res->name, strlen(res->name),
161 0, sync_ast, res, res->bast);
162 if (ret)
163 return ret;
165 wait_event(res->sync_locking, res->sync_locking_done
166 || kthread_should_stop()
167 || test_bit(MD_CLOSING, &mddev->flags));
168 if (!res->sync_locking_done) {
170 * the convert queue contains the lock request when request is
171 * interrupted, and sync_ast could still be run, so need to
172 * cancel the request and reset completion
174 ret = dlm_unlock(res->ls, res->lksb.sb_lkid, DLM_LKF_CANCEL,
175 &res->lksb, res);
176 res->sync_locking_done = false;
177 if (unlikely(ret != 0))
178 pr_info("failed to cancel previous lock request "
179 "%s return %d\n", res->name, ret);
180 return -EPERM;
181 } else
182 res->sync_locking_done = false;
183 if (res->lksb.sb_status == 0)
184 res->mode = mode;
185 return res->lksb.sb_status;
188 static struct dlm_lock_resource *lockres_init(struct mddev *mddev,
189 char *name, void (*bastfn)(void *arg, int mode), int with_lvb)
191 struct dlm_lock_resource *res = NULL;
192 int ret, namelen;
193 struct md_cluster_info *cinfo = mddev->cluster_info;
195 res = kzalloc(sizeof(struct dlm_lock_resource), GFP_KERNEL);
196 if (!res)
197 return NULL;
198 init_waitqueue_head(&res->sync_locking);
199 res->sync_locking_done = false;
200 res->ls = cinfo->lockspace;
201 res->mddev = mddev;
202 res->mode = DLM_LOCK_IV;
203 namelen = strlen(name);
204 res->name = kzalloc(namelen + 1, GFP_KERNEL);
205 if (!res->name) {
206 pr_err("md-cluster: Unable to allocate resource name for resource %s\n", name);
207 goto out_err;
209 strlcpy(res->name, name, namelen + 1);
210 if (with_lvb) {
211 res->lksb.sb_lvbptr = kzalloc(LVB_SIZE, GFP_KERNEL);
212 if (!res->lksb.sb_lvbptr) {
213 pr_err("md-cluster: Unable to allocate LVB for resource %s\n", name);
214 goto out_err;
216 res->flags = DLM_LKF_VALBLK;
219 if (bastfn)
220 res->bast = bastfn;
222 res->flags |= DLM_LKF_EXPEDITE;
224 ret = dlm_lock_sync(res, DLM_LOCK_NL);
225 if (ret) {
226 pr_err("md-cluster: Unable to lock NL on new lock resource %s\n", name);
227 goto out_err;
229 res->flags &= ~DLM_LKF_EXPEDITE;
230 res->flags |= DLM_LKF_CONVERT;
232 return res;
233 out_err:
234 kfree(res->lksb.sb_lvbptr);
235 kfree(res->name);
236 kfree(res);
237 return NULL;
240 static void lockres_free(struct dlm_lock_resource *res)
242 int ret = 0;
244 if (!res)
245 return;
248 * use FORCEUNLOCK flag, so we can unlock even the lock is on the
249 * waiting or convert queue
251 ret = dlm_unlock(res->ls, res->lksb.sb_lkid, DLM_LKF_FORCEUNLOCK,
252 &res->lksb, res);
253 if (unlikely(ret != 0))
254 pr_err("failed to unlock %s return %d\n", res->name, ret);
255 else
256 wait_event(res->sync_locking, res->sync_locking_done);
258 kfree(res->name);
259 kfree(res->lksb.sb_lvbptr);
260 kfree(res);
263 static void add_resync_info(struct dlm_lock_resource *lockres,
264 sector_t lo, sector_t hi)
266 struct resync_info *ri;
268 ri = (struct resync_info *)lockres->lksb.sb_lvbptr;
269 ri->lo = cpu_to_le64(lo);
270 ri->hi = cpu_to_le64(hi);
273 static struct suspend_info *read_resync_info(struct mddev *mddev, struct dlm_lock_resource *lockres)
275 struct resync_info ri;
276 struct suspend_info *s = NULL;
277 sector_t hi = 0;
279 dlm_lock_sync(lockres, DLM_LOCK_CR);
280 memcpy(&ri, lockres->lksb.sb_lvbptr, sizeof(struct resync_info));
281 hi = le64_to_cpu(ri.hi);
282 if (hi > 0) {
283 s = kzalloc(sizeof(struct suspend_info), GFP_KERNEL);
284 if (!s)
285 goto out;
286 s->hi = hi;
287 s->lo = le64_to_cpu(ri.lo);
289 dlm_unlock_sync(lockres);
290 out:
291 return s;
294 static void recover_bitmaps(struct md_thread *thread)
296 struct mddev *mddev = thread->mddev;
297 struct md_cluster_info *cinfo = mddev->cluster_info;
298 struct dlm_lock_resource *bm_lockres;
299 char str[64];
300 int slot, ret;
301 struct suspend_info *s, *tmp;
302 sector_t lo, hi;
304 while (cinfo->recovery_map) {
305 slot = fls64((u64)cinfo->recovery_map) - 1;
307 snprintf(str, 64, "bitmap%04d", slot);
308 bm_lockres = lockres_init(mddev, str, NULL, 1);
309 if (!bm_lockres) {
310 pr_err("md-cluster: Cannot initialize bitmaps\n");
311 goto clear_bit;
314 ret = dlm_lock_sync_interruptible(bm_lockres, DLM_LOCK_PW, mddev);
315 if (ret) {
316 pr_err("md-cluster: Could not DLM lock %s: %d\n",
317 str, ret);
318 goto clear_bit;
320 ret = bitmap_copy_from_slot(mddev, slot, &lo, &hi, true);
321 if (ret) {
322 pr_err("md-cluster: Could not copy data from bitmap %d\n", slot);
323 goto clear_bit;
326 /* Clear suspend_area associated with the bitmap */
327 spin_lock_irq(&cinfo->suspend_lock);
328 list_for_each_entry_safe(s, tmp, &cinfo->suspend_list, list)
329 if (slot == s->slot) {
330 list_del(&s->list);
331 kfree(s);
333 spin_unlock_irq(&cinfo->suspend_lock);
335 if (hi > 0) {
336 if (lo < mddev->recovery_cp)
337 mddev->recovery_cp = lo;
338 /* wake up thread to continue resync in case resync
339 * is not finished */
340 if (mddev->recovery_cp != MaxSector) {
341 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
342 md_wakeup_thread(mddev->thread);
345 clear_bit:
346 lockres_free(bm_lockres);
347 clear_bit(slot, &cinfo->recovery_map);
351 static void recover_prep(void *arg)
353 struct mddev *mddev = arg;
354 struct md_cluster_info *cinfo = mddev->cluster_info;
355 set_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state);
358 static void __recover_slot(struct mddev *mddev, int slot)
360 struct md_cluster_info *cinfo = mddev->cluster_info;
362 set_bit(slot, &cinfo->recovery_map);
363 if (!cinfo->recovery_thread) {
364 cinfo->recovery_thread = md_register_thread(recover_bitmaps,
365 mddev, "recover");
366 if (!cinfo->recovery_thread) {
367 pr_warn("md-cluster: Could not create recovery thread\n");
368 return;
371 md_wakeup_thread(cinfo->recovery_thread);
374 static void recover_slot(void *arg, struct dlm_slot *slot)
376 struct mddev *mddev = arg;
377 struct md_cluster_info *cinfo = mddev->cluster_info;
379 pr_info("md-cluster: %s Node %d/%d down. My slot: %d. Initiating recovery.\n",
380 mddev->bitmap_info.cluster_name,
381 slot->nodeid, slot->slot,
382 cinfo->slot_number);
383 /* deduct one since dlm slot starts from one while the num of
384 * cluster-md begins with 0 */
385 __recover_slot(mddev, slot->slot - 1);
388 static void recover_done(void *arg, struct dlm_slot *slots,
389 int num_slots, int our_slot,
390 uint32_t generation)
392 struct mddev *mddev = arg;
393 struct md_cluster_info *cinfo = mddev->cluster_info;
395 cinfo->slot_number = our_slot;
396 /* completion is only need to be complete when node join cluster,
397 * it doesn't need to run during another node's failure */
398 if (test_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state)) {
399 complete(&cinfo->completion);
400 clear_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state);
402 clear_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state);
405 /* the ops is called when node join the cluster, and do lock recovery
406 * if node failure occurs */
407 static const struct dlm_lockspace_ops md_ls_ops = {
408 .recover_prep = recover_prep,
409 .recover_slot = recover_slot,
410 .recover_done = recover_done,
414 * The BAST function for the ack lock resource
415 * This function wakes up the receive thread in
416 * order to receive and process the message.
418 static void ack_bast(void *arg, int mode)
420 struct dlm_lock_resource *res = arg;
421 struct md_cluster_info *cinfo = res->mddev->cluster_info;
423 if (mode == DLM_LOCK_EX) {
424 if (test_bit(MD_CLUSTER_ALREADY_IN_CLUSTER, &cinfo->state))
425 md_wakeup_thread(cinfo->recv_thread);
426 else
427 set_bit(MD_CLUSTER_PENDING_RECV_EVENT, &cinfo->state);
431 static void __remove_suspend_info(struct md_cluster_info *cinfo, int slot)
433 struct suspend_info *s, *tmp;
435 list_for_each_entry_safe(s, tmp, &cinfo->suspend_list, list)
436 if (slot == s->slot) {
437 list_del(&s->list);
438 kfree(s);
439 break;
443 static void remove_suspend_info(struct mddev *mddev, int slot)
445 struct md_cluster_info *cinfo = mddev->cluster_info;
446 mddev->pers->quiesce(mddev, 1);
447 spin_lock_irq(&cinfo->suspend_lock);
448 __remove_suspend_info(cinfo, slot);
449 spin_unlock_irq(&cinfo->suspend_lock);
450 mddev->pers->quiesce(mddev, 0);
454 static void process_suspend_info(struct mddev *mddev,
455 int slot, sector_t lo, sector_t hi)
457 struct md_cluster_info *cinfo = mddev->cluster_info;
458 struct suspend_info *s;
460 if (!hi) {
461 remove_suspend_info(mddev, slot);
462 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
463 md_wakeup_thread(mddev->thread);
464 return;
468 * The bitmaps are not same for different nodes
469 * if RESYNCING is happening in one node, then
470 * the node which received the RESYNCING message
471 * probably will perform resync with the region
472 * [lo, hi] again, so we could reduce resync time
473 * a lot if we can ensure that the bitmaps among
474 * different nodes are match up well.
476 * sync_low/hi is used to record the region which
477 * arrived in the previous RESYNCING message,
479 * Call bitmap_sync_with_cluster to clear
480 * NEEDED_MASK and set RESYNC_MASK since
481 * resync thread is running in another node,
482 * so we don't need to do the resync again
483 * with the same section */
484 bitmap_sync_with_cluster(mddev, cinfo->sync_low,
485 cinfo->sync_hi,
486 lo, hi);
487 cinfo->sync_low = lo;
488 cinfo->sync_hi = hi;
490 s = kzalloc(sizeof(struct suspend_info), GFP_KERNEL);
491 if (!s)
492 return;
493 s->slot = slot;
494 s->lo = lo;
495 s->hi = hi;
496 mddev->pers->quiesce(mddev, 1);
497 spin_lock_irq(&cinfo->suspend_lock);
498 /* Remove existing entry (if exists) before adding */
499 __remove_suspend_info(cinfo, slot);
500 list_add(&s->list, &cinfo->suspend_list);
501 spin_unlock_irq(&cinfo->suspend_lock);
502 mddev->pers->quiesce(mddev, 0);
505 static void process_add_new_disk(struct mddev *mddev, struct cluster_msg *cmsg)
507 char disk_uuid[64];
508 struct md_cluster_info *cinfo = mddev->cluster_info;
509 char event_name[] = "EVENT=ADD_DEVICE";
510 char raid_slot[16];
511 char *envp[] = {event_name, disk_uuid, raid_slot, NULL};
512 int len;
514 len = snprintf(disk_uuid, 64, "DEVICE_UUID=");
515 sprintf(disk_uuid + len, "%pU", cmsg->uuid);
516 snprintf(raid_slot, 16, "RAID_DISK=%d", le32_to_cpu(cmsg->raid_slot));
517 pr_info("%s:%d Sending kobject change with %s and %s\n", __func__, __LINE__, disk_uuid, raid_slot);
518 init_completion(&cinfo->newdisk_completion);
519 set_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
520 kobject_uevent_env(&disk_to_dev(mddev->gendisk)->kobj, KOBJ_CHANGE, envp);
521 wait_for_completion_timeout(&cinfo->newdisk_completion,
522 NEW_DEV_TIMEOUT);
523 clear_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
527 static void process_metadata_update(struct mddev *mddev, struct cluster_msg *msg)
529 int got_lock = 0;
530 struct md_cluster_info *cinfo = mddev->cluster_info;
531 mddev->good_device_nr = le32_to_cpu(msg->raid_slot);
533 dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR);
534 wait_event(mddev->thread->wqueue,
535 (got_lock = mddev_trylock(mddev)) ||
536 test_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state));
537 md_reload_sb(mddev, mddev->good_device_nr);
538 if (got_lock)
539 mddev_unlock(mddev);
542 static void process_remove_disk(struct mddev *mddev, struct cluster_msg *msg)
544 struct md_rdev *rdev;
546 rcu_read_lock();
547 rdev = md_find_rdev_nr_rcu(mddev, le32_to_cpu(msg->raid_slot));
548 if (rdev) {
549 set_bit(ClusterRemove, &rdev->flags);
550 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
551 md_wakeup_thread(mddev->thread);
553 else
554 pr_warn("%s: %d Could not find disk(%d) to REMOVE\n",
555 __func__, __LINE__, le32_to_cpu(msg->raid_slot));
556 rcu_read_unlock();
559 static void process_readd_disk(struct mddev *mddev, struct cluster_msg *msg)
561 struct md_rdev *rdev;
563 rcu_read_lock();
564 rdev = md_find_rdev_nr_rcu(mddev, le32_to_cpu(msg->raid_slot));
565 if (rdev && test_bit(Faulty, &rdev->flags))
566 clear_bit(Faulty, &rdev->flags);
567 else
568 pr_warn("%s: %d Could not find disk(%d) which is faulty",
569 __func__, __LINE__, le32_to_cpu(msg->raid_slot));
570 rcu_read_unlock();
573 static int process_recvd_msg(struct mddev *mddev, struct cluster_msg *msg)
575 int ret = 0;
577 if (WARN(mddev->cluster_info->slot_number - 1 == le32_to_cpu(msg->slot),
578 "node %d received it's own msg\n", le32_to_cpu(msg->slot)))
579 return -1;
580 switch (le32_to_cpu(msg->type)) {
581 case METADATA_UPDATED:
582 process_metadata_update(mddev, msg);
583 break;
584 case CHANGE_CAPACITY:
585 set_capacity(mddev->gendisk, mddev->array_sectors);
586 revalidate_disk(mddev->gendisk);
587 break;
588 case RESYNCING:
589 process_suspend_info(mddev, le32_to_cpu(msg->slot),
590 le64_to_cpu(msg->low),
591 le64_to_cpu(msg->high));
592 break;
593 case NEWDISK:
594 process_add_new_disk(mddev, msg);
595 break;
596 case REMOVE:
597 process_remove_disk(mddev, msg);
598 break;
599 case RE_ADD:
600 process_readd_disk(mddev, msg);
601 break;
602 case BITMAP_NEEDS_SYNC:
603 __recover_slot(mddev, le32_to_cpu(msg->slot));
604 break;
605 default:
606 ret = -1;
607 pr_warn("%s:%d Received unknown message from %d\n",
608 __func__, __LINE__, msg->slot);
610 return ret;
614 * thread for receiving message
616 static void recv_daemon(struct md_thread *thread)
618 struct md_cluster_info *cinfo = thread->mddev->cluster_info;
619 struct dlm_lock_resource *ack_lockres = cinfo->ack_lockres;
620 struct dlm_lock_resource *message_lockres = cinfo->message_lockres;
621 struct cluster_msg msg;
622 int ret;
624 mutex_lock(&cinfo->recv_mutex);
625 /*get CR on Message*/
626 if (dlm_lock_sync(message_lockres, DLM_LOCK_CR)) {
627 pr_err("md/raid1:failed to get CR on MESSAGE\n");
628 mutex_unlock(&cinfo->recv_mutex);
629 return;
632 /* read lvb and wake up thread to process this message_lockres */
633 memcpy(&msg, message_lockres->lksb.sb_lvbptr, sizeof(struct cluster_msg));
634 ret = process_recvd_msg(thread->mddev, &msg);
635 if (ret)
636 goto out;
638 /*release CR on ack_lockres*/
639 ret = dlm_unlock_sync(ack_lockres);
640 if (unlikely(ret != 0))
641 pr_info("unlock ack failed return %d\n", ret);
642 /*up-convert to PR on message_lockres*/
643 ret = dlm_lock_sync(message_lockres, DLM_LOCK_PR);
644 if (unlikely(ret != 0))
645 pr_info("lock PR on msg failed return %d\n", ret);
646 /*get CR on ack_lockres again*/
647 ret = dlm_lock_sync(ack_lockres, DLM_LOCK_CR);
648 if (unlikely(ret != 0))
649 pr_info("lock CR on ack failed return %d\n", ret);
650 out:
651 /*release CR on message_lockres*/
652 ret = dlm_unlock_sync(message_lockres);
653 if (unlikely(ret != 0))
654 pr_info("unlock msg failed return %d\n", ret);
655 mutex_unlock(&cinfo->recv_mutex);
658 /* lock_token()
659 * Takes the lock on the TOKEN lock resource so no other
660 * node can communicate while the operation is underway.
662 static int lock_token(struct md_cluster_info *cinfo, bool mddev_locked)
664 int error, set_bit = 0;
665 struct mddev *mddev = cinfo->mddev;
668 * If resync thread run after raid1d thread, then process_metadata_update
669 * could not continue if raid1d held reconfig_mutex (and raid1d is blocked
670 * since another node already got EX on Token and waitting the EX of Ack),
671 * so let resync wake up thread in case flag is set.
673 if (mddev_locked && !test_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
674 &cinfo->state)) {
675 error = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
676 &cinfo->state);
677 WARN_ON_ONCE(error);
678 md_wakeup_thread(mddev->thread);
679 set_bit = 1;
681 error = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
682 if (set_bit)
683 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
685 if (error)
686 pr_err("md-cluster(%s:%d): failed to get EX on TOKEN (%d)\n",
687 __func__, __LINE__, error);
689 /* Lock the receive sequence */
690 mutex_lock(&cinfo->recv_mutex);
691 return error;
694 /* lock_comm()
695 * Sets the MD_CLUSTER_SEND_LOCK bit to lock the send channel.
697 static int lock_comm(struct md_cluster_info *cinfo, bool mddev_locked)
699 wait_event(cinfo->wait,
700 !test_and_set_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state));
702 return lock_token(cinfo, mddev_locked);
705 static void unlock_comm(struct md_cluster_info *cinfo)
707 WARN_ON(cinfo->token_lockres->mode != DLM_LOCK_EX);
708 mutex_unlock(&cinfo->recv_mutex);
709 dlm_unlock_sync(cinfo->token_lockres);
710 clear_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state);
711 wake_up(&cinfo->wait);
714 /* __sendmsg()
715 * This function performs the actual sending of the message. This function is
716 * usually called after performing the encompassing operation
717 * The function:
718 * 1. Grabs the message lockresource in EX mode
719 * 2. Copies the message to the message LVB
720 * 3. Downconverts message lockresource to CW
721 * 4. Upconverts ack lock resource from CR to EX. This forces the BAST on other nodes
722 * and the other nodes read the message. The thread will wait here until all other
723 * nodes have released ack lock resource.
724 * 5. Downconvert ack lockresource to CR
726 static int __sendmsg(struct md_cluster_info *cinfo, struct cluster_msg *cmsg)
728 int error;
729 int slot = cinfo->slot_number - 1;
731 cmsg->slot = cpu_to_le32(slot);
732 /*get EX on Message*/
733 error = dlm_lock_sync(cinfo->message_lockres, DLM_LOCK_EX);
734 if (error) {
735 pr_err("md-cluster: failed to get EX on MESSAGE (%d)\n", error);
736 goto failed_message;
739 memcpy(cinfo->message_lockres->lksb.sb_lvbptr, (void *)cmsg,
740 sizeof(struct cluster_msg));
741 /*down-convert EX to CW on Message*/
742 error = dlm_lock_sync(cinfo->message_lockres, DLM_LOCK_CW);
743 if (error) {
744 pr_err("md-cluster: failed to convert EX to CW on MESSAGE(%d)\n",
745 error);
746 goto failed_ack;
749 /*up-convert CR to EX on Ack*/
750 error = dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_EX);
751 if (error) {
752 pr_err("md-cluster: failed to convert CR to EX on ACK(%d)\n",
753 error);
754 goto failed_ack;
757 /*down-convert EX to CR on Ack*/
758 error = dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_CR);
759 if (error) {
760 pr_err("md-cluster: failed to convert EX to CR on ACK(%d)\n",
761 error);
762 goto failed_ack;
765 failed_ack:
766 error = dlm_unlock_sync(cinfo->message_lockres);
767 if (unlikely(error != 0)) {
768 pr_err("md-cluster: failed convert to NL on MESSAGE(%d)\n",
769 error);
770 /* in case the message can't be released due to some reason */
771 goto failed_ack;
773 failed_message:
774 return error;
777 static int sendmsg(struct md_cluster_info *cinfo, struct cluster_msg *cmsg,
778 bool mddev_locked)
780 int ret;
782 lock_comm(cinfo, mddev_locked);
783 ret = __sendmsg(cinfo, cmsg);
784 unlock_comm(cinfo);
785 return ret;
788 static int gather_all_resync_info(struct mddev *mddev, int total_slots)
790 struct md_cluster_info *cinfo = mddev->cluster_info;
791 int i, ret = 0;
792 struct dlm_lock_resource *bm_lockres;
793 struct suspend_info *s;
794 char str[64];
795 sector_t lo, hi;
798 for (i = 0; i < total_slots; i++) {
799 memset(str, '\0', 64);
800 snprintf(str, 64, "bitmap%04d", i);
801 bm_lockres = lockres_init(mddev, str, NULL, 1);
802 if (!bm_lockres)
803 return -ENOMEM;
804 if (i == (cinfo->slot_number - 1)) {
805 lockres_free(bm_lockres);
806 continue;
809 bm_lockres->flags |= DLM_LKF_NOQUEUE;
810 ret = dlm_lock_sync(bm_lockres, DLM_LOCK_PW);
811 if (ret == -EAGAIN) {
812 s = read_resync_info(mddev, bm_lockres);
813 if (s) {
814 pr_info("%s:%d Resync[%llu..%llu] in progress on %d\n",
815 __func__, __LINE__,
816 (unsigned long long) s->lo,
817 (unsigned long long) s->hi, i);
818 spin_lock_irq(&cinfo->suspend_lock);
819 s->slot = i;
820 list_add(&s->list, &cinfo->suspend_list);
821 spin_unlock_irq(&cinfo->suspend_lock);
823 ret = 0;
824 lockres_free(bm_lockres);
825 continue;
827 if (ret) {
828 lockres_free(bm_lockres);
829 goto out;
832 /* Read the disk bitmap sb and check if it needs recovery */
833 ret = bitmap_copy_from_slot(mddev, i, &lo, &hi, false);
834 if (ret) {
835 pr_warn("md-cluster: Could not gather bitmaps from slot %d", i);
836 lockres_free(bm_lockres);
837 continue;
839 if ((hi > 0) && (lo < mddev->recovery_cp)) {
840 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
841 mddev->recovery_cp = lo;
842 md_check_recovery(mddev);
845 lockres_free(bm_lockres);
847 out:
848 return ret;
851 static int join(struct mddev *mddev, int nodes)
853 struct md_cluster_info *cinfo;
854 int ret, ops_rv;
855 char str[64];
857 cinfo = kzalloc(sizeof(struct md_cluster_info), GFP_KERNEL);
858 if (!cinfo)
859 return -ENOMEM;
861 INIT_LIST_HEAD(&cinfo->suspend_list);
862 spin_lock_init(&cinfo->suspend_lock);
863 init_completion(&cinfo->completion);
864 set_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state);
865 init_waitqueue_head(&cinfo->wait);
866 mutex_init(&cinfo->recv_mutex);
868 mddev->cluster_info = cinfo;
869 cinfo->mddev = mddev;
871 memset(str, 0, 64);
872 sprintf(str, "%pU", mddev->uuid);
873 ret = dlm_new_lockspace(str, mddev->bitmap_info.cluster_name,
874 DLM_LSFL_FS, LVB_SIZE,
875 &md_ls_ops, mddev, &ops_rv, &cinfo->lockspace);
876 if (ret)
877 goto err;
878 wait_for_completion(&cinfo->completion);
879 if (nodes < cinfo->slot_number) {
880 pr_err("md-cluster: Slot allotted(%d) is greater than available slots(%d).",
881 cinfo->slot_number, nodes);
882 ret = -ERANGE;
883 goto err;
885 /* Initiate the communication resources */
886 ret = -ENOMEM;
887 cinfo->recv_thread = md_register_thread(recv_daemon, mddev, "cluster_recv");
888 if (!cinfo->recv_thread) {
889 pr_err("md-cluster: cannot allocate memory for recv_thread!\n");
890 goto err;
892 cinfo->message_lockres = lockres_init(mddev, "message", NULL, 1);
893 if (!cinfo->message_lockres)
894 goto err;
895 cinfo->token_lockres = lockres_init(mddev, "token", NULL, 0);
896 if (!cinfo->token_lockres)
897 goto err;
898 cinfo->no_new_dev_lockres = lockres_init(mddev, "no-new-dev", NULL, 0);
899 if (!cinfo->no_new_dev_lockres)
900 goto err;
902 ret = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
903 if (ret) {
904 ret = -EAGAIN;
905 pr_err("md-cluster: can't join cluster to avoid lock issue\n");
906 goto err;
908 cinfo->ack_lockres = lockres_init(mddev, "ack", ack_bast, 0);
909 if (!cinfo->ack_lockres) {
910 ret = -ENOMEM;
911 goto err;
913 /* get sync CR lock on ACK. */
914 if (dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_CR))
915 pr_err("md-cluster: failed to get a sync CR lock on ACK!(%d)\n",
916 ret);
917 dlm_unlock_sync(cinfo->token_lockres);
918 /* get sync CR lock on no-new-dev. */
919 if (dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR))
920 pr_err("md-cluster: failed to get a sync CR lock on no-new-dev!(%d)\n", ret);
923 pr_info("md-cluster: Joined cluster %s slot %d\n", str, cinfo->slot_number);
924 snprintf(str, 64, "bitmap%04d", cinfo->slot_number - 1);
925 cinfo->bitmap_lockres = lockres_init(mddev, str, NULL, 1);
926 if (!cinfo->bitmap_lockres) {
927 ret = -ENOMEM;
928 goto err;
930 if (dlm_lock_sync(cinfo->bitmap_lockres, DLM_LOCK_PW)) {
931 pr_err("Failed to get bitmap lock\n");
932 ret = -EINVAL;
933 goto err;
936 cinfo->resync_lockres = lockres_init(mddev, "resync", NULL, 0);
937 if (!cinfo->resync_lockres) {
938 ret = -ENOMEM;
939 goto err;
942 return 0;
943 err:
944 set_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
945 md_unregister_thread(&cinfo->recovery_thread);
946 md_unregister_thread(&cinfo->recv_thread);
947 lockres_free(cinfo->message_lockres);
948 lockres_free(cinfo->token_lockres);
949 lockres_free(cinfo->ack_lockres);
950 lockres_free(cinfo->no_new_dev_lockres);
951 lockres_free(cinfo->resync_lockres);
952 lockres_free(cinfo->bitmap_lockres);
953 if (cinfo->lockspace)
954 dlm_release_lockspace(cinfo->lockspace, 2);
955 mddev->cluster_info = NULL;
956 kfree(cinfo);
957 return ret;
960 static void load_bitmaps(struct mddev *mddev, int total_slots)
962 struct md_cluster_info *cinfo = mddev->cluster_info;
964 /* load all the node's bitmap info for resync */
965 if (gather_all_resync_info(mddev, total_slots))
966 pr_err("md-cluster: failed to gather all resyn infos\n");
967 set_bit(MD_CLUSTER_ALREADY_IN_CLUSTER, &cinfo->state);
968 /* wake up recv thread in case something need to be handled */
969 if (test_and_clear_bit(MD_CLUSTER_PENDING_RECV_EVENT, &cinfo->state))
970 md_wakeup_thread(cinfo->recv_thread);
973 static void resync_bitmap(struct mddev *mddev)
975 struct md_cluster_info *cinfo = mddev->cluster_info;
976 struct cluster_msg cmsg = {0};
977 int err;
979 cmsg.type = cpu_to_le32(BITMAP_NEEDS_SYNC);
980 err = sendmsg(cinfo, &cmsg, 1);
981 if (err)
982 pr_err("%s:%d: failed to send BITMAP_NEEDS_SYNC message (%d)\n",
983 __func__, __LINE__, err);
986 static void unlock_all_bitmaps(struct mddev *mddev);
987 static int leave(struct mddev *mddev)
989 struct md_cluster_info *cinfo = mddev->cluster_info;
991 if (!cinfo)
992 return 0;
994 /* BITMAP_NEEDS_SYNC message should be sent when node
995 * is leaving the cluster with dirty bitmap, also we
996 * can only deliver it when dlm connection is available */
997 if (cinfo->slot_number > 0 && mddev->recovery_cp != MaxSector)
998 resync_bitmap(mddev);
1000 set_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
1001 md_unregister_thread(&cinfo->recovery_thread);
1002 md_unregister_thread(&cinfo->recv_thread);
1003 lockres_free(cinfo->message_lockres);
1004 lockres_free(cinfo->token_lockres);
1005 lockres_free(cinfo->ack_lockres);
1006 lockres_free(cinfo->no_new_dev_lockres);
1007 lockres_free(cinfo->resync_lockres);
1008 lockres_free(cinfo->bitmap_lockres);
1009 unlock_all_bitmaps(mddev);
1010 dlm_release_lockspace(cinfo->lockspace, 2);
1011 kfree(cinfo);
1012 return 0;
1015 /* slot_number(): Returns the MD slot number to use
1016 * DLM starts the slot numbers from 1, wheras cluster-md
1017 * wants the number to be from zero, so we deduct one
1019 static int slot_number(struct mddev *mddev)
1021 struct md_cluster_info *cinfo = mddev->cluster_info;
1023 return cinfo->slot_number - 1;
1027 * Check if the communication is already locked, else lock the communication
1028 * channel.
1029 * If it is already locked, token is in EX mode, and hence lock_token()
1030 * should not be called.
1032 static int metadata_update_start(struct mddev *mddev)
1034 struct md_cluster_info *cinfo = mddev->cluster_info;
1035 int ret;
1038 * metadata_update_start is always called with the protection of
1039 * reconfig_mutex, so set WAITING_FOR_TOKEN here.
1041 ret = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
1042 &cinfo->state);
1043 WARN_ON_ONCE(ret);
1044 md_wakeup_thread(mddev->thread);
1046 wait_event(cinfo->wait,
1047 !test_and_set_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state) ||
1048 test_and_clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state));
1050 /* If token is already locked, return 0 */
1051 if (cinfo->token_lockres->mode == DLM_LOCK_EX) {
1052 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
1053 return 0;
1056 ret = lock_token(cinfo, 1);
1057 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
1058 return ret;
1061 static int metadata_update_finish(struct mddev *mddev)
1063 struct md_cluster_info *cinfo = mddev->cluster_info;
1064 struct cluster_msg cmsg;
1065 struct md_rdev *rdev;
1066 int ret = 0;
1067 int raid_slot = -1;
1069 memset(&cmsg, 0, sizeof(cmsg));
1070 cmsg.type = cpu_to_le32(METADATA_UPDATED);
1071 /* Pick up a good active device number to send.
1073 rdev_for_each(rdev, mddev)
1074 if (rdev->raid_disk > -1 && !test_bit(Faulty, &rdev->flags)) {
1075 raid_slot = rdev->desc_nr;
1076 break;
1078 if (raid_slot >= 0) {
1079 cmsg.raid_slot = cpu_to_le32(raid_slot);
1080 ret = __sendmsg(cinfo, &cmsg);
1081 } else
1082 pr_warn("md-cluster: No good device id found to send\n");
1083 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
1084 unlock_comm(cinfo);
1085 return ret;
1088 static void metadata_update_cancel(struct mddev *mddev)
1090 struct md_cluster_info *cinfo = mddev->cluster_info;
1091 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
1092 unlock_comm(cinfo);
1096 * return 0 if all the bitmaps have the same sync_size
1098 int cluster_check_sync_size(struct mddev *mddev)
1100 int i, rv;
1101 bitmap_super_t *sb;
1102 unsigned long my_sync_size, sync_size = 0;
1103 int node_num = mddev->bitmap_info.nodes;
1104 int current_slot = md_cluster_ops->slot_number(mddev);
1105 struct bitmap *bitmap = mddev->bitmap;
1106 char str[64];
1107 struct dlm_lock_resource *bm_lockres;
1109 sb = kmap_atomic(bitmap->storage.sb_page);
1110 my_sync_size = sb->sync_size;
1111 kunmap_atomic(sb);
1113 for (i = 0; i < node_num; i++) {
1114 if (i == current_slot)
1115 continue;
1117 bitmap = get_bitmap_from_slot(mddev, i);
1118 if (IS_ERR(bitmap)) {
1119 pr_err("can't get bitmap from slot %d\n", i);
1120 return -1;
1124 * If we can hold the bitmap lock of one node then
1125 * the slot is not occupied, update the sb.
1127 snprintf(str, 64, "bitmap%04d", i);
1128 bm_lockres = lockres_init(mddev, str, NULL, 1);
1129 if (!bm_lockres) {
1130 pr_err("md-cluster: Cannot initialize %s\n", str);
1131 bitmap_free(bitmap);
1132 return -1;
1134 bm_lockres->flags |= DLM_LKF_NOQUEUE;
1135 rv = dlm_lock_sync(bm_lockres, DLM_LOCK_PW);
1136 if (!rv)
1137 bitmap_update_sb(bitmap);
1138 lockres_free(bm_lockres);
1140 sb = kmap_atomic(bitmap->storage.sb_page);
1141 if (sync_size == 0)
1142 sync_size = sb->sync_size;
1143 else if (sync_size != sb->sync_size) {
1144 kunmap_atomic(sb);
1145 bitmap_free(bitmap);
1146 return -1;
1148 kunmap_atomic(sb);
1149 bitmap_free(bitmap);
1152 return (my_sync_size == sync_size) ? 0 : -1;
1156 * Update the size for cluster raid is a little more complex, we perform it
1157 * by the steps:
1158 * 1. hold token lock and update superblock in initiator node.
1159 * 2. send METADATA_UPDATED msg to other nodes.
1160 * 3. The initiator node continues to check each bitmap's sync_size, if all
1161 * bitmaps have the same value of sync_size, then we can set capacity and
1162 * let other nodes to perform it. If one node can't update sync_size
1163 * accordingly, we need to revert to previous value.
1165 static void update_size(struct mddev *mddev, sector_t old_dev_sectors)
1167 struct md_cluster_info *cinfo = mddev->cluster_info;
1168 struct cluster_msg cmsg;
1169 struct md_rdev *rdev;
1170 int ret = 0;
1171 int raid_slot = -1;
1173 md_update_sb(mddev, 1);
1174 lock_comm(cinfo, 1);
1176 memset(&cmsg, 0, sizeof(cmsg));
1177 cmsg.type = cpu_to_le32(METADATA_UPDATED);
1178 rdev_for_each(rdev, mddev)
1179 if (rdev->raid_disk >= 0 && !test_bit(Faulty, &rdev->flags)) {
1180 raid_slot = rdev->desc_nr;
1181 break;
1183 if (raid_slot >= 0) {
1184 cmsg.raid_slot = cpu_to_le32(raid_slot);
1186 * We can only change capiticy after all the nodes can do it,
1187 * so need to wait after other nodes already received the msg
1188 * and handled the change
1190 ret = __sendmsg(cinfo, &cmsg);
1191 if (ret) {
1192 pr_err("%s:%d: failed to send METADATA_UPDATED msg\n",
1193 __func__, __LINE__);
1194 unlock_comm(cinfo);
1195 return;
1197 } else {
1198 pr_err("md-cluster: No good device id found to send\n");
1199 unlock_comm(cinfo);
1200 return;
1204 * check the sync_size from other node's bitmap, if sync_size
1205 * have already updated in other nodes as expected, send an
1206 * empty metadata msg to permit the change of capacity
1208 if (cluster_check_sync_size(mddev) == 0) {
1209 memset(&cmsg, 0, sizeof(cmsg));
1210 cmsg.type = cpu_to_le32(CHANGE_CAPACITY);
1211 ret = __sendmsg(cinfo, &cmsg);
1212 if (ret)
1213 pr_err("%s:%d: failed to send CHANGE_CAPACITY msg\n",
1214 __func__, __LINE__);
1215 set_capacity(mddev->gendisk, mddev->array_sectors);
1216 revalidate_disk(mddev->gendisk);
1217 } else {
1218 /* revert to previous sectors */
1219 ret = mddev->pers->resize(mddev, old_dev_sectors);
1220 if (!ret)
1221 revalidate_disk(mddev->gendisk);
1222 ret = __sendmsg(cinfo, &cmsg);
1223 if (ret)
1224 pr_err("%s:%d: failed to send METADATA_UPDATED msg\n",
1225 __func__, __LINE__);
1227 unlock_comm(cinfo);
1230 static int resync_start(struct mddev *mddev)
1232 struct md_cluster_info *cinfo = mddev->cluster_info;
1233 return dlm_lock_sync_interruptible(cinfo->resync_lockres, DLM_LOCK_EX, mddev);
1236 static int resync_info_update(struct mddev *mddev, sector_t lo, sector_t hi)
1238 struct md_cluster_info *cinfo = mddev->cluster_info;
1239 struct resync_info ri;
1240 struct cluster_msg cmsg = {0};
1242 /* do not send zero again, if we have sent before */
1243 if (hi == 0) {
1244 memcpy(&ri, cinfo->bitmap_lockres->lksb.sb_lvbptr, sizeof(struct resync_info));
1245 if (le64_to_cpu(ri.hi) == 0)
1246 return 0;
1249 add_resync_info(cinfo->bitmap_lockres, lo, hi);
1250 /* Re-acquire the lock to refresh LVB */
1251 dlm_lock_sync(cinfo->bitmap_lockres, DLM_LOCK_PW);
1252 cmsg.type = cpu_to_le32(RESYNCING);
1253 cmsg.low = cpu_to_le64(lo);
1254 cmsg.high = cpu_to_le64(hi);
1257 * mddev_lock is held if resync_info_update is called from
1258 * resync_finish (md_reap_sync_thread -> resync_finish)
1260 if (lo == 0 && hi == 0)
1261 return sendmsg(cinfo, &cmsg, 1);
1262 else
1263 return sendmsg(cinfo, &cmsg, 0);
1266 static int resync_finish(struct mddev *mddev)
1268 struct md_cluster_info *cinfo = mddev->cluster_info;
1269 dlm_unlock_sync(cinfo->resync_lockres);
1270 return resync_info_update(mddev, 0, 0);
1273 static int area_resyncing(struct mddev *mddev, int direction,
1274 sector_t lo, sector_t hi)
1276 struct md_cluster_info *cinfo = mddev->cluster_info;
1277 int ret = 0;
1278 struct suspend_info *s;
1280 if ((direction == READ) &&
1281 test_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state))
1282 return 1;
1284 spin_lock_irq(&cinfo->suspend_lock);
1285 if (list_empty(&cinfo->suspend_list))
1286 goto out;
1287 list_for_each_entry(s, &cinfo->suspend_list, list)
1288 if (hi > s->lo && lo < s->hi) {
1289 ret = 1;
1290 break;
1292 out:
1293 spin_unlock_irq(&cinfo->suspend_lock);
1294 return ret;
1297 /* add_new_disk() - initiates a disk add
1298 * However, if this fails before writing md_update_sb(),
1299 * add_new_disk_cancel() must be called to release token lock
1301 static int add_new_disk(struct mddev *mddev, struct md_rdev *rdev)
1303 struct md_cluster_info *cinfo = mddev->cluster_info;
1304 struct cluster_msg cmsg;
1305 int ret = 0;
1306 struct mdp_superblock_1 *sb = page_address(rdev->sb_page);
1307 char *uuid = sb->device_uuid;
1309 memset(&cmsg, 0, sizeof(cmsg));
1310 cmsg.type = cpu_to_le32(NEWDISK);
1311 memcpy(cmsg.uuid, uuid, 16);
1312 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
1313 lock_comm(cinfo, 1);
1314 ret = __sendmsg(cinfo, &cmsg);
1315 if (ret) {
1316 unlock_comm(cinfo);
1317 return ret;
1319 cinfo->no_new_dev_lockres->flags |= DLM_LKF_NOQUEUE;
1320 ret = dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_EX);
1321 cinfo->no_new_dev_lockres->flags &= ~DLM_LKF_NOQUEUE;
1322 /* Some node does not "see" the device */
1323 if (ret == -EAGAIN)
1324 ret = -ENOENT;
1325 if (ret)
1326 unlock_comm(cinfo);
1327 else {
1328 dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR);
1329 /* Since MD_CHANGE_DEVS will be set in add_bound_rdev which
1330 * will run soon after add_new_disk, the below path will be
1331 * invoked:
1332 * md_wakeup_thread(mddev->thread)
1333 * -> conf->thread (raid1d)
1334 * -> md_check_recovery -> md_update_sb
1335 * -> metadata_update_start/finish
1336 * MD_CLUSTER_SEND_LOCKED_ALREADY will be cleared eventually.
1338 * For other failure cases, metadata_update_cancel and
1339 * add_new_disk_cancel also clear below bit as well.
1340 * */
1341 set_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
1342 wake_up(&cinfo->wait);
1344 return ret;
1347 static void add_new_disk_cancel(struct mddev *mddev)
1349 struct md_cluster_info *cinfo = mddev->cluster_info;
1350 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
1351 unlock_comm(cinfo);
1354 static int new_disk_ack(struct mddev *mddev, bool ack)
1356 struct md_cluster_info *cinfo = mddev->cluster_info;
1358 if (!test_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state)) {
1359 pr_warn("md-cluster(%s): Spurious cluster confirmation\n", mdname(mddev));
1360 return -EINVAL;
1363 if (ack)
1364 dlm_unlock_sync(cinfo->no_new_dev_lockres);
1365 complete(&cinfo->newdisk_completion);
1366 return 0;
1369 static int remove_disk(struct mddev *mddev, struct md_rdev *rdev)
1371 struct cluster_msg cmsg = {0};
1372 struct md_cluster_info *cinfo = mddev->cluster_info;
1373 cmsg.type = cpu_to_le32(REMOVE);
1374 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
1375 return sendmsg(cinfo, &cmsg, 1);
1378 static int lock_all_bitmaps(struct mddev *mddev)
1380 int slot, my_slot, ret, held = 1, i = 0;
1381 char str[64];
1382 struct md_cluster_info *cinfo = mddev->cluster_info;
1384 cinfo->other_bitmap_lockres = kzalloc((mddev->bitmap_info.nodes - 1) *
1385 sizeof(struct dlm_lock_resource *),
1386 GFP_KERNEL);
1387 if (!cinfo->other_bitmap_lockres) {
1388 pr_err("md: can't alloc mem for other bitmap locks\n");
1389 return 0;
1392 my_slot = slot_number(mddev);
1393 for (slot = 0; slot < mddev->bitmap_info.nodes; slot++) {
1394 if (slot == my_slot)
1395 continue;
1397 memset(str, '\0', 64);
1398 snprintf(str, 64, "bitmap%04d", slot);
1399 cinfo->other_bitmap_lockres[i] = lockres_init(mddev, str, NULL, 1);
1400 if (!cinfo->other_bitmap_lockres[i])
1401 return -ENOMEM;
1403 cinfo->other_bitmap_lockres[i]->flags |= DLM_LKF_NOQUEUE;
1404 ret = dlm_lock_sync(cinfo->other_bitmap_lockres[i], DLM_LOCK_PW);
1405 if (ret)
1406 held = -1;
1407 i++;
1410 return held;
1413 static void unlock_all_bitmaps(struct mddev *mddev)
1415 struct md_cluster_info *cinfo = mddev->cluster_info;
1416 int i;
1418 /* release other node's bitmap lock if they are existed */
1419 if (cinfo->other_bitmap_lockres) {
1420 for (i = 0; i < mddev->bitmap_info.nodes - 1; i++) {
1421 if (cinfo->other_bitmap_lockres[i]) {
1422 lockres_free(cinfo->other_bitmap_lockres[i]);
1425 kfree(cinfo->other_bitmap_lockres);
1429 static int gather_bitmaps(struct md_rdev *rdev)
1431 int sn, err;
1432 sector_t lo, hi;
1433 struct cluster_msg cmsg = {0};
1434 struct mddev *mddev = rdev->mddev;
1435 struct md_cluster_info *cinfo = mddev->cluster_info;
1437 cmsg.type = cpu_to_le32(RE_ADD);
1438 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
1439 err = sendmsg(cinfo, &cmsg, 1);
1440 if (err)
1441 goto out;
1443 for (sn = 0; sn < mddev->bitmap_info.nodes; sn++) {
1444 if (sn == (cinfo->slot_number - 1))
1445 continue;
1446 err = bitmap_copy_from_slot(mddev, sn, &lo, &hi, false);
1447 if (err) {
1448 pr_warn("md-cluster: Could not gather bitmaps from slot %d", sn);
1449 goto out;
1451 if ((hi > 0) && (lo < mddev->recovery_cp))
1452 mddev->recovery_cp = lo;
1454 out:
1455 return err;
1458 static struct md_cluster_operations cluster_ops = {
1459 .join = join,
1460 .leave = leave,
1461 .slot_number = slot_number,
1462 .resync_start = resync_start,
1463 .resync_finish = resync_finish,
1464 .resync_info_update = resync_info_update,
1465 .metadata_update_start = metadata_update_start,
1466 .metadata_update_finish = metadata_update_finish,
1467 .metadata_update_cancel = metadata_update_cancel,
1468 .area_resyncing = area_resyncing,
1469 .add_new_disk = add_new_disk,
1470 .add_new_disk_cancel = add_new_disk_cancel,
1471 .new_disk_ack = new_disk_ack,
1472 .remove_disk = remove_disk,
1473 .load_bitmaps = load_bitmaps,
1474 .gather_bitmaps = gather_bitmaps,
1475 .lock_all_bitmaps = lock_all_bitmaps,
1476 .unlock_all_bitmaps = unlock_all_bitmaps,
1477 .update_size = update_size,
1480 static int __init cluster_init(void)
1482 pr_warn("md-cluster: EXPERIMENTAL. Use with caution\n");
1483 pr_info("Registering Cluster MD functions\n");
1484 register_md_cluster_operations(&cluster_ops, THIS_MODULE);
1485 return 0;
1488 static void cluster_exit(void)
1490 unregister_md_cluster_operations();
1493 module_init(cluster_init);
1494 module_exit(cluster_exit);
1495 MODULE_AUTHOR("SUSE");
1496 MODULE_LICENSE("GPL");
1497 MODULE_DESCRIPTION("Clustering support for MD");