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