Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
ret = pipe(retval_pipe);
if (ret < 0) {
perror("pipe");
+ retval.i = ret;
goto end;
}
run_as_data.data = data;
-1, 0);
if (child_stack == MAP_FAILED) {
perror("mmap");
- ret = -ENOMEM;
+ retval.i = -ENOMEM;
goto close_pipe;
}
/*
&run_as_data);
if (pid < 0) {
perror("clone");
- ret = pid;
+ retval.i = pid;
goto unmap_stack;
}
/* receive return value */
pid = waitpid(pid, &status, 0);
if (pid < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
perror("wait");
- ret = -1;
+ retval.i = -1;
}
unmap_stack:
ret = munmap(child_stack, RUNAS_CHILD_STACK_SIZE);
if (ret < 0) {
perror("munmap");
+ retval.i = ret;
}
close_pipe:
close(retval_pipe[0]);