chiark / gitweb /
logind: avoid creating stale session state files
authorFedora systemd team <systemd-maint@redhat.com>
Wed, 10 Apr 2013 07:49:24 +0000 (09:49 +0200)
committerMichal Schmidt <mschmidt@redhat.com>
Wed, 10 Apr 2013 09:36:59 +0000 (11:36 +0200)
There were old session state files accumulating in /run/systemd/session.
They confused e.g. "reboot", which thought there were still users logged
in. The files got created like this:

session_stop(Session *s) ->
        ...
        unlink(s->state_file);
        ...
        seat_set_active(s->seat, NULL) ->
                session_save(...);  /* re-creates the state file we just
                                       unlinked */

Fix it simply by clearing the s->started flag earlier to prevent
any further writes of the state file (session_save() checks the flag).

src/login/logind-session.c

index 508336d4d3b6fbc756917f8f804a0965f2e187a8..e2f41d3e575e81d988d1cb216cbb814edaf1a6a6 100644 (file)
@@ -710,6 +710,8 @@ int session_stop(Session *s) {
         if (s->started)
                 session_send_signal(s, false);
 
         if (s->started)
                 session_send_signal(s, false);
 
+        s->started = false;
+
         if (s->seat) {
                 if (s->seat->active == s)
                         seat_set_active(s->seat, NULL);
         if (s->seat) {
                 if (s->seat->active == s)
                         seat_set_active(s->seat, NULL);
@@ -721,8 +723,6 @@ int session_stop(Session *s) {
         user_send_changed(s->user, "Sessions\0");
         user_save(s->user);
 
         user_send_changed(s->user, "Sessions\0");
         user_save(s->user);
 
-        s->started = false;
-
         return r;
 }
 
         return r;
 }