* [LTP] [PATCH v2 2/2] request_key/request_key02.c: add new testcase
2016-03-16 7:28 ` [LTP] [PATCH v2 1/2] request_key/request_key01.c: " Xiao Yang
@ 2016-03-16 7:28 ` Xiao Yang
2016-04-13 16:03 ` Cyril Hrubis
2016-04-13 8:02 ` [LTP] [PATCH v2 1/2] request_key/request_key01.c: " Xiao Yang
2016-04-13 15:56 ` Cyril Hrubis
2 siblings, 1 reply; 12+ messages in thread
From: Xiao Yang @ 2016-03-16 7:28 UTC (permalink / raw)
To: ltp
1) request_key(2) fails if no matching key was found and
set errno to ENOKEY.
2) request_key(2) fails if a revoked key was found and
set errno to EKEYREVOKED.
3) request_key(2) fails if an expired key was found and
set errno to EKEYEXPIRED.
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
runtest/ltplite | 1 +
runtest/syscalls | 1 +
testcases/kernel/syscalls/.gitignore | 1 +
.../kernel/syscalls/request_key/request_key02.c | 150 +++++++++++++++++++++
4 files changed, 153 insertions(+)
create mode 100644 testcases/kernel/syscalls/request_key/request_key02.c
diff --git a/runtest/ltplite b/runtest/ltplite
index e3dd403..f0deac0 100644
--- a/runtest/ltplite
+++ b/runtest/ltplite
@@ -669,6 +669,7 @@ rename13 rename13
rename14 rename14
request_key01 request_key01
+request_key02 request_key02
rmdir01 rmdir01
rmdir02 rmdir02
diff --git a/runtest/syscalls b/runtest/syscalls
index e442297..b67d524 100644
--- a/runtest/syscalls
+++ b/runtest/syscalls
@@ -897,6 +897,7 @@ renameat201 renameat201
renameat202 renameat202 -i 10
request_key01 request_key01
+request_key02 request_key02
rmdir01 rmdir01
rmdir02 rmdir02
diff --git a/testcases/kernel/syscalls/.gitignore b/testcases/kernel/syscalls/.gitignore
index 92dbda4..2a4cb33 100644
--- a/testcases/kernel/syscalls/.gitignore
+++ b/testcases/kernel/syscalls/.gitignore
@@ -741,6 +741,7 @@
/renameat2/renameat201
/renameat2/renameat202
/request_key/request_key01
+/request_key/request_key02
/rmdir/rmdir01
/rmdir/rmdir02
/rmdir/rmdir03
diff --git a/testcases/kernel/syscalls/request_key/request_key02.c b/testcases/kernel/syscalls/request_key/request_key02.c
new file mode 100644
index 0000000..b40b934
--- /dev/null
+++ b/testcases/kernel/syscalls/request_key/request_key02.c
@@ -0,0 +1,150 @@
+/*
+* Copyright (c) 2016 Fujitsu Ltd.
+* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+*
+* 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.
+*
+* You should have received a copy of the GNU General Public License
+* alone with this program.
+*/
+
+/*
+* Test Name: request_key02
+*
+* Description:
+* 1) request_key(2) fails if no matching key was found.
+* 2) request_key(2) fails if A revoked key was found.
+* 3) request_key(2) fails if An expired key was found.
+*
+* Expected Result:
+* 1) request_key(2) should return -1 and set errno to ENOKEY.
+* 2) request_key(2) should return -1 and set errno to EKEYREVOKED.
+* 3) request_key(2) should return -1 and set errno to EKEYEXPIRED.
+*
+*/
+
+#include "config.h"
+#include <errno.h>
+#include <sys/types.h>
+#ifdef HAVE_KEYUTILS_H
+#include <keyutils.h>
+#endif
+#include "test.h"
+
+char *TCID = "request_key02";
+
+static struct test_case {
+ const char *des;
+ int exp_err;
+ int id;
+} tc[] = {
+ /* test1 */
+ {"ltp1", ENOKEY, 0},
+ /* test2 */
+ {"ltp2", EKEYREVOKED, 0},
+ /* test3 */
+ {"ltp3", EKEYEXPIRED, 0}
+};
+
+static void verify_request_key(struct test_case *);
+static void setup(void);
+static int init_key(char *, int);
+static void cleanup(void);
+
+int TST_TOTAL = ARRAY_SIZE(tc);
+
+#ifdef HAVE_KEYUTILS_H
+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++)
+ verify_request_key(&tc[i]);
+ }
+
+ cleanup();
+ tst_exit();
+}
+
+static void verify_request_key(struct test_case *tc)
+{
+ TEST(request_key("keyring", tc->des, NULL, tc->id));
+ if (TEST_RETURN != -1) {
+ tst_resm(TFAIL, "request_key() succeed unexpectly");
+ return;
+ }
+
+ if (TEST_ERRNO == tc->exp_err)
+ tst_resm(TPASS | TTERRNO, "request_key() failed expectly");
+ else
+ tst_resm(TFAIL | TTERRNO, "request_key() failed unexpectly");
+}
+
+static void setup(void)
+{
+ tst_sig(NOFORK, DEF_HANDLER, cleanup);
+
+ TEST_PAUSE;
+
+ tst_tmpdir();
+
+ tc[0].id = KEY_REQKEY_DEFL_DEFAULT;
+
+ tc[1].id = init_key("ltp2", KEYCTL_REVOKE);
+
+ tc[2].id = init_key("ltp3", KEYCTL_SET_TIMEOUT);
+}
+
+static int init_key(char *name, int cmd)
+{
+ int n;
+ int sec = 1;
+
+ n = add_key("keyring", name, NULL, 0, KEY_SPEC_THREAD_KEYRING);
+ if (n == -1)
+ tst_brkm(TBROK | TERRNO, cleanup, "add_key() failed");
+
+ if (cmd == KEYCTL_REVOKE) {
+ if (keyctl(cmd, n) == -1) {
+ tst_brkm(TBROK | TERRNO, cleanup,
+ "failed to revoke a key");
+ }
+ }
+
+ if (cmd == KEYCTL_SET_TIMEOUT) {
+ if (keyctl(cmd, n, sec) == -1) {
+ tst_brkm(TBROK | TERRNO, cleanup,
+ "failed to set timeout for a key");
+ }
+
+ sleep(sec + 1);
+ }
+
+ return n;
+}
+
+static void cleanup(void)
+{
+ tst_rmdir();
+}
+
+#else
+int main(void)
+{
+ tst_brkm(TCONF, NULL, "compilation failed without keyutils.h");
+}
+#endif /* HAVE_LINUX_KEYCTL_H */
--
1.8.3.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [LTP] [PATCH v2 2/2] request_key/request_key02.c: add new testcase
2016-03-16 7:28 ` [LTP] [PATCH v2 2/2] request_key/request_key02.c: " Xiao Yang
@ 2016-04-13 16:03 ` Cyril Hrubis
2016-04-14 9:22 ` [LTP] [PATCH v3 1/2] request_key/request_key01.c: " Xiao Yang
0 siblings, 1 reply; 12+ messages in thread
From: Cyril Hrubis @ 2016-04-13 16:03 UTC (permalink / raw)
To: ltp
Hi!
> +/*
> +* Test Name: request_key02
> +*
> +* Description:
> +* 1) request_key(2) fails if no matching key was found.
> +* 2) request_key(2) fails if A revoked key was found.
> +* 3) request_key(2) fails if An expired key was found.
> +*
> +* Expected Result:
> +* 1) request_key(2) should return -1 and set errno to ENOKEY.
> +* 2) request_key(2) should return -1 and set errno to EKEYREVOKED.
> +* 3) request_key(2) should return -1 and set errno to EKEYEXPIRED.
> +*
> +*/
> +
> +#include "config.h"
> +#include <errno.h>
> +#include <sys/types.h>
> +#ifdef HAVE_KEYUTILS_H
> +#include <keyutils.h>
> +#endif
> +#include "test.h"
> +
> +char *TCID = "request_key02";
> +
> +static struct test_case {
> + const char *des;
> + int exp_err;
> + int id;
> +} tc[] = {
> + /* test1 */
> + {"ltp1", ENOKEY, 0},
> + /* test2 */
> + {"ltp2", EKEYREVOKED, 0},
> + /* test3 */
> + {"ltp3", EKEYEXPIRED, 0}
> +};
> +
> +static void verify_request_key(struct test_case *);
> +static void setup(void);
> +static int init_key(char *, int);
> +static void cleanup(void);
> +
> +int TST_TOTAL = ARRAY_SIZE(tc);
> +
> +#ifdef HAVE_KEYUTILS_H
> +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++)
> + verify_request_key(&tc[i]);
> + }
> +
> + cleanup();
> + tst_exit();
> +}
> +
> +static void verify_request_key(struct test_case *tc)
> +{
> + TEST(request_key("keyring", tc->des, NULL, tc->id));
> + if (TEST_RETURN != -1) {
> + tst_resm(TFAIL, "request_key() succeed unexpectly");
> + return;
> + }
> +
> + if (TEST_ERRNO == tc->exp_err)
> + tst_resm(TPASS | TTERRNO, "request_key() failed expectly");
> + else
> + tst_resm(TFAIL | TTERRNO, "request_key() failed unexpectly");
Ideally the error message should contain the expected errno as well.
> +}
> +
> +static void setup(void)
> +{
> + tst_sig(NOFORK, DEF_HANDLER, cleanup);
> +
> + TEST_PAUSE;
> +
> + tst_tmpdir();
Here as well.
> + tc[0].id = KEY_REQKEY_DEFL_DEFAULT;
> +
> + tc[1].id = init_key("ltp2", KEYCTL_REVOKE);
> +
> + tc[2].id = init_key("ltp3", KEYCTL_SET_TIMEOUT);
This is ugly. What you should do instead is to declare the id in the
test structure as a pointer and initialize it to a pointer to a variable
that is initialized in the setup.
> +}
> +
> +static int init_key(char *name, int cmd)
> +{
> + int n;
> + int sec = 1;
> +
> + n = add_key("keyring", name, NULL, 0, KEY_SPEC_THREAD_KEYRING);
> + if (n == -1)
> + tst_brkm(TBROK | TERRNO, cleanup, "add_key() failed");
> +
> + if (cmd == KEYCTL_REVOKE) {
> + if (keyctl(cmd, n) == -1) {
> + tst_brkm(TBROK | TERRNO, cleanup,
> + "failed to revoke a key");
> + }
> + }
> +
> + if (cmd == KEYCTL_SET_TIMEOUT) {
> + if (keyctl(cmd, n, sec) == -1) {
> + tst_brkm(TBROK | TERRNO, cleanup,
> + "failed to set timeout for a key");
> + }
> +
> + sleep(sec + 1);
> + }
> +
> + return n;
> +}
> +
> +static void cleanup(void)
> +{
> + tst_rmdir();
> +}
> +
> +#else
> +int main(void)
> +{
> + tst_brkm(TCONF, NULL, "compilation failed without keyutils.h");
Here as well.
> +}
> +#endif /* HAVE_LINUX_KEYCTL_H */
--
Cyril Hrubis
chrubis@suse.cz
^ permalink raw reply [flat|nested] 12+ messages in thread* [LTP] [PATCH v3 1/2] request_key/request_key01.c: add new testcase
2016-04-13 16:03 ` Cyril Hrubis
@ 2016-04-14 9:22 ` Xiao Yang
2016-04-14 9:22 ` [LTP] [PATCH v3 2/2] request_key/request_key02.c: " Xiao Yang
0 siblings, 1 reply; 12+ messages in thread
From: Xiao Yang @ 2016-04-14 9:22 UTC (permalink / raw)
To: ltp
The testcase checks basic functionality of the request_key(2).
request_key(2) asks the kernel to find a key which matches the
specified description. If successful, it attaches it to the
nominated keyring and returns its serial number.
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
configure.ac | 1 +
include/mk/config.mk.in | 1 +
m4/ltp-keyutils.m4 | 24 ++++++
runtest/ltplite | 2 +
runtest/syscalls | 2 +
testcases/kernel/syscalls/.gitignore | 1 +
testcases/kernel/syscalls/request_key/Makefile | 24 ++++++
.../kernel/syscalls/request_key/request_key01.c | 95 ++++++++++++++++++++++
8 files changed, 150 insertions(+)
create mode 100644 m4/ltp-keyutils.m4
create mode 100644 testcases/kernel/syscalls/request_key/Makefile
create mode 100644 testcases/kernel/syscalls/request_key/request_key01.c
diff --git a/configure.ac b/configure.ac
index 2fb1ebc..7b98332 100644
--- a/configure.ac
+++ b/configure.ac
@@ -185,5 +185,6 @@ LTP_CHECK_KCMP_TYPE
LTP_CHECK_PREADV
LTP_CHECK_PWRITEV
LTP_CHECK_EPOLL_PWAIT
+LTP_CHECK_KEYUTILS_SUPPORT
AC_OUTPUT
diff --git a/include/mk/config.mk.in b/include/mk/config.mk.in
index 73bd964..04b34e2 100644
--- a/include/mk/config.mk.in
+++ b/include/mk/config.mk.in
@@ -46,6 +46,7 @@ NUMA_LIBS := @NUMA_LIBS@
SELINUX_LIBS := @SELINUX_LIBS@
TIRPC_CPPFLAGS := @TIRPC_CPPFLAGS@
TIRPC_LIBS := @TIRPC_LIBS@
+KEYUTILS_LIBS := @KEYUTILS_LIBS@
prefix := @prefix@
diff --git a/m4/ltp-keyutils.m4 b/m4/ltp-keyutils.m4
new file mode 100644
index 0000000..74b7d32
--- /dev/null
+++ b/m4/ltp-keyutils.m4
@@ -0,0 +1,24 @@
+dnl
+dnl Copyright (c) 2016 Fujitsu Ltd.
+dnl Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+dnl
+dnl This program is free software; you can redistribute it and/or modify it
+dnl under the terms of version 2 of the GNU General Public License as
+dnl published by the Free Software Foundation.
+dnl
+dnl This program is distributed in the hope that it would be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl alone with this program.
+dnl
+
+dnl
+dnl LTP_CHECK_KEYUTILS_SUPPORT
+dnl ----------------------------
+dnl
+AC_DEFUN([LTP_CHECK_KEYUTILS_SUPPORT],[
+AC_CHECK_HEADERS([keyutils.h], [keyutils_libs="-lkeyutils"])
+AC_SUBST([KEYUTILS_LIBS], [$keyutils_libs])
+])
diff --git a/runtest/ltplite b/runtest/ltplite
index 3c256a9..ebd5e77 100644
--- a/runtest/ltplite
+++ b/runtest/ltplite
@@ -664,6 +664,8 @@ rename12 rename12
rename13 rename13
rename14 rename14
+request_key01 request_key01
+
rmdir01 rmdir01
rmdir02 rmdir02
rmdir03 rmdir03
diff --git a/runtest/syscalls b/runtest/syscalls
index ca922e6..8c87161 100644
--- a/runtest/syscalls
+++ b/runtest/syscalls
@@ -895,6 +895,8 @@ renameat01 renameat01
renameat201 renameat201
renameat202 renameat202 -i 10
+request_key01 request_key01
+
rmdir01 rmdir01
rmdir02 rmdir02
rmdir03 rmdir03
diff --git a/testcases/kernel/syscalls/.gitignore b/testcases/kernel/syscalls/.gitignore
index ad2618c..21130d2 100644
--- a/testcases/kernel/syscalls/.gitignore
+++ b/testcases/kernel/syscalls/.gitignore
@@ -742,6 +742,7 @@
/renameat/renameat01
/renameat2/renameat201
/renameat2/renameat202
+/request_key/request_key01
/rmdir/rmdir01
/rmdir/rmdir02
/rmdir/rmdir03
diff --git a/testcases/kernel/syscalls/request_key/Makefile b/testcases/kernel/syscalls/request_key/Makefile
new file mode 100644
index 0000000..9add429
--- /dev/null
+++ b/testcases/kernel/syscalls/request_key/Makefile
@@ -0,0 +1,24 @@
+# Copyright (c) 2016 Fujitsu Ltd.
+# Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+#
+# 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.
+#
+
+top_srcdir ?= ../../../..
+
+include $(top_srcdir)/include/mk/testcases.mk
+
+LDLIBS += $(KEYUTILS_LIBS)
+
+include $(top_srcdir)/include/mk/generic_leaf_target.mk
diff --git a/testcases/kernel/syscalls/request_key/request_key01.c b/testcases/kernel/syscalls/request_key/request_key01.c
new file mode 100644
index 0000000..e7c1f38
--- /dev/null
+++ b/testcases/kernel/syscalls/request_key/request_key01.c
@@ -0,0 +1,95 @@
+/*
+* Copyright (c) 2016 Fujitsu Ltd.
+* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+*
+* 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.
+*
+* You should have received a copy of the GNU General Public License
+* alone with this program.
+*/
+
+/*
+* Test Name: request_key01
+*
+* Description:
+* The testcase checks basic functionality of the request_key(2).
+* request_key(2) asks the kernel to find a key which matches the
+* specified description. If successful, it attaches it to the
+* nominated keyring and returns its serial number.
+*
+*/
+
+#include "config.h"
+#include <errno.h>
+#include <sys/types.h>
+#ifdef HAVE_KEYUTILS_H
+#include <keyutils.h>
+#endif
+
+#include "test.h"
+
+char *TCID = "request_key01";
+
+#ifdef HAVE_KEYUTILS_H
+
+static int res;
+
+static void verify_request_key(void);
+static void setup(void);
+
+int TST_TOTAL = 1;
+
+int main(int ac, char **av)
+{
+ int lc;
+
+ tst_parse_opts(ac, av, NULL, NULL);
+
+ setup();
+
+ for (lc = 0; TEST_LOOPING(lc); lc++) {
+ tst_count = 0;
+
+ verify_request_key();
+ }
+
+ tst_exit();
+}
+
+static void verify_request_key(void)
+{
+ TEST(request_key("keyring", "ltp", NULL, KEY_REQKEY_DEFL_DEFAULT));
+ if (TEST_RETURN == -1) {
+ tst_resm(TFAIL | TERRNO, "request_key() failed");
+ return;
+ }
+
+ if (TEST_RETURN != res)
+ tst_resm(TFAIL, "serial number mismatched");
+ else
+ tst_resm(TPASS, "request_key() succeed");
+}
+
+static void setup(void)
+{
+ tst_sig(NOFORK, DEF_HANDLER, NULL);
+
+ TEST_PAUSE;
+
+ res = add_key("keyring", "ltp", NULL, 0, KEY_SPEC_THREAD_KEYRING);
+ if (res == -1)
+ tst_brkm(TBROK | TERRNO, NULL, "add_key() failed");
+}
+
+#else
+int main(void)
+{
+ tst_brkm(TCONF, NULL, "keyutils.h was missing at compilation");
+}
+#endif /* HAVE_LINUX_KEYCTL_H */
--
1.8.3.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [LTP] [PATCH v3 2/2] request_key/request_key02.c: add new testcase
2016-04-14 9:22 ` [LTP] [PATCH v3 1/2] request_key/request_key01.c: " Xiao Yang
@ 2016-04-14 9:22 ` Xiao Yang
2016-04-14 19:37 ` Cyril Hrubis
0 siblings, 1 reply; 12+ messages in thread
From: Xiao Yang @ 2016-04-14 9:22 UTC (permalink / raw)
To: ltp
1) request_key(2) fails if no matching key was found and
set errno to ENOKEY.
2) request_key(2) fails if a revoked key was found and
set errno to EKEYREVOKED.
3) request_key(2) fails if an expired key was found and
set errno to EKEYEXPIRED.
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
runtest/ltplite | 1 +
runtest/syscalls | 1 +
testcases/kernel/syscalls/.gitignore | 1 +
.../kernel/syscalls/request_key/request_key02.c | 146 +++++++++++++++++++++
4 files changed, 149 insertions(+)
create mode 100644 testcases/kernel/syscalls/request_key/request_key02.c
diff --git a/runtest/ltplite b/runtest/ltplite
index ebd5e77..8b8121d 100644
--- a/runtest/ltplite
+++ b/runtest/ltplite
@@ -665,6 +665,7 @@ rename13 rename13
rename14 rename14
request_key01 request_key01
+request_key02 request_key02
rmdir01 rmdir01
rmdir02 rmdir02
diff --git a/runtest/syscalls b/runtest/syscalls
index 8c87161..edf70eb 100644
--- a/runtest/syscalls
+++ b/runtest/syscalls
@@ -896,6 +896,7 @@ renameat201 renameat201
renameat202 renameat202 -i 10
request_key01 request_key01
+request_key02 request_key02
rmdir01 rmdir01
rmdir02 rmdir02
diff --git a/testcases/kernel/syscalls/.gitignore b/testcases/kernel/syscalls/.gitignore
index 21130d2..63fc261 100644
--- a/testcases/kernel/syscalls/.gitignore
+++ b/testcases/kernel/syscalls/.gitignore
@@ -743,6 +743,7 @@
/renameat2/renameat201
/renameat2/renameat202
/request_key/request_key01
+/request_key/request_key02
/rmdir/rmdir01
/rmdir/rmdir02
/rmdir/rmdir03
diff --git a/testcases/kernel/syscalls/request_key/request_key02.c b/testcases/kernel/syscalls/request_key/request_key02.c
new file mode 100644
index 0000000..94cad28
--- /dev/null
+++ b/testcases/kernel/syscalls/request_key/request_key02.c
@@ -0,0 +1,146 @@
+/*
+* Copyright (c) 2016 Fujitsu Ltd.
+* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
+*
+* 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.
+*
+* You should have received a copy of the GNU General Public License
+* alone with this program.
+*/
+
+/*
+* Test Name: request_key02
+*
+* Description:
+* 1) request_key(2) fails if no matching key was found.
+* 2) request_key(2) fails if A revoked key was found.
+* 3) request_key(2) fails if An expired key was found.
+*
+* Expected Result:
+* 1) request_key(2) should return -1 and set errno to ENOKEY.
+* 2) request_key(2) should return -1 and set errno to EKEYREVOKED.
+* 3) request_key(2) should return -1 and set errno to EKEYEXPIRED.
+*
+*/
+
+#include "config.h"
+#include <errno.h>
+#include <sys/types.h>
+#ifdef HAVE_KEYUTILS_H
+#include <keyutils.h>
+#endif
+#include "test.h"
+
+char *TCID = "request_key02";
+
+#ifdef HAVE_KEYUTILS_H
+
+static int res1;
+static int res2;
+static int res3;
+
+static struct test_case {
+ const char *des;
+ int exp_err;
+ int *id;
+} tc[] = {
+ {"ltp1", ENOKEY, &res1},
+ {"ltp2", EKEYREVOKED, &res2},
+ {"ltp3", EKEYEXPIRED, &res3}
+};
+
+static void verify_request_key(struct test_case *);
+static void setup(void);
+static int init_key(char *, int);
+
+int TST_TOTAL = ARRAY_SIZE(tc);
+
+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++)
+ verify_request_key(&tc[i]);
+ }
+
+ tst_exit();
+}
+
+static void verify_request_key(struct test_case *tc)
+{
+ TEST(request_key("keyring", tc->des, NULL, *tc->id));
+ if (TEST_RETURN != -1) {
+ tst_resm(TFAIL, "request_key() succeed unexpectly");
+ return;
+ }
+
+ if (TEST_ERRNO == tc->exp_err) {
+ tst_resm(TPASS | TTERRNO, "request_key() failed expectly");
+ return;
+ }
+
+ tst_resm(TFAIL | TTERRNO, "request_key() failed unexpectly, "
+ "expected %s", tst_strerrno(tc->exp_err));
+}
+
+static void setup(void)
+{
+ tst_sig(NOFORK, DEF_HANDLER, NULL);
+
+ TEST_PAUSE;
+
+ res1 = KEY_REQKEY_DEFL_DEFAULT;
+
+ res2 = init_key("ltp2", KEYCTL_REVOKE);
+
+ res3 = init_key("ltp3", KEYCTL_SET_TIMEOUT);
+}
+
+static int init_key(char *name, int cmd)
+{
+ int n;
+ int sec = 1;
+
+ n = add_key("keyring", name, NULL, 0, KEY_SPEC_THREAD_KEYRING);
+ if (n == -1)
+ tst_brkm(TBROK | TERRNO, NULL, "add_key() failed");
+
+ if (cmd == KEYCTL_REVOKE) {
+ if (keyctl(cmd, n) == -1) {
+ tst_brkm(TBROK | TERRNO, NULL,
+ "failed to revoke a key");
+ }
+ }
+
+ if (cmd == KEYCTL_SET_TIMEOUT) {
+ if (keyctl(cmd, n, sec) == -1) {
+ tst_brkm(TBROK | TERRNO, NULL,
+ "failed to set timeout for a key");
+ }
+
+ sleep(sec + 1);
+ }
+
+ return n;
+}
+
+#else
+int main(void)
+{
+ tst_brkm(TCONF, NULL, "keyutils.h was missing at compilation");
+}
+#endif /* HAVE_LINUX_KEYCTL_H */
--
1.8.3.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [LTP] [PATCH v2 1/2] request_key/request_key01.c: add new testcase
2016-03-16 7:28 ` [LTP] [PATCH v2 1/2] request_key/request_key01.c: " Xiao Yang
2016-03-16 7:28 ` [LTP] [PATCH v2 2/2] request_key/request_key02.c: " Xiao Yang
@ 2016-04-13 8:02 ` Xiao Yang
2016-04-13 15:56 ` Cyril Hrubis
2 siblings, 0 replies; 12+ messages in thread
From: Xiao Yang @ 2016-04-13 8:02 UTC (permalink / raw)
To: ltp
Hi!
ping :-)
Thanks
Xiao Yang
> The testcase checks basic functionality of the request_key(2).
> request_key(2) asks the kernel to find a key which matches the
> specified description. If successful, it attaches it to the
> nominated keyring and returns its serial number.
>
> Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
> ---
> configure.ac | 1 +
> runtest/ltplite | 2 +
> runtest/syscalls | 2 +
> testcases/kernel/syscalls/.gitignore | 1 +
> testcases/kernel/syscalls/request_key/Makefile | 27 ++++++
> .../kernel/syscalls/request_key/request_key01.c | 103 +++++++++++++++++++++
> 6 files changed, 136 insertions(+)
> create mode 100644 testcases/kernel/syscalls/request_key/Makefile
> create mode 100644 testcases/kernel/syscalls/request_key/request_key01.c
>
> diff --git a/configure.ac b/configure.ac
> index b065fe6..96f9a0b 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -45,6 +45,7 @@ AC_CHECK_HEADERS([ \
> sys/fanotify.h \
> sys/jfsdmapi.h \
> sys/prctl.h \
> + keyutils.h \
> ])
>
> # Tools knobs
> diff --git a/runtest/ltplite b/runtest/ltplite
> index fa52588..e3dd403 100644
> --- a/runtest/ltplite
> +++ b/runtest/ltplite
> @@ -668,6 +668,8 @@ rename12 rename12
> rename13 rename13
> rename14 rename14
>
> +request_key01 request_key01
> +
> rmdir01 rmdir01
> rmdir02 rmdir02
> rmdir03 rmdir03
> diff --git a/runtest/syscalls b/runtest/syscalls
> index b41c927..e442297 100644
> --- a/runtest/syscalls
> +++ b/runtest/syscalls
> @@ -896,6 +896,8 @@ renameat01 renameat01
> renameat201 renameat201
> renameat202 renameat202 -i 10
>
> +request_key01 request_key01
> +
> rmdir01 rmdir01
> rmdir02 rmdir02
> rmdir03 rmdir03
> diff --git a/testcases/kernel/syscalls/.gitignore b/testcases/kernel/syscalls/.gitignore
> index 0540928..92dbda4 100644
> --- a/testcases/kernel/syscalls/.gitignore
> +++ b/testcases/kernel/syscalls/.gitignore
> @@ -740,6 +740,7 @@
> /renameat/renameat01
> /renameat2/renameat201
> /renameat2/renameat202
> +/request_key/request_key01
> /rmdir/rmdir01
> /rmdir/rmdir02
> /rmdir/rmdir03
> diff --git a/testcases/kernel/syscalls/request_key/Makefile b/testcases/kernel/syscalls/request_key/Makefile
> new file mode 100644
> index 0000000..2ee14a9
> --- /dev/null
> +++ b/testcases/kernel/syscalls/request_key/Makefile
> @@ -0,0 +1,27 @@
> +# Copyright (c) 2016 Fujitsu Ltd.
> +# Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> +#
> +# 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.
> +#
> +
> +top_srcdir ?= ../../../..
> +have_keyutil ?= /usr/include/keyutils.h
> +
> +include $(top_srcdir)/include/mk/testcases.mk
> +
> +ifeq ($(have_keyutil), $(wildcard $(have_keyutil)))
> +LDLIBS += -lkeyutils
> +endif
> +
> +include $(top_srcdir)/include/mk/generic_leaf_target.mk
> diff --git a/testcases/kernel/syscalls/request_key/request_key01.c b/testcases/kernel/syscalls/request_key/request_key01.c
> new file mode 100644
> index 0000000..9d99e85
> --- /dev/null
> +++ b/testcases/kernel/syscalls/request_key/request_key01.c
> @@ -0,0 +1,103 @@
> +/*
> +* Copyright (c) 2016 Fujitsu Ltd.
> +* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> +*
> +* 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.
> +*
> +* You should have received a copy of the GNU General Public License
> +* alone with this program.
> +*/
> +
> +/*
> +* Test Name: request_key01
> +*
> +* Description:
> +* The testcase checks basic functionality of the request_key(2).
> +* request_key(2) asks the kernel to find a key which matches the
> +* specified description. If successful, it attaches it to the
> +* nominated keyring and returns its serial number.
> +*
> +*/
> +
> +#include "config.h"
> +#include <errno.h>
> +#include <sys/types.h>
> +#ifdef HAVE_KEYUTILS_H
> +#include <keyutils.h>
> +#endif
> +
> +#include "test.h"
> +
> +char *TCID = "request_key01";
> +
> +static int res;
> +
> +static void verify_request_key(void);
> +static void setup(void);
> +static void cleanup(void);
> +
> +int TST_TOTAL = 1;
> +
> +#ifdef HAVE_KEYUTILS_H
> +int main(int ac, char **av)
> +{
> + int lc;
> +
> + tst_parse_opts(ac, av, NULL, NULL);
> +
> + setup();
> +
> + for (lc = 0; TEST_LOOPING(lc); lc++) {
> + tst_count = 0;
> +
> + verify_request_key();
> + }
> +
> + cleanup();
> + tst_exit();
> +}
> +
> +static void verify_request_key(void)
> +{
> + TEST(request_key("keyring", "ltp", NULL, KEY_REQKEY_DEFL_DEFAULT));
> + if (TEST_RETURN == -1) {
> + tst_resm(TFAIL | TERRNO, "request_key() failed");
> + return;
> + }
> +
> + if (TEST_RETURN != res)
> + tst_resm(TFAIL, "serial number mismatched");
> + else
> + tst_resm(TPASS, "request_key() succeed");
> +}
> +
> +static void setup(void)
> +{
> + tst_sig(NOFORK, DEF_HANDLER, cleanup);
> +
> + TEST_PAUSE;
> +
> + tst_tmpdir();
> +
> + res = add_key("keyring", "ltp", NULL, 0, KEY_SPEC_THREAD_KEYRING);
> + if (res == -1)
> + tst_brkm(TBROK | TERRNO, cleanup, "add_key() failed");
> +}
> +
> +static void cleanup(void)
> +{
> + tst_rmdir();
> +}
> +
> +#else
> +int main(void)
> +{
> + tst_brkm(TCONF, NULL, "compilation failed without keyutils.h");
> +}
> +#endif /* HAVE_LINUX_KEYCTL_H */
^ permalink raw reply [flat|nested] 12+ messages in thread* [LTP] [PATCH v2 1/2] request_key/request_key01.c: add new testcase
2016-03-16 7:28 ` [LTP] [PATCH v2 1/2] request_key/request_key01.c: " Xiao Yang
2016-03-16 7:28 ` [LTP] [PATCH v2 2/2] request_key/request_key02.c: " Xiao Yang
2016-04-13 8:02 ` [LTP] [PATCH v2 1/2] request_key/request_key01.c: " Xiao Yang
@ 2016-04-13 15:56 ` Cyril Hrubis
2 siblings, 0 replies; 12+ messages in thread
From: Cyril Hrubis @ 2016-04-13 15:56 UTC (permalink / raw)
To: ltp
Hi!
> @@ -0,0 +1,27 @@
> +# Copyright (c) 2016 Fujitsu Ltd.
> +# Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> +#
> +# 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.
> +#
> +
> +top_srcdir ?= ../../../..
> +have_keyutil ?= /usr/include/keyutils.h
> +
> +include $(top_srcdir)/include/mk/testcases.mk
> +
> +ifeq ($(have_keyutil), $(wildcard $(have_keyutil)))
This is ugly hack. The header does not need to be in the standard path
at all. What you should do instead is to call
AC_SUBST([KEYUTIL_LIBS, ...) in the configure part and do
LDLIBS+=$(KEYUTILS_LIBS) here. Have a look at the m4/ltp-acl.m4 or
m4/ltp-cap.m4 for instance.
> +LDLIBS += -lkeyutils
> +endif
> +
> +include $(top_srcdir)/include/mk/generic_leaf_target.mk
> diff --git a/testcases/kernel/syscalls/request_key/request_key01.c b/testcases/kernel/syscalls/request_key/request_key01.c
> new file mode 100644
> index 0000000..9d99e85
> --- /dev/null
> +++ b/testcases/kernel/syscalls/request_key/request_key01.c
> @@ -0,0 +1,103 @@
> +/*
> +* Copyright (c) 2016 Fujitsu Ltd.
> +* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
> +*
> +* 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.
> +*
> +* You should have received a copy of the GNU General Public License
> +* alone with this program.
> +*/
> +
> +/*
> +* Test Name: request_key01
> +*
> +* Description:
> +* The testcase checks basic functionality of the request_key(2).
> +* request_key(2) asks the kernel to find a key which matches the
> +* specified description. If successful, it attaches it to the
> +* nominated keyring and returns its serial number.
> +*
> +*/
> +
> +#include "config.h"
> +#include <errno.h>
> +#include <sys/types.h>
> +#ifdef HAVE_KEYUTILS_H
> +#include <keyutils.h>
> +#endif
> +
> +#include "test.h"
> +
> +char *TCID = "request_key01";
> +
> +static int res;
> +
> +static void verify_request_key(void);
> +static void setup(void);
> +static void cleanup(void);
> +
> +int TST_TOTAL = 1;
> +
> +#ifdef HAVE_KEYUTILS_H
> +int main(int ac, char **av)
> +{
> + int lc;
> +
> + tst_parse_opts(ac, av, NULL, NULL);
> +
> + setup();
> +
> + for (lc = 0; TEST_LOOPING(lc); lc++) {
> + tst_count = 0;
> +
> + verify_request_key();
> + }
> +
> + cleanup();
> + tst_exit();
> +}
> +
> +static void verify_request_key(void)
> +{
> + TEST(request_key("keyring", "ltp", NULL, KEY_REQKEY_DEFL_DEFAULT));
> + if (TEST_RETURN == -1) {
> + tst_resm(TFAIL | TERRNO, "request_key() failed");
> + return;
> + }
> +
> + if (TEST_RETURN != res)
> + tst_resm(TFAIL, "serial number mismatched");
> + else
> + tst_resm(TPASS, "request_key() succeed");
> +}
> +
> +static void setup(void)
> +{
> + tst_sig(NOFORK, DEF_HANDLER, cleanup);
> +
> + TEST_PAUSE;
> +
> + tst_tmpdir();
What do we create the temporary directory for? The test does not seem to
work with files at all.
> + res = add_key("keyring", "ltp", NULL, 0, KEY_SPEC_THREAD_KEYRING);
> + if (res == -1)
> + tst_brkm(TBROK | TERRNO, cleanup, "add_key() failed");
> +}
> +
> +static void cleanup(void)
> +{
> + tst_rmdir();
> +}
> +
> +#else
> +int main(void)
> +{
> + tst_brkm(TCONF, NULL, "compilation failed without keyutils.h");
^
Technically it didn't fail, but only
stub was compiled due to missing
library.
It should say something as:
"keyutils.h was missing at compilation"
> +}
> +#endif /* HAVE_LINUX_KEYCTL_H */
> --
> 1.8.3.1
>
>
>
--
Cyril Hrubis
chrubis@suse.cz
^ permalink raw reply [flat|nested] 12+ messages in thread