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