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