]> git.ipfire.org Git - thirdparty/mdadm.git/blame - managemon.c
mdmon: add debug print statements for profiling mdmon
[thirdparty/mdadm.git] / managemon.c
CommitLineData
549e9569
NB
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 *
6c3fb95c
NB
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....
549e9569
NB
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>
1ed3f387 89#include <signal.h>
549e9569 90
2a0bb19e
DW
91static 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);
2a0bb19e
DW
101}
102
549e9569
NB
103static void free_aa(struct active_array *aa)
104{
2a0bb19e
DW
105 /* Note that this doesn't close fds if they are being used
106 * by a clone. ->container will be set for a clone
549e9569 107 */
4e6e574a 108 dprintf("%s: devnum: %d\n", __func__, aa->devnum);
2a0bb19e
DW
109 if (!aa->container)
110 close_aa(aa);
549e9569
NB
111 while (aa->info.devs) {
112 struct mdinfo *d = aa->info.devs;
113 aa->info.devs = d->next;
114 free(d);
115 }
116 free(aa);
117}
118
6c3fb95c
NB
119static struct active_array *duplicate_aa(struct active_array *aa)
120{
121 struct active_array *newa = malloc(sizeof(*newa));
122 struct mdinfo **dp1, **dp2;
123
124 *newa = *aa;
125 newa->next = NULL;
126 newa->replaces = NULL;
127 newa->info.next = NULL;
128
129 dp2 = &newa->info.devs;
130
131 for (dp1 = &aa->info.devs; *dp1; dp1 = &(*dp1)->next) {
132 struct mdinfo *d;
133 if ((*dp1)->state_fd < 0)
134 continue;
135
136 d = malloc(sizeof(*d));
137 *d = **dp1;
138 *dp2 = d;
139 dp2 = & d->next;
140 }
7e1432fb 141 *dp2 = NULL;
6c3fb95c
NB
142
143 return newa;
144}
145
2a0bb19e
DW
146static void write_wakeup(struct supertype *c)
147{
3e70c845
DW
148 static struct md_generic_cmd cmd = { .action = md_action_ping_monitor };
149 int err;
150
151 active_cmd = &cmd;
152
153 /* send the monitor thread a pointer to the ping action */
154 write(c->mgr_pipe[1], &err, 1);
155 read(c->mon_pipe[0], &err, 1);
2a0bb19e
DW
156}
157
1ed3f387
NB
158static void remove_old(void)
159{
160 if (discard_this) {
161 discard_this->next = NULL;
162 free_aa(discard_this);
163 if (pending_discard == discard_this)
164 pending_discard = NULL;
165 discard_this = NULL;
166 }
167}
168
549e9569
NB
169static void replace_array(struct supertype *container,
170 struct active_array *old,
171 struct active_array *new)
172{
173 /* To replace an array, we add it to the top of the list
174 * marked with ->replaces to point to the original.
175 * 'monitor' will take the original out of the list
176 * and put it on 'discard_this'. We take it from there
177 * and discard it.
178 */
1ed3f387 179 remove_old();
549e9569 180 while (pending_discard) {
1ed3f387 181 write_wakeup(container);
549e9569
NB
182 while (discard_this == NULL)
183 sleep(1);
1ed3f387 184 remove_old();
549e9569
NB
185 }
186 pending_discard = old;
187 new->replaces = old;
188 new->next = container->arrays;
189 container->arrays = new;
2a0bb19e 190 write_wakeup(container);
549e9569
NB
191}
192
2e735d19
NB
193struct metadata_update *update_queue = NULL;
194struct metadata_update *update_queue_handled = NULL;
195struct metadata_update *update_queue_pending = NULL;
196
197void check_update_queue(struct supertype *container)
198{
199 while (update_queue_handled) {
200 struct metadata_update *this = update_queue_handled;
201 update_queue_handled = this->next;
7e1432fb 202// free(this->buf);
2e735d19
NB
203 free(this);
204 }
205 if (update_queue == NULL &&
206 update_queue_pending) {
207 update_queue = update_queue_pending;
208 update_queue_pending = NULL;
209 write_wakeup(container);
210 }
211}
212
6c3fb95c 213static void queue_metadata_update(struct metadata_update *mu)
2e735d19
NB
214{
215 struct metadata_update **qp;
216
217 qp = &update_queue_pending;
218 while (*qp)
219 qp = & ((*qp)->next);
220 *qp = mu;
221}
222
223void wait_update_handled(void)
224{
225 /* Wait for any pending update to be handled by monitor.
226 * i.e. wait until update_queue is NULL
227 */
228 while (update_queue)
229 usleep(100 * 1000);
230}
231
549e9569
NB
232static void manage_container(struct mdstat_ent *mdstat,
233 struct supertype *container)
234{
235 /* The only thing of interest here is if a new device
236 * has been added to the container. We add it to the
237 * array ignoring any metadata on it.
238 * FIXME should we look for compatible metadata and take hints
239 * about spare assignment.... probably not.
549e9569
NB
240 */
241 if (mdstat->devcnt != container->devcnt) {
242 /* read /sys/block/NAME/md/dev-??/block/dev to find out
243 * what is there, and compare with container->info.devs
244 * To see what is removed and what is added.
245 * These need to be remove from, or added to, the array
246 */
247 // FIXME
248 container->devcnt = mdstat->devcnt;
249 }
250}
251
252static void manage_member(struct mdstat_ent *mdstat,
253 struct active_array *a)
254{
255 /* Compare mdstat info with known state of member array.
256 * We do not need to look for device state changes here, that
257 * is dealt with by the monitor.
258 *
259 * We just look for changes which suggest that a reshape is
260 * being requested.
261 * Unfortunately decreases in raid_disks don't show up in
262 * mdstat until the reshape completes FIXME.
6c3fb95c
NB
263 *
264 * Actually, we also want to handle degraded arrays here by
265 * trying to find and assign a spare.
266 * We do that whenever the monitor tells us too.
549e9569
NB
267 */
268 // FIXME
269 a->info.array.raid_disks = mdstat->raid_disks;
270 a->info.array.chunk_size = mdstat->chunk_size;
271 // MORE
272
6c3fb95c
NB
273 if (a->check_degraded) {
274 struct metadata_update *updates = NULL;
275 struct mdinfo *newdev;
276 struct active_array *newa;
277 wait_update_handled();
278 a->check_degraded = 0;
279
280 /* The array may not be degraded, this is just a good time
281 * to check.
282 */
283 newdev = a->container->ss->activate_spare(a, &updates);
284 if (newdev) {
285 struct mdinfo *d;
286 /* Cool, we can add a device or several. */
287 newa = duplicate_aa(a);
288 /* suspend recovery - maybe not needed */
289
290 /* Add device to array and set offset/size/slot.
291 * and open files for each newdev */
292 for (d = newdev; d ; d = d->next) {
293 struct mdinfo *newd;
294 if (sysfs_add_disk(&newa->info, d))
295 continue;
296 newd = newa->info.devs;
297 newd->state_fd = sysfs_open(a->devnum,
298 newd->sys_name,
299 "state");
300 newd->prev_state
301 = read_dev_state(newd->state_fd);
302 newd->curr_state = newd->prev_state;
303 }
304 queue_metadata_update(updates);
305 replace_array(a->container, a, newa);
306 sysfs_set_str(&a->info, NULL, "sync_action", "repair");
307 }
308 }
549e9569
NB
309}
310
549e9569 311static void manage_new(struct mdstat_ent *mdstat,
2a0bb19e
DW
312 struct supertype *container,
313 struct active_array *victim)
549e9569
NB
314{
315 /* A new array has appeared in this container.
316 * Hopefully it is already recorded in the metadata.
317 * Check, then create the new array to report it to
318 * the monitor.
319 */
320
321 struct active_array *new;
322 struct mdinfo *mdi, *di;
cba0191b 323 char *inst;
549e9569
NB
324 int i;
325
326 new = malloc(sizeof(*new));
327
d52690ac
NB
328 memset(new, 0, sizeof(*new));
329
549e9569 330 new->devnum = mdstat->devnum;
7e1432fb 331 strcpy(new->info.sys_name, devnum2devname(new->devnum));
549e9569
NB
332
333 new->prev_state = new->curr_state = new->next_state = inactive;
334 new->prev_action= new->curr_action= new->next_action= idle;
335
336 new->container = container;
337
cba0191b 338 inst = &mdstat->metadata_version[10+strlen(container->devname)+1];
549e9569
NB
339
340 mdi = sysfs_read(-1, new->devnum,
341 GET_LEVEL|GET_CHUNK|GET_DISKS|
342 GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE);
343 if (!mdi) {
344 /* Eeek. Cannot monitor this array.
345 * Mark it to be ignored by setting container to NULL
346 */
347 new->container = NULL;
2a0bb19e 348 replace_array(container, victim, new);
549e9569
NB
349 return;
350 }
351
352 new->info.array = mdi->array;
353
354 for (i = 0; i < new->info.array.raid_disks; i++) {
355 struct mdinfo *newd = malloc(sizeof(*newd));
356
357 for (di = mdi->devs; di; di = di->next)
358 if (i == di->disk.raid_disk)
359 break;
360
361 if (di) {
362 memcpy(newd, di, sizeof(*newd));
363
549e9569
NB
364 newd->state_fd = sysfs_open(new->devnum,
365 newd->sys_name,
366 "state");
367
368 newd->prev_state = read_dev_state(newd->state_fd);
6c3fb95c 369 newd->curr_state = newd->prev_state;
549e9569
NB
370 } else {
371 newd->state_fd = -1;
7e1432fb
NB
372 newd->disk.raid_disk = i;
373 newd->prev_state = DS_REMOVE;
374 newd->curr_state = DS_REMOVE;
549e9569 375 }
7e1432fb 376 sprintf(newd->sys_name, "rd%d", i);
549e9569
NB
377 newd->next = new->info.devs;
378 new->info.devs = newd;
379 }
380 new->action_fd = sysfs_open(new->devnum, NULL, "sync_action");
381 new->info.state_fd = sysfs_open(new->devnum, NULL, "array_state");
c052ba30 382 new->resync_start_fd = sysfs_open(new->devnum, NULL, "resync_start");
77402e51 383 new->resync_start = 0;
4e6e574a
DW
384 dprintf("%s: inst: %d action: %d state: %d\n", __func__, atoi(inst),
385 new->action_fd, new->info.state_fd);
549e9569 386
4fa5aef9 387 sysfs_free(mdi);
549e9569
NB
388 // finds and compares.
389 if (container->ss->open_new(container, new, inst) < 0) {
390 // FIXME close all those files
391 new->container = NULL;
2a0bb19e 392 replace_array(container, victim, new);
549e9569
NB
393 return;
394 }
2a0bb19e 395 replace_array(container, victim, new);
549e9569
NB
396 return;
397}
398
5d19760d 399void manage(struct mdstat_ent *mdstat, struct supertype *container)
549e9569
NB
400{
401 /* We have just read mdstat and need to compare it with
402 * the known active arrays.
403 * Arrays with the wrong metadata are ignored.
404 */
405
406 for ( ; mdstat ; mdstat = mdstat->next) {
407 struct active_array *a;
408 if (mdstat->devnum == container->devnum) {
409 manage_container(mdstat, container);
410 continue;
411 }
412 if (mdstat->metadata_version == NULL ||
413 strncmp(mdstat->metadata_version, "external:/", 10) != 0 ||
414 strncmp(mdstat->metadata_version+10, container->devname,
415 strlen(container->devname)) != 0 ||
416 mdstat->metadata_version[10+strlen(container->devname)]
417 != '/')
418 /* Not for this array */
419 continue;
420 /* Looks like a member of this container */
5d19760d 421 for (a = container->arrays; a; a = a->next) {
549e9569
NB
422 if (mdstat->devnum == a->devnum) {
423 if (a->container)
424 manage_member(mdstat, a);
425 break;
426 }
427 }
2a0bb19e
DW
428 if (a == NULL || !a->container)
429 manage_new(mdstat, container, a);
549e9569
NB
430 }
431}
432
3e70c845
DW
433static int handle_message(struct supertype *container, struct md_message *msg)
434{
435 int err;
436 struct md_generic_cmd *cmd = msg->buf;
437
438 if (!cmd)
439 return 0;
440
441 switch (cmd->action) {
442 case md_action_remove_device:
443
444 /* forward to the monitor */
445 active_cmd = cmd;
446 write(container->mgr_pipe[1], &err, 1);
447 read(container->mon_pipe[0], &err, 1);
448 return err;
449
450 default:
451 return -1;
452 }
453}
454
455void read_sock(struct supertype *container)
549e9569
NB
456{
457 int fd;
b109d928
DW
458 struct md_message msg;
459 int terminate = 0;
460 long fl;
461 int tmo = 3; /* 3 second timeout before hanging up the socket */
549e9569 462
3e70c845 463 fd = accept(container->sock, NULL, NULL);
549e9569
NB
464 if (fd < 0)
465 return;
b109d928
DW
466
467 fl = fcntl(fd, F_GETFL, 0);
468 fl |= O_NONBLOCK;
469 fcntl(fd, F_SETFL, fl);
470
471 do {
3e70c845
DW
472 int err;
473
b109d928
DW
474 msg.buf = NULL;
475
476 /* read and validate the message */
477 if (receive_message(fd, &msg, tmo) == 0) {
3e70c845
DW
478 err = handle_message(container, &msg);
479 if (!err)
480 ack(fd, msg.seq, tmo);
481 else
482 nack(fd, err, tmo);
b109d928
DW
483 } else {
484 terminate = 1;
485 nack(fd, -1, tmo);
486 }
487
488 if (msg.buf)
489 free(msg.buf);
490 } while (!terminate);
491
549e9569
NB
492 close(fd);
493}
1ed3f387
NB
494
495static int woke = 0;
496void wake_me(int sig)
497{
498 woke = 1;
499}
500
e0d6609f
NB
501int exit_now = 0;
502int manager_ready = 0;
549e9569
NB
503void do_manager(struct supertype *container)
504{
505 struct mdstat_ent *mdstat;
1ed3f387
NB
506 sigset_t block, orig;
507
508 sigemptyset(&block);
509 sigaddset(&block, SIGUSR1);
510
511 signal(SIGUSR1, wake_me);
549e9569
NB
512
513 do {
1ed3f387
NB
514 woke = 0;
515
e0d6609f
NB
516 if (exit_now)
517 exit(0);
518
549e9569
NB
519 mdstat = mdstat_read(1, 0);
520
5d19760d 521 manage(mdstat, container);
549e9569 522
3e70c845 523 read_sock(container);
549e9569 524
4fa5aef9
DW
525 free_mdstat(mdstat);
526
1ed3f387
NB
527 remove_old();
528
2e735d19
NB
529 check_update_queue(container);
530
e0d6609f 531 manager_ready = 1;
1ed3f387
NB
532 sigprocmask(SIG_SETMASK, &block, &orig);
533 if (woke == 0)
534 mdstat_wait_fd(container->sock, &orig);
535 sigprocmask(SIG_SETMASK, &orig, NULL);
549e9569
NB
536 } while(1);
537}