@@ -70,6 +70,7 @@ chmod03 chmod03
chmod05 chmod05
chmod06 chmod06
chmod07 chmod07
+chmod09 chmod09
chown01 chown01
chown01_16 chown01_16
@@ -3,3 +3,4 @@
/chmod05
/chmod06
/chmod07
+/chmod09
new file mode 100644
@@ -0,0 +1,67 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (c) 2024 Wei Gao <wegao@suse.com>
+ */
+
+/*\
+ * [Description]
+ *
+ * Test for kernel commit
+ * 5d1f903f75a8 ("attr: block mode changes of symlinks")
+ */
+
+#include "lapi/fcntl.h"
+#include "tst_test.h"
+
+#define MODE 0644
+#define TESTFILE "testfile"
+#define TESTFILE_SYMLINK "testfile_symlink"
+
+static void run(void)
+{
+ struct stat stat_file, stat_sym;
+ int mode = 0;
+ char fd_path[100];
+
+ int fd = SAFE_OPEN(TESTFILE_SYMLINK, O_PATH | O_NOFOLLOW);
+
+ sprintf(fd_path, "/proc/self/fd/%d", fd);
+
+ TST_EXP_FAIL(chmod(fd_path, mode), ENOTSUP, "chmod(%s, %04o)",
+ TESTFILE_SYMLINK, mode);
+
+ SAFE_STAT(TESTFILE, &stat_file);
+ SAFE_LSTAT(TESTFILE_SYMLINK, &stat_sym);
+
+ stat_file.st_mode &= ~S_IFREG;
+ stat_sym.st_mode &= ~S_IFLNK;
+
+ TST_EXP_EXPR(stat_file.st_mode != (unsigned int)mode,
+ "stat(%s) mode=%04o", TESTFILE, stat_file.st_mode);
+
+ TST_EXP_EXPR(stat_sym.st_mode != (unsigned int)mode,
+ "stat(%s) mode=%04o", TESTFILE, stat_sym.st_mode);
+
+ SAFE_CLOSE(fd);
+}
+
+static void setup(void)
+{
+ SAFE_TOUCH(TESTFILE, MODE, NULL);
+ SAFE_SYMLINK(TESTFILE, TESTFILE_SYMLINK);
+}
+
+static void cleanup(void)
+{
+ remove(TESTFILE);
+ remove(TESTFILE_SYMLINK);
+}
+
+static struct tst_test test = {
+ .setup = setup,
+ .cleanup = cleanup,
+ .test_all = run,
+ .min_kver = "6.6",
+ .mntpoint = "mntpoint",
+ .all_filesystems = 1
+};
Signed-off-by: Wei Gao <wegao@suse.com> --- runtest/syscalls | 1 + testcases/kernel/syscalls/chmod/.gitignore | 1 + testcases/kernel/syscalls/chmod/chmod09.c | 67 ++++++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 testcases/kernel/syscalls/chmod/chmod09.c