]> git.ipfire.org Git - thirdparty/mdadm.git/blame - managemon.c
mdmon: cleanup resync_start
[thirdparty/mdadm.git] / managemon.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/*
22 * The management thread for monitoring active md arrays.
23 * This thread does things which might block such as memory
24 * allocation.
25 * In particular:
26 *
27 * - Find out about new arrays in this container.
28 * Allocate the data structures and open the files.
29 *
30 * For this we watch /proc/mdstat and find new arrays with
31 * metadata type that confirms sharing. e.g. "md4"
32 * When we find a new array we slip it into the list of
33 * arrays and signal 'monitor' by writing to a pipe.
34 *
35 * - Respond to reshape requests by allocating new data structures
36 * and opening new files.
37 *
38 * These come as a change to raid_disks. We allocate a new
39 * version of the data structures and slip it into the list.
40 * 'monitor' will notice and release the old version.
41 * Changes to level, chunksize, layout.. do not need re-allocation.
42 * Reductions in raid_disks don't really either, but we handle
43 * them the same way for consistency.
44 *
45 * - When a device is added to the container, we add it to the metadata
46 * as a spare.
47 *
6c3fb95c
NB
48 * - Deal with degraded array
49 * We only do this when first noticing the array is degraded.
50 * This can be when we first see the array, when sync completes or
51 * when recovery completes.
52 *
53 * Check if number of failed devices suggests recovery is needed, and
54 * skip if not.
55 * Ask metadata to allocate a spare device
56 * Add device as not in_sync and give a role
57 * Update metadata.
58 * Open sysfs files and pass to monitor.
59 * Make sure that monitor Starts recovery....
549e9569
NB
60 *
61 * - Pass on metadata updates from external programs such as
62 * mdadm creating a new array.
63 *
64 * This is most-messy.
65 * It might involve adding a new array or changing the status of
66 * a spare, or any reconfig that the kernel doesn't get involved in.
67 *
68 * The required updates are received via a named pipe. There will
69 * be one named pipe for each container. Each message contains a
70 * sync marker: 0x5a5aa5a5, A byte count, and the message. This is
71 * passed to the metadata handler which will interpret and process it.
72 * For 'DDF' messages are internal data blocks with the leading
73 * 'magic number' signifying what sort of data it is.
74 *
75 */
76
77/*
78 * We select on /proc/mdstat and the named pipe.
79 * We create new arrays or updated version of arrays and slip
80 * them into the head of the list, then signal 'monitor' via a pipe write.
81 * 'monitor' will notice and place the old array on a return list.
82 * Metadata updates are placed on a queue just like they arrive
83 * from the named pipe.
84 *
85 * When new arrays are found based on correct metadata string, we
86 * need to identify them with an entry in the metadata. Maybe we require
87 * the metadata to be mdX/NN when NN is the index into an appropriate table.
88 *
89 */
90
91/*
92 * List of tasks:
93 * - Watch for spares to be added to the container, and write updated
94 * metadata to them.
95 * - Watch for new arrays using this container, confirm they match metadata
96 * and if so, start monitoring them
97 * - Watch for spares being added to monitored arrays. This shouldn't
98 * happen, as we should do all the adding. Just remove them.
99 * - Watch for change in raid-disks, chunk-size, etc. Update metadata and
100 * start a reshape.
101 */
102#ifndef _GNU_SOURCE
103#define _GNU_SOURCE
104#endif
105#include "mdadm.h"
106#include "mdmon.h"
4d43913c 107#include <sys/syscall.h>
549e9569 108#include <sys/socket.h>
1ed3f387 109#include <signal.h>
549e9569 110
2a0bb19e
DW
111static void close_aa(struct active_array *aa)
112{
113 struct mdinfo *d;
114
115 for (d = aa->info.devs; d; d = d->next)
116 close(d->state_fd);
117
118 close(aa->action_fd);
119 close(aa->info.state_fd);
120 close(aa->resync_start_fd);
2a0bb19e
DW
121}
122
549e9569
NB
123static void free_aa(struct active_array *aa)
124{
2a0bb19e
DW
125 /* Note that this doesn't close fds if they are being used
126 * by a clone. ->container will be set for a clone
549e9569 127 */
4e6e574a 128 dprintf("%s: devnum: %d\n", __func__, aa->devnum);
2a0bb19e
DW
129 if (!aa->container)
130 close_aa(aa);
549e9569
NB
131 while (aa->info.devs) {
132 struct mdinfo *d = aa->info.devs;
133 aa->info.devs = d->next;
134 free(d);
135 }
136 free(aa);
137}
138
6c3fb95c
NB
139static struct active_array *duplicate_aa(struct active_array *aa)
140{
141 struct active_array *newa = malloc(sizeof(*newa));
142 struct mdinfo **dp1, **dp2;
143
144 *newa = *aa;
145 newa->next = NULL;
146 newa->replaces = NULL;
147 newa->info.next = NULL;
148
149 dp2 = &newa->info.devs;
150
151 for (dp1 = &aa->info.devs; *dp1; dp1 = &(*dp1)->next) {
152 struct mdinfo *d;
153 if ((*dp1)->state_fd < 0)
154 continue;
155
156 d = malloc(sizeof(*d));
157 *d = **dp1;
158 *dp2 = d;
159 dp2 = & d->next;
160 }
7e1432fb 161 *dp2 = NULL;
6c3fb95c
NB
162
163 return newa;
164}
165
4d43913c 166static void wakeup_monitor(void)
2a0bb19e 167{
4d43913c
NB
168 /* tgkill(getpid(), mon_tid, SIGUSR1); */
169 int pid = getpid();
170 syscall(SYS_tgkill, pid, mon_tid, SIGUSR1);
2a0bb19e
DW
171}
172
1ed3f387
NB
173static void remove_old(void)
174{
175 if (discard_this) {
176 discard_this->next = NULL;
177 free_aa(discard_this);
178 if (pending_discard == discard_this)
179 pending_discard = NULL;
180 discard_this = NULL;
48561b01 181 wakeup_monitor();
1ed3f387
NB
182 }
183}
184
549e9569
NB
185static void replace_array(struct supertype *container,
186 struct active_array *old,
187 struct active_array *new)
188{
189 /* To replace an array, we add it to the top of the list
190 * marked with ->replaces to point to the original.
191 * 'monitor' will take the original out of the list
192 * and put it on 'discard_this'. We take it from there
193 * and discard it.
194 */
1ed3f387 195 remove_old();
549e9569
NB
196 while (pending_discard) {
197 while (discard_this == NULL)
198 sleep(1);
1ed3f387 199 remove_old();
549e9569
NB
200 }
201 pending_discard = old;
202 new->replaces = old;
203 new->next = container->arrays;
204 container->arrays = new;
4d43913c 205 wakeup_monitor();
549e9569
NB
206}
207
2e735d19
NB
208struct metadata_update *update_queue = NULL;
209struct metadata_update *update_queue_handled = NULL;
210struct metadata_update *update_queue_pending = NULL;
211
071cfc42 212static void free_updates(struct metadata_update **update)
2e735d19 213{
071cfc42
DW
214 while (*update) {
215 struct metadata_update *this = *update;
216
217 *update = this->next;
904c1ef7 218 free(this->buf);
071cfc42 219 free(this->space);
2e735d19
NB
220 free(this);
221 }
071cfc42
DW
222}
223
224void check_update_queue(struct supertype *container)
225{
226 free_updates(&update_queue_handled);
227
2e735d19
NB
228 if (update_queue == NULL &&
229 update_queue_pending) {
230 update_queue = update_queue_pending;
231 update_queue_pending = NULL;
4d43913c 232 wakeup_monitor();
2e735d19
NB
233 }
234}
235
6c3fb95c 236static void queue_metadata_update(struct metadata_update *mu)
2e735d19
NB
237{
238 struct metadata_update **qp;
239
240 qp = &update_queue_pending;
241 while (*qp)
242 qp = & ((*qp)->next);
243 *qp = mu;
244}
245
43dad3d6
DW
246static void add_disk_to_container(struct supertype *st, struct mdinfo *sd)
247{
248 int dfd;
249 char nm[20];
661dce36 250 struct supertype *st2;
43dad3d6 251 struct metadata_update *update = NULL;
661dce36 252 struct mdinfo info;
43dad3d6
DW
253 mdu_disk_info_t dk = {
254 .number = -1,
255 .major = sd->disk.major,
256 .minor = sd->disk.minor,
257 .raid_disk = -1,
258 .state = 0,
259 };
260
261 dprintf("%s: add %d:%d to container\n",
262 __func__, sd->disk.major, sd->disk.minor);
263
04a8ac08
DW
264 sd->next = st->devs;
265 st->devs = sd;
266
43dad3d6
DW
267 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
268 dfd = dev_open(nm, O_RDWR);
269 if (dfd < 0)
270 return;
271
661dce36
N
272 /* Check the metadata and see if it is already part of this
273 * array
274 */
275 st2 = dup_super(st);
276 if (st2->ss->load_super(st2, dfd, NULL) == 0) {
277 st2->ss->getinfo_super(st, &info);
278 if (st->ss->compare_super(st, st2) == 0 &&
279 info.disk.raid_disk >= 0) {
280 /* Looks like a good member of array.
281 * Just accept it.
282 * mdadm will incorporate any parts into
283 * active arrays.
284 */
285 st2->ss->free_super(st2);
286 return;
287 }
288 }
289 st2->ss->free_super(st2);
290
43dad3d6
DW
291 st->update_tail = &update;
292 st->ss->add_to_super(st, &dk, dfd, NULL);
293 st->ss->write_init_super(st);
294 queue_metadata_update(update);
295 st->update_tail = NULL;
296}
297
549e9569
NB
298static void manage_container(struct mdstat_ent *mdstat,
299 struct supertype *container)
300{
301 /* The only thing of interest here is if a new device
302 * has been added to the container. We add it to the
303 * array ignoring any metadata on it.
304 * FIXME should we look for compatible metadata and take hints
305 * about spare assignment.... probably not.
549e9569
NB
306 */
307 if (mdstat->devcnt != container->devcnt) {
7bc1962f
DW
308 struct mdinfo **cdp, *cd, *di, *mdi;
309 int found;
310
549e9569
NB
311 /* read /sys/block/NAME/md/dev-??/block/dev to find out
312 * what is there, and compare with container->info.devs
313 * To see what is removed and what is added.
314 * These need to be remove from, or added to, the array
315 */
7da80e6f 316 mdi = sysfs_read(-1, mdstat->devnum, GET_DEVS|SKIP_GONE_DEVS);
313a4a82
DW
317 if (!mdi) {
318 /* invalidate the current count so we can try again */
319 container->devcnt = -1;
7bc1962f 320 return;
313a4a82 321 }
7bc1962f
DW
322
323 /* check for removals */
324 for (cdp = &container->devs; *cdp; ) {
325 found = 0;
326 for (di = mdi->devs; di; di = di->next)
327 if (di->disk.major == (*cdp)->disk.major &&
328 di->disk.minor == (*cdp)->disk.minor) {
329 found = 1;
330 break;
331 }
332 if (!found) {
333 cd = *cdp;
334 *cdp = (*cdp)->next;
335 free(cd);
336 } else
337 cdp = &(*cdp)->next;
338 }
43dad3d6
DW
339
340 /* check for additions */
341 for (di = mdi->devs; di; di = di->next) {
342 for (cd = container->devs; cd; cd = cd->next)
343 if (di->disk.major == cd->disk.major &&
344 di->disk.minor == cd->disk.minor)
345 break;
04a8ac08
DW
346 if (!cd) {
347 struct mdinfo *newd = malloc(sizeof(*newd));
348
349 if (!newd) {
350 container->devcnt = -1;
351 continue;
352 }
353 *newd = *di;
354 add_disk_to_container(container, newd);
355 }
43dad3d6 356 }
7bc1962f 357 sysfs_free(mdi);
549e9569
NB
358 container->devcnt = mdstat->devcnt;
359 }
360}
361
362static void manage_member(struct mdstat_ent *mdstat,
363 struct active_array *a)
364{
365 /* Compare mdstat info with known state of member array.
366 * We do not need to look for device state changes here, that
367 * is dealt with by the monitor.
368 *
369 * We just look for changes which suggest that a reshape is
370 * being requested.
371 * Unfortunately decreases in raid_disks don't show up in
372 * mdstat until the reshape completes FIXME.
6c3fb95c
NB
373 *
374 * Actually, we also want to handle degraded arrays here by
375 * trying to find and assign a spare.
376 * We do that whenever the monitor tells us too.
549e9569
NB
377 */
378 // FIXME
379 a->info.array.raid_disks = mdstat->raid_disks;
380 a->info.array.chunk_size = mdstat->chunk_size;
381 // MORE
382
6c3fb95c
NB
383 if (a->check_degraded) {
384 struct metadata_update *updates = NULL;
071cfc42 385 struct mdinfo *newdev = NULL;
6c3fb95c 386 struct active_array *newa;
071cfc42 387 struct mdinfo *d;
3c00ffbe 388
6c3fb95c
NB
389 a->check_degraded = 0;
390
391 /* The array may not be degraded, this is just a good time
392 * to check.
393 */
394 newdev = a->container->ss->activate_spare(a, &updates);
071cfc42
DW
395 if (!newdev)
396 return;
397
398 newa = duplicate_aa(a);
399 if (!newa)
400 goto out;
401 /* Cool, we can add a device or several. */
402
403 /* Add device to array and set offset/size/slot.
404 * and open files for each newdev */
405 for (d = newdev; d ; d = d->next) {
406 struct mdinfo *newd;
407
408 newd = malloc(sizeof(*newd));
409 if (!newd)
410 continue;
411 if (sysfs_add_disk(&newa->info, d, 0) < 0) {
412 free(newd);
413 continue;
6c3fb95c 414 }
071cfc42
DW
415 *newd = *d;
416 newd->next = newa->info.devs;
417 newa->info.devs = newd;
418
419 newd->state_fd = sysfs_open(a->devnum, newd->sys_name,
420 "state");
421 newd->prev_state = read_dev_state(newd->state_fd);
422 newd->curr_state = newd->prev_state;
423 }
424 queue_metadata_update(updates);
425 updates = NULL;
426 replace_array(a->container, a, newa);
427 sysfs_set_str(&a->info, NULL, "sync_action", "recover");
428 out:
429 while (newdev) {
430 d = newdev->next;
431 free(newdev);
432 newdev = d;
6c3fb95c 433 }
071cfc42 434 free_updates(&updates);
6c3fb95c 435 }
549e9569
NB
436}
437
836759d5
DW
438static int aa_ready(struct active_array *aa)
439{
440 struct mdinfo *d;
441 int level = aa->info.array.level;
442
443 for (d = aa->info.devs; d; d = d->next)
444 if (d->state_fd < 0)
445 return 0;
446
447 if (aa->info.state_fd < 0)
448 return 0;
449
450 if (level > 0 && (aa->action_fd < 0 || aa->resync_start_fd < 0))
451 return 0;
452
453 if (!aa->container)
454 return 0;
455
456 return 1;
457}
458
549e9569 459static void manage_new(struct mdstat_ent *mdstat,
2a0bb19e
DW
460 struct supertype *container,
461 struct active_array *victim)
549e9569
NB
462{
463 /* A new array has appeared in this container.
464 * Hopefully it is already recorded in the metadata.
465 * Check, then create the new array to report it to
466 * the monitor.
467 */
468
469 struct active_array *new;
470 struct mdinfo *mdi, *di;
cba0191b 471 char *inst;
549e9569 472 int i;
f1d26766 473 int failed = 0;
549e9569 474
836759d5
DW
475 /* check if array is ready to be monitored */
476 if (!mdstat->active)
477 return;
478
479 mdi = sysfs_read(-1, mdstat->devnum,
480 GET_LEVEL|GET_CHUNK|GET_DISKS|GET_COMPONENT|
f1d26766 481 GET_DEGRADED|GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE);
836759d5 482
549e9569
NB
483 new = malloc(sizeof(*new));
484
836759d5
DW
485 if (!new || !mdi) {
486 if (mdi)
487 sysfs_free(mdi);
488 if (new)
489 free(new);
490 return;
491 }
d52690ac
NB
492 memset(new, 0, sizeof(*new));
493
549e9569 494 new->devnum = mdstat->devnum;
7e1432fb 495 strcpy(new->info.sys_name, devnum2devname(new->devnum));
549e9569
NB
496
497 new->prev_state = new->curr_state = new->next_state = inactive;
498 new->prev_action= new->curr_action= new->next_action= idle;
499
500 new->container = container;
501
cba0191b 502 inst = &mdstat->metadata_version[10+strlen(container->devname)+1];
549e9569 503
549e9569 504 new->info.array = mdi->array;
272bcc48 505 new->info.component_size = mdi->component_size;
549e9569
NB
506
507 for (i = 0; i < new->info.array.raid_disks; i++) {
508 struct mdinfo *newd = malloc(sizeof(*newd));
509
510 for (di = mdi->devs; di; di = di->next)
511 if (i == di->disk.raid_disk)
512 break;
513
7da80e6f 514 if (di && newd) {
549e9569
NB
515 memcpy(newd, di, sizeof(*newd));
516
549e9569
NB
517 newd->state_fd = sysfs_open(new->devnum,
518 newd->sys_name,
519 "state");
520
521 newd->prev_state = read_dev_state(newd->state_fd);
6c3fb95c 522 newd->curr_state = newd->prev_state;
f1d26766 523 } else {
7da80e6f
DW
524 if (newd)
525 free(newd);
526
f1d26766 527 failed++;
7da80e6f
DW
528 if (failed > new->info.array.failed_disks) {
529 /* we cannot properly monitor without all working disks */
530 new->container = NULL;
531 break;
532 }
f1d26766 533 continue;
549e9569 534 }
7e1432fb 535 sprintf(newd->sys_name, "rd%d", i);
549e9569
NB
536 newd->next = new->info.devs;
537 new->info.devs = newd;
538 }
836759d5 539
549e9569
NB
540 new->action_fd = sysfs_open(new->devnum, NULL, "sync_action");
541 new->info.state_fd = sysfs_open(new->devnum, NULL, "array_state");
c052ba30 542 new->resync_start_fd = sysfs_open(new->devnum, NULL, "resync_start");
e9dd1598 543 new->metadata_fd = sysfs_open(new->devnum, NULL, "metadata_version");
4e6e574a
DW
544 dprintf("%s: inst: %d action: %d state: %d\n", __func__, atoi(inst),
545 new->action_fd, new->info.state_fd);
549e9569 546
4fa5aef9 547 sysfs_free(mdi);
836759d5
DW
548
549 /* if everything checks out tell the metadata handler we want to
550 * manage this instance
551 */
552 if (!aa_ready(new) || container->ss->open_new(container, new, inst) < 0) {
553 fprintf(stderr, "mdmon: failed to monitor %s\n",
554 mdstat->metadata_version);
549e9569 555 new->container = NULL;
836759d5 556 free_aa(new);
93f7caca 557 } else {
2a0bb19e 558 replace_array(container, victim, new);
93f7caca
DW
559 if (failed) {
560 new->check_degraded = 1;
561 manage_member(mdstat, new);
562 }
563 }
549e9569
NB
564}
565
5d19760d 566void manage(struct mdstat_ent *mdstat, struct supertype *container)
549e9569
NB
567{
568 /* We have just read mdstat and need to compare it with
569 * the known active arrays.
570 * Arrays with the wrong metadata are ignored.
571 */
572
573 for ( ; mdstat ; mdstat = mdstat->next) {
574 struct active_array *a;
575 if (mdstat->devnum == container->devnum) {
576 manage_container(mdstat, container);
577 continue;
578 }
883a6142 579 if (!is_container_member(mdstat, container->devname))
549e9569
NB
580 /* Not for this array */
581 continue;
582 /* Looks like a member of this container */
5d19760d 583 for (a = container->arrays; a; a = a->next) {
549e9569
NB
584 if (mdstat->devnum == a->devnum) {
585 if (a->container)
586 manage_member(mdstat, a);
587 break;
588 }
589 }
2a0bb19e
DW
590 if (a == NULL || !a->container)
591 manage_new(mdstat, container, a);
549e9569
NB
592 }
593}
594
edd8d13c 595static void handle_message(struct supertype *container, struct metadata_update *msg)
3e70c845 596{
edd8d13c
NB
597 /* queue this metadata update through to the monitor */
598
599 struct metadata_update *mu;
600
313a4a82 601 if (msg->len <= 0)
3c00ffbe
N
602 while (update_queue_pending || update_queue) {
603 check_update_queue(container);
604 usleep(15*1000);
605 }
606
313a4a82
DW
607 if (msg->len == 0) { /* ping_monitor */
608 int cnt;
609
3c00ffbe 610 cnt = monitor_loop_cnt;
1eb252b8
N
611 if (cnt & 1)
612 cnt += 2; /* wait until next pselect */
613 else
614 cnt += 3; /* wait for 2 pselects */
615 wakeup_monitor();
3c00ffbe 616
1eb252b8
N
617 while (monitor_loop_cnt - cnt < 0)
618 usleep(10 * 1000);
313a4a82
DW
619 } else if (msg->len == -1) { /* ping_manager */
620 struct mdstat_ent *mdstat = mdstat_read(1, 0);
621
622 manage(mdstat, container);
623 free_mdstat(mdstat);
6144ed44 624 } else if (!sigterm) {
edd8d13c
NB
625 mu = malloc(sizeof(*mu));
626 mu->len = msg->len;
627 mu->buf = msg->buf;
628 msg->buf = NULL;
629 mu->space = NULL;
630 mu->next = NULL;
631 if (container->ss->prepare_update)
632 container->ss->prepare_update(container, mu);
633 queue_metadata_update(mu);
634 }
3e70c845
DW
635}
636
637void read_sock(struct supertype *container)
549e9569
NB
638{
639 int fd;
bfa44e2e 640 struct metadata_update msg;
b109d928
DW
641 int terminate = 0;
642 long fl;
643 int tmo = 3; /* 3 second timeout before hanging up the socket */
549e9569 644
3e70c845 645 fd = accept(container->sock, NULL, NULL);
549e9569
NB
646 if (fd < 0)
647 return;
b109d928
DW
648
649 fl = fcntl(fd, F_GETFL, 0);
650 fl |= O_NONBLOCK;
651 fcntl(fd, F_SETFL, fl);
652
653 do {
654 msg.buf = NULL;
655
656 /* read and validate the message */
657 if (receive_message(fd, &msg, tmo) == 0) {
bfa44e2e
NB
658 handle_message(container, &msg);
659 if (ack(fd, tmo) < 0)
660 terminate = 1;
661 } else
b109d928 662 terminate = 1;
b109d928 663
b109d928
DW
664 } while (!terminate);
665
549e9569
NB
666 close(fd);
667}
1ed3f387 668
e0d6609f
NB
669int exit_now = 0;
670int manager_ready = 0;
549e9569
NB
671void do_manager(struct supertype *container)
672{
673 struct mdstat_ent *mdstat;
4d43913c 674 sigset_t set;
695154b2 675 int proc_fd;
1ed3f387 676
4d43913c
NB
677 sigprocmask(SIG_UNBLOCK, NULL, &set);
678 sigdelset(&set, SIGUSR1);
295646b3 679 sigdelset(&set, SIGHUP);
695154b2 680 sigdelset(&set, SIGALRM);
6144ed44 681 sigdelset(&set, SIGTERM);
695154b2 682 proc_fd = open("/proc/mounts", O_RDONLY);
549e9569
NB
683
684 do {
1ed3f387 685
e0d6609f
NB
686 if (exit_now)
687 exit(0);
688
3c00ffbe
N
689 /* Can only 'manage' things if 'monitor' is not making
690 * structural changes to metadata, so need to check
691 * update_queue
692 */
693 if (update_queue == NULL) {
694 mdstat = mdstat_read(1, 0);
549e9569 695
3c00ffbe 696 manage(mdstat, container);
549e9569 697
3c00ffbe 698 read_sock(container);
4fa5aef9 699
695154b2 700 if (container->sock < 0 || socket_hup_requested) {
96a8270d
DW
701 /* If this fails, we hope it already exists
702 * pid file lives in /var/run/mdadm/mdXX.pid
703 */
704 mkdir("/var", 0600);
705 mkdir("/var/run", 0600);
706 mkdir("/var/run/mdadm", 0600);
295646b3
DW
707 close(container->sock);
708 container->sock = make_control_sock(container->devname);
709 make_pidfile(container->devname, 0);
710 socket_hup_requested = 0;
711 }
695154b2
DW
712 if (container->sock < 0)
713 alarm(30);
295646b3 714
3c00ffbe
N
715 free_mdstat(mdstat);
716 }
1ed3f387
NB
717 remove_old();
718
2e735d19
NB
719 check_update_queue(container);
720
e0d6609f 721 manager_ready = 1;
4d43913c 722
6144ed44
DW
723 if (sigterm)
724 wakeup_monitor();
725
695154b2
DW
726 if (update_queue == NULL) {
727 if (container->sock < 0)
728 mdstat_wait_fd(proc_fd, &set);
729 else
730 mdstat_wait_fd(container->sock, &set);
731 } else
3c00ffbe
N
732 /* If an update is happening, just wait for signal */
733 pselect(0, NULL, NULL, NULL, NULL, &set);
549e9569
NB
734 } while(1);
735}