blob: 5cf0a9d29bf04c9846f02c11cb8ca3baee1839e0 [file] [log] [blame]
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -06001/*
2 * Copyright (C) 2015, SUSE
3 *
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.
8 *
9 */
10
11
12#include <linux/module.h>
Guoqing Jiang7bcda712016-08-12 13:42:42 +080013#include <linux/kthread.h>
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -060014#include <linux/dlm.h>
15#include <linux/sched.h>
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -050016#include <linux/raid/md_p.h>
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -060017#include "md.h"
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -050018#include "bitmap.h"
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -050019#include "md-cluster.h"
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -060020
21#define LVB_SIZE 64
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -050022#define NEW_DEV_TIMEOUT 5000
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -060023
24struct 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() */
Guoqing Jiangfccb60a2016-08-12 13:42:41 +080029 wait_queue_head_t sync_locking; /* wait queue for synchronized locking */
30 bool sync_locking_done;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -050031 void (*bast)(void *arg, int mode); /* blocking AST function pointer*/
32 struct mddev *mddev; /* pointing back to mddev. */
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -050033 int mode;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -050034};
35
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -050036struct suspend_info {
37 int slot;
38 sector_t lo;
39 sector_t hi;
40 struct list_head list;
41};
42
43struct resync_info {
44 __le64 lo;
45 __le64 hi;
46};
47
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -060048/* md_cluster_info flags */
49#define MD_CLUSTER_WAITING_FOR_NEWDISK 1
Goldwyn Rodrigues90382ed2015-06-24 09:30:32 -050050#define MD_CLUSTER_SUSPEND_READ_BALANCING 2
Guoqing Jiangeece0752015-07-10 17:01:21 +080051#define MD_CLUSTER_BEGIN_JOIN_CLUSTER 3
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -060052
Guoqing Jiang8b9277c2015-12-21 10:51:00 +110053/* 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.
56 */
57#define MD_CLUSTER_SEND_LOCK 4
Guoqing Jiange19508f2015-12-21 10:51:01 +110058/* 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.
Guoqing Jiang8b9277c2015-12-21 10:51:00 +110064 */
65#define MD_CLUSTER_SEND_LOCKED_ALREADY 5
Guoqing Jiang51e453a2016-05-04 02:17:09 -040066/* 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
Guoqing Jiang0ba95972017-03-01 17:30:29 +080070#define MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD 8
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -060071
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -050072struct md_cluster_info {
Guoqing Jiang0ba95972017-03-01 17:30:29 +080073 struct mddev *mddev; /* the md device which md_cluster_info belongs to */
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -050074 /* dlm lock space and resources for clustered raid. */
75 dlm_lockspace_t *lockspace;
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -050076 int slot_number;
77 struct completion completion;
Guoqing Jiang8b9277c2015-12-21 10:51:00 +110078 struct mutex recv_mutex;
Goldwyn Rodrigues54519c52014-06-06 12:12:32 -050079 struct dlm_lock_resource *bitmap_lockres;
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +110080 struct dlm_lock_resource **other_bitmap_lockres;
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -050081 struct dlm_lock_resource *resync_lockres;
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -050082 struct list_head suspend_list;
83 spinlock_t suspend_lock;
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -050084 struct md_thread *recovery_thread;
85 unsigned long recovery_map;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -050086 /* communication loc resources */
87 struct dlm_lock_resource *ack_lockres;
88 struct dlm_lock_resource *message_lockres;
89 struct dlm_lock_resource *token_lockres;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -050090 struct dlm_lock_resource *no_new_dev_lockres;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -050091 struct md_thread *recv_thread;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -050092 struct completion newdisk_completion;
Guoqing Jiang8b9277c2015-12-21 10:51:00 +110093 wait_queue_head_t wait;
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -060094 unsigned long state;
Guoqing Jiang18c9ff72016-05-02 11:50:12 -040095 /* record the region in RESYNCING message */
96 sector_t sync_low;
97 sector_t sync_hi;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -050098};
99
100enum msg_type {
101 METADATA_UPDATED = 0,
102 RESYNCING,
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500103 NEWDISK,
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500104 REMOVE,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500105 RE_ADD,
Guoqing Jiangdc737d72015-07-10 16:54:04 +0800106 BITMAP_NEEDS_SYNC,
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500107};
108
109struct cluster_msg {
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800110 __le32 type;
111 __le32 slot;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500112 /* TODO: Unionize this for smaller footprint */
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800113 __le64 low;
114 __le64 high;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500115 char uuid[16];
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800116 __le32 raid_slot;
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600117};
118
119static void sync_ast(void *arg)
120{
121 struct dlm_lock_resource *res;
122
NeilBrown2e2a7cd2015-10-19 15:42:18 +1100123 res = arg;
Guoqing Jiangfccb60a2016-08-12 13:42:41 +0800124 res->sync_locking_done = true;
125 wake_up(&res->sync_locking);
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600126}
127
128static int dlm_lock_sync(struct dlm_lock_resource *res, int mode)
129{
130 int ret = 0;
131
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600132 ret = dlm_lock(res->ls, mode, &res->lksb,
133 res->flags, res->name, strlen(res->name),
134 0, sync_ast, res, res->bast);
135 if (ret)
136 return ret;
Guoqing Jiangfccb60a2016-08-12 13:42:41 +0800137 wait_event(res->sync_locking, res->sync_locking_done);
138 res->sync_locking_done = false;
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -0500139 if (res->lksb.sb_status == 0)
140 res->mode = mode;
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600141 return res->lksb.sb_status;
142}
143
144static int dlm_unlock_sync(struct dlm_lock_resource *res)
145{
146 return dlm_lock_sync(res, DLM_LOCK_NL);
147}
148
Guoqing Jiang7bcda712016-08-12 13:42:42 +0800149/*
150 * An variation of dlm_lock_sync, which make lock request could
151 * be interrupted
152 */
153static int dlm_lock_sync_interruptible(struct dlm_lock_resource *res, int mode,
154 struct mddev *mddev)
155{
156 int ret = 0;
157
158 ret = dlm_lock(res->ls, mode, &res->lksb,
159 res->flags, res->name, strlen(res->name),
160 0, sync_ast, res, res->bast);
161 if (ret)
162 return ret;
163
164 wait_event(res->sync_locking, res->sync_locking_done
Guoqing Jiangd6385db2016-08-12 13:42:43 +0800165 || kthread_should_stop()
166 || test_bit(MD_CLOSING, &mddev->flags));
Guoqing Jiang7bcda712016-08-12 13:42:42 +0800167 if (!res->sync_locking_done) {
168 /*
169 * the convert queue contains the lock request when request is
170 * interrupted, and sync_ast could still be run, so need to
171 * cancel the request and reset completion
172 */
173 ret = dlm_unlock(res->ls, res->lksb.sb_lkid, DLM_LKF_CANCEL,
174 &res->lksb, res);
175 res->sync_locking_done = false;
176 if (unlikely(ret != 0))
177 pr_info("failed to cancel previous lock request "
178 "%s return %d\n", res->name, ret);
179 return -EPERM;
180 } else
181 res->sync_locking_done = false;
182 if (res->lksb.sb_status == 0)
183 res->mode = mode;
184 return res->lksb.sb_status;
185}
186
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500187static struct dlm_lock_resource *lockres_init(struct mddev *mddev,
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600188 char *name, void (*bastfn)(void *arg, int mode), int with_lvb)
189{
190 struct dlm_lock_resource *res = NULL;
191 int ret, namelen;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500192 struct md_cluster_info *cinfo = mddev->cluster_info;
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600193
194 res = kzalloc(sizeof(struct dlm_lock_resource), GFP_KERNEL);
195 if (!res)
196 return NULL;
Guoqing Jiangfccb60a2016-08-12 13:42:41 +0800197 init_waitqueue_head(&res->sync_locking);
198 res->sync_locking_done = false;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500199 res->ls = cinfo->lockspace;
200 res->mddev = mddev;
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -0500201 res->mode = DLM_LOCK_IV;
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600202 namelen = strlen(name);
203 res->name = kzalloc(namelen + 1, GFP_KERNEL);
204 if (!res->name) {
205 pr_err("md-cluster: Unable to allocate resource name for resource %s\n", name);
206 goto out_err;
207 }
208 strlcpy(res->name, name, namelen + 1);
209 if (with_lvb) {
210 res->lksb.sb_lvbptr = kzalloc(LVB_SIZE, GFP_KERNEL);
211 if (!res->lksb.sb_lvbptr) {
212 pr_err("md-cluster: Unable to allocate LVB for resource %s\n", name);
213 goto out_err;
214 }
215 res->flags = DLM_LKF_VALBLK;
216 }
217
218 if (bastfn)
219 res->bast = bastfn;
220
221 res->flags |= DLM_LKF_EXPEDITE;
222
223 ret = dlm_lock_sync(res, DLM_LOCK_NL);
224 if (ret) {
225 pr_err("md-cluster: Unable to lock NL on new lock resource %s\n", name);
226 goto out_err;
227 }
228 res->flags &= ~DLM_LKF_EXPEDITE;
229 res->flags |= DLM_LKF_CONVERT;
230
231 return res;
232out_err:
233 kfree(res->lksb.sb_lvbptr);
234 kfree(res->name);
235 kfree(res);
236 return NULL;
237}
238
239static void lockres_free(struct dlm_lock_resource *res)
240{
Guoqing Jiang400cb452016-08-12 13:42:35 +0800241 int ret = 0;
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800242
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600243 if (!res)
244 return;
245
Guoqing Jiang400cb452016-08-12 13:42:35 +0800246 /*
247 * use FORCEUNLOCK flag, so we can unlock even the lock is on the
248 * waiting or convert queue
249 */
250 ret = dlm_unlock(res->ls, res->lksb.sb_lkid, DLM_LKF_FORCEUNLOCK,
251 &res->lksb, res);
252 if (unlikely(ret != 0))
253 pr_err("failed to unlock %s return %d\n", res->name, ret);
254 else
Guoqing Jiangfccb60a2016-08-12 13:42:41 +0800255 wait_event(res->sync_locking, res->sync_locking_done);
Goldwyn Rodrigues47741b72014-03-07 13:49:26 -0600256
257 kfree(res->name);
258 kfree(res->lksb.sb_lvbptr);
259 kfree(res);
260}
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -0600261
NeilBrown30661b42015-10-19 15:44:00 +1100262static void add_resync_info(struct dlm_lock_resource *lockres,
263 sector_t lo, sector_t hi)
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500264{
265 struct resync_info *ri;
266
267 ri = (struct resync_info *)lockres->lksb.sb_lvbptr;
268 ri->lo = cpu_to_le64(lo);
269 ri->hi = cpu_to_le64(hi);
270}
271
272static struct suspend_info *read_resync_info(struct mddev *mddev, struct dlm_lock_resource *lockres)
273{
274 struct resync_info ri;
275 struct suspend_info *s = NULL;
276 sector_t hi = 0;
277
278 dlm_lock_sync(lockres, DLM_LOCK_CR);
279 memcpy(&ri, lockres->lksb.sb_lvbptr, sizeof(struct resync_info));
280 hi = le64_to_cpu(ri.hi);
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800281 if (hi > 0) {
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500282 s = kzalloc(sizeof(struct suspend_info), GFP_KERNEL);
283 if (!s)
284 goto out;
285 s->hi = hi;
286 s->lo = le64_to_cpu(ri.lo);
287 }
288 dlm_unlock_sync(lockres);
289out:
290 return s;
291}
292
kbuild test robot6dc69c92015-02-28 07:04:37 +0800293static void recover_bitmaps(struct md_thread *thread)
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500294{
295 struct mddev *mddev = thread->mddev;
296 struct md_cluster_info *cinfo = mddev->cluster_info;
297 struct dlm_lock_resource *bm_lockres;
298 char str[64];
299 int slot, ret;
300 struct suspend_info *s, *tmp;
301 sector_t lo, hi;
302
303 while (cinfo->recovery_map) {
304 slot = fls64((u64)cinfo->recovery_map) - 1;
305
306 /* Clear suspend_area associated with the bitmap */
307 spin_lock_irq(&cinfo->suspend_lock);
308 list_for_each_entry_safe(s, tmp, &cinfo->suspend_list, list)
309 if (slot == s->slot) {
310 list_del(&s->list);
311 kfree(s);
312 }
313 spin_unlock_irq(&cinfo->suspend_lock);
314
315 snprintf(str, 64, "bitmap%04d", slot);
316 bm_lockres = lockres_init(mddev, str, NULL, 1);
317 if (!bm_lockres) {
318 pr_err("md-cluster: Cannot initialize bitmaps\n");
319 goto clear_bit;
320 }
321
Guoqing Jiang7bcda712016-08-12 13:42:42 +0800322 ret = dlm_lock_sync_interruptible(bm_lockres, DLM_LOCK_PW, mddev);
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500323 if (ret) {
324 pr_err("md-cluster: Could not DLM lock %s: %d\n",
325 str, ret);
326 goto clear_bit;
327 }
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500328 ret = bitmap_copy_from_slot(mddev, slot, &lo, &hi, true);
Goldwyn Rodrigues4b26a082014-06-07 00:52:29 -0500329 if (ret) {
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500330 pr_err("md-cluster: Could not copy data from bitmap %d\n", slot);
Guoqing Jiange3f924d2016-08-12 13:42:36 +0800331 goto clear_bit;
Goldwyn Rodrigues4b26a082014-06-07 00:52:29 -0500332 }
333 if (hi > 0) {
Goldwyn Rodrigues4b26a082014-06-07 00:52:29 -0500334 if (lo < mddev->recovery_cp)
335 mddev->recovery_cp = lo;
Guoqing Jiangeb315cd2016-05-02 11:33:10 -0400336 /* wake up thread to continue resync in case resync
337 * is not finished */
338 if (mddev->recovery_cp != MaxSector) {
339 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
340 md_wakeup_thread(mddev->thread);
341 }
Goldwyn Rodrigues4b26a082014-06-07 00:52:29 -0500342 }
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500343clear_bit:
Shaohua Li4ac7a652016-01-22 15:54:42 -0800344 lockres_free(bm_lockres);
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500345 clear_bit(slot, &cinfo->recovery_map);
346 }
347}
348
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500349static void recover_prep(void *arg)
350{
Goldwyn Rodrigues90382ed2015-06-24 09:30:32 -0500351 struct mddev *mddev = arg;
352 struct md_cluster_info *cinfo = mddev->cluster_info;
353 set_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500354}
355
Guoqing Jiang05cd0e52015-07-10 16:54:03 +0800356static void __recover_slot(struct mddev *mddev, int slot)
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500357{
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500358 struct md_cluster_info *cinfo = mddev->cluster_info;
359
Guoqing Jiang05cd0e52015-07-10 16:54:03 +0800360 set_bit(slot, &cinfo->recovery_map);
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500361 if (!cinfo->recovery_thread) {
362 cinfo->recovery_thread = md_register_thread(recover_bitmaps,
363 mddev, "recover");
364 if (!cinfo->recovery_thread) {
365 pr_warn("md-cluster: Could not create recovery thread\n");
366 return;
367 }
368 }
369 md_wakeup_thread(cinfo->recovery_thread);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500370}
371
Guoqing Jiang05cd0e52015-07-10 16:54:03 +0800372static void recover_slot(void *arg, struct dlm_slot *slot)
373{
374 struct mddev *mddev = arg;
375 struct md_cluster_info *cinfo = mddev->cluster_info;
376
377 pr_info("md-cluster: %s Node %d/%d down. My slot: %d. Initiating recovery.\n",
378 mddev->bitmap_info.cluster_name,
379 slot->nodeid, slot->slot,
380 cinfo->slot_number);
381 /* deduct one since dlm slot starts from one while the num of
382 * cluster-md begins with 0 */
383 __recover_slot(mddev, slot->slot - 1);
384}
385
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500386static void recover_done(void *arg, struct dlm_slot *slots,
387 int num_slots, int our_slot,
388 uint32_t generation)
389{
390 struct mddev *mddev = arg;
391 struct md_cluster_info *cinfo = mddev->cluster_info;
392
393 cinfo->slot_number = our_slot;
Guoqing Jiangeece0752015-07-10 17:01:21 +0800394 /* completion is only need to be complete when node join cluster,
395 * it doesn't need to run during another node's failure */
396 if (test_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state)) {
397 complete(&cinfo->completion);
398 clear_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state);
399 }
Goldwyn Rodrigues90382ed2015-06-24 09:30:32 -0500400 clear_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500401}
402
Guoqing Jiangeece0752015-07-10 17:01:21 +0800403/* the ops is called when node join the cluster, and do lock recovery
404 * if node failure occurs */
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500405static const struct dlm_lockspace_ops md_ls_ops = {
406 .recover_prep = recover_prep,
407 .recover_slot = recover_slot,
408 .recover_done = recover_done,
409};
410
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500411/*
412 * The BAST function for the ack lock resource
413 * This function wakes up the receive thread in
414 * order to receive and process the message.
415 */
416static void ack_bast(void *arg, int mode)
417{
NeilBrown2e2a7cd2015-10-19 15:42:18 +1100418 struct dlm_lock_resource *res = arg;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500419 struct md_cluster_info *cinfo = res->mddev->cluster_info;
420
Guoqing Jiang51e453a2016-05-04 02:17:09 -0400421 if (mode == DLM_LOCK_EX) {
422 if (test_bit(MD_CLUSTER_ALREADY_IN_CLUSTER, &cinfo->state))
423 md_wakeup_thread(cinfo->recv_thread);
424 else
425 set_bit(MD_CLUSTER_PENDING_RECV_EVENT, &cinfo->state);
426 }
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500427}
428
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500429static void __remove_suspend_info(struct md_cluster_info *cinfo, int slot)
430{
431 struct suspend_info *s, *tmp;
432
433 list_for_each_entry_safe(s, tmp, &cinfo->suspend_list, list)
434 if (slot == s->slot) {
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500435 list_del(&s->list);
436 kfree(s);
437 break;
438 }
439}
440
Goldwyn Rodriguesb8ca8462015-10-09 11:27:01 -0500441static void remove_suspend_info(struct mddev *mddev, int slot)
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500442{
Goldwyn Rodriguesb8ca8462015-10-09 11:27:01 -0500443 struct md_cluster_info *cinfo = mddev->cluster_info;
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500444 spin_lock_irq(&cinfo->suspend_lock);
445 __remove_suspend_info(cinfo, slot);
446 spin_unlock_irq(&cinfo->suspend_lock);
Goldwyn Rodriguesb8ca8462015-10-09 11:27:01 -0500447 mddev->pers->quiesce(mddev, 2);
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500448}
449
450
Goldwyn Rodrigues9ed38ff52015-08-14 12:19:40 -0500451static void process_suspend_info(struct mddev *mddev,
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500452 int slot, sector_t lo, sector_t hi)
453{
Goldwyn Rodrigues9ed38ff52015-08-14 12:19:40 -0500454 struct md_cluster_info *cinfo = mddev->cluster_info;
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500455 struct suspend_info *s;
456
457 if (!hi) {
Goldwyn Rodriguesb8ca8462015-10-09 11:27:01 -0500458 remove_suspend_info(mddev, slot);
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -0500459 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
460 md_wakeup_thread(mddev->thread);
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500461 return;
462 }
Guoqing Jiang18c9ff72016-05-02 11:50:12 -0400463
464 /*
465 * The bitmaps are not same for different nodes
466 * if RESYNCING is happening in one node, then
467 * the node which received the RESYNCING message
468 * probably will perform resync with the region
469 * [lo, hi] again, so we could reduce resync time
470 * a lot if we can ensure that the bitmaps among
471 * different nodes are match up well.
472 *
473 * sync_low/hi is used to record the region which
474 * arrived in the previous RESYNCING message,
475 *
476 * Call bitmap_sync_with_cluster to clear
477 * NEEDED_MASK and set RESYNC_MASK since
478 * resync thread is running in another node,
479 * so we don't need to do the resync again
480 * with the same section */
481 bitmap_sync_with_cluster(mddev, cinfo->sync_low,
482 cinfo->sync_hi,
483 lo, hi);
484 cinfo->sync_low = lo;
485 cinfo->sync_hi = hi;
486
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500487 s = kzalloc(sizeof(struct suspend_info), GFP_KERNEL);
488 if (!s)
489 return;
490 s->slot = slot;
491 s->lo = lo;
492 s->hi = hi;
Goldwyn Rodrigues9ed38ff52015-08-14 12:19:40 -0500493 mddev->pers->quiesce(mddev, 1);
494 mddev->pers->quiesce(mddev, 0);
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500495 spin_lock_irq(&cinfo->suspend_lock);
496 /* Remove existing entry (if exists) before adding */
497 __remove_suspend_info(cinfo, slot);
498 list_add(&s->list, &cinfo->suspend_list);
499 spin_unlock_irq(&cinfo->suspend_lock);
Goldwyn Rodriguesb8ca8462015-10-09 11:27:01 -0500500 mddev->pers->quiesce(mddev, 2);
Goldwyn Rodriguese59721c2014-06-07 02:30:30 -0500501}
502
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500503static void process_add_new_disk(struct mddev *mddev, struct cluster_msg *cmsg)
504{
505 char disk_uuid[64];
506 struct md_cluster_info *cinfo = mddev->cluster_info;
507 char event_name[] = "EVENT=ADD_DEVICE";
508 char raid_slot[16];
509 char *envp[] = {event_name, disk_uuid, raid_slot, NULL};
510 int len;
511
512 len = snprintf(disk_uuid, 64, "DEVICE_UUID=");
Guoqing Jiangb89f7042015-07-10 16:54:02 +0800513 sprintf(disk_uuid + len, "%pU", cmsg->uuid);
Guoqing Jiangfaeff832015-10-12 17:21:21 +0800514 snprintf(raid_slot, 16, "RAID_DISK=%d", le32_to_cpu(cmsg->raid_slot));
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500515 pr_info("%s:%d Sending kobject change with %s and %s\n", __func__, __LINE__, disk_uuid, raid_slot);
516 init_completion(&cinfo->newdisk_completion);
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -0600517 set_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500518 kobject_uevent_env(&disk_to_dev(mddev->gendisk)->kobj, KOBJ_CHANGE, envp);
519 wait_for_completion_timeout(&cinfo->newdisk_completion,
520 NEW_DEV_TIMEOUT);
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -0600521 clear_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500522}
523
524
525static void process_metadata_update(struct mddev *mddev, struct cluster_msg *msg)
526{
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800527 int got_lock = 0;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500528 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiang15858fa2015-12-21 10:51:00 +1100529 mddev->good_device_nr = le32_to_cpu(msg->raid_slot);
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800530
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500531 dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR);
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800532 wait_event(mddev->thread->wqueue,
533 (got_lock = mddev_trylock(mddev)) ||
534 test_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state));
535 md_reload_sb(mddev, mddev->good_device_nr);
536 if (got_lock)
537 mddev_unlock(mddev);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500538}
539
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500540static void process_remove_disk(struct mddev *mddev, struct cluster_msg *msg)
541{
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800542 struct md_rdev *rdev;
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500543
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800544 rcu_read_lock();
545 rdev = md_find_rdev_nr_rcu(mddev, le32_to_cpu(msg->raid_slot));
Guoqing Jiang659b2542015-12-21 10:50:59 +1100546 if (rdev) {
547 set_bit(ClusterRemove, &rdev->flags);
548 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
549 md_wakeup_thread(mddev->thread);
550 }
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500551 else
Guoqing Jiangfaeff832015-10-12 17:21:21 +0800552 pr_warn("%s: %d Could not find disk(%d) to REMOVE\n",
553 __func__, __LINE__, le32_to_cpu(msg->raid_slot));
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800554 rcu_read_unlock();
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500555}
556
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500557static void process_readd_disk(struct mddev *mddev, struct cluster_msg *msg)
558{
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800559 struct md_rdev *rdev;
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500560
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800561 rcu_read_lock();
562 rdev = md_find_rdev_nr_rcu(mddev, le32_to_cpu(msg->raid_slot));
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500563 if (rdev && test_bit(Faulty, &rdev->flags))
564 clear_bit(Faulty, &rdev->flags);
565 else
Guoqing Jiangfaeff832015-10-12 17:21:21 +0800566 pr_warn("%s: %d Could not find disk(%d) which is faulty",
567 __func__, __LINE__, le32_to_cpu(msg->raid_slot));
Guoqing Jiang5f0aa212016-08-12 13:42:39 +0800568 rcu_read_unlock();
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500569}
570
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400571static int process_recvd_msg(struct mddev *mddev, struct cluster_msg *msg)
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500572{
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400573 int ret = 0;
574
Guoqing Jiang256f5b22015-10-12 17:21:23 +0800575 if (WARN(mddev->cluster_info->slot_number - 1 == le32_to_cpu(msg->slot),
576 "node %d received it's own msg\n", le32_to_cpu(msg->slot)))
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400577 return -1;
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800578 switch (le32_to_cpu(msg->type)) {
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500579 case METADATA_UPDATED:
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500580 process_metadata_update(mddev, msg);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500581 break;
582 case RESYNCING:
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800583 process_suspend_info(mddev, le32_to_cpu(msg->slot),
584 le64_to_cpu(msg->low),
585 le64_to_cpu(msg->high));
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500586 break;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500587 case NEWDISK:
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500588 process_add_new_disk(mddev, msg);
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500589 break;
590 case REMOVE:
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500591 process_remove_disk(mddev, msg);
592 break;
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500593 case RE_ADD:
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -0500594 process_readd_disk(mddev, msg);
595 break;
Guoqing Jiangdc737d72015-07-10 16:54:04 +0800596 case BITMAP_NEEDS_SYNC:
Guoqing Jiangcf97a342015-10-16 15:40:22 +0800597 __recover_slot(mddev, le32_to_cpu(msg->slot));
Guoqing Jiangdc737d72015-07-10 16:54:04 +0800598 break;
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500599 default:
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400600 ret = -1;
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -0500601 pr_warn("%s:%d Received unknown message from %d\n",
602 __func__, __LINE__, msg->slot);
kbuild test robot09dd1af2015-02-28 09:16:08 +0800603 }
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400604 return ret;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500605}
606
607/*
608 * thread for receiving message
609 */
610static void recv_daemon(struct md_thread *thread)
611{
612 struct md_cluster_info *cinfo = thread->mddev->cluster_info;
613 struct dlm_lock_resource *ack_lockres = cinfo->ack_lockres;
614 struct dlm_lock_resource *message_lockres = cinfo->message_lockres;
615 struct cluster_msg msg;
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800616 int ret;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500617
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100618 mutex_lock(&cinfo->recv_mutex);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500619 /*get CR on Message*/
620 if (dlm_lock_sync(message_lockres, DLM_LOCK_CR)) {
621 pr_err("md/raid1:failed to get CR on MESSAGE\n");
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100622 mutex_unlock(&cinfo->recv_mutex);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500623 return;
624 }
625
626 /* read lvb and wake up thread to process this message_lockres */
627 memcpy(&msg, message_lockres->lksb.sb_lvbptr, sizeof(struct cluster_msg));
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400628 ret = process_recvd_msg(thread->mddev, &msg);
629 if (ret)
630 goto out;
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500631
632 /*release CR on ack_lockres*/
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800633 ret = dlm_unlock_sync(ack_lockres);
634 if (unlikely(ret != 0))
635 pr_info("unlock ack failed return %d\n", ret);
Guoqing Jiang66099bb2015-07-10 17:01:15 +0800636 /*up-convert to PR on message_lockres*/
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800637 ret = dlm_lock_sync(message_lockres, DLM_LOCK_PR);
638 if (unlikely(ret != 0))
639 pr_info("lock PR on msg failed return %d\n", ret);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500640 /*get CR on ack_lockres again*/
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800641 ret = dlm_lock_sync(ack_lockres, DLM_LOCK_CR);
642 if (unlikely(ret != 0))
643 pr_info("lock CR on ack failed return %d\n", ret);
Guoqing Jiang1fa9a1a2016-05-03 22:22:15 -0400644out:
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500645 /*release CR on message_lockres*/
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800646 ret = dlm_unlock_sync(message_lockres);
647 if (unlikely(ret != 0))
648 pr_info("unlock msg failed return %d\n", ret);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100649 mutex_unlock(&cinfo->recv_mutex);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500650}
651
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100652/* lock_token()
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500653 * Takes the lock on the TOKEN lock resource so no other
654 * node can communicate while the operation is underway.
655 */
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800656static int lock_token(struct md_cluster_info *cinfo, bool mddev_locked)
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500657{
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800658 int error, set_bit = 0;
659 struct mddev *mddev = cinfo->mddev;
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500660
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800661 /*
662 * If resync thread run after raid1d thread, then process_metadata_update
663 * could not continue if raid1d held reconfig_mutex (and raid1d is blocked
664 * since another node already got EX on Token and waitting the EX of Ack),
665 * so let resync wake up thread in case flag is set.
666 */
667 if (mddev_locked && !test_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
668 &cinfo->state)) {
669 error = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
670 &cinfo->state);
671 WARN_ON_ONCE(error);
672 md_wakeup_thread(mddev->thread);
673 set_bit = 1;
674 }
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500675 error = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800676 if (set_bit)
677 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
678
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500679 if (error)
680 pr_err("md-cluster(%s:%d): failed to get EX on TOKEN (%d)\n",
681 __func__, __LINE__, error);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100682
683 /* Lock the receive sequence */
684 mutex_lock(&cinfo->recv_mutex);
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500685 return error;
686}
687
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100688/* lock_comm()
689 * Sets the MD_CLUSTER_SEND_LOCK bit to lock the send channel.
690 */
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800691static int lock_comm(struct md_cluster_info *cinfo, bool mddev_locked)
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100692{
693 wait_event(cinfo->wait,
694 !test_and_set_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state));
695
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800696 return lock_token(cinfo, mddev_locked);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100697}
698
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500699static void unlock_comm(struct md_cluster_info *cinfo)
700{
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -0500701 WARN_ON(cinfo->token_lockres->mode != DLM_LOCK_EX);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100702 mutex_unlock(&cinfo->recv_mutex);
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500703 dlm_unlock_sync(cinfo->token_lockres);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100704 clear_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state);
705 wake_up(&cinfo->wait);
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500706}
707
708/* __sendmsg()
709 * This function performs the actual sending of the message. This function is
710 * usually called after performing the encompassing operation
711 * The function:
712 * 1. Grabs the message lockresource in EX mode
713 * 2. Copies the message to the message LVB
Guoqing Jiang66099bb2015-07-10 17:01:15 +0800714 * 3. Downconverts message lockresource to CW
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500715 * 4. Upconverts ack lock resource from CR to EX. This forces the BAST on other nodes
716 * and the other nodes read the message. The thread will wait here until all other
717 * nodes have released ack lock resource.
718 * 5. Downconvert ack lockresource to CR
719 */
720static int __sendmsg(struct md_cluster_info *cinfo, struct cluster_msg *cmsg)
721{
722 int error;
723 int slot = cinfo->slot_number - 1;
724
725 cmsg->slot = cpu_to_le32(slot);
726 /*get EX on Message*/
727 error = dlm_lock_sync(cinfo->message_lockres, DLM_LOCK_EX);
728 if (error) {
729 pr_err("md-cluster: failed to get EX on MESSAGE (%d)\n", error);
730 goto failed_message;
731 }
732
733 memcpy(cinfo->message_lockres->lksb.sb_lvbptr, (void *)cmsg,
734 sizeof(struct cluster_msg));
Guoqing Jiang66099bb2015-07-10 17:01:15 +0800735 /*down-convert EX to CW on Message*/
736 error = dlm_lock_sync(cinfo->message_lockres, DLM_LOCK_CW);
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500737 if (error) {
Guoqing Jiang66099bb2015-07-10 17:01:15 +0800738 pr_err("md-cluster: failed to convert EX to CW on MESSAGE(%d)\n",
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500739 error);
Guoqing Jiang66099bb2015-07-10 17:01:15 +0800740 goto failed_ack;
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500741 }
742
743 /*up-convert CR to EX on Ack*/
744 error = dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_EX);
745 if (error) {
746 pr_err("md-cluster: failed to convert CR to EX on ACK(%d)\n",
747 error);
748 goto failed_ack;
749 }
750
751 /*down-convert EX to CR on Ack*/
752 error = dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_CR);
753 if (error) {
754 pr_err("md-cluster: failed to convert EX to CR on ACK(%d)\n",
755 error);
756 goto failed_ack;
757 }
758
759failed_ack:
Guoqing Jiangb5ef5672015-07-10 17:01:17 +0800760 error = dlm_unlock_sync(cinfo->message_lockres);
761 if (unlikely(error != 0)) {
762 pr_err("md-cluster: failed convert to NL on MESSAGE(%d)\n",
763 error);
764 /* in case the message can't be released due to some reason */
765 goto failed_ack;
766 }
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500767failed_message:
768 return error;
769}
770
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800771static int sendmsg(struct md_cluster_info *cinfo, struct cluster_msg *cmsg,
772 bool mddev_locked)
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500773{
774 int ret;
775
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800776 lock_comm(cinfo, mddev_locked);
Goldwyn Rodrigues601b5152014-06-07 01:28:53 -0500777 ret = __sendmsg(cinfo, cmsg);
778 unlock_comm(cinfo);
779 return ret;
780}
781
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500782static int gather_all_resync_info(struct mddev *mddev, int total_slots)
783{
784 struct md_cluster_info *cinfo = mddev->cluster_info;
785 int i, ret = 0;
786 struct dlm_lock_resource *bm_lockres;
787 struct suspend_info *s;
788 char str[64];
Guoqing Jiangabb9b222015-07-10 17:01:22 +0800789 sector_t lo, hi;
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500790
791
792 for (i = 0; i < total_slots; i++) {
793 memset(str, '\0', 64);
794 snprintf(str, 64, "bitmap%04d", i);
795 bm_lockres = lockres_init(mddev, str, NULL, 1);
796 if (!bm_lockres)
797 return -ENOMEM;
Shaohua Li4ac7a652016-01-22 15:54:42 -0800798 if (i == (cinfo->slot_number - 1)) {
799 lockres_free(bm_lockres);
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500800 continue;
Shaohua Li4ac7a652016-01-22 15:54:42 -0800801 }
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500802
803 bm_lockres->flags |= DLM_LKF_NOQUEUE;
804 ret = dlm_lock_sync(bm_lockres, DLM_LOCK_PW);
805 if (ret == -EAGAIN) {
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500806 s = read_resync_info(mddev, bm_lockres);
807 if (s) {
808 pr_info("%s:%d Resync[%llu..%llu] in progress on %d\n",
809 __func__, __LINE__,
810 (unsigned long long) s->lo,
811 (unsigned long long) s->hi, i);
812 spin_lock_irq(&cinfo->suspend_lock);
813 s->slot = i;
814 list_add(&s->list, &cinfo->suspend_list);
815 spin_unlock_irq(&cinfo->suspend_lock);
816 }
817 ret = 0;
818 lockres_free(bm_lockres);
819 continue;
820 }
Guoqing Jiang6e6d9f22015-07-10 17:01:20 +0800821 if (ret) {
822 lockres_free(bm_lockres);
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500823 goto out;
Guoqing Jiang6e6d9f22015-07-10 17:01:20 +0800824 }
Guoqing Jiangabb9b222015-07-10 17:01:22 +0800825
826 /* Read the disk bitmap sb and check if it needs recovery */
827 ret = bitmap_copy_from_slot(mddev, i, &lo, &hi, false);
828 if (ret) {
829 pr_warn("md-cluster: Could not gather bitmaps from slot %d", i);
830 lockres_free(bm_lockres);
831 continue;
832 }
833 if ((hi > 0) && (lo < mddev->recovery_cp)) {
834 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
835 mddev->recovery_cp = lo;
836 md_check_recovery(mddev);
837 }
838
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500839 lockres_free(bm_lockres);
840 }
841out:
842 return ret;
843}
844
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -0500845static int join(struct mddev *mddev, int nodes)
846{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500847 struct md_cluster_info *cinfo;
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500848 int ret, ops_rv;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500849 char str[64];
850
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500851 cinfo = kzalloc(sizeof(struct md_cluster_info), GFP_KERNEL);
852 if (!cinfo)
853 return -ENOMEM;
854
Guoqing Jiang9e3072e2015-07-10 17:01:18 +0800855 INIT_LIST_HEAD(&cinfo->suspend_list);
856 spin_lock_init(&cinfo->suspend_lock);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500857 init_completion(&cinfo->completion);
Guoqing Jiangeece0752015-07-10 17:01:21 +0800858 set_bit(MD_CLUSTER_BEGIN_JOIN_CLUSTER, &cinfo->state);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +1100859 init_waitqueue_head(&cinfo->wait);
860 mutex_init(&cinfo->recv_mutex);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500861
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500862 mddev->cluster_info = cinfo;
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800863 cinfo->mddev = mddev;
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500864
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500865 memset(str, 0, 64);
Guoqing Jiangb89f7042015-07-10 16:54:02 +0800866 sprintf(str, "%pU", mddev->uuid);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500867 ret = dlm_new_lockspace(str, mddev->bitmap_info.cluster_name,
868 DLM_LSFL_FS, LVB_SIZE,
869 &md_ls_ops, mddev, &ops_rv, &cinfo->lockspace);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500870 if (ret)
871 goto err;
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500872 wait_for_completion(&cinfo->completion);
Guoqing Jiang8c58f022015-04-21 11:25:52 -0500873 if (nodes < cinfo->slot_number) {
874 pr_err("md-cluster: Slot allotted(%d) is greater than available slots(%d).",
875 cinfo->slot_number, nodes);
Goldwyn Rodriguesb97e92572014-06-06 11:50:56 -0500876 ret = -ERANGE;
877 goto err;
878 }
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500879 /* Initiate the communication resources */
880 ret = -ENOMEM;
881 cinfo->recv_thread = md_register_thread(recv_daemon, mddev, "cluster_recv");
882 if (!cinfo->recv_thread) {
883 pr_err("md-cluster: cannot allocate memory for recv_thread!\n");
884 goto err;
885 }
886 cinfo->message_lockres = lockres_init(mddev, "message", NULL, 1);
887 if (!cinfo->message_lockres)
888 goto err;
889 cinfo->token_lockres = lockres_init(mddev, "token", NULL, 0);
890 if (!cinfo->token_lockres)
891 goto err;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500892 cinfo->no_new_dev_lockres = lockres_init(mddev, "no-new-dev", NULL, 0);
893 if (!cinfo->no_new_dev_lockres)
894 goto err;
895
Guoqing Jiang15352122016-05-02 11:33:12 -0400896 ret = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
897 if (ret) {
898 ret = -EAGAIN;
899 pr_err("md-cluster: can't join cluster to avoid lock issue\n");
900 goto err;
901 }
902 cinfo->ack_lockres = lockres_init(mddev, "ack", ack_bast, 0);
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000903 if (!cinfo->ack_lockres) {
904 ret = -ENOMEM;
Guoqing Jiang15352122016-05-02 11:33:12 -0400905 goto err;
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000906 }
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500907 /* get sync CR lock on ACK. */
908 if (dlm_lock_sync(cinfo->ack_lockres, DLM_LOCK_CR))
909 pr_err("md-cluster: failed to get a sync CR lock on ACK!(%d)\n",
910 ret);
Guoqing Jiang15352122016-05-02 11:33:12 -0400911 dlm_unlock_sync(cinfo->token_lockres);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500912 /* get sync CR lock on no-new-dev. */
913 if (dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR))
914 pr_err("md-cluster: failed to get a sync CR lock on no-new-dev!(%d)\n", ret);
915
Goldwyn Rodrigues54519c52014-06-06 12:12:32 -0500916
917 pr_info("md-cluster: Joined cluster %s slot %d\n", str, cinfo->slot_number);
918 snprintf(str, 64, "bitmap%04d", cinfo->slot_number - 1);
919 cinfo->bitmap_lockres = lockres_init(mddev, str, NULL, 1);
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000920 if (!cinfo->bitmap_lockres) {
921 ret = -ENOMEM;
Goldwyn Rodrigues54519c52014-06-06 12:12:32 -0500922 goto err;
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000923 }
Goldwyn Rodrigues54519c52014-06-06 12:12:32 -0500924 if (dlm_lock_sync(cinfo->bitmap_lockres, DLM_LOCK_PW)) {
925 pr_err("Failed to get bitmap lock\n");
926 ret = -EINVAL;
927 goto err;
928 }
929
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -0500930 cinfo->resync_lockres = lockres_init(mddev, "resync", NULL, 0);
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000931 if (!cinfo->resync_lockres) {
932 ret = -ENOMEM;
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -0500933 goto err;
Wei Yongjun0f6187d2016-08-21 14:42:25 +0000934 }
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -0500935
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -0500936 return 0;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500937err:
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800938 set_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
Guoqing Jiang5b0fb332016-05-02 11:33:11 -0400939 md_unregister_thread(&cinfo->recovery_thread);
940 md_unregister_thread(&cinfo->recv_thread);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500941 lockres_free(cinfo->message_lockres);
942 lockres_free(cinfo->token_lockres);
943 lockres_free(cinfo->ack_lockres);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -0500944 lockres_free(cinfo->no_new_dev_lockres);
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -0500945 lockres_free(cinfo->resync_lockres);
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -0500946 lockres_free(cinfo->bitmap_lockres);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500947 if (cinfo->lockspace)
948 dlm_release_lockspace(cinfo->lockspace, 2);
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -0500949 mddev->cluster_info = NULL;
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500950 kfree(cinfo);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500951 return ret;
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -0500952}
953
Guoqing Jiang51e453a2016-05-04 02:17:09 -0400954static void load_bitmaps(struct mddev *mddev, int total_slots)
955{
956 struct md_cluster_info *cinfo = mddev->cluster_info;
957
958 /* load all the node's bitmap info for resync */
959 if (gather_all_resync_info(mddev, total_slots))
960 pr_err("md-cluster: failed to gather all resyn infos\n");
961 set_bit(MD_CLUSTER_ALREADY_IN_CLUSTER, &cinfo->state);
962 /* wake up recv thread in case something need to be handled */
963 if (test_and_clear_bit(MD_CLUSTER_PENDING_RECV_EVENT, &cinfo->state))
964 md_wakeup_thread(cinfo->recv_thread);
965}
966
Guoqing Jiang09995412015-10-01 00:09:18 +0800967static void resync_bitmap(struct mddev *mddev)
968{
969 struct md_cluster_info *cinfo = mddev->cluster_info;
970 struct cluster_msg cmsg = {0};
971 int err;
972
973 cmsg.type = cpu_to_le32(BITMAP_NEEDS_SYNC);
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800974 err = sendmsg(cinfo, &cmsg, 1);
Guoqing Jiang09995412015-10-01 00:09:18 +0800975 if (err)
976 pr_err("%s:%d: failed to send BITMAP_NEEDS_SYNC message (%d)\n",
977 __func__, __LINE__, err);
978}
979
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +1100980static void unlock_all_bitmaps(struct mddev *mddev);
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -0500981static int leave(struct mddev *mddev)
982{
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -0500983 struct md_cluster_info *cinfo = mddev->cluster_info;
984
985 if (!cinfo)
986 return 0;
Guoqing Jiang09995412015-10-01 00:09:18 +0800987
988 /* BITMAP_NEEDS_SYNC message should be sent when node
989 * is leaving the cluster with dirty bitmap, also we
990 * can only deliver it when dlm connection is available */
991 if (cinfo->slot_number > 0 && mddev->recovery_cp != MaxSector)
992 resync_bitmap(mddev);
993
Guoqing Jiang0ba95972017-03-01 17:30:29 +0800994 set_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
Goldwyn Rodriguese94987d2014-06-07 00:45:22 -0500995 md_unregister_thread(&cinfo->recovery_thread);
Goldwyn Rodrigues46646802014-06-07 01:08:29 -0500996 md_unregister_thread(&cinfo->recv_thread);
997 lockres_free(cinfo->message_lockres);
998 lockres_free(cinfo->token_lockres);
999 lockres_free(cinfo->ack_lockres);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001000 lockres_free(cinfo->no_new_dev_lockres);
Shaohua Li4ac7a652016-01-22 15:54:42 -08001001 lockres_free(cinfo->resync_lockres);
Goldwyn Rodrigues54519c52014-06-06 12:12:32 -05001002 lockres_free(cinfo->bitmap_lockres);
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +11001003 unlock_all_bitmaps(mddev);
Goldwyn Rodriguesc4ce8672014-03-29 10:20:02 -05001004 dlm_release_lockspace(cinfo->lockspace, 2);
Guoqing Jiang9c8043f2017-02-24 11:15:12 +08001005 kfree(cinfo);
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001006 return 0;
1007}
1008
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -05001009/* slot_number(): Returns the MD slot number to use
1010 * DLM starts the slot numbers from 1, wheras cluster-md
1011 * wants the number to be from zero, so we deduct one
1012 */
1013static int slot_number(struct mddev *mddev)
1014{
1015 struct md_cluster_info *cinfo = mddev->cluster_info;
1016
1017 return cinfo->slot_number - 1;
1018}
1019
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001020/*
1021 * Check if the communication is already locked, else lock the communication
1022 * channel.
1023 * If it is already locked, token is in EX mode, and hence lock_token()
1024 * should not be called.
1025 */
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001026static int metadata_update_start(struct mddev *mddev)
1027{
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001028 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001029 int ret;
1030
1031 /*
1032 * metadata_update_start is always called with the protection of
1033 * reconfig_mutex, so set WAITING_FOR_TOKEN here.
1034 */
1035 ret = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
1036 &cinfo->state);
1037 WARN_ON_ONCE(ret);
1038 md_wakeup_thread(mddev->thread);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001039
1040 wait_event(cinfo->wait,
1041 !test_and_set_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state) ||
1042 test_and_clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state));
1043
1044 /* If token is already locked, return 0 */
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001045 if (cinfo->token_lockres->mode == DLM_LOCK_EX) {
1046 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001047 return 0;
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001048 }
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001049
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001050 ret = lock_token(cinfo, 1);
1051 clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
1052 return ret;
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001053}
1054
1055static int metadata_update_finish(struct mddev *mddev)
1056{
1057 struct md_cluster_info *cinfo = mddev->cluster_info;
1058 struct cluster_msg cmsg;
Goldwyn Rodrigues70bcecd2015-08-21 10:33:39 -05001059 struct md_rdev *rdev;
1060 int ret = 0;
NeilBrownba2746b2015-10-16 13:48:35 +11001061 int raid_slot = -1;
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001062
1063 memset(&cmsg, 0, sizeof(cmsg));
1064 cmsg.type = cpu_to_le32(METADATA_UPDATED);
Goldwyn Rodrigues70bcecd2015-08-21 10:33:39 -05001065 /* Pick up a good active device number to send.
1066 */
1067 rdev_for_each(rdev, mddev)
1068 if (rdev->raid_disk > -1 && !test_bit(Faulty, &rdev->flags)) {
NeilBrownba2746b2015-10-16 13:48:35 +11001069 raid_slot = rdev->desc_nr;
Goldwyn Rodrigues70bcecd2015-08-21 10:33:39 -05001070 break;
1071 }
NeilBrownba2746b2015-10-16 13:48:35 +11001072 if (raid_slot >= 0) {
1073 cmsg.raid_slot = cpu_to_le32(raid_slot);
Goldwyn Rodrigues70bcecd2015-08-21 10:33:39 -05001074 ret = __sendmsg(cinfo, &cmsg);
NeilBrownba2746b2015-10-16 13:48:35 +11001075 } else
Goldwyn Rodrigues70bcecd2015-08-21 10:33:39 -05001076 pr_warn("md-cluster: No good device id found to send\n");
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001077 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001078 unlock_comm(cinfo);
1079 return ret;
1080}
1081
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001082static void metadata_update_cancel(struct mddev *mddev)
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001083{
1084 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001085 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001086 unlock_comm(cinfo);
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001087}
1088
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001089static int resync_start(struct mddev *mddev)
1090{
1091 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiangd6385db2016-08-12 13:42:43 +08001092 return dlm_lock_sync_interruptible(cinfo->resync_lockres, DLM_LOCK_EX, mddev);
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001093}
1094
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001095static int resync_info_update(struct mddev *mddev, sector_t lo, sector_t hi)
Goldwyn Rodrigues965400e2014-06-07 02:16:58 -05001096{
1097 struct md_cluster_info *cinfo = mddev->cluster_info;
Goldwyn Rodriguesac277c62015-12-21 10:50:59 +11001098 struct resync_info ri;
Guoqing Jiangaee177a2015-10-12 17:21:24 +08001099 struct cluster_msg cmsg = {0};
Goldwyn Rodrigues965400e2014-06-07 02:16:58 -05001100
Goldwyn Rodriguesac277c62015-12-21 10:50:59 +11001101 /* do not send zero again, if we have sent before */
1102 if (hi == 0) {
1103 memcpy(&ri, cinfo->bitmap_lockres->lksb.sb_lvbptr, sizeof(struct resync_info));
1104 if (le64_to_cpu(ri.hi) == 0)
1105 return 0;
1106 }
1107
NeilBrown30661b42015-10-19 15:44:00 +11001108 add_resync_info(cinfo->bitmap_lockres, lo, hi);
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001109 /* Re-acquire the lock to refresh LVB */
1110 dlm_lock_sync(cinfo->bitmap_lockres, DLM_LOCK_PW);
Goldwyn Rodriguesc40f3412015-08-19 08:14:42 +10001111 cmsg.type = cpu_to_le32(RESYNCING);
Goldwyn Rodrigues965400e2014-06-07 02:16:58 -05001112 cmsg.low = cpu_to_le64(lo);
1113 cmsg.high = cpu_to_le64(hi);
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001114
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001115 /*
1116 * mddev_lock is held if resync_info_update is called from
1117 * resync_finish (md_reap_sync_thread -> resync_finish)
1118 */
1119 if (lo == 0 && hi == 0)
1120 return sendmsg(cinfo, &cmsg, 1);
1121 else
1122 return sendmsg(cinfo, &cmsg, 0);
Goldwyn Rodrigues965400e2014-06-07 02:16:58 -05001123}
1124
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001125static int resync_finish(struct mddev *mddev)
1126{
1127 struct md_cluster_info *cinfo = mddev->cluster_info;
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001128 dlm_unlock_sync(cinfo->resync_lockres);
1129 return resync_info_update(mddev, 0, 0);
1130}
1131
Goldwyn Rodrigues90382ed2015-06-24 09:30:32 -05001132static int area_resyncing(struct mddev *mddev, int direction,
1133 sector_t lo, sector_t hi)
Goldwyn Rodrigues589a1c42014-06-07 02:39:37 -05001134{
1135 struct md_cluster_info *cinfo = mddev->cluster_info;
1136 int ret = 0;
1137 struct suspend_info *s;
1138
Goldwyn Rodrigues90382ed2015-06-24 09:30:32 -05001139 if ((direction == READ) &&
1140 test_bit(MD_CLUSTER_SUSPEND_READ_BALANCING, &cinfo->state))
1141 return 1;
1142
Goldwyn Rodrigues589a1c42014-06-07 02:39:37 -05001143 spin_lock_irq(&cinfo->suspend_lock);
1144 if (list_empty(&cinfo->suspend_list))
1145 goto out;
1146 list_for_each_entry(s, &cinfo->suspend_list, list)
1147 if (hi > s->lo && lo < s->hi) {
1148 ret = 1;
1149 break;
1150 }
1151out:
1152 spin_unlock_irq(&cinfo->suspend_lock);
1153 return ret;
1154}
1155
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001156/* add_new_disk() - initiates a disk add
1157 * However, if this fails before writing md_update_sb(),
1158 * add_new_disk_cancel() must be called to release token lock
1159 */
1160static int add_new_disk(struct mddev *mddev, struct md_rdev *rdev)
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001161{
1162 struct md_cluster_info *cinfo = mddev->cluster_info;
1163 struct cluster_msg cmsg;
1164 int ret = 0;
1165 struct mdp_superblock_1 *sb = page_address(rdev->sb_page);
1166 char *uuid = sb->device_uuid;
1167
1168 memset(&cmsg, 0, sizeof(cmsg));
1169 cmsg.type = cpu_to_le32(NEWDISK);
1170 memcpy(cmsg.uuid, uuid, 16);
Guoqing Jiangfaeff832015-10-12 17:21:21 +08001171 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001172 lock_comm(cinfo, 1);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001173 ret = __sendmsg(cinfo, &cmsg);
1174 if (ret)
1175 return ret;
1176 cinfo->no_new_dev_lockres->flags |= DLM_LKF_NOQUEUE;
1177 ret = dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_EX);
1178 cinfo->no_new_dev_lockres->flags &= ~DLM_LKF_NOQUEUE;
1179 /* Some node does not "see" the device */
1180 if (ret == -EAGAIN)
1181 ret = -ENOENT;
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001182 if (ret)
1183 unlock_comm(cinfo);
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001184 else {
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001185 dlm_lock_sync(cinfo->no_new_dev_lockres, DLM_LOCK_CR);
Guoqing Jiange19508f2015-12-21 10:51:01 +11001186 /* Since MD_CHANGE_DEVS will be set in add_bound_rdev which
1187 * will run soon after add_new_disk, the below path will be
1188 * invoked:
1189 * md_wakeup_thread(mddev->thread)
1190 * -> conf->thread (raid1d)
1191 * -> md_check_recovery -> md_update_sb
1192 * -> metadata_update_start/finish
1193 * MD_CLUSTER_SEND_LOCKED_ALREADY will be cleared eventually.
1194 *
1195 * For other failure cases, metadata_update_cancel and
1196 * add_new_disk_cancel also clear below bit as well.
1197 * */
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001198 set_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
1199 wake_up(&cinfo->wait);
1200 }
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001201 return ret;
1202}
1203
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001204static void add_new_disk_cancel(struct mddev *mddev)
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001205{
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001206 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiang8b9277c2015-12-21 10:51:00 +11001207 clear_bit(MD_CLUSTER_SEND_LOCKED_ALREADY, &cinfo->state);
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001208 unlock_comm(cinfo);
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001209}
1210
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -06001211static int new_disk_ack(struct mddev *mddev, bool ack)
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001212{
1213 struct md_cluster_info *cinfo = mddev->cluster_info;
1214
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -06001215 if (!test_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state)) {
1216 pr_warn("md-cluster(%s): Spurious cluster confirmation\n", mdname(mddev));
1217 return -EINVAL;
1218 }
1219
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001220 if (ack)
1221 dlm_unlock_sync(cinfo->no_new_dev_lockres);
1222 complete(&cinfo->newdisk_completion);
Goldwyn Rodriguesfa8259d2015-03-02 10:55:49 -06001223 return 0;
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001224}
1225
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -05001226static int remove_disk(struct mddev *mddev, struct md_rdev *rdev)
1227{
Guoqing Jiangaee177a2015-10-12 17:21:24 +08001228 struct cluster_msg cmsg = {0};
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -05001229 struct md_cluster_info *cinfo = mddev->cluster_info;
Guoqing Jiangfaeff832015-10-12 17:21:21 +08001230 cmsg.type = cpu_to_le32(REMOVE);
1231 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001232 return sendmsg(cinfo, &cmsg, 1);
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -05001233}
1234
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +11001235static int lock_all_bitmaps(struct mddev *mddev)
1236{
1237 int slot, my_slot, ret, held = 1, i = 0;
1238 char str[64];
1239 struct md_cluster_info *cinfo = mddev->cluster_info;
1240
1241 cinfo->other_bitmap_lockres = kzalloc((mddev->bitmap_info.nodes - 1) *
1242 sizeof(struct dlm_lock_resource *),
1243 GFP_KERNEL);
1244 if (!cinfo->other_bitmap_lockres) {
1245 pr_err("md: can't alloc mem for other bitmap locks\n");
1246 return 0;
1247 }
1248
1249 my_slot = slot_number(mddev);
1250 for (slot = 0; slot < mddev->bitmap_info.nodes; slot++) {
1251 if (slot == my_slot)
1252 continue;
1253
1254 memset(str, '\0', 64);
1255 snprintf(str, 64, "bitmap%04d", slot);
1256 cinfo->other_bitmap_lockres[i] = lockres_init(mddev, str, NULL, 1);
1257 if (!cinfo->other_bitmap_lockres[i])
1258 return -ENOMEM;
1259
1260 cinfo->other_bitmap_lockres[i]->flags |= DLM_LKF_NOQUEUE;
1261 ret = dlm_lock_sync(cinfo->other_bitmap_lockres[i], DLM_LOCK_PW);
1262 if (ret)
1263 held = -1;
1264 i++;
1265 }
1266
1267 return held;
1268}
1269
1270static void unlock_all_bitmaps(struct mddev *mddev)
1271{
1272 struct md_cluster_info *cinfo = mddev->cluster_info;
1273 int i;
1274
1275 /* release other node's bitmap lock if they are existed */
1276 if (cinfo->other_bitmap_lockres) {
1277 for (i = 0; i < mddev->bitmap_info.nodes - 1; i++) {
1278 if (cinfo->other_bitmap_lockres[i]) {
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +11001279 lockres_free(cinfo->other_bitmap_lockres[i]);
1280 }
1281 }
1282 kfree(cinfo->other_bitmap_lockres);
1283 }
1284}
1285
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001286static int gather_bitmaps(struct md_rdev *rdev)
1287{
1288 int sn, err;
1289 sector_t lo, hi;
Guoqing Jiangaee177a2015-10-12 17:21:24 +08001290 struct cluster_msg cmsg = {0};
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001291 struct mddev *mddev = rdev->mddev;
1292 struct md_cluster_info *cinfo = mddev->cluster_info;
1293
Guoqing Jiangfaeff832015-10-12 17:21:21 +08001294 cmsg.type = cpu_to_le32(RE_ADD);
1295 cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
Guoqing Jiang0ba95972017-03-01 17:30:29 +08001296 err = sendmsg(cinfo, &cmsg, 1);
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001297 if (err)
1298 goto out;
1299
1300 for (sn = 0; sn < mddev->bitmap_info.nodes; sn++) {
1301 if (sn == (cinfo->slot_number - 1))
1302 continue;
1303 err = bitmap_copy_from_slot(mddev, sn, &lo, &hi, false);
1304 if (err) {
1305 pr_warn("md-cluster: Could not gather bitmaps from slot %d", sn);
1306 goto out;
1307 }
1308 if ((hi > 0) && (lo < mddev->recovery_cp))
1309 mddev->recovery_cp = lo;
1310 }
1311out:
1312 return err;
1313}
1314
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001315static struct md_cluster_operations cluster_ops = {
1316 .join = join,
1317 .leave = leave,
Goldwyn Rodriguescf921cc2014-03-30 00:42:49 -05001318 .slot_number = slot_number,
Goldwyn Rodriguesc186b122015-09-30 13:20:35 -05001319 .resync_start = resync_start,
1320 .resync_finish = resync_finish,
Goldwyn Rodrigues96ae9232014-06-06 12:35:34 -05001321 .resync_info_update = resync_info_update,
Goldwyn Rodrigues293467a2014-06-07 01:44:51 -05001322 .metadata_update_start = metadata_update_start,
1323 .metadata_update_finish = metadata_update_finish,
1324 .metadata_update_cancel = metadata_update_cancel,
Goldwyn Rodrigues589a1c42014-06-07 02:39:37 -05001325 .area_resyncing = area_resyncing,
Goldwyn Rodriguesdbb64f82015-10-01 13:20:27 -05001326 .add_new_disk = add_new_disk,
1327 .add_new_disk_cancel = add_new_disk_cancel,
Goldwyn Rodrigues1aee41f2014-10-29 18:51:31 -05001328 .new_disk_ack = new_disk_ack,
Goldwyn Rodrigues88bcfef2015-04-14 10:44:44 -05001329 .remove_disk = remove_disk,
Guoqing Jiang51e453a2016-05-04 02:17:09 -04001330 .load_bitmaps = load_bitmaps,
Goldwyn Rodrigues97f6cd32015-04-14 10:45:42 -05001331 .gather_bitmaps = gather_bitmaps,
Guoqing Jiangf6a2dc62015-12-21 10:51:00 +11001332 .lock_all_bitmaps = lock_all_bitmaps,
1333 .unlock_all_bitmaps = unlock_all_bitmaps,
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001334};
1335
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -06001336static int __init cluster_init(void)
1337{
1338 pr_warn("md-cluster: EXPERIMENTAL. Use with caution\n");
1339 pr_info("Registering Cluster MD functions\n");
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001340 register_md_cluster_operations(&cluster_ops, THIS_MODULE);
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -06001341 return 0;
1342}
1343
1344static void cluster_exit(void)
1345{
Goldwyn Rodriguesedb39c92014-03-29 10:01:53 -05001346 unregister_md_cluster_operations();
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -06001347}
1348
1349module_init(cluster_init);
1350module_exit(cluster_exit);
Guoqing Jiang86b57272015-10-12 17:21:25 +08001351MODULE_AUTHOR("SUSE");
Goldwyn Rodrigues8e854e92014-03-07 11:21:15 -06001352MODULE_LICENSE("GPL");
1353MODULE_DESCRIPTION("Clustering support for MD");