Re: [PATCH v9 2/5] selftests/Landlock: Abstract unix socket restriction tests
From: Tahera Fahimi <hidden>
Date: 2024-08-19 19:56:00
Also in:
linux-security-module, lkml
On Mon, Aug 19, 2024 at 05:42:59PM +0200, Mickaël Salaün wrote:
On Wed, Aug 14, 2024 at 12:22:20AM -0600, Tahera Fahimi wrote:quoted
The patch introduces Landlock ABI version 6 and has three types of tests"and adds three types" ?quoted
that examines different scenarios for abstract unix socket connection:Not only connection.quoted
1) unix_socket: base tests of the abstract socket scoping mechanism for a landlocked process, same as the ptrace test. 2) optional_scoping: generates three processes with different domains and tests if a process with a non-scoped domain can connect to other processes. 3) unix_sock_special_cases: since the socket's creator credentials are used"unix_sock_special_cases" seems a bit too generic and is not self-explanatory. What about "outside_socket"?
Sure, I'll change it to "outside_socket"
quoted
for scoping sockets, this test examines the cases where the socket's credentials are different from the process using it. Signed-off-by: Tahera Fahimi <redacted> ---quoted
--- /dev/null +++ b/tools/testing/selftests/landlock/scoped_abstract_unix_test.c@@ -0,0 +1,942 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Landlock tests - Abstract Unix Socket + * + * Copyright © 2017-2020 Mickaël Salaün <mic@digikod.net> + * Copyright © 2019-2020 ANSSIYou can replace these two lines with your copyright (same for the signal test file): Copyright © 2024 Tahera Fahimi [off-list ref]
Right. I copied this from ptrace_test.c and forgot to change it. Thanks :)