<div dir="ltr">Figured out how to coerce my system into functioning acceptably when the "PrepareForShutdown" signal is treated as an indicator that the user logged out. Thanks again for the help.</div><div class="gmail_extra">

<br><br><div class="gmail_quote">On Fri, Jul 11, 2014 at 10:57 AM, Kurt von Laven <span dir="ltr"><<a href="mailto:kurt@endlessm.com" target="_blank">kurt@endlessm.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div dir="ltr">Thank you Mantas and Djalal for improving my mental model.<br><div class="gmail_extra"><br><br><div class="gmail_quote"><div class="">On Fri, Jul 11, 2014 at 1:14 AM, Mantas Mikulėnas <span dir="ltr"><<a href="mailto:grawity@gmail.com" target="_blank">grawity@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">


<div>On Fri, Jul 11, 2014 at 7:18 AM, Kurt von Laven <span dir="ltr"><<a href="mailto:kurt@endlessm.com" target="_blank">kurt@endlessm.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><span style="font-family:arial,sans-serif;font-size:13px">Hello folks,</span><div style="font-family:arial,sans-serif;font-size:13px">



<br></div><div style="font-family:arial,sans-serif;font-size:13px">Apologies if anybody is getting this message twice; I originally posted on <a href="mailto:dbus@lists.freedesktop.org" target="_blank">dbus@lists.freedesktop.org</a> and was directed here. </div>






<div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">I am attempting to listen to the SessionRemoved signal from the <a href="http://www.freedesktop.org/wiki/Software/systemd/logind/" target="_blank">login manager</a>. I have no trouble in the case where the user logs out and waits for ~15 seconds before shutting down, but when the user shuts down the system without first logging out I don't hear the SessionRemoved signal in time. I would've thought that inhibiting shutdown (by calling the <a href="http://www.freedesktop.org/wiki/Software/systemd/inhibit/" target="_blank">Inhibit method of the login manager</a>) would be the appropriate way to keep my process alive long enough to record the SessionRemoved signal before my process gets killed. Apparently that is not the case though. I am fairly certain that I am actually inhibiting shutdown, because my process shows up when I call ListInhibitors in <a href="https://wiki.gnome.org/action/show/Apps/DFeet" target="_blank">D-Feet</a>.</div>






<div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">In case it's relevant, I'm using the delay mode of the inhibit method, and my process runs as root.</div>



</div></blockquote><div><br></div></div><div><div>Inhibitors do not make any sense here. You're inhibiting not just the final power-off of the machine, but the <b>entire</b> shutdown process, <i>including the stopping of login sessions</i>, so you would not see SessionRemoved until after you release the inhibitor anyway.</div>



</div><div><div> </div></div></div></div></div></blockquote></div><div>Doh. Makes perfect sense. I got rid of the inhibition logic entirely to no avail though, so I suspect this was only one of my problems.</div><div class="">

<div>
 </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">


<div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div style="font-family:arial,sans-serif;font-size:13px">



To test whether my process was running in the user session, I called <a href="http://linux.about.com/library/cmd/blcmdl2_getsid.htm" target="_blank">getsid (0)</a>. It returned the PID of my process, which does not match the session ID of the SessionRemoved signals I was able to record. Is this a legitimate way to verify that my process isn't running in the user session? My original assumption was that my process couldn't possibly be in the user session because I am able to hear the SessionRemoved signal when the user logs out and waits for ~15 seconds. Is that a bad assumption to make?</div>



</div></blockquote><div><br></div></div><div><div>No, this is the wrong method. logind's sessions have nothing to do with getsid() and POSIX sessions (which are limited to the point of being completely useless).</div>


<div><br>
</div><div>To see if you're running within a logind session, the preferred way is <b>sd_pid_get_session(0, &session_id)</b>. Alternatively, you can:</div><div><br></div></div></div></div></div></blockquote></div>

<div>I confirmed that my process is not running in a session (sd_pid_get_session_id returned a negative number). This makes sense because it is launched by a .service file in /lib/systemd/system.</div><div class="">
<div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">


<div><div></div><div>a) check the $XDG_SESSION_ID variable, which will contain the session ID if you're inside one,</div>
<div>b) check the cgroups of your process (e.g. in /proc/self/cgroup), which will show you as being in "/user.slice/user-%s.slice/session-%d.scope".</div><div><br></div><div>Note that there is no supported way for escaping a user session. But if you run your program as a system service (from a .service unit), then it won't be put in a session in the first place.</div>



</div><div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div style="font-family:arial,sans-serif;font-size:13px">



I was advised that some shutdown commands bypass logind, so I tried shutting down several different ways (systemctl shutdown, shutdown now, sudo shutdown now, calling Shutdown method on org.gnome.SessionManager from D-Feet, and the typical GUI way). In all cases I got the same result: I didn't hear the SessionRemoved signal.</div>



</div></blockquote><div><br></div></div><div>logind is just a "proxy" for purposes of polkit authorization (which cannot be done in pid 1); it only forwards the shutdown request to systemd (PID 1). Even tools that use the old SysVinit "/dev/initctl" method still result in the same request, and systemd performs the same shutdown process.</div>


<div>
<div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div style="font-family:arial,sans-serif;font-size:13px">



If anyone has any suggestions on how to debug this or knows what I am missing here, that would be greatly appreciated. Please let me know if any additional details would be helpful.</div></div></blockquote><div><br></div>



</div><div>If I remember correctly the details of systemd boot process, the best approach would be to run your monitor-thingy in a system service (a .service unit), and <b>order the service "Before=systemd-user-sessions.service"</b>. That way, during boot, it will be started <i>before</i> any session gets created, and the opposite happens during shutdown – your service will be stopped <i>after</i> all sessions are removed.</div>


<span><font color="#888888">
</font></span></div><span><font color="#888888"><div><br></div></font></span></div></div></blockquote></div><div>I added systemd-user-sessions.service to the "Before" line of my .service file, also to no avail. Here is the relevant excerpt of my .service file in case I managed to screw anything else up.</div>


<div><br></div><div><div>Requires=dbus.service</div><div>After=dbus.service</div><div>Before=dbus-org.freedesktop.login1.service systemd-logind.service systemd-user-sessions.service</div></div><div><br></div><div><div>[Install]</div>


<div>WantedBy=multi-user.target</div></div><div> </div><div>In response to Djalal's suggestion that I treat the "PrepareForShutdown" signal as an indicator that the user logged out: unfortunately it's already too late at that point. (This is a property of my own particular situation, not anything to do with DBus or systemd in general.)</div>

<span class="HOEnZb"><font color="#888888">
<div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><span><font color="#888888"><div>


</div>-- <br><div dir="ltr">Mantas Mikulėnas <<a href="mailto:grawity@gmail.com" target="_blank">grawity@gmail.com</a>></div>
</font></span></div></div>
</blockquote></font></span></div><span class="HOEnZb"><font color="#888888"><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><span><span style="font-size:15px;font-family:Arial;color:rgb(183,183,183);vertical-align:baseline;white-space:pre-wrap;background-color:transparent">Kurt von Laven | Endless Mobile | <a href="tel:732.784.7356" value="+17327847356" target="_blank">732.784.7356</a> |  </span><a href="http://endlessm.com/" style="text-decoration:none" target="_blank"><span style="font-size:15px;font-family:Arial;color:rgb(183,183,183);text-decoration:underline;vertical-align:baseline;white-space:pre-wrap;background-color:transparent">EndlessM.com</span></a></span><br>


</div>
</font></span></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><span><span style="font-size:15px;font-family:Arial;color:rgb(183,183,183);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">Kurt von Laven | Endless Mobile | 732.784.7356 |  </span><a href="http://endlessm.com/" style="text-decoration:none" target="_blank"><span style="font-size:15px;font-family:Arial;color:rgb(183,183,183);background-color:transparent;text-decoration:underline;vertical-align:baseline;white-space:pre-wrap">EndlessM.com</span></a></span><br>

</div>
</div>