]>
git.ipfire.org Git - thirdparty/mdadm.git/blob - mdmon.c
a16647c6a85f75f92538dc4349f8de78920e4115
2 * mdmon - monitor external metadata arrays
4 * Copyright (C) 2007-2009 Neil Brown <neilb@suse.de>
5 * Copyright (C) 2007-2009 Intel Corporation
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.
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
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.
23 * When md arrays have user-space managed metadata, this is the program
24 * that does the managing.
26 * Given one argument: the name of the array (e.g. /dev/md0) that is
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.
34 * The main thread communicates with the priority thread by writing over
36 * Separate programs can communicate with the main thread via Unix-domain
38 * The two threads share address space and open file table.
48 #include <sys/types.h>
50 #include <sys/socket.h>
53 #include <sys/syscall.h>
70 char const Name
[] = "mdmon";
72 struct active_array
*discard_this
;
73 struct active_array
*pending_discard
;
80 static void *run_child(void *v
)
82 struct supertype
*c
= v
;
84 mon_tid
= syscall(SYS_gettid
);
89 static int clone_monitor(struct supertype
*container
)
96 pthread_attr_init(&attr
);
97 pthread_attr_setstacksize(&attr
, 4096);
98 pthread_attr_setdetachstate(&attr
, PTHREAD_CREATE_DETACHED
);
99 rc
= pthread_create(&thread
, &attr
, run_child
, container
);
102 while (mon_tid
== -1)
103 sleep_for(0, USEC_TO_NSEC(10), true);
104 pthread_attr_destroy(&attr
);
106 mgr_tid
= syscall(SYS_gettid
);
110 #else /* USE_PTHREADS */
111 static int run_child(void *v
)
113 struct supertype
*c
= v
;
120 int __clone2(int (*fn
)(void *),
121 void *child_stack_base
, size_t stack_size
,
122 int flags
, void *arg
, ...
123 /* pid_t *pid, struct user_desc *tls, pid_t *ctid */ );
125 static int clone_monitor(struct supertype
*container
)
127 static char stack
[4096];
130 mon_tid
= __clone2(run_child
, stack
, sizeof(stack
),
131 CLONE_FS
|CLONE_FILES
|CLONE_VM
|CLONE_SIGHAND
|CLONE_THREAD
,
134 mon_tid
= clone(run_child
, stack
+4096-64,
135 CLONE_FS
|CLONE_FILES
|CLONE_VM
|CLONE_SIGHAND
|CLONE_THREAD
,
139 mgr_tid
= syscall(SYS_gettid
);
143 #endif /* USE_PTHREADS */
145 static int make_pidfile(char *devname
)
152 if (mkdir(MDMON_DIR
, 0755) < 0 &&
155 sprintf(path
, "%s/%s.pid", MDMON_DIR
, devname
);
157 fd
= open(path
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
160 sprintf(pid
, "%d\n", getpid());
161 n
= write(fd
, pid
, strlen(pid
));
168 static void try_kill_monitor(pid_t pid
, char *devname
, int sock
)
176 /* first rule of survival... don't off yourself */
180 /* kill this process if it is mdmon */
181 sprintf(buf
, "/proc/%lu/cmdline", (unsigned long) pid
);
182 fd
= open(buf
, O_RDONLY
);
186 n
= read(fd
, buf
, sizeof(buf
)-1);
187 buf
[sizeof(buf
)-1] = 0;
190 if (n
< 0 || !(strstr(buf
, "mdmon") ||
191 strstr(buf
, "@dmon")))
199 /* Wait for monitor to exit by reading from the socket, after
200 * clearing the non-blocking flag */
201 fl
= fcntl(sock
, F_GETFL
, 0);
206 if (fcntl(sock
, F_SETFL
, fl
) < 0)
208 n
= read(sock
, buf
, 100);
210 /* If there is I/O going on it might took some time to get to
211 * clean state. Wait for monitor to exit fully to avoid races.
212 * Ping it with SIGUSR1 in case that it is sleeping */
213 for (n
= 0; n
< 25; n
++) {
214 rv
= kill(pid
, SIGUSR1
);
217 sleep_for(0, MSEC_TO_NSEC(200), true);
221 void remove_pidfile(char *devname
)
225 sprintf(buf
, "%s/%s.pid", MDMON_DIR
, devname
);
227 sprintf(buf
, "%s/%s.sock", MDMON_DIR
, devname
);
231 static int make_control_sock(char *devname
)
236 struct sockaddr_un addr
;
241 sprintf(path
, "%s/%s.sock", MDMON_DIR
, devname
);
243 sfd
= socket(PF_LOCAL
, SOCK_STREAM
, 0);
247 addr
.sun_family
= PF_LOCAL
;
248 snprintf(addr
.sun_path
, sizeof(addr
.sun_path
), "%s", path
);
249 umask(077); /* ensure no world write access */
250 if (bind(sfd
, (struct sockaddr
*)&addr
, sizeof(addr
)) < 0) {
255 fl
= fcntl(sfd
, F_GETFL
, 0);
257 if (fcntl(sfd
, F_SETFL
, fl
) < 0) {
264 static void term(int sig
)
269 static void wake_me(int sig
)
274 /* if we are debugging and starting mdmon by hand then don't fork */
275 static int do_fork(void)
278 if (check_env("MDADM_NO_MDMON"))
288 "Usage: mdmon [options] CONTAINER\n"
291 " --help -h : This message\n"
292 " --all -a : All devices\n"
293 " --foreground -F : Run in foreground (do not fork)\n"
294 " --takeover -t : Takeover container\n"
299 static bool is_duplicate_opt(const int opt
, const int set_val
, const char *long_name
)
301 if (opt
== set_val
) {
302 pr_err("--%s option duplicated!\n", long_name
);
308 static int mdmon(char *devnm
, int must_fork
, int takeover
);
310 int main(int argc
, char *argv
[])
312 char *container_name
= NULL
;
320 static struct option options
[] = {
321 {"all", 0, NULL
, 'a'},
322 {"takeover", 0, NULL
, 't'},
323 {"help", 0, NULL
, 'h'},
324 {"offroot", 0, NULL
, OffRootOpt
},
325 {"foreground", 0, NULL
, 'F'},
330 * mdmon should never complain due to lack of a platform,
331 * that is mdadm's job if at all.
333 imsm_set_no_platform(1);
335 while ((opt
= getopt_long(argc
, argv
, "thaF", options
, NULL
)) != -1) {
338 if (is_duplicate_opt(all
, 1, "all"))
340 container_name
= argv
[optind
-1];
344 if (is_duplicate_opt(takeover
, 1, "takeover"))
349 if (is_duplicate_opt(dofork
, 0, "foreground"))
354 if (is_duplicate_opt(argv
[0][0], '@', "offroot"))
359 if (is_duplicate_opt(help
, true, "help"))
371 * set first char of argv[0] to @. This is used by
372 * systemd to signal that the task was launched from
373 * initrd/initramfs and should be preserved during shutdown
378 if (!all
&& argv
[optind
]) {
379 static const char prefix
[] = "initrd/";
380 container_name
= argv
[optind
];
381 if (strncmp(container_name
, prefix
,
382 sizeof(prefix
) - 1) == 0)
383 container_name
+= sizeof(prefix
)-1;
384 container_name
= get_md_name(container_name
);
389 if (container_name
== NULL
|| argc
- optind
> 1)
392 if (strcmp(container_name
, "/proc/mdstat") == 0)
399 struct mdstat_ent
*mdstat
, *e
;
400 int container_len
= strnlen(container_name
, MD_NAME_MAX
);
402 /* launch an mdmon instance for each container found */
403 mdstat
= mdstat_read(0, 0);
404 for (e
= mdstat
; e
; e
= e
->next
) {
405 if (is_mdstat_ent_external(e
) && !is_mdstat_ent_subarray(e
)) {
406 /* update cmdline so this mdmon instance can be
407 * distinguished from others in a call to ps(1)
409 if (strlen(e
->devnm
) <= (unsigned)container_len
) {
410 memset(container_name
, 0, container_len
);
411 sprintf(container_name
, "%s", e
->devnm
);
413 status
|= mdmon(e
->devnm
, 1, takeover
);
421 mdfd
= open_mddev(container_name
, 0);
422 if (is_fd_valid(mdfd
)) {
423 char *devnm
= fd2devnm(mdfd
);
428 return mdmon(devnm
, dofork
&& do_fork(), takeover
);
431 pr_err("%s is not a valid md device name\n", container_name
);
435 static int mdmon(char *devnm
, int must_fork
, int takeover
)
438 struct mdinfo
*mdi
, *di
;
439 struct supertype
*container
;
441 struct sigaction act
;
446 int victim_sock
= -1;
448 dprintf("starting mdmon for %s\n", devnm
);
450 mdfd
= open_dev(devnm
);
452 pr_err("%s: %s\n", devnm
, strerror(errno
));
456 /* Fork, and have the child tell us when they are ready */
458 if (pipe(pfd
) != 0) {
459 pr_err("failed to create pipe\n");
465 pr_err("failed to fork: %s\n", strerror(errno
));
471 default: /* parent */
473 if (read(pfd
[0], &status
, sizeof(status
)) != sizeof(status
)) {
475 status
= WEXITSTATUS(status
);
482 pfd
[0] = pfd
[1] = -1;
484 container
= xcalloc(1, sizeof(*container
));
485 snprintf(container
->devnm
, MD_NAME_MAX
, "%s", devnm
);
486 container
->arrays
= NULL
;
487 container
->sock
= -1;
489 mdi
= sysfs_read(mdfd
, container
->devnm
, GET_VERSION
|GET_LEVEL
|GET_DEVS
);
492 pr_err("failed to load sysfs info for %s\n", container
->devnm
);
495 if (mdi
->array
.level
!= UnSet
) {
496 pr_err("%s is not a container - cannot monitor\n", devnm
);
499 if (mdi
->array
.major_version
!= -1 ||
500 mdi
->array
.minor_version
!= -2) {
501 pr_err("%s does not use external metadata - cannot monitor\n",
506 container
->ss
= version_to_superswitch(mdi
->text_version
);
507 if (container
->ss
== NULL
) {
508 pr_err("%s uses unsupported metadata: %s\n",
509 devnm
, mdi
->text_version
);
513 container
->devs
= NULL
;
514 for (di
= mdi
->devs
; di
; di
= di
->next
) {
515 struct mdinfo
*cd
= xmalloc(sizeof(*cd
));
517 cd
->next
= container
->devs
;
518 container
->devs
= cd
;
522 /* SIGUSR is sent between parent and child. So both block it
523 * and enable it only with pselect.
526 sigaddset(&set
, SIGUSR1
);
527 sigaddset(&set
, SIGTERM
);
528 sigprocmask(SIG_BLOCK
, &set
, NULL
);
529 act
.sa_handler
= wake_me
;
531 sigaction(SIGUSR1
, &act
, NULL
);
532 act
.sa_handler
= term
;
533 sigaction(SIGTERM
, &act
, NULL
);
534 act
.sa_handler
= SIG_IGN
;
535 sigaction(SIGPIPE
, &act
, NULL
);
537 victim
= mdmon_pid(container
->devnm
);
539 victim_sock
= connect_monitor(container
->devnm
);
542 if (!takeover
&& victim
> 0 && victim_sock
>= 0) {
543 if (fping_monitor(victim_sock
) == 0) {
544 pr_err("%s already managed\n", container
->devnm
);
550 if (container
->ss
->load_container(container
, mdfd
, devnm
)) {
551 pr_err("Cannot load metadata for %s\n", devnm
);
556 /* Ok, this is close enough. We can say goodbye to our parent now.
559 remove_pidfile(devnm
);
560 if (make_pidfile(devnm
) < 0) {
563 container
->sock
= make_control_sock(devnm
);
567 if (write(pfd
[1], &status
, sizeof(status
)) < 0)
568 pr_err("failed to notify our parent: %d\n",
573 mlockall(MCL_CURRENT
| MCL_FUTURE
);
575 if (clone_monitor(container
) < 0) {
576 pr_err("failed to start monitor process: %s\n",
582 try_kill_monitor(victim
, container
->devnm
, victim_sock
);
583 if (victim_sock
>= 0)
590 /* This silliness is to stop the compiler complaining
591 * that we ignore 'ignore'
596 do_manager(container
);
601 /* Some stub functions so super-* can link with us */
602 int child_monitor(int afd
, struct mdinfo
*sra
, struct reshape
*reshape
,
603 struct supertype
*st
, unsigned long blocks
,
604 int *fds
, unsigned long long *offsets
,
605 int dests
, int *destfd
, unsigned long long *destoffsets
)
610 int restore_stripes(int *dest
, unsigned long long *offsets
,
611 int raid_disks
, int chunk_size
, int level
, int layout
,
612 int source
, unsigned long long read_offset
,
613 unsigned long long start
, unsigned long long length
,
619 int save_stripes(int *source
, unsigned long long *offsets
,
620 int raid_disks
, int chunk_size
, int level
, int layout
,
621 int nwrites
, int *dest
,
622 unsigned long long start
, unsigned long long length
,
628 struct superswitch super0
= {
631 struct superswitch super1
= {