commit: 55f758b29f5f299046d1f5802ae69141472c84f9 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Dec 13 18:26:25 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Dec 17 17:47:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f758b2
acct-group/cuse: New group, v0 New group for /dev/cuse. Unlike /dev/fuse, we don't want this device to be world-accessible because of potential security concerns, starting with the fact that CUSE is not widely tested, and ending with CVE-2016-1233 which indicates that programs using CUSE can modify memory of processes opening CUSE devices. Bug: https://bugs.gentoo.org/967033 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Part-of: https://codeberg.org/gentoo/gentoo/pulls/2 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> acct-group/cuse/cuse-0.ebuild | 9 +++++++++ acct-group/cuse/metadata.xml | 11 +++++++++++ 2 files changed, 20 insertions(+) diff --git a/acct-group/cuse/cuse-0.ebuild b/acct-group/cuse/cuse-0.ebuild new file mode 100644 index 000000000000..87fe774f8719 --- /dev/null +++ b/acct-group/cuse/cuse-0.ebuild @@ -0,0 +1,9 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit acct-group + +ACCT_GROUP_ID=554 +DESCRIPTION="/dev/cuse access" diff --git a/acct-group/cuse/metadata.xml b/acct-group/cuse/metadata.xml new file mode 100644 index 000000000000..fbc99e373d05 --- /dev/null +++ b/acct-group/cuse/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Michał Górny</name> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + </maintainer> +</pkgmetadata>
