From: NeilBrown <neilb@suse.de>
To: Goldwyn Rodrigues <rgoldwyn@suse.de>
Cc: linux-raid@vger.kernel.org
Subject: Re: [PATCH] Fix stray --cluster-confrim crash
Date: Wed, 4 Mar 2015 13:46:56 +1100 [thread overview]
Message-ID: <20150304134656.29c77f3d@notabene.brown> (raw)
In-Reply-To: <20150302165549.GA27519@shrek.lan>
[-- Attachment #1: Type: text/plain, Size: 4262 bytes --]
On Mon, 2 Mar 2015 10:55:49 -0600 Goldwyn Rodrigues <rgoldwyn@suse.de> wrote:
> Hi Neil,
>
> This fix is againt the md/for-next.
>
> A --cluster-confirm without an --add (by another node) can
> crash the kernel.
>
> Fix it by guarding it using a state.
>
> Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
> ---
> diff --git a/drivers/md/md-cluster.c b/drivers/md/md-cluster.c
> index 03e521a..96679b2 100644
> --- a/drivers/md/md-cluster.c
> +++ b/drivers/md/md-cluster.c
> @@ -42,6 +42,10 @@ struct resync_info {
> __le64 hi;
> };
>
> +/* md_cluster_info flags */
> +#define MD_CLUSTER_WAITING_FOR_NEWDISK 1
> +
> +
> struct md_cluster_info {
> /* dlm lock space and resources for clustered raid. */
> dlm_lockspace_t *lockspace;
> @@ -61,6 +65,7 @@ struct md_cluster_info {
> struct dlm_lock_resource *no_new_dev_lockres;
> struct md_thread *recv_thread;
> struct completion newdisk_completion;
> + unsigned long state;
> };
>
> enum msg_type {
> @@ -380,9 +385,11 @@ static void process_add_new_disk(struct mddev *mddev, struct cluster_msg *cmsg)
> snprintf(raid_slot, 16, "RAID_DISK=%d", cmsg->raid_slot);
> pr_info("%s:%d Sending kobject change with %s and %s\n", __func__, __LINE__, disk_uuid, raid_slot);
> init_completion(&cinfo->newdisk_completion);
> + set_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
> kobject_uevent_env(&disk_to_dev(mddev->gendisk)->kobj, KOBJ_CHANGE, envp);
> wait_for_completion_timeout(&cinfo->newdisk_completion,
> NEW_DEV_TIMEOUT);
> + clear_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state);
> }
>
>
> @@ -832,13 +839,19 @@ static int add_new_disk_finish(struct mddev *mddev)
> return ret;
> }
>
> -static void new_disk_ack(struct mddev *mddev, bool ack)
> +static int new_disk_ack(struct mddev *mddev, bool ack)
> {
> struct md_cluster_info *cinfo = mddev->cluster_info;
>
> + if (!test_bit(MD_CLUSTER_WAITING_FOR_NEWDISK, &cinfo->state)) {
> + pr_warn("md-cluster(%s): Spurious cluster confirmation\n", mdname(mddev));
> + return -EINVAL;
> + }
> +
> if (ack)
> dlm_unlock_sync(cinfo->no_new_dev_lockres);
> complete(&cinfo->newdisk_completion);
> + return 0;
> }
>
> static struct md_cluster_operations cluster_ops = {
> diff --git a/drivers/md/md-cluster.h b/drivers/md/md-cluster.h
> index 60d7e58..7417133 100644
> --- a/drivers/md/md-cluster.h
> +++ b/drivers/md/md-cluster.h
> @@ -21,7 +21,7 @@ struct md_cluster_operations {
> int (*area_resyncing)(struct mddev *mddev, sector_t lo, sector_t hi);
> int (*add_new_disk_start)(struct mddev *mddev, struct md_rdev *rdev);
> int (*add_new_disk_finish)(struct mddev *mddev);
> - void (*new_disk_ack)(struct mddev *mddev, bool ack);
> + int (*new_disk_ack)(struct mddev *mddev, bool ack);
> };
>
> #endif /* _MD_CLUSTER_H */
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index 23784988..461024d 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -5757,7 +5755,7 @@ static int add_new_disk(struct mddev *mddev, mdu_disk_info_t *info)
>
> if (mddev_is_clustered(mddev) &&
> !(info->state & ((1 << MD_DISK_CLUSTER_ADD) | (1 << MD_DISK_CANDIDATE)))) {
> - pr_err("%s: Cannot add to clustered mddev. Try --cluster-add\n",
> + pr_err("%s: Cannot add to clustered mddev.\n",
> mdname(mddev));
> return -EINVAL;
> }
> @@ -5855,7 +5853,11 @@ static int add_new_disk(struct mddev *mddev, mdu_disk_info_t *info)
> if (info->state & (1 << MD_DISK_CANDIDATE)) {
> /* Through --cluster-confirm */
> set_bit(Candidate, &rdev->flags);
> - md_cluster_ops->new_disk_ack(mddev, true);
> + err = md_cluster_ops->new_disk_ack(mddev, true);
> + if (err) {
> + export_rdev(rdev);
> + return err;
> + }
> } else if (info->state & (1 << MD_DISK_CLUSTER_ADD)) {
> /* --add initiated by this node */
> err = md_cluster_ops->add_new_disk_start(mddev, rdev);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Makes sense.
Applied, thanks.
NeilBrown
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 811 bytes --]
prev parent reply other threads:[~2015-03-04 2:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-02 16:55 [PATCH] Fix stray --cluster-confrim crash Goldwyn Rodrigues
2015-03-04 2:46 ` NeilBrown [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150304134656.29c77f3d@notabene.brown \
--to=neilb@suse.de \
--cc=linux-raid@vger.kernel.org \
--cc=rgoldwyn@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).