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