]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Monitor.c
sysfs: Make sysfs_init() return an error code
[thirdparty/mdadm.git] / Monitor.c
CommitLineData
52826846 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
52826846 3 *
e736b623 4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
52826846
NB
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
e736b623 22 * Email: <neilb@suse.de>
52826846
NB
23 */
24
9a9dab36 25#include "mdadm.h"
52826846
NB
26#include "md_p.h"
27#include "md_u.h"
e0d19036 28#include <sys/wait.h>
98127a6d 29#include <signal.h>
4450e59f 30#include <limits.h>
773135f5 31#include <syslog.h>
52826846 32
2e0172b1
N
33struct state {
34 char *devname;
4dd2df09 35 char devnm[32]; /* to sync with mdstat info */
1d13b599 36 unsigned int utime;
2e0172b1
N
37 int err;
38 char *spare_group;
39 int active, working, failed, spare, raid;
f1661bd7 40 int from_config;
73ff0732 41 int from_auto;
2e0172b1 42 int expected_spares;
b0599bda
N
43 int devstate[MAX_DISKS];
44 dev_t devid[MAX_DISKS];
2e0172b1 45 int percent;
4dd2df09
N
46 char parent_devnm[32]; /* For subarray, devnm of parent.
47 * For others, ""
48 */
2e0172b1 49 struct supertype *metadata;
c3621c0a
ML
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 */
2e0172b1
N
55 struct state *next;
56};
57
e0bd6a96
N
58struct alert_info {
59 char *mailaddr;
60 char *mailfrom;
61 char *alert_cmd;
62 int dosyslog;
63};
2e0172b1
N
64static int make_daemon(char *pidfile);
65static int check_one_sharer(int scan);
e0bd6a96 66static void alert(char *event, char *dev, char *disc, struct alert_info *info);
a90e1050 67static int check_array(struct state *st, struct mdstat_ent *mdstat,
e0bd6a96 68 int test, struct alert_info *info,
c2ecf5f6 69 int increments, char *prefer);
83f3bc5f 70static int add_new_arrays(struct mdstat_ent *mdstat, struct state **statelist,
e0bd6a96
N
71 int test, struct alert_info *info);
72static void try_spare_migration(struct state *statelist, struct alert_info *info);
c3621c0a 73static void link_containers_with_subarrays(struct state *list);
2e0172b1 74
a655e550 75int Monitor(struct mddev_dev *devlist,
52826846 76 char *mailaddr, char *alert_cmd,
95c50205
N
77 struct context *c,
78 int daemonise, int oneshot,
79 int dosyslog, char *pidfile, int increments,
80 int share)
52826846
NB
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.
e0d19036 91 * %rebuilt if rebuilding
52826846
NB
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.
e0d19036
NB
96 * We also read /proc/mdstat to get rebuild percent,
97 * and to get state on all active devices incase of kernel bug.
52826846 98 *
e0d19036
NB
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
9a36a9b7
ZB
108 * RebuildNN
109 * percent went from below to not-below NN%
e0d19036
NB
110 * DeviceDisappeared
111 * Couldn't access a device which was previously visible
52826846
NB
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 *
e0d19036
NB
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
52826846
NB
122 */
123
2e0172b1 124 struct state *statelist = NULL;
b657208c 125 struct state *st2;
52826846 126 int finished = 0;
e0d19036 127 struct mdstat_ent *mdstat = NULL;
4948b8f7 128 char *mailfrom = NULL;
e0bd6a96 129 struct alert_info info;
e0d19036 130
d013a55e 131 if (!mailaddr) {
8aec876d 132 mailaddr = conf_get_mailaddr();
95c50205 133 if (mailaddr && ! c->scan)
e7b84f9d 134 pr_err("Monitor using email address \"%s\" from config file\n",
d013a55e
NB
135 mailaddr);
136 }
8aec876d 137 mailfrom = conf_get_mailfrom();
4948b8f7 138
d013a55e 139 if (!alert_cmd) {
8aec876d 140 alert_cmd = conf_get_program();
95c50205 141 if (alert_cmd && ! c->scan)
e7b84f9d 142 pr_err("Monitor using program \"%s\" from config file\n",
d013a55e
NB
143 alert_cmd);
144 }
95c50205 145 if (c->scan && !mailaddr && !alert_cmd && !dosyslog) {
e7b84f9d 146 pr_err("No mail address or alert command - not monitoring.\n");
d013a55e 147 return 1;
56eedc1a 148 }
e0bd6a96
N
149 info.alert_cmd = alert_cmd;
150 info.mailaddr = mailaddr;
151 info.mailfrom = mailfrom;
152 info.dosyslog = dosyslog;
d013a55e 153
44d337f0
AC
154 if (daemonise) {
155 int rv = make_daemon(pidfile);
156 if (rv >= 0)
157 return rv;
158 }
e0d19036 159
1011e834 160 if (share)
95c50205 161 if (check_one_sharer(c->scan))
2e0172b1 162 return 1;
edde9560 163
e0d19036 164 if (devlist == NULL) {
fa56eddb 165 struct mddev_ident *mdlist = conf_get_ident(NULL);
e0d19036 166 for (; mdlist; mdlist=mdlist->next) {
fe056d1f
N
167 struct state *st;
168 if (mdlist->devname == NULL)
169 continue;
112cace6
N
170 if (strcasecmp(mdlist->devname, "<ignore>") == 0)
171 continue;
503975b9 172 st = xcalloc(1, sizeof *st);
db2d001c 173 if (mdlist->devname[0] == '/')
503975b9 174 st->devname = xstrdup(mdlist->devname);
db2d001c 175 else {
503975b9 176 st->devname = xmalloc(8+strlen(mdlist->devname)+1);
db2d001c
N
177 strcpy(strcpy(st->devname, "/dev/md/"),
178 mdlist->devname);
179 }
e0d19036 180 st->next = statelist;
4dd2df09 181 st->devnm[0] = 0;
9dad51d4 182 st->percent = RESYNC_UNKNOWN;
f1661bd7 183 st->from_config = 1;
feb716e9 184 st->expected_spares = mdlist->spare_disks;
e0d19036 185 if (mdlist->spare_group)
503975b9 186 st->spare_group = xstrdup(mdlist->spare_group);
e0d19036
NB
187 statelist = st;
188 }
189 } else {
a655e550 190 struct mddev_dev *dv;
e0d19036 191 for (dv=devlist ; dv; dv=dv->next) {
fa56eddb 192 struct mddev_ident *mdlist = conf_get_ident(dv->devname);
503975b9
N
193 struct state *st = xcalloc(1, sizeof *st);
194 st->devname = xstrdup(dv->devname);
e0d19036 195 st->next = statelist;
4dd2df09 196 st->devnm[0] = 0;
9dad51d4 197 st->percent = RESYNC_UNKNOWN;
feb716e9 198 st->expected_spares = -1;
e5329c37
NB
199 if (mdlist) {
200 st->expected_spares = mdlist->spare_disks;
201 if (mdlist->spare_group)
503975b9 202 st->spare_group = xstrdup(mdlist->spare_group);
e5329c37 203 }
e0d19036
NB
204 statelist = st;
205 }
206 }
207
e0d19036 208 while (! finished) {
aa88f531 209 int new_found = 0;
73ff0732 210 struct state *st, **stp;
a90e1050 211 int anydegraded = 0;
e0d19036
NB
212
213 if (mdstat)
214 free_mdstat(mdstat);
22a88995 215 mdstat = mdstat_read(oneshot?0:1, 0);
52209d6e
TM
216 if (!mdstat)
217 mdstat_close();
e0d19036 218
2e0172b1 219 for (st=statelist; st; st=st->next)
95c50205
N
220 if (check_array(st, mdstat, c->test, &info,
221 increments, c->prefer))
a90e1050 222 anydegraded = 1;
1011e834 223
e0d19036 224 /* now check if there are any new devices found in mdstat */
95c50205
N
225 if (c->scan)
226 new_found = add_new_arrays(mdstat, &statelist, c->test,
e0bd6a96 227 &info);
2e0172b1 228
e0d19036
NB
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 */
a90e1050 233 if (share && anydegraded)
e0bd6a96 234 try_spare_migration(statelist, &info);
aa88f531
NB
235 if (!new_found) {
236 if (oneshot)
237 break;
238 else
95c50205 239 mdstat_wait(c->delay);
aa88f531 240 }
95c50205 241 c->test = 0;
73ff0732
N
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 }
52826846 252 }
b657208c
JS
253 for (st2 = statelist; st2; st2 = statelist) {
254 statelist = st2->next;
255 free(st2);
256 }
257
b5e64645
NB
258 if (pidfile)
259 unlink(pidfile);
52826846
NB
260 return 0;
261}
262
2e0172b1
N
263static int make_daemon(char *pidfile)
264{
44d337f0
AC
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 */
2e0172b1
N
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();
44d337f0 296 return -1;
2e0172b1
N
297}
298
299static int check_one_sharer(int scan)
300{
301 int pid, rv;
302 FILE *fp;
303 char dir[20];
0011874f 304 char path[100];
2e0172b1 305 struct stat buf;
0011874f
JS
306 sprintf(path, "%s/autorebuild.pid", MDMON_DIR);
307 fp = fopen(path, "r");
2e0172b1 308 if (fp) {
71204a50
N
309 if (fscanf(fp, "%d", &pid) != 1)
310 pid = -1;
2e0172b1
N
311 sprintf(dir, "/proc/%d", pid);
312 rv = stat(dir, &buf);
313 if (rv != -1) {
314 if (scan) {
7a862a02 315 pr_err("Only one autorebuild process allowed in scan mode, aborting\n");
2e0172b1
N
316 fclose(fp);
317 return 1;
318 } else {
7a862a02 319 pr_err("Warning: One autorebuild process already running.\n");
2e0172b1
N
320 }
321 }
322 fclose(fp);
323 }
324 if (scan) {
0011874f 325 if (mkdir(MDMON_DIR, S_IRWXU) < 0 &&
a1bb2065 326 errno != EEXIST) {
7a862a02 327 pr_err("Can't create autorebuild.pid file\n");
a1bb2065 328 } else {
0011874f 329 fp = fopen(path, "w");
a1bb2065 330 if (!fp)
7a862a02 331 pr_err("Cannot create autorebuild.pidfile\n");
a1bb2065
AC
332 else {
333 pid = getpid();
334 fprintf(fp, "%d\n", pid);
335 fclose(fp);
336 }
2e0172b1
N
337 }
338 }
339 return 0;
340}
52826846 341
e0bd6a96 342static void alert(char *event, char *dev, char *disc, struct alert_info *info)
52826846 343{
773135f5
NB
344 int priority;
345
b1bac75b 346 if (!info->alert_cmd && !info->mailaddr && !info->dosyslog) {
cd29a5c8 347 time_t now = time(0);
aba69144 348
e0d19036 349 printf("%1.15s: %s on %s %s\n", ctime(&now)+4, event, dev, disc?disc:"unknown device");
cd29a5c8 350 }
e0bd6a96 351 if (info->alert_cmd) {
52826846
NB
352 int pid = fork();
353 switch(pid) {
354 default:
355 waitpid(pid, NULL, 0);
356 break;
357 case -1:
358 break;
359 case 0:
e0bd6a96
N
360 execl(info->alert_cmd, info->alert_cmd,
361 event, dev, disc, NULL);
52826846
NB
362 exit(2);
363 }
364 }
e0bd6a96 365 if (info->mailaddr &&
aba69144 366 (strncmp(event, "Fail", 4)==0 ||
98c6faba 367 strncmp(event, "Test", 4)==0 ||
d1732eeb 368 strncmp(event, "Spares", 6)==0 ||
aa88f531 369 strncmp(event, "Degrade", 7)==0)) {
52826846
NB
370 FILE *mp = popen(Sendmail, "w");
371 if (mp) {
008e1100 372 FILE *mdstat;
52826846
NB
373 char hname[256];
374 gethostname(hname, sizeof(hname));
375 signal(SIGPIPE, SIG_IGN);
e0bd6a96
N
376 if (info->mailfrom)
377 fprintf(mp, "From: %s\n", info->mailfrom);
4948b8f7 378 else
d56dd607 379 fprintf(mp, "From: %s monitoring <root>\n", Name);
e0bd6a96
N
380 fprintf(mp, "To: %s\n", info->mailaddr);
381 fprintf(mp, "Subject: %s event on %s:%s\n\n",
382 event, dev, hname);
52826846 383
e0bd6a96 384 fprintf(mp,
7a862a02 385 "This is an automatically generated mail message from %s\n", Name);
52826846
NB
386 fprintf(mp, "running on %s\n\n", hname);
387
e0bd6a96 388 fprintf(mp,
7a862a02 389 "A %s event had been detected on md device %s.\n\n", event, dev);
52826846 390
37dfc3d6 391 if (disc && disc[0] != ' ')
e0bd6a96 392 fprintf(mp,
7a862a02 393 "It could be related to component device %s.\n\n", disc);
37dfc3d6
NB
394 if (disc && disc[0] == ' ')
395 fprintf(mp, "Extra information:%s.\n\n", disc);
52826846
NB
396
397 fprintf(mp, "Faithfully yours, etc.\n");
008e1100
NB
398
399 mdstat = fopen("/proc/mdstat", "r");
400 if (mdstat) {
401 char buf[8192];
402 int n;
e0bd6a96 403 fprintf(mp,
7a862a02 404 "\nP.S. The /proc/mdstat file currently contains the following:\n\n");
008e1100 405 while ( (n=fread(buf, 1, sizeof(buf), mdstat)) > 0)
e0bd6a96 406 n=fwrite(buf, 1, n, mp);
008e1100
NB
407 fclose(mdstat);
408 }
6278fb3a 409 pclose(mp);
52826846 410 }
52826846 411 }
773135f5
NB
412
413 /* log the event to syslog maybe */
e0bd6a96 414 if (info->dosyslog) {
773135f5
NB
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 ||
d1732eeb
NB
424 strncmp(event, "MoveSpare", 9)==0 ||
425 strncmp(event, "Spares", 6) != 0)
773135f5
NB
426 priority = LOG_WARNING;
427 /* Everything else: */
428 else
429 priority = LOG_INFO;
430
b033913a 431 if (disc && disc[0] != ' ')
e0bd6a96 432 syslog(priority,
7a862a02 433 "%s event detected on md device %s, component device %s", event, dev, disc);
b033913a
N
434 else if (disc)
435 syslog(priority,
436 "%s event detected on md device %s: %s",
437 event, dev, disc);
773135f5 438 else
e0bd6a96
N
439 syslog(priority,
440 "%s event detected on md device %s",
441 event, dev);
773135f5 442 }
52826846 443}
b90c0e9a 444
a90e1050 445static int check_array(struct state *st, struct mdstat_ent *mdstat,
e0bd6a96 446 int test, struct alert_info *ainfo,
c2ecf5f6 447 int increments, char *prefer)
2e0172b1 448{
ff044d6b
AC
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 */
b0599bda 453 struct { int state, major, minor; } info[MAX_DISKS];
2e0172b1
N
454 mdu_array_info_t array;
455 struct mdstat_ent *mse = NULL, *mse2;
456 char *dev = st->devname;
9a518d81 457 int fd = -1;
2e0172b1 458 int i;
9e6d9291
N
459 int remaining_disks;
460 int last_disk;
721b662b 461 int new_array = 0;
2e0172b1
N
462
463 if (test)
e0bd6a96 464 alert("TestMessage", dev, NULL, ainfo);
9a518d81
N
465 if (st->devnm[0])
466 fd = open("/sys/block", O_RDONLY|O_DIRECTORY);
467 if (fd >= 0) {
468 /* Don't open the device unless it is present and
469 * active in sysfs.
470 */
471 char buf[10];
472 close(fd);
473 fd = sysfs_open(st->devnm, NULL, "array_state");
474 if (fd < 0 ||
475 read(fd, buf, 10) < 5 ||
476 strncmp(buf,"clear",5) == 0 ||
477 strncmp(buf,"inact",5) == 0) {
478 if (fd >= 0)
479 close(fd);
19d3ea0f
AP
480 fd = sysfs_open(st->devnm, NULL, "level");
481 if (fd < 0 || read(fd, buf, 10) != 0) {
482 if (fd >= 0)
483 close(fd);
484 if (!st->err)
485 alert("DeviceDisappeared", dev, NULL, ainfo);
486 st->err++;
487 return 0;
488 }
9a518d81 489 }
19d3ea0f 490 close(fd);
9a518d81 491 }
2e0172b1
N
492 fd = open(dev, O_RDONLY);
493 if (fd < 0) {
494 if (!st->err)
e0bd6a96 495 alert("DeviceDisappeared", dev, NULL, ainfo);
73ff0732 496 st->err++;
a90e1050 497 return 0;
2e0172b1
N
498 }
499 fcntl(fd, F_SETFD, FD_CLOEXEC);
9cd39f01 500 if (md_get_array_info(fd, &array) < 0) {
2e0172b1 501 if (!st->err)
e0bd6a96 502 alert("DeviceDisappeared", dev, NULL, ainfo);
73ff0732 503 st->err++;
2e0172b1 504 close(fd);
a90e1050 505 return 0;
2e0172b1
N
506 }
507 /* It's much easier to list what array levels can't
508 * have a device disappear than all of them that can
509 */
510 if (array.level == 0 || array.level == -1) {
f1661bd7 511 if (!st->err && !st->from_config)
04e27c20 512 alert("DeviceDisappeared", dev, " Wrong-Level", ainfo);
73ff0732 513 st->err++;
2e0172b1 514 close(fd);
a90e1050 515 return 0;
2e0172b1 516 }
4dd2df09
N
517 if (st->devnm[0] == 0)
518 strcpy(st->devnm, fd2devnm(fd));
2e0172b1
N
519
520 for (mse2 = mdstat ; mse2 ; mse2=mse2->next)
4dd2df09
N
521 if (strcmp(mse2->devnm, st->devnm) == 0) {
522 mse2->devnm[0] = 0; /* flag it as "used" */
2e0172b1
N
523 mse = mse2;
524 }
525
526 if (!mse) {
527 /* duplicated array in statelist
528 * or re-created after reading mdstat*/
73ff0732 529 st->err++;
2e0172b1 530 close(fd);
a90e1050 531 return 0;
2e0172b1
N
532 }
533 /* this array is in /proc/mdstat */
534 if (array.utime == 0)
535 /* external arrays don't update utime, so
536 * just make sure it is always different. */
537 array.utime = st->utime + 1;;
538
0f760384 539 if (st->err) {
73ff0732 540 /* New array appeared where previously had an error */
0f760384
N
541 st->err = 0;
542 st->percent = RESYNC_NONE;
721b662b 543 new_array = 1;
0f760384
N
544 alert("NewArray", st->devname, NULL, ainfo);
545 }
546
2e0172b1
N
547 if (st->utime == array.utime &&
548 st->failed == array.failed_disks &&
549 st->working == array.working_disks &&
550 st->spare == array.spare_disks &&
551 (mse == NULL || (
552 mse->percent == st->percent
553 ))) {
554 close(fd);
ff044d6b
AC
555 if ((st->active < st->raid) && st->spare == 0)
556 return 1;
557 else
558 return 0;
2e0172b1
N
559 }
560 if (st->utime == 0 && /* new array */
561 mse->pattern && strchr(mse->pattern, '_') /* degraded */
562 )
e0bd6a96 563 alert("DegradedArray", dev, NULL, ainfo);
2e0172b1
N
564
565 if (st->utime == 0 && /* new array */
566 st->expected_spares > 0 &&
567 array.spare_disks < st->expected_spares)
e0bd6a96 568 alert("SparesMissing", dev, NULL, ainfo);
9dad51d4 569 if (st->percent < 0 && st->percent != RESYNC_UNKNOWN &&
2e0172b1 570 mse->percent >= 0)
e0bd6a96 571 alert("RebuildStarted", dev, NULL, ainfo);
2e0172b1
N
572 if (st->percent >= 0 &&
573 mse->percent >= 0 &&
574 (mse->percent / increments) > (st->percent / increments)) {
575 char percentalert[15]; // "RebuildNN" (10 chars) or "RebuildStarted" (15 chars)
576
577 if((mse->percent / increments) == 0)
578 snprintf(percentalert, sizeof(percentalert), "RebuildStarted");
579 else
580 snprintf(percentalert, sizeof(percentalert), "Rebuild%02d", mse->percent);
581
e0bd6a96 582 alert(percentalert, dev, NULL, ainfo);
2e0172b1
N
583 }
584
9dad51d4 585 if (mse->percent == RESYNC_NONE &&
2e0172b1
N
586 st->percent >= 0) {
587 /* Rebuild/sync/whatever just finished.
588 * If there is a number in /mismatch_cnt,
589 * we should report that.
590 */
591 struct mdinfo *sra =
4dd2df09 592 sysfs_read(-1, st->devnm, GET_MISMATCH);
2e0172b1 593 if (sra && sra->mismatch_cnt > 0) {
8453f8d0
LD
594 char cnt[80];
595 snprintf(cnt, sizeof(cnt),
596 " mismatches found: %d (on raid level %d)",
d97a5e60 597 sra->mismatch_cnt, array.level);
e0bd6a96 598 alert("RebuildFinished", dev, cnt, ainfo);
2e0172b1 599 } else
e0bd6a96 600 alert("RebuildFinished", dev, NULL, ainfo);
2e0172b1 601 if (sra)
26c62b8e 602 sysfs_free(sra);
2e0172b1
N
603 }
604 st->percent = mse->percent;
605
9e6d9291 606 remaining_disks = array.nr_disks;
b0599bda 607 for (i=0; i<MAX_DISKS && remaining_disks > 0;
2e0172b1
N
608 i++) {
609 mdu_disk_info_t disc;
610 disc.number = i;
d97572f5 611 if (md_get_disk_info(fd, &disc) >= 0) {
2e0172b1
N
612 info[i].state = disc.state;
613 info[i].major = disc.major;
614 info[i].minor = disc.minor;
9e6d9291
N
615 if (disc.major || disc.minor)
616 remaining_disks --;
2e0172b1
N
617 } else
618 info[i].major = info[i].minor = 0;
619 }
9e6d9291 620 last_disk = i;
2e0172b1 621
4019ad07
JL
622 if (mse->metadata_version &&
623 strncmp(mse->metadata_version, "external:", 9) == 0 &&
4dd2df09
N
624 is_subarray(mse->metadata_version+9)) {
625 char *sl;
626 strcpy(st->parent_devnm,
627 mse->metadata_version+10);
628 sl = strchr(st->parent_devnm, '/');
629 if (sl)
630 *sl = 0;
631 } else
632 st->parent_devnm[0] = 0;
2e0172b1 633 if (st->metadata == NULL &&
4dd2df09 634 st->parent_devnm[0] == 0)
2e0172b1
N
635 st->metadata = super_by_fd(fd, NULL);
636
637 close(fd);
638
b0599bda 639 for (i=0; i<MAX_DISKS; i++) {
2e0172b1
N
640 mdu_disk_info_t disc = {0,0,0,0,0};
641 int newstate=0;
642 int change;
643 char *dv = NULL;
644 disc.number = i;
721b662b
N
645 if (i < last_disk &&
646 (info[i].major || info[i].minor)) {
2e0172b1 647 newstate = info[i].state;
c2ecf5f6
N
648 dv = map_dev_preferred(
649 info[i].major, info[i].minor, 1,
650 prefer);
2e0172b1
N
651 disc.state = newstate;
652 disc.major = info[i].major;
653 disc.minor = info[i].minor;
721b662b
N
654 } else
655 newstate = (1 << MD_DISK_REMOVED);
656
2e0172b1 657 if (dv == NULL && st->devid[i])
c2ecf5f6
N
658 dv = map_dev_preferred(
659 major(st->devid[i]),
660 minor(st->devid[i]), 1, prefer);
2e0172b1 661 change = newstate ^ st->devstate[i];
721b662b
N
662 if (st->utime && change && !st->err && !new_array) {
663 if ((st->devstate[i]&change)&(1<<MD_DISK_SYNC))
e0bd6a96 664 alert("Fail", dev, dv, ainfo);
721b662b 665 else if ((newstate & (1<<MD_DISK_FAULTY)) &&
2e0172b1 666 (disc.major || disc.minor) &&
721b662b 667 st->devid[i] == makedev(disc.major, disc.minor))
e0bd6a96 668 alert("FailSpare", dev, dv, ainfo);
721b662b 669 else if ((newstate&change)&(1<<MD_DISK_SYNC))
e0bd6a96 670 alert("SpareActive", dev, dv, ainfo);
2e0172b1
N
671 }
672 st->devstate[i] = newstate;
673 st->devid[i] = makedev(disc.major, disc.minor);
674 }
675 st->active = array.active_disks;
676 st->working = array.working_disks;
677 st->spare = array.spare_disks;
678 st->failed = array.failed_disks;
679 st->utime = array.utime;
680 st->raid = array.raid_disks;
681 st->err = 0;
a90e1050
N
682 if ((st->active < st->raid) && st->spare == 0)
683 return 1;
684 return 0;
2e0172b1
N
685}
686
83f3bc5f 687static int add_new_arrays(struct mdstat_ent *mdstat, struct state **statelist,
e0bd6a96 688 int test, struct alert_info *info)
2e0172b1
N
689{
690 struct mdstat_ent *mse;
691 int new_found = 0;
1e08717f 692 char *name;
2e0172b1
N
693
694 for (mse=mdstat; mse; mse=mse->next)
4dd2df09 695 if (mse->devnm[0] &&
2e0172b1
N
696 (!mse->level || /* retrieve containers */
697 (strcmp(mse->level, "raid0") != 0 &&
698 strcmp(mse->level, "linear") != 0))
699 ) {
503975b9 700 struct state *st = xcalloc(1, sizeof *st);
2e0172b1
N
701 mdu_array_info_t array;
702 int fd;
1e08717f
SV
703
704 name = get_md_name(mse->devnm);
705 if (!name) {
706 free(st);
707 continue;
708 }
709
710 st->devname = xstrdup(name);
2e0172b1 711 if ((fd = open(st->devname, O_RDONLY)) < 0 ||
9cd39f01 712 md_get_array_info(fd, &array) < 0) {
2e0172b1 713 /* no such array */
9cd39f01
JS
714 if (fd >= 0)
715 close(fd);
2e0172b1
N
716 put_md_name(st->devname);
717 free(st->devname);
718 if (st->metadata) {
719 st->metadata->ss->free_super(st->metadata);
720 free(st->metadata);
721 }
722 free(st);
723 continue;
724 }
725 close(fd);
83f3bc5f 726 st->next = *statelist;
2e0172b1 727 st->err = 1;
73ff0732 728 st->from_auto = 1;
4dd2df09 729 strcpy(st->devnm, mse->devnm);
9dad51d4 730 st->percent = RESYNC_UNKNOWN;
2e0172b1 731 st->expected_spares = -1;
eb28e119
N
732 if (mse->metadata_version &&
733 strncmp(mse->metadata_version, "external:", 9) == 0 &&
4dd2df09
N
734 is_subarray(mse->metadata_version+9)) {
735 char *sl;
736 strcpy(st->parent_devnm,
737 mse->metadata_version+10);
738 sl = strchr(st->parent_devnm, '/');
739 *sl = 0;
740 } else
741 st->parent_devnm[0] = 0;
83f3bc5f 742 *statelist = st;
2e0172b1 743 if (test)
e0bd6a96 744 alert("TestMessage", st->devname, NULL, info);
2e0172b1
N
745 new_found = 1;
746 }
747 return new_found;
748}
749
de697acc 750static int get_min_spare_size_required(struct state *st, unsigned long long *sizep)
80e7f8c3
AC
751{
752 int fd;
80e7f8c3
AC
753
754 if (!st->metadata ||
300f5033
CA
755 !st->metadata->ss->min_acceptable_spare_size) {
756 *sizep = 0;
de697acc 757 return 0;
300f5033 758 }
80e7f8c3
AC
759
760 fd = open(st->devname, O_RDONLY);
761 if (fd < 0)
de697acc
AC
762 return 1;
763 if (st->metadata->ss->external)
764 st->metadata->ss->load_container(st->metadata, fd, st->devname);
765 else
766 st->metadata->ss->load_super(st->metadata, fd, st->devname);
80e7f8c3 767 close(fd);
de697acc
AC
768 if (!st->metadata->sb)
769 return 1;
770 *sizep = st->metadata->ss->min_acceptable_spare_size(st->metadata);
80e7f8c3
AC
771 st->metadata->ss->free_super(st->metadata);
772
de697acc 773 return 0;
80e7f8c3
AC
774}
775
5ec0f373 776static int check_donor(struct state *from, struct state *to)
2feb22ef 777{
66f5c4b6
N
778 struct state *sub;
779
2feb22ef
N
780 if (from == to)
781 return 0;
66f5c4b6
N
782 if (from->parent)
783 /* Cannot move from a member */
2feb22ef 784 return 0;
ff044d6b
AC
785 if (from->err)
786 return 0;
66f5c4b6
N
787 for (sub = from->subarray; sub; sub = sub->subarray)
788 /* If source array has degraded subarrays, don't
789 * remove anything
790 */
791 if (sub->active < sub->raid)
792 return 0;
793 if (from->metadata->ss->external == 0)
794 if (from->active < from->raid)
795 return 0;
2feb22ef
N
796 if (from->spare <= 0)
797 return 0;
e78dda3b 798 return 1;
2feb22ef
N
799}
800
0f0749ad 801static dev_t choose_spare(struct state *from, struct state *to,
f0b85306 802 struct domainlist *domlist, unsigned long long min_size)
0fa21e85
N
803{
804 int d;
0f0749ad 805 dev_t dev = 0;
0fa21e85 806
b0599bda 807 for (d = from->raid; !dev && d < MAX_DISKS; d++) {
0fa21e85
N
808 if (from->devid[d] > 0 &&
809 from->devstate[d] == 0) {
810 struct dev_policy *pol;
811 unsigned long long dev_size;
812
bfd76b93
CA
813 if (to->metadata->ss->external &&
814 test_partition_from_id(from->devid[d]))
815 continue;
816
0fa21e85
N
817 if (min_size &&
818 dev_size_from_id(from->devid[d], &dev_size) &&
819 dev_size < min_size)
820 continue;
821
4dd2df09 822 pol = devid_policy(from->devid[d]);
0fa21e85
N
823 if (from->spare_group)
824 pol_add(&pol, pol_domain,
825 from->spare_group, NULL);
e5508b36 826 if (domain_test(domlist, pol, to->metadata->ss->name) == 1)
0fa21e85
N
827 dev = from->devid[d];
828 dev_policy_free(pol);
829 }
830 }
831 return dev;
832}
833
0f0749ad 834static dev_t container_choose_spare(struct state *from, struct state *to,
f0b85306 835 struct domainlist *domlist,
a1e49d69 836 unsigned long long min_size, int active)
5739e0d0
N
837{
838 /* This is similar to choose_spare, but we cannot trust devstate,
839 * so we need to read the metadata instead
840 */
326727d9 841 struct mdinfo *list;
5739e0d0 842 struct supertype *st = from->metadata;
ff044d6b 843 int fd = open(from->devname, O_RDONLY);
5739e0d0 844 int err;
0f0749ad 845 dev_t dev = 0;
5739e0d0
N
846
847 if (fd < 0)
848 return 0;
326727d9
AC
849 if (!st->ss->getinfo_super_disks) {
850 close(fd);
5739e0d0 851 return 0;
326727d9 852 }
1011e834 853
5739e0d0
N
854 err = st->ss->load_container(st, fd, NULL);
855 close(fd);
856 if (err)
857 return 0;
1011e834 858
a1e49d69
CA
859 if (from == to) {
860 /* We must check if number of active disks has not increased
861 * since ioctl in main loop. mdmon may have added spare
862 * to subarray. If so we do not need to look for more spares
863 * so return non zero value */
864 int active_cnt = 0;
865 struct mdinfo *dp;
866 list = st->ss->getinfo_super_disks(st);
867 if (!list) {
868 st->ss->free_super(st);
869 return 1;
870 }
871 dp = list->devs;
872 while (dp) {
873 if (dp->disk.state & (1<<MD_DISK_SYNC) &&
874 !(dp->disk.state & (1<<MD_DISK_FAULTY)))
875 active_cnt++;
876 dp = dp->next;
877 }
878 sysfs_free(list);
879 if (active < active_cnt) {
880 /* Spare just activated.*/
881 st->ss->free_super(st);
882 return 1;
883 }
884 }
885
326727d9
AC
886 /* We only need one spare so full list not needed */
887 list = container_choose_spares(st, min_size, domlist, from->spare_group,
888 to->metadata->ss->name, 1);
889 if (list) {
890 struct mdinfo *disks = list->devs;
891 if (disks)
892 dev = makedev(disks->disk.major, disks->disk.minor);
893 sysfs_free(list);
5739e0d0 894 }
326727d9 895 st->ss->free_super(st);
5739e0d0
N
896 return dev;
897}
898
e0bd6a96 899static void try_spare_migration(struct state *statelist, struct alert_info *info)
2e0172b1 900{
66f5c4b6
N
901 struct state *from;
902 struct state *st;
c3621c0a
ML
903
904 link_containers_with_subarrays(statelist);
66f5c4b6
N
905 for (st = statelist; st; st = st->next)
906 if (st->active < st->raid &&
ef15641f 907 st->spare == 0 && !st->err) {
e78dda3b
N
908 struct domainlist *domlist = NULL;
909 int d;
66f5c4b6 910 struct state *to = st;
f0b85306 911 unsigned long long min_size;
66f5c4b6 912
4dd2df09 913 if (to->parent_devnm[0] && !to->parent)
c0dc0ad5
CA
914 /* subarray monitored without parent container
915 * we can't move spares here */
916 continue;
1011e834 917
66f5c4b6
N
918 if (to->parent)
919 /* member of a container */
920 to = to->parent;
e78dda3b 921
de697acc
AC
922 if (get_min_spare_size_required(to, &min_size))
923 continue;
e9a2ac02
AC
924 if (to->metadata->ss->external) {
925 /* We must make sure there is
926 * no suitable spare in container already.
927 * If there is we don't add more */
928 dev_t devid = container_choose_spare(
a1e49d69 929 to, to, NULL, min_size, st->active);
e9a2ac02
AC
930 if (devid > 0)
931 continue;
932 }
b0599bda 933 for (d = 0; d < MAX_DISKS; d++)
e78dda3b
N
934 if (to->devid[d])
935 domainlist_add_dev(&domlist,
936 to->devid[d],
937 to->metadata->ss->name);
938 if (to->spare_group)
939 domain_add(&domlist, to->spare_group);
5ec0f373
ML
940 /*
941 * No spare migration if the destination
942 * has no domain. Skip this array.
943 */
944 if (!domlist)
945 continue;
0fa21e85 946 for (from=statelist ; from ; from=from->next) {
0f0749ad 947 dev_t devid;
5ec0f373 948 if (!check_donor(from, to))
0fa21e85 949 continue;
5739e0d0
N
950 if (from->metadata->ss->external)
951 devid = container_choose_spare(
a1e49d69 952 from, to, domlist, min_size, 0);
5739e0d0 953 else
f0b85306
AC
954 devid = choose_spare(from, to, domlist,
955 min_size);
0fa21e85 956 if (devid > 0
d52bb542
AC
957 && move_spare(from->devname, to->devname, devid)) {
958 alert("MoveSpare", to->devname, from->devname, info);
959 break;
960 }
0fa21e85 961 }
e78dda3b 962 domain_free(domlist);
2e0172b1
N
963 }
964}
c3621c0a
ML
965
966/* search the statelist to connect external
967 * metadata subarrays with their containers
968 * We always completely rebuild the tree from scratch as
969 * that is safest considering the possibility of entries
970 * disappearing or changing.
971 */
972static void link_containers_with_subarrays(struct state *list)
973{
974 struct state *st;
975 struct state *cont;
976 for (st = list; st; st = st->next) {
977 st->parent = NULL;
978 st->subarray = NULL;
979 }
980 for (st = list; st; st = st->next)
4dd2df09 981 if (st->parent_devnm[0])
c3621c0a
ML
982 for (cont = list; cont; cont = cont->next)
983 if (!cont->err &&
4dd2df09
N
984 cont->parent_devnm[0] == 0 &&
985 strcmp(cont->devnm, st->parent_devnm) == 0) {
c3621c0a
ML
986 st->parent = cont;
987 st->subarray = cont->subarray;
988 cont->subarray = st;
989 break;
990 }
991}
992
b90c0e9a
NB
993/* Not really Monitor but ... */
994int Wait(char *dev)
995{
996 struct stat stb;
4dd2df09 997 char devnm[32];
75dd32a1 998 char *tmp;
b90c0e9a 999 int rv = 1;
d3f6cf4f 1000 int frozen_remaining = 3;
b90c0e9a
NB
1001
1002 if (stat(dev, &stb) != 0) {
e7b84f9d 1003 pr_err("Cannot find %s: %s\n", dev,
b90c0e9a
NB
1004 strerror(errno));
1005 return 2;
1006 }
75dd32a1
ZL
1007 tmp = stat2devnm(&stb);
1008 if (!tmp) {
1009 pr_err("%s is not a block device.\n", dev);
1010 return 2;
1011 }
1012 strcpy(devnm, tmp);
b90c0e9a
NB
1013
1014 while(1) {
1015 struct mdstat_ent *ms = mdstat_read(1, 0);
1016 struct mdstat_ent *e;
1017
1018 for (e=ms ; e; e=e->next)
4dd2df09 1019 if (strcmp(e->devnm, devnm) == 0)
b90c0e9a
NB
1020 break;
1021
d3f6cf4f 1022 if (e && e->percent == RESYNC_NONE) {
276be514
N
1023 /* We could be in the brief pause before something
1024 * starts. /proc/mdstat doesn't show that, but
1025 * sync_action does.
1026 */
1027 struct mdinfo mdi;
1028 char buf[21];
dae13137
JS
1029
1030 if (sysfs_init(&mdi, -1, devnm))
1031 return 2;
276be514
N
1032 if (sysfs_get_str(&mdi, NULL, "sync_action",
1033 buf, 20) > 0 &&
d3f6cf4f 1034 strcmp(buf,"idle\n") != 0) {
276be514 1035 e->percent = RESYNC_UNKNOWN;
d3f6cf4f
N
1036 if (strcmp(buf, "frozen\n") == 0) {
1037 if (frozen_remaining == 0)
1038 e->percent = RESYNC_NONE;
1039 else
1040 frozen_remaining -= 1;
1041 }
1042 }
276be514 1043 }
639c3c10 1044 if (!e || e->percent == RESYNC_NONE) {
e7783ee6 1045 if (e && e->metadata_version &&
c94709e8
DW
1046 strncmp(e->metadata_version, "external:", 9) == 0) {
1047 if (is_subarray(&e->metadata_version[9]))
1048 ping_monitor(&e->metadata_version[9]);
1049 else
4dd2df09 1050 ping_monitor(devnm);
c94709e8 1051 }
b90c0e9a
NB
1052 free_mdstat(ms);
1053 return rv;
1054 }
89a10d84 1055 free_mdstat(ms);
b90c0e9a
NB
1056 rv = 0;
1057 mdstat_wait(5);
1058 }
1059}
679eb882
N
1060
1061#ifndef MDASSEMBLE
1062
1063static char *clean_states[] = {
1064 "clear", "inactive", "readonly", "read-auto", "clean", NULL };
1065
1066int WaitClean(char *dev, int sock, int verbose)
1067{
1068 int fd;
1069 struct mdinfo *mdi;
1070 int rv = 1;
4dd2df09 1071 char devnm[32];
679eb882
N
1072
1073 fd = open(dev, O_RDONLY);
1074 if (fd < 0) {
1075 if (verbose)
e7b84f9d 1076 pr_err("Couldn't open %s: %s\n", dev, strerror(errno));
679eb882
N
1077 return 1;
1078 }
1079
4dd2df09
N
1080 strcpy(devnm, fd2devnm(fd));
1081 mdi = sysfs_read(fd, devnm, GET_VERSION|GET_LEVEL|GET_SAFEMODE);
679eb882
N
1082 if (!mdi) {
1083 if (verbose)
7a862a02 1084 pr_err("Failed to read sysfs attributes for %s\n", dev);
679eb882
N
1085 close(fd);
1086 return 0;
1087 }
1088
1089 switch(mdi->array.level) {
1090 case LEVEL_LINEAR:
1091 case LEVEL_MULTIPATH:
1092 case 0:
1093 /* safemode delay is irrelevant for these levels */
1094 rv = 0;
1095 }
1096
1097 /* for internal metadata the kernel handles the final clean
1098 * transition, containers can never be dirty
1099 */
1100 if (!is_subarray(mdi->text_version))
1101 rv = 0;
1102
1103 /* safemode disabled ? */
1104 if (mdi->safe_mode_delay == 0)
1105 rv = 0;
1106
1107 if (rv) {
4dd2df09 1108 int state_fd = sysfs_open(fd2devnm(fd), NULL, "array_state");
679eb882 1109 char buf[20];
efc67e8e 1110 int delay = 5000;
679eb882
N
1111
1112 /* minimize the safe_mode_delay and prepare to wait up to 5s
1113 * for writes to quiesce
1114 */
1115 sysfs_set_safemode(mdi, 1);
679eb882
N
1116
1117 /* wait for array_state to be clean */
1118 while (1) {
1119 rv = read(state_fd, buf, sizeof(buf));
1120 if (rv < 0)
1121 break;
1122 if (sysfs_match_word(buf, clean_states) <= 4)
1123 break;
efc67e8e 1124 rv = sysfs_wait(state_fd, &delay);
679eb882
N
1125 if (rv < 0 && errno != EINTR)
1126 break;
1127 lseek(state_fd, 0, SEEK_SET);
1128 }
1129 if (rv < 0)
1130 rv = 1;
1131 else if (fping_monitor(sock) == 0 ||
1132 ping_monitor(mdi->text_version) == 0) {
1133 /* we need to ping to close the window between array
1134 * state transitioning to clean and the metadata being
1135 * marked clean
1136 */
1137 rv = 0;
1138 } else
1139 rv = 1;
1140 if (rv && verbose)
e7b84f9d 1141 pr_err("Error waiting for %s to be clean\n",
679eb882
N
1142 dev);
1143
1144 /* restore the original safe_mode_delay */
1145 sysfs_set_safemode(mdi, mdi->safe_mode_delay);
1146 close(state_fd);
1147 }
1148
1149 sysfs_free(mdi);
1150 close(fd);
1151
1152 return rv;
1153}
1154#endif /* MDASSEMBLE */