From: Yu Watanabe Date: Tue, 28 May 2019 01:52:55 +0000 (+0900) Subject: coredumpctl: fix --debugger option X-Git-Tag: v243-rc1~373 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f0d8b2dbd67fdbcf36895704b64381e3aecbaa7;p=thirdparty%2Fsystemd.git coredumpctl: fix --debugger option Closes #12660. --- diff --git a/src/coredump/coredumpctl.c b/src/coredump/coredumpctl.c index 6b3f511fa39..d62cbd0323d 100644 --- a/src/coredump/coredumpctl.c +++ b/src/coredump/coredumpctl.c @@ -904,7 +904,7 @@ static int dump_core(int argc, char **argv, void *userdata) { static int run_debug(int argc, char **argv, void *userdata) { _cleanup_(sd_journal_closep) sd_journal *j = NULL; - _cleanup_free_ char *exe = NULL, *path = NULL; + _cleanup_free_ char *exe = NULL, *path = NULL, *debugger = NULL; bool unlink_path = false; const char *data, *fork_name; size_t len; @@ -921,6 +921,10 @@ static int run_debug(int argc, char **argv, void *userdata) { arg_debugger = "gdb"; } + debugger = strdup(arg_debugger); + if (!debugger) + return -ENOMEM; + if (arg_field) { log_error("Option --field/-F only makes sense with list"); return -EINVAL; @@ -966,19 +970,19 @@ static int run_debug(int argc, char **argv, void *userdata) { /* Don't interfere with gdb and its handling of SIGINT. */ (void) ignore_signals(SIGINT, -1); - fork_name = strjoina("(", arg_debugger, ")"); + fork_name = strjoina("(", debugger, ")"); r = safe_fork(fork_name, FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_CLOSE_ALL_FDS|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid); if (r < 0) goto finish; if (r == 0) { - execlp(arg_debugger, arg_debugger, exe, "-c", path, NULL); + execlp(debugger, debugger, exe, "-c", path, NULL); log_open(); - log_error_errno(errno, "Failed to invoke %s: %m", arg_debugger); + log_error_errno(errno, "Failed to invoke %s: %m", debugger); _exit(EXIT_FAILURE); } - r = wait_for_terminate_and_check(arg_debugger, pid, WAIT_LOG_ABNORMAL); + r = wait_for_terminate_and_check(debugger, pid, WAIT_LOG_ABNORMAL); finish: (void) default_signals(SIGINT, -1);