All of lore.kernel.org
 help / color / mirror / Atom feed
From: Petr Vorel <pvorel@suse.cz>
To: Ma Xinjian <maxj.fnst@fujitsu.com>
Cc: ltp@lists.linux.it, Eric Biggers <ebiggers@google.com>,
	keyrings@vger.kernel.org
Subject: Re: [LTP] [PATCH] request_key: Add negative tests for request_key
Date: Tue, 30 Jul 2024 12:34:31 +0200	[thread overview]
Message-ID: <20240730103431.GA1371143@pevik> (raw)
In-Reply-To: <20240521081552.2162-1-maxj.fnst@fujitsu.com>

Hi Ma, Eric, all,

> Add negative tests for request_key(), when errno is EFAULT or EPERM

LGTM, thanks!
Reviewed-by: Petr Vorel <pvorel@suse.cz>

We also somehow test EACCES (request_key04.c). Looking into man page, there are
other interesting errno to test I suppose (EDQUOT, EKEYEXPIRED, EKEYREJECTED,
...)

@Eric, other devs, would you have time to have a quick look on the test?

Kind regards,
Petr

> 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,
> +};

WARNING: multiple messages have this Message-ID (diff)
From: Petr Vorel <pvorel@suse.cz>
To: Ma Xinjian <maxj.fnst@fujitsu.com>
Cc: keyrings@vger.kernel.org, ltp@lists.linux.it,
	Eric Biggers <ebiggers@google.com>
Subject: Re: [LTP] [PATCH] request_key: Add negative tests for request_key
Date: Tue, 30 Jul 2024 12:34:31 +0200	[thread overview]
Message-ID: <20240730103431.GA1371143@pevik> (raw)
In-Reply-To: <20240521081552.2162-1-maxj.fnst@fujitsu.com>

Hi Ma, Eric, all,

> Add negative tests for request_key(), when errno is EFAULT or EPERM

LGTM, thanks!
Reviewed-by: Petr Vorel <pvorel@suse.cz>

We also somehow test EACCES (request_key04.c). Looking into man page, there are
other interesting errno to test I suppose (EDQUOT, EKEYEXPIRED, EKEYREJECTED,
...)

@Eric, other devs, would you have time to have a quick look on the test?

Kind regards,
Petr

> 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,
> +};

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

  reply	other threads:[~2024-07-30 10:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-21  8:15 [LTP] [PATCH] request_key: Add negative tests for request_key Ma Xinjian via ltp
2024-07-30 10:34 ` Petr Vorel [this message]
2024-07-30 10:34   ` Petr Vorel
2024-09-17  8:18   ` Cyril Hrubis
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=20240730103431.GA1371143@pevik \
    --to=pvorel@suse.cz \
    --cc=ebiggers@google.com \
    --cc=keyrings@vger.kernel.org \
    --cc=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 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.