]> git.ipfire.org Git - thirdparty/mdadm.git/blob - managemon.c
mdmon: allow manage_member to cope with ->container becoming NULL.
[thirdparty/mdadm.git] / managemon.c
1 /*
2 * mdmon - monitor external metadata arrays
3 *
4 * Copyright (C) 2007-2009 Neil Brown <neilb@suse.de>
5 * Copyright (C) 2007-2009 Intel Corporation
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 */
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 *
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....
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"
107 #include <sys/syscall.h>
108 #include <sys/socket.h>
109 #include <signal.h>
110
111 static 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->recovery_fd);
117 close(d->state_fd);
118 }
119
120 close(aa->action_fd);
121 close(aa->info.state_fd);
122 close(aa->resync_start_fd);
123 close(aa->metadata_fd);
124 close(aa->sync_completed_fd);
125 }
126
127 static void free_aa(struct active_array *aa)
128 {
129 /* Note that this doesn't close fds if they are being used
130 * by a clone. ->container will be set for a clone
131 */
132 dprintf("%s: devnum: %d\n", __func__, aa->devnum);
133 if (!aa->container)
134 close_aa(aa);
135 while (aa->info.devs) {
136 struct mdinfo *d = aa->info.devs;
137 aa->info.devs = d->next;
138 free(d);
139 }
140 free(aa);
141 }
142
143 static struct active_array *duplicate_aa(struct active_array *aa)
144 {
145 struct active_array *newa = malloc(sizeof(*newa));
146 struct mdinfo **dp1, **dp2;
147
148 *newa = *aa;
149 newa->next = NULL;
150 newa->replaces = NULL;
151 newa->info.next = NULL;
152
153 dp2 = &newa->info.devs;
154
155 for (dp1 = &aa->info.devs; *dp1; dp1 = &(*dp1)->next) {
156 struct mdinfo *d;
157 if ((*dp1)->state_fd < 0)
158 continue;
159
160 d = malloc(sizeof(*d));
161 *d = **dp1;
162 *dp2 = d;
163 dp2 = & d->next;
164 }
165 *dp2 = NULL;
166
167 return newa;
168 }
169
170 static void wakeup_monitor(void)
171 {
172 /* tgkill(getpid(), mon_tid, SIGUSR1); */
173 int pid = getpid();
174 syscall(SYS_tgkill, pid, mon_tid, SIGUSR1);
175 }
176
177 static void remove_old(void)
178 {
179 if (discard_this) {
180 discard_this->next = NULL;
181 free_aa(discard_this);
182 if (pending_discard == discard_this)
183 pending_discard = NULL;
184 discard_this = NULL;
185 wakeup_monitor();
186 }
187 }
188
189 static void replace_array(struct supertype *container,
190 struct active_array *old,
191 struct active_array *new)
192 {
193 /* To replace an array, we add it to the top of the list
194 * marked with ->replaces to point to the original.
195 * 'monitor' will take the original out of the list
196 * and put it on 'discard_this'. We take it from there
197 * and discard it.
198 */
199 remove_old();
200 while (pending_discard) {
201 while (discard_this == NULL)
202 sleep(1);
203 remove_old();
204 }
205 pending_discard = old;
206 new->replaces = old;
207 new->next = container->arrays;
208 container->arrays = new;
209 wakeup_monitor();
210 }
211
212 struct metadata_update *update_queue = NULL;
213 struct metadata_update *update_queue_handled = NULL;
214 struct metadata_update *update_queue_pending = NULL;
215
216 static void free_updates(struct metadata_update **update)
217 {
218 while (*update) {
219 struct metadata_update *this = *update;
220 void **space_list = this->space_list;
221
222 *update = this->next;
223 free(this->buf);
224 free(this->space);
225 while (space_list) {
226 void *space = space_list;
227 space_list = *space_list;
228 free(space);
229 }
230 free(this);
231 }
232 }
233
234 void check_update_queue(struct supertype *container)
235 {
236 free_updates(&update_queue_handled);
237
238 if (update_queue == NULL &&
239 update_queue_pending) {
240 update_queue = update_queue_pending;
241 update_queue_pending = NULL;
242 wakeup_monitor();
243 }
244 }
245
246 static void queue_metadata_update(struct metadata_update *mu)
247 {
248 struct metadata_update **qp;
249
250 qp = &update_queue_pending;
251 while (*qp)
252 qp = & ((*qp)->next);
253 *qp = mu;
254 }
255
256 static void add_disk_to_container(struct supertype *st, struct mdinfo *sd)
257 {
258 int dfd;
259 char nm[20];
260 struct supertype *st2;
261 struct metadata_update *update = NULL;
262 struct mdinfo info;
263 mdu_disk_info_t dk = {
264 .number = -1,
265 .major = sd->disk.major,
266 .minor = sd->disk.minor,
267 .raid_disk = -1,
268 .state = 0,
269 };
270
271 dprintf("%s: add %d:%d to container\n",
272 __func__, sd->disk.major, sd->disk.minor);
273
274 sd->next = st->devs;
275 st->devs = sd;
276
277 sprintf(nm, "%d:%d", sd->disk.major, sd->disk.minor);
278 dfd = dev_open(nm, O_RDWR);
279 if (dfd < 0)
280 return;
281
282 /* Check the metadata and see if it is already part of this
283 * array
284 */
285 st2 = dup_super(st);
286 if (st2->ss->load_super(st2, dfd, NULL) == 0) {
287 st2->ss->getinfo_super(st, &info, NULL);
288 if (st->ss->compare_super(st, st2) == 0 &&
289 info.disk.raid_disk >= 0) {
290 /* Looks like a good member of array.
291 * Just accept it.
292 * mdadm will incorporate any parts into
293 * active arrays.
294 */
295 st2->ss->free_super(st2);
296 return;
297 }
298 }
299 st2->ss->free_super(st2);
300
301 st->update_tail = &update;
302 st->ss->add_to_super(st, &dk, dfd, NULL);
303 st->ss->write_init_super(st);
304 queue_metadata_update(update);
305 st->update_tail = NULL;
306 }
307
308 /*
309 * Create and queue update structure about the removed disks.
310 * The update is prepared by super type handler and passed to the monitor
311 * thread.
312 */
313 static void remove_disk_from_container(struct supertype *st, struct mdinfo *sd)
314 {
315 struct metadata_update *update = NULL;
316 mdu_disk_info_t dk = {
317 .number = -1,
318 .major = sd->disk.major,
319 .minor = sd->disk.minor,
320 .raid_disk = -1,
321 .state = 0,
322 };
323 dprintf("%s: remove %d:%d from container\n",
324 __func__, sd->disk.major, sd->disk.minor);
325
326 st->update_tail = &update;
327 st->ss->remove_from_super(st, &dk);
328 /* FIXME this write_init_super shouldn't be here.
329 * We have it after add_to_super to write to new device,
330 * but with 'remove' we don't ant to write to that device!
331 */
332 st->ss->write_init_super(st);
333 queue_metadata_update(update);
334 st->update_tail = NULL;
335 }
336
337 static void manage_container(struct mdstat_ent *mdstat,
338 struct supertype *container)
339 {
340 /* Of interest here are:
341 * - if a new device has been added to the container, we
342 * add it to the array ignoring any metadata on it.
343 * - if a device has been removed from the container, we
344 * remove it from the device list and update the metadata.
345 * FIXME should we look for compatible metadata and take hints
346 * about spare assignment.... probably not.
347 */
348 if (mdstat->devcnt != container->devcnt) {
349 struct mdinfo **cdp, *cd, *di, *mdi;
350 int found;
351
352 /* read /sys/block/NAME/md/dev-??/block/dev to find out
353 * what is there, and compare with container->info.devs
354 * To see what is removed and what is added.
355 * These need to be remove from, or added to, the array
356 */
357 mdi = sysfs_read(-1, mdstat->devnum, GET_DEVS);
358 if (!mdi) {
359 /* invalidate the current count so we can try again */
360 container->devcnt = -1;
361 return;
362 }
363
364 /* check for removals */
365 for (cdp = &container->devs; *cdp; ) {
366 found = 0;
367 for (di = mdi->devs; di; di = di->next)
368 if (di->disk.major == (*cdp)->disk.major &&
369 di->disk.minor == (*cdp)->disk.minor) {
370 found = 1;
371 break;
372 }
373 if (!found) {
374 cd = *cdp;
375 *cdp = (*cdp)->next;
376 remove_disk_from_container(container, cd);
377 free(cd);
378 } else
379 cdp = &(*cdp)->next;
380 }
381
382 /* check for additions */
383 for (di = mdi->devs; di; di = di->next) {
384 for (cd = container->devs; cd; cd = cd->next)
385 if (di->disk.major == cd->disk.major &&
386 di->disk.minor == cd->disk.minor)
387 break;
388 if (!cd) {
389 struct mdinfo *newd = malloc(sizeof(*newd));
390
391 if (!newd) {
392 container->devcnt = -1;
393 continue;
394 }
395 *newd = *di;
396 add_disk_to_container(container, newd);
397 }
398 }
399 sysfs_free(mdi);
400 container->devcnt = mdstat->devcnt;
401 }
402 }
403
404 static int disk_init_and_add(struct mdinfo *disk, struct mdinfo *clone,
405 struct active_array *aa)
406 {
407 if (!disk || !clone)
408 return -1;
409
410 *disk = *clone;
411 disk->recovery_fd = sysfs_open(aa->devnum, disk->sys_name, "recovery_start");
412 disk->state_fd = sysfs_open(aa->devnum, disk->sys_name, "state");
413 disk->prev_state = read_dev_state(disk->state_fd);
414 disk->curr_state = disk->prev_state;
415 disk->next = aa->info.devs;
416 aa->info.devs = disk;
417
418 return 0;
419 }
420
421 static void manage_member(struct mdstat_ent *mdstat,
422 struct active_array *a)
423 {
424 /* Compare mdstat info with known state of member array.
425 * We do not need to look for device state changes here, that
426 * is dealt with by the monitor.
427 *
428 * If a reshape is being requested, monitor will have noticed
429 * that sync_action changed and will have set check_reshape.
430 * We just need to see if new devices have appeared. All metadata
431 * updates will already have been processed.
432 *
433 * We also want to handle degraded arrays here by
434 * trying to find and assign a spare.
435 * We do that whenever the monitor tells us too.
436 */
437 char buf[64];
438 int frozen;
439 struct supertype *container = a->container;
440
441 if (container == NULL)
442 /* Raced with something */
443 return;
444
445 // FIXME
446 a->info.array.raid_disks = mdstat->raid_disks;
447 // MORE
448
449 /* honor 'frozen' */
450 if (sysfs_get_str(&a->info, NULL, "metadata_version", buf, sizeof(buf)) > 0)
451 frozen = buf[9] == '-';
452 else
453 frozen = 1; /* can't read metadata_version assume the worst */
454
455 /* If sync_action is not 'idle' then don't try recovery now */
456 if (!frozen
457 && sysfs_get_str(&a->info, NULL, "sync_action", buf, sizeof(buf)) > 0
458 && strncmp(buf, "idle", 4) != 0)
459 frozen = 1;
460
461 if (mdstat->level) {
462 int level = map_name(pers, mdstat->level);
463 if (a->info.array.level != level && level >= 0) {
464 struct active_array *newa = duplicate_aa(a);
465 if (newa) {
466 newa->info.array.level = level;
467 replace_array(container, a, newa);
468 a = newa;
469 }
470 }
471 }
472
473 /* We don't check the array while any update is pending, as it
474 * might container a change (such as a spare assignment) which
475 * could affect our decisions.
476 */
477 if (a->check_degraded && !frozen &&
478 update_queue == NULL && update_queue_pending == NULL) {
479 struct metadata_update *updates = NULL;
480 struct mdinfo *newdev = NULL;
481 struct active_array *newa;
482 struct mdinfo *d;
483
484 a->check_degraded = 0;
485
486 /* The array may not be degraded, this is just a good time
487 * to check.
488 */
489 newdev = container->ss->activate_spare(a, &updates);
490 if (!newdev)
491 return;
492
493 newa = duplicate_aa(a);
494 if (!newa)
495 goto out;
496 /* Cool, we can add a device or several. */
497
498 /* Add device to array and set offset/size/slot.
499 * and open files for each newdev */
500 for (d = newdev; d ; d = d->next) {
501 struct mdinfo *newd;
502
503 newd = malloc(sizeof(*newd));
504 if (!newd)
505 continue;
506 if (sysfs_add_disk(&newa->info, d, 0) < 0) {
507 free(newd);
508 continue;
509 }
510 disk_init_and_add(newd, d, newa);
511 }
512 queue_metadata_update(updates);
513 updates = NULL;
514 replace_array(container, a, newa);
515 sysfs_set_str(&a->info, NULL, "sync_action", "recover");
516 out:
517 while (newdev) {
518 d = newdev->next;
519 free(newdev);
520 newdev = d;
521 }
522 free_updates(&updates);
523 }
524
525 if (a->check_reshape) {
526 /* mdadm might have added some devices to the array.
527 * We want to disk_init_and_add any such device to a
528 * duplicate_aa and replace a with that.
529 * mdstat doesn't have enough info so we sysfs_read
530 * and look for new stuff.
531 */
532 struct mdinfo *info, *d, *d2, *newd;
533 unsigned long long array_size;
534 struct active_array *newa = NULL;
535 a->check_reshape = 0;
536 info = sysfs_read(-1, mdstat->devnum,
537 GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE);
538 if (!info)
539 goto out2;
540 for (d = info->devs; d; d = d->next) {
541 if (d->disk.raid_disk < 0)
542 continue;
543 for (d2 = a->info.devs; d2; d2 = d2->next)
544 if (d2->disk.raid_disk ==
545 d->disk.raid_disk)
546 break;
547 if (d2)
548 /* already have this one */
549 continue;
550 if (!newa) {
551 newa = duplicate_aa(a);
552 if (!newa)
553 break;
554 }
555 newd = malloc(sizeof(*newd));
556 if (!newd)
557 continue;
558 disk_init_and_add(newd, d, newa);
559 }
560 if (sysfs_get_ll(info, NULL, "array_size", &array_size) == 0
561 && a->info.custom_array_size > array_size*2) {
562 sysfs_set_num(info, NULL, "array_size",
563 a->info.custom_array_size/2);
564 }
565 out2:
566 sysfs_free(info);
567 if (newa)
568 replace_array(container, a, newa);
569 }
570 }
571
572 static int aa_ready(struct active_array *aa)
573 {
574 struct mdinfo *d;
575 int level = aa->info.array.level;
576
577 for (d = aa->info.devs; d; d = d->next)
578 if (d->state_fd < 0)
579 return 0;
580
581 if (aa->info.state_fd < 0)
582 return 0;
583
584 if (level > 0 && (aa->action_fd < 0 || aa->resync_start_fd < 0))
585 return 0;
586
587 if (!aa->container)
588 return 0;
589
590 return 1;
591 }
592
593 static void manage_new(struct mdstat_ent *mdstat,
594 struct supertype *container,
595 struct active_array *victim)
596 {
597 /* A new array has appeared in this container.
598 * Hopefully it is already recorded in the metadata.
599 * Check, then create the new array to report it to
600 * the monitor.
601 */
602
603 struct active_array *new;
604 struct mdinfo *mdi, *di;
605 char *inst;
606 int i;
607 int failed = 0;
608 char buf[40];
609
610 /* check if array is ready to be monitored */
611 if (!mdstat->active)
612 return;
613
614 mdi = sysfs_read(-1, mdstat->devnum,
615 GET_LEVEL|GET_CHUNK|GET_DISKS|GET_COMPONENT|
616 GET_DEGRADED|GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE);
617
618 new = malloc(sizeof(*new));
619
620 if (!new || !mdi) {
621 if (mdi)
622 sysfs_free(mdi);
623 if (new)
624 free(new);
625 return;
626 }
627 memset(new, 0, sizeof(*new));
628
629 new->devnum = mdstat->devnum;
630 strcpy(new->info.sys_name, devnum2devname(new->devnum));
631
632 new->prev_state = new->curr_state = new->next_state = inactive;
633 new->prev_action= new->curr_action= new->next_action= idle;
634
635 new->container = container;
636
637 inst = to_subarray(mdstat, container->devname);
638
639 new->info.array = mdi->array;
640 new->info.component_size = mdi->component_size;
641
642 for (i = 0; i < new->info.array.raid_disks; i++) {
643 struct mdinfo *newd = malloc(sizeof(*newd));
644
645 for (di = mdi->devs; di; di = di->next)
646 if (i == di->disk.raid_disk)
647 break;
648
649 if (disk_init_and_add(newd, di, new) != 0) {
650 if (newd)
651 free(newd);
652
653 failed++;
654 if (failed > new->info.array.failed_disks) {
655 /* we cannot properly monitor without all working disks */
656 new->container = NULL;
657 break;
658 }
659 }
660 }
661
662 new->action_fd = sysfs_open(new->devnum, NULL, "sync_action");
663 new->info.state_fd = sysfs_open(new->devnum, NULL, "array_state");
664 new->resync_start_fd = sysfs_open(new->devnum, NULL, "resync_start");
665 new->metadata_fd = sysfs_open(new->devnum, NULL, "metadata_version");
666 new->sync_completed_fd = sysfs_open(new->devnum, NULL, "sync_completed");
667 dprintf("%s: inst: %d action: %d state: %d\n", __func__, atoi(inst),
668 new->action_fd, new->info.state_fd);
669
670 /* reshape_position is set by mdadm in sysfs
671 * read this information for new arrays only (empty victim)
672 */
673 if ((victim == NULL) &&
674 (sysfs_get_str(mdi, NULL, "sync_action", buf, 40) > 0) &&
675 (strncmp(buf, "reshape", 7) == 0)) {
676 if (sysfs_get_ll(mdi, NULL, "reshape_position",
677 &new->last_checkpoint) != 0)
678 new->last_checkpoint = 0;
679 else {
680 int data_disks = mdi->array.raid_disks;
681 if (mdi->array.level == 4 || mdi->array.level == 5)
682 data_disks--;
683 if (mdi->array.level == 6)
684 data_disks -= 2;
685
686 new->last_checkpoint /= data_disks;
687 }
688 dprintf("mdmon: New monitored array is under reshape.\n"
689 " Last checkpoint is: %llu\n",
690 new->last_checkpoint);
691 }
692
693 sysfs_free(mdi);
694
695 /* if everything checks out tell the metadata handler we want to
696 * manage this instance
697 */
698 if (!aa_ready(new) || container->ss->open_new(container, new, inst) < 0) {
699 fprintf(stderr, "mdmon: failed to monitor %s\n",
700 mdstat->metadata_version);
701 new->container = NULL;
702 free_aa(new);
703 } else {
704 replace_array(container, victim, new);
705 if (failed) {
706 new->check_degraded = 1;
707 manage_member(mdstat, new);
708 }
709 }
710 }
711
712 void manage(struct mdstat_ent *mdstat, struct supertype *container)
713 {
714 /* We have just read mdstat and need to compare it with
715 * the known active arrays.
716 * Arrays with the wrong metadata are ignored.
717 */
718
719 for ( ; mdstat ; mdstat = mdstat->next) {
720 struct active_array *a;
721 if (mdstat->devnum == container->devnum) {
722 manage_container(mdstat, container);
723 continue;
724 }
725 if (!is_container_member(mdstat, container->devname))
726 /* Not for this array */
727 continue;
728 /* Looks like a member of this container */
729 for (a = container->arrays; a; a = a->next) {
730 if (mdstat->devnum == a->devnum) {
731 if (a->container)
732 manage_member(mdstat, a);
733 break;
734 }
735 }
736 if (a == NULL || !a->container)
737 manage_new(mdstat, container, a);
738 }
739 }
740
741 static void handle_message(struct supertype *container, struct metadata_update *msg)
742 {
743 /* queue this metadata update through to the monitor */
744
745 struct metadata_update *mu;
746
747 if (msg->len <= 0)
748 while (update_queue_pending || update_queue) {
749 check_update_queue(container);
750 usleep(15*1000);
751 }
752
753 if (msg->len == 0) { /* ping_monitor */
754 int cnt;
755
756 cnt = monitor_loop_cnt;
757 if (cnt & 1)
758 cnt += 2; /* wait until next pselect */
759 else
760 cnt += 3; /* wait for 2 pselects */
761 wakeup_monitor();
762
763 while (monitor_loop_cnt - cnt < 0)
764 usleep(10 * 1000);
765 } else if (msg->len == -1) { /* ping_manager */
766 struct mdstat_ent *mdstat = mdstat_read(1, 0);
767
768 manage(mdstat, container);
769 free_mdstat(mdstat);
770 } else if (!sigterm) {
771 mu = malloc(sizeof(*mu));
772 mu->len = msg->len;
773 mu->buf = msg->buf;
774 msg->buf = NULL;
775 mu->space = NULL;
776 mu->space_list = NULL;
777 mu->next = NULL;
778 if (container->ss->prepare_update)
779 container->ss->prepare_update(container, mu);
780 queue_metadata_update(mu);
781 }
782 }
783
784 void read_sock(struct supertype *container)
785 {
786 int fd;
787 struct metadata_update msg;
788 int terminate = 0;
789 long fl;
790 int tmo = 3; /* 3 second timeout before hanging up the socket */
791
792 fd = accept(container->sock, NULL, NULL);
793 if (fd < 0)
794 return;
795
796 fl = fcntl(fd, F_GETFL, 0);
797 fl |= O_NONBLOCK;
798 fcntl(fd, F_SETFL, fl);
799
800 do {
801 msg.buf = NULL;
802
803 /* read and validate the message */
804 if (receive_message(fd, &msg, tmo) == 0) {
805 handle_message(container, &msg);
806 if (msg.len == 0) {
807 /* ping reply with version */
808 msg.buf = Version;
809 msg.len = strlen(Version) + 1;
810 if (send_message(fd, &msg, tmo) < 0)
811 terminate = 1;
812 } else if (ack(fd, tmo) < 0)
813 terminate = 1;
814 } else
815 terminate = 1;
816
817 } while (!terminate);
818
819 close(fd);
820 }
821
822 int exit_now = 0;
823 int manager_ready = 0;
824 void do_manager(struct supertype *container)
825 {
826 struct mdstat_ent *mdstat;
827 sigset_t set;
828
829 sigprocmask(SIG_UNBLOCK, NULL, &set);
830 sigdelset(&set, SIGUSR1);
831 sigdelset(&set, SIGTERM);
832
833 do {
834
835 if (exit_now)
836 exit(0);
837
838 /* Can only 'manage' things if 'monitor' is not making
839 * structural changes to metadata, so need to check
840 * update_queue
841 */
842 if (update_queue == NULL) {
843 mdstat = mdstat_read(1, 0);
844
845 manage(mdstat, container);
846
847 read_sock(container);
848
849 free_mdstat(mdstat);
850 }
851 remove_old();
852
853 check_update_queue(container);
854
855 manager_ready = 1;
856
857 if (sigterm)
858 wakeup_monitor();
859
860 if (update_queue == NULL)
861 mdstat_wait_fd(container->sock, &set);
862 else
863 /* If an update is happening, just wait for signal */
864 pselect(0, NULL, NULL, NULL, NULL, &set);
865 } while(1);
866 }