]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Monitor.c
9a2baad02e1193c11228eedf0293b9d587af7e51
[thirdparty/mdadm.git] / Monitor.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@suse.de>
23 */
24
25 #include "mdadm.h"
26 #include "md_p.h"
27 #include "md_u.h"
28 #include <sys/wait.h>
29 #include <signal.h>
30 #include <limits.h>
31 #include <syslog.h>
32
33 struct state {
34 char *devname;
35 char devnm[32]; /* to sync with mdstat info */
36 unsigned int utime;
37 int err;
38 char *spare_group;
39 int active, working, failed, spare, raid;
40 int from_config;
41 int from_auto;
42 int expected_spares;
43 int devstate[MAX_DISKS];
44 dev_t devid[MAX_DISKS];
45 int percent;
46 char parent_devnm[32]; /* For subarray, devnm of parent.
47 * For others, ""
48 */
49 struct supertype *metadata;
50 struct state *subarray;/* for a container it is a link to first subarray
51 * for a subarray it is a link to next subarray
52 * in the same container */
53 struct state *parent; /* for a subarray it is a link to its container
54 */
55 struct state *next;
56 };
57
58 struct alert_info {
59 char *mailaddr;
60 char *mailfrom;
61 char *alert_cmd;
62 int dosyslog;
63 };
64 static int make_daemon(char *pidfile);
65 static int check_one_sharer(int scan);
66 static void alert(char *event, char *dev, char *disc, struct alert_info *info);
67 static int check_array(struct state *st, struct mdstat_ent *mdstat,
68 int test, struct alert_info *info,
69 int increments, char *prefer);
70 static int add_new_arrays(struct mdstat_ent *mdstat, struct state **statelist,
71 int test, struct alert_info *info);
72 static void try_spare_migration(struct state *statelist, struct alert_info *info);
73 static void link_containers_with_subarrays(struct state *list);
74
75 int Monitor(struct mddev_dev *devlist,
76 char *mailaddr, char *alert_cmd,
77 struct context *c,
78 int daemonise, int oneshot,
79 int dosyslog, char *pidfile, int increments,
80 int share)
81 {
82 /*
83 * Every few seconds, scan every md device looking for changes
84 * When a change is found, log it, possibly run the alert command,
85 * and possibly send Email
86 *
87 * For each array, we record:
88 * Update time
89 * active/working/failed/spare drives
90 * State of each device.
91 * %rebuilt if rebuilding
92 *
93 * If the update time changes, check out all the data again
94 * It is possible that we cannot get the state of each device
95 * due to bugs in the md kernel module.
96 * We also read /proc/mdstat to get rebuild percent,
97 * and to get state on all active devices incase of kernel bug.
98 *
99 * Events are:
100 * Fail
101 * An active device had Faulty set or Active/Sync removed
102 * FailSpare
103 * A spare device had Faulty set
104 * SpareActive
105 * An active device had a reverse transition
106 * RebuildStarted
107 * percent went from -1 to +ve
108 * RebuildNN
109 * percent went from below to not-below NN%
110 * DeviceDisappeared
111 * Couldn't access a device which was previously visible
112 *
113 * if we detect an array with active<raid and spare==0
114 * we look at other arrays that have same spare-group
115 * If we find one with active==raid and spare>0,
116 * and if we can get_disk_info and find a name
117 * Then we hot-remove and hot-add to the other array
118 *
119 * If devlist is NULL, then we can monitor everything because --scan
120 * was given. We get an initial list from config file and add anything
121 * that appears in /proc/mdstat
122 */
123
124 struct state *statelist = NULL;
125 struct state *st2;
126 int finished = 0;
127 struct mdstat_ent *mdstat = NULL;
128 char *mailfrom = NULL;
129 struct alert_info info;
130
131 if (!mailaddr) {
132 mailaddr = conf_get_mailaddr();
133 if (mailaddr && ! c->scan)
134 pr_err("Monitor using email address \"%s\" from config file\n",
135 mailaddr);
136 }
137 mailfrom = conf_get_mailfrom();
138
139 if (!alert_cmd) {
140 alert_cmd = conf_get_program();
141 if (alert_cmd && ! c->scan)
142 pr_err("Monitor using program \"%s\" from config file\n",
143 alert_cmd);
144 }
145 if (c->scan && !mailaddr && !alert_cmd && !dosyslog) {
146 pr_err("No mail address or alert command - not monitoring.\n");
147 return 1;
148 }
149 info.alert_cmd = alert_cmd;
150 info.mailaddr = mailaddr;
151 info.mailfrom = mailfrom;
152 info.dosyslog = dosyslog;
153
154 if (daemonise) {
155 int rv = make_daemon(pidfile);
156 if (rv >= 0)
157 return rv;
158 }
159
160 if (share)
161 if (check_one_sharer(c->scan))
162 return 1;
163
164 if (devlist == NULL) {
165 struct mddev_ident *mdlist = conf_get_ident(NULL);
166 for (; mdlist; mdlist=mdlist->next) {
167 struct state *st;
168 if (mdlist->devname == NULL)
169 continue;
170 if (strcasecmp(mdlist->devname, "<ignore>") == 0)
171 continue;
172 st = xcalloc(1, sizeof *st);
173 if (mdlist->devname[0] == '/')
174 st->devname = xstrdup(mdlist->devname);
175 else {
176 st->devname = xmalloc(8+strlen(mdlist->devname)+1);
177 strcpy(strcpy(st->devname, "/dev/md/"),
178 mdlist->devname);
179 }
180 st->next = statelist;
181 st->devnm[0] = 0;
182 st->percent = RESYNC_UNKNOWN;
183 st->from_config = 1;
184 st->expected_spares = mdlist->spare_disks;
185 if (mdlist->spare_group)
186 st->spare_group = xstrdup(mdlist->spare_group);
187 statelist = st;
188 }
189 } else {
190 struct mddev_dev *dv;
191 for (dv=devlist ; dv; dv=dv->next) {
192 struct mddev_ident *mdlist = conf_get_ident(dv->devname);
193 struct state *st = xcalloc(1, sizeof *st);
194 st->devname = xstrdup(dv->devname);
195 st->next = statelist;
196 st->devnm[0] = 0;
197 st->percent = RESYNC_UNKNOWN;
198 st->expected_spares = -1;
199 if (mdlist) {
200 st->expected_spares = mdlist->spare_disks;
201 if (mdlist->spare_group)
202 st->spare_group = xstrdup(mdlist->spare_group);
203 }
204 statelist = st;
205 }
206 }
207
208 while (! finished) {
209 int new_found = 0;
210 struct state *st, **stp;
211 int anydegraded = 0;
212
213 if (mdstat)
214 free_mdstat(mdstat);
215 mdstat = mdstat_read(oneshot?0:1, 0);
216 if (!mdstat)
217 mdstat_close();
218
219 for (st=statelist; st; st=st->next)
220 if (check_array(st, mdstat, c->test, &info,
221 increments, c->prefer))
222 anydegraded = 1;
223
224 /* now check if there are any new devices found in mdstat */
225 if (c->scan)
226 new_found = add_new_arrays(mdstat, &statelist, c->test,
227 &info);
228
229 /* If an array has active < raid && spare == 0 && spare_group != NULL
230 * Look for another array with spare > 0 and active == raid and same spare_group
231 * if found, choose a device and hotremove/hotadd
232 */
233 if (share && anydegraded)
234 try_spare_migration(statelist, &info);
235 if (!new_found) {
236 if (oneshot)
237 break;
238 else
239 mdstat_wait(c->delay);
240 }
241 c->test = 0;
242
243 for (stp = &statelist; (st = *stp) != NULL; ) {
244 if (st->from_auto && st->err > 5) {
245 *stp = st->next;
246 free(st->devname);
247 free(st->spare_group);
248 free(st);
249 } else
250 stp = &st->next;
251 }
252 }
253 for (st2 = statelist; st2; st2 = statelist) {
254 statelist = st2->next;
255 free(st2);
256 }
257
258 if (pidfile)
259 unlink(pidfile);
260 return 0;
261 }
262
263 static int make_daemon(char *pidfile)
264 {
265 /* Return:
266 * -1 in the forked daemon
267 * 0 in the parent
268 * 1 on error
269 * so a none-negative becomes the exit code.
270 */
271 int pid = fork();
272 if (pid > 0) {
273 if (!pidfile)
274 printf("%d\n", pid);
275 else {
276 FILE *pid_file;
277 pid_file=fopen(pidfile, "w");
278 if (!pid_file)
279 perror("cannot create pid file");
280 else {
281 fprintf(pid_file,"%d\n", pid);
282 fclose(pid_file);
283 }
284 }
285 return 0;
286 }
287 if (pid < 0) {
288 perror("daemonise");
289 return 1;
290 }
291 close(0);
292 open("/dev/null", O_RDWR);
293 dup2(0,1);
294 dup2(0,2);
295 setsid();
296 return -1;
297 }
298
299 static int check_one_sharer(int scan)
300 {
301 int pid, rv;
302 FILE *fp;
303 char dir[20];
304 char path[100];
305 struct stat buf;
306 sprintf(path, "%s/autorebuild.pid", MDMON_DIR);
307 fp = fopen(path, "r");
308 if (fp) {
309 if (fscanf(fp, "%d", &pid) != 1)
310 pid = -1;
311 sprintf(dir, "/proc/%d", pid);
312 rv = stat(dir, &buf);
313 if (rv != -1) {
314 if (scan) {
315 pr_err("Only one autorebuild process allowed in scan mode, aborting\n");
316 fclose(fp);
317 return 1;
318 } else {
319 pr_err("Warning: One autorebuild process already running.\n");
320 }
321 }
322 fclose(fp);
323 }
324 if (scan) {
325 if (mkdir(MDMON_DIR, S_IRWXU) < 0 &&
326 errno != EEXIST) {
327 pr_err("Can't create autorebuild.pid file\n");
328 } else {
329 fp = fopen(path, "w");
330 if (!fp)
331 pr_err("Cannot create autorebuild.pidfile\n");
332 else {
333 pid = getpid();
334 fprintf(fp, "%d\n", pid);
335 fclose(fp);
336 }
337 }
338 }
339 return 0;
340 }
341
342 static void alert(char *event, char *dev, char *disc, struct alert_info *info)
343 {
344 int priority;
345
346 if (!info->alert_cmd && !info->mailaddr && !info->dosyslog) {
347 time_t now = time(0);
348
349 printf("%1.15s: %s on %s %s\n", ctime(&now)+4, event, dev, disc?disc:"unknown device");
350 }
351 if (info->alert_cmd) {
352 int pid = fork();
353 switch(pid) {
354 default:
355 waitpid(pid, NULL, 0);
356 break;
357 case -1:
358 break;
359 case 0:
360 execl(info->alert_cmd, info->alert_cmd,
361 event, dev, disc, NULL);
362 exit(2);
363 }
364 }
365 if (info->mailaddr &&
366 (strncmp(event, "Fail", 4)==0 ||
367 strncmp(event, "Test", 4)==0 ||
368 strncmp(event, "Spares", 6)==0 ||
369 strncmp(event, "Degrade", 7)==0)) {
370 FILE *mp = popen(Sendmail, "w");
371 if (mp) {
372 FILE *mdstat;
373 char hname[256];
374 gethostname(hname, sizeof(hname));
375 signal(SIGPIPE, SIG_IGN);
376 if (info->mailfrom)
377 fprintf(mp, "From: %s\n", info->mailfrom);
378 else
379 fprintf(mp, "From: %s monitoring <root>\n", Name);
380 fprintf(mp, "To: %s\n", info->mailaddr);
381 fprintf(mp, "Subject: %s event on %s:%s\n\n",
382 event, dev, hname);
383
384 fprintf(mp,
385 "This is an automatically generated mail message from %s\n", Name);
386 fprintf(mp, "running on %s\n\n", hname);
387
388 fprintf(mp,
389 "A %s event had been detected on md device %s.\n\n", event, dev);
390
391 if (disc && disc[0] != ' ')
392 fprintf(mp,
393 "It could be related to component device %s.\n\n", disc);
394 if (disc && disc[0] == ' ')
395 fprintf(mp, "Extra information:%s.\n\n", disc);
396
397 fprintf(mp, "Faithfully yours, etc.\n");
398
399 mdstat = fopen("/proc/mdstat", "r");
400 if (mdstat) {
401 char buf[8192];
402 int n;
403 fprintf(mp,
404 "\nP.S. The /proc/mdstat file currently contains the following:\n\n");
405 while ( (n=fread(buf, 1, sizeof(buf), mdstat)) > 0)
406 n=fwrite(buf, 1, n, mp);
407 fclose(mdstat);
408 }
409 pclose(mp);
410 }
411 }
412
413 /* log the event to syslog maybe */
414 if (info->dosyslog) {
415 /* Log at a different severity depending on the event.
416 *
417 * These are the critical events: */
418 if (strncmp(event, "Fail", 4)==0 ||
419 strncmp(event, "Degrade", 7)==0 ||
420 strncmp(event, "DeviceDisappeared", 17)==0)
421 priority = LOG_CRIT;
422 /* Good to know about, but are not failures: */
423 else if (strncmp(event, "Rebuild", 7)==0 ||
424 strncmp(event, "MoveSpare", 9)==0 ||
425 strncmp(event, "Spares", 6) != 0)
426 priority = LOG_WARNING;
427 /* Everything else: */
428 else
429 priority = LOG_INFO;
430
431 if (disc && disc[0] != ' ')
432 syslog(priority,
433 "%s event detected on md device %s, component device %s", event, dev, disc);
434 else if (disc)
435 syslog(priority,
436 "%s event detected on md device %s: %s",
437 event, dev, disc);
438 else
439 syslog(priority,
440 "%s event detected on md device %s",
441 event, dev);
442 }
443 }
444
445 static int check_array(struct state *st, struct mdstat_ent *mdstat,
446 int test, struct alert_info *ainfo,
447 int increments, char *prefer)
448 {
449 /* Update the state 'st' to reflect any changes shown in mdstat,
450 * or found by directly examining the array, and return
451 * '1' if the array is degraded, or '0' if it is optimal (or dead).
452 */
453 struct { int state, major, minor; } info[MAX_DISKS];
454 mdu_array_info_t array;
455 struct mdstat_ent *mse = NULL, *mse2;
456 char *dev = st->devname;
457 int fd;
458 int i;
459 int remaining_disks;
460 int last_disk;
461 int new_array = 0;
462
463 if (test)
464 alert("TestMessage", dev, NULL, ainfo);
465
466 fd = open(dev, O_RDONLY);
467 if (fd < 0) {
468 if (!st->err)
469 alert("DeviceDisappeared", dev, NULL, ainfo);
470 st->err++;
471 return 0;
472 }
473
474 if (!md_array_active(fd)) {
475 close(fd);
476 if (!st->err)
477 alert("DeviceDisappeared", dev, NULL, ainfo);
478 st->err++;
479 return 0;
480 }
481
482 fcntl(fd, F_SETFD, FD_CLOEXEC);
483 if (md_get_array_info(fd, &array) < 0) {
484 if (!st->err)
485 alert("DeviceDisappeared", dev, NULL, ainfo);
486 st->err++;
487 close(fd);
488 return 0;
489 }
490 /* It's much easier to list what array levels can't
491 * have a device disappear than all of them that can
492 */
493 if (array.level == 0 || array.level == -1) {
494 if (!st->err && !st->from_config)
495 alert("DeviceDisappeared", dev, " Wrong-Level", ainfo);
496 st->err++;
497 close(fd);
498 return 0;
499 }
500 if (st->devnm[0] == 0)
501 strcpy(st->devnm, fd2devnm(fd));
502
503 for (mse2 = mdstat ; mse2 ; mse2=mse2->next)
504 if (strcmp(mse2->devnm, st->devnm) == 0) {
505 mse2->devnm[0] = 0; /* flag it as "used" */
506 mse = mse2;
507 }
508
509 if (!mse) {
510 /* duplicated array in statelist
511 * or re-created after reading mdstat*/
512 st->err++;
513 close(fd);
514 return 0;
515 }
516 /* this array is in /proc/mdstat */
517 if (array.utime == 0)
518 /* external arrays don't update utime, so
519 * just make sure it is always different. */
520 array.utime = st->utime + 1;;
521
522 if (st->err) {
523 /* New array appeared where previously had an error */
524 st->err = 0;
525 st->percent = RESYNC_NONE;
526 new_array = 1;
527 alert("NewArray", st->devname, NULL, ainfo);
528 }
529
530 if (st->utime == array.utime && st->failed == array.failed_disks &&
531 st->working == array.working_disks &&
532 st->spare == array.spare_disks &&
533 (mse == NULL || (mse->percent == st->percent))) {
534 close(fd);
535 if ((st->active < st->raid) && st->spare == 0)
536 return 1;
537 else
538 return 0;
539 }
540 if (st->utime == 0 && /* new array */
541 mse->pattern && strchr(mse->pattern, '_') /* degraded */)
542 alert("DegradedArray", dev, NULL, ainfo);
543
544 if (st->utime == 0 && /* new array */
545 st->expected_spares > 0 && array.spare_disks < st->expected_spares)
546 alert("SparesMissing", dev, NULL, ainfo);
547 if (st->percent < 0 && st->percent != RESYNC_UNKNOWN &&
548 mse->percent >= 0)
549 alert("RebuildStarted", dev, NULL, ainfo);
550 if (st->percent >= 0 && mse->percent >= 0 &&
551 (mse->percent / increments) > (st->percent / increments)) {
552 char percentalert[15];
553 /*
554 * "RebuildNN" (10 chars) or "RebuildStarted" (15 chars)
555 */
556
557 if((mse->percent / increments) == 0)
558 snprintf(percentalert, sizeof(percentalert),
559 "RebuildStarted");
560 else
561 snprintf(percentalert, sizeof(percentalert),
562 "Rebuild%02d", mse->percent);
563
564 alert(percentalert, dev, NULL, ainfo);
565 }
566
567 if (mse->percent == RESYNC_NONE && st->percent >= 0) {
568 /* Rebuild/sync/whatever just finished.
569 * If there is a number in /mismatch_cnt,
570 * we should report that.
571 */
572 struct mdinfo *sra =
573 sysfs_read(-1, st->devnm, GET_MISMATCH);
574 if (sra && sra->mismatch_cnt > 0) {
575 char cnt[80];
576 snprintf(cnt, sizeof(cnt),
577 " mismatches found: %d (on raid level %d)",
578 sra->mismatch_cnt, array.level);
579 alert("RebuildFinished", dev, cnt, ainfo);
580 } else
581 alert("RebuildFinished", dev, NULL, ainfo);
582 if (sra)
583 sysfs_free(sra);
584 }
585 st->percent = mse->percent;
586
587 remaining_disks = array.nr_disks;
588 for (i = 0; i < MAX_DISKS && remaining_disks > 0; i++) {
589 mdu_disk_info_t disc;
590 disc.number = i;
591 if (md_get_disk_info(fd, &disc) >= 0) {
592 info[i].state = disc.state;
593 info[i].major = disc.major;
594 info[i].minor = disc.minor;
595 if (disc.major || disc.minor)
596 remaining_disks --;
597 } else
598 info[i].major = info[i].minor = 0;
599 }
600 last_disk = i;
601
602 if (mse->metadata_version &&
603 strncmp(mse->metadata_version, "external:", 9) == 0 &&
604 is_subarray(mse->metadata_version+9)) {
605 char *sl;
606 strcpy(st->parent_devnm, mse->metadata_version+10);
607 sl = strchr(st->parent_devnm, '/');
608 if (sl)
609 *sl = 0;
610 } else
611 st->parent_devnm[0] = 0;
612 if (st->metadata == NULL && st->parent_devnm[0] == 0)
613 st->metadata = super_by_fd(fd, NULL);
614
615 close(fd);
616
617 for (i=0; i<MAX_DISKS; i++) {
618 mdu_disk_info_t disc = {0,0,0,0,0};
619 int newstate=0;
620 int change;
621 char *dv = NULL;
622 disc.number = i;
623 if (i < last_disk && (info[i].major || info[i].minor)) {
624 newstate = info[i].state;
625 dv = map_dev_preferred(info[i].major, info[i].minor, 1,
626 prefer);
627 disc.state = newstate;
628 disc.major = info[i].major;
629 disc.minor = info[i].minor;
630 } else
631 newstate = (1 << MD_DISK_REMOVED);
632
633 if (dv == NULL && st->devid[i])
634 dv = map_dev_preferred(major(st->devid[i]),
635 minor(st->devid[i]), 1, prefer);
636 change = newstate ^ st->devstate[i];
637 if (st->utime && change && !st->err && !new_array) {
638 if ((st->devstate[i]&change) & (1 << MD_DISK_SYNC))
639 alert("Fail", dev, dv, ainfo);
640 else if ((newstate & (1 << MD_DISK_FAULTY)) &&
641 (disc.major || disc.minor) &&
642 st->devid[i] == makedev(disc.major,
643 disc.minor))
644 alert("FailSpare", dev, dv, ainfo);
645 else if ((newstate&change) & (1 << MD_DISK_SYNC))
646 alert("SpareActive", dev, dv, ainfo);
647 }
648 st->devstate[i] = newstate;
649 st->devid[i] = makedev(disc.major, disc.minor);
650 }
651 st->active = array.active_disks;
652 st->working = array.working_disks;
653 st->spare = array.spare_disks;
654 st->failed = array.failed_disks;
655 st->utime = array.utime;
656 st->raid = array.raid_disks;
657 st->err = 0;
658 if ((st->active < st->raid) && st->spare == 0)
659 return 1;
660 return 0;
661 }
662
663 static int add_new_arrays(struct mdstat_ent *mdstat, struct state **statelist,
664 int test, struct alert_info *info)
665 {
666 struct mdstat_ent *mse;
667 int new_found = 0;
668 char *name;
669
670 for (mse=mdstat; mse; mse=mse->next)
671 if (mse->devnm[0] &&
672 (!mse->level || /* retrieve containers */
673 (strcmp(mse->level, "raid0") != 0 &&
674 strcmp(mse->level, "linear") != 0))
675 ) {
676 struct state *st = xcalloc(1, sizeof *st);
677 mdu_array_info_t array;
678 int fd;
679
680 name = get_md_name(mse->devnm);
681 if (!name) {
682 free(st);
683 continue;
684 }
685
686 st->devname = xstrdup(name);
687 if ((fd = open(st->devname, O_RDONLY)) < 0 ||
688 md_get_array_info(fd, &array) < 0) {
689 /* no such array */
690 if (fd >= 0)
691 close(fd);
692 put_md_name(st->devname);
693 free(st->devname);
694 if (st->metadata) {
695 st->metadata->ss->free_super(st->metadata);
696 free(st->metadata);
697 }
698 free(st);
699 continue;
700 }
701 close(fd);
702 st->next = *statelist;
703 st->err = 1;
704 st->from_auto = 1;
705 strcpy(st->devnm, mse->devnm);
706 st->percent = RESYNC_UNKNOWN;
707 st->expected_spares = -1;
708 if (mse->metadata_version &&
709 strncmp(mse->metadata_version, "external:", 9) == 0 &&
710 is_subarray(mse->metadata_version+9)) {
711 char *sl;
712 strcpy(st->parent_devnm,
713 mse->metadata_version+10);
714 sl = strchr(st->parent_devnm, '/');
715 *sl = 0;
716 } else
717 st->parent_devnm[0] = 0;
718 *statelist = st;
719 if (test)
720 alert("TestMessage", st->devname, NULL, info);
721 new_found = 1;
722 }
723 return new_found;
724 }
725
726 static int get_required_spare_criteria(struct state *st,
727 struct spare_criteria *sc)
728 {
729 int fd;
730
731 if (!st->metadata ||
732 !st->metadata->ss->get_spare_criteria) {
733 sc->min_size = 0;
734 return 0;
735 }
736
737 fd = open(st->devname, O_RDONLY);
738 if (fd < 0)
739 return 1;
740 if (st->metadata->ss->external)
741 st->metadata->ss->load_container(st->metadata, fd, st->devname);
742 else
743 st->metadata->ss->load_super(st->metadata, fd, st->devname);
744 close(fd);
745 if (!st->metadata->sb)
746 return 1;
747
748 st->metadata->ss->get_spare_criteria(st->metadata, sc);
749 st->metadata->ss->free_super(st->metadata);
750
751 return 0;
752 }
753
754 static int check_donor(struct state *from, struct state *to)
755 {
756 struct state *sub;
757
758 if (from == to)
759 return 0;
760 if (from->parent)
761 /* Cannot move from a member */
762 return 0;
763 if (from->err)
764 return 0;
765 for (sub = from->subarray; sub; sub = sub->subarray)
766 /* If source array has degraded subarrays, don't
767 * remove anything
768 */
769 if (sub->active < sub->raid)
770 return 0;
771 if (from->metadata->ss->external == 0)
772 if (from->active < from->raid)
773 return 0;
774 if (from->spare <= 0)
775 return 0;
776 return 1;
777 }
778
779 static dev_t choose_spare(struct state *from, struct state *to,
780 struct domainlist *domlist, struct spare_criteria *sc)
781 {
782 int d;
783 dev_t dev = 0;
784
785 for (d = from->raid; !dev && d < MAX_DISKS; d++) {
786 if (from->devid[d] > 0 &&
787 from->devstate[d] == 0) {
788 struct dev_policy *pol;
789 unsigned long long dev_size;
790
791 if (to->metadata->ss->external &&
792 test_partition_from_id(from->devid[d]))
793 continue;
794
795 if (sc->min_size &&
796 dev_size_from_id(from->devid[d], &dev_size) &&
797 dev_size < sc->min_size)
798 continue;
799
800 pol = devid_policy(from->devid[d]);
801 if (from->spare_group)
802 pol_add(&pol, pol_domain,
803 from->spare_group, NULL);
804 if (domain_test(domlist, pol, to->metadata->ss->name) == 1)
805 dev = from->devid[d];
806 dev_policy_free(pol);
807 }
808 }
809 return dev;
810 }
811
812 static dev_t container_choose_spare(struct state *from, struct state *to,
813 struct domainlist *domlist,
814 struct spare_criteria *sc, int active)
815 {
816 /* This is similar to choose_spare, but we cannot trust devstate,
817 * so we need to read the metadata instead
818 */
819 struct mdinfo *list;
820 struct supertype *st = from->metadata;
821 int fd = open(from->devname, O_RDONLY);
822 int err;
823 dev_t dev = 0;
824
825 if (fd < 0)
826 return 0;
827 if (!st->ss->getinfo_super_disks) {
828 close(fd);
829 return 0;
830 }
831
832 err = st->ss->load_container(st, fd, NULL);
833 close(fd);
834 if (err)
835 return 0;
836
837 if (from == to) {
838 /* We must check if number of active disks has not increased
839 * since ioctl in main loop. mdmon may have added spare
840 * to subarray. If so we do not need to look for more spares
841 * so return non zero value */
842 int active_cnt = 0;
843 struct mdinfo *dp;
844 list = st->ss->getinfo_super_disks(st);
845 if (!list) {
846 st->ss->free_super(st);
847 return 1;
848 }
849 dp = list->devs;
850 while (dp) {
851 if (dp->disk.state & (1<<MD_DISK_SYNC) &&
852 !(dp->disk.state & (1<<MD_DISK_FAULTY)))
853 active_cnt++;
854 dp = dp->next;
855 }
856 sysfs_free(list);
857 if (active < active_cnt) {
858 /* Spare just activated.*/
859 st->ss->free_super(st);
860 return 1;
861 }
862 }
863
864 /* We only need one spare so full list not needed */
865 list = container_choose_spares(st, sc, domlist, from->spare_group,
866 to->metadata->ss->name, 1);
867 if (list) {
868 struct mdinfo *disks = list->devs;
869 if (disks)
870 dev = makedev(disks->disk.major, disks->disk.minor);
871 sysfs_free(list);
872 }
873 st->ss->free_super(st);
874 return dev;
875 }
876
877 static void try_spare_migration(struct state *statelist, struct alert_info *info)
878 {
879 struct state *from;
880 struct state *st;
881 struct spare_criteria sc;
882
883 link_containers_with_subarrays(statelist);
884 for (st = statelist; st; st = st->next)
885 if (st->active < st->raid &&
886 st->spare == 0 && !st->err) {
887 struct domainlist *domlist = NULL;
888 int d;
889 struct state *to = st;
890
891 if (to->parent_devnm[0] && !to->parent)
892 /* subarray monitored without parent container
893 * we can't move spares here */
894 continue;
895
896 if (to->parent)
897 /* member of a container */
898 to = to->parent;
899
900 if (get_required_spare_criteria(to, &sc))
901 continue;
902 if (to->metadata->ss->external) {
903 /* We must make sure there is
904 * no suitable spare in container already.
905 * If there is we don't add more */
906 dev_t devid = container_choose_spare(
907 to, to, NULL, &sc, st->active);
908 if (devid > 0)
909 continue;
910 }
911 for (d = 0; d < MAX_DISKS; d++)
912 if (to->devid[d])
913 domainlist_add_dev(&domlist,
914 to->devid[d],
915 to->metadata->ss->name);
916 if (to->spare_group)
917 domain_add(&domlist, to->spare_group);
918 /*
919 * No spare migration if the destination
920 * has no domain. Skip this array.
921 */
922 if (!domlist)
923 continue;
924 for (from=statelist ; from ; from=from->next) {
925 dev_t devid;
926 if (!check_donor(from, to))
927 continue;
928 if (from->metadata->ss->external)
929 devid = container_choose_spare(
930 from, to, domlist, &sc, 0);
931 else
932 devid = choose_spare(from, to, domlist,
933 &sc);
934 if (devid > 0
935 && move_spare(from->devname, to->devname, devid)) {
936 alert("MoveSpare", to->devname, from->devname, info);
937 break;
938 }
939 }
940 domain_free(domlist);
941 }
942 }
943
944 /* search the statelist to connect external
945 * metadata subarrays with their containers
946 * We always completely rebuild the tree from scratch as
947 * that is safest considering the possibility of entries
948 * disappearing or changing.
949 */
950 static void link_containers_with_subarrays(struct state *list)
951 {
952 struct state *st;
953 struct state *cont;
954 for (st = list; st; st = st->next) {
955 st->parent = NULL;
956 st->subarray = NULL;
957 }
958 for (st = list; st; st = st->next)
959 if (st->parent_devnm[0])
960 for (cont = list; cont; cont = cont->next)
961 if (!cont->err &&
962 cont->parent_devnm[0] == 0 &&
963 strcmp(cont->devnm, st->parent_devnm) == 0) {
964 st->parent = cont;
965 st->subarray = cont->subarray;
966 cont->subarray = st;
967 break;
968 }
969 }
970
971 /* Not really Monitor but ... */
972 int Wait(char *dev)
973 {
974 char devnm[32];
975 int rv = 1;
976 int frozen_remaining = 3;
977
978 if (!stat_is_blkdev(dev, NULL))
979 return 2;
980 strcpy(devnm, dev);
981
982 while(1) {
983 struct mdstat_ent *ms = mdstat_read(1, 0);
984 struct mdstat_ent *e;
985
986 for (e=ms ; e; e=e->next)
987 if (strcmp(e->devnm, devnm) == 0)
988 break;
989
990 if (e && e->percent == RESYNC_NONE) {
991 /* We could be in the brief pause before something
992 * starts. /proc/mdstat doesn't show that, but
993 * sync_action does.
994 */
995 struct mdinfo mdi;
996 char buf[21];
997
998 if (sysfs_init(&mdi, -1, devnm))
999 return 2;
1000 if (sysfs_get_str(&mdi, NULL, "sync_action",
1001 buf, 20) > 0 &&
1002 strcmp(buf,"idle\n") != 0) {
1003 e->percent = RESYNC_UNKNOWN;
1004 if (strcmp(buf, "frozen\n") == 0) {
1005 if (frozen_remaining == 0)
1006 e->percent = RESYNC_NONE;
1007 else
1008 frozen_remaining -= 1;
1009 }
1010 }
1011 }
1012 if (!e || e->percent == RESYNC_NONE) {
1013 if (e && e->metadata_version &&
1014 strncmp(e->metadata_version, "external:", 9) == 0) {
1015 if (is_subarray(&e->metadata_version[9]))
1016 ping_monitor(&e->metadata_version[9]);
1017 else
1018 ping_monitor(devnm);
1019 }
1020 free_mdstat(ms);
1021 return rv;
1022 }
1023 free_mdstat(ms);
1024 rv = 0;
1025 mdstat_wait(5);
1026 }
1027 }
1028
1029 static char *clean_states[] = {
1030 "clear", "inactive", "readonly", "read-auto", "clean", NULL };
1031
1032 int WaitClean(char *dev, int sock, int verbose)
1033 {
1034 int fd;
1035 struct mdinfo *mdi;
1036 int rv = 1;
1037 char devnm[32];
1038
1039 if (!stat_is_blkdev(dev, NULL))
1040 return 2;
1041 fd = open(dev, O_RDONLY);
1042 if (fd < 0) {
1043 if (verbose)
1044 pr_err("Couldn't open %s: %s\n", dev, strerror(errno));
1045 return 1;
1046 }
1047
1048 strcpy(devnm, fd2devnm(fd));
1049 mdi = sysfs_read(fd, devnm, GET_VERSION|GET_LEVEL|GET_SAFEMODE);
1050 if (!mdi) {
1051 if (verbose)
1052 pr_err("Failed to read sysfs attributes for %s\n", dev);
1053 close(fd);
1054 return 0;
1055 }
1056
1057 switch(mdi->array.level) {
1058 case LEVEL_LINEAR:
1059 case LEVEL_MULTIPATH:
1060 case 0:
1061 /* safemode delay is irrelevant for these levels */
1062 rv = 0;
1063 }
1064
1065 /* for internal metadata the kernel handles the final clean
1066 * transition, containers can never be dirty
1067 */
1068 if (!is_subarray(mdi->text_version))
1069 rv = 0;
1070
1071 /* safemode disabled ? */
1072 if (mdi->safe_mode_delay == 0)
1073 rv = 0;
1074
1075 if (rv) {
1076 int state_fd = sysfs_open(fd2devnm(fd), NULL, "array_state");
1077 char buf[20];
1078 int delay = 5000;
1079
1080 /* minimize the safe_mode_delay and prepare to wait up to 5s
1081 * for writes to quiesce
1082 */
1083 sysfs_set_safemode(mdi, 1);
1084
1085 /* wait for array_state to be clean */
1086 while (1) {
1087 rv = read(state_fd, buf, sizeof(buf));
1088 if (rv < 0)
1089 break;
1090 if (sysfs_match_word(buf, clean_states) <= 4)
1091 break;
1092 rv = sysfs_wait(state_fd, &delay);
1093 if (rv < 0 && errno != EINTR)
1094 break;
1095 lseek(state_fd, 0, SEEK_SET);
1096 }
1097 if (rv < 0)
1098 rv = 1;
1099 else if (fping_monitor(sock) == 0 ||
1100 ping_monitor(mdi->text_version) == 0) {
1101 /* we need to ping to close the window between array
1102 * state transitioning to clean and the metadata being
1103 * marked clean
1104 */
1105 rv = 0;
1106 } else
1107 rv = 1;
1108 if (rv && verbose)
1109 pr_err("Error waiting for %s to be clean\n",
1110 dev);
1111
1112 /* restore the original safe_mode_delay */
1113 sysfs_set_safemode(mdi, mdi->safe_mode_delay);
1114 close(state_fd);
1115 }
1116
1117 sysfs_free(mdi);
1118 close(fd);
1119
1120 return rv;
1121 }