]> git.ipfire.org Git - thirdparty/mdadm.git/blame - monitor.c
monitor: don't unblock a device that isn't blocked.
[thirdparty/mdadm.git] / monitor.c
CommitLineData
a54d5262
DW
1/*
2 * mdmon - monitor external metadata arrays
3 *
e736b623
N
4 * Copyright (C) 2007-2009 Neil Brown <neilb@suse.de>
5 * Copyright (C) 2007-2009 Intel Corporation
a54d5262
DW
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 */
549e9569
NB
20
21#include "mdadm.h"
22#include "mdmon.h"
4d43913c 23#include <sys/syscall.h>
549e9569 24#include <sys/select.h>
1ed3f387 25#include <signal.h>
549e9569
NB
26
27static char *array_states[] = {
28 "clear", "inactive", "suspended", "readonly", "read-auto",
29 "clean", "active", "write-pending", "active-idle", NULL };
30static char *sync_actions[] = {
31 "idle", "reshape", "resync", "recover", "check", "repair", NULL
32};
33
34static int write_attr(char *attr, int fd)
35{
36 return write(fd, attr, strlen(attr));
37}
38
39static void add_fd(fd_set *fds, int *maxfd, int fd)
40{
41 if (fd < 0)
42 return;
43 if (fd > *maxfd)
44 *maxfd = fd;
45 FD_SET(fd, fds);
46}
47
48static int read_attr(char *buf, int len, int fd)
49{
50 int n;
51
52 if (fd < 0) {
53 buf[0] = 0;
54 return 0;
55 }
56 lseek(fd, 0, 0);
57 n = read(fd, buf, len - 1);
58
59 if (n <= 0) {
60 buf[0] = 0;
61 return 0;
62 }
63 buf[n] = 0;
64 if (buf[n-1] == '\n')
65 buf[n-1] = 0;
66 return n;
67}
68
b7941fd6 69static unsigned long long read_resync_start(int fd)
c052ba30
DW
70{
71 char buf[30];
72 int n;
73
b7941fd6 74 n = read_attr(buf, 30, fd);
c052ba30 75 if (n <= 0)
b7941fd6 76 return 0;
7e7fffc4 77 if (strncmp(buf, "none", 4) == 0)
b7528a20 78 return MaxSector;
7e7fffc4 79 else
b7941fd6 80 return strtoull(buf, NULL, 10);
c052ba30 81}
549e9569 82
484240d8
DW
83static unsigned long long read_sync_completed(int fd)
84{
85 unsigned long long val;
86 char buf[50];
87 int n;
88 char *ep;
89
90 n = read_attr(buf, 50, fd);
91
92 if (n <= 0)
93 return 0;
94 buf[n] = 0;
95 val = strtoull(buf, &ep, 0);
96 if (ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))
97 return 0;
98 return val;
99}
100
549e9569
NB
101static enum array_state read_state(int fd)
102{
103 char buf[20];
104 int n = read_attr(buf, 20, fd);
105
106 if (n <= 0)
107 return bad_word;
1770662b 108 return (enum array_state) sysfs_match_word(buf, array_states);
549e9569
NB
109}
110
111static enum sync_action read_action( int fd)
112{
113 char buf[20];
114 int n = read_attr(buf, 20, fd);
115
116 if (n <= 0)
117 return bad_action;
1770662b 118 return (enum sync_action) sysfs_match_word(buf, sync_actions);
549e9569
NB
119}
120
549e9569
NB
121int read_dev_state(int fd)
122{
123 char buf[60];
124 int n = read_attr(buf, 60, fd);
125 char *cp;
126 int rv = 0;
127
128 if (n <= 0)
129 return 0;
130
131 cp = buf;
132 while (cp) {
1770662b 133 if (sysfs_attr_match(cp, "faulty"))
549e9569 134 rv |= DS_FAULTY;
1770662b 135 if (sysfs_attr_match(cp, "in_sync"))
549e9569 136 rv |= DS_INSYNC;
1770662b 137 if (sysfs_attr_match(cp, "write_mostly"))
549e9569 138 rv |= DS_WRITE_MOSTLY;
1770662b 139 if (sysfs_attr_match(cp, "spare"))
549e9569 140 rv |= DS_SPARE;
1770662b 141 if (sysfs_attr_match(cp, "blocked"))
8d45d196 142 rv |= DS_BLOCKED;
549e9569
NB
143 cp = strchr(cp, ',');
144 if (cp)
145 cp++;
146 }
147 return rv;
148}
149
1ed3f387
NB
150static void signal_manager(void)
151{
4d43913c
NB
152 /* tgkill(getpid(), mon_tid, SIGUSR1); */
153 int pid = getpid();
154 syscall(SYS_tgkill, pid, mgr_tid, SIGUSR1);
1ed3f387 155}
549e9569
NB
156
157/* Monitor a set of active md arrays - all of which share the
158 * same metadata - and respond to events that require
159 * metadata update.
160 *
161 * New arrays are detected by another thread which allocates
162 * required memory and attaches the data structure to our list.
163 *
164 * Events:
165 * Array stops.
166 * This is detected by array_state going to 'clear' or 'inactive'.
167 * while we thought it was active.
168 * Response is to mark metadata as clean and 'clear' the array(??)
169 * write-pending
170 * array_state if 'write-pending'
171 * We mark metadata as 'dirty' then set array to 'active'.
172 * active_idle
173 * Either ignore, or mark clean, then mark metadata as clean.
174 *
175 * device fails
176 * detected by rd-N/state reporting "faulty"
8d45d196
DW
177 * mark device as 'failed' in metadata, let the kernel release the
178 * device by writing '-blocked' to rd/state, and finally write 'remove' to
0af73f61
DW
179 * rd/state. Before a disk can be replaced it must be failed and removed
180 * from all container members, this will be preemptive for the other
181 * arrays... safe?
549e9569
NB
182 *
183 * sync completes
184 * sync_action was 'resync' and becomes 'idle' and resync_start becomes
185 * MaxSector
186 * Notify metadata that sync is complete.
549e9569
NB
187 *
188 * recovery completes
189 * sync_action changes from 'recover' to 'idle'
190 * Check each device state and mark metadata if 'faulty' or 'in_sync'.
549e9569
NB
191 *
192 * deal with resync
c052ba30
DW
193 * This only happens on finding a new array... mdadm will have set
194 * 'resync_start' to the correct value. If 'resync_start' indicates that an
195 * resync needs to occur set the array to the 'active' state rather than the
196 * initial read-auto state.
549e9569
NB
197 *
198 *
199 *
200 * We wait for a change (poll/select) on array_state, sync_action, and
201 * each rd-X/state file.
202 * When we get any change, we check everything. So read each state file,
203 * then decide what to do.
204 *
205 * The core action is to write new metadata to all devices in the array.
206 * This is done at most once on any wakeup.
207 * After that we might:
208 * - update the array_state
209 * - set the role of some devices.
210 * - request a sync_action
211 *
212 */
213
214static int read_and_act(struct active_array *a)
215{
484240d8 216 unsigned long long sync_completed;
6c3fb95c 217 int check_degraded = 0;
0f99b4bd 218 int check_reshape = 0;
2a0bb19e 219 int deactivate = 0;
549e9569 220 struct mdinfo *mdi;
140d3685 221 int dirty = 0;
3a5d0473 222 int count = 0;
549e9569
NB
223
224 a->next_state = bad_word;
225 a->next_action = bad_action;
226
227 a->curr_state = read_state(a->info.state_fd);
228 a->curr_action = read_action(a->action_fd);
b7941fd6 229 a->info.resync_start = read_resync_start(a->resync_start_fd);
484240d8 230 sync_completed = read_sync_completed(a->sync_completed_fd);
549e9569
NB
231 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
232 mdi->next_state = 0;
10ce1808 233 mdi->curr_state = 0;
e1516be1
DW
234 if (mdi->state_fd >= 0) {
235 mdi->recovery_start = read_resync_start(mdi->recovery_fd);
8d45d196 236 mdi->curr_state = read_dev_state(mdi->state_fd);
e1516be1 237 }
549e9569
NB
238 }
239
4867e068
AK
240 if (a->curr_state > inactive &&
241 a->prev_state == inactive) {
242 /* array has been started
243 * possible that container operation has to be completed
244 */
245 a->container->ss->set_array_state(a, 0);
246 }
549e9569
NB
247 if (a->curr_state <= inactive &&
248 a->prev_state > inactive) {
249 /* array has been stopped */
ed9d66aa 250 a->container->ss->set_array_state(a, 1);
549e9569 251 a->next_state = clear;
2a0bb19e 252 deactivate = 1;
549e9569
NB
253 }
254 if (a->curr_state == write_pending) {
ed9d66aa 255 a->container->ss->set_array_state(a, 0);
549e9569 256 a->next_state = active;
140d3685 257 dirty = 1;
549e9569
NB
258 }
259 if (a->curr_state == active_idle) {
d797a062
DW
260 /* Set array to 'clean' FIRST, then mark clean
261 * in the metadata
549e9569 262 */
d797a062 263 a->next_state = clean;
140d3685 264 dirty = 1;
d797a062
DW
265 }
266 if (a->curr_state == clean) {
d797a062 267 a->container->ss->set_array_state(a, 1);
549e9569 268 }
140d3685
DW
269 if (a->curr_state == active ||
270 a->curr_state == suspended ||
271 a->curr_state == bad_word)
272 dirty = 1;
549e9569 273 if (a->curr_state == readonly) {
e9dd1598
N
274 /* Well, I'm ready to handle things. If readonly
275 * wasn't requested, transition to read-auto.
549e9569 276 */
e9dd1598
N
277 char buf[64];
278 read_attr(buf, sizeof(buf), a->metadata_fd);
279 if (strncmp(buf, "external:-", 10) == 0) {
280 /* explicit request for readonly array. Leave it alone */
281 ;
282 } else {
e9dd1598
N
283 if (a->container->ss->set_array_state(a, 2))
284 a->next_state = read_auto; /* array is clean */
140d3685 285 else {
e9dd1598 286 a->next_state = active; /* Now active for recovery etc */
140d3685
DW
287 dirty = 1;
288 }
e9dd1598 289 }
549e9569
NB
290 }
291
00e02142
DW
292 if (!deactivate &&
293 a->curr_action == idle &&
549e9569 294 a->prev_action == resync) {
4e5528c6
NB
295 /* A resync has finished. The endpoint is recorded in
296 * 'sync_start'. We don't update the metadata
297 * until the array goes inactive or readonly though.
298 * Just check if we need to fiddle spares.
299 */
0c0c44db 300 a->container->ss->set_array_state(a, a->curr_state <= clean);
549e9569
NB
301 check_degraded = 1;
302 }
303
00e02142
DW
304 if (!deactivate &&
305 a->curr_action == idle &&
549e9569 306 a->prev_action == recover) {
0a6bdbee
DW
307 /* A recovery has finished. Some disks may be in sync now,
308 * and the array may no longer be degraded
309 */
549e9569 310 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
8d45d196
DW
311 a->container->ss->set_disk(a, mdi->disk.raid_disk,
312 mdi->curr_state);
549e9569
NB
313 if (! (mdi->curr_state & DS_INSYNC))
314 check_degraded = 1;
3a5d0473 315 count++;
549e9569 316 }
3a5d0473
KW
317 if (count != a->info.array.raid_disks)
318 check_degraded = 1;
549e9569
NB
319 }
320
0f99b4bd
N
321 if (!deactivate &&
322 a->curr_action == reshape &&
323 a->prev_action != reshape)
324 /* reshape was requested by mdadm. Need to see if
325 * new devices have been added. Manager does that
326 * when it sees check_reshape
327 */
328 check_reshape = 1;
329
92967543
DW
330 /* Check for failures and if found:
331 * 1/ Record the failure in the metadata and unblock the device.
332 * FIXME update the kernel to stop notifying on failed drives when
333 * the array is readonly and we have cleared 'blocked'
334 * 2/ Try to remove the device if the array is writable, or can be
335 * made writable.
336 */
549e9569
NB
337 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
338 if (mdi->curr_state & DS_FAULTY) {
8d45d196
DW
339 a->container->ss->set_disk(a, mdi->disk.raid_disk,
340 mdi->curr_state);
549e9569 341 check_degraded = 1;
1c278e81
N
342 if (mdi->curr_state & DS_BLOCKED)
343 mdi->next_state |= DS_UNBLOCK;
92967543
DW
344 if (a->curr_state == read_auto) {
345 a->container->ss->set_array_state(a, 0);
346 a->next_state = active;
347 }
348 if (a->curr_state > readonly)
349 mdi->next_state |= DS_REMOVE;
549e9569
NB
350 }
351 }
352
484240d8
DW
353 /* Check for recovery checkpoint notifications. We need to be a
354 * minimum distance away from the last checkpoint to prevent
aad6f216
N
355 * over checkpointing. Note reshape checkpointing is handled
356 * in the second branch.
484240d8
DW
357 */
358 if (sync_completed > a->last_checkpoint &&
359 sync_completed - a->last_checkpoint > a->info.component_size >> 4 &&
4f0a7acc
DW
360 a->curr_action > reshape) {
361 /* A (non-reshape) sync_action has reached a checkpoint.
362 * Record the updated position in the metadata
363 */
364 a->last_checkpoint = sync_completed;
365 a->container->ss->set_array_state(a, a->curr_state <= clean);
aad6f216
N
366 } else if ((a->curr_action == idle && a->prev_action == reshape) ||
367 (a->curr_action == reshape
368 && sync_completed > a->last_checkpoint) ) {
369 /* Reshape has progressed or completed so we need to
370 * update the array state - and possibly the array size
371 */
2a9f8409
AK
372 if (sync_completed != 0)
373 a->last_checkpoint = sync_completed;
6d4225a1
AK
374 /* We might need to update last_checkpoint depending on
375 * the reason that reshape finished.
376 * if array reshape is really finished:
377 * set check point to the end, this allows
378 * set_array_state() to finalize reshape in metadata
379 * if reshape if broken: do not set checkpoint to the end
380 * this allows for reshape restart from checkpoint
381 */
382 if ((a->curr_action != reshape) &&
383 (a->prev_action == reshape)) {
384 char buf[40];
385 if ((sysfs_get_str(&a->info, NULL,
386 "reshape_position",
387 buf,
388 sizeof(buf)) >= 0) &&
389 strncmp(buf, "none", 4) == 0)
390 a->last_checkpoint = a->info.component_size;
391 }
aad6f216 392 a->container->ss->set_array_state(a, a->curr_state <= clean);
2a9f8409 393 a->last_checkpoint = sync_completed;
aad6f216
N
394 }
395
396 if (sync_completed > a->last_checkpoint)
484240d8 397 a->last_checkpoint = sync_completed;
484240d8 398
2e735d19 399 a->container->ss->sync_metadata(a->container);
4065aa81
DW
400 dprintf("%s(%d): state:%s action:%s next(", __func__, a->info.container_member,
401 array_states[a->curr_state], sync_actions[a->curr_action]);
549e9569
NB
402
403 /* Effect state changes in the array */
4e6e574a
DW
404 if (a->next_state != bad_word) {
405 dprintf(" state:%s", array_states[a->next_state]);
549e9569 406 write_attr(array_states[a->next_state], a->info.state_fd);
4e6e574a
DW
407 }
408 if (a->next_action != bad_action) {
549e9569 409 write_attr(sync_actions[a->next_action], a->action_fd);
4065aa81 410 dprintf(" action:%s", sync_actions[a->next_action]);
4e6e574a 411 }
549e9569 412 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
92967543
DW
413 if (mdi->next_state & DS_UNBLOCK) {
414 dprintf(" %d:-blocked", mdi->disk.raid_disk);
415 write_attr("-blocked", mdi->state_fd);
416 }
417
418 if ((mdi->next_state & DS_REMOVE) && mdi->state_fd >= 0) {
57632f4a 419 int remove_result;
8d45d196 420
8d45d196
DW
421 /* the kernel may not be able to immediately remove the
422 * disk, we can simply wait until the next event to try
423 * again.
424 */
57632f4a
NB
425 remove_result = write_attr("remove", mdi->state_fd);
426 if (remove_result > 0) {
4e6e574a 427 dprintf(" %d:removed", mdi->disk.raid_disk);
8d45d196 428 close(mdi->state_fd);
e40512fd 429 close(mdi->recovery_fd);
8d45d196
DW
430 mdi->state_fd = -1;
431 }
432 }
4e6e574a 433 if (mdi->next_state & DS_INSYNC) {
549e9569 434 write_attr("+in_sync", mdi->state_fd);
4e6e574a
DW
435 dprintf(" %d:+in_sync", mdi->disk.raid_disk);
436 }
549e9569 437 }
4e6e574a 438 dprintf(" )\n");
549e9569
NB
439
440 /* move curr_ to prev_ */
441 a->prev_state = a->curr_state;
442
443 a->prev_action = a->curr_action;
444
445 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
446 mdi->prev_state = mdi->curr_state;
447 mdi->next_state = 0;
448 }
449
0f99b4bd 450 if (check_degraded || check_reshape) {
7e1432fb 451 /* manager will do the actual check */
0f99b4bd
N
452 if (check_degraded)
453 a->check_degraded = 1;
454 if (check_reshape)
455 a->check_reshape = 1;
7e1432fb
NB
456 signal_manager();
457 }
458
2a0bb19e
DW
459 if (deactivate)
460 a->container = NULL;
461
140d3685 462 return dirty;
549e9569
NB
463}
464
0af73f61
DW
465static struct mdinfo *
466find_device(struct active_array *a, int major, int minor)
467{
468 struct mdinfo *mdi;
469
470 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
471 if (mdi->disk.major == major && mdi->disk.minor == minor)
472 return mdi;
473
474 return NULL;
475}
476
477static void reconcile_failed(struct active_array *aa, struct mdinfo *failed)
478{
479 struct active_array *a;
480 struct mdinfo *victim;
481
482 for (a = aa; a; a = a->next) {
ba714450 483 if (!a->container || a->to_remove)
0af73f61
DW
484 continue;
485 victim = find_device(a, failed->disk.major, failed->disk.minor);
486 if (!victim)
487 continue;
488
489 if (!(victim->curr_state & DS_FAULTY))
490 write_attr("faulty", victim->state_fd);
491 }
492}
493
4e6e574a
DW
494#ifdef DEBUG
495static void dprint_wake_reasons(fd_set *fds)
496{
497 int i;
498 char proc_path[256];
499 char link[256];
500 char *basename;
501 int rv;
502
503 fprintf(stderr, "monitor: wake ( ");
504 for (i = 0; i < FD_SETSIZE; i++) {
505 if (FD_ISSET(i, fds)) {
506 sprintf(proc_path, "/proc/%d/fd/%d",
507 (int) getpid(), i);
508
509 rv = readlink(proc_path, link, sizeof(link) - 1);
510 if (rv < 0) {
511 fprintf(stderr, "%d:unknown ", i);
512 continue;
513 }
514 link[rv] = '\0';
515 basename = strrchr(link, '/');
516 fprintf(stderr, "%d:%s ",
517 i, basename ? ++basename : link);
518 }
519 }
520 fprintf(stderr, ")\n");
521}
522#endif
523
1eb252b8
N
524int monitor_loop_cnt;
525
4d43913c 526static int wait_and_act(struct supertype *container, int nowait)
549e9569
NB
527{
528 fd_set rfds;
529 int maxfd = 0;
e0d6609f 530 struct active_array **aap = &container->arrays;
1ed3f387 531 struct active_array *a, **ap;
549e9569 532 int rv;
0af73f61 533 struct mdinfo *mdi;
6144ed44 534 static unsigned int dirty_arrays = ~0; /* start at some non-zero value */
549e9569
NB
535
536 FD_ZERO(&rfds);
537
1ed3f387
NB
538 for (ap = aap ; *ap ;) {
539 a = *ap;
540 /* once an array has been deactivated we want to
541 * ask the manager to discard it.
2a0bb19e 542 */
ba714450 543 if (!a->container || a->to_remove) {
1ed3f387
NB
544 if (discard_this) {
545 ap = &(*ap)->next;
546 continue;
547 }
548 *ap = a->next;
549 a->next = NULL;
550 discard_this = a;
551 signal_manager();
2a0bb19e 552 continue;
1ed3f387 553 }
2a0bb19e 554
549e9569
NB
555 add_fd(&rfds, &maxfd, a->info.state_fd);
556 add_fd(&rfds, &maxfd, a->action_fd);
484240d8 557 add_fd(&rfds, &maxfd, a->sync_completed_fd);
549e9569
NB
558 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
559 add_fd(&rfds, &maxfd, mdi->state_fd);
1ed3f387
NB
560
561 ap = &(*ap)->next;
549e9569
NB
562 }
563
6144ed44
DW
564 if (manager_ready && (*aap == NULL || (sigterm && !dirty_arrays))) {
565 /* No interesting arrays, or we have been told to
566 * terminate and everything is clean. Lets see about
567 * exiting. Note that blocking at this point is not a
568 * problem as there are no active arrays, there is
569 * nothing that we need to be ready to do.
e0d6609f 570 */
d998b738
N
571 int fd;
572 if (sigterm)
573 fd = open_dev_excl(container->devnum);
574 else
575 fd = open_dev_flags(container->devnum, O_RDONLY|O_EXCL);
e0d6609f
NB
576 if (fd >= 0 || errno != EBUSY) {
577 /* OK, we are safe to leave */
6144ed44
DW
578 if (sigterm && !dirty_arrays)
579 dprintf("caught sigterm, all clean... exiting\n");
580 else
581 dprintf("no arrays to monitor... exiting\n");
fa716c83
N
582 if (!sigterm)
583 /* On SIGTERM, someone (the take-over mdmon) will
584 * clean up
585 */
586 remove_pidfile(container->devname);
e0d6609f
NB
587 exit_now = 1;
588 signal_manager();
6f4cdfd9 589 close(fd);
e0d6609f
NB
590 exit(0);
591 }
592 }
593
549e9569 594 if (!nowait) {
4d43913c 595 sigset_t set;
d998b738
N
596 struct timespec ts;
597 ts.tv_sec = 24*3600;
598 ts.tv_nsec = 0;
599 if (*aap == NULL) {
600 /* just waiting to get O_EXCL access */
601 ts.tv_sec = 0;
602 ts.tv_nsec = 20000000ULL;
603 }
4d43913c
NB
604 sigprocmask(SIG_UNBLOCK, NULL, &set);
605 sigdelset(&set, SIGUSR1);
1eb252b8 606 monitor_loop_cnt |= 1;
d998b738 607 rv = pselect(maxfd+1, NULL, NULL, &rfds, &ts, &set);
1eb252b8 608 monitor_loop_cnt += 1;
bfa44e2e
NB
609 if (rv == -1 && errno == EINTR)
610 rv = 0;
4e6e574a
DW
611 #ifdef DEBUG
612 dprint_wake_reasons(&rfds);
613 #endif
614
549e9569
NB
615 }
616
2e735d19
NB
617 if (update_queue) {
618 struct metadata_update *this;
619
620 for (this = update_queue; this ; this = this->next)
621 container->ss->process_update(container, this);
622
623 update_queue_handled = update_queue;
624 update_queue = NULL;
625 signal_manager();
626 container->ss->sync_metadata(container);
627 }
628
3d2c4fc7 629 rv = 0;
6144ed44 630 dirty_arrays = 0;
1ed3f387 631 for (a = *aap; a ; a = a->next) {
6144ed44
DW
632 int is_dirty;
633
2a0bb19e 634 if (a->replaces && !discard_this) {
549e9569
NB
635 struct active_array **ap;
636 for (ap = &a->next; *ap && *ap != a->replaces;
637 ap = & (*ap)->next)
638 ;
639 if (*ap)
640 *ap = (*ap)->next;
641 discard_this = a->replaces;
642 a->replaces = NULL;
6c3fb95c 643 /* FIXME check if device->state_fd need to be cleared?*/
1ed3f387 644 signal_manager();
549e9569 645 }
ba714450 646 if (a->container && !a->to_remove) {
140d3685
DW
647 is_dirty = read_and_act(a);
648 rv |= 1;
649 dirty_arrays += is_dirty;
650 /* when terminating stop manipulating the array after it
651 * is clean, but make sure read_and_act() is given a
652 * chance to handle 'active_idle'
653 */
654 if (sigterm && !is_dirty)
655 a->container = NULL; /* stop touching this array */
6144ed44 656 }
549e9569 657 }
0af73f61
DW
658
659 /* propagate failures across container members */
1ed3f387 660 for (a = *aap; a ; a = a->next) {
ba714450 661 if (!a->container || a->to_remove)
0af73f61
DW
662 continue;
663 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
664 if (mdi->curr_state & DS_FAULTY)
1ed3f387 665 reconcile_failed(*aap, mdi);
0af73f61
DW
666 }
667
549e9569
NB
668 return rv;
669}
670
671void do_monitor(struct supertype *container)
672{
673 int rv;
674 int first = 1;
675 do {
4d43913c 676 rv = wait_and_act(container, first);
549e9569
NB
677 first = 0;
678 } while (rv >= 0);
679}