]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdmon.c
mdmon: Use getopt_long() to parse command line options
[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 return;
189
190 kill(pid, SIGTERM);
191
192 if (sock < 0)
193 return;
194
195 /* Wait for monitor to exit by reading from the socket, after
196 * clearing the non-blocking flag */
197 fl = fcntl(sock, F_GETFL, 0);
198 fl &= ~O_NONBLOCK;
199 fcntl(sock, F_SETFL, fl);
200 n = read(sock, buf, 100);
201 /* Ignore result, it is just the wait that
202 * matters
203 */
204 }
205
206 void remove_pidfile(char *devname)
207 {
208 char buf[100];
209
210 sprintf(buf, "%s/%s.pid", MDMON_DIR, devname);
211 unlink(buf);
212 sprintf(buf, "%s/%s.sock", MDMON_DIR, devname);
213 unlink(buf);
214 }
215
216 static int make_control_sock(char *devname)
217 {
218 char path[100];
219 int sfd;
220 long fl;
221 struct sockaddr_un addr;
222
223 if (sigterm)
224 return -1;
225
226 sprintf(path, "%s/%s.sock", MDMON_DIR, devname);
227 unlink(path);
228 sfd = socket(PF_LOCAL, SOCK_STREAM, 0);
229 if (sfd < 0)
230 return -1;
231
232 addr.sun_family = PF_LOCAL;
233 strcpy(addr.sun_path, path);
234 if (bind(sfd, &addr, sizeof(addr)) < 0) {
235 close(sfd);
236 return -1;
237 }
238 listen(sfd, 10);
239 fl = fcntl(sfd, F_GETFL, 0);
240 fl |= O_NONBLOCK;
241 fcntl(sfd, F_SETFL, fl);
242 return sfd;
243 }
244
245 static void term(int sig)
246 {
247 sigterm = 1;
248 }
249
250 static void wake_me(int sig)
251 {
252
253 }
254
255 /* if we are debugging and starting mdmon by hand then don't fork */
256 static int do_fork(void)
257 {
258 #ifdef DEBUG
259 if (check_env("MDADM_NO_MDMON"))
260 return 0;
261 #endif
262
263 return 1;
264 }
265
266 void usage(void)
267 {
268 fprintf(stderr,
269 "Usage: mdmon [options] CONTAINER\n"
270 "\n"
271 "Options are:\n"
272 " --help -h : This message\n"
273 " --all : All devices\n"
274 " --takeover -t : Takeover container\n"
275 );
276 exit(2);
277 }
278
279 static int mdmon(char *devname, int devnum, int must_fork, int takeover);
280
281 int main(int argc, char *argv[])
282 {
283 char *container_name = NULL;
284 int devnum;
285 char *devname;
286 int status = 0;
287 int opt;
288 int all = 0;
289 int takeover = 0;
290 static struct option options[] = {
291 {"all", 0, NULL, 'a'},
292 {"takeover", 0, NULL, 't'},
293 {"help", 0, NULL, 'h'},
294 {NULL, 0, NULL, 0}
295 };
296
297 while ((opt = getopt_long(argc, argv, "th", options, NULL)) != -1) {
298 switch (opt) {
299 case 'a':
300 container_name = argv[optind-1];
301 all = 1;
302 break;
303 case 't':
304 container_name = optarg;
305 takeover = 1;
306 break;
307 case 'h':
308 default:
309 usage();
310 break;
311 }
312 }
313
314 if (all == 0 && container_name == NULL) {
315 if (argv[optind])
316 container_name = argv[optind];
317 }
318
319 if (container_name == NULL)
320 usage();
321
322 if (argc - optind > 1)
323 usage();
324
325 if (strcmp(container_name, "/proc/mdstat") == 0)
326 all = 1;
327
328 if (all) {
329 struct mdstat_ent *mdstat, *e;
330 int container_len = strlen(container_name);
331
332 /* launch an mdmon instance for each container found */
333 mdstat = mdstat_read(0, 0);
334 for (e = mdstat; e; e = e->next) {
335 if (e->metadata_version &&
336 strncmp(e->metadata_version, "external:", 9) == 0 &&
337 !is_subarray(&e->metadata_version[9])) {
338 devname = devnum2devname(e->devnum);
339 /* update cmdline so this mdmon instance can be
340 * distinguished from others in a call to ps(1)
341 */
342 if (strlen(devname) <= (unsigned)container_len) {
343 memset(container_name, 0, container_len);
344 sprintf(container_name, "%s", devname);
345 }
346 status |= mdmon(devname, e->devnum, 1,
347 takeover);
348 }
349 }
350 free_mdstat(mdstat);
351
352 return status;
353 } else if (strncmp(container_name, "md", 2) == 0) {
354 devnum = devname2devnum(container_name);
355 devname = devnum2devname(devnum);
356 if (strcmp(container_name, devname) != 0)
357 devname = NULL;
358 } else {
359 struct stat st;
360
361 devnum = NoMdDev;
362 if (stat(container_name, &st) == 0)
363 devnum = stat2devnum(&st);
364 if (devnum == NoMdDev)
365 devname = NULL;
366 else
367 devname = devnum2devname(devnum);
368 }
369
370 if (!devname) {
371 fprintf(stderr, "mdmon: %s is not a valid md device name\n",
372 container_name);
373 exit(1);
374 }
375 return mdmon(devname, devnum, do_fork(), takeover);
376 }
377
378 static int mdmon(char *devname, int devnum, int must_fork, int takeover)
379 {
380 int mdfd;
381 struct mdinfo *mdi, *di;
382 struct supertype *container;
383 sigset_t set;
384 struct sigaction act;
385 int pfd[2];
386 int status;
387 int ignore;
388 pid_t victim = -1;
389 int victim_sock = -1;
390
391 dprintf("starting mdmon for %s\n", devname);
392
393 mdfd = open_dev(devnum);
394 if (mdfd < 0) {
395 fprintf(stderr, "mdmon: %s: %s\n", devname,
396 strerror(errno));
397 return 1;
398 }
399 if (md_get_version(mdfd) < 0) {
400 fprintf(stderr, "mdmon: %s: Not an md device\n",
401 devname);
402 return 1;
403 }
404
405 /* Fork, and have the child tell us when they are ready */
406 if (must_fork) {
407 if (pipe(pfd) != 0) {
408 fprintf(stderr, "mdmon: failed to create pipe\n");
409 return 1;
410 }
411 switch(fork()) {
412 case -1:
413 fprintf(stderr, "mdmon: failed to fork: %s\n",
414 strerror(errno));
415 return 1;
416 case 0: /* child */
417 close(pfd[0]);
418 break;
419 default: /* parent */
420 close(pfd[1]);
421 if (read(pfd[0], &status, sizeof(status)) != sizeof(status)) {
422 wait(&status);
423 status = WEXITSTATUS(status);
424 }
425 return status;
426 }
427 } else
428 pfd[0] = pfd[1] = -1;
429
430 container = calloc(1, sizeof(*container));
431 container->devnum = devnum;
432 container->devname = devname;
433 container->arrays = NULL;
434 container->sock = -1;
435
436 if (!container->devname) {
437 fprintf(stderr, "mdmon: failed to allocate container name string\n");
438 exit(3);
439 }
440
441 mdi = sysfs_read(mdfd, container->devnum, GET_VERSION|GET_LEVEL|GET_DEVS);
442
443 if (!mdi) {
444 fprintf(stderr, "mdmon: failed to load sysfs info for %s\n",
445 container->devname);
446 exit(3);
447 }
448 if (mdi->array.level != UnSet) {
449 fprintf(stderr, "mdmon: %s is not a container - cannot monitor\n",
450 devname);
451 exit(3);
452 }
453 if (mdi->array.major_version != -1 ||
454 mdi->array.minor_version != -2) {
455 fprintf(stderr, "mdmon: %s does not use external metadata - cannot monitor\n",
456 devname);
457 exit(3);
458 }
459
460 container->ss = version_to_superswitch(mdi->text_version);
461 if (container->ss == NULL) {
462 fprintf(stderr, "mdmon: %s uses unsupported metadata: %s\n",
463 devname, mdi->text_version);
464 exit(3);
465 }
466
467 container->devs = NULL;
468 for (di = mdi->devs; di; di = di->next) {
469 struct mdinfo *cd = malloc(sizeof(*cd));
470 *cd = *di;
471 cd->next = container->devs;
472 container->devs = cd;
473 }
474 sysfs_free(mdi);
475
476 /* SIGUSR is sent between parent and child. So both block it
477 * and enable it only with pselect.
478 */
479 sigemptyset(&set);
480 sigaddset(&set, SIGUSR1);
481 sigaddset(&set, SIGTERM);
482 sigprocmask(SIG_BLOCK, &set, NULL);
483 act.sa_handler = wake_me;
484 act.sa_flags = 0;
485 sigaction(SIGUSR1, &act, NULL);
486 act.sa_handler = term;
487 sigaction(SIGTERM, &act, NULL);
488 act.sa_handler = SIG_IGN;
489 sigaction(SIGPIPE, &act, NULL);
490
491 victim = mdmon_pid(container->devnum);
492 if (victim >= 0)
493 victim_sock = connect_monitor(container->devname);
494
495 ignore = chdir("/");
496 if (!takeover && victim > 0 && victim_sock >= 0) {
497 if (fping_monitor(victim_sock) == 0) {
498 fprintf(stderr, "mdmon: %s already managed\n",
499 container->devname);
500 exit(3);
501 }
502 close(victim_sock);
503 victim_sock = -1;
504 }
505 if (container->ss->load_container(container, mdfd, devname)) {
506 fprintf(stderr, "mdmon: Cannot load metadata for %s\n",
507 devname);
508 exit(3);
509 }
510 close(mdfd);
511
512 /* Ok, this is close enough. We can say goodbye to our parent now.
513 */
514 if (victim > 0)
515 remove_pidfile(devname);
516 if (make_pidfile(devname) < 0) {
517 exit(3);
518 }
519 container->sock = make_control_sock(devname);
520
521 status = 0;
522 if (write(pfd[1], &status, sizeof(status)) < 0)
523 fprintf(stderr, "mdmon: failed to notify our parent: %d\n",
524 getppid());
525 close(pfd[1]);
526
527 mlockall(MCL_CURRENT | MCL_FUTURE);
528
529 if (clone_monitor(container) < 0) {
530 fprintf(stderr, "mdmon: failed to start monitor process: %s\n",
531 strerror(errno));
532 exit(2);
533 }
534
535 if (victim > 0) {
536 try_kill_monitor(victim, container->devname, victim_sock);
537 if (victim_sock >= 0)
538 close(victim_sock);
539 }
540
541 setsid();
542 close(0);
543 open("/dev/null", O_RDWR);
544 close(1);
545 ignore = dup(0);
546 #ifndef DEBUG
547 close(2);
548 ignore = dup(0);
549 #endif
550
551 /* This silliness is to stop the compiler complaining
552 * that we ignore 'ignore'
553 */
554 if (ignore)
555 ignore++;
556
557 do_manager(container);
558
559 exit(0);
560 }
561
562 /* Some stub functions so super-* can link with us */
563 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
564 struct supertype *st, unsigned long blocks,
565 int *fds, unsigned long long *offsets,
566 int dests, int *destfd, unsigned long long *destoffsets)
567 {
568 return 0;
569 }
570
571 int restore_stripes(int *dest, unsigned long long *offsets,
572 int raid_disks, int chunk_size, int level, int layout,
573 int source, unsigned long long read_offset,
574 unsigned long long start, unsigned long long length,
575 char *src_buf)
576 {
577 return 1;
578 }
579
580 void abort_reshape(struct mdinfo *sra)
581 {
582 return;
583 }
584
585 int save_stripes(int *source, unsigned long long *offsets,
586 int raid_disks, int chunk_size, int level, int layout,
587 int nwrites, int *dest,
588 unsigned long long start, unsigned long long length,
589 char *buf)
590 {
591 return 0;
592 }