Commit 8dab31be authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Andrei Vagin

test: static,file_locks02 -- Use fdinfo output

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 2062abf8
......@@ -5,6 +5,7 @@
#include <sys/file.h>
#include <string.h>
#include <sys/wait.h>
#include <linux/limits.h>
#include "zdtmtst.h"
......@@ -14,29 +15,35 @@ const char *test_author = "Pavel Emelyanov <xemul@parallels.com>";
char *filename;
TEST_OPTION(filename, string, "file name", 1);
static int check_file_locks(pid_t child)
static int check_file_lock(pid_t pid, pid_t child, int fd, char *expected_type,
char *expected_option)
{
FILE *fp_locks = NULL;
char buf[100], fl_flag[16], fl_type[16], fl_option[16];
pid_t pid = getpid();
int found = 0, num, fl_owner;
fp_locks = fopen("/proc/locks", "r");
if (!fp_locks)
char buf[100], fl_flag[16], fl_type[16], fl_option[16];
int found = 0, num, fl_owner;
FILE *fp_locks = NULL;
char path[PATH_MAX];
test_msg("check_file_lock: (pid %d child %d) expecting fd %d type %s option %s\n",
pid, child, fd, expected_type, expected_option);
snprintf(path, sizeof(path), "/proc/self/fdinfo/%d", fd);
fp_locks = fopen(path, "r");
if (!fp_locks) {
pr_err("Can't open %s\n", path);
return -1;
test_msg("C: %d\n", pid);
}
while (fgets(buf, sizeof(buf), fp_locks)) {
test_msg("c: %s", buf);
if (strstr(buf, "->"))
if (strncmp(buf, "lock:\t", 6) != 0)
continue;
test_msg("c: %s", buf);
num = sscanf(buf,
"%*d:%s %s %s %d %*02x:%*02x:%*d %*d %*s",
fl_flag, fl_type, fl_option, &fl_owner);
memset(fl_flag, 0, sizeof(fl_flag));
memset(fl_type, 0, sizeof(fl_type));
memset(fl_option, 0, sizeof(fl_option));
num = sscanf(buf, "%*s %*d:%s %s %s %d",
fl_flag, fl_type, fl_option, &fl_owner);
if (num < 4) {
pr_perror("Invalid lock info.");
break;
......@@ -44,25 +51,23 @@ static int check_file_locks(pid_t child)
if (fl_owner != pid && fl_owner != child)
continue;
if (!strcmp(fl_flag, "FLOCK") &&
!strcmp(fl_type, "ADVISORY") &&
!strcmp(fl_option, "WRITE"))
found++;
memset(fl_flag, 0, sizeof(fl_flag));
memset(fl_type, 0, sizeof(fl_type));
memset(fl_option, 0, sizeof(fl_option));
if (strcmp(fl_flag, "FLOCK"))
continue;
if (strcmp(fl_type, expected_type))
continue;
if (strcmp(fl_option, expected_option))
continue;
found++;
}
fclose(fp_locks);
return found == 1;
return found == 1 ? 0 : -1;
}
int main(int argc, char **argv)
{
int fd, pid;
int fd, pid, ret = 0;
test_init(argc, argv);
......@@ -83,15 +88,18 @@ int main(int argc, char **argv)
test_daemon();
test_waitsig();
if (check_file_locks(pid))
pass();
else
if (check_file_lock(getpid(), pid, fd, "ADVISORY", "WRITE")) {
fail("Flock file locks check failed");
ret |= 1;
}
if (!ret)
pass();
kill(pid, SIGTERM);
waitpid(pid, NULL, 0);
close(fd);
unlink(filename);
return 0;
return ret;
}
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