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