After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 648958 - nonsensical session implementation
nonsensical session implementation
Status: RESOLVED FIXED
Product: gnome-keyring
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: GNOME keyring maintainer(s)
GNOME keyring maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2011-04-29 17:25 UTC by Matthias Clasen
Modified: 2011-05-04 19:18 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix logic calling UnregisterClient (1.85 KB, patch)
2011-04-30 05:30 UTC, Stef Walter
reviewed Details | Review

Description Matthias Clasen 2011-04-29 17:25:51 UTC
Looking at gkd-dbus-session.c, I notice that your unregister_daemon_in_session method does a send_with_reply_and_block call - not waiting for the response would be just fine for that one, really.

But more seriously, you end up calling unregister_daemon_in_session in response to a Disconnected signal. So, when you get a signal informing you that you've just lost your dbus connection, you go and make a blocking call on said connection...
Comment 1 Stef Walter 2011-04-30 05:30:04 UTC
Created attachment 186920 [details] [review]
Fix logic calling UnregisterClient
Comment 2 Stef Walter 2011-04-30 05:31:26 UTC
Ray, since you added this "Disconnected" code, could you review the patch? Thanks.
Comment 3 Ray Strode [halfline] 2011-05-02 14:39:57 UTC
sure
Comment 4 Ray Strode [halfline] 2011-05-02 14:52:57 UTC
Review of attachment 186920 [details] [review]:

I have no memory of writing the patch that caused this bug initially, so I can only guess at my initial motivations.

Looking through the git log I see:

commit 6371b7af4700c2ea359ede49bfa4371195cdcc05
...
                unregister_daemon_in_session (conn);
                gkd_main_quit ();
                return DBUS_HANDLER_RESULT_HANDLED;
+       } else if (dbus_message_is_signal (msg, DBUS_INTERFACE_LOCAL, "Disconnected"))
+               unregister_daemon_in_session (conn);
+               gkd_main_quit ();
+               return DBUS_HANDLER_RESULT_HANDLED;
        }

So my guess is my logic was something like "make this clause look like the EndSession and Stop clauses above it" without fully considering that the bus isn't around anymore.  Anyway, I don't think there's a good, conscious reason the call is there so taking it out seems right.

::: daemon/dbus/gkd-dbus-session.c
@@ +99,3 @@
 		g_return_if_reached ();
 
+	dbus_connection_send (conn, msg, NULL);

should probably dbus_message_set_no_reply before sending this.

@@ -132,3 @@
 		return DBUS_HANDLER_RESULT_HANDLED;
 	} else if (dbus_message_is_signal (msg, DBUS_INTERFACE_LOCAL, "Disconnected")) {
-		unregister_daemon_in_session (conn);

unregister_daemon_in_session also frees some memory, so it may make sense to free that memory here.  On the other hand, we're in the exit path anyway so probably doesn't matter...
Comment 5 Stef Walter 2011-05-04 19:18:31 UTC
Thanks Ray. Added the set_no_reply() call.

The global variables are cleaned up in a callback from main() (via egg_cleanup_perform()), so they're not really a worry.

Merged with master.