[CRIU] [PATCH v2 2/2] zdtm: Test inherited file leases

Pavel Begunkov (Silence) asml.silence at gmail.com
Sun Oct 22 23:46:26 MSK 2017


From: Pavel Begunkov <asml.silence at gmail.com>

-- check child' errors in file_leases03
-- test c/r of lease transfered to child

Signed-off-by: Pavel Begunkov <asml.silence at gmail.com>
---
 test/zdtm/static/Makefile          |   1 +
 test/zdtm/static/file_lease03.c    |   9 +--
 test/zdtm/static/file_lease04.c    | 132 +++++++++++++++++++++++++++++++++++++
 test/zdtm/static/file_lease04.desc |   1 +
 4 files changed, 139 insertions(+), 4 deletions(-)
 create mode 100644 test/zdtm/static/file_lease04.c
 create mode 120000 test/zdtm/static/file_lease04.desc

diff --git a/test/zdtm/static/Makefile b/test/zdtm/static/Makefile
index e6ab6ea2..54a8be92 100644
--- a/test/zdtm/static/Makefile
+++ b/test/zdtm/static/Makefile
@@ -255,6 +255,7 @@ TST_FILE	=				\
 		file_lease01			\
 		file_lease02			\
 		file_lease03			\
+		file_lease04			\
 		file_locks00			\
 		file_locks01			\
 		file_locks02			\
diff --git a/test/zdtm/static/file_lease03.c b/test/zdtm/static/file_lease03.c
index fcdcce13..4cde2b65 100644
--- a/test/zdtm/static/file_lease03.c
+++ b/test/zdtm/static/file_lease03.c
@@ -1,7 +1,6 @@
 #include <fcntl.h>
 #include <stdio.h>
 #include <signal.h>
-#include <limits.h>
 #include <sys/wait.h>
 
 #include "zdtmtst.h"
@@ -82,9 +81,9 @@ err:
 int main(int argc, char **argv)
 {
 	int fd = -1, fd_dup = -1;
-	int ret = -1;
+	int status, ret = -1;
 	struct sigaction act = {};
-	int pid;
+	pid_t pid;
 
 	test_init(argc, argv);
 
@@ -125,8 +124,10 @@ int main(int argc, char **argv)
 	test_waitsig();
 
 	kill(pid, SIGTERM);
-	waitpid(pid, NULL, 0);
+	ret = waitpid(pid, &status, 0);
 
+	if (ret < 0 || !WIFEXITED(status) || WEXITSTATUS(status))
+		fail();
 	if (sigaction_error)
 		fail("Ghost signal\n");
 	else if (check_lease_type(fd, F_UNLCK))
diff --git a/test/zdtm/static/file_lease04.c b/test/zdtm/static/file_lease04.c
new file mode 100644
index 00000000..c924f6c5
--- /dev/null
+++ b/test/zdtm/static/file_lease04.c
@@ -0,0 +1,132 @@
+#include <fcntl.h>
+#include <stdio.h>
+#include <signal.h>
+#include <sys/wait.h>
+
+#include "zdtmtst.h"
+
+#define BREAK_SIGNUM SIGIO
+
+const char *test_doc = "Check leases with no fds in owner process";
+const char *test_author = "Pavel Begunkov <asml.silence at gmail.com>";
+
+char *filename;
+TEST_OPTION(filename, string, "file name", 1);
+
+int expected_fd;
+int sigaction_error;
+
+static void break_sigaction(int signo, siginfo_t *info, void *ctx)
+{
+	if (signo != BREAK_SIGNUM) {
+		pr_err("Unexpected signal(%i)\n", signo);
+		sigaction_error = -1;
+	} else if (info->si_fd != expected_fd) {
+		pr_err("Unexpected fd(%i)\n", info->si_fd);
+		sigaction_error = -1;
+	}
+	expected_fd = -1;
+}
+
+static int check_lease_type(int fd, int expected_type)
+{
+	int lease_type = fcntl(fd, F_GETLEASE);
+
+	if (lease_type != expected_type) {
+		if (lease_type < 0)
+			pr_perror("Can't acquire lease type\n");
+		else
+			pr_err("Mismatched lease type: %i\n", lease_type);
+		return -1;
+	}
+	return 0;
+}
+
+static int prepare_file(char *file, int file_type, int break_type)
+{
+	int fd, fd_break;
+	int lease_type = (file_type == O_RDONLY) ? F_RDLCK : F_WRLCK;
+
+	fd = open(file, file_type | O_CREAT, 0666);
+	if (fd < 0) {
+		pr_perror("Can't open file (type %i)\n", file_type);
+		return fd;
+	}
+	if (fcntl(fd, F_SETLEASE, lease_type) < 0) {
+		pr_perror("Can't set exclusive lease\n");
+		goto err;
+	}
+	if (fcntl(fd, F_SETSIG, BREAK_SIGNUM) < 0) {
+		pr_perror("Can't set signum for file i/o\n");
+		goto err;
+	}
+
+	expected_fd = fd;
+	fd_break = open(file, break_type | O_NONBLOCK);
+
+	if (fd_break >= 0) {
+		close(fd_break);
+		pr_err("Conflicting lease not found\n");
+		goto err;
+	} else if (errno != EWOULDBLOCK) {
+		pr_perror("Can't break lease\n");
+		goto err;
+	}
+	return fd;
+err:
+	close(fd);
+	return -1;
+}
+
+int main(int argc, char **argv)
+{
+	int fd = -1;
+	int status, ret = -1;
+	struct sigaction act = {};
+	pid_t pid;
+
+	test_init(argc, argv);
+
+	act.sa_sigaction = break_sigaction;
+	act.sa_flags = SA_SIGINFO;
+	if (sigemptyset(&act.sa_mask) ||
+		sigaddset(&act.sa_mask, BREAK_SIGNUM) ||
+		sigaction(BREAK_SIGNUM, &act, NULL)) {
+		pr_perror("Can't set signal action\n");
+		return -1;
+	}
+
+	sigaction_error = 0;
+	fd = prepare_file(filename, O_RDWR, O_WRONLY);
+	if (fd < 0 || sigaction_error)
+		goto done;
+
+	pid = fork();
+	if (pid < 0)
+		return 1;
+	if (pid == 0) {
+		test_waitsig();
+		if (check_lease_type(fd, F_UNLCK))
+			return 1;
+		close(fd);
+		return 0;
+	}
+	close(fd);
+
+	test_daemon();
+	test_waitsig();
+
+	kill(pid, SIGTERM);
+	ret = waitpid(pid, &status, 0);
+
+	if (ret < 0 || !WIFEXITED(status) || WEXITSTATUS(status))
+		fail();
+	else if (sigaction_error)
+		fail("Ghost signal\n");
+	else
+		pass();
+done:
+	unlink(filename);
+	return ret;
+}
+
diff --git a/test/zdtm/static/file_lease04.desc b/test/zdtm/static/file_lease04.desc
new file mode 120000
index 00000000..fba66d32
--- /dev/null
+++ b/test/zdtm/static/file_lease04.desc
@@ -0,0 +1 @@
+file_lease00.desc
\ No newline at end of file
-- 
2.14.1.473.g3ec7d702a8



More information about the CRIU mailing list