[LTP] [PATCH v2] Add open15 test
Cyril Hrubis
chrubis@suse.cz
Thu Jun 27 11:49:15 CEST 2024
Hi!
> --- /dev/null
> +++ b/testcases/kernel/syscalls/open/open15.c
> @@ -0,0 +1,101 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> +/*
> + * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
> + * Author: David Fenner
> + * Copilot: Jon Hendrickson
> + * Copyright (C) 2024 Andrea Cervesato andrea.cervesato@suse.com
> + */
> +
> +/*\
> + * [Description]
> + *
> + * This test verifies that open() is working correctly on symlink()
> + * generated files.
> + */
> +
> +#include "tst_test.h"
> +
> +#define BIG_STRING "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz"
> +
> +static char myfile_path[PATH_MAX];
> +
> +static void test_open_symlink(void)
> +{
> + int fd;
> + int str_size;
> + char buff[128];
> + char *symname = "my_symlink0";
> +
> + str_size = strlen(BIG_STRING);
> +
> + SAFE_SYMLINK(myfile_path, symname);
> +
> + fd = SAFE_OPEN(symname, O_CREAT | O_RDWR, 0777);
> + SAFE_WRITE(SAFE_WRITE_ALL, fd, BIG_STRING, str_size);
> + SAFE_LSEEK(fd, 0, 0);
> + SAFE_READ(1, fd, buff, str_size);
> + SAFE_CLOSE(fd);
> + TST_EXP_EXPR(!strncmp(buff, BIG_STRING, str_size),
> + "symlink generated file can be opened to write data");
> +
> + SAFE_UNLINK(symname);
> + remove(myfile_path);
Here as well, SAFE_UNLINK()
> +}
> +
> +static void test_open_compare(void)
> +{
> + int fd_file, fd_symlink;
> + int str_size;
> + char buff_file[128];
> + char buff_symlink[128];
> + char *symname = "my_symlink1";
> +
> + str_size = strlen(BIG_STRING);
> +
> + fd_file = SAFE_OPEN(myfile_path, O_CREAT | O_RDWR, 0777);
> + SAFE_WRITE(SAFE_WRITE_ALL, fd_file, BIG_STRING, str_size);
> +
> + SAFE_SYMLINK(myfile_path, symname);
> +
> + SAFE_LSEEK(fd_file, 0, 0);
> + SAFE_READ(1, fd_file, buff_file, str_size);
> +
> + fd_symlink = SAFE_OPEN(symname, O_RDWR, 0777);
> + SAFE_LSEEK(fd_symlink, 0, 0);
> + SAFE_READ(1, fd_symlink, buff_symlink, str_size);
> +
> + TST_EXP_EXPR(!strncmp(buff_file, buff_symlink, str_size),
> + "file data is the equivalent to symlink generated file data");
> +
> + SAFE_CLOSE(fd_file);
> + SAFE_CLOSE(fd_symlink);
> +
> + SAFE_UNLINK(symname);
> + remove(myfile_path);
Here as well, SAFE_UNLINK()
> +}
> +
> +static void setup(void)
> +{
> + int size;
> + char *tmpdir;
> +
> + tmpdir = tst_get_tmpdir();
> + size = strlen(tmpdir);
> +
> + myfile_path[size] = '/';
> + memcpy(myfile_path, tmpdir, size);
> + memcpy(myfile_path + size + 1, "myfile.txt", 6);
Here as well. This may overflow.
> +}
> +
> +static void run(void)
> +{
> + test_open_symlink();
> + test_open_compare();
> +}
> +
> +static struct tst_test test = {
> + .setup = setup,
> + .test_all = run,
> + .needs_tmpdir = 1,
> +};
> --
> 2.35.3
>
>
> --
> Mailing list info: https://lists.linux.it/listinfo/ltp
--
Cyril Hrubis
chrubis@suse.cz
More information about the ltp
mailing list