46f041
From 0ef48896d9f23b9fd547a532a4e6e6b8f8b12901 Mon Sep 17 00:00:00 2001
46f041
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
46f041
Date: Wed, 23 Nov 2022 16:09:56 +0100
46f041
Subject: [PATCH 2/2] pam: add a call to pam_namespace
46f041
46f041
A call to pam_namespace is required so that children of user@.service end up in
46f041
a namespace as expected. pam_namespace gets called as part of the stack that
46f041
creates a session (login, sshd, gdm, etc.) and those processes end up in a
46f041
namespace, but it also needs to be called from our stack which is parallel and
46f041
descends from pid1 itself.
46f041
46f041
The call to pam_namespace is similar to the call to pam_keyinit that was added
46f041
in ab79099d1684457d040ee7c28b2012e8c1ea9a4f. The pam stack for user@.service
46f041
creates a new session which is disconnected from the parent environment. Both
46f041
calls are not suitable for inclusion in the shared part of the stack (e.g.
46f041
@system-auth on Fedora/RHEL systems), because for example su/sudo/runuser
46f041
should not include them.
46f041
46f041
Fixes #17043 (Allow to execute user service into dedicated namespace
46f041
              if pam_namespace enabled)
46f041
Related to https://bugzilla.redhat.com/show_bug.cgi?id=1861836
46f041
(Polyinstantiation is ignored/bypassed in GNOME sessions)
46f041
---
46f041
 src/login/systemd-user.in | 1 +
46f041
 1 file changed, 1 insertion(+)
46f041
46f041
diff --git a/src/login/systemd-user.in b/src/login/systemd-user.in
46f041
index d5597d28cb..06f7e36458 100644
46f041
--- a/src/login/systemd-user.in
46f041
+++ b/src/login/systemd-user.in
46f041
@@ -15,6 +15,7 @@ session  required pam_selinux.so nottys open
46f041
 {% endif %}
46f041
 session  required pam_loginuid.so
46f041
 session  optional pam_keyinit.so force revoke
46f041
+session  required pam_namespace.so
46f041
 {% if ENABLE_HOMED %}
46f041
 -session  optional pam_systemd_home.so
46f041
 {% endif %}
46f041
-- 
46f041
2.38.1
46f041