2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 22:05:36 +00:00
Files
criu/test/zdtm/static/remap_dead_pid.c
Adrian Reber 93dd984ca0 Run 'make indent' on all C files
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Adrian Reber <areber@redhat.com>
2021-09-03 10:31:00 -07:00

79 lines
1.4 KiB
C

#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "zdtmtst.h"
#ifndef CLONE_NEWNS
#define CLONE_NEWNS 0x00020000
#endif
#ifdef REMAP_PID_ROOT
const char *proc_path = "/proc/%d";
#else
const char *proc_path = "/proc/%d/mountinfo";
#endif
const char *test_doc = "Check that dead pid's /proc entries are remapped correctly";
const char *test_author = "Tycho Andersen <tycho.andersen@canonical.com>";
int main(int argc, char **argv)
{
pid_t pid;
test_init(argc, argv);
pid = fork();
if (pid < 0) {
fail("fork() failed");
return -1;
}
if (pid == 0) {
/* Child process just sleeps until it is killed. All we need
* here is a process to open the mountinfo of. */
while (1)
sleep(10);
} else {
int fd, ret;
char path[PATH_MAX];
pid_t result;
test_msg("child is %d\n", pid);
sprintf(path, proc_path, pid);
fd = open(path, O_RDONLY);
if (fd < 0) {
fail("failed to open fd");
return -1;
}
/* no matter what, we should kill the child */
kill(pid, SIGKILL);
result = waitpid(pid, NULL, 0);
if (result < 0) {
fail("failed waitpid()");
return -1;
}
test_daemon();
test_waitsig();
ret = fcntl(fd, F_GETFD);
close(fd);
if (ret) {
fail("bad fd after restore");
return -1;
}
}
pass();
return 0;
}