* [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API
@ 2021-03-04 1:44 Shiyang Ruan
2021-03-11 1:11 ` Xiao Yang
0 siblings, 1 reply; 3+ messages in thread
From: Shiyang Ruan @ 2021-03-04 1:44 UTC (permalink / raw)
To: ltp
Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
---
testcases/kernel/syscalls/chdir/chdir04.c | 168 +++-------------------
1 file changed, 22 insertions(+), 146 deletions(-)
diff --git a/testcases/kernel/syscalls/chdir/chdir04.c b/testcases/kernel/syscalls/chdir/chdir04.c
index f0420e4c9..d7e6210c3 100644
--- a/testcases/kernel/syscalls/chdir/chdir04.c
+++ b/testcases/kernel/syscalls/chdir/chdir04.c
@@ -1,162 +1,38 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
/*
- *
- * Copyright (c) International Business Machines Corp., 2001
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
- * the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Copyright (c) International Business Machines Corp., 2001
*/
-/*
- * NAME
- * chdir04.c
- *
- * DESCRIPTION
- * Testcase to test whether chdir(2) sets errno correctly.
- *
- * ALGORITHM
- * 1. Test for ENAMETOOLONG:
- * Create a bad directory name with length more than
- *
- * VFS_MAXNAMELEN (Linux kernel variable), and attempt to
- * chdir(2) to it.
- *
- * 2. Test for ENOENT:
- * Attempt to chdir(2) on a non-existent directory
- *
- * 3. Test for EFAULT:
- * Pass an address which lies outside the address space of the
- * process, and expect an EFAULT.
- *
- * USAGE: <for command-line>
- * chdir04 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
- * where, -c n : Run n copies concurrently.
- * -e : Turn on errno logging.
- * -i n : Execute test n times.
- * -I x : Execute test for x seconds.
- * -P x : Pause for x seconds between iterations.
- * -t : Turn on syscall timing.
+/*\
+ * [DESCRIPTION]
*
- * HISTORY
- * 07/2001 Ported by Wayne Boyer
- *
- * RESTRICTIONS
- * NONE
- */
+ * Testcase to test whether chdir(2) sets errno correctly.
+\*/
-#include <stdio.h>
#include <errno.h>
-#include <sys/stat.h>
-#include <sys/mman.h>
-#include "test.h"
-
-char *TCID = "chdir04";
+#include "tst_test.h"
char bad_dir[] =
"abcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyz";
-
char noexist_dir[] = "/tmp/noexistdir";
-
-struct test_case_t {
- char *dname;
- int error;
-} TC[] = {
- /*
- * to test whether chdir() is setting ENAMETOOLONG if the
- * directory is more than VFS_MAXNAMELEN
- */
- {
- bad_dir, ENAMETOOLONG},
- /*
- * to test whether chdir() is setting ENOENT if the
- * directory is not existing.
- */
- {
- noexist_dir, ENOENT},
- /*
- * to test whether chdir() is setting EFAULT if the
- * directory is an invalid address.
- */
- {
- (void *)-1, EFAULT}
-};
-
-int TST_TOTAL = ARRAY_SIZE(TC);
-
-int flag;
-#define FAILED 1
-
-void setup(void);
-void cleanup(void);
-
char *bad_addr = 0;
-int main(int ac, char **av)
-{
- int lc;
- int i;
-
- tst_parse_opts(ac, av, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
-
- for (i = 0; i < TST_TOTAL; i++) {
-
- TEST(chdir(TC[i].dname));
-
- if (TEST_RETURN != -1) {
- tst_resm(TFAIL, "call succeeded unexpectedly");
- continue;
- }
-
- if (TEST_ERRNO == TC[i].error)
- tst_resm(TPASS | TTERRNO, "failed as expected");
- else {
- tst_resm(TFAIL | TTERRNO,
- "didn't fail as expected (expected %d)",
- TC[i].error);
- }
- }
- }
- cleanup();
-
- tst_exit();
-
-}
+static struct tcase {
+ char *dir;
+ int exp_errno;
+} tcases [] = {
+ {bad_dir, ENAMETOOLONG},
+ {noexist_dir, ENOENT},
+ {(void *)-1, EFAULT}
+};
-void setup(void)
+static void verify_chdir(unsigned int i)
{
-
- tst_sig(NOFORK, DEF_HANDLER, cleanup);
-
- TEST_PAUSE;
-
- tst_tmpdir();
-
-#ifdef UCLINUX
- bad_addr = mmap(0, 1, PROT_NONE,
- MAP_PRIVATE_EXCEPT_UCLINUX | MAP_ANONYMOUS, 0, 0);
- if (bad_addr == MAP_FAILED)
- tst_brkm(TBROK | TERRNO, cleanup, "mmap() failed");
- TC[2].dname = bad_addr;
-#endif
+ TST_EXP_FAIL(chdir(tcases[i].dir), tcases[i].exp_errno);
}
-void cleanup(void)
-{
- tst_rmdir();
-
-}
+static struct tst_test test = {
+ .needs_tmpdir = 1,
+ .test = verify_chdir,
+ .tcnt = ARRAY_SIZE(tcases),
+};
--
2.30.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API
2021-03-04 1:44 [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API Shiyang Ruan
@ 2021-03-11 1:11 ` Xiao Yang
2021-03-11 1:23 ` ruansy.fnst
0 siblings, 1 reply; 3+ messages in thread
From: Xiao Yang @ 2021-03-11 1:11 UTC (permalink / raw)
To: ltp
On 2021/3/4 9:44, Shiyang Ruan wrote:
> Signed-off-by: Shiyang Ruan<ruansy.fnst@fujitsu.com>
> ---
> testcases/kernel/syscalls/chdir/chdir04.c | 168 +++-------------------
> 1 file changed, 22 insertions(+), 146 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/chdir/chdir04.c b/testcases/kernel/syscalls/chdir/chdir04.c
> index f0420e4c9..d7e6210c3 100644
> --- a/testcases/kernel/syscalls/chdir/chdir04.c
> +++ b/testcases/kernel/syscalls/chdir/chdir04.c
> @@ -1,162 +1,38 @@
> +// SPDX-License-Identifier: GPL-2.0-or-later
> /*
> - *
> - * Copyright (c) International Business Machines Corp., 2001
> - *
> - * This program is free software; you can redistribute it and/or modify
> - * it under the terms of the GNU General Public License as published by
> - * the Free Software Foundation; either version 2 of the License, or
> - * (at your option) any later version.
> - *
> - * This program is distributed in the hope that it will be useful,
> - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
> - * the GNU General Public License for more details.
> - *
> - * You should have received a copy of the GNU General Public License
> - * along with this program; if not, write to the Free Software
> - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> + * Copyright (c) International Business Machines Corp., 2001
> */
>
> -/*
> - * NAME
> - * chdir04.c
> - *
> - * DESCRIPTION
> - * Testcase to test whether chdir(2) sets errno correctly.
> - *
> - * ALGORITHM
> - * 1. Test for ENAMETOOLONG:
> - * Create a bad directory name with length more than
> - *
> - * VFS_MAXNAMELEN (Linux kernel variable), and attempt to
> - * chdir(2) to it.
> - *
> - * 2. Test for ENOENT:
> - * Attempt to chdir(2) on a non-existent directory
> - *
> - * 3. Test for EFAULT:
> - * Pass an address which lies outside the address space of the
> - * process, and expect an EFAULT.
> - *
> - * USAGE:<for command-line>
> - * chdir04 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
> - * where, -c n : Run n copies concurrently.
> - * -e : Turn on errno logging.
> - * -i n : Execute test n times.
> - * -I x : Execute test for x seconds.
> - * -P x : Pause for x seconds between iterations.
> - * -t : Turn on syscall timing.
> +/*\
> + * [DESCRIPTION]
> *
> - * HISTORY
> - * 07/2001 Ported by Wayne Boyer
> - *
> - * RESTRICTIONS
> - * NONE
> - */
> + * Testcase to test whether chdir(2) sets errno correctly.
> +\*/
Hi Ruan,
Please remove the first '\' as Petr mentioned:
http://lists.linux.it/pipermail/ltp/2021-March/021356.html
>
> -#include<stdio.h>
> #include<errno.h>
> -#include<sys/stat.h>
> -#include<sys/mman.h>
> -#include "test.h"
> -
> -char *TCID = "chdir04";
> +#include "tst_test.h"
>
> char bad_dir[] =
> "abcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyz";
> -
> char noexist_dir[] = "/tmp/noexistdir";
> -
> -struct test_case_t {
> - char *dname;
> - int error;
> -} TC[] = {
> - /*
> - * to test whether chdir() is setting ENAMETOOLONG if the
> - * directory is more than VFS_MAXNAMELEN
> - */
> - {
> - bad_dir, ENAMETOOLONG},
> - /*
> - * to test whether chdir() is setting ENOENT if the
> - * directory is not existing.
> - */
> - {
> - noexist_dir, ENOENT},
> - /*
> - * to test whether chdir() is setting EFAULT if the
> - * directory is an invalid address.
> - */
> - {
> - (void *)-1, EFAULT}
> -};
> -
> -int TST_TOTAL = ARRAY_SIZE(TC);
> -
> -int flag;
> -#define FAILED 1
> -
> -void setup(void);
> -void cleanup(void);
> -
> char *bad_addr = 0;
>
> -int main(int ac, char **av)
> -{
> - int lc;
> - int i;
> -
> - tst_parse_opts(ac, av, NULL, NULL);
> -
> - setup();
> -
> - for (lc = 0; TEST_LOOPING(lc); lc++) {
> - tst_count = 0;
> -
> - for (i = 0; i< TST_TOTAL; i++) {
> -
> - TEST(chdir(TC[i].dname));
> -
> - if (TEST_RETURN != -1) {
> - tst_resm(TFAIL, "call succeeded unexpectedly");
> - continue;
> - }
> -
> - if (TEST_ERRNO == TC[i].error)
> - tst_resm(TPASS | TTERRNO, "failed as expected");
> - else {
> - tst_resm(TFAIL | TTERRNO,
> - "didn't fail as expected (expected %d)",
> - TC[i].error);
> - }
> - }
> - }
> - cleanup();
> -
> - tst_exit();
> -
> -}
> +static struct tcase {
> + char *dir;
> + int exp_errno;
> +} tcases [] = {
> + {bad_dir, ENAMETOOLONG},
> + {noexist_dir, ENOENT},
> + {(void *)-1, EFAULT}
> +};
For portability, It is better to test bad address by tst_get_bad_addr()
instead of (void *)-1.
See the following explanation:
https://github.com/linux-test-project/ltp/commit/80bed467bc6ab48a6cd88a8ab74ca15d08830cb0
Best Regards,
Xiao Yang
>
> -void setup(void)
> +static void verify_chdir(unsigned int i)
> {
> -
> - tst_sig(NOFORK, DEF_HANDLER, cleanup);
> -
> - TEST_PAUSE;
> -
> - tst_tmpdir();
> -
> -#ifdef UCLINUX
> - bad_addr = mmap(0, 1, PROT_NONE,
> - MAP_PRIVATE_EXCEPT_UCLINUX | MAP_ANONYMOUS, 0, 0);
> - if (bad_addr == MAP_FAILED)
> - tst_brkm(TBROK | TERRNO, cleanup, "mmap() failed");
> - TC[2].dname = bad_addr;
> -#endif
> + TST_EXP_FAIL(chdir(tcases[i].dir), tcases[i].exp_errno);
> }
>
> -void cleanup(void)
> -{
> - tst_rmdir();
> -
> -}
> +static struct tst_test test = {
> + .needs_tmpdir = 1,
> + .test = verify_chdir,
> + .tcnt = ARRAY_SIZE(tcases),
> +};
^ permalink raw reply [flat|nested] 3+ messages in thread* [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API
2021-03-11 1:11 ` Xiao Yang
@ 2021-03-11 1:23 ` ruansy.fnst
0 siblings, 0 replies; 3+ messages in thread
From: ruansy.fnst @ 2021-03-11 1:23 UTC (permalink / raw)
To: ltp
> -----Original Message-----
> From: Yang, Xiao/? ? <yangx.jy@cn.fujitsu.com>
> Sent: Thursday, March 11, 2021 9:12 AM
> To: Ruan, Shiyang/? ?? <ruansy.fnst@fujitsu.com>
> Cc: ltp@lists.linux.it
> Subject: Re: [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API
>
> On 2021/3/4 9:44, Shiyang Ruan wrote:
> > Signed-off-by: Shiyang Ruan<ruansy.fnst@fujitsu.com>
> > ---
> > testcases/kernel/syscalls/chdir/chdir04.c | 168 +++-------------------
> > 1 file changed, 22 insertions(+), 146 deletions(-)
> >
> > diff --git a/testcases/kernel/syscalls/chdir/chdir04.c
> > b/testcases/kernel/syscalls/chdir/chdir04.c
> > index f0420e4c9..d7e6210c3 100644
> > --- a/testcases/kernel/syscalls/chdir/chdir04.c
> > +++ b/testcases/kernel/syscalls/chdir/chdir04.c
> > @@ -1,162 +1,38 @@
> > +// SPDX-License-Identifier: GPL-2.0-or-later
> > /*
> > - *
> > - * Copyright (c) International Business Machines Corp., 2001
> > - *
> > - * This program is free software; you can redistribute it and/or modify
> > - * it under the terms of the GNU General Public License as published by
> > - * the Free Software Foundation; either version 2 of the License, or
> > - * (at your option) any later version.
> > - *
> > - * This program is distributed in the hope that it will be useful,
> > - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
> > - * the GNU General Public License for more details.
> > - *
> > - * You should have received a copy of the GNU General Public License
> > - * along with this program; if not, write to the Free Software
> > - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
> USA
> > + * Copyright (c) International Business Machines Corp., 2001
> > */
> >
> > -/*
> > - * NAME
> > - * chdir04.c
> > - *
> > - * DESCRIPTION
> > - * Testcase to test whether chdir(2) sets errno correctly.
> > - *
> > - * ALGORITHM
> > - * 1. Test for ENAMETOOLONG:
> > - * Create a bad directory name with length more than
> > - *
> > - * VFS_MAXNAMELEN (Linux kernel variable), and attempt to
> > - * chdir(2) to it.
> > - *
> > - * 2. Test for ENOENT:
> > - * Attempt to chdir(2) on a non-existent directory
> > - *
> > - * 3. Test for EFAULT:
> > - * Pass an address which lies outside the address space of the
> > - * process, and expect an EFAULT.
> > - *
> > - * USAGE:<for command-line>
> > - * chdir04 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
> > - * where, -c n : Run n copies concurrently.
> > - * -e : Turn on errno logging.
> > - * -i n : Execute test n times.
> > - * -I x : Execute test for x seconds.
> > - * -P x : Pause for x seconds between iterations.
> > - * -t : Turn on syscall timing.
> > +/*\
> > + * [DESCRIPTION]
> > *
> > - * HISTORY
> > - * 07/2001 Ported by Wayne Boyer
> > - *
> > - * RESTRICTIONS
> > - * NONE
> > - */
> > + * Testcase to test whether chdir(2) sets errno correctly.
> > +\*/
> Hi Ruan,
>
> Please remove the first '\' as Petr mentioned:
> http://lists.linux.it/pipermail/ltp/2021-March/021356.html
OK.
>
> >
> > -#include<stdio.h>
> > #include<errno.h>
> > -#include<sys/stat.h>
> > -#include<sys/mman.h>
> > -#include "test.h"
> > -
> > -char *TCID = "chdir04";
> > +#include "tst_test.h"
> >
> > char bad_dir[] =
> >
> >
> "abcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyza
> >
> bcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabc
> >
> defghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcde
> > fghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyz";
> > -
> > char noexist_dir[] = "/tmp/noexistdir";
> > -
> > -struct test_case_t {
> > - char *dname;
> > - int error;
> > -} TC[] = {
> > - /*
> > - * to test whether chdir() is setting ENAMETOOLONG if the
> > - * directory is more than VFS_MAXNAMELEN
> > - */
> > - {
> > - bad_dir, ENAMETOOLONG},
> > - /*
> > - * to test whether chdir() is setting ENOENT if the
> > - * directory is not existing.
> > - */
> > - {
> > - noexist_dir, ENOENT},
> > - /*
> > - * to test whether chdir() is setting EFAULT if the
> > - * directory is an invalid address.
> > - */
> > - {
> > - (void *)-1, EFAULT}
> > -};
> > -
> > -int TST_TOTAL = ARRAY_SIZE(TC);
> > -
> > -int flag;
> > -#define FAILED 1
> > -
> > -void setup(void);
> > -void cleanup(void);
> > -
> > char *bad_addr = 0;
> >
> > -int main(int ac, char **av)
> > -{
> > - int lc;
> > - int i;
> > -
> > - tst_parse_opts(ac, av, NULL, NULL);
> > -
> > - setup();
> > -
> > - for (lc = 0; TEST_LOOPING(lc); lc++) {
> > - tst_count = 0;
> > -
> > - for (i = 0; i< TST_TOTAL; i++) {
> > -
> > - TEST(chdir(TC[i].dname));
> > -
> > - if (TEST_RETURN != -1) {
> > - tst_resm(TFAIL, "call succeeded unexpectedly");
> > - continue;
> > - }
> > -
> > - if (TEST_ERRNO == TC[i].error)
> > - tst_resm(TPASS | TTERRNO, "failed as expected");
> > - else {
> > - tst_resm(TFAIL | TTERRNO,
> > - "didn't fail as expected (expected %d)",
> > - TC[i].error);
> > - }
> > - }
> > - }
> > - cleanup();
> > -
> > - tst_exit();
> > -
> > -}
> > +static struct tcase {
> > + char *dir;
> > + int exp_errno;
> > +} tcases [] = {
> > + {bad_dir, ENAMETOOLONG},
> > + {noexist_dir, ENOENT},
> > + {(void *)-1, EFAULT}
> > +};
> For portability, It is better to test bad address by tst_get_bad_addr() instead of
> (void *)-1.
> See the following explanation:
> https://github.com/linux-test-project/ltp/commit/80bed467bc6ab48a6cd88a8a
> b74ca15d08830cb0
Thanks for pointing out.
--
Ruan Shiyang.
>
> Best Regards,
> Xiao Yang
> >
> > -void setup(void)
> > +static void verify_chdir(unsigned int i)
> > {
> > -
> > - tst_sig(NOFORK, DEF_HANDLER, cleanup);
> > -
> > - TEST_PAUSE;
> > -
> > - tst_tmpdir();
> > -
> > -#ifdef UCLINUX
> > - bad_addr = mmap(0, 1, PROT_NONE,
> > - MAP_PRIVATE_EXCEPT_UCLINUX | MAP_ANONYMOUS, 0, 0);
> > - if (bad_addr == MAP_FAILED)
> > - tst_brkm(TBROK | TERRNO, cleanup, "mmap() failed");
> > - TC[2].dname = bad_addr;
> > -#endif
> > + TST_EXP_FAIL(chdir(tcases[i].dir), tcases[i].exp_errno);
> > }
> >
> > -void cleanup(void)
> > -{
> > - tst_rmdir();
> > -
> > -}
> > +static struct tst_test test = {
> > + .needs_tmpdir = 1,
> > + .test = verify_chdir,
> > + .tcnt = ARRAY_SIZE(tcases),
> > +};
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-03-11 1:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-04 1:44 [LTP] [PATCH v2] syscalls/chdir04: Convert to the new API Shiyang Ruan
2021-03-11 1:11 ` Xiao Yang
2021-03-11 1:23 ` ruansy.fnst
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.