From: Ma Xinjian via ltp <ltp@lists.linux.it>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH] request_key: Add negative tests for request_key
Date: Tue, 21 May 2024 16:15:52 +0800 [thread overview]
Message-ID: <20240521081552.2162-1-maxj.fnst@fujitsu.com> (raw)
Add negative tests for request_key(), when errno is EFAULT or EPERM
Signed-off-by: Ma Xinjian <maxj.fnst@fujitsu.com>
---
runtest/syscalls | 1 +
.../kernel/syscalls/request_key/.gitignore | 1 +
.../syscalls/request_key/request_key06.c | 52 +++++++++++++++++++
3 files changed, 54 insertions(+)
create mode 100644 testcases/kernel/syscalls/request_key/request_key06.c
diff --git a/runtest/syscalls b/runtest/syscalls
index 3a28123a5..c04359fcd 100644
--- a/runtest/syscalls
+++ b/runtest/syscalls
@@ -1187,6 +1187,7 @@ request_key02 request_key02
request_key03 request_key03
request_key04 request_key04
request_key05 request_key05
+request_key06 request_key06
rmdir01 rmdir01
rmdir02 rmdir02
diff --git a/testcases/kernel/syscalls/request_key/.gitignore b/testcases/kernel/syscalls/request_key/.gitignore
index e8dc1c570..6dcf613c7 100644
--- a/testcases/kernel/syscalls/request_key/.gitignore
+++ b/testcases/kernel/syscalls/request_key/.gitignore
@@ -3,3 +3,4 @@
/request_key03
/request_key04
/request_key05
+/request_key06
diff --git a/testcases/kernel/syscalls/request_key/request_key06.c b/testcases/kernel/syscalls/request_key/request_key06.c
new file mode 100644
index 000000000..bd872867b
--- /dev/null
+++ b/testcases/kernel/syscalls/request_key/request_key06.c
@@ -0,0 +1,52 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (c) 2024 FUJITSU LIMITED. All Rights Reserved.
+ * Author: Ma Xinjian <maxj.fnst@fujitsu.com>
+ */
+
+/*\
+ * [Description]
+ *
+ * Verify that request_key(2) fails with
+ *
+ * - EFAULT when type points outside the process's accessible address space
+ * - EFAULT when description points outside the process's accessible address space
+ * - EFAULT when callout_info points outside the process's accessible address space
+ * - EPERM when type argument started with a period '.'
+ */
+
+#include "tst_test.h"
+#include "lapi/keyctl.h"
+
+static struct test_case_t {
+ char *type;
+ char *description;
+ char *callout_info;
+ key_serial_t dest_keyring;
+ int expected_errno;
+ char *desc;
+} tcases[] = {
+ {(char *)(-1), "description", NULL, KEY_SPEC_PROCESS_KEYRING, EFAULT,
+ "type points outside the process's accessible address space"},
+ {"type", (char *)(-1), NULL, KEY_SPEC_PROCESS_KEYRING, EFAULT,
+ "description points outside the process's accessible address space"},
+ {"type", "description", (char *)(-1), KEY_SPEC_PROCESS_KEYRING, EFAULT,
+ "callout_info points outside the process's accessible address space"},
+ {".type", "description", NULL, KEY_SPEC_PROCESS_KEYRING, EPERM,
+ "type argument started with a period '.'"},
+};
+
+static void verify_request_key(unsigned int i)
+{
+ struct test_case_t *tc = &tcases[i];
+
+ TST_EXP_FAIL2(request_key(tc->type, tc->description, tc->callout_info,
+ tc->dest_keyring),
+ tc->expected_errno,
+ "%s", tc->desc);
+}
+
+static struct tst_test test = {
+ .tcnt = ARRAY_SIZE(tcases),
+ .test = verify_request_key,
+};
--
2.39.3
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next reply other threads:[~2024-05-21 8:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-21 8:15 Ma Xinjian via ltp [this message]
2024-07-30 10:34 ` [LTP] [PATCH] request_key: Add negative tests for request_key Petr Vorel
2024-09-17 8:18 ` Cyril Hrubis
2024-09-17 8:18 ` Cyril Hrubis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240521081552.2162-1-maxj.fnst@fujitsu.com \
--to=ltp@lists.linux.it \
--cc=maxj.fnst@fujitsu.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox