Linux Kernel Selftest development
 help / color / mirror / Atom feed
From: Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>
To: Shuah Khan <shuah@kernel.org>
Cc: javiercarrascocruz@gmail.com, linux-kernel@vger.kernel.org,
	 linux-kselftest@vger.kernel.org,
	 Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>
Subject: [PATCH v2] selftest: acct: Add selftest for the acct() syscall
Date: Sun, 30 Jun 2024 15:22:58 -0400	[thread overview]
Message-ID: <20240630-kselftest-acct-syscall-v2-1-b30bbe2a69cd@gmail.com> (raw)

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>
---
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
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";
+	FILE *fp;
+
+	fp = fopen(filename, "w");
+
+	int i = acct(filename);
+
+	// Handle error conditions
+	if (i) {
+		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");
+	} 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,
-- 
Abdulrasaq Lawani <abdulrasaqolawani@gmail.com>


             reply	other threads:[~2024-06-30 19:23 UTC|newest]

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

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=20240630-kselftest-acct-syscall-v2-1-b30bbe2a69cd@gmail.com \
    --to=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