2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00
Files
criu/test/zdtm/static/file_locks02.c
Pengda Yang 810f52e443 limit the field width of 'scanf'
Fixes: #2121

Signed-off-by: Pengda Yang <daz-3ux@proton.me>
2024-10-26 22:17:07 -07:00

104 lines
2.1 KiB
C

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/file.h>
#include <string.h>
#include <sys/wait.h>
#include <linux/limits.h>
#include "zdtmtst.h"
const char *test_doc = "Check that 'shared' flocks work";
const char *test_author = "Pavel Emelyanov <xemul@parallels.com>";
char *filename;
TEST_OPTION(filename, string, "file name", 1);
static int check_file_lock(pid_t pid, pid_t child, int fd, char *expected_type, char *expected_option)
{
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;
}
while (fgets(buf, sizeof(buf), fp_locks)) {
if (strncmp(buf, "lock:\t", 6) != 0)
continue;
test_msg("c: %s", buf);
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:%15s %15s %15s %d", fl_flag, fl_type, fl_option, &fl_owner);
if (num < 4) {
pr_perror("Invalid lock info.");
break;
}
if (fl_owner != pid && fl_owner != child)
continue;
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 ? 0 : -1;
}
int main(int argc, char **argv)
{
int fd, pid, ret = 0;
test_init(argc, argv);
fd = open(filename, O_CREAT | O_RDWR, 0600);
if (fd < 0) {
pr_perror("No file");
return -1;
}
flock(fd, LOCK_EX);
pid = fork();
if (pid == 0) {
test_waitsig();
exit(0);
}
test_daemon();
test_waitsig();
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 ret;
}