Linux Kernel Selftest development
 help / color / mirror / Atom feed
From: Shuah Khan <skhan@linuxfoundation.org>
To: Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>,
	Shuah Khan <shuah@kernel.org>
Cc: javiercarrascocruz@gmail.com, linux-kernel@vger.kernel.org,
	linux-kselftest@vger.kernel.org,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v2] selftest: acct: Add selftest for the acct() syscall
Date: Fri, 5 Jul 2024 11:39:53 -0600	[thread overview]
Message-ID: <85ce18a6-9783-427b-bfb4-64b82c0081cb@linuxfoundation.org> (raw)
In-Reply-To: <20240630-kselftest-acct-syscall-v2-1-b30bbe2a69cd@gmail.com>

On 6/30/24 13:22, Abdulrasaq Lawani wrote:
> Noticed that there was no selftest for the acct() syscall
> which enables the kernel to record terminated processes
> into a specified file.
> 
> The acct() system call enables or disables process accounting.
> If accounting is turned on, records for each terminating process
> are appended to a specified filename as it terminates. An argument of NULL
> causes accounting to be turned off.
> 
> This patch provides a test for the acct() syscall.
> 
> References:
> https://man7.org/linux/man-pages/man2/acct.2.html
> 
> Signed-off-by: Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>

What does the test output look like?

> ---
> Changes in v2:
> Add testcases to test error conditions.
> Add kselftest function for reporting results.
> 
> - Link to v1: https://lore.kernel.org/r/20240622-kselftest-acct-syscall-v1-1-d270b5be8d37@gmail.com
> ---
>   tools/testing/selftests/Makefile            |  1 +
>   tools/testing/selftests/acct/.gitignore     |  2 +
>   tools/testing/selftests/acct/Makefile       |  4 ++
>   tools/testing/selftests/acct/acct_syscall.c | 89 +++++++++++++++++++++++++++++
>   4 files changed, 96 insertions(+)
> 
> diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
> index 9039f3709aff..45a58ef5ad92 100644
> --- a/tools/testing/selftests/Makefile
> +++ b/tools/testing/selftests/Makefile
> @@ -1,4 +1,5 @@
>   # SPDX-License-Identifier: GPL-2.0
> +TARGETS += acct
>   TARGETS += alsa
>   TARGETS += amd-pstate
>   TARGETS += arm64
> diff --git a/tools/testing/selftests/acct/.gitignore b/tools/testing/selftests/acct/.gitignore
> new file mode 100644
> index 000000000000..8ab358d81bd2
> --- /dev/null
> +++ b/tools/testing/selftests/acct/.gitignore
> @@ -0,0 +1,2 @@
> +acct_syscall
> +config
> \ No newline at end of file

What is this?

> diff --git a/tools/testing/selftests/acct/Makefile b/tools/testing/selftests/acct/Makefile
> new file mode 100644
> index 000000000000..ff3e238c5634
> --- /dev/null
> +++ b/tools/testing/selftests/acct/Makefile
> @@ -0,0 +1,4 @@
> +TEST_GEN_PROGS := acct_syscall
> +CFLAGS += -Wall
> +
> +include ../lib.mk
> \ No newline at end of file
> diff --git a/tools/testing/selftests/acct/acct_syscall.c b/tools/testing/selftests/acct/acct_syscall.c
> new file mode 100644
> index 000000000000..4fa00a88a1bd
> --- /dev/null
> +++ b/tools/testing/selftests/acct/acct_syscall.c
> @@ -0,0 +1,89 @@
> +// SPDX-License-Identifier: GPL-2.0
> +
> +/* kselftest for acct() system call
> + *  The acct() system call enables or disables process accounting.
> + */
> +
> +#include <stdio.h>
> +#include <errno.h>
> +#include <string.h>
> +#include <sys/wait.h>
> +
> +#include "../kselftest.h"
> +
> +int main(void)
> +{
> +	// Setting up kselftest framework
> +	ksft_print_header();
> +	ksft_set_plan(1);
> +
> +	// Create file to log closed processes
> +	char filename[] = "process_log";

Where does this file created?

> +	FILE *fp;
> +
> +	fp = fopen(filename, "w");

What happens if file creation fails?

> +
> +	int i = acct(filename);

Chose a descriptive name for the variable e.g: ret

> +
> +	// Handle error conditions
> +	if (i) {

Is this the failure case - ret < 0 case - complete conditional.

> +		switch (errno) {
> +		case EPERM:
> +			ksft_test_result_error("%s. Please run the test as root.\n",
> +				strerror(errno));
> +			break;
> +
> +		case EACCES:
> +			ksft_test_result_error("Insufficient privilege.\n");
> +			break;
> +
> +		case EIO:
> +			ksft_test_result_error("Error writing to the file: %s.\n", filename);
> +			break;
> +
> +		default:
> +			ksft_test_result_error("%s.\n", strerror(errno));
> +			break;
> +		}
> +
> +		remove(filename);
> +		fclose(fp);
> +		ksft_finished();
> +		return 1;
> +	}
> +
> +	// Create child process and wait for it to terminate.
> +	pid_t child_pid;
> +
> +	child_pid = fork();
> +
> +	if (child_pid < 0) {
> +		ksft_test_result_error("Process failed\n");
> +		ksft_finished();
> +		return 1;
> +	} else if (child_pid == 0) {
> +		ksft_print_msg("Child process successfully created!\n");

You don't need braces here since it it a single statement after the
conditional.

> +	} else {
> +		wait(NULL);
> +		fseek(fp, 0L, SEEK_END);
> +		int sz = ftell(fp);
> +
> +		ksft_print_msg("Parent process successfully created!\n");
> +
> +		i = acct(NULL);
> +
> +		if (sz <= 0) {
> +			ksft_test_result_fail("Terminated child process not logged");
> +			ksft_exit_fail();
> +			return 1;
> +		}
> +
> +		ksft_test_result_pass("Successfully logged terminated process.\n");
> +		remove(filename);
> +		fclose(fp);
> +		ksft_exit_pass();
> +		return 0;
> +	}
> +
> +	return 1;
> +}
> 
> ---
> base-commit: 50736169ecc8387247fe6a00932852ce7b057083
> change-id: 20240622-kselftest-acct-syscall-2d90f7666b1e
> 
> Best regards,

Please check coding guidelines and ruun checkpatch on this.


      reply	other threads:[~2024-07-05 17:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-30 19:22 [PATCH v2] selftest: acct: Add selftest for the acct() syscall Abdulrasaq Lawani
2024-07-05 17:39 ` Shuah Khan [this message]

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=85ce18a6-9783-427b-bfb4-64b82c0081cb@linuxfoundation.org \
    --to=skhan@linuxfoundation.org \
    --cc=abdulrasaqolawani@gmail.com \
    --cc=javiercarrascocruz@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=shuah@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