]> git.ipfire.org Git - thirdparty/mdadm.git/blame - monitor.c
mdmon: bad block support for external metadata - clear bad blocks
[thirdparty/mdadm.git] / monitor.c
CommitLineData
a54d5262
DW
1/*
2 * mdmon - monitor external metadata arrays
3 *
e736b623
N
4 * Copyright (C) 2007-2009 Neil Brown <neilb@suse.de>
5 * Copyright (C) 2007-2009 Intel Corporation
a54d5262
DW
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 */
549e9569
NB
20
21#include "mdadm.h"
22#include "mdmon.h"
4d43913c 23#include <sys/syscall.h>
549e9569 24#include <sys/select.h>
1ed3f387 25#include <signal.h>
549e9569
NB
26
27static char *array_states[] = {
28 "clear", "inactive", "suspended", "readonly", "read-auto",
29 "clean", "active", "write-pending", "active-idle", NULL };
30static char *sync_actions[] = {
31 "idle", "reshape", "resync", "recover", "check", "repair", NULL
32};
33
1ab97c97
TM
34enum bb_action {
35 RECORD_BB = 1,
42d902d9 36 COMPARE_BB,
1ab97c97
TM
37};
38
549e9569
NB
39static int write_attr(char *attr, int fd)
40{
41 return write(fd, attr, strlen(attr));
42}
43
44static void add_fd(fd_set *fds, int *maxfd, int fd)
45{
2b60d289 46 struct stat st;
549e9569
NB
47 if (fd < 0)
48 return;
2b60d289 49 if (fstat(fd, &st) == -1) {
1ade5cc1 50 dprintf("Invalid fd %d\n", fd);
2b60d289 51 return;
52 }
53 if (st.st_nlink == 0) {
1ade5cc1 54 dprintf("fd %d was deleted\n", fd);
2b60d289 55 return;
56 }
549e9569
NB
57 if (fd > *maxfd)
58 *maxfd = fd;
59 FD_SET(fd, fds);
60}
61
62static int read_attr(char *buf, int len, int fd)
63{
64 int n;
65
66 if (fd < 0) {
67 buf[0] = 0;
68 return 0;
69 }
70 lseek(fd, 0, 0);
71 n = read(fd, buf, len - 1);
72
73 if (n <= 0) {
74 buf[0] = 0;
75 return 0;
76 }
77 buf[n] = 0;
78 if (buf[n-1] == '\n')
79 buf[n-1] = 0;
80 return n;
81}
82
40ae6f5f 83static void read_resync_start(int fd, unsigned long long *v)
c052ba30
DW
84{
85 char buf[30];
86 int n;
87
b7941fd6 88 n = read_attr(buf, 30, fd);
40ae6f5f 89 if (n <= 0) {
1ade5cc1 90 dprintf("Failed to read resync_start (%d)\n", fd);
40ae6f5f 91 return;
92 }
7e7fffc4 93 if (strncmp(buf, "none", 4) == 0)
40ae6f5f 94 *v = MaxSector;
7e7fffc4 95 else
40ae6f5f 96 *v = strtoull(buf, NULL, 10);
c052ba30 97}
549e9569 98
484240d8
DW
99static unsigned long long read_sync_completed(int fd)
100{
101 unsigned long long val;
102 char buf[50];
103 int n;
104 char *ep;
105
106 n = read_attr(buf, 50, fd);
107
108 if (n <= 0)
109 return 0;
110 buf[n] = 0;
111 val = strtoull(buf, &ep, 0);
112 if (ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))
113 return 0;
114 return val;
115}
116
549e9569
NB
117static enum array_state read_state(int fd)
118{
119 char buf[20];
120 int n = read_attr(buf, 20, fd);
121
122 if (n <= 0)
123 return bad_word;
1770662b 124 return (enum array_state) sysfs_match_word(buf, array_states);
549e9569
NB
125}
126
127static enum sync_action read_action( int fd)
128{
129 char buf[20];
130 int n = read_attr(buf, 20, fd);
131
132 if (n <= 0)
133 return bad_action;
1770662b 134 return (enum sync_action) sysfs_match_word(buf, sync_actions);
549e9569
NB
135}
136
549e9569
NB
137int read_dev_state(int fd)
138{
cf52eff5
TM
139 char buf[100];
140 int n = read_attr(buf, sizeof(buf), fd);
549e9569
NB
141 char *cp;
142 int rv = 0;
143
144 if (n <= 0)
145 return 0;
146
147 cp = buf;
148 while (cp) {
1770662b 149 if (sysfs_attr_match(cp, "faulty"))
549e9569 150 rv |= DS_FAULTY;
1770662b 151 if (sysfs_attr_match(cp, "in_sync"))
549e9569 152 rv |= DS_INSYNC;
1770662b 153 if (sysfs_attr_match(cp, "write_mostly"))
549e9569 154 rv |= DS_WRITE_MOSTLY;
1770662b 155 if (sysfs_attr_match(cp, "spare"))
549e9569 156 rv |= DS_SPARE;
1770662b 157 if (sysfs_attr_match(cp, "blocked"))
8d45d196 158 rv |= DS_BLOCKED;
549e9569
NB
159 cp = strchr(cp, ',');
160 if (cp)
161 cp++;
162 }
163 return rv;
164}
165
1ab97c97
TM
166int process_ubb(struct active_array *a, struct mdinfo *mdi, const unsigned long
167 long sector, const int length, const char *buf,
168 const int buf_len)
169{
170 struct superswitch *ss = a->container->ss;
171
172 /*
173 * record bad block in metadata first, then acknowledge it to the driver
174 * via sysfs file
175 */
176 if ((ss->record_bad_block(a, mdi->disk.raid_disk, sector, length)) &&
177 (write(mdi->bb_fd, buf, buf_len) == buf_len))
178 return 1;
179
180 /*
181 * failed to store or acknowledge bad block, switch of bad block support
182 * to get it out of blocked state
183 */
184 sysfs_set_str(&a->info, mdi, "state", "-external_bbl");
185 return -1;
186}
187
42d902d9
TM
188int compare_bb(struct active_array *a, struct mdinfo *mdi, const unsigned long
189 long sector, const unsigned int length, void *arg)
190{
191 struct superswitch *ss = a->container->ss;
192 struct md_bb *bb = (struct md_bb *) arg;
193 int record = 1;
194 int i;
195
196 for (i = 0; i < bb->count; i++) {
197 unsigned long long start = bb->entries[i].sector;
198 unsigned long long len = bb->entries[i].length;
199
200 /*
201 * bad block in metadata exactly matches bad block in kernel
202 * list, just remove it from a list
203 */
204 if ((start == sector) && (len == length)) {
205 if (i < bb->count - 1)
206 bb->entries[i] = bb->entries[bb->count - 1];
207 bb->count -= 1;
208 record = 0;
209 break;
210 }
211 /*
212 * bad block in metadata spans bad block in kernel list,
213 * clear it and record new bad block
214 */
215 if ((sector >= start) && (sector + length <= start + len)) {
216 ss->clear_bad_block(a, mdi->disk.raid_disk, start, len);
217 break;
218 }
219 }
220
221 /* record all bad blocks not in metadata list */
222 if (record && (ss->record_bad_block(a, mdi->disk.raid_disk, sector,
223 length) <= 0)) {
224 sysfs_set_str(&a->info, mdi, "state", "-external_bbl");
225 return -1;
226 }
227
228 return 1;
229}
230
1ab97c97
TM
231static int read_bb_file(int fd, struct active_array *a, struct mdinfo *mdi,
232 enum bb_action action, void *arg)
233{
234 char buf[30];
235 int n = 0;
236 int ret = 0;
237 int read_again = 0;
238 int off = 0;
239 int pos = 0;
240 int preserve_pos = (action == RECORD_BB ? 0 : 1);
241
242 if (lseek(fd, 0, SEEK_SET) == (off_t) -1)
243 return -1;
244
245 do {
246 read_again = 0;
247 n = read(fd, buf + pos, sizeof(buf) - 1 - pos);
248 if (n < 0)
249 return -1;
250 n += pos;
251
252 buf[n] = '\0';
253 off = 0;
254
255 while (off < n) {
256 unsigned long long sector;
257 int length;
258 char newline;
259 int consumed;
260 int matched;
261 int rc;
262
263 /* kernel sysfs file format: "sector length\n" */
264 matched = sscanf(buf + off, "%llu %d%c%n", &sector,
265 &length, &newline, &consumed);
266 if ((matched != 3) && (off > 0)) {
267 /* truncated entry, read again */
268 if (preserve_pos) {
269 pos = sizeof(buf) - off - 1;
270 memmove(buf, buf + off, pos);
271 } else {
272 if (lseek(fd, 0, SEEK_SET) ==
273 (off_t) -1)
274 return -1;
275 }
276 read_again = 1;
277 break;
278 }
279 if (matched != 3)
280 return -1;
281 if (newline != '\n')
282 return -1;
283 if (length <= 0)
284 return -1;
285
286 if (action == RECORD_BB)
287 rc = process_ubb(a, mdi, sector, length,
288 buf + off, consumed);
42d902d9
TM
289 else if (action == COMPARE_BB)
290 rc = compare_bb(a, mdi, sector, length, arg);
1ab97c97
TM
291 else
292 rc = -1;
293
294 if (rc < 0)
295 return rc;
296 ret += rc;
297 off += consumed;
298 }
299 } while (read_again);
300
301 return ret;
302}
303
304static int process_dev_ubb(struct active_array *a, struct mdinfo *mdi)
305{
306 return read_bb_file(mdi->ubb_fd, a, mdi, RECORD_BB, NULL);
307}
308
42d902d9
TM
309static int check_for_cleared_bb(struct active_array *a, struct mdinfo *mdi)
310{
311 struct superswitch *ss = a->container->ss;
312 struct md_bb *bb;
313 int i;
314
315 /*
316 * Get a list of bad blocks for an array, then read list of
317 * acknowledged bad blocks from kernel and compare it against metadata
318 * list, clear all bad blocks remaining in metadata list
319 */
320 bb = ss->get_bad_blocks(a, mdi->disk.raid_disk);
321 if (!bb)
322 return -1;
323
324 if (read_bb_file(mdi->bb_fd, a, mdi, COMPARE_BB, bb) < 0)
325 return -1;
326
327 for (i = 0; i < bb->count; i++) {
328 unsigned long long sector = bb->entries[i].sector;
329 int length = bb->entries[i].length;
330
331 ss->clear_bad_block(a, mdi->disk.raid_disk, sector, length);
332 }
333
334 return 0;
335}
336
1ed3f387
NB
337static void signal_manager(void)
338{
4d43913c
NB
339 /* tgkill(getpid(), mon_tid, SIGUSR1); */
340 int pid = getpid();
341 syscall(SYS_tgkill, pid, mgr_tid, SIGUSR1);
1ed3f387 342}
549e9569
NB
343
344/* Monitor a set of active md arrays - all of which share the
345 * same metadata - and respond to events that require
346 * metadata update.
347 *
348 * New arrays are detected by another thread which allocates
349 * required memory and attaches the data structure to our list.
350 *
351 * Events:
352 * Array stops.
353 * This is detected by array_state going to 'clear' or 'inactive'.
354 * while we thought it was active.
355 * Response is to mark metadata as clean and 'clear' the array(??)
356 * write-pending
357 * array_state if 'write-pending'
358 * We mark metadata as 'dirty' then set array to 'active'.
359 * active_idle
360 * Either ignore, or mark clean, then mark metadata as clean.
361 *
362 * device fails
363 * detected by rd-N/state reporting "faulty"
8d45d196
DW
364 * mark device as 'failed' in metadata, let the kernel release the
365 * device by writing '-blocked' to rd/state, and finally write 'remove' to
0af73f61
DW
366 * rd/state. Before a disk can be replaced it must be failed and removed
367 * from all container members, this will be preemptive for the other
368 * arrays... safe?
549e9569
NB
369 *
370 * sync completes
371 * sync_action was 'resync' and becomes 'idle' and resync_start becomes
372 * MaxSector
373 * Notify metadata that sync is complete.
549e9569
NB
374 *
375 * recovery completes
376 * sync_action changes from 'recover' to 'idle'
377 * Check each device state and mark metadata if 'faulty' or 'in_sync'.
549e9569
NB
378 *
379 * deal with resync
c052ba30
DW
380 * This only happens on finding a new array... mdadm will have set
381 * 'resync_start' to the correct value. If 'resync_start' indicates that an
382 * resync needs to occur set the array to the 'active' state rather than the
383 * initial read-auto state.
549e9569
NB
384 *
385 *
386 *
387 * We wait for a change (poll/select) on array_state, sync_action, and
388 * each rd-X/state file.
389 * When we get any change, we check everything. So read each state file,
390 * then decide what to do.
391 *
392 * The core action is to write new metadata to all devices in the array.
393 * This is done at most once on any wakeup.
394 * After that we might:
395 * - update the array_state
396 * - set the role of some devices.
397 * - request a sync_action
398 *
399 */
400
77b3ac8c 401#define ARRAY_DIRTY 1
68226a80 402#define ARRAY_BUSY 2
42d902d9 403static int read_and_act(struct active_array *a, fd_set *fds)
549e9569 404{
484240d8 405 unsigned long long sync_completed;
6c3fb95c 406 int check_degraded = 0;
0f99b4bd 407 int check_reshape = 0;
2a0bb19e 408 int deactivate = 0;
549e9569 409 struct mdinfo *mdi;
77b3ac8c 410 int ret = 0;
3a5d0473 411 int count = 0;
39da26ec 412 struct timeval tv;
549e9569
NB
413
414 a->next_state = bad_word;
415 a->next_action = bad_action;
416
417 a->curr_state = read_state(a->info.state_fd);
418 a->curr_action = read_action(a->action_fd);
40ae6f5f 419 if (a->curr_state != clear)
420 /*
421 * In "clear" state, resync_start may wrongly be set to "0"
422 * when the kernel called md_clean but didn't remove the
423 * sysfs attributes yet
424 */
425 read_resync_start(a->resync_start_fd, &a->info.resync_start);
484240d8 426 sync_completed = read_sync_completed(a->sync_completed_fd);
549e9569
NB
427 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
428 mdi->next_state = 0;
10ce1808 429 mdi->curr_state = 0;
e1516be1 430 if (mdi->state_fd >= 0) {
40ae6f5f 431 read_resync_start(mdi->recovery_fd,
432 &mdi->recovery_start);
8d45d196 433 mdi->curr_state = read_dev_state(mdi->state_fd);
e1516be1 434 }
1ab97c97
TM
435 /*
436 * If array is blocked and metadata handler is able to handle
437 * BB, check if you can acknowledge them to md driver. If
438 * successful, clear faulty state and unblock the array.
439 */
440 if ((mdi->curr_state & DS_BLOCKED) &&
441 a->container->ss->record_bad_block &&
442 (process_dev_ubb(a, mdi) > 0)) {
443 mdi->next_state |= DS_UNBLOCK;
444 }
42d902d9
TM
445 if (FD_ISSET(mdi->bb_fd, fds))
446 check_for_cleared_bb(a, mdi);
549e9569
NB
447 }
448
39da26ec 449 gettimeofday(&tv, NULL);
1ade5cc1
N
450 dprintf("(%d): %ld.%06ld state:%s prev:%s action:%s prev: %s start:%llu\n",
451 a->info.container_member,
39da26ec
MW
452 tv.tv_sec, tv.tv_usec,
453 array_states[a->curr_state],
454 array_states[a->prev_state],
455 sync_actions[a->curr_action],
456 sync_actions[a->prev_action],
457 a->info.resync_start
458 );
459
6b374ba3 460 if ((a->curr_state == bad_word || a->curr_state <= inactive) &&
549e9569
NB
461 a->prev_state > inactive) {
462 /* array has been stopped */
ed9d66aa 463 a->container->ss->set_array_state(a, 1);
549e9569 464 a->next_state = clear;
2a0bb19e 465 deactivate = 1;
549e9569
NB
466 }
467 if (a->curr_state == write_pending) {
ed9d66aa 468 a->container->ss->set_array_state(a, 0);
549e9569 469 a->next_state = active;
77b3ac8c 470 ret |= ARRAY_DIRTY;
549e9569
NB
471 }
472 if (a->curr_state == active_idle) {
d797a062
DW
473 /* Set array to 'clean' FIRST, then mark clean
474 * in the metadata
549e9569 475 */
d797a062 476 a->next_state = clean;
77b3ac8c 477 ret |= ARRAY_DIRTY;
d797a062
DW
478 }
479 if (a->curr_state == clean) {
d797a062 480 a->container->ss->set_array_state(a, 1);
549e9569 481 }
140d3685 482 if (a->curr_state == active ||
6b374ba3 483 a->curr_state == suspended)
77b3ac8c 484 ret |= ARRAY_DIRTY;
549e9569 485 if (a->curr_state == readonly) {
e9dd1598
N
486 /* Well, I'm ready to handle things. If readonly
487 * wasn't requested, transition to read-auto.
549e9569 488 */
e9dd1598
N
489 char buf[64];
490 read_attr(buf, sizeof(buf), a->metadata_fd);
491 if (strncmp(buf, "external:-", 10) == 0) {
492 /* explicit request for readonly array. Leave it alone */
493 ;
494 } else {
e9dd1598
N
495 if (a->container->ss->set_array_state(a, 2))
496 a->next_state = read_auto; /* array is clean */
140d3685 497 else {
e9dd1598 498 a->next_state = active; /* Now active for recovery etc */
77b3ac8c 499 ret |= ARRAY_DIRTY;
140d3685 500 }
e9dd1598 501 }
549e9569
NB
502 }
503
00e02142
DW
504 if (!deactivate &&
505 a->curr_action == idle &&
549e9569 506 a->prev_action == resync) {
4e5528c6
NB
507 /* A resync has finished. The endpoint is recorded in
508 * 'sync_start'. We don't update the metadata
509 * until the array goes inactive or readonly though.
510 * Just check if we need to fiddle spares.
511 */
0c0c44db 512 a->container->ss->set_array_state(a, a->curr_state <= clean);
549e9569
NB
513 check_degraded = 1;
514 }
515
00e02142
DW
516 if (!deactivate &&
517 a->curr_action == idle &&
549e9569 518 a->prev_action == recover) {
0a6bdbee
DW
519 /* A recovery has finished. Some disks may be in sync now,
520 * and the array may no longer be degraded
521 */
549e9569 522 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
8d45d196
DW
523 a->container->ss->set_disk(a, mdi->disk.raid_disk,
524 mdi->curr_state);
549e9569
NB
525 if (! (mdi->curr_state & DS_INSYNC))
526 check_degraded = 1;
3a5d0473 527 count++;
549e9569 528 }
3a5d0473
KW
529 if (count != a->info.array.raid_disks)
530 check_degraded = 1;
549e9569
NB
531 }
532
0f99b4bd
N
533 if (!deactivate &&
534 a->curr_action == reshape &&
535 a->prev_action != reshape)
536 /* reshape was requested by mdadm. Need to see if
537 * new devices have been added. Manager does that
538 * when it sees check_reshape
539 */
540 check_reshape = 1;
541
92967543
DW
542 /* Check for failures and if found:
543 * 1/ Record the failure in the metadata and unblock the device.
544 * FIXME update the kernel to stop notifying on failed drives when
545 * the array is readonly and we have cleared 'blocked'
546 * 2/ Try to remove the device if the array is writable, or can be
547 * made writable.
548 */
549e9569
NB
549 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
550 if (mdi->curr_state & DS_FAULTY) {
8d45d196
DW
551 a->container->ss->set_disk(a, mdi->disk.raid_disk,
552 mdi->curr_state);
549e9569 553 check_degraded = 1;
1c278e81
N
554 if (mdi->curr_state & DS_BLOCKED)
555 mdi->next_state |= DS_UNBLOCK;
92967543
DW
556 if (a->curr_state == read_auto) {
557 a->container->ss->set_array_state(a, 0);
558 a->next_state = active;
559 }
560 if (a->curr_state > readonly)
561 mdi->next_state |= DS_REMOVE;
549e9569
NB
562 }
563 }
564
484240d8
DW
565 /* Check for recovery checkpoint notifications. We need to be a
566 * minimum distance away from the last checkpoint to prevent
aad6f216
N
567 * over checkpointing. Note reshape checkpointing is handled
568 * in the second branch.
484240d8
DW
569 */
570 if (sync_completed > a->last_checkpoint &&
571 sync_completed - a->last_checkpoint > a->info.component_size >> 4 &&
4f0a7acc
DW
572 a->curr_action > reshape) {
573 /* A (non-reshape) sync_action has reached a checkpoint.
574 * Record the updated position in the metadata
575 */
576 a->last_checkpoint = sync_completed;
577 a->container->ss->set_array_state(a, a->curr_state <= clean);
aad6f216
N
578 } else if ((a->curr_action == idle && a->prev_action == reshape) ||
579 (a->curr_action == reshape
580 && sync_completed > a->last_checkpoint) ) {
581 /* Reshape has progressed or completed so we need to
582 * update the array state - and possibly the array size
583 */
2a9f8409
AK
584 if (sync_completed != 0)
585 a->last_checkpoint = sync_completed;
6d4225a1
AK
586 /* We might need to update last_checkpoint depending on
587 * the reason that reshape finished.
588 * if array reshape is really finished:
589 * set check point to the end, this allows
590 * set_array_state() to finalize reshape in metadata
591 * if reshape if broken: do not set checkpoint to the end
592 * this allows for reshape restart from checkpoint
593 */
594 if ((a->curr_action != reshape) &&
595 (a->prev_action == reshape)) {
596 char buf[40];
597 if ((sysfs_get_str(&a->info, NULL,
598 "reshape_position",
599 buf,
600 sizeof(buf)) >= 0) &&
601 strncmp(buf, "none", 4) == 0)
602 a->last_checkpoint = a->info.component_size;
603 }
aad6f216 604 a->container->ss->set_array_state(a, a->curr_state <= clean);
2a9f8409 605 a->last_checkpoint = sync_completed;
aad6f216
N
606 }
607
608 if (sync_completed > a->last_checkpoint)
484240d8 609 a->last_checkpoint = sync_completed;
484240d8 610
955aa6cf
PB
611 if (sync_completed >= a->info.component_size)
612 a->last_checkpoint = 0;
613
a4921f30 614 a->container->ss->sync_metadata(a->container);
1ade5cc1 615 dprintf("(%d): state:%s action:%s next(", a->info.container_member,
4065aa81 616 array_states[a->curr_state], sync_actions[a->curr_action]);
549e9569
NB
617
618 /* Effect state changes in the array */
4e6e574a 619 if (a->next_state != bad_word) {
1ade5cc1 620 dprintf_cont(" state:%s", array_states[a->next_state]);
549e9569 621 write_attr(array_states[a->next_state], a->info.state_fd);
4e6e574a
DW
622 }
623 if (a->next_action != bad_action) {
549e9569 624 write_attr(sync_actions[a->next_action], a->action_fd);
1ade5cc1 625 dprintf_cont(" action:%s", sync_actions[a->next_action]);
4e6e574a 626 }
549e9569 627 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
92967543 628 if (mdi->next_state & DS_UNBLOCK) {
1ade5cc1 629 dprintf_cont(" %d:-blocked", mdi->disk.raid_disk);
92967543
DW
630 write_attr("-blocked", mdi->state_fd);
631 }
632
633 if ((mdi->next_state & DS_REMOVE) && mdi->state_fd >= 0) {
57632f4a 634 int remove_result;
8d45d196 635
68226a80
N
636 /* The kernel may not be able to immediately remove the
637 * disk. In that case we wait a little while and
638 * try again.
8d45d196 639 */
57632f4a
NB
640 remove_result = write_attr("remove", mdi->state_fd);
641 if (remove_result > 0) {
1ade5cc1 642 dprintf_cont(" %d:removed", mdi->disk.raid_disk);
8d45d196 643 close(mdi->state_fd);
e40512fd 644 close(mdi->recovery_fd);
6dc1785f
TM
645 close(mdi->bb_fd);
646 close(mdi->ubb_fd);
8d45d196 647 mdi->state_fd = -1;
68226a80
N
648 } else
649 ret |= ARRAY_BUSY;
8d45d196 650 }
4e6e574a 651 if (mdi->next_state & DS_INSYNC) {
549e9569 652 write_attr("+in_sync", mdi->state_fd);
1ade5cc1 653 dprintf_cont(" %d:+in_sync", mdi->disk.raid_disk);
4e6e574a 654 }
549e9569 655 }
1ade5cc1 656 dprintf_cont(" )\n");
549e9569
NB
657
658 /* move curr_ to prev_ */
659 a->prev_state = a->curr_state;
660
661 a->prev_action = a->curr_action;
662
663 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
664 mdi->prev_state = mdi->curr_state;
665 mdi->next_state = 0;
666 }
667
0f99b4bd 668 if (check_degraded || check_reshape) {
7e1432fb 669 /* manager will do the actual check */
0f99b4bd
N
670 if (check_degraded)
671 a->check_degraded = 1;
672 if (check_reshape)
673 a->check_reshape = 1;
7e1432fb
NB
674 signal_manager();
675 }
676
2a0bb19e
DW
677 if (deactivate)
678 a->container = NULL;
679
77b3ac8c 680 return ret;
549e9569
NB
681}
682
0af73f61
DW
683static struct mdinfo *
684find_device(struct active_array *a, int major, int minor)
685{
686 struct mdinfo *mdi;
687
688 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
689 if (mdi->disk.major == major && mdi->disk.minor == minor)
690 return mdi;
691
692 return NULL;
693}
694
695static void reconcile_failed(struct active_array *aa, struct mdinfo *failed)
696{
697 struct active_array *a;
698 struct mdinfo *victim;
699
700 for (a = aa; a; a = a->next) {
ba714450 701 if (!a->container || a->to_remove)
0af73f61
DW
702 continue;
703 victim = find_device(a, failed->disk.major, failed->disk.minor);
704 if (!victim)
705 continue;
706
707 if (!(victim->curr_state & DS_FAULTY))
708 write_attr("faulty", victim->state_fd);
709 }
710}
711
4e6e574a
DW
712#ifdef DEBUG
713static void dprint_wake_reasons(fd_set *fds)
714{
715 int i;
716 char proc_path[256];
717 char link[256];
718 char *basename;
719 int rv;
720
721 fprintf(stderr, "monitor: wake ( ");
722 for (i = 0; i < FD_SETSIZE; i++) {
723 if (FD_ISSET(i, fds)) {
724 sprintf(proc_path, "/proc/%d/fd/%d",
725 (int) getpid(), i);
726
727 rv = readlink(proc_path, link, sizeof(link) - 1);
728 if (rv < 0) {
729 fprintf(stderr, "%d:unknown ", i);
730 continue;
731 }
732 link[rv] = '\0';
733 basename = strrchr(link, '/');
734 fprintf(stderr, "%d:%s ",
735 i, basename ? ++basename : link);
736 }
737 }
738 fprintf(stderr, ")\n");
739}
740#endif
741
1eb252b8
N
742int monitor_loop_cnt;
743
4d43913c 744static int wait_and_act(struct supertype *container, int nowait)
549e9569
NB
745{
746 fd_set rfds;
747 int maxfd = 0;
e0d6609f 748 struct active_array **aap = &container->arrays;
1ed3f387 749 struct active_array *a, **ap;
549e9569 750 int rv;
0af73f61 751 struct mdinfo *mdi;
6144ed44 752 static unsigned int dirty_arrays = ~0; /* start at some non-zero value */
549e9569
NB
753
754 FD_ZERO(&rfds);
755
1ed3f387
NB
756 for (ap = aap ; *ap ;) {
757 a = *ap;
758 /* once an array has been deactivated we want to
759 * ask the manager to discard it.
2a0bb19e 760 */
ba714450 761 if (!a->container || a->to_remove) {
1ed3f387
NB
762 if (discard_this) {
763 ap = &(*ap)->next;
764 continue;
765 }
766 *ap = a->next;
767 a->next = NULL;
768 discard_this = a;
769 signal_manager();
2a0bb19e 770 continue;
1ed3f387 771 }
2a0bb19e 772
549e9569
NB
773 add_fd(&rfds, &maxfd, a->info.state_fd);
774 add_fd(&rfds, &maxfd, a->action_fd);
484240d8 775 add_fd(&rfds, &maxfd, a->sync_completed_fd);
6dc1785f 776 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
549e9569 777 add_fd(&rfds, &maxfd, mdi->state_fd);
6dc1785f
TM
778 add_fd(&rfds, &maxfd, mdi->bb_fd);
779 add_fd(&rfds, &maxfd, mdi->ubb_fd);
780 }
1ed3f387
NB
781
782 ap = &(*ap)->next;
549e9569
NB
783 }
784
6144ed44
DW
785 if (manager_ready && (*aap == NULL || (sigterm && !dirty_arrays))) {
786 /* No interesting arrays, or we have been told to
787 * terminate and everything is clean. Lets see about
788 * exiting. Note that blocking at this point is not a
789 * problem as there are no active arrays, there is
790 * nothing that we need to be ready to do.
e0d6609f 791 */
d998b738
N
792 int fd;
793 if (sigterm)
4dd2df09 794 fd = open_dev_excl(container->devnm);
d998b738 795 else
4dd2df09 796 fd = open_dev_flags(container->devnm, O_RDONLY|O_EXCL);
e0d6609f
NB
797 if (fd >= 0 || errno != EBUSY) {
798 /* OK, we are safe to leave */
6144ed44
DW
799 if (sigterm && !dirty_arrays)
800 dprintf("caught sigterm, all clean... exiting\n");
801 else
802 dprintf("no arrays to monitor... exiting\n");
fa716c83
N
803 if (!sigterm)
804 /* On SIGTERM, someone (the take-over mdmon) will
805 * clean up
806 */
4dd2df09 807 remove_pidfile(container->devnm);
e0d6609f
NB
808 exit_now = 1;
809 signal_manager();
6f4cdfd9 810 close(fd);
e0d6609f
NB
811 exit(0);
812 }
813 }
814
549e9569 815 if (!nowait) {
4d43913c 816 sigset_t set;
d998b738
N
817 struct timespec ts;
818 ts.tv_sec = 24*3600;
819 ts.tv_nsec = 0;
68226a80 820 if (*aap == NULL || container->retry_soon) {
d998b738
N
821 /* just waiting to get O_EXCL access */
822 ts.tv_sec = 0;
823 ts.tv_nsec = 20000000ULL;
824 }
4d43913c
NB
825 sigprocmask(SIG_UNBLOCK, NULL, &set);
826 sigdelset(&set, SIGUSR1);
1eb252b8 827 monitor_loop_cnt |= 1;
d998b738 828 rv = pselect(maxfd+1, NULL, NULL, &rfds, &ts, &set);
1eb252b8 829 monitor_loop_cnt += 1;
c3719360
MW
830 if (rv == -1) {
831 if (errno == EINTR) {
832 rv = 0;
42d902d9 833 FD_ZERO(&rfds);
c3719360
MW
834 dprintf("monitor: caught signal\n");
835 } else
836 dprintf("monitor: error %d in pselect\n",
837 errno);
838 }
4e6e574a 839 #ifdef DEBUG
c3719360
MW
840 else
841 dprint_wake_reasons(&rfds);
4e6e574a 842 #endif
68226a80 843 container->retry_soon = 0;
549e9569
NB
844 }
845
2e735d19
NB
846 if (update_queue) {
847 struct metadata_update *this;
848
849 for (this = update_queue; this ; this = this->next)
850 container->ss->process_update(container, this);
851
852 update_queue_handled = update_queue;
853 update_queue = NULL;
854 signal_manager();
855 container->ss->sync_metadata(container);
856 }
857
3d2c4fc7 858 rv = 0;
6144ed44 859 dirty_arrays = 0;
1ed3f387 860 for (a = *aap; a ; a = a->next) {
6144ed44 861
2a0bb19e 862 if (a->replaces && !discard_this) {
549e9569
NB
863 struct active_array **ap;
864 for (ap = &a->next; *ap && *ap != a->replaces;
865 ap = & (*ap)->next)
866 ;
867 if (*ap)
868 *ap = (*ap)->next;
869 discard_this = a->replaces;
870 a->replaces = NULL;
6c3fb95c 871 /* FIXME check if device->state_fd need to be cleared?*/
1ed3f387 872 signal_manager();
549e9569 873 }
ba714450 874 if (a->container && !a->to_remove) {
42d902d9 875 int ret = read_and_act(a, &rfds);
140d3685 876 rv |= 1;
77b3ac8c 877 dirty_arrays += !!(ret & ARRAY_DIRTY);
140d3685
DW
878 /* when terminating stop manipulating the array after it
879 * is clean, but make sure read_and_act() is given a
880 * chance to handle 'active_idle'
881 */
77b3ac8c 882 if (sigterm && !(ret & ARRAY_DIRTY))
140d3685 883 a->container = NULL; /* stop touching this array */
68226a80
N
884 if (ret & ARRAY_BUSY)
885 container->retry_soon = 1;
6144ed44 886 }
549e9569 887 }
0af73f61
DW
888
889 /* propagate failures across container members */
1ed3f387 890 for (a = *aap; a ; a = a->next) {
ba714450 891 if (!a->container || a->to_remove)
0af73f61
DW
892 continue;
893 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
894 if (mdi->curr_state & DS_FAULTY)
1ed3f387 895 reconcile_failed(*aap, mdi);
0af73f61
DW
896 }
897
549e9569
NB
898 return rv;
899}
900
901void do_monitor(struct supertype *container)
902{
903 int rv;
904 int first = 1;
905 do {
4d43913c 906 rv = wait_and_act(container, first);
549e9569
NB
907 first = 0;
908 } while (rv >= 0);
909}