From: Cyril Hrubis <chrubis@suse.cz>
To: Andrea Cervesato <andrea.cervesato@suse.de>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v2] Add chmod08 test
Date: Thu, 27 Jun 2024 11:33:05 +0200 [thread overview]
Message-ID: <Zn0x0RN9SWJaDs84@yuki> (raw)
In-Reply-To: <20240220131319.11761-1-andrea.cervesato@suse.de>
Hi!
> Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
> ---
> testcases/kernel/syscalls/chmod/chmod08.c | 61 +++++++++++++++++++++++
> 1 file changed, 61 insertions(+)
> create mode 100644 testcases/kernel/syscalls/chmod/chmod08.c
>
> diff --git a/testcases/kernel/syscalls/chmod/chmod08.c b/testcases/kernel/syscalls/chmod/chmod08.c
> new file mode 100644
> index 000000000..f9ca4e45a
> --- /dev/null
> +++ b/testcases/kernel/syscalls/chmod/chmod08.c
> @@ -0,0 +1,61 @@
> +// 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 chmod() is working correctly on symlink()
> + * generated files.
> + */
> +
> +#include "tst_test.h"
> +
> +#define PERMS 01777
> +#define TESTFILE "myobject"
> +
> +static char testfile[PATH_MAX];
> +
> +static void run(void)
> +{
> + char *symname = "my_symlink0";
> + struct stat oldsym_stat;
> + struct stat newsym_stat;
> +
> + SAFE_TOUCH(testfile, 0644, NULL);
> + SAFE_SYMLINK(testfile, symname);
> + SAFE_STAT(symname, &oldsym_stat);
> +
> + TST_EXP_PASS(chmod(symname, PERMS));
> + SAFE_STAT(symname, &newsym_stat);
> +
> + TST_EXP_EQ_LI(newsym_stat.st_mode & PERMS, PERMS);
> + TST_EXP_EXPR(oldsym_stat.st_mode != newsym_stat.st_mode,
> + "file mode has changed");
> +
> + SAFE_UNLINK(symname);
> + remove(testfile);
This should be SAFE_UNLINK() as well.
> +}
> +
> +static void setup(void)
> +{
> + int tmplen;
> + char *tmpdir;
> +
> + tmpdir = tst_get_tmpdir();
> + tmplen = strlen(tmpdir);
> +
> + testfile[tmplen] = '/';
> + memcpy(testfile, tmpdir, tmplen);
> + memcpy(testfile + tmplen + 1, TESTFILE, strlen(TESTFILE));
This can easily overflow. If you want to use absolute path you should
allocate the buffer based on the tmpdir lenght...
> +}
> +
> +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
--
Mailing list info: https://lists.linux.it/listinfo/ltp
prev parent reply other threads:[~2024-06-27 9:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-20 13:13 [LTP] [PATCH v2] Add chmod08 test Andrea Cervesato
2024-06-27 9:33 ` Cyril Hrubis [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zn0x0RN9SWJaDs84@yuki \
--to=chrubis@suse.cz \
--cc=andrea.cervesato@suse.de \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox