]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdmon.c
mdmon: remove scan variable from mdmon()
[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
62 #include <sched.h>
63
64 #include "mdadm.h"
65 #include "mdmon.h"
66
67 struct active_array *discard_this;
68 struct active_array *pending_discard;
69
70 int mon_tid, mgr_tid;
71
72 int sigterm;
73
74 int run_child(void *v)
75 {
76 struct supertype *c = v;
77
78 do_monitor(c);
79 return 0;
80 }
81
82 #ifdef __ia64__
83 int __clone2(int (*fn)(void *),
84 void *child_stack_base, size_t stack_size,
85 int flags, void *arg, ...
86 /* pid_t *pid, struct user_desc *tls, pid_t *ctid */ );
87 #endif
88 int clone_monitor(struct supertype *container)
89 {
90 static char stack[4096];
91
92 #ifdef __ia64__
93 mon_tid = __clone2(run_child, stack, sizeof(stack),
94 CLONE_FS|CLONE_FILES|CLONE_VM|CLONE_SIGHAND|CLONE_THREAD,
95 container);
96 #else
97 mon_tid = clone(run_child, stack+4096-64,
98 CLONE_FS|CLONE_FILES|CLONE_VM|CLONE_SIGHAND|CLONE_THREAD,
99 container);
100 #endif
101
102 mgr_tid = syscall(SYS_gettid);
103
104 return mon_tid;
105 }
106
107 static struct superswitch *find_metadata_methods(char *vers)
108 {
109 if (strcmp(vers, "ddf") == 0)
110 return &super_ddf;
111 if (strcmp(vers, "imsm") == 0)
112 return &super_imsm;
113 return NULL;
114 }
115
116 static int test_pidfile(char *devname)
117 {
118 char path[100];
119 struct stat st;
120
121 sprintf(path, "/var/run/mdadm/%s.pid", devname);
122 return stat(path, &st);
123 }
124
125 int make_pidfile(char *devname, int o_excl)
126 {
127 char path[100];
128 char pid[10];
129 int fd;
130 int n;
131
132 if (sigterm)
133 return -1;
134
135 sprintf(path, "/var/run/mdadm/%s.pid", devname);
136
137 fd = open(path, O_RDWR|O_CREAT|o_excl, 0600);
138 if (fd < 0)
139 return -errno;
140 sprintf(pid, "%d\n", getpid());
141 n = write(fd, pid, strlen(pid));
142 close(fd);
143 if (n < 0)
144 return -errno;
145 return 0;
146 }
147
148 int is_container_member(struct mdstat_ent *mdstat, char *container)
149 {
150 if (mdstat->metadata_version == NULL ||
151 strncmp(mdstat->metadata_version, "external:", 9) != 0 ||
152 !is_subarray(mdstat->metadata_version+9) ||
153 strncmp(mdstat->metadata_version+10, container, strlen(container)) != 0 ||
154 mdstat->metadata_version[10+strlen(container)] != '/')
155 return 0;
156
157 return 1;
158 }
159
160 pid_t devname2mdmon(char *devname)
161 {
162 char buf[100];
163 pid_t pid = -1;
164 int fd;
165
166 sprintf(buf, "/var/run/mdadm/%s.pid", devname);
167 fd = open(buf, O_RDONLY|O_NOATIME);
168 if (fd < 0)
169 return -1;
170
171 if (read(fd, buf, sizeof(buf)) > 0)
172 sscanf(buf, "%d\n", &pid);
173 close(fd);
174
175 return pid;
176 }
177
178 static void try_kill_monitor(pid_t pid, char *devname, int sock)
179 {
180 char buf[100];
181 int fd;
182 struct mdstat_ent *mdstat;
183 int n;
184
185 /* first rule of survival... don't off yourself */
186 if (pid == getpid())
187 return;
188
189 /* kill this process if it is mdmon */
190 sprintf(buf, "/proc/%lu/cmdline", (unsigned long) pid);
191 fd = open(buf, O_RDONLY);
192 if (fd < 0)
193 return;
194
195 n = read(fd, buf, sizeof(buf)-1);
196 buf[sizeof(buf)-1] = 0;
197 close(fd);
198
199 if (n < 0 || !strstr(buf, "mdmon"))
200 return;
201
202 kill(pid, SIGTERM);
203
204 mdstat = mdstat_read(0, 0);
205 for ( ; mdstat; mdstat = mdstat->next)
206 if (is_container_member(mdstat, devname)) {
207 sprintf(buf, "/dev/%s", mdstat->dev);
208 WaitClean(buf, sock, 0);
209 }
210 free_mdstat(mdstat);
211 }
212
213 void remove_pidfile(char *devname)
214 {
215 char buf[100];
216
217 if (sigterm)
218 return;
219
220 sprintf(buf, "/var/run/mdadm/%s.pid", devname);
221 unlink(buf);
222 sprintf(buf, "/var/run/mdadm/%s.sock", devname);
223 unlink(buf);
224 }
225
226 int make_control_sock(char *devname)
227 {
228 char path[100];
229 int sfd;
230 long fl;
231 struct sockaddr_un addr;
232
233 if (sigterm)
234 return -1;
235
236 sprintf(path, "/var/run/mdadm/%s.sock", devname);
237 unlink(path);
238 sfd = socket(PF_LOCAL, SOCK_STREAM, 0);
239 if (sfd < 0)
240 return -1;
241
242 addr.sun_family = PF_LOCAL;
243 strcpy(addr.sun_path, path);
244 if (bind(sfd, &addr, sizeof(addr)) < 0) {
245 close(sfd);
246 return -1;
247 }
248 listen(sfd, 10);
249 fl = fcntl(sfd, F_GETFL, 0);
250 fl |= O_NONBLOCK;
251 fcntl(sfd, F_SETFL, fl);
252 return sfd;
253 }
254
255 int socket_hup_requested;
256 static void hup(int sig)
257 {
258 socket_hup_requested = 1;
259 }
260
261 static void term(int sig)
262 {
263 sigterm = 1;
264 }
265
266 static void wake_me(int sig)
267 {
268
269 }
270
271 /* if we are debugging and starting mdmon by hand then don't fork */
272 static int do_fork(void)
273 {
274 #ifdef DEBUG
275 if (check_env("MDADM_NO_MDMON"))
276 return 0;
277 #endif
278
279 return 1;
280 }
281
282 void usage(void)
283 {
284 fprintf(stderr, "Usage: mdmon /device/name/for/container [target_dir]\n");
285 exit(2);
286 }
287
288 static int mdmon(char *devname, int devnum, int must_fork, char *switchroot);
289
290 int main(int argc, char *argv[])
291 {
292 char *container_name = NULL;
293 char *switchroot = NULL;
294 int devnum;
295 char *devname;
296 int status = 0;
297
298 switch (argc) {
299 case 3:
300 switchroot = argv[2];
301 case 2:
302 container_name = argv[1];
303 break;
304 default:
305 usage();
306 }
307
308 if (strcmp(container_name, "/proc/mdstat") == 0) {
309 struct mdstat_ent *mdstat, *e;
310
311 /* launch an mdmon instance for each container found */
312 mdstat = mdstat_read(0, 0);
313 for (e = mdstat; e; e = e->next) {
314 if (strncmp(e->metadata_version, "external:", 9) == 0 &&
315 !is_subarray(&e->metadata_version[9])) {
316 devname = devnum2devname(e->devnum);
317 /* update cmdline so this mdmon instance can be
318 * distinguished from others in a call to ps(1)
319 */
320 if (strlen(devname) <= strlen(container_name)) {
321 memset(container_name, 0, strlen(container_name));
322 sprintf(container_name, "%s", devname);
323 }
324 status |= mdmon(devname, e->devnum, 1,
325 switchroot);
326 }
327 }
328 free_mdstat(mdstat);
329
330 return status;
331 } else if (strncmp(container_name, "md", 2) == 0) {
332 devnum = devname2devnum(container_name);
333 devname = devnum2devname(devnum);
334 if (strcmp(container_name, devname) != 0)
335 devname = NULL;
336 } else {
337 struct stat st;
338
339 devnum = NoMdDev;
340 if (stat(container_name, &st) == 0)
341 devnum = stat2devnum(&st);
342 if (devnum == NoMdDev)
343 devname = NULL;
344 else
345 devname = devnum2devname(devnum);
346 }
347
348 if (!devname) {
349 fprintf(stderr, "mdmon: %s is not a valid md device name\n",
350 container_name);
351 exit(1);
352 }
353 return mdmon(devname, devnum, do_fork(), switchroot);
354 }
355
356 static int mdmon(char *devname, int devnum, int must_fork, char *switchroot)
357 {
358 int mdfd;
359 struct mdinfo *mdi, *di;
360 struct supertype *container;
361 sigset_t set;
362 struct sigaction act;
363 int pfd[2];
364 int status;
365 int ignore;
366 pid_t victim = -1;
367 int victim_sock = -1;
368
369 dprintf("starting mdmon for %s in %s\n",
370 devname, switchroot ? : "/");
371
372 /* try to spawn mdmon instances from the target file system */
373 if (switchroot && strcmp(switchroot, "/") != 0) {
374 char path[1024];
375 pid_t pid;
376
377 sprintf(path, "%s/sbin/mdmon", switchroot);
378 switch (fork()) {
379 case 0:
380 execl(path, "mdmon", devname, NULL);
381 exit(1);
382 case -1:
383 return 1;
384 default:
385 pid = wait(&status);
386 if (pid > -1 && WIFEXITED(status) &&
387 WEXITSTATUS(status) == 0)
388 return 0;
389 else
390 return 1;
391 }
392 }
393
394 mdfd = open_dev(devnum);
395 if (mdfd < 0) {
396 fprintf(stderr, "mdmon: %s: %s\n", devname,
397 strerror(errno));
398 return 1;
399 }
400 if (md_get_version(mdfd) < 0) {
401 fprintf(stderr, "mdmon: %s: Not an md device\n",
402 devname);
403 return 1;
404 }
405
406 /* Fork, and have the child tell us when they are ready */
407 if (must_fork) {
408 if (pipe(pfd) != 0) {
409 fprintf(stderr, "mdmon: failed to create pipe\n");
410 return 1;
411 }
412 switch(fork()) {
413 case -1:
414 fprintf(stderr, "mdmon: failed to fork: %s\n",
415 strerror(errno));
416 return 1;
417 case 0: /* child */
418 close(pfd[0]);
419 break;
420 default: /* parent */
421 close(pfd[1]);
422 if (read(pfd[0], &status, sizeof(status)) != sizeof(status)) {
423 wait(&status);
424 status = WEXITSTATUS(status);
425 }
426 return status;
427 }
428 } else
429 pfd[0] = pfd[1] = -1;
430
431 container = calloc(1, sizeof(*container));
432 container->devnum = devnum;
433 container->devname = devname;
434 container->arrays = NULL;
435 container->subarray[0] = 0;
436 container->sock = -1;
437
438 if (!container->devname) {
439 fprintf(stderr, "mdmon: failed to allocate container name string\n");
440 exit(3);
441 }
442
443 mdi = sysfs_read(mdfd, container->devnum,
444 GET_VERSION|GET_LEVEL|GET_DEVS|SKIP_GONE_DEVS);
445
446 if (!mdi) {
447 fprintf(stderr, "mdmon: failed to load sysfs info for %s\n",
448 container->devname);
449 exit(3);
450 }
451 if (mdi->array.level != UnSet) {
452 fprintf(stderr, "mdmon: %s is not a container - cannot monitor\n",
453 devname);
454 exit(3);
455 }
456 if (mdi->array.major_version != -1 ||
457 mdi->array.minor_version != -2) {
458 fprintf(stderr, "mdmon: %s does not use external metadata - cannot monitor\n",
459 devname);
460 exit(3);
461 }
462
463 container->ss = find_metadata_methods(mdi->text_version);
464 if (container->ss == NULL) {
465 fprintf(stderr, "mdmon: %s uses unknown metadata: %s\n",
466 devname, mdi->text_version);
467 exit(3);
468 }
469
470 container->devs = NULL;
471 for (di = mdi->devs; di; di = di->next) {
472 struct mdinfo *cd = malloc(sizeof(*cd));
473 *cd = *di;
474 cd->next = container->devs;
475 container->devs = cd;
476 }
477 sysfs_free(mdi);
478
479 /* SIGUSR is sent between parent and child. So both block it
480 * and enable it only with pselect.
481 */
482 sigemptyset(&set);
483 sigaddset(&set, SIGUSR1);
484 sigaddset(&set, SIGHUP);
485 sigaddset(&set, SIGALRM);
486 sigaddset(&set, SIGTERM);
487 sigprocmask(SIG_BLOCK, &set, NULL);
488 act.sa_handler = wake_me;
489 act.sa_flags = 0;
490 sigaction(SIGUSR1, &act, NULL);
491 sigaction(SIGALRM, &act, NULL);
492 act.sa_handler = hup;
493 sigaction(SIGHUP, &act, NULL);
494 act.sa_handler = term;
495 sigaction(SIGTERM, &act, NULL);
496 act.sa_handler = SIG_IGN;
497 sigaction(SIGPIPE, &act, NULL);
498
499 if (switchroot) {
500 /* we assume we assume that /sys /proc /dev are available in
501 * the new root
502 */
503 victim = devname2mdmon(container->devname);
504 victim_sock = connect_monitor(container->devname);
505 if (chroot(switchroot) != 0) {
506 fprintf(stderr, "mdmon: failed to chroot to '%s': %s\n",
507 switchroot, strerror(errno));
508 exit(4);
509 }
510 }
511
512 ignore = chdir("/");
513 if (victim < 0 && test_pidfile(container->devname) == 0) {
514 if (ping_monitor(container->devname) == 0) {
515 fprintf(stderr, "mdmon: %s already managed\n",
516 container->devname);
517 exit(3);
518 } else if (victim < 0)
519 victim = devname2mdmon(container->devname);
520 }
521 if (container->ss->load_super(container, mdfd, devname)) {
522 fprintf(stderr, "mdmon: Cannot load metadata for %s\n",
523 devname);
524 exit(3);
525 }
526 close(mdfd);
527
528 /* Ok, this is close enough. We can say goodbye to our parent now.
529 */
530 status = 0;
531 if (write(pfd[1], &status, sizeof(status)) < 0)
532 fprintf(stderr, "mdmon: failed to notify our parent: %d\n",
533 getppid());
534 close(pfd[1]);
535
536 setsid();
537 close(0);
538 open("/dev/null", O_RDWR);
539 close(1);
540 ignore = dup(0);
541 #ifndef DEBUG
542 close(2);
543 ignore = dup(0);
544 #endif
545
546 mlockall(MCL_CURRENT | MCL_FUTURE);
547
548 if (clone_monitor(container) < 0) {
549 fprintf(stderr, "mdmon: failed to start monitor process: %s\n",
550 strerror(errno));
551 exit(2);
552 }
553
554 if (victim > -1) {
555 try_kill_monitor(victim, container->devname, victim_sock);
556 close(victim_sock);
557 }
558 do_manager(container);
559
560 exit(0);
561 }