b646ad77a6
- Incremental-add-export-handling.patch - udev-rules.degraded - systemd-mdadm-last-resort@.service - systemd-mdadm-last-resort@.timer Teach systemd to start degraded arrays after a timeout if some missing devices never appear (bnc#832501) - Incremental-improve-support-for-DEVICE-based-restric.patch Teach "mdadm --incremental" to handle "DEVICE" lists from mdadm.conf properly (bnc@851993) OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=98
295 lines
8.5 KiB
Diff
295 lines
8.5 KiB
Diff
From 9ca39acb3e8bc31811e463d19fae81c5501aea65 Mon Sep 17 00:00:00 2001
|
|
From: NeilBrown <neilb@suse.de>
|
|
Date: Thu, 28 Nov 2013 15:15:30 +1100
|
|
Subject: [PATCH] Incremental: add --export handling.
|
|
|
|
If --export is given with --incremental, then
|
|
MD_DEVNAME
|
|
is output which gives the name of the device (in /dev/md) that
|
|
is the array (or container) that the device would be added to.
|
|
Also
|
|
MD_STARTED
|
|
is set to one of
|
|
no
|
|
unsafe
|
|
yes
|
|
nothing
|
|
|
|
to indicate if the array was started. IF MD_STARTED=unsafe
|
|
then it may be appropriate to run
|
|
mdadm -R /dev/md/$MD_DEVNAME
|
|
after a timeout to ensure newly degraded array are started.
|
|
|
|
If
|
|
MD_FOREIGN=yes
|
|
it might be appropriate to suppress this as the array is
|
|
probably not critical.
|
|
|
|
Signed-off-by: NeilBrown <neilb@suse.de>
|
|
---
|
|
Assemble.c | 19 ++++++++++++-----
|
|
Incremental.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
|
|
mdadm.8.in | 21 +++++++++++++++++--
|
|
mdadm.h | 6 ++++-
|
|
4 files changed, 94 insertions(+), 16 deletions(-)
|
|
|
|
--- mdadm-3.3.orig/Assemble.c
|
|
+++ mdadm-3.3/Assemble.c
|
|
@@ -1419,7 +1419,7 @@ try_again:
|
|
/* This is a member of a container. Try starting the array. */
|
|
int err;
|
|
err = assemble_container_content(st, mdfd, content, c,
|
|
- chosen_name);
|
|
+ chosen_name, NULL);
|
|
close(mdfd);
|
|
return err;
|
|
}
|
|
@@ -1771,7 +1771,7 @@ try_again:
|
|
#ifndef MDASSEMBLE
|
|
int assemble_container_content(struct supertype *st, int mdfd,
|
|
struct mdinfo *content, struct context *c,
|
|
- char *chosen_name)
|
|
+ char *chosen_name, int *result)
|
|
{
|
|
struct mdinfo *dev, *sra;
|
|
int working = 0, preexist = 0;
|
|
@@ -1838,7 +1838,9 @@ int assemble_container_content(struct su
|
|
|
|
if (enough(content->array.level, content->array.raid_disks,
|
|
content->array.layout, content->array.state & 1, avail) == 0) {
|
|
- if (c->verbose >= 0) {
|
|
+ if (c->export && result)
|
|
+ *result |= INCR_NO;
|
|
+ else if (c->verbose >= 0) {
|
|
pr_err("%s assembled with %d device%s",
|
|
chosen_name, preexist + working,
|
|
preexist + working == 1 ? "":"s");
|
|
@@ -1854,7 +1856,9 @@ int assemble_container_content(struct su
|
|
if (c->runstop <= 0 &&
|
|
(working + preexist + expansion) <
|
|
content->array.working_disks) {
|
|
- if (c->verbose >= 0) {
|
|
+ if (c->export && result)
|
|
+ *result |= INCR_UNSAFE;
|
|
+ else if (c->verbose >= 0) {
|
|
pr_err("%s assembled with %d device%s",
|
|
chosen_name, preexist + working,
|
|
preexist + working == 1 ? "":"s");
|
|
@@ -1918,7 +1922,12 @@ int assemble_container_content(struct su
|
|
!start_reshape)
|
|
block_subarray(content);
|
|
|
|
- if (c->verbose >= 0) {
|
|
+ if (c->export && result) {
|
|
+ if (err)
|
|
+ *result |= INCR_NO;
|
|
+ else
|
|
+ *result |= INCR_YES;
|
|
+ } else if (c->verbose >= 0) {
|
|
if (err)
|
|
pr_err("array %s now has %d device%s",
|
|
chosen_name, working + preexist,
|
|
--- mdadm-3.3.orig/Incremental.c
|
|
+++ mdadm-3.3/Incremental.c
|
|
@@ -91,6 +91,7 @@ int Incremental(char *devname, struct co
|
|
struct mdinfo *sra = NULL, *d;
|
|
struct mddev_ident *match;
|
|
char chosen_name[1024];
|
|
+ char *md_devname;
|
|
int rv = 1;
|
|
struct map_ent *mp, *map = NULL;
|
|
int dfd = -1, mdfd = -1;
|
|
@@ -138,6 +139,8 @@ int Incremental(char *devname, struct co
|
|
if (map_lock(&map))
|
|
pr_err("failed to get "
|
|
"exclusive lock on mapfile\n");
|
|
+ if (c->export)
|
|
+ printf("MD_DEVNAME=%s\n", devname);
|
|
rv = Incremental_container(st, devname, c, NULL);
|
|
map_unlock(&map);
|
|
return rv;
|
|
@@ -459,6 +462,15 @@ int Incremental(char *devname, struct co
|
|
info.array.working_disks ++;
|
|
|
|
}
|
|
+ if (strncmp(chosen_name, "/dev/md/", 8) == 0)
|
|
+ md_devname = chosen_name+8;
|
|
+ else
|
|
+ md_devname = chosen_name;
|
|
+ if (c->export) {
|
|
+ printf("MD_DEVICE=%s\n", fd2devnm(mdfd));
|
|
+ printf("MD_DEVNAME=%s\n", md_devname);
|
|
+ printf("MD_FOREIGN=%s\n", trustworthy == FOREIGN ? "yes" : "no");
|
|
+ }
|
|
|
|
/* 7/ Is there enough devices to possibly start the array? */
|
|
/* 7a/ if not, finish with success. */
|
|
@@ -466,7 +478,7 @@ int Incremental(char *devname, struct co
|
|
char devnm[32];
|
|
/* Try to assemble within the container */
|
|
sysfs_uevent(sra, "change");
|
|
- if (c->verbose >= 0)
|
|
+ if (!c->export && c->verbose >= 0)
|
|
pr_err("container %s now has %d device%s\n",
|
|
chosen_name, info.array.working_disks,
|
|
info.array.working_disks == 1?"":"s");
|
|
@@ -503,7 +515,9 @@ int Incremental(char *devname, struct co
|
|
if (enough(info.array.level, info.array.raid_disks,
|
|
info.array.layout, info.array.state & 1,
|
|
avail) == 0) {
|
|
- if (c->verbose >= 0)
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=no\n");
|
|
+ } else if (c->verbose >= 0)
|
|
pr_err("%s attached to %s, not enough to start (%d).\n",
|
|
devname, chosen_name, active_disks);
|
|
rv = 0;
|
|
@@ -517,7 +531,9 @@ int Incremental(char *devname, struct co
|
|
/* + start the array (auto-readonly). */
|
|
|
|
if (ioctl(mdfd, GET_ARRAY_INFO, &ainf) == 0) {
|
|
- if (c->verbose >= 0)
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=already\n");
|
|
+ } else if (c->verbose >= 0)
|
|
pr_err("%s attached to %s which is already active.\n",
|
|
devname, chosen_name);
|
|
rv = 0;
|
|
@@ -564,7 +580,9 @@ int Incremental(char *devname, struct co
|
|
rv = sysfs_set_str(sra, NULL,
|
|
"array_state", "read-auto");
|
|
if (rv == 0) {
|
|
- if (c->verbose >= 0)
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=yes\n");
|
|
+ } else if (c->verbose >= 0)
|
|
pr_err("%s attached to %s, which has been started.\n",
|
|
devname, chosen_name);
|
|
rv = 0;
|
|
@@ -587,7 +605,9 @@ int Incremental(char *devname, struct co
|
|
rv = 1;
|
|
}
|
|
} else {
|
|
- if (c->verbose >= 0)
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=unsafe\n");
|
|
+ } else if (c->verbose >= 0)
|
|
pr_err("%s attached to %s, not enough to start safely.\n",
|
|
devname, chosen_name);
|
|
rv = 0;
|
|
@@ -1441,6 +1461,7 @@ static int Incremental_container(struct
|
|
int sfd;
|
|
int ra_blocked = 0;
|
|
int ra_all = 0;
|
|
+ int result = 0;
|
|
|
|
st->ss->getinfo_super(st, &info, NULL);
|
|
|
|
@@ -1448,7 +1469,9 @@ static int Incremental_container(struct
|
|
info.container_enough > 0)
|
|
/* pass */;
|
|
else {
|
|
- if (c->verbose)
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=no\n");
|
|
+ } else if (c->verbose)
|
|
pr_err("not enough devices to start the container\n");
|
|
return 0;
|
|
}
|
|
@@ -1469,8 +1492,12 @@ static int Incremental_container(struct
|
|
|
|
list = st->ss->container_content(st, NULL);
|
|
/* when nothing to activate - quit */
|
|
- if (list == NULL)
|
|
+ if (list == NULL) {
|
|
+ if (c->export) {
|
|
+ printf("MD_STARTED=nothing\n");
|
|
+ }
|
|
return 0;
|
|
+ }
|
|
for (ra = list ; ra ; ra = ra->next) {
|
|
int mdfd;
|
|
char chosen_name[1024];
|
|
@@ -1560,9 +1587,30 @@ static int Incremental_container(struct
|
|
}
|
|
|
|
assemble_container_content(st, mdfd, ra, c,
|
|
- chosen_name);
|
|
+ chosen_name, &result);
|
|
close(mdfd);
|
|
}
|
|
+ if (c->export && result) {
|
|
+ char sep = '=';
|
|
+ printf("MD_STARTED");
|
|
+ if (result & INCR_NO) {
|
|
+ printf("%cno", sep);
|
|
+ sep = ',';
|
|
+ }
|
|
+ if (result & INCR_UNSAFE) {
|
|
+ printf("%cunsafe", sep);
|
|
+ sep = ',';
|
|
+ }
|
|
+ if (result & INCR_ALREADY) {
|
|
+ printf("%calready", sep);
|
|
+ sep = ',';
|
|
+ }
|
|
+ if (result & INCR_YES) {
|
|
+ printf("%cyes", sep);
|
|
+ sep = ',';
|
|
+ }
|
|
+ printf("\n");
|
|
+ }
|
|
|
|
/* don't move spares to container with volume being activated
|
|
when all volumes are blocked */
|
|
--- mdadm-3.3.orig/mdadm.8.in
|
|
+++ mdadm-3.3/mdadm.8.in
|
|
@@ -1428,13 +1428,30 @@ absolute filepath or a link, e.g.
|
|
.TP
|
|
.BR \-Y ", " \-\-export
|
|
When used with
|
|
-.B \-\-detail , \-\-detail-platform
|
|
-or
|
|
+.BR \-\-detail ,
|
|
+.BR \-\-detail-platform ,
|
|
.BR \-\-examine ,
|
|
+or
|
|
+.B \-\-incremental
|
|
output will be formatted as
|
|
.B key=value
|
|
pairs for easy import into the environment.
|
|
|
|
+With
|
|
+.B \-\-incremental
|
|
+The value
|
|
+.B MD_STARTED
|
|
+indicates whether an array was started
|
|
+.RB ( yes )
|
|
+or not, which may include a reason
|
|
+.RB ( unsafe ", " nothing ", " no ).
|
|
+Also the value
|
|
+.B MD_FOREIGN
|
|
+indicates if the array is expected on this host
|
|
+.RB ( no ),
|
|
+or seems to be from elsewhere
|
|
+.RB ( yes ).
|
|
+
|
|
.TP
|
|
.BR \-E ", " \-\-examine
|
|
Print contents of the metadata stored on the named device(s).
|
|
--- mdadm-3.3.orig/mdadm.h
|
|
+++ mdadm-3.3/mdadm.h
|
|
@@ -1328,7 +1328,11 @@ extern void append_metadata_update(struc
|
|
extern int assemble_container_content(struct supertype *st, int mdfd,
|
|
struct mdinfo *content,
|
|
struct context *c,
|
|
- char *chosen_name);
|
|
+ char *chosen_name, int *result);
|
|
+#define INCR_NO 1
|
|
+#define INCR_UNSAFE 2
|
|
+#define INCR_ALREADY 4
|
|
+#define INCR_YES 8
|
|
extern struct mdinfo *container_choose_spares(struct supertype *st,
|
|
unsigned long long min_size,
|
|
struct domainlist *domlist,
|