]> git.meshlink.io Git - catta/blob - avahi-daemon/dbus-async-service-resolver.c
fix introspection file names
[catta] / avahi-daemon / dbus-async-service-resolver.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
6   avahi is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as
8   published by the Free Software Foundation; either version 2.1 of the
9   License, or (at your option) any later version.
10  
11   avahi is distributed in the hope that it will be useful, but WITHOUT
12   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14   Public License for more details.
15  
16   You should have received a copy of the GNU Lesser General Public
17   License along with avahi; if not, write to the Free Software
18   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27
28 #include <avahi-common/malloc.h>
29 #include <avahi-common/dbus.h>
30 #include <avahi-common/error.h>
31 #include <avahi-core/log.h>
32
33 #include "dbus-util.h"
34 #include "dbus-internal.h"
35
36 void avahi_dbus_async_service_resolver_free(AsyncServiceResolverInfo *i) {
37     assert(i);
38
39     if (i->service_resolver)
40         avahi_s_service_resolver_free(i->service_resolver);
41
42     dbus_connection_unregister_object_path(server->bus, i->path);
43     AVAHI_LLIST_REMOVE(AsyncServiceResolverInfo, async_service_resolvers, i->client->async_service_resolvers, i);
44
45     i->client->n_objects--;
46     assert(i->client->n_objects >= 0);
47
48     avahi_free(i);
49 }
50
51 void avahi_dbus_async_service_resolver_callback(
52     AvahiSServiceResolver *r,
53     AvahiIfIndex interface,
54     AvahiProtocol protocol,
55     AvahiResolverEvent event,
56     const char *name,
57     const char *type,
58     const char *domain,
59     const char *host_name,
60     const AvahiAddress *a,
61     uint16_t port,
62     AvahiStringList *txt,
63     AvahiLookupResultFlags flags, 
64     void* userdata) {
65
66     AsyncServiceResolverInfo *i = userdata;
67     DBusMessage *reply;
68     
69     assert(r);
70     assert(i);
71
72     reply = dbus_message_new_signal(i->path, AVAHI_DBUS_INTERFACE_SERVICE_RESOLVER, avahi_dbus_map_resolve_signal_name(event));
73     
74     if (event == AVAHI_RESOLVER_FOUND) {
75         char t[AVAHI_ADDRESS_STR_MAX], *pt = t;
76         int32_t i_interface, i_protocol, i_aprotocol;
77         uint32_t u_flags;
78     
79         assert(host_name);
80
81 /*         avahi_log_debug(__FILE__": [%s] Successfully resolved service <%s.%s.%s>", i->path, name, type, domain); */
82         
83         if (a)
84             avahi_address_snprint(t, sizeof(t), a);
85         else
86             t[0] = 0;
87
88         if (!name)
89             name = "";
90
91         if (avahi_dbus_is_our_own_service(i->client, interface, protocol, name, type, domain) > 0)
92             flags |= AVAHI_LOOKUP_RESULT_OUR_OWN;
93
94         i_interface = (int32_t) interface;
95         i_protocol = (int32_t) protocol;
96         if (a) 
97             i_aprotocol = (int32_t) a->proto;
98         else 
99             i_aprotocol = AVAHI_PROTO_UNSPEC;
100         u_flags = (uint32_t) flags;
101
102         dbus_message_append_args(
103             reply,
104             DBUS_TYPE_INT32, &i_interface,
105             DBUS_TYPE_INT32, &i_protocol,
106             DBUS_TYPE_STRING, &name,
107             DBUS_TYPE_STRING, &type,
108             DBUS_TYPE_STRING, &domain,
109             DBUS_TYPE_STRING, &host_name,
110             DBUS_TYPE_INT32, &i_aprotocol,
111             DBUS_TYPE_STRING, &pt,
112             DBUS_TYPE_UINT16, &port,
113             DBUS_TYPE_INVALID);
114
115         avahi_dbus_append_string_list(reply, txt);
116
117         dbus_message_append_args(
118             reply,
119             DBUS_TYPE_UINT32, &u_flags,
120             DBUS_TYPE_INVALID);
121     }  else {
122         assert(event == AVAHI_RESOLVER_FAILURE);
123         avahi_dbus_append_server_error(reply);
124     }
125
126     dbus_message_set_destination(reply, i->client->name);  
127     dbus_connection_send(server->bus, reply, NULL);
128     dbus_message_unref(reply);
129 }
130
131 DBusHandlerResult avahi_dbus_msg_async_service_resolver_impl(DBusConnection *c, DBusMessage *m, void *userdata) {
132     DBusError error;
133     AsyncServiceResolverInfo *i = userdata;
134
135     assert(c);
136     assert(m);
137     assert(i);
138     
139     dbus_error_init(&error);
140
141     avahi_log_debug(__FILE__": interface=%s, path=%s, member=%s",
142                     dbus_message_get_interface(m),
143                     dbus_message_get_path(m),
144                     dbus_message_get_member(m));
145
146     /* Introspection */
147     if (dbus_message_is_method_call(m, DBUS_INTERFACE_INTROSPECTABLE, "Introspect"))
148         return avahi_dbus_handle_introspect(c, m, "ServiceResolver.introspect");
149     
150     /* Access control */
151     if (strcmp(dbus_message_get_sender(m), i->client->name)) 
152         return avahi_dbus_respond_error(c, m, AVAHI_ERR_ACCESS_DENIED, NULL);
153     
154     if (dbus_message_is_method_call(m, AVAHI_DBUS_INTERFACE_SERVICE_RESOLVER, "Free")) {
155
156         if (!dbus_message_get_args(m, &error, DBUS_TYPE_INVALID)) {
157             avahi_log_warn("Error parsing ServiceResolver::Free message");
158             goto fail;
159         }
160
161         avahi_dbus_async_service_resolver_free(i);
162         return avahi_dbus_respond_ok(c, m);
163     }
164     
165     avahi_log_warn("Missed message %s::%s()", dbus_message_get_interface(m), dbus_message_get_member(m));
166
167 fail:
168     if (dbus_error_is_set(&error))
169         dbus_error_free(&error);
170     
171     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
172 }
173