diff mbox series

[v2] selftest: acct: Add selftest for the acct() syscall

Message ID 20240630-kselftest-acct-syscall-v2-1-b30bbe2a69cd@gmail.com
State New
Headers show
Series [v2] selftest: acct: Add selftest for the acct() syscall | expand

Commit Message

Abdulrasaq Lawani June 30, 2024, 7:22 p.m. UTC
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(+)


---
base-commit: 50736169ecc8387247fe6a00932852ce7b057083
change-id: 20240622-kselftest-acct-syscall-2d90f7666b1e

Best regards,
diff mbox series

Patch

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