conmon: Clean up execsync

This moves the timeout handling from the go code to conmon, whic
removes some of the complexity from criod, and additionally it will
makes it possible to do the double-fork in the exec case too.

Signed-off-by: Alexander Larsson <alexl@redhat.com>
This commit is contained in:
Alexander Larsson 2017-06-21 19:39:02 +02:00
parent 774c47d00c
commit 81cb788004
2 changed files with 131 additions and 141 deletions

View file

@ -105,6 +105,7 @@ static bool systemd_cgroup = false;
static char *exec_process_spec = NULL; static char *exec_process_spec = NULL;
static bool exec = false; static bool exec = false;
static char *log_path = NULL; static char *log_path = NULL;
static int timeout = 0;
static GOptionEntry entries[] = static GOptionEntry entries[] =
{ {
{ "terminal", 't', 0, G_OPTION_ARG_NONE, &terminal, "Terminal", NULL }, { "terminal", 't', 0, G_OPTION_ARG_NONE, &terminal, "Terminal", NULL },
@ -118,6 +119,7 @@ static GOptionEntry entries[] =
{ "exec", 'e', 0, G_OPTION_ARG_NONE, &exec, "Exec a command in a running container", NULL }, { "exec", 'e', 0, G_OPTION_ARG_NONE, &exec, "Exec a command in a running container", NULL },
{ "exec-process-spec", 0, 0, G_OPTION_ARG_STRING, &exec_process_spec, "Path to the process spec for exec", NULL }, { "exec-process-spec", 0, 0, G_OPTION_ARG_STRING, &exec_process_spec, "Path to the process spec for exec", NULL },
{ "log-path", 'l', 0, G_OPTION_ARG_STRING, &log_path, "Log file path", NULL }, { "log-path", 'l', 0, G_OPTION_ARG_STRING, &log_path, "Log file path", NULL },
{ "timeout", 'T', 0, G_OPTION_ARG_INT, &timeout, "Timeout in seconds", NULL },
{ NULL } { NULL }
}; };
@ -460,6 +462,8 @@ static int cfd = -1;
/* Used for OOM notification API */ /* Used for OOM notification API */
static int ofd = -1; static int ofd = -1;
static bool timed_out = FALSE;
static GMainLoop *main_loop = NULL; static GMainLoop *main_loop = NULL;
static void conn_sock_shutdown(int how) static void conn_sock_shutdown(int how)
@ -525,6 +529,14 @@ static gboolean stdio_cb(int fd, GIOCondition condition, gpointer user_data)
return G_SOURCE_REMOVE; return G_SOURCE_REMOVE;
} }
static gboolean timeout_cb (G_GNUC_UNUSED gpointer user_data)
{
timed_out = TRUE;
ninfo ("Timed out, killing main loop");
g_main_loop_quit (main_loop);
return G_SOURCE_REMOVE;
}
static gboolean oom_cb(int fd, GIOCondition condition, G_GNUC_UNUSED gpointer user_data) static gboolean oom_cb(int fd, GIOCondition condition, G_GNUC_UNUSED gpointer user_data)
{ {
uint64_t oom_event; uint64_t oom_event;
@ -720,6 +732,34 @@ runtime_exit_cb (G_GNUC_UNUSED GPid pid, int status, G_GNUC_UNUSED gpointer user
g_main_loop_quit (main_loop); g_main_loop_quit (main_loop);
} }
static void write_sync_fd(int sync_pipe_fd, int res, const char *message)
{
_cleanup_free_ char *escaped_message = NULL;
_cleanup_free_ char *json = NULL;
const char *res_key;
ssize_t len;
if (sync_pipe_fd == -1)
return;
if (exec)
res_key = "exit_code";
else
res_key = "pid";
if (message) {
escaped_message = escape_json_string(message);
json = g_strdup_printf ("{\"%s\": %d, \"message\": \"%s\"}\n", res_key, res, escaped_message);
} else {
json = g_strdup_printf ("{\"%s\": %d}\n", res_key, res);
}
len = strlen(json);
if (write_all(sync_pipe_fd, json, len) != len) {
pexit("Unable to send container stderr message to parent");
}
}
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
int ret; int ret;
@ -817,7 +857,6 @@ int main(int argc, char *argv[])
close(start_pipe_fd); close(start_pipe_fd);
} }
if (!exec) {
/* In the create-container case we double-fork in /* In the create-container case we double-fork in
order to disconnect from the parent, as we want to order to disconnect from the parent, as we want to
continue in a daemon-like way */ continue in a daemon-like way */
@ -840,7 +879,6 @@ int main(int argc, char *argv[])
/* Create a new session group */ /* Create a new session group */
setsid(); setsid();
}
/* Environment variables */ /* Environment variables */
sync_pipe = getenv("_OCI_SYNCPIPE"); sync_pipe = getenv("_OCI_SYNCPIPE");
@ -1025,23 +1063,15 @@ int main(int argc, char *argv[])
} }
if (!WIFEXITED(runtime_status) || WEXITSTATUS(runtime_status) != 0) { if (!WIFEXITED(runtime_status) || WEXITSTATUS(runtime_status) != 0) {
if (sync_pipe_fd > 0 && !exec) { if (sync_pipe_fd > 0) {
/* /*
* Read from container stderr for any error and send it to parent * Read from container stderr for any error and send it to parent
* We send -1 as pid to signal to parent that create container has failed. * We send -1 as pid to signal to parent that create container has failed.
*/ */
num_read = read(masterfd_stderr, buf, BUF_SIZE); num_read = read(masterfd_stderr, buf, BUF_SIZE);
if (num_read > 0) { if (num_read > 0) {
_cleanup_free_ char *escaped_message = NULL;
ssize_t len;
buf[num_read] = '\0'; buf[num_read] = '\0';
escaped_message = escape_json_string(buf); write_sync_fd(sync_pipe_fd, -1, buf);
len = snprintf(buf, BUF_SIZE, "{\"pid\": %d, \"message\": \"%s\"}\n", -1, escaped_message);
if (len < 0 || write_all(sync_pipe_fd, buf, len) != len) {
ninfo("Unable to send container stderr message to parent");
}
} }
} }
nexit("Failed to create container: exit status %d", WEXITSTATUS(runtime_status)); nexit("Failed to create container: exit status %d", WEXITSTATUS(runtime_status));
@ -1062,7 +1092,7 @@ int main(int argc, char *argv[])
ninfo("container PID: %d", cpid); ninfo("container PID: %d", cpid);
/* Setup endpoint for attach */ /* Setup endpoint for attach */
char attach_symlink_dir_path[PATH_MAX]; char attach_symlink_dir_path[PATH_MAX] = { 0 };
struct sockaddr_un attach_addr = {0}; struct sockaddr_un attach_addr = {0};
if (!exec) { if (!exec) {
@ -1130,11 +1160,8 @@ int main(int argc, char *argv[])
} }
/* Send the container pid back to parent */ /* Send the container pid back to parent */
if (sync_pipe_fd > 0 && !exec) { if (!exec) {
len = snprintf(buf, BUF_SIZE, "{\"pid\": %d}\n", cpid); write_sync_fd(sync_pipe_fd, cpid, NULL);
if (len < 0 || write_all(sync_pipe_fd, buf, len) != len) {
pexit("unable to send container pid to parent");
}
} }
/* Setup OOM notification for container process */ /* Setup OOM notification for container process */
@ -1188,14 +1215,33 @@ int main(int argc, char *argv[])
g_unix_fd_add (ctlfd, G_IO_IN, ctrl_cb, NULL); g_unix_fd_add (ctlfd, G_IO_IN, ctrl_cb, NULL);
} }
if (timeout > 0) {
g_timeout_add_seconds (timeout, timeout_cb, NULL);
}
g_main_loop_run (main_loop); g_main_loop_run (main_loop);
int exit_status = -1;
const char *exit_message = NULL;
if (timed_out) {
kill(cpid, SIGKILL);
exit_message = "command timed out";
} else {
/* Wait for the container process and record its exit code */ /* Wait for the container process and record its exit code */
while ((pid = waitpid(-1, &status, 0)) > 0) { while ((pid = waitpid(-1, &status, 0)) > 0) {
int exit_status = WEXITSTATUS(status); int child_exit_status = WEXITSTATUS(status);
printf("PID %d exited with status %d\n", pid, exit_status); printf("PID %d exited with status %d\n", pid, child_exit_status);
if (pid == cpid) { if (pid == cpid) {
exit_status = child_exit_status;
break;
}
}
if (pid == -1) {
exit_message = "runtime didn't create a child";
}
}
if (!exec) { if (!exec) {
_cleanup_free_ char *status_str = NULL; _cleanup_free_ char *status_str = NULL;
ret = asprintf(&status_str, "%d", exit_status); ret = asprintf(&status_str, "%d", exit_status);
@ -1211,39 +1257,16 @@ int main(int argc, char *argv[])
g_error_free(err); g_error_free(err);
exit(1); exit(1);
} }
} else { } else {
/* Send the command exec exit code back to the parent */ /* Send the command exec exit code back to the parent */
if (sync_pipe_fd > 0) { write_sync_fd(sync_pipe_fd, exit_status, exit_message);
len = snprintf(buf, BUF_SIZE, "{\"exit_code\": %d}\n", exit_status);
if (len < 0 || write_all(sync_pipe_fd, buf, len) != len) {
pexit("unable to send exit status");
exit(1);
}
}
}
break;
}
} }
if (exec && pid < 0 && errno == ECHILD && sync_pipe_fd > 0) { if (attach_symlink_dir_path[0] != 0 &&
/* unlink(attach_symlink_dir_path) == -1 && errno != ENOENT) {
* waitpid failed and set errno to ECHILD:
* The runtime exec call did not create any child
* process and we can send the system() exit code
* to the parent.
*/
len = snprintf(buf, BUF_SIZE, "{\"exit_code\": %d}\n", WEXITSTATUS(runtime_status));
if (len < 0 || write_all(sync_pipe_fd, buf, len) != len) {
pexit("unable to send exit status");
exit(1);
}
}
if (!exec) {
if (unlink(attach_symlink_dir_path) == -1 && errno != ENOENT) {
pexit("Failed to remove symlink for attach socket directory"); pexit("Failed to remove symlink for attach socket directory");
} }
}
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }

View file

@ -64,6 +64,7 @@ type syncInfo struct {
// exitCodeInfo is used to return the monitored process exit code to the daemon // exitCodeInfo is used to return the monitored process exit code to the daemon
type exitCodeInfo struct { type exitCodeInfo struct {
ExitCode int32 `json:"exit_code"` ExitCode int32 `json:"exit_code"`
Message string `json:"message,omitempty"`
} }
// Name returns the name of the OCI Runtime // Name returns the name of the OCI Runtime
@ -370,6 +371,10 @@ func (r *Runtime) ExecSync(c *Container, command []string, timeout int64) (resp
if c.terminal { if c.terminal {
args = append(args, "-t") args = append(args, "-t")
} }
if timeout > 0 {
args = append(args, "-T")
args = append(args, fmt.Sprintf("%d", timeout))
}
args = append(args, "-l", logPath) args = append(args, "-l", logPath)
pspec := rspec.Process{ pspec := rspec.Process{
@ -417,52 +422,6 @@ func (r *Runtime) ExecSync(c *Container, command []string, timeout int64) (resp
// We don't need childPipe on the parent side // We don't need childPipe on the parent side
childPipe.Close() childPipe.Close()
if timeout > 0 {
done := make(chan error, 1)
go func() {
done <- cmd.Wait()
}()
select {
case <-time.After(time.Duration(timeout) * time.Second):
err = unix.Kill(cmd.Process.Pid, syscall.SIGKILL)
if err != nil && err != syscall.ESRCH {
return nil, ExecSyncError{
Stdout: stdoutBuf,
Stderr: stderrBuf,
ExitCode: -1,
Err: fmt.Errorf("failed to kill process on timeout: %+v", err),
}
}
return nil, ExecSyncError{
Stdout: stdoutBuf,
Stderr: stderrBuf,
ExitCode: -1,
Err: fmt.Errorf("command timed out"),
}
case err = <-done:
if err != nil {
if exitErr, ok := err.(*exec.ExitError); ok {
if status, ok := exitErr.Sys().(syscall.WaitStatus); ok {
return nil, ExecSyncError{
Stdout: stdoutBuf,
Stderr: stderrBuf,
ExitCode: int32(status.ExitStatus()),
Err: err,
}
}
} else {
return nil, ExecSyncError{
Stdout: stdoutBuf,
Stderr: stderrBuf,
ExitCode: -1,
Err: err,
}
}
}
}
} else {
err = cmd.Wait() err = cmd.Wait()
if err != nil { if err != nil {
if exitErr, ok := err.(*exec.ExitError); ok { if exitErr, ok := err.(*exec.ExitError); ok {
@ -483,7 +442,6 @@ func (r *Runtime) ExecSync(c *Container, command []string, timeout int64) (resp
} }
} }
} }
}
var ec *exitCodeInfo var ec *exitCodeInfo
if err := json.NewDecoder(parentPipe).Decode(&ec); err != nil { if err := json.NewDecoder(parentPipe).Decode(&ec); err != nil {
@ -495,7 +453,16 @@ func (r *Runtime) ExecSync(c *Container, command []string, timeout int64) (resp
} }
} }
logrus.Infof("Received container exit code: %v", ec.ExitCode) logrus.Infof("Received container exit code: %v, message: %s", ec.ExitCode, ec.Message)
if ec.ExitCode == -1 {
return nil, ExecSyncError{
Stdout: stdoutBuf,
Stderr: stderrBuf,
ExitCode: -1,
Err: fmt.Errorf(ec.Message),
}
}
// The actual logged output is not the same as stdoutBuf and stderrBuf, // The actual logged output is not the same as stdoutBuf and stderrBuf,
// which are used for getting error information. For the actual // which are used for getting error information. For the actual