4 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
5 * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
7 * This file is part of LVM2.
9 * This copyrighted material is made available to anyone wishing to use,
10 * modify, copy, or redistribute it subject to the terms and conditions
11 * of the GNU Lesser General Public License v.2.1.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "toolcontext.h"
28 * Create verbose string with list of parameters
30 static char *_verbose_args(const char *const argv
[], char *buf
, size_t sz
)
37 for (i
= 0; argv
[i
]; i
++) {
38 if ((len
= dm_snprintf(buf
+ pos
, sz
- pos
,
49 * Execute and wait for external command
51 int exec_cmd(struct cmd_context
*cmd
, const char *const argv
[])
55 char buf
[PATH_MAX
* 2];
57 log_verbose("Executing: %s", _verbose_args(argv
, buf
, sizeof(buf
)));
59 if ((pid
= fork()) == -1) {
60 log_error("fork failed: %s", strerror(errno
));
68 /* FIXME Fix effect of reset_locking on cache then include this */
69 /* destroy_toolcontext(cmd); */
70 /* FIXME Use execve directly */
71 execvp(argv
[0], (char **const) argv
);
72 log_sys_error("execvp", argv
[0]);
77 if (wait4(pid
, &status
, 0, NULL
) != pid
) {
78 log_error("wait4 child process %u failed: %s", pid
,
83 if (!WIFEXITED(status
)) {
84 log_error("Child %u exited abnormally", pid
);
88 if (WEXITSTATUS(status
)) {
89 log_error("%s failed: %u", argv
[0], WEXITSTATUS(status
));