]> git.ipfire.org Git - thirdparty/mdadm.git/blob - managemon.c
Support adding a spare to a degraded array.
[thirdparty/mdadm.git] / managemon.c
1
2 /*
3 * The management thread for monitoring active md arrays.
4 * This thread does things which might block such as memory
5 * allocation.
6 * In particular:
7 *
8 * - Find out about new arrays in this container.
9 * Allocate the data structures and open the files.
10 *
11 * For this we watch /proc/mdstat and find new arrays with
12 * metadata type that confirms sharing. e.g. "md4"
13 * When we find a new array we slip it into the list of
14 * arrays and signal 'monitor' by writing to a pipe.
15 *
16 * - Respond to reshape requests by allocating new data structures
17 * and opening new files.
18 *
19 * These come as a change to raid_disks. We allocate a new
20 * version of the data structures and slip it into the list.
21 * 'monitor' will notice and release the old version.
22 * Changes to level, chunksize, layout.. do not need re-allocation.
23 * Reductions in raid_disks don't really either, but we handle
24 * them the same way for consistency.
25 *
26 * - When a device is added to the container, we add it to the metadata
27 * as a spare.
28 *
29 * - Deal with degraded array
30 * We only do this when first noticing the array is degraded.
31 * This can be when we first see the array, when sync completes or
32 * when recovery completes.
33 *
34 * Check if number of failed devices suggests recovery is needed, and
35 * skip if not.
36 * Ask metadata to allocate a spare device
37 * Add device as not in_sync and give a role
38 * Update metadata.
39 * Open sysfs files and pass to monitor.
40 * Make sure that monitor Starts recovery....
41 *
42 * - Pass on metadata updates from external programs such as
43 * mdadm creating a new array.
44 *
45 * This is most-messy.
46 * It might involve adding a new array or changing the status of
47 * a spare, or any reconfig that the kernel doesn't get involved in.
48 *
49 * The required updates are received via a named pipe. There will
50 * be one named pipe for each container. Each message contains a
51 * sync marker: 0x5a5aa5a5, A byte count, and the message. This is
52 * passed to the metadata handler which will interpret and process it.
53 * For 'DDF' messages are internal data blocks with the leading
54 * 'magic number' signifying what sort of data it is.
55 *
56 */
57
58 /*
59 * We select on /proc/mdstat and the named pipe.
60 * We create new arrays or updated version of arrays and slip
61 * them into the head of the list, then signal 'monitor' via a pipe write.
62 * 'monitor' will notice and place the old array on a return list.
63 * Metadata updates are placed on a queue just like they arrive
64 * from the named pipe.
65 *
66 * When new arrays are found based on correct metadata string, we
67 * need to identify them with an entry in the metadata. Maybe we require
68 * the metadata to be mdX/NN when NN is the index into an appropriate table.
69 *
70 */
71
72 /*
73 * List of tasks:
74 * - Watch for spares to be added to the container, and write updated
75 * metadata to them.
76 * - Watch for new arrays using this container, confirm they match metadata
77 * and if so, start monitoring them
78 * - Watch for spares being added to monitored arrays. This shouldn't
79 * happen, as we should do all the adding. Just remove them.
80 * - Watch for change in raid-disks, chunk-size, etc. Update metadata and
81 * start a reshape.
82 */
83 #ifndef _GNU_SOURCE
84 #define _GNU_SOURCE
85 #endif
86 #include "mdadm.h"
87 #include "mdmon.h"
88 #include <sys/socket.h>
89 #include <signal.h>
90
91 static void close_aa(struct active_array *aa)
92 {
93 struct mdinfo *d;
94
95 for (d = aa->info.devs; d; d = d->next)
96 close(d->state_fd);
97
98 close(aa->action_fd);
99 close(aa->info.state_fd);
100 close(aa->resync_start_fd);
101 }
102
103 static void free_aa(struct active_array *aa)
104 {
105 /* Note that this doesn't close fds if they are being used
106 * by a clone. ->container will be set for a clone
107 */
108 if (!aa->container)
109 close_aa(aa);
110 while (aa->info.devs) {
111 struct mdinfo *d = aa->info.devs;
112 aa->info.devs = d->next;
113 free(d);
114 }
115 free(aa);
116 }
117
118 static struct active_array *duplicate_aa(struct active_array *aa)
119 {
120 struct active_array *newa = malloc(sizeof(*newa));
121 struct mdinfo **dp1, **dp2;
122
123 *newa = *aa;
124 newa->next = NULL;
125 newa->replaces = NULL;
126 newa->info.next = NULL;
127
128 dp2 = &newa->info.devs;
129
130 for (dp1 = &aa->info.devs; *dp1; dp1 = &(*dp1)->next) {
131 struct mdinfo *d;
132 if ((*dp1)->state_fd < 0)
133 continue;
134
135 d = malloc(sizeof(*d));
136 *d = **dp1;
137 *dp2 = d;
138 dp2 = & d->next;
139 }
140
141 return newa;
142 }
143
144 static void write_wakeup(struct supertype *c)
145 {
146 static struct md_generic_cmd cmd = { .action = md_action_ping_monitor };
147 int err;
148
149 active_cmd = &cmd;
150
151 /* send the monitor thread a pointer to the ping action */
152 write(c->mgr_pipe[1], &err, 1);
153 read(c->mon_pipe[0], &err, 1);
154 }
155
156 static void remove_old(void)
157 {
158 if (discard_this) {
159 discard_this->next = NULL;
160 free_aa(discard_this);
161 if (pending_discard == discard_this)
162 pending_discard = NULL;
163 discard_this = NULL;
164 }
165 }
166
167 static void replace_array(struct supertype *container,
168 struct active_array *old,
169 struct active_array *new)
170 {
171 /* To replace an array, we add it to the top of the list
172 * marked with ->replaces to point to the original.
173 * 'monitor' will take the original out of the list
174 * and put it on 'discard_this'. We take it from there
175 * and discard it.
176 */
177 remove_old();
178 while (pending_discard) {
179 write_wakeup(container);
180 while (discard_this == NULL)
181 sleep(1);
182 remove_old();
183 }
184 pending_discard = old;
185 new->replaces = old;
186 new->next = container->arrays;
187 container->arrays = new;
188 write_wakeup(container);
189 }
190
191 struct metadata_update *update_queue = NULL;
192 struct metadata_update *update_queue_handled = NULL;
193 struct metadata_update *update_queue_pending = NULL;
194
195 void check_update_queue(struct supertype *container)
196 {
197 while (update_queue_handled) {
198 struct metadata_update *this = update_queue_handled;
199 update_queue_handled = this->next;
200 free(this->buf);
201 free(this);
202 }
203 if (update_queue == NULL &&
204 update_queue_pending) {
205 update_queue = update_queue_pending;
206 update_queue_pending = NULL;
207 write_wakeup(container);
208 }
209 }
210
211 static void queue_metadata_update(struct metadata_update *mu)
212 {
213 struct metadata_update **qp;
214
215 qp = &update_queue_pending;
216 while (*qp)
217 qp = & ((*qp)->next);
218 *qp = mu;
219 }
220
221 void wait_update_handled(void)
222 {
223 /* Wait for any pending update to be handled by monitor.
224 * i.e. wait until update_queue is NULL
225 */
226 while (update_queue)
227 usleep(100 * 1000);
228 }
229
230 static void manage_container(struct mdstat_ent *mdstat,
231 struct supertype *container)
232 {
233 /* The only thing of interest here is if a new device
234 * has been added to the container. We add it to the
235 * array ignoring any metadata on it.
236 * FIXME should we look for compatible metadata and take hints
237 * about spare assignment.... probably not.
238 */
239 if (mdstat->devcnt != container->devcnt) {
240 /* read /sys/block/NAME/md/dev-??/block/dev to find out
241 * what is there, and compare with container->info.devs
242 * To see what is removed and what is added.
243 * These need to be remove from, or added to, the array
244 */
245 // FIXME
246 container->devcnt = mdstat->devcnt;
247 }
248 }
249
250 static void manage_member(struct mdstat_ent *mdstat,
251 struct active_array *a)
252 {
253 /* Compare mdstat info with known state of member array.
254 * We do not need to look for device state changes here, that
255 * is dealt with by the monitor.
256 *
257 * We just look for changes which suggest that a reshape is
258 * being requested.
259 * Unfortunately decreases in raid_disks don't show up in
260 * mdstat until the reshape completes FIXME.
261 *
262 * Actually, we also want to handle degraded arrays here by
263 * trying to find and assign a spare.
264 * We do that whenever the monitor tells us too.
265 */
266 // FIXME
267 a->info.array.raid_disks = mdstat->raid_disks;
268 a->info.array.chunk_size = mdstat->chunk_size;
269 // MORE
270
271 if (a->check_degraded) {
272 struct metadata_update *updates = NULL;
273 struct mdinfo *newdev;
274 struct active_array *newa;
275 wait_update_handled();
276 a->check_degraded = 0;
277
278 /* The array may not be degraded, this is just a good time
279 * to check.
280 */
281 newdev = a->container->ss->activate_spare(a, &updates);
282 if (newdev) {
283 struct mdinfo *d;
284 /* Cool, we can add a device or several. */
285 newa = duplicate_aa(a);
286 /* suspend recovery - maybe not needed */
287
288 /* Add device to array and set offset/size/slot.
289 * and open files for each newdev */
290 for (d = newdev; d ; d = d->next) {
291 struct mdinfo *newd;
292 if (sysfs_add_disk(&newa->info, d))
293 continue;
294 newd = newa->info.devs;
295 newd->state_fd = sysfs_open(a->devnum,
296 newd->sys_name,
297 "state");
298 newd->prev_state
299 = read_dev_state(newd->state_fd);
300 newd->curr_state = newd->prev_state;
301 }
302 queue_metadata_update(updates);
303 replace_array(a->container, a, newa);
304 sysfs_set_str(&a->info, NULL, "sync_action", "repair");
305 }
306 }
307 }
308
309 static void manage_new(struct mdstat_ent *mdstat,
310 struct supertype *container,
311 struct active_array *victim)
312 {
313 /* A new array has appeared in this container.
314 * Hopefully it is already recorded in the metadata.
315 * Check, then create the new array to report it to
316 * the monitor.
317 */
318
319 struct active_array *new;
320 struct mdinfo *mdi, *di;
321 char *inst;
322 int i;
323
324 new = malloc(sizeof(*new));
325
326 memset(new, 0, sizeof(*new));
327
328 new->devnum = mdstat->devnum;
329
330 new->prev_state = new->curr_state = new->next_state = inactive;
331 new->prev_action= new->curr_action= new->next_action= idle;
332
333 new->container = container;
334
335 inst = &mdstat->metadata_version[10+strlen(container->devname)+1];
336
337 mdi = sysfs_read(-1, new->devnum,
338 GET_LEVEL|GET_CHUNK|GET_DISKS|
339 GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE);
340 if (!mdi) {
341 /* Eeek. Cannot monitor this array.
342 * Mark it to be ignored by setting container to NULL
343 */
344 new->container = NULL;
345 replace_array(container, victim, new);
346 return;
347 }
348
349 new->info.array = mdi->array;
350
351 for (i = 0; i < new->info.array.raid_disks; i++) {
352 struct mdinfo *newd = malloc(sizeof(*newd));
353
354 for (di = mdi->devs; di; di = di->next)
355 if (i == di->disk.raid_disk)
356 break;
357
358 if (di) {
359 memcpy(newd, di, sizeof(*newd));
360
361 sprintf(newd->sys_name, "rd%d", i);
362
363 newd->state_fd = sysfs_open(new->devnum,
364 newd->sys_name,
365 "state");
366
367 newd->prev_state = read_dev_state(newd->state_fd);
368 newd->curr_state = newd->prev_state;
369 } else {
370 newd->state_fd = -1;
371 }
372 newd->next = new->info.devs;
373 new->info.devs = newd;
374 }
375 new->action_fd = sysfs_open(new->devnum, NULL, "sync_action");
376 new->info.state_fd = sysfs_open(new->devnum, NULL, "array_state");
377 new->resync_start_fd = sysfs_open(new->devnum, NULL, "resync_start");
378 new->resync_start = 0;
379
380 sysfs_free(mdi);
381 // finds and compares.
382 if (container->ss->open_new(container, new, inst) < 0) {
383 // FIXME close all those files
384 new->container = NULL;
385 replace_array(container, victim, new);
386 return;
387 }
388 replace_array(container, victim, new);
389 return;
390 }
391
392 void manage(struct mdstat_ent *mdstat, struct supertype *container)
393 {
394 /* We have just read mdstat and need to compare it with
395 * the known active arrays.
396 * Arrays with the wrong metadata are ignored.
397 */
398
399 for ( ; mdstat ; mdstat = mdstat->next) {
400 struct active_array *a;
401 if (mdstat->devnum == container->devnum) {
402 manage_container(mdstat, container);
403 continue;
404 }
405 if (mdstat->metadata_version == NULL ||
406 strncmp(mdstat->metadata_version, "external:/", 10) != 0 ||
407 strncmp(mdstat->metadata_version+10, container->devname,
408 strlen(container->devname)) != 0 ||
409 mdstat->metadata_version[10+strlen(container->devname)]
410 != '/')
411 /* Not for this array */
412 continue;
413 /* Looks like a member of this container */
414 for (a = container->arrays; a; a = a->next) {
415 if (mdstat->devnum == a->devnum) {
416 if (a->container)
417 manage_member(mdstat, a);
418 break;
419 }
420 }
421 if (a == NULL || !a->container)
422 manage_new(mdstat, container, a);
423 }
424 }
425
426 static int handle_message(struct supertype *container, struct md_message *msg)
427 {
428 int err;
429 struct md_generic_cmd *cmd = msg->buf;
430
431 if (!cmd)
432 return 0;
433
434 switch (cmd->action) {
435 case md_action_remove_device:
436
437 /* forward to the monitor */
438 active_cmd = cmd;
439 write(container->mgr_pipe[1], &err, 1);
440 read(container->mon_pipe[0], &err, 1);
441 return err;
442
443 default:
444 return -1;
445 }
446 }
447
448 void read_sock(struct supertype *container)
449 {
450 int fd;
451 struct md_message msg;
452 int terminate = 0;
453 long fl;
454 int tmo = 3; /* 3 second timeout before hanging up the socket */
455
456 fd = accept(container->sock, NULL, NULL);
457 if (fd < 0)
458 return;
459
460 fl = fcntl(fd, F_GETFL, 0);
461 fl |= O_NONBLOCK;
462 fcntl(fd, F_SETFL, fl);
463
464 do {
465 int err;
466
467 msg.buf = NULL;
468
469 /* read and validate the message */
470 if (receive_message(fd, &msg, tmo) == 0) {
471 err = handle_message(container, &msg);
472 if (!err)
473 ack(fd, msg.seq, tmo);
474 else
475 nack(fd, err, tmo);
476 } else {
477 terminate = 1;
478 nack(fd, -1, tmo);
479 }
480
481 if (msg.buf)
482 free(msg.buf);
483 } while (!terminate);
484
485 close(fd);
486 }
487
488 static int woke = 0;
489 void wake_me(int sig)
490 {
491 woke = 1;
492 }
493
494 int exit_now = 0;
495 int manager_ready = 0;
496 void do_manager(struct supertype *container)
497 {
498 struct mdstat_ent *mdstat;
499 sigset_t block, orig;
500
501 sigemptyset(&block);
502 sigaddset(&block, SIGUSR1);
503
504 signal(SIGUSR1, wake_me);
505
506 do {
507 woke = 0;
508
509 if (exit_now)
510 exit(0);
511
512 mdstat = mdstat_read(1, 0);
513
514 manage(mdstat, container);
515
516 read_sock(container);
517
518 free_mdstat(mdstat);
519
520 remove_old();
521
522 check_update_queue(container);
523
524 manager_ready = 1;
525 sigprocmask(SIG_SETMASK, &block, &orig);
526 if (woke == 0)
527 mdstat_wait_fd(container->sock, &orig);
528 sigprocmask(SIG_SETMASK, &orig, NULL);
529 } while(1);
530 }