summaryrefslogtreecommitdiffstats
path: root/network/avahi/0001-Check-if-the-deamon-isn-t-already-running.patch
blob: 7a384db38d4f717dcbf4b02f9b900c6c37c0e0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
From 55c732acd013b6ac979b6e1f5432a301481879ca Mon Sep 17 00:00:00 2001
From: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Date: Sun, 15 Aug 2010 22:56:49 +0100
Subject: [PATCH] Check if the deamon isn't already running

---
 avahi-client/client.c |   29 +++++++++++++++++++++++++----
 1 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/avahi-client/client.c b/avahi-client/client.c
index be675ad..c7ece4a 100644
--- a/avahi-client/client.c
+++ b/avahi-client/client.c
@@ -478,6 +478,7 @@ static DBusConnection* avahi_dbus_bus_get(DBusError *error) {
 AvahiClient *avahi_client_new(const AvahiPoll *poll_api, AvahiClientFlags flags, AvahiClientCallback callback, void *userdata, int *ret_error) {
     AvahiClient *client = NULL;
     DBusError error;
+    int daemon_running = 0;
 
     avahi_init_i18n();
 
@@ -560,12 +561,33 @@ AvahiClient *avahi_client_new(const AvahiPoll *poll_api, AvahiClientFlags flags,
     if (dbus_error_is_set(&error))
         goto fail;
 
-    if (!dbus_bus_start_service_by_name(client->bus, AVAHI_DBUS_NAME, 0, NULL, &error)) {
 
-        /* We free the error so its not set, that way the fail target
-         * will return the NO_DAEMON error rather than a DBUS error */
+    /* Check if the process already exists on the bus, otherwise try to start
+     * it. */
+    if (!dbus_bus_name_has_owner (client->bus, AVAHI_DBUS_NAME, &error)) {
+      dbus_error_free(&error);
+      daemon_running = 0;
+    } else {
+      daemon_running = 1;
+    }
+
+    if (!daemon_running &&
+        !dbus_bus_start_service_by_name(client->bus,
+          AVAHI_DBUS_NAME, 0, NULL, &error)) {
         dbus_error_free(&error);
+    } else {
+      daemon_running = 1;
+    }
 
+    /* Re-check something else didn't start the daemon */
+    if (!daemon_running &&
+        !dbus_bus_name_has_owner (client->bus, AVAHI_DBUS_NAME, &error)) {
+      dbus_error_free(&error);
+    } else {
+      daemon_running = 1;
+    }
+
+    if (!daemon_running) {
         if (!(flags & AVAHI_CLIENT_NO_FAIL)) {
 
             if (ret_error)
@@ -577,7 +599,6 @@ AvahiClient *avahi_client_new(const AvahiPoll *poll_api, AvahiClientFlags flags,
         /* The user doesn't want this call to fail if the daemon is not
          * available, so let's return succesfully */
         client_set_state(client, AVAHI_CLIENT_CONNECTING);
-
     } else {
 
         if (init_server(client, ret_error) < 0)
-- 
1.7.1