Linux Kernel Selftest development
 help / color / mirror / Atom feed
From: Shuah Khan <skhan@linuxfoundation.org>
To: Ivan Orlov <ivan.orlov0322@gmail.com>
Cc: linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org,
	himadrispandya@gmail.com,
	linux-kernel-mentees@lists.linuxfoundation.org,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH] selftests: media_tests: Add new subtest to video_device_test
Date: Wed, 5 Apr 2023 13:03:31 -0600	[thread overview]
Message-ID: <8038b636-7275-4f44-0b1f-df4190b94a40@linuxfoundation.org> (raw)
In-Reply-To: <20230401092207.16667-1-ivan.orlov0322@gmail.com>

On 4/1/23 03:22, Ivan Orlov wrote:
> Add new subtest to video_device_test to cover the VIDIOC_G_PRIORITY
> and VIDIOC_S_PRIORITY ioctl calls. This test tries to set the priority
> associated with the file descriptior via ioctl VIDIOC_S_PRIORITY
> command from V4L2 API. After that, the test tries to get the new
> priority via VIDIOC_G_PRIORITY ioctl command and compares the result
> with the v4l2_priority it set before. At the end, the test restores the
> old priority.
> 
> This test will increase the code coverage for video_device_test, so
> I think it might be useful. Additionally, this patch will refactor the
> video_device_test a little bit, according to the new functionality.
> 
> Signed-off-by: Ivan Orlov <ivan.orlov0322@gmail.com>
> ---
>   .../selftests/media_tests/video_device_test.c | 131 +++++++++++++-----
>   1 file changed, 93 insertions(+), 38 deletions(-)
> 
> diff --git a/tools/testing/selftests/media_tests/video_device_test.c b/tools/testing/selftests/media_tests/video_device_test.c
> index 0f6aef2e2593..5e6f65ad2ca3 100644
> --- a/tools/testing/selftests/media_tests/video_device_test.c
> +++ b/tools/testing/selftests/media_tests/video_device_test.c
> @@ -13,18 +13,9 @@
>    * in the Kselftest run. This test should be run when hardware and driver
>    * that makes use of V4L2 API is present.
>    *
> - * This test opens user specified Video Device and calls video ioctls in a
> - * loop once every 10 seconds.
> - *
>    * Usage:
>    *	sudo ./video_device_test -d /dev/videoX
> - *
> - *	While test is running, remove the device or unbind the driver and
> - *	ensure there are no use after free errors and other Oops in the
> - *	dmesg.
> - *	When possible, enable KaSan kernel config option for use-after-free
> - *	error detection.
> -*/
> + */

Leave this text here so it is easy to spot. There is no need to move this
down.

>   
>   #include <stdio.h>
>   #include <unistd.h>
> @@ -37,45 +28,67 @@
>   #include <time.h>
>   #include <linux/videodev2.h>
>   
> -int main(int argc, char **argv)
> +#define PRIORITY_MAX 4
> +
> +int priority_test(int fd)
>   {
> -	int opt;
> -	char video_dev[256];
> -	int count;
> -	struct v4l2_tuner vtuner;
> -	struct v4l2_capability vcap;
> +	/* This test will try to update the priority associated with a file descriptor */
> +
> +	enum v4l2_priority old_priority, new_priority, priority_to_compare;
>   	int ret;
> -	int fd;
> +	int result = 0;
>   
> -	if (argc < 2) {
> -		printf("Usage: %s [-d </dev/videoX>]\n", argv[0]);
> -		exit(-1);
> +	ret = ioctl(fd, VIDIOC_G_PRIORITY, &old_priority);
> +	if (ret < 0) {
> +		printf("Failed to get priority: %s\n", strerror(errno));
> +		return -1;
> +	}
> +	new_priority = (old_priority + 1) % PRIORITY_MAX;
> +	ret = ioctl(fd, VIDIOC_S_PRIORITY, &new_priority);
> +	if (ret < 0) {
> +		printf("Failed to set priority: %s\n", strerror(errno));
> +		return -1;
> +	}
> +	ret = ioctl(fd, VIDIOC_G_PRIORITY, &priority_to_compare);
> +	if (ret < 0) {
> +		printf("Failed to get new priority: %s\n", strerror(errno));
> +		result = -1;
> +		goto cleanup;
> +	}
> +	if (priority_to_compare != new_priority) {
> +		printf("Priority wasn't set - test failed\n");
> +		result = -1;
>   	}
>   
> -	/* Process arguments */
> -	while ((opt = getopt(argc, argv, "d:")) != -1) {
> -		switch (opt) {
> -		case 'd':
> -			strncpy(video_dev, optarg, sizeof(video_dev) - 1);
> -			video_dev[sizeof(video_dev)-1] = '\0';
> -			break;
> -		default:
> -			printf("Usage: %s [-d </dev/videoX>]\n", argv[0]);
> -			exit(-1);
> -		}
> +cleanup:
> +	ret = ioctl(fd, VIDIOC_S_PRIORITY, &old_priority);
> +	if (ret < 0) {
> +		printf("Failed to restore priority: %s\n", strerror(errno));
> +		return -1;
>   	}
> +	return result;
> +}
> +
> +int loop_test(int fd)
> +{
> +	/*
> +	 * This test opens user specified Video Device and calls video ioctls in a
> +	 * loop once every 10 seconds.
> +	 * While test is running, remove the device or unbind the driver and
> +	 * ensure there are no use after free errors and other Oops in the
> +	 * dmesg.
> +	 * When possible, enable KaSan kernel config option for use-after-free
> +	 * error detection.
> +	 */
> +	int count;
> +	struct v4l2_tuner vtuner;
> +	struct v4l2_capability vcap;
> +	int ret;
>   
>   	/* Generate random number of interations */
>   	srand((unsigned int) time(NULL));
>   	count = rand();
>   
> -	/* Open Video device and keep it open */
> -	fd = open(video_dev, O_RDWR);
> -	if (fd == -1) {
> -		printf("Video Device open errno %s\n", strerror(errno));
> -		exit(-1);
> -	}
> -
>   	printf("\nNote:\n"
>   	       "While test is running, remove the device or unbind\n"
>   	       "driver and ensure there are no use after free errors\n"
> @@ -98,4 +111,46 @@ int main(int argc, char **argv)
>   		sleep(10);
>   		count--;
>   	}
> +	return 0;
> +}
> +
> +int main(int argc, char **argv)
> +{
> +	int opt;
> +	char video_dev[256];
> +	int fd;
> +	int test_result;
> +
> +	if (argc < 2) {
> +		printf("Usage: %s [-d </dev/videoX>]\n", argv[0]);
> +		exit(-1);
> +	}
> +
> +	/* Process arguments */
> +	while ((opt = getopt(argc, argv, "d:")) != -1) {
> +		switch (opt) {
> +		case 'd':
> +			strncpy(video_dev, optarg, sizeof(video_dev) - 1);
> +			video_dev[sizeof(video_dev)-1] = '\0';
> +			break;
> +		default:
> +			printf("Usage: %s [-d </dev/videoX>]\n", argv[0]);
> +			exit(-1);
> +		}
> +	}
> +
> +	/* Open Video device and keep it open */
> +	fd = open(video_dev, O_RDWR);
> +	if (fd == -1) {
> +		printf("Video Device open errno %s\n", strerror(errno));
> +		exit(-1);
> +	}
> +
> +	test_result = priority_test(fd);
> +	if (!test_result)
> +		printf("Priority test - PASSED\n");
> +	else
> +		printf("Priority test - FAILED\n");
> +
> +	loop_test(fd);
>   }

Otherwise looks good to me.

thanks,
-- Shuah

  reply	other threads:[~2023-04-05 19:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-01  9:22 [PATCH] selftests: media_tests: Add new subtest to video_device_test Ivan Orlov
2023-04-05 19:03 ` Shuah Khan [this message]
2023-04-05 20:04   ` Ivan Orlov

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=8038b636-7275-4f44-0b1f-df4190b94a40@linuxfoundation.org \
    --to=skhan@linuxfoundation.org \
    --cc=himadrispandya@gmail.com \
    --cc=ivan.orlov0322@gmail.com \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    /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