Commit 8835e697 authored by Pavel Begunkov's avatar Pavel Begunkov Committed by Andrei Vagin

zdtm: Test inherited file leases

-- check childs' errors in file_leases03
-- test c/r of lease transfered to child process
Signed-off-by: 's avatarPavel Begunkov <asml.silence@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 6c86fcb5
...@@ -253,6 +253,7 @@ TST_FILE = \ ...@@ -253,6 +253,7 @@ TST_FILE = \
file_lease01 \ file_lease01 \
file_lease02 \ file_lease02 \
file_lease03 \ file_lease03 \
file_lease04 \
file_locks00 \ file_locks00 \
file_locks01 \ file_locks01 \
file_locks02 \ file_locks02 \
......
#include <fcntl.h> #include <fcntl.h>
#include <stdio.h> #include <stdio.h>
#include <signal.h> #include <signal.h>
#include <limits.h>
#include <sys/wait.h> #include <sys/wait.h>
#include "zdtmtst.h" #include "zdtmtst.h"
...@@ -82,9 +81,9 @@ err: ...@@ -82,9 +81,9 @@ err:
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
int fd = -1, fd_dup = -1; int fd = -1, fd_dup = -1;
int ret = -1; int status, ret = -1;
struct sigaction act = {}; struct sigaction act = {};
int pid; pid_t pid;
test_init(argc, argv); test_init(argc, argv);
...@@ -125,8 +124,10 @@ int main(int argc, char **argv) ...@@ -125,8 +124,10 @@ int main(int argc, char **argv)
test_waitsig(); test_waitsig();
kill(pid, SIGTERM); kill(pid, SIGTERM);
waitpid(pid, NULL, 0); ret = waitpid(pid, &status, 0);
if (ret < 0 || !WIFEXITED(status) || WEXITSTATUS(status))
fail();
if (sigaction_error) if (sigaction_error)
fail("Ghost signal\n"); fail("Ghost signal\n");
else if (check_lease_type(fd, F_UNLCK)) else if (check_lease_type(fd, F_UNLCK))
......
#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@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;
}
file_lease00.desc
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment