]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdmon.c
27045a122cb4bbf4d73c3bc2d5ed8020cdd03103
[thirdparty/mdadm.git] / mdmon.c
1 /*
2 * mdmon - monitor external metadata arrays
3 *
4 * Copyright (C) 2007-2009 Neil Brown <neilb@suse.de>
5 * Copyright (C) 2007-2009 Intel Corporation
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 */
20
21 /*
22 * md array manager.
23 * When md arrays have user-space managed metadata, this is the program
24 * that does the managing.
25 *
26 * Given one argument: the name of the array (e.g. /dev/md0) that is
27 * the container.
28 * We fork off a helper that runs high priority and mlocked. It responds to
29 * device failures and other events that might stop writeout, or that are
30 * trivial to deal with.
31 * The main thread then watches for new arrays being created in the container
32 * and starts monitoring them too ... along with a few other tasks.
33 *
34 * The main thread communicates with the priority thread by writing over
35 * a pipe.
36 * Separate programs can communicate with the main thread via Unix-domain
37 * socket.
38 * The two threads share address space and open file table.
39 *
40 */
41
42 #ifndef _GNU_SOURCE
43 #define _GNU_SOURCE
44 #endif
45
46 #include <unistd.h>
47 #include <stdlib.h>
48 #include <sys/types.h>
49 #include <sys/stat.h>
50 #include <sys/socket.h>
51 #include <sys/un.h>
52 #include <sys/mman.h>
53 #include <sys/syscall.h>
54 #include <sys/wait.h>
55 #include <stdio.h>
56 #include <errno.h>
57 #include <string.h>
58 #include <fcntl.h>
59 #include <signal.h>
60 #include <dirent.h>
61 #ifdef USE_PTHREADS
62 #include <pthread.h>
63 #else
64 #include <sched.h>
65 #endif
66
67 #include "mdadm.h"
68 #include "mdmon.h"
69
70 struct active_array *discard_this;
71 struct active_array *pending_discard;
72
73 int mon_tid, mgr_tid;
74
75 int sigterm;
76
77 #ifdef USE_PTHREADS
78 static void *run_child(void *v)
79 {
80 struct supertype *c = v;
81
82 mon_tid = syscall(SYS_gettid);
83 do_monitor(c);
84 return 0;
85 }
86
87 static int clone_monitor(struct supertype *container)
88 {
89 pthread_attr_t attr;
90 pthread_t thread;
91 int rc;
92
93 mon_tid = -1;
94 pthread_attr_init(&attr);
95 pthread_attr_setstacksize(&attr, 4096);
96 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
97 rc = pthread_create(&thread, &attr, run_child, container);
98 if (rc)
99 return rc;
100 while (mon_tid == -1)
101 usleep(10);
102 pthread_attr_destroy(&attr);
103
104 mgr_tid = syscall(SYS_gettid);
105
106 return mon_tid;
107 }
108 #else /* USE_PTHREADS */
109 static int run_child(void *v)
110 {
111 struct supertype *c = v;
112
113 do_monitor(c);
114 return 0;
115 }
116
117 #ifdef __ia64__
118 int __clone2(int (*fn)(void *),
119 void *child_stack_base, size_t stack_size,
120 int flags, void *arg, ...
121 /* pid_t *pid, struct user_desc *tls, pid_t *ctid */ );
122 #endif
123 static int clone_monitor(struct supertype *container)
124 {
125 static char stack[4096];
126
127 #ifdef __ia64__
128 mon_tid = __clone2(run_child, stack, sizeof(stack),
129 CLONE_FS|CLONE_FILES|CLONE_VM|CLONE_SIGHAND|CLONE_THREAD,
130 container);
131 #else
132 mon_tid = clone(run_child, stack+4096-64,
133 CLONE_FS|CLONE_FILES|CLONE_VM|CLONE_SIGHAND|CLONE_THREAD,
134 container);
135 #endif
136
137 mgr_tid = syscall(SYS_gettid);
138
139 return mon_tid;
140 }
141 #endif /* USE_PTHREADS */
142
143 static int make_pidfile(char *devname)
144 {
145 char path[100];
146 char pid[10];
147 int fd;
148 int n;
149
150 if (mkdir(MDMON_DIR, 0755) < 0 &&
151 errno != EEXIST)
152 return -errno;
153 sprintf(path, "%s/%s.pid", MDMON_DIR, devname);
154
155 fd = open(path, O_RDWR|O_CREAT|O_EXCL, 0600);
156 if (fd < 0)
157 return -errno;
158 sprintf(pid, "%d\n", getpid());
159 n = write(fd, pid, strlen(pid));
160 close(fd);
161 if (n < 0)
162 return -errno;
163 return 0;
164 }
165
166 static void try_kill_monitor(pid_t pid, char *devname, int sock)
167 {
168 char buf[100];
169 int fd;
170 int n;
171 long fl;
172
173 /* first rule of survival... don't off yourself */
174 if (pid == getpid())
175 return;
176
177 /* kill this process if it is mdmon */
178 sprintf(buf, "/proc/%lu/cmdline", (unsigned long) pid);
179 fd = open(buf, O_RDONLY);
180 if (fd < 0)
181 return;
182
183 n = read(fd, buf, sizeof(buf)-1);
184 buf[sizeof(buf)-1] = 0;
185 close(fd);
186
187 if (n < 0 || !(strstr(buf, "mdmon") ||
188 strstr(buf, "@dmon")))
189 return;
190
191 kill(pid, SIGTERM);
192
193 if (sock < 0)
194 return;
195
196 /* Wait for monitor to exit by reading from the socket, after
197 * clearing the non-blocking flag */
198 fl = fcntl(sock, F_GETFL, 0);
199 fl &= ~O_NONBLOCK;
200 fcntl(sock, F_SETFL, fl);
201 n = read(sock, buf, 100);
202 /* Ignore result, it is just the wait that
203 * matters
204 */
205 }
206
207 void remove_pidfile(char *devname)
208 {
209 char buf[100];
210
211 sprintf(buf, "%s/%s.pid", MDMON_DIR, devname);
212 unlink(buf);
213 sprintf(buf, "%s/%s.sock", MDMON_DIR, devname);
214 unlink(buf);
215 }
216
217 static int make_control_sock(char *devname)
218 {
219 char path[100];
220 int sfd;
221 long fl;
222 struct sockaddr_un addr;
223
224 if (sigterm)
225 return -1;
226
227 sprintf(path, "%s/%s.sock", MDMON_DIR, devname);
228 unlink(path);
229 sfd = socket(PF_LOCAL, SOCK_STREAM, 0);
230 if (sfd < 0)
231 return -1;
232
233 addr.sun_family = PF_LOCAL;
234 strcpy(addr.sun_path, path);
235 umask(077); /* ensure no world write access */
236 if (bind(sfd, &addr, sizeof(addr)) < 0) {
237 close(sfd);
238 return -1;
239 }
240 listen(sfd, 10);
241 fl = fcntl(sfd, F_GETFL, 0);
242 fl |= O_NONBLOCK;
243 fcntl(sfd, F_SETFL, fl);
244 return sfd;
245 }
246
247 static void term(int sig)
248 {
249 sigterm = 1;
250 }
251
252 static void wake_me(int sig)
253 {
254
255 }
256
257 /* if we are debugging and starting mdmon by hand then don't fork */
258 static int do_fork(void)
259 {
260 #ifdef DEBUG
261 if (check_env("MDADM_NO_MDMON"))
262 return 0;
263 #endif
264
265 return 1;
266 }
267
268 void usage(void)
269 {
270 fprintf(stderr,
271 "Usage: mdmon [options] CONTAINER\n"
272 "\n"
273 "Options are:\n"
274 " --help -h : This message\n"
275 " --all -a : All devices\n"
276 " --foreground -F : Run in foreground (do not fork)\n"
277 " --takeover -t : Takeover container\n"
278 );
279 exit(2);
280 }
281
282 static int mdmon(char *devnm, int must_fork, int takeover);
283
284 int main(int argc, char *argv[])
285 {
286 char *container_name = NULL;
287 char *devnm = NULL;
288 int status = 0;
289 int opt;
290 int all = 0;
291 int takeover = 0;
292 int dofork = 1;
293 static struct option options[] = {
294 {"all", 0, NULL, 'a'},
295 {"takeover", 0, NULL, 't'},
296 {"help", 0, NULL, 'h'},
297 {"offroot", 0, NULL, OffRootOpt},
298 {"foreground", 0, NULL, 'F'},
299 {NULL, 0, NULL, 0}
300 };
301
302 if (in_initrd()) {
303 /*
304 * set first char of argv[0] to @. This is used by
305 * systemd to signal that the task was launched from
306 * initrd/initramfs and should be preserved during shutdown
307 */
308 argv[0][0] = '@';
309 }
310
311 while ((opt = getopt_long(argc, argv, "thaF", options, NULL)) != -1) {
312 switch (opt) {
313 case 'a':
314 container_name = argv[optind-1];
315 all = 1;
316 break;
317 case 't':
318 takeover = 1;
319 break;
320 case 'F':
321 dofork = 0;
322 break;
323 case OffRootOpt:
324 argv[0][0] = '@';
325 break;
326 case 'h':
327 default:
328 usage();
329 break;
330 }
331 }
332
333 if (all == 0 && container_name == NULL) {
334 if (argv[optind])
335 container_name = argv[optind];
336 }
337
338 if (container_name == NULL)
339 usage();
340
341 if (argc - optind > 1)
342 usage();
343
344 if (strcmp(container_name, "/proc/mdstat") == 0)
345 all = 1;
346
347 if (all) {
348 struct mdstat_ent *mdstat, *e;
349 int container_len = strlen(container_name);
350
351 /* launch an mdmon instance for each container found */
352 mdstat = mdstat_read(0, 0);
353 for (e = mdstat; e; e = e->next) {
354 if (e->metadata_version &&
355 strncmp(e->metadata_version, "external:", 9) == 0 &&
356 !is_subarray(&e->metadata_version[9])) {
357 /* update cmdline so this mdmon instance can be
358 * distinguished from others in a call to ps(1)
359 */
360 if (strlen(e->devnm) <= (unsigned)container_len) {
361 memset(container_name, 0, container_len);
362 sprintf(container_name, "%s", e->devnm);
363 }
364 status |= mdmon(e->devnm, 1, takeover);
365 }
366 }
367 free_mdstat(mdstat);
368
369 return status;
370 } else if (strncmp(container_name, "md", 2) == 0) {
371 int id = devnm2devid(container_name);
372 if (id)
373 devnm = container_name;
374 } else {
375 struct stat st;
376
377 if (stat(container_name, &st) == 0)
378 devnm = xstrdup(stat2devnm(&st));
379 }
380
381 if (!devnm) {
382 pr_err("%s is not a valid md device name\n",
383 container_name);
384 exit(1);
385 }
386 return mdmon(devnm, dofork && do_fork(), takeover);
387 }
388
389 static int mdmon(char *devnm, int must_fork, int takeover)
390 {
391 int mdfd;
392 struct mdinfo *mdi, *di;
393 struct supertype *container;
394 sigset_t set;
395 struct sigaction act;
396 int pfd[2];
397 int status;
398 int ignore;
399 pid_t victim = -1;
400 int victim_sock = -1;
401
402 dprintf("starting mdmon for %s\n", devnm);
403
404 mdfd = open_dev(devnm);
405 if (mdfd < 0) {
406 pr_err("%s: %s\n", devnm, strerror(errno));
407 return 1;
408 }
409 if (md_get_version(mdfd) < 0) {
410 pr_err("%s: Not an md device\n", devnm);
411 return 1;
412 }
413
414 /* Fork, and have the child tell us when they are ready */
415 if (must_fork) {
416 if (pipe(pfd) != 0) {
417 pr_err("failed to create pipe\n");
418 return 1;
419 }
420 switch(fork()) {
421 case -1:
422 pr_err("failed to fork: %s\n", strerror(errno));
423 return 1;
424 case 0: /* child */
425 close(pfd[0]);
426 break;
427 default: /* parent */
428 close(pfd[1]);
429 if (read(pfd[0], &status, sizeof(status)) != sizeof(status)) {
430 wait(&status);
431 status = WEXITSTATUS(status);
432 }
433 close(pfd[0]);
434 return status;
435 }
436 } else
437 pfd[0] = pfd[1] = -1;
438
439 container = xcalloc(1, sizeof(*container));
440 strcpy(container->devnm, devnm);
441 container->arrays = NULL;
442 container->sock = -1;
443
444 mdi = sysfs_read(mdfd, container->devnm, GET_VERSION|GET_LEVEL|GET_DEVS);
445
446 if (!mdi) {
447 pr_err("failed to load sysfs info for %s\n", container->devnm);
448 exit(3);
449 }
450 if (mdi->array.level != UnSet) {
451 pr_err("%s is not a container - cannot monitor\n", devnm);
452 exit(3);
453 }
454 if (mdi->array.major_version != -1 ||
455 mdi->array.minor_version != -2) {
456 pr_err("%s does not use external metadata - cannot monitor\n",
457 devnm);
458 exit(3);
459 }
460
461 container->ss = version_to_superswitch(mdi->text_version);
462 if (container->ss == NULL) {
463 pr_err("%s uses unsupported metadata: %s\n",
464 devnm, mdi->text_version);
465 exit(3);
466 }
467
468 container->devs = NULL;
469 for (di = mdi->devs; di; di = di->next) {
470 struct mdinfo *cd = xmalloc(sizeof(*cd));
471 *cd = *di;
472 cd->next = container->devs;
473 container->devs = cd;
474 }
475 sysfs_free(mdi);
476
477 /* SIGUSR is sent between parent and child. So both block it
478 * and enable it only with pselect.
479 */
480 sigemptyset(&set);
481 sigaddset(&set, SIGUSR1);
482 sigaddset(&set, SIGTERM);
483 sigprocmask(SIG_BLOCK, &set, NULL);
484 act.sa_handler = wake_me;
485 act.sa_flags = 0;
486 sigaction(SIGUSR1, &act, NULL);
487 act.sa_handler = term;
488 sigaction(SIGTERM, &act, NULL);
489 act.sa_handler = SIG_IGN;
490 sigaction(SIGPIPE, &act, NULL);
491
492 victim = mdmon_pid(container->devnm);
493 if (victim >= 0)
494 victim_sock = connect_monitor(container->devnm);
495
496 ignore = chdir("/");
497 if (!takeover && victim > 0 && victim_sock >= 0) {
498 if (fping_monitor(victim_sock) == 0) {
499 pr_err("%s already managed\n", container->devnm);
500 exit(3);
501 }
502 close(victim_sock);
503 victim_sock = -1;
504 }
505 if (container->ss->load_container(container, mdfd, devnm)) {
506 pr_err("Cannot load metadata for %s\n", devnm);
507 exit(3);
508 }
509 close(mdfd);
510
511 /* Ok, this is close enough. We can say goodbye to our parent now.
512 */
513 if (victim > 0)
514 remove_pidfile(devnm);
515 if (make_pidfile(devnm) < 0) {
516 exit(3);
517 }
518 container->sock = make_control_sock(devnm);
519
520 status = 0;
521 if (pfd[1] >= 0) {
522 if (write(pfd[1], &status, sizeof(status)) < 0)
523 pr_err("failed to notify our parent: %d\n",
524 getppid());
525 close(pfd[1]);
526 }
527
528 mlockall(MCL_CURRENT | MCL_FUTURE);
529
530 if (clone_monitor(container) < 0) {
531 pr_err("failed to start monitor process: %s\n",
532 strerror(errno));
533 exit(2);
534 }
535
536 if (victim > 0) {
537 try_kill_monitor(victim, container->devnm, victim_sock);
538 if (victim_sock >= 0)
539 close(victim_sock);
540 }
541
542 setsid();
543 close(0);
544 open("/dev/null", O_RDWR);
545 close(1);
546 ignore = dup(0);
547 #ifndef DEBUG
548 close(2);
549 ignore = dup(0);
550 #endif
551
552 /* This silliness is to stop the compiler complaining
553 * that we ignore 'ignore'
554 */
555 if (ignore)
556 ignore++;
557
558 do_manager(container);
559
560 exit(0);
561 }
562
563 /* Some stub functions so super-* can link with us */
564 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
565 struct supertype *st, unsigned long blocks,
566 int *fds, unsigned long long *offsets,
567 int dests, int *destfd, unsigned long long *destoffsets)
568 {
569 return 0;
570 }
571
572 int restore_stripes(int *dest, unsigned long long *offsets,
573 int raid_disks, int chunk_size, int level, int layout,
574 int source, unsigned long long read_offset,
575 unsigned long long start, unsigned long long length,
576 char *src_buf)
577 {
578 return 1;
579 }
580
581 void abort_reshape(struct mdinfo *sra)
582 {
583 return;
584 }
585
586 int save_stripes(int *source, unsigned long long *offsets,
587 int raid_disks, int chunk_size, int level, int layout,
588 int nwrites, int *dest,
589 unsigned long long start, unsigned long long length,
590 char *buf)
591 {
592 return 0;
593 }
594
595 struct superswitch super0 = {
596 .name = "0.90",
597 };
598 struct superswitch super1 = {
599 .name = "1.x",
600 };