chiark / gitweb /
logind: add service for per-user shared systemd daemon
authorLennart Poettering <lennart@poettering.net>
Thu, 30 Jun 2011 00:18:01 +0000 (02:18 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 30 Jun 2011 00:18:01 +0000 (02:18 +0200)
Makefile.am
src/pam-module.c
units/.gitignore
units/user@.service.in [new file with mode: 0644]

index 2a027c38554f0a4aa559c6a9d135418ceeb554f3..9a67505623453154005872dd149008ad2edea2ec 100644 (file)
@@ -353,7 +353,8 @@ nodist_systemunit_DATA = \
        units/fsck@.service \
        units/fsck-root.service \
        units/quotacheck.service \
-       units/rescue.service
+       units/rescue.service \
+        units/user@.service
 
 if ENABLE_BINFMT
 nodist_systemunit_DATA += \
@@ -404,6 +405,7 @@ EXTRA_DIST = \
        units/fsck@.service.in \
        units/fsck-root.service.in \
        units/quotacheck.service.in \
+        units/user@.service.in \
        systemd.pc.in \
        introspect.awk \
        src/org.freedesktop.systemd1.policy.in \
index a15b4cae1c61b64cdfee86045cd236abf0c68527..178c46940c2d41247e72f996925cac500474a82b 100644 (file)
@@ -361,6 +361,13 @@ _public_ PAM_EXTERN int pam_sm_open_session(
         if (sd_booted() <= 0)
                 return PAM_SUCCESS;
 
+        /* Make sure we don't enter a loop by talking to
+         * systemd-logind when it is actually waiting for the
+         * background to finish start-up, */
+        pam_get_item(handle, PAM_SERVICE, (const void**) &service);
+        if (streq_ptr(service, "systemd-shared"))
+                return PAM_SUCCESS;
+
         if (parse_argv(handle,
                        argc, argv,
                        &controllers, &reset_controllers,
@@ -401,7 +408,6 @@ _public_ PAM_EXTERN int pam_sm_open_session(
         uid = pw->pw_uid;
         pid = getpid();
 
-        pam_get_item(handle, PAM_SERVICE, (const void**) &service);
         pam_get_item(handle, PAM_XDISPLAY, (const void**) &display);
         pam_get_item(handle, PAM_TTY, (const void**) &tty);
         pam_get_item(handle, PAM_RUSER, (const void**) &remote_user);
index 8da3804edb77057b6ed9014fa846ef5b1ea4d62c..ac700e8044142a016d0d180ccca94d6afb367b8b 100644 (file)
@@ -1,3 +1,4 @@
+user@.service
 systemd-logind.service
 systemd-localed.service
 systemd-timedated.service
diff --git a/units/user@.service.in b/units/user@.service.in
new file mode 100644 (file)
index 0000000..d692c8e
--- /dev/null
@@ -0,0 +1,18 @@
+#  This file is part of systemd.
+#
+#  systemd is free software; you can redistribute it and/or modify it
+#  under the terms of the GNU General Public License as published by
+#  the Free Software Foundation; either version 2 of the License, or
+#  (at your option) any later version.
+
+[Unit]
+Description=User Manager for %I
+After=systemd-user-sessions.service
+
+[Service]
+User=%I
+PAMName=systemd-shared
+ControlGroup=/user/%I/shared
+ControlGroupModify=yes
+Type=notify
+ExecStart=-@rootbindir@/systemd --user