RE: [PATCH] Forbid merging with partially assembled IMSM array

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>On Monday, June 02, 2014 4:20 AM NeilBrown [neilb@xxxxxxx] wrote: 
> On Fri, 30 May 2014 13:11:43 +0000 "Baldysiak, Pawel"
> <pawel.baldysiak@xxxxxxxxx> wrote:
> 
> > Changes introduced in commit:
> > 0431869cec4c673309d9aa30a2df4b778bc0bd24
> > enabled adding devices to partially assembled array.
> > It causes assemble process to override checking controller of device.
> >
> > For example:
> > If ones created IMSM array will be stopped, and some disks will be
> > attached to different controller, mdadm will allow to fully assemble
> > this array as one md device (due to marge one part to another).
> >
> > This patch resolve this problem by forbidding merge operation on
> > arrays with IMSM metadata.
> 
> Why do you think this is a good thing?
> You seem to be saying "You cannot access that data  because I don't like
> which controllers you have attached it to".
> 
> My thought is that you should provide access to data whenever possible.
> 
> Is there some important situation where the current behaviour will cause
> real problems?
> 
> Maybe a warning might be appropriate, but failure doesn't seem sensible...
> 
> NeilBrown
> 
Hi Neil,

Sorry for all this mess with white-space corruption.

Intel platforms have separate OpROMs for each controller.
OpROMs manage SW RAIDs at startup and don't support arrays spanned across different controllers.
In this case array will become degraded or failed after reboot anyway, because each OpROM will overwrite metadata on disks based on disks attached to specific controller.
User should never be able to assemble IMSM array with disks under different controllers by default.
You can always use "--force" to override this check.

Pawel Baldysiak

> >
> > Signed-off-by: Pawel Baldysiak <pawel.baldysiak@xxxxxxxxx>
> > Reviewed-by: Artur Paszkiewicz <artur.paszkiewicz@xxxxxxxxx>
> >
> > ---
> > Assemble.c | 23 +++++++++++++++++++++++
> > 1 file changed, 23 insertions(+)
> >
> > diff --git a/Assemble.c b/Assemble.c
> > index a57d384..9fb65e5 100644
> > --- a/Assemble.c
> > +++ b/Assemble.c
> > @@ -1329,6 +1329,29 @@ try_again:
> >                                                return 1;
> >                                }
> >                                for (dv = pre_exist->devs; dv; dv =
> > dv->next) {
> > +                                             if (strncmp(mp->metadata, "imsm", 4) == 0 && !c-
> >force) {
> > +                                                             int dfd;
> > +                                                             char dn[20];
> > +                                                             struct supertype *st2;
> > +                                                             sprintf(dn, "%d:%d", dv->disk.major,
> > +                                                                                             dv->disk.minor);
> > +                                                             st2 = dup_super(st);
> > +                                                             dfd = dev_open(dn, O_RDONLY);
> > +                                                             if ((dfd > 0) && (st2->ss->load_super(st2,
> dfd, NULL) ||
> > +                                                                  (st->ss->compare_super(st, st2) != 0))) {
> > +                                                                             pr_err("IMSM metadata
> mismatch!\n");
> > +                                                                             pr_err("Aborting...\n");
> > +                                                                             close(dfd);
> > +                                                             } else {
> > +                                                                             pr_err("IMSM Array already
> partially assembled!\n");
> > +                                                                             pr_err("Aborting...\n");
> > +                                                             }
> > +                                                             if (st2) {
> > +                                                                             st2->ss->free_super(st2);
> > +                                                                             free(st2);
> > +                                                             }
> > +                                                             return 1;
> > +                                             }
> >                                                /* We want to add this device to our list,
> >                                                 * but it could already be there if "mdadm -I"
> >                                                 * started *after* we checked for O_EXCL.
> > --
> > 1.9.0

--
To unsubscribe from this list: send the line "unsubscribe linux-raid" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux RAID Wiki]     [ATA RAID]     [Linux SCSI Target Infrastructure]     [Linux Block]     [Linux IDE]     [Linux SCSI]     [Linux Hams]     [Device Mapper]     [Device Mapper Cryptographics]     [Kernel]     [Linux Admin]     [Linux Net]     [GFS]     [RPM]     [git]     [Yosemite Forum]


  Powered by Linux