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