* [LTP] [PATCH 1/2] getxattr04,05: Add [Description] tag
@ 2024-01-21 16:11 Shiyang Ruan
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
2024-03-05 21:24 ` [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes Avinesh Kumar
0 siblings, 2 replies; 10+ messages in thread
From: Shiyang Ruan @ 2024-01-21 16:11 UTC (permalink / raw)
To: ltp
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
testcases/kernel/syscalls/getxattr/getxattr04.c | 4 +++-
testcases/kernel/syscalls/getxattr/getxattr05.c | 6 ++++--
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/testcases/kernel/syscalls/getxattr/getxattr04.c b/testcases/kernel/syscalls/getxattr/getxattr04.c
index e64f2a1f1..b1106ee20 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr04.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr04.c
@@ -4,7 +4,9 @@
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
*/
-/*
+/*\
+ * [Description]
+ *
* This is a regression test for the race between getting an existing
* xattr and setting/removing a large xattr. This bug leads to that
* getxattr() fails to get an existing xattr and returns ENOATTR in xfs
diff --git a/testcases/kernel/syscalls/getxattr/getxattr05.c b/testcases/kernel/syscalls/getxattr/getxattr05.c
index 8d1752fd0..b144a87de 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr05.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr05.c
@@ -4,8 +4,10 @@
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
*/
-/*
- * Description:
+/*\
+ * [Description]
+ *
+ * This test verifies that:
* 1) Witout a user namespace, getxattr(2) should get same data when
* acquiring the value of system.posix_acl_access twice.
* 2) With/Without mapped root UID in a user namespaces, getxattr(2) should
--
2.34.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [LTP] [PATCH 2/2] getxattr01: Convert to new API
2024-01-21 16:11 [LTP] [PATCH 1/2] getxattr04,05: Add [Description] tag Shiyang Ruan
@ 2024-01-21 16:11 ` Shiyang Ruan
2024-03-05 20:52 ` Avinesh Kumar
` (2 more replies)
2024-03-05 21:24 ` [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes Avinesh Kumar
1 sibling, 3 replies; 10+ messages in thread
From: Shiyang Ruan @ 2024-01-21 16:11 UTC (permalink / raw)
To: ltp
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
.../kernel/syscalls/getxattr/getxattr01.c | 188 ++++++------------
1 file changed, 61 insertions(+), 127 deletions(-)
diff --git a/testcases/kernel/syscalls/getxattr/getxattr01.c b/testcases/kernel/syscalls/getxattr/getxattr01.c
index cec802a33..e11f00d46 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr01.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr01.c
@@ -1,28 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2011 Red Hat, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it would be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * Further, this software is distributed without any warranty that it
- * is free of the rightful claim of any third person regarding
- * infringement or the like. Any license provided herein, whether
- * implied or otherwise, applies only to this software file. Patent
- * licenses, if any, provided herein do not apply to combinations of
- * this program with other software, or any other product whatsoever.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
+ * Copyright (c) Linux Test Project, 2012-2024
*/
-/*
+/*\
+ * [Description]
+ *
* Basic tests for getxattr(2) and make sure getxattr(2) handles error
* conditions correctly.
*
@@ -35,22 +19,11 @@
* 4. Verify the attribute got by getxattr(2) is same as the value we set
*/
-#include "config.h"
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
+#include "tst_test.h"
#ifdef HAVE_SYS_XATTR_H
# include <sys/xattr.h>
#endif
-#include "test.h"
-#include "safe_macros.h"
-
-char *TCID = "getxattr01";
#ifdef HAVE_SYS_XATTR_H
#define XATTR_TEST_KEY "user.testkey"
@@ -58,85 +31,51 @@ char *TCID = "getxattr01";
#define XATTR_TEST_VALUE_SIZE 20
#define BUFFSIZE 64
-static void setup(void);
-static void cleanup(void);
-
-char filename[BUFSIZ];
+static char filename[BUFSIZ];
-struct test_case {
+static struct tcase {
char *fname;
char *key;
char *value;
size_t size;
int exp_err;
-};
-struct test_case tc[] = {
- { /* case 00, get non-existing attribute */
- .fname = filename,
- .key = "user.nosuchkey",
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = ENODATA,
- },
- { /* case 01, small value buffer */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = 1,
- .exp_err = ERANGE,
- },
- { /* case 02, get existing attribute */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = 0,
- },
+} tcases[] = {
+ /* case 00, get non-existing attribute */
+ { filename, "user.nosuchkey", NULL, BUFFSIZE - 1, ENODATA },
+ /* case 01, small value buffer */
+ { filename, XATTR_TEST_KEY, NULL, 1, ERANGE },
+ /* case 02, get existing attribute */
+ { filename, XATTR_TEST_KEY, NULL, BUFFSIZE - 1, 0 },
};
-int TST_TOTAL = sizeof(tc) / sizeof(tc[0]) + 1;
-
-int main(int argc, char *argv[])
+static void run(unsigned int n)
{
- int lc;
- int i;
-
- tst_parse_opts(argc, argv, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
-
- for (i = 0; i < (int)ARRAY_SIZE(tc); i++) {
- TEST(getxattr(tc[i].fname, tc[i].key, tc[i].value,
- tc[i].size));
-
- if (TEST_ERRNO == tc[i].exp_err) {
- tst_resm(TPASS | TTERRNO, "expected behavior");
- } else {
- tst_resm(TFAIL | TTERRNO, "unexpected behavior"
- "- expected errno %d - Got",
- tc[i].exp_err);
- }
- }
-
- if (TEST_RETURN != XATTR_TEST_VALUE_SIZE) {
- tst_resm(TFAIL,
- "getxattr() returned wrong size %ld expected %d",
- TEST_RETURN, XATTR_TEST_VALUE_SIZE);
- continue;
- }
-
- if (memcmp(tc[i - 1].value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
- tst_resm(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
- XATTR_TEST_VALUE, tc[i - 1].value);
- else
- tst_resm(TPASS, "Got the right value");
+ struct tcase *tc = &tcases[n];
+
+ TEST(getxattr(tc->fname, tc->key, tc->value, tc->size));
+ if (TST_ERR == tc->exp_err) {
+ tst_res(TPASS | TTERRNO, "expected behavior");
+ } else {
+ tst_res(TFAIL | TTERRNO, "unexpected behavior"
+ "- expected errno %d - Got",
+ tc->exp_err);
}
- cleanup();
- tst_exit();
+ /* The last check:
+ * Verify the attribute got by getxattr(2) is same as the value we set
+ */
+ if (n == ARRAY_SIZE(tcases) - 1) {
+ if (TST_RET != XATTR_TEST_VALUE_SIZE)
+ tst_res(TFAIL,
+ "getxattr() returned wrong size %ld expected %d",
+ TST_RET, XATTR_TEST_VALUE_SIZE);
+
+ if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
+ tst_res(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
+ XATTR_TEST_VALUE, tc->value);
+ else
+ tst_res(TPASS, "Got the right value");
+ }
}
static void setup(void)
@@ -144,41 +83,36 @@ static void setup(void)
int fd;
unsigned int i;
- tst_require_root();
-
- tst_tmpdir();
-
/* Create test file and setup initial xattr */
snprintf(filename, BUFSIZ, "getxattr01testfile");
- fd = SAFE_CREAT(cleanup, filename, 0644);
+ fd = SAFE_CREAT(filename, 0644);
close(fd);
- if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
- strlen(XATTR_TEST_VALUE), XATTR_CREATE) == -1) {
- if (errno == ENOTSUP) {
- tst_brkm(TCONF, cleanup, "No xattr support in fs or "
- "mount without user_xattr option");
- }
- }
- /* Prepare test cases */
- for (i = 0; i < ARRAY_SIZE(tc); i++) {
- tc[i].value = malloc(BUFFSIZE);
- if (tc[i].value == NULL) {
- tst_brkm(TBROK | TERRNO, cleanup,
- "Cannot allocate memory");
- }
- }
+ SAFE_SETXATTR(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
+ strlen(XATTR_TEST_VALUE), XATTR_CREATE);
- TEST_PAUSE;
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ tcases[i].value = SAFE_MALLOC(BUFFSIZE);
}
static void cleanup(void)
{
- tst_rmdir();
+ unsigned int i;
+
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ if (tcases[i].value != NULL)
+ free(tcases[i].value);
}
+
+static struct tst_test test = {
+ .needs_tmpdir = 1,
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .tcnt = ARRAY_SIZE(tcases),
+ .test = run,
+};
+
#else /* HAVE_SYS_XATTR_H */
-int main(int argc, char *argv[])
-{
- tst_brkm(TCONF, NULL, "<sys/xattr.h> does not exist.");
-}
+ TST_TEST_TCONF("<sys/xattr.h> does not exist.");
#endif
--
2.34.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [LTP] [PATCH 2/2] getxattr01: Convert to new API
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
@ 2024-03-05 20:52 ` Avinesh Kumar
2024-03-14 10:13 ` [LTP] [PATCH v2] " Shiyang Ruan via ltp
2024-03-21 10:13 ` [LTP] [PATCH v3] " Shiyang Ruan via ltp
2 siblings, 0 replies; 10+ messages in thread
From: Avinesh Kumar @ 2024-03-05 20:52 UTC (permalink / raw)
To: Shiyang Ruan; +Cc: ltp
Hi Shiyang,
some comments below.
On Sunday, January 21, 2024 5:11:59 PM CET Shiyang Ruan wrote:
> Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
> ---
> .../kernel/syscalls/getxattr/getxattr01.c | 188 ++++++------------
> 1 file changed, 61 insertions(+), 127 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/getxattr/getxattr01.c
> b/testcases/kernel/syscalls/getxattr/getxattr01.c index
> cec802a33..e11f00d46 100644
> --- a/testcases/kernel/syscalls/getxattr/getxattr01.c
> +++ b/testcases/kernel/syscalls/getxattr/getxattr01.c
> @@ -1,28 +1,12 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> /*
> * Copyright (C) 2011 Red Hat, Inc.
> - *
> - * This program is free software; you can redistribute it and/or
> - * modify it under the terms of version 2 of the GNU General Public
> - * License as published by the Free Software Foundation.
> - *
> - * This program is distributed in the hope that it would be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
> - *
> - * Further, this software is distributed without any warranty that it
> - * is free of the rightful claim of any third person regarding
> - * infringement or the like. Any license provided herein, whether
> - * implied or otherwise, applies only to this software file. Patent
> - * licenses, if any, provided herein do not apply to combinations of
> - * this program with other software, or any other product whatsoever.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program; if not, write the Free Software
> - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
> - * 02110-1301, USA.
> + * Copyright (c) Linux Test Project, 2012-2024
> */
>
> -/*
> +/*\
> + * [Description]
> + *
> * Basic tests for getxattr(2) and make sure getxattr(2) handles error
> * conditions correctly.
> *
> @@ -35,22 +19,11 @@
> * 4. Verify the attribute got by getxattr(2) is same as the value we set
> */
>
> -#include "config.h"
> -#include <sys/types.h>
> -#include <sys/stat.h>
> -#include <errno.h>
> -#include <fcntl.h>
> -#include <unistd.h>
> -#include <stdio.h>
> #include <stdlib.h>
> -#include <string.h>
> +#include "tst_test.h"
> #ifdef HAVE_SYS_XATTR_H
> # include <sys/xattr.h>
> #endif
> -#include "test.h"
> -#include "safe_macros.h"
> -
> -char *TCID = "getxattr01";
>
> #ifdef HAVE_SYS_XATTR_H
> #define XATTR_TEST_KEY "user.testkey"
> @@ -58,85 +31,51 @@ char *TCID = "getxattr01";
> #define XATTR_TEST_VALUE_SIZE 20
> #define BUFFSIZE 64
>
> -static void setup(void);
> -static void cleanup(void);
> -
> -char filename[BUFSIZ];
> +static char filename[BUFSIZ];
>
> -struct test_case {
> +static struct tcase {
> char *fname;
> char *key;
> char *value;
> size_t size;
> int exp_err;
> -};
> -struct test_case tc[] = {
> - { /* case 00, get non-existing attribute */
> - .fname = filename,
> - .key = "user.nosuchkey",
> - .value = NULL,
> - .size = BUFFSIZE - 1,
> - .exp_err = ENODATA,
> - },
> - { /* case 01, small value buffer */
> - .fname = filename,
> - .key = XATTR_TEST_KEY,
> - .value = NULL,
> - .size = 1,
> - .exp_err = ERANGE,
> - },
> - { /* case 02, get existing attribute */
> - .fname = filename,
> - .key = XATTR_TEST_KEY,
> - .value = NULL,
> - .size = BUFFSIZE - 1,
> - .exp_err = 0,
> - },
> +} tcases[] = {
> + /* case 00, get non-existing attribute */
Can we please remove these comments, as we are describing the testcases
in the description already.
> + { filename, "user.nosuchkey", NULL, BUFFSIZE - 1, ENODATA },
> + /* case 01, small value buffer */
> + { filename, XATTR_TEST_KEY, NULL, 1, ERANGE },
> + /* case 02, get existing attribute */
> + { filename, XATTR_TEST_KEY, NULL, BUFFSIZE - 1, 0 },
> };
>
> -int TST_TOTAL = sizeof(tc) / sizeof(tc[0]) + 1;
> -
> -int main(int argc, char *argv[])
> +static void run(unsigned int n)
> {
> - int lc;
> - int i;
> -
> - tst_parse_opts(argc, argv, NULL, NULL);
> -
> - setup();
> -
> - for (lc = 0; TEST_LOOPING(lc); lc++) {
> - tst_count = 0;
> -
> - for (i = 0; i < (int)ARRAY_SIZE(tc); i++) {
> - TEST(getxattr(tc[i].fname, tc[i].key, tc[i].value,
> - tc[i].size));
> -
> - if (TEST_ERRNO == tc[i].exp_err) {
> - tst_resm(TPASS | TTERRNO, "expected behavior");
> - } else {
> - tst_resm(TFAIL | TTERRNO, "unexpected behavior"
> - "- expected errno %d - Got",
> - tc[i].exp_err);
> - }
> - }
> -
> - if (TEST_RETURN != XATTR_TEST_VALUE_SIZE) {
> - tst_resm(TFAIL,
> - "getxattr() returned wrong size %ld expected %d",
> - TEST_RETURN, XATTR_TEST_VALUE_SIZE);
> - continue;
> - }
> -
> - if (memcmp(tc[i - 1].value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
> - tst_resm(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
> - XATTR_TEST_VALUE, tc[i - 1].value);
> - else
> - tst_resm(TPASS, "Got the right value");
> + struct tcase *tc = &tcases[n];
> +
> + TEST(getxattr(tc->fname, tc->key, tc->value, tc->size));
> + if (TST_ERR == tc->exp_err) {
> + tst_res(TPASS | TTERRNO, "expected behavior");
> + } else {
> + tst_res(TFAIL | TTERRNO, "unexpected behavior"
> + "- expected errno %d - Got",
> + tc->exp_err);
> }
>
> - cleanup();
> - tst_exit();
> + /* The last check:
> + * Verify the attribute got by getxattr(2) is same as the value we set
> + */
> + if (n == ARRAY_SIZE(tcases) - 1) {
Though ideally we separate the errno checking testcases and syscall success
tests in different test files.
But here we can simplify this using TST_EXP_* macros, maybe something like -
if (tc->exp_err == 0) {
TST_EXP_VAL(getxattr(tc->fname, tc->key, tc->value, tc->size), XATTR_TEST_VALUE_SIZE);
if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
tst_res(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
XATTR_TEST_VALUE, tc->value);
else
tst_res(TPASS, "getxattr() retrieved expected value");
} else {
TST_EXP_FAIL(getxattr(tc->fname, tc->key, tc->value, tc->size), tc->exp_err);
}
> + if (TST_RET != XATTR_TEST_VALUE_SIZE)
> + tst_res(TFAIL,
> + "getxattr() returned wrong size %ld expected %d",
> + TST_RET, XATTR_TEST_VALUE_SIZE);
> +
> + if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
> + tst_res(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
> + XATTR_TEST_VALUE, tc->value);
> + else
> + tst_res(TPASS, "Got the right value");
> + }
> }
>
> static void setup(void)
> @@ -144,41 +83,36 @@ static void setup(void)
> int fd;
> unsigned int i;
>
> - tst_require_root();
> -
> - tst_tmpdir();
> -
> /* Create test file and setup initial xattr */
> snprintf(filename, BUFSIZ, "getxattr01testfile");
> - fd = SAFE_CREAT(cleanup, filename, 0644);
> + fd = SAFE_CREAT(filename, 0644);
> close(fd);
we can use SAFE_CLOSE()
> - if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
> - strlen(XATTR_TEST_VALUE), XATTR_CREATE) == -1) {
> - if (errno == ENOTSUP) {
> - tst_brkm(TCONF, cleanup, "No xattr support in fs or "
> - "mount without user_xattr option");
> - }
> - }
>
> - /* Prepare test cases */
> - for (i = 0; i < ARRAY_SIZE(tc); i++) {
> - tc[i].value = malloc(BUFFSIZE);
> - if (tc[i].value == NULL) {
> - tst_brkm(TBROK | TERRNO, cleanup,
> - "Cannot allocate memory");
> - }
> - }
> + SAFE_SETXATTR(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
> + strlen(XATTR_TEST_VALUE), XATTR_CREATE);
>
> - TEST_PAUSE;
> + for (i = 0; i < ARRAY_SIZE(tcases); i++)
> + tcases[i].value = SAFE_MALLOC(BUFFSIZE);
> }
>
> static void cleanup(void)
> {
> - tst_rmdir();
> + unsigned int i;
> +
> + for (i = 0; i < ARRAY_SIZE(tcases); i++)
> + if (tcases[i].value != NULL)
> + free(tcases[i].value);
> }
> +
> +static struct tst_test test = {
> + .needs_tmpdir = 1,
> + .needs_root = 1,
> + .setup = setup,
> + .cleanup = cleanup,
> + .tcnt = ARRAY_SIZE(tcases),
> + .test = run,
> +};
> +
> #else /* HAVE_SYS_XATTR_H */
> -int main(int argc, char *argv[])
> -{
> - tst_brkm(TCONF, NULL, "<sys/xattr.h> does not exist.");
> -}
> + TST_TEST_TCONF("<sys/xattr.h> does not exist.");
> #endif
Regards,
Avinesh
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 10+ messages in thread
* [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes
2024-01-21 16:11 [LTP] [PATCH 1/2] getxattr04,05: Add [Description] tag Shiyang Ruan
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
@ 2024-03-05 21:24 ` Avinesh Kumar
2024-03-06 21:48 ` Petr Vorel
1 sibling, 1 reply; 10+ messages in thread
From: Avinesh Kumar @ 2024-03-05 21:24 UTC (permalink / raw)
To: ltp
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
testcases/kernel/syscalls/getxattr/getxattr04.c | 6 ++++--
testcases/kernel/syscalls/getxattr/getxattr05.c | 14 ++++++++------
2 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/testcases/kernel/syscalls/getxattr/getxattr04.c b/testcases/kernel/syscalls/getxattr/getxattr04.c
index e64f2a1f1..451e04d90 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr04.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr04.c
@@ -4,13 +4,15 @@
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
*/
-/*
+/*\
+ * [Description]
+ *
* This is a regression test for the race between getting an existing
* xattr and setting/removing a large xattr. This bug leads to that
* getxattr() fails to get an existing xattr and returns ENOATTR in xfs
* filesystem.
*
- * Thie bug has been fixed in:
+ * This bug has been fixed in:
*
* commit 5a93790d4e2df73e30c965ec6e49be82fc3ccfce
* Author: Brian Foster <bfoster@redhat.com>
diff --git a/testcases/kernel/syscalls/getxattr/getxattr05.c b/testcases/kernel/syscalls/getxattr/getxattr05.c
index f12e2f813..069e2b3f9 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr05.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr05.c
@@ -4,12 +4,14 @@
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
*/
-/*
- * Description:
- * 1) Witout a user namespace, getxattr(2) should get same data when
- * acquiring the value of system.posix_acl_access twice.
- * 2) With/Without mapped root UID in a user namespaces, getxattr(2) should
- * get same data when acquiring the value of system.posix_acl_access twice.
+/*\
+ * [Description]
+ *
+ * This test verifies that:
+ * - Without a user namespace, getxattr(2) should get same data when
+ * acquiring the value of system.posix_acl_access twice.
+ * - With/Without mapped root UID in a user namespaces, getxattr(2) should
+ * get same data when acquiring the value of system.posix_acl_access twice.
*
* This issue included by getxattr05 has been fixed in kernel:
* '82c9a927bc5d ("getxattr: use correct xattr length")'
--
2.43.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes
2024-03-05 21:24 ` [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes Avinesh Kumar
@ 2024-03-06 21:48 ` Petr Vorel
0 siblings, 0 replies; 10+ messages in thread
From: Petr Vorel @ 2024-03-06 21:48 UTC (permalink / raw)
To: Avinesh Kumar; +Cc: ltp
Hi Avinesh, Shiyang,
I merged with following improvements below. Thanks!
> +++ b/testcases/kernel/syscalls/getxattr/getxattr04.c
> @@ -4,13 +4,15 @@
> * Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> */
> -/*
> +/*\
> + * [Description]
> + *
> * This is a regression test for the race between getting an existing
> * xattr and setting/removing a large xattr. This bug leads to that
> * getxattr() fails to get an existing xattr and returns ENOATTR in xfs
> * filesystem.
> *
> - * Thie bug has been fixed in:
> + * This bug has been fixed in:
> *
> * commit 5a93790d4e2df73e30c965ec6e49be82fc3ccfce
> * Author: Brian Foster <bfoster@redhat.com>
Just single line:
* 5a93790d4e2d ("xfs: remove racy hasattr check from attr ops")
> diff --git a/testcases/kernel/syscalls/getxattr/getxattr05.c b/testcases/kernel/syscalls/getxattr/getxattr05.c
> index f12e2f813..069e2b3f9 100644
> --- a/testcases/kernel/syscalls/getxattr/getxattr05.c
> +++ b/testcases/kernel/syscalls/getxattr/getxattr05.c
> @@ -4,12 +4,14 @@
> * Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> */
> -/*
> - * Description:
> - * 1) Witout a user namespace, getxattr(2) should get same data when
> - * acquiring the value of system.posix_acl_access twice.
> - * 2) With/Without mapped root UID in a user namespaces, getxattr(2) should
> - * get same data when acquiring the value of system.posix_acl_access twice.
> +/*\
> + * [Description]
> + *
> + * This test verifies that:
Here still needs to be empty line, I haven't managed to send v2 of the change
[1] which would allow to format it without empty line.
> + * - Without a user namespace, getxattr(2) should get same data when
> + * acquiring the value of system.posix_acl_access twice.
> + * - With/Without mapped root UID in a user namespaces, getxattr(2) should
> + * get same data when acquiring the value of system.posix_acl_access twice.
> *
> * This issue included by getxattr05 has been fixed in kernel:
> * '82c9a927bc5d ("getxattr: use correct xattr length")'
no quotes:
* 82c9a927bc5d ("getxattr: use correct xattr length")
+ I dared to use a 12 chars hash in "linux-git" (originally 11).
Kind regards,
Petr
[1] https://patchwork.ozlabs.org/project/ltp/list/?series=388930&state=*
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 10+ messages in thread
* [LTP] [PATCH v2] getxattr01: Convert to new API
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
2024-03-05 20:52 ` Avinesh Kumar
@ 2024-03-14 10:13 ` Shiyang Ruan via ltp
2024-03-20 16:34 ` Petr Vorel
2024-03-20 16:37 ` Petr Vorel
2024-03-21 10:13 ` [LTP] [PATCH v3] " Shiyang Ruan via ltp
2 siblings, 2 replies; 10+ messages in thread
From: Shiyang Ruan via ltp @ 2024-03-14 10:13 UTC (permalink / raw)
To: ltp
---
Changes since v1:
1. removed comments above tcases;
2. simplified check logic;
3. replaced close() with SAFE_CLOSE();
4. Description: merged the 4th point into the 3rd one according to
the check logic;
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
.../kernel/syscalls/getxattr/getxattr01.c | 188 +++++-------------
1 file changed, 54 insertions(+), 134 deletions(-)
diff --git a/testcases/kernel/syscalls/getxattr/getxattr01.c b/testcases/kernel/syscalls/getxattr/getxattr01.c
index cec802a33..1564e7c28 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr01.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr01.c
@@ -1,28 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2011 Red Hat, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it would be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * Further, this software is distributed without any warranty that it
- * is free of the rightful claim of any third person regarding
- * infringement or the like. Any license provided herein, whether
- * implied or otherwise, applies only to this software file. Patent
- * licenses, if any, provided herein do not apply to combinations of
- * this program with other software, or any other product whatsoever.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
+ * Copyright (c) Linux Test Project, 2012-2024
*/
-/*
+/*\
+ * [Description]
+ *
* Basic tests for getxattr(2) and make sure getxattr(2) handles error
* conditions correctly.
*
@@ -31,112 +15,53 @@
* getxattr(2) should return -1 and set errno to ENODATA
* 2. Buffer size is smaller than attribute value size,
* getxattr(2) should return -1 and set errno to ERANGE
- * 3. Get attribute, getxattr(2) should succeed
- * 4. Verify the attribute got by getxattr(2) is same as the value we set
+ * 3. Get attribute, getxattr(2) should succeed, and the attribute got by
+ * getxattr(2) should be same as the value we set
*/
-#include "config.h"
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
+#include "tst_test.h"
#ifdef HAVE_SYS_XATTR_H
# include <sys/xattr.h>
#endif
-#include "test.h"
-#include "safe_macros.h"
-
-char *TCID = "getxattr01";
#ifdef HAVE_SYS_XATTR_H
-#define XATTR_TEST_KEY "user.testkey"
-#define XATTR_TEST_VALUE "this is a test value"
-#define XATTR_TEST_VALUE_SIZE 20
-#define BUFFSIZE 64
-
-static void setup(void);
-static void cleanup(void);
+#define XATTR_TEST_NOKEY "user.nosuchkey"
+#define XATTR_TEST_KEY "user.testkey"
+#define XATTR_TEST_VALUE "this is a test value"
+#define XATTR_TEST_VALUE_SIZE 20
+#define BUFFSIZE 64
-char filename[BUFSIZ];
+static char filename[BUFSIZ];
-struct test_case {
+static struct tcase {
char *fname;
char *key;
char *value;
size_t size;
int exp_err;
+} tcases[] = {
+ { filename, XATTR_TEST_NOKEY, NULL, BUFFSIZE - 1, ENODATA },
+ { filename, XATTR_TEST_KEY, NULL, 1, ERANGE },
+ { filename, XATTR_TEST_KEY, NULL, BUFFSIZE - 1, 0 },
};
-struct test_case tc[] = {
- { /* case 00, get non-existing attribute */
- .fname = filename,
- .key = "user.nosuchkey",
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = ENODATA,
- },
- { /* case 01, small value buffer */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = 1,
- .exp_err = ERANGE,
- },
- { /* case 02, get existing attribute */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = 0,
- },
-};
-
-int TST_TOTAL = sizeof(tc) / sizeof(tc[0]) + 1;
-int main(int argc, char *argv[])
+static void run(unsigned int n)
{
- int lc;
- int i;
-
- tst_parse_opts(argc, argv, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
-
- for (i = 0; i < (int)ARRAY_SIZE(tc); i++) {
- TEST(getxattr(tc[i].fname, tc[i].key, tc[i].value,
- tc[i].size));
-
- if (TEST_ERRNO == tc[i].exp_err) {
- tst_resm(TPASS | TTERRNO, "expected behavior");
- } else {
- tst_resm(TFAIL | TTERRNO, "unexpected behavior"
- "- expected errno %d - Got",
- tc[i].exp_err);
- }
- }
-
- if (TEST_RETURN != XATTR_TEST_VALUE_SIZE) {
- tst_resm(TFAIL,
- "getxattr() returned wrong size %ld expected %d",
- TEST_RETURN, XATTR_TEST_VALUE_SIZE);
- continue;
- }
-
- if (memcmp(tc[i - 1].value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
- tst_resm(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
- XATTR_TEST_VALUE, tc[i - 1].value);
+ struct tcase *tc = &tcases[n];
+
+ if (tc->exp_err == 0) {
+ TST_EXP_VAL(getxattr(tc->fname, tc->key, tc->value, tc->size),
+ XATTR_TEST_VALUE_SIZE);
+ if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
+ tst_res(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
+ XATTR_TEST_VALUE, tc->value);
else
- tst_resm(TPASS, "Got the right value");
+ tst_res(TPASS, "getxattr() retrieved expected value");
+ } else {
+ TST_EXP_FAIL(getxattr(tc->fname, tc->key, tc->value, tc->size),
+ tc->exp_err);
}
-
- cleanup();
- tst_exit();
}
static void setup(void)
@@ -144,41 +69,36 @@ static void setup(void)
int fd;
unsigned int i;
- tst_require_root();
-
- tst_tmpdir();
-
/* Create test file and setup initial xattr */
snprintf(filename, BUFSIZ, "getxattr01testfile");
- fd = SAFE_CREAT(cleanup, filename, 0644);
- close(fd);
- if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
- strlen(XATTR_TEST_VALUE), XATTR_CREATE) == -1) {
- if (errno == ENOTSUP) {
- tst_brkm(TCONF, cleanup, "No xattr support in fs or "
- "mount without user_xattr option");
- }
- }
+ fd = SAFE_CREAT(filename, 0644);
+ SAFE_CLOSE(fd);
- /* Prepare test cases */
- for (i = 0; i < ARRAY_SIZE(tc); i++) {
- tc[i].value = malloc(BUFFSIZE);
- if (tc[i].value == NULL) {
- tst_brkm(TBROK | TERRNO, cleanup,
- "Cannot allocate memory");
- }
- }
+ SAFE_SETXATTR(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
+ strlen(XATTR_TEST_VALUE), XATTR_CREATE);
- TEST_PAUSE;
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ tcases[i].value = SAFE_MALLOC(BUFFSIZE);
}
static void cleanup(void)
{
- tst_rmdir();
+ unsigned int i;
+
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ if (tcases[i].value != NULL)
+ free(tcases[i].value);
}
+
+static struct tst_test test = {
+ .needs_tmpdir = 1,
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .tcnt = ARRAY_SIZE(tcases),
+ .test = run,
+};
+
#else /* HAVE_SYS_XATTR_H */
-int main(int argc, char *argv[])
-{
- tst_brkm(TCONF, NULL, "<sys/xattr.h> does not exist.");
-}
+ TST_TEST_TCONF("<sys/xattr.h> does not exist.");
#endif
--
2.34.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [LTP] [PATCH v2] getxattr01: Convert to new API
2024-03-14 10:13 ` [LTP] [PATCH v2] " Shiyang Ruan via ltp
@ 2024-03-20 16:34 ` Petr Vorel
2024-03-20 16:37 ` Petr Vorel
1 sibling, 0 replies; 10+ messages in thread
From: Petr Vorel @ 2024-03-20 16:34 UTC (permalink / raw)
To: Shiyang Ruan; +Cc: ltp
> ---
> Changes since v1:
> 1. removed comments above tcases;
> 2. simplified check logic;
> 3. replaced close() with SAFE_CLOSE();
> 4. Description: merged the 4th point into the 3rd one according to
> the check logic;
...
#ifdef HAVE_SYS_XATTR_H
Please remove this check, we always have <sys/xattr.h>.
> +#define XATTR_TEST_NOKEY "user.nosuchkey"
> +#define XATTR_TEST_KEY "user.testkey"
> +#define XATTR_TEST_VALUE "this is a test value"
> +#define XATTR_TEST_VALUE_SIZE 20
> +#define BUFFSIZE 64
> -char filename[BUFSIZ];
> +static char filename[BUFSIZ];
> -struct test_case {
> +static struct tcase {
> char *fname;
> char *key;
> char *value;
> size_t size;
> int exp_err;
> +} tcases[] = {
> + { filename, XATTR_TEST_NOKEY, NULL, BUFFSIZE - 1, ENODATA },
> + { filename, XATTR_TEST_KEY, NULL, 1, ERANGE },
> + { filename, XATTR_TEST_KEY, NULL, BUFFSIZE - 1, 0 },
If .fname is always filename, why to pass it via test struct?
The same applies for .value (always NULL).
NOTE, this is ok, but if there were a lot of more struct members and some of
them would be 0 or NULL, we'd prefer to initialize it as:
{ .key = XATTR_TEST_NOKEY, .size = BUFFSIZE - 1, .exp_err = ENODATA },
{ .key = XATTR_TEST_KEY, .size = 1, .exp_err = ERANGE },
{ .key = XATTR_TEST_KEY, .size = BUFFSIZE - 1 }
This way it would be possible to avoid many NULL or 0.
...
> + struct tcase *tc = &tcases[n];
> +
> + if (tc->exp_err == 0) {
> + TST_EXP_VAL(getxattr(tc->fname, tc->key, tc->value, tc->size),
> + XATTR_TEST_VALUE_SIZE);
> + if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
> + tst_res(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
instead of \", more readable is to use '.
> + XATTR_TEST_VALUE, tc->value);
> else
> - tst_resm(TPASS, "Got the right value");
> + tst_res(TPASS, "getxattr() retrieved expected value");
> + } else {
> + TST_EXP_FAIL(getxattr(tc->fname, tc->key, tc->value, tc->size),
> + tc->exp_err);
> }
> static void setup(void)
> @@ -144,41 +69,36 @@ static void setup(void)
> int fd;
> unsigned int i;
> - tst_require_root();
> -
> - tst_tmpdir();
> -
> /* Create test file and setup initial xattr */
> snprintf(filename, BUFSIZ, "getxattr01testfile");
> - fd = SAFE_CREAT(cleanup, filename, 0644);
> - close(fd);
> - if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
> - strlen(XATTR_TEST_VALUE), XATTR_CREATE) == -1) {
> - if (errno == ENOTSUP) {
> - tst_brkm(TCONF, cleanup, "No xattr support in fs or "
> - "mount without user_xattr option");
> - }
> - }
> + fd = SAFE_CREAT(filename, 0644);
> + SAFE_CLOSE(fd);
...
> + for (i = 0; i < ARRAY_SIZE(tcases); i++)
> + tcases[i].value = SAFE_MALLOC(BUFFSIZE);
> }
> static void cleanup(void)
> {
> - tst_rmdir();
> + unsigned int i;
> +
> + for (i = 0; i < ARRAY_SIZE(tcases); i++)
> + if (tcases[i].value != NULL)
Shouldn't be free() unconditional (always)?
> + free(tcases[i].value);
> }
> +
> +static struct tst_test test = {
> + .needs_tmpdir = 1,
> + .needs_root = 1,
> + .setup = setup,
> + .cleanup = cleanup,
> + .tcnt = ARRAY_SIZE(tcases),
> + .test = run,
> +};
> +
> #else /* HAVE_SYS_XATTR_H */
> -int main(int argc, char *argv[])
> -{
> - tst_brkm(TCONF, NULL, "<sys/xattr.h> does not exist.");
> -}
> + TST_TEST_TCONF("<sys/xattr.h> does not exist.");
This is to be removed (as noted up).
> #endif
Kind regards,
Petr
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [LTP] [PATCH v2] getxattr01: Convert to new API
2024-03-14 10:13 ` [LTP] [PATCH v2] " Shiyang Ruan via ltp
2024-03-20 16:34 ` Petr Vorel
@ 2024-03-20 16:37 ` Petr Vorel
1 sibling, 0 replies; 10+ messages in thread
From: Petr Vorel @ 2024-03-20 16:37 UTC (permalink / raw)
To: Shiyang Ruan; +Cc: ltp
Hi,
> -/*
> +/*\
> + * [Description]
> + *
> * Basic tests for getxattr(2) and make sure getxattr(2) handles error
> * conditions correctly.
> *
> @@ -31,112 +15,53 @@
> * getxattr(2) should return -1 and set errno to ENODATA
> * 2. Buffer size is smaller than attribute value size,
> * getxattr(2) should return -1 and set errno to ERANGE
> - * 3. Get attribute, getxattr(2) should succeed
> - * 4. Verify the attribute got by getxattr(2) is same as the value we set
> + * 3. Get attribute, getxattr(2) should succeed, and the attribute got by
> + * getxattr(2) should be same as the value we set
> */
* There are 4 test cases:
Without space here the list will not be formatted correctly :(.
Currently it's needed to add it.
* 1. Get an non-existing attribute,
* getxattr(2) should return -1 and set errno to ENODATA
* 2. Buffer size is smaller than attribute value size,
* getxattr(2) should return -1 and set errno to ERANGE
* 3. Get attribute, getxattr(2) should succeed, and the attribute got by
* getxattr(2) should be same as the value we set
Kind regards,
Petr
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 10+ messages in thread
* [LTP] [PATCH v3] getxattr01: Convert to new API
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
2024-03-05 20:52 ` Avinesh Kumar
2024-03-14 10:13 ` [LTP] [PATCH v2] " Shiyang Ruan via ltp
@ 2024-03-21 10:13 ` Shiyang Ruan via ltp
2024-03-22 5:33 ` Petr Vorel
2 siblings, 1 reply; 10+ messages in thread
From: Shiyang Ruan via ltp @ 2024-03-21 10:13 UTC (permalink / raw)
To: ltp
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
.../kernel/syscalls/getxattr/getxattr01.c | 196 +++++-------------
1 file changed, 54 insertions(+), 142 deletions(-)
diff --git a/testcases/kernel/syscalls/getxattr/getxattr01.c b/testcases/kernel/syscalls/getxattr/getxattr01.c
index cec802a33..4db5456b0 100644
--- a/testcases/kernel/syscalls/getxattr/getxattr01.c
+++ b/testcases/kernel/syscalls/getxattr/getxattr01.c
@@ -1,142 +1,64 @@
+// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2011 Red Hat, Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public
- * License as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it would be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * Further, this software is distributed without any warranty that it
- * is free of the rightful claim of any third person regarding
- * infringement or the like. Any license provided herein, whether
- * implied or otherwise, applies only to this software file. Patent
- * licenses, if any, provided herein do not apply to combinations of
- * this program with other software, or any other product whatsoever.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
+ * Copyright (c) Linux Test Project, 2012-2024
*/
-/*
+/*\
+ * [Description]
+ *
* Basic tests for getxattr(2) and make sure getxattr(2) handles error
* conditions correctly.
*
- * There are 4 test cases:
+ * There are 3 test cases:
+ *
* 1. Get an non-existing attribute,
* getxattr(2) should return -1 and set errno to ENODATA
* 2. Buffer size is smaller than attribute value size,
* getxattr(2) should return -1 and set errno to ERANGE
- * 3. Get attribute, getxattr(2) should succeed
- * 4. Verify the attribute got by getxattr(2) is same as the value we set
+ * 3. Get attribute, getxattr(2) should succeed, and the attribute got by
+ * getxattr(2) should be same as the value we set
*/
-#include "config.h"
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
-#ifdef HAVE_SYS_XATTR_H
-# include <sys/xattr.h>
-#endif
-#include "test.h"
-#include "safe_macros.h"
-
-char *TCID = "getxattr01";
+#include "tst_test.h"
+#include <sys/xattr.h>
-#ifdef HAVE_SYS_XATTR_H
-#define XATTR_TEST_KEY "user.testkey"
-#define XATTR_TEST_VALUE "this is a test value"
-#define XATTR_TEST_VALUE_SIZE 20
-#define BUFFSIZE 64
+#define XATTR_TEST_NOKEY "user.nosuchkey"
+#define XATTR_TEST_KEY "user.testkey"
+#define XATTR_TEST_VALUE "this is a test value"
+#define XATTR_TEST_VALUE_SIZE 20
+#define BUFFSIZE 64
-static void setup(void);
-static void cleanup(void);
+static char filename[BUFSIZ];
-char filename[BUFSIZ];
-
-struct test_case {
- char *fname;
+static struct tcase {
char *key;
char *value;
size_t size;
int exp_err;
-};
-struct test_case tc[] = {
- { /* case 00, get non-existing attribute */
- .fname = filename,
- .key = "user.nosuchkey",
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = ENODATA,
- },
- { /* case 01, small value buffer */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = 1,
- .exp_err = ERANGE,
- },
- { /* case 02, get existing attribute */
- .fname = filename,
- .key = XATTR_TEST_KEY,
- .value = NULL,
- .size = BUFFSIZE - 1,
- .exp_err = 0,
- },
+} tcases[] = {
+ { .key = XATTR_TEST_NOKEY, .size = BUFFSIZE - 1, .exp_err = ENODATA },
+ { .key = XATTR_TEST_KEY, .size = 1, .exp_err = ERANGE },
+ { .key = XATTR_TEST_KEY, .size = BUFFSIZE - 1 },
};
-int TST_TOTAL = sizeof(tc) / sizeof(tc[0]) + 1;
-
-int main(int argc, char *argv[])
+static void run(unsigned int n)
{
- int lc;
- int i;
-
- tst_parse_opts(argc, argv, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
-
- for (i = 0; i < (int)ARRAY_SIZE(tc); i++) {
- TEST(getxattr(tc[i].fname, tc[i].key, tc[i].value,
- tc[i].size));
-
- if (TEST_ERRNO == tc[i].exp_err) {
- tst_resm(TPASS | TTERRNO, "expected behavior");
- } else {
- tst_resm(TFAIL | TTERRNO, "unexpected behavior"
- "- expected errno %d - Got",
- tc[i].exp_err);
- }
- }
-
- if (TEST_RETURN != XATTR_TEST_VALUE_SIZE) {
- tst_resm(TFAIL,
- "getxattr() returned wrong size %ld expected %d",
- TEST_RETURN, XATTR_TEST_VALUE_SIZE);
- continue;
- }
-
- if (memcmp(tc[i - 1].value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
- tst_resm(TFAIL, "Wrong value, expect \"%s\" got \"%s\"",
- XATTR_TEST_VALUE, tc[i - 1].value);
+ struct tcase *tc = &tcases[n];
+
+ if (tc->exp_err == 0) {
+ TST_EXP_VAL(getxattr(filename, tc->key, tc->value, tc->size),
+ XATTR_TEST_VALUE_SIZE);
+ if (memcmp(tc->value, XATTR_TEST_VALUE, XATTR_TEST_VALUE_SIZE))
+ tst_res(TFAIL, "Wrong value, expect '%s' got '%s'",
+ XATTR_TEST_VALUE, tc->value);
else
- tst_resm(TPASS, "Got the right value");
+ tst_res(TPASS, "getxattr() retrieved expected value");
+ } else {
+ TST_EXP_FAIL(getxattr(filename, tc->key, tc->value, tc->size),
+ tc->exp_err);
}
-
- cleanup();
- tst_exit();
}
static void setup(void)
@@ -144,41 +66,31 @@ static void setup(void)
int fd;
unsigned int i;
- tst_require_root();
-
- tst_tmpdir();
-
/* Create test file and setup initial xattr */
snprintf(filename, BUFSIZ, "getxattr01testfile");
- fd = SAFE_CREAT(cleanup, filename, 0644);
- close(fd);
- if (setxattr(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
- strlen(XATTR_TEST_VALUE), XATTR_CREATE) == -1) {
- if (errno == ENOTSUP) {
- tst_brkm(TCONF, cleanup, "No xattr support in fs or "
- "mount without user_xattr option");
- }
- }
+ fd = SAFE_CREAT(filename, 0644);
+ SAFE_CLOSE(fd);
- /* Prepare test cases */
- for (i = 0; i < ARRAY_SIZE(tc); i++) {
- tc[i].value = malloc(BUFFSIZE);
- if (tc[i].value == NULL) {
- tst_brkm(TBROK | TERRNO, cleanup,
- "Cannot allocate memory");
- }
- }
+ SAFE_SETXATTR(filename, XATTR_TEST_KEY, XATTR_TEST_VALUE,
+ strlen(XATTR_TEST_VALUE), XATTR_CREATE);
- TEST_PAUSE;
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ tcases[i].value = SAFE_MALLOC(BUFFSIZE);
}
static void cleanup(void)
{
- tst_rmdir();
-}
-#else /* HAVE_SYS_XATTR_H */
-int main(int argc, char *argv[])
-{
- tst_brkm(TCONF, NULL, "<sys/xattr.h> does not exist.");
+ unsigned int i;
+
+ for (i = 0; i < ARRAY_SIZE(tcases); i++)
+ free(tcases[i].value);
}
-#endif
+
+static struct tst_test test = {
+ .needs_tmpdir = 1,
+ .needs_root = 1,
+ .setup = setup,
+ .cleanup = cleanup,
+ .tcnt = ARRAY_SIZE(tcases),
+ .test = run,
+};
--
2.34.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [LTP] [PATCH v3] getxattr01: Convert to new API
2024-03-21 10:13 ` [LTP] [PATCH v3] " Shiyang Ruan via ltp
@ 2024-03-22 5:33 ` Petr Vorel
0 siblings, 0 replies; 10+ messages in thread
From: Petr Vorel @ 2024-03-22 5:33 UTC (permalink / raw)
To: Shiyang Ruan; +Cc: ltp
Hi Shiyang,
nice work, thanks! Merged.
Kind regards,
Petr
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-03-22 5:34 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21 16:11 [LTP] [PATCH 1/2] getxattr04,05: Add [Description] tag Shiyang Ruan
2024-01-21 16:11 ` [LTP] [PATCH 2/2] getxattr01: Convert to new API Shiyang Ruan
2024-03-05 20:52 ` Avinesh Kumar
2024-03-14 10:13 ` [LTP] [PATCH v2] " Shiyang Ruan via ltp
2024-03-20 16:34 ` Petr Vorel
2024-03-20 16:37 ` Petr Vorel
2024-03-21 10:13 ` [LTP] [PATCH v3] " Shiyang Ruan via ltp
2024-03-22 5:33 ` Petr Vorel
2024-03-05 21:24 ` [LTP] [PATCH v2] getxattr04, 05: Change to docparse comment and typo fixes Avinesh Kumar
2024-03-06 21:48 ` Petr Vorel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox