]> git.ipfire.org Git - thirdparty/mdadm.git/blame - monitor.c
Discard get_sync_pos. We should be using get_resync_start.
[thirdparty/mdadm.git] / monitor.c
CommitLineData
549e9569
NB
1
2#include "mdadm.h"
3#include "mdmon.h"
4
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
c052ba30
DW
51static int get_resync_start(struct active_array *a)
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{
141 kill(getpid(), SIGUSR1);
142}
549e9569
NB
143
144/* Monitor a set of active md arrays - all of which share the
145 * same metadata - and respond to events that require
146 * metadata update.
147 *
148 * New arrays are detected by another thread which allocates
149 * required memory and attaches the data structure to our list.
150 *
151 * Events:
152 * Array stops.
153 * This is detected by array_state going to 'clear' or 'inactive'.
154 * while we thought it was active.
155 * Response is to mark metadata as clean and 'clear' the array(??)
156 * write-pending
157 * array_state if 'write-pending'
158 * We mark metadata as 'dirty' then set array to 'active'.
159 * active_idle
160 * Either ignore, or mark clean, then mark metadata as clean.
161 *
162 * device fails
163 * detected by rd-N/state reporting "faulty"
8d45d196
DW
164 * mark device as 'failed' in metadata, let the kernel release the
165 * device by writing '-blocked' to rd/state, and finally write 'remove' to
0af73f61
DW
166 * rd/state. Before a disk can be replaced it must be failed and removed
167 * from all container members, this will be preemptive for the other
168 * arrays... safe?
549e9569
NB
169 *
170 * sync completes
171 * sync_action was 'resync' and becomes 'idle' and resync_start becomes
172 * MaxSector
173 * Notify metadata that sync is complete.
174 * "Deal with Degraded"
175 *
176 * recovery completes
177 * sync_action changes from 'recover' to 'idle'
178 * Check each device state and mark metadata if 'faulty' or 'in_sync'.
179 * "Deal with Degraded"
180 *
181 * deal with degraded array
182 * We only do this when first noticing the array is degraded.
183 * This can be when we first see the array, when sync completes or
184 * when recovery completes.
185 *
186 * Check if number of failed devices suggests recovery is needed, and
187 * skip if not.
188 * Ask metadata for a spare device
189 * Add device as not in_sync and give a role
190 * Update metadata.
191 * Start recovery.
192 *
193 * deal with resync
c052ba30
DW
194 * This only happens on finding a new array... mdadm will have set
195 * 'resync_start' to the correct value. If 'resync_start' indicates that an
196 * resync needs to occur set the array to the 'active' state rather than the
197 * initial read-auto state.
549e9569
NB
198 *
199 *
200 *
201 * We wait for a change (poll/select) on array_state, sync_action, and
202 * each rd-X/state file.
203 * When we get any change, we check everything. So read each state file,
204 * then decide what to do.
205 *
206 * The core action is to write new metadata to all devices in the array.
207 * This is done at most once on any wakeup.
208 * After that we might:
209 * - update the array_state
210 * - set the role of some devices.
211 * - request a sync_action
212 *
213 */
214
215static int read_and_act(struct active_array *a)
216{
217 int check_degraded;
2a0bb19e 218 int deactivate = 0;
549e9569
NB
219 struct mdinfo *mdi;
220
221 a->next_state = bad_word;
222 a->next_action = bad_action;
223
224 a->curr_state = read_state(a->info.state_fd);
225 a->curr_action = read_action(a->action_fd);
226 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
227 mdi->next_state = 0;
8d45d196
DW
228 if (mdi->state_fd > 0)
229 mdi->curr_state = read_dev_state(mdi->state_fd);
549e9569
NB
230 }
231
232 if (a->curr_state <= inactive &&
233 a->prev_state > inactive) {
234 /* array has been stopped */
77402e51 235 a->container->ss->mark_clean(a, a->resync_start);
549e9569 236 a->next_state = clear;
2a0bb19e 237 deactivate = 1;
549e9569
NB
238 }
239 if (a->curr_state == write_pending) {
4e5528c6 240 a->container->ss->mark_clean(a, 0);
549e9569
NB
241 a->next_state = active;
242 }
243 if (a->curr_state == active_idle) {
244 /* Set array to 'clean' FIRST, then
4e5528c6 245 * a->ss->mark_clean(a, ~0ULL);
549e9569
NB
246 * just ignore for now.
247 */
248 }
249
250 if (a->curr_state == readonly) {
251 /* Well, I'm ready to handle things, so
252 * read-auto is OK. FIXME what if we really want
253 * readonly ???
254 */
c052ba30
DW
255 get_resync_start(a);
256 if (a->resync_start == ~0ULL)
257 a->next_state = read_auto; /* array is clean */
258 else {
4e5528c6 259 a->container->ss->mark_clean(a, 0);
c052ba30
DW
260 a->next_state = active;
261 }
549e9569
NB
262 }
263
264 if (a->curr_action == idle &&
265 a->prev_action == resync) {
4e5528c6
NB
266 /* A resync has finished. The endpoint is recorded in
267 * 'sync_start'. We don't update the metadata
268 * until the array goes inactive or readonly though.
269 * Just check if we need to fiddle spares.
270 */
77402e51 271 get_resync_start(a);
549e9569
NB
272 check_degraded = 1;
273 }
274
275 if (a->curr_action == idle &&
276 a->prev_action == recover) {
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
285
286 for (mdi = a->info.devs ; mdi ; mdi = mdi->next) {
287 if (mdi->curr_state & DS_FAULTY) {
8d45d196
DW
288 a->container->ss->set_disk(a, mdi->disk.raid_disk,
289 mdi->curr_state);
549e9569
NB
290 check_degraded = 1;
291 mdi->next_state = DS_REMOVE;
292 }
293 }
294
295 if (check_degraded) {
296 // FIXME;
297 }
298
299 a->container->ss->sync_metadata(a);
300
301 /* Effect state changes in the array */
302 if (a->next_state != bad_word)
303 write_attr(array_states[a->next_state], a->info.state_fd);
304 if (a->next_action != bad_action)
305 write_attr(sync_actions[a->next_action], a->action_fd);
306 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
8d45d196
DW
307 if (mdi->next_state == DS_REMOVE && mdi->state_fd > 0) {
308 int remove_err;
309
310 write_attr("-blocked", mdi->state_fd);
311 /* the kernel may not be able to immediately remove the
312 * disk, we can simply wait until the next event to try
313 * again.
314 */
315 remove_err = write_attr("remove", mdi->state_fd);
316 if (!remove_err) {
317 close(mdi->state_fd);
318 mdi->state_fd = -1;
319 }
320 }
549e9569
NB
321 if (mdi->next_state & DS_INSYNC)
322 write_attr("+in_sync", mdi->state_fd);
323 }
324
325 /* move curr_ to prev_ */
326 a->prev_state = a->curr_state;
327
328 a->prev_action = a->curr_action;
329
330 for (mdi = a->info.devs; mdi ; mdi = mdi->next) {
331 mdi->prev_state = mdi->curr_state;
332 mdi->next_state = 0;
333 }
334
2a0bb19e
DW
335 if (deactivate)
336 a->container = NULL;
337
549e9569
NB
338 return 1;
339}
340
0af73f61
DW
341static struct mdinfo *
342find_device(struct active_array *a, int major, int minor)
343{
344 struct mdinfo *mdi;
345
346 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
347 if (mdi->disk.major == major && mdi->disk.minor == minor)
348 return mdi;
349
350 return NULL;
351}
352
353static void reconcile_failed(struct active_array *aa, struct mdinfo *failed)
354{
355 struct active_array *a;
356 struct mdinfo *victim;
357
358 for (a = aa; a; a = a->next) {
359 if (!a->container)
360 continue;
361 victim = find_device(a, failed->disk.major, failed->disk.minor);
362 if (!victim)
363 continue;
364
365 if (!(victim->curr_state & DS_FAULTY))
366 write_attr("faulty", victim->state_fd);
367 }
368}
369
3e70c845
DW
370static int handle_remove_device(struct md_remove_device_cmd *cmd, struct active_array *aa)
371{
372 struct active_array *a;
373 struct mdinfo *victim;
374 int rv;
375
376 /* scan all arrays for the given device, if ->state_fd is closed (-1)
377 * in all cases then mark the disk as removed in the metadata.
378 * Otherwise reply that it is busy.
379 */
380
381 /* pass1 check that it is not in use anywhere */
382 /* note: we are safe from re-adds as long as the device exists in the
383 * container
384 */
385 for (a = aa; a; a = a->next) {
386 if (!a->container)
387 continue;
388 victim = find_device(a, major(cmd->rdev), minor(cmd->rdev));
389 if (!victim)
390 continue;
391 if (victim->state_fd > 0)
392 return -EBUSY;
393 }
394
395 /* pass2 schedule and process removal per array */
396 for (a = aa; a; a = a->next) {
397 if (!a->container)
398 continue;
399 victim = find_device(a, major(cmd->rdev), minor(cmd->rdev));
400 if (!victim)
401 continue;
402 victim->curr_state |= DS_REMOVE;
403 rv = read_and_act(a);
404 if (rv < 0)
405 return rv;
406 }
407
408 return 0;
409}
410
411static int handle_pipe(struct md_generic_cmd *cmd, struct active_array *aa)
412{
413 switch (cmd->action) {
414 case md_action_ping_monitor:
415 return 0;
416 case md_action_remove_device:
417 return handle_remove_device((void *) cmd, aa);
418 }
419
420 return -1;
421}
422
e0d6609f 423static int wait_and_act(struct supertype *container, int pfd,
1ed3f387 424 int monfd, int nowait)
549e9569
NB
425{
426 fd_set rfds;
427 int maxfd = 0;
e0d6609f 428 struct active_array **aap = &container->arrays;
1ed3f387 429 struct active_array *a, **ap;
549e9569 430 int rv;
0af73f61 431 struct mdinfo *mdi;
549e9569
NB
432
433 FD_ZERO(&rfds);
434
435 add_fd(&rfds, &maxfd, pfd);
1ed3f387
NB
436 for (ap = aap ; *ap ;) {
437 a = *ap;
438 /* once an array has been deactivated we want to
439 * ask the manager to discard it.
2a0bb19e 440 */
1ed3f387
NB
441 if (!a->container) {
442 if (discard_this) {
443 ap = &(*ap)->next;
444 continue;
445 }
446 *ap = a->next;
447 a->next = NULL;
448 discard_this = a;
449 signal_manager();
2a0bb19e 450 continue;
1ed3f387 451 }
2a0bb19e 452
549e9569
NB
453 add_fd(&rfds, &maxfd, a->info.state_fd);
454 add_fd(&rfds, &maxfd, a->action_fd);
455 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
456 add_fd(&rfds, &maxfd, mdi->state_fd);
1ed3f387
NB
457
458 ap = &(*ap)->next;
549e9569
NB
459 }
460
e0d6609f
NB
461 if (manager_ready && *aap == NULL) {
462 /* No interesting arrays. Lets see about exiting.
463 * Note that blocking at this point is not a problem
464 * as there are no active arrays, there is nothing that
465 * we need to be ready to do.
466 */
467 int fd = open(container->device_name, O_RDONLY|O_EXCL);
468 if (fd >= 0 || errno != EBUSY) {
469 /* OK, we are safe to leave */
470 exit_now = 1;
471 signal_manager();
472 remove_pidfile(container->devname);
473 exit(0);
474 }
475 }
476
549e9569
NB
477 if (!nowait) {
478 rv = select(maxfd+1, &rfds, NULL, NULL, NULL);
479
480 if (rv <= 0)
481 return rv;
482
483 if (FD_ISSET(pfd, &rfds)) {
3e70c845
DW
484 int err = -1;
485
486 if (read(pfd, &err, 1) > 0)
1ed3f387 487 err = handle_pipe(active_cmd, *aap);
3e70c845 488 write(monfd, &err, 1);
549e9569
NB
489 }
490 }
491
1ed3f387 492 for (a = *aap; a ; a = a->next) {
2a0bb19e 493 if (a->replaces && !discard_this) {
549e9569
NB
494 struct active_array **ap;
495 for (ap = &a->next; *ap && *ap != a->replaces;
496 ap = & (*ap)->next)
497 ;
498 if (*ap)
499 *ap = (*ap)->next;
500 discard_this = a->replaces;
501 a->replaces = NULL;
1ed3f387 502 signal_manager();
549e9569 503 }
2a0bb19e
DW
504 if (a->container)
505 rv += read_and_act(a);
549e9569 506 }
0af73f61
DW
507
508 /* propagate failures across container members */
1ed3f387 509 for (a = *aap; a ; a = a->next) {
0af73f61
DW
510 if (!a->container)
511 continue;
512 for (mdi = a->info.devs ; mdi ; mdi = mdi->next)
513 if (mdi->curr_state & DS_FAULTY)
1ed3f387 514 reconcile_failed(*aap, mdi);
0af73f61
DW
515 }
516
549e9569
NB
517 return rv;
518}
519
520void do_monitor(struct supertype *container)
521{
522 int rv;
523 int first = 1;
524 do {
e0d6609f 525 rv = wait_and_act(container, container->mgr_pipe[0],
3e70c845 526 container->mon_pipe[1], first);
549e9569
NB
527 first = 0;
528 } while (rv >= 0);
529}