]> git.ipfire.org Git - thirdparty/mdadm.git/blame - monitor.c
mdmon: cleanup resync_start
[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
34static int write_attr(char *attr, int fd)
35{
36 return write(fd, attr, strlen(attr));
37}
38
39static void add_fd(fd_set *fds, int *maxfd, int fd)
40{
41 if (fd < 0)
42 return;
43 if (fd > *maxfd)
44 *maxfd = fd;
45 FD_SET(fd, fds);
46}
47
48static int read_attr(char *buf, int len, int fd)
49{
50 int n;
51
52 if (fd < 0) {
53 buf[0] = 0;
54 return 0;
55 }
56 lseek(fd, 0, 0);
57 n = read(fd, buf, len - 1);
58
59 if (n <= 0) {
60 buf[0] = 0;
61 return 0;
62 }
63 buf[n] = 0;
64 if (buf[n-1] == '\n')
65 buf[n-1] = 0;
66 return n;
67}
68
b7941fd6 69static unsigned long long read_resync_start(int fd)
c052ba30
DW
70{
71 char buf[30];
72 int n;
73
b7941fd6 74 n = read_attr(buf, 30, fd);
c052ba30 75 if (n <= 0)
b7941fd6 76 return 0;
7e7fffc4 77 if (strncmp(buf, "none", 4) == 0)
b7941fd6 78 return ~0ULL;
7e7fffc4 79 else
b7941fd6 80 return strtoull(buf, NULL, 10);
c052ba30 81}
549e9569 82
549e9569
NB
83static enum array_state read_state(int fd)
84{
85 char buf[20];
86 int n = read_attr(buf, 20, fd);
87
88 if (n <= 0)
89 return bad_word;
1770662b 90 return (enum array_state) sysfs_match_word(buf, array_states);
549e9569
NB
91}
92
93static enum sync_action read_action( int fd)
94{
95 char buf[20];
96 int n = read_attr(buf, 20, fd);
97
98 if (n <= 0)
99 return bad_action;
1770662b 100 return (enum sync_action) sysfs_match_word(buf, sync_actions);
549e9569
NB
101}
102
549e9569
NB
103int read_dev_state(int fd)
104{
105 char buf[60];
106 int n = read_attr(buf, 60, fd);
107 char *cp;
108 int rv = 0;
109
110 if (n <= 0)
111 return 0;
112
113 cp = buf;
114 while (cp) {
1770662b 115 if (sysfs_attr_match(cp, "faulty"))
549e9569 116 rv |= DS_FAULTY;
1770662b 117 if (sysfs_attr_match(cp, "in_sync"))
549e9569 118 rv |= DS_INSYNC;
1770662b 119 if (sysfs_attr_match(cp, "write_mostly"))
549e9569 120 rv |= DS_WRITE_MOSTLY;
1770662b 121 if (sysfs_attr_match(cp, "spare"))
549e9569 122 rv |= DS_SPARE;
1770662b 123 if (sysfs_attr_match(cp, "blocked"))
8d45d196 124 rv |= DS_BLOCKED;
549e9569
NB
125 cp = strchr(cp, ',');
126 if (cp)
127 cp++;
128 }
129 return rv;
130}
131
1ed3f387
NB
132static void signal_manager(void)
133{
4d43913c
NB
134 /* tgkill(getpid(), mon_tid, SIGUSR1); */
135 int pid = getpid();
136 syscall(SYS_tgkill, pid, mgr_tid, SIGUSR1);
1ed3f387 137}
549e9569
NB
138
139/* Monitor a set of active md arrays - all of which share the
140 * same metadata - and respond to events that require
141 * metadata update.
142 *
143 * New arrays are detected by another thread which allocates
144 * required memory and attaches the data structure to our list.
145 *
146 * Events:
147 * Array stops.
148 * This is detected by array_state going to 'clear' or 'inactive'.
149 * while we thought it was active.
150 * Response is to mark metadata as clean and 'clear' the array(??)
151 * write-pending
152 * array_state if 'write-pending'
153 * We mark metadata as 'dirty' then set array to 'active'.
154 * active_idle
155 * Either ignore, or mark clean, then mark metadata as clean.
156 *
157 * device fails
158 * detected by rd-N/state reporting "faulty"
8d45d196
DW
159 * mark device as 'failed' in metadata, let the kernel release the
160 * device by writing '-blocked' to rd/state, and finally write 'remove' to
0af73f61
DW
161 * rd/state. Before a disk can be replaced it must be failed and removed
162 * from all container members, this will be preemptive for the other
163 * arrays... safe?
549e9569
NB
164 *
165 * sync completes
166 * sync_action was 'resync' and becomes 'idle' and resync_start becomes
167 * MaxSector
168 * Notify metadata that sync is complete.
549e9569
NB
169 *
170 * recovery completes
171 * sync_action changes from 'recover' to 'idle'
172 * Check each device state and mark metadata if 'faulty' or 'in_sync'.
549e9569
NB
173 *
174 * deal with resync
c052ba30
DW
175 * This only happens on finding a new array... mdadm will have set
176 * 'resync_start' to the correct value. If 'resync_start' indicates that an
177 * resync needs to occur set the array to the 'active' state rather than the
178 * initial read-auto state.
549e9569
NB
179 *
180 *
181 *
182 * We wait for a change (poll/select) on array_state, sync_action, and
183 * each rd-X/state file.
184 * When we get any change, we check everything. So read each state file,
185 * then decide what to do.
186 *
187 * The core action is to write new metadata to all devices in the array.
188 * This is done at most once on any wakeup.
189 * After that we might:
190 * - update the array_state
191 * - set the role of some devices.
192 * - request a sync_action
193 *
194 */
195
196static int read_and_act(struct active_array *a)
197{
6c3fb95c 198 int check_degraded = 0;
2a0bb19e 199 int deactivate = 0;
549e9569 200 struct mdinfo *mdi;
140d3685 201 int dirty = 0;
549e9569
NB
202
203 a->next_state = bad_word;
204 a->next_action = bad_action;
205
206 a->curr_state = read_state(a->info.state_fd);
207 a->curr_action = read_action(a->action_fd);
b7941fd6 208 a->info.resync_start = read_resync_start(a->resync_start_fd);
549e9569
NB
209 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
210 mdi->next_state = 0;
57632f4a 211 if (mdi->state_fd >= 0)
8d45d196 212 mdi->curr_state = read_dev_state(mdi->state_fd);
549e9569
NB
213 }
214
215 if (a->curr_state <= inactive &&
216 a->prev_state > inactive) {
217 /* array has been stopped */
ed9d66aa 218 a->container->ss->set_array_state(a, 1);
549e9569 219 a->next_state = clear;
2a0bb19e 220 deactivate = 1;
549e9569
NB
221 }
222 if (a->curr_state == write_pending) {
ed9d66aa 223 a->container->ss->set_array_state(a, 0);
549e9569 224 a->next_state = active;
140d3685 225 dirty = 1;
549e9569
NB
226 }
227 if (a->curr_state == active_idle) {
d797a062
DW
228 /* Set array to 'clean' FIRST, then mark clean
229 * in the metadata
549e9569 230 */
d797a062 231 a->next_state = clean;
140d3685 232 dirty = 1;
d797a062
DW
233 }
234 if (a->curr_state == clean) {
d797a062 235 a->container->ss->set_array_state(a, 1);
549e9569 236 }
140d3685
DW
237 if (a->curr_state == active ||
238 a->curr_state == suspended ||
239 a->curr_state == bad_word)
240 dirty = 1;
549e9569 241 if (a->curr_state == readonly) {
e9dd1598
N
242 /* Well, I'm ready to handle things. If readonly
243 * wasn't requested, transition to read-auto.
549e9569 244 */
e9dd1598
N
245 char buf[64];
246 read_attr(buf, sizeof(buf), a->metadata_fd);
247 if (strncmp(buf, "external:-", 10) == 0) {
248 /* explicit request for readonly array. Leave it alone */
249 ;
250 } else {
e9dd1598
N
251 if (a->container->ss->set_array_state(a, 2))
252 a->next_state = read_auto; /* array is clean */
140d3685 253 else {
e9dd1598 254 a->next_state = active; /* Now active for recovery etc */
140d3685
DW
255 dirty = 1;
256 }
e9dd1598 257 }
549e9569
NB
258 }
259
00e02142
DW
260 if (!deactivate &&
261 a->curr_action == idle &&
549e9569 262 a->prev_action == resync) {
4e5528c6
NB
263 /* A resync has finished. The endpoint is recorded in
264 * 'sync_start'. We don't update the metadata
265 * until the array goes inactive or readonly though.
266 * Just check if we need to fiddle spares.
267 */
0c0c44db 268 a->container->ss->set_array_state(a, a->curr_state <= clean);
549e9569
NB
269 check_degraded = 1;
270 }
271
00e02142
DW
272 if (!deactivate &&
273 a->curr_action == idle &&
549e9569 274 a->prev_action == recover) {
0a6bdbee
DW
275 /* A recovery has finished. Some disks may be in sync now,
276 * and the array may no longer be degraded
277 */
549e9569 278 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
8d45d196
DW
279 a->container->ss->set_disk(a, mdi->disk.raid_disk,
280 mdi->curr_state);
549e9569
NB
281 if (! (mdi->curr_state & DS_INSYNC))
282 check_degraded = 1;
283 }
284 }
285
92967543
DW
286 /* Check for failures and if found:
287 * 1/ Record the failure in the metadata and unblock the device.
288 * FIXME update the kernel to stop notifying on failed drives when
289 * the array is readonly and we have cleared 'blocked'
290 * 2/ Try to remove the device if the array is writable, or can be
291 * made writable.
292 */
549e9569
NB
293 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
294 if (mdi->curr_state & DS_FAULTY) {
8d45d196
DW
295 a->container->ss->set_disk(a, mdi->disk.raid_disk,
296 mdi->curr_state);
549e9569 297 check_degraded = 1;
92967543
DW
298 mdi->next_state |= DS_UNBLOCK;
299 if (a->curr_state == read_auto) {
300 a->container->ss->set_array_state(a, 0);
301 a->next_state = active;
302 }
303 if (a->curr_state > readonly)
304 mdi->next_state |= DS_REMOVE;
549e9569
NB
305 }
306 }
307
2e735d19 308 a->container->ss->sync_metadata(a->container);
4065aa81
DW
309 dprintf("%s(%d): state:%s action:%s next(", __func__, a->info.container_member,
310 array_states[a->curr_state], sync_actions[a->curr_action]);
549e9569
NB
311
312 /* Effect state changes in the array */
4e6e574a
DW
313 if (a->next_state != bad_word) {
314 dprintf(" state:%s", array_states[a->next_state]);
549e9569 315 write_attr(array_states[a->next_state], a->info.state_fd);
4e6e574a
DW
316 }
317 if (a->next_action != bad_action) {
549e9569 318 write_attr(sync_actions[a->next_action], a->action_fd);
4065aa81 319 dprintf(" action:%s", sync_actions[a->next_action]);
4e6e574a 320 }
549e9569 321 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
92967543
DW
322 if (mdi->next_state & DS_UNBLOCK) {
323 dprintf(" %d:-blocked", mdi->disk.raid_disk);
324 write_attr("-blocked", mdi->state_fd);
325 }
326
327 if ((mdi->next_state & DS_REMOVE) && mdi->state_fd >= 0) {
57632f4a 328 int remove_result;
8d45d196 329
8d45d196
DW
330 /* the kernel may not be able to immediately remove the
331 * disk, we can simply wait until the next event to try
332 * again.
333 */
57632f4a
NB
334 remove_result = write_attr("remove", mdi->state_fd);
335 if (remove_result > 0) {
4e6e574a 336 dprintf(" %d:removed", mdi->disk.raid_disk);
8d45d196
DW
337 close(mdi->state_fd);
338 mdi->state_fd = -1;
339 }
340 }
4e6e574a 341 if (mdi->next_state & DS_INSYNC) {
549e9569 342 write_attr("+in_sync", mdi->state_fd);
4e6e574a
DW
343 dprintf(" %d:+in_sync", mdi->disk.raid_disk);
344 }
549e9569 345 }
4e6e574a 346 dprintf(" )\n");
549e9569
NB
347
348 /* move curr_ to prev_ */
349 a->prev_state = a->curr_state;
350
351 a->prev_action = a->curr_action;
352
353 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
354 mdi->prev_state = mdi->curr_state;
355 mdi->next_state = 0;
356 }
357
7e1432fb
NB
358 if (check_degraded) {
359 /* manager will do the actual check */
360 a->check_degraded = 1;
361 signal_manager();
362 }
363
2a0bb19e
DW
364 if (deactivate)
365 a->container = NULL;
366
140d3685 367 return dirty;
549e9569
NB
368}
369
0af73f61
DW
370static struct mdinfo *
371find_device(struct active_array *a, int major, int minor)
372{
373 struct mdinfo *mdi;
374
375 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
376 if (mdi->disk.major == major && mdi->disk.minor == minor)
377 return mdi;
378
379 return NULL;
380}
381
382static void reconcile_failed(struct active_array *aa, struct mdinfo *failed)
383{
384 struct active_array *a;
385 struct mdinfo *victim;
386
387 for (a = aa; a; a = a->next) {
388 if (!a->container)
389 continue;
390 victim = find_device(a, failed->disk.major, failed->disk.minor);
391 if (!victim)
392 continue;
393
394 if (!(victim->curr_state & DS_FAULTY))
395 write_attr("faulty", victim->state_fd);
396 }
397}
398
4e6e574a
DW
399#ifdef DEBUG
400static void dprint_wake_reasons(fd_set *fds)
401{
402 int i;
403 char proc_path[256];
404 char link[256];
405 char *basename;
406 int rv;
407
408 fprintf(stderr, "monitor: wake ( ");
409 for (i = 0; i < FD_SETSIZE; i++) {
410 if (FD_ISSET(i, fds)) {
411 sprintf(proc_path, "/proc/%d/fd/%d",
412 (int) getpid(), i);
413
414 rv = readlink(proc_path, link, sizeof(link) - 1);
415 if (rv < 0) {
416 fprintf(stderr, "%d:unknown ", i);
417 continue;
418 }
419 link[rv] = '\0';
420 basename = strrchr(link, '/');
421 fprintf(stderr, "%d:%s ",
422 i, basename ? ++basename : link);
423 }
424 }
425 fprintf(stderr, ")\n");
426}
427#endif
428
1eb252b8
N
429int monitor_loop_cnt;
430
4d43913c 431static int wait_and_act(struct supertype *container, int nowait)
549e9569
NB
432{
433 fd_set rfds;
434 int maxfd = 0;
e0d6609f 435 struct active_array **aap = &container->arrays;
1ed3f387 436 struct active_array *a, **ap;
549e9569 437 int rv;
0af73f61 438 struct mdinfo *mdi;
6144ed44 439 static unsigned int dirty_arrays = ~0; /* start at some non-zero value */
549e9569
NB
440
441 FD_ZERO(&rfds);
442
1ed3f387
NB
443 for (ap = aap ; *ap ;) {
444 a = *ap;
445 /* once an array has been deactivated we want to
446 * ask the manager to discard it.
2a0bb19e 447 */
1ed3f387
NB
448 if (!a->container) {
449 if (discard_this) {
450 ap = &(*ap)->next;
451 continue;
452 }
453 *ap = a->next;
454 a->next = NULL;
455 discard_this = a;
456 signal_manager();
2a0bb19e 457 continue;
1ed3f387 458 }
2a0bb19e 459
549e9569
NB
460 add_fd(&rfds, &maxfd, a->info.state_fd);
461 add_fd(&rfds, &maxfd, a->action_fd);
462 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
463 add_fd(&rfds, &maxfd, mdi->state_fd);
1ed3f387
NB
464
465 ap = &(*ap)->next;
549e9569
NB
466 }
467
6144ed44
DW
468 if (manager_ready && (*aap == NULL || (sigterm && !dirty_arrays))) {
469 /* No interesting arrays, or we have been told to
470 * terminate and everything is clean. Lets see about
471 * exiting. Note that blocking at this point is not a
472 * problem as there are no active arrays, there is
473 * nothing that we need to be ready to do.
e0d6609f 474 */
e8a70c89 475 int fd = open_dev_excl(container->devnum);
e0d6609f
NB
476 if (fd >= 0 || errno != EBUSY) {
477 /* OK, we are safe to leave */
6144ed44
DW
478 if (sigterm && !dirty_arrays)
479 dprintf("caught sigterm, all clean... exiting\n");
480 else
481 dprintf("no arrays to monitor... exiting\n");
207aac36 482 remove_pidfile(container->devname);
e0d6609f
NB
483 exit_now = 1;
484 signal_manager();
e0d6609f
NB
485 exit(0);
486 }
487 }
488
549e9569 489 if (!nowait) {
4d43913c
NB
490 sigset_t set;
491 sigprocmask(SIG_UNBLOCK, NULL, &set);
492 sigdelset(&set, SIGUSR1);
1eb252b8 493 monitor_loop_cnt |= 1;
28005287 494 rv = pselect(maxfd+1, NULL, NULL, &rfds, NULL, &set);
1eb252b8 495 monitor_loop_cnt += 1;
bfa44e2e
NB
496 if (rv == -1 && errno == EINTR)
497 rv = 0;
4e6e574a
DW
498 #ifdef DEBUG
499 dprint_wake_reasons(&rfds);
500 #endif
501
549e9569
NB
502 }
503
2e735d19
NB
504 if (update_queue) {
505 struct metadata_update *this;
506
507 for (this = update_queue; this ; this = this->next)
508 container->ss->process_update(container, this);
509
510 update_queue_handled = update_queue;
511 update_queue = NULL;
512 signal_manager();
513 container->ss->sync_metadata(container);
514 }
515
3d2c4fc7 516 rv = 0;
6144ed44 517 dirty_arrays = 0;
1ed3f387 518 for (a = *aap; a ; a = a->next) {
6144ed44
DW
519 int is_dirty;
520
2a0bb19e 521 if (a->replaces && !discard_this) {
549e9569
NB
522 struct active_array **ap;
523 for (ap = &a->next; *ap && *ap != a->replaces;
524 ap = & (*ap)->next)
525 ;
526 if (*ap)
527 *ap = (*ap)->next;
528 discard_this = a->replaces;
529 a->replaces = NULL;
6c3fb95c 530 /* FIXME check if device->state_fd need to be cleared?*/
1ed3f387 531 signal_manager();
549e9569 532 }
140d3685
DW
533 if (a->container) {
534 is_dirty = read_and_act(a);
535 rv |= 1;
536 dirty_arrays += is_dirty;
537 /* when terminating stop manipulating the array after it
538 * is clean, but make sure read_and_act() is given a
539 * chance to handle 'active_idle'
540 */
541 if (sigterm && !is_dirty)
542 a->container = NULL; /* stop touching this array */
6144ed44 543 }
549e9569 544 }
0af73f61
DW
545
546 /* propagate failures across container members */
1ed3f387 547 for (a = *aap; a ; a = a->next) {
0af73f61
DW
548 if (!a->container)
549 continue;
550 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
551 if (mdi->curr_state & DS_FAULTY)
1ed3f387 552 reconcile_failed(*aap, mdi);
0af73f61
DW
553 }
554
549e9569
NB
555 return rv;
556}
557
558void do_monitor(struct supertype *container)
559{
560 int rv;
561 int first = 1;
562 do {
4d43913c 563 rv = wait_and_act(container, first);
549e9569
NB
564 first = 0;
565 } while (rv >= 0);
566}