]> git.meshlink.io Git - catta/blob - avahi-daemon/dbus-record-browser.c
* Implement client API for arbitrary record browsing
[catta] / avahi-daemon / dbus-record-browser.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_record_browser_free(RecordBrowserInfo *i) {
37     assert(i);
38
39     if (i->record_browser)
40         avahi_s_record_browser_free(i->record_browser);
41     dbus_connection_unregister_object_path(server->bus, i->path);
42     avahi_free(i->path);
43     AVAHI_LLIST_REMOVE(RecordBrowserInfo, record_browsers, i->client->record_browsers, i);
44
45     i->client->n_objects--;
46     assert(i->client->n_objects >= 0);
47
48     avahi_free(i);
49 }
50
51 DBusHandlerResult avahi_dbus_msg_record_browser_impl(DBusConnection *c, DBusMessage *m, void *userdata) {
52     DBusError error;
53     RecordBrowserInfo *i = userdata;
54
55     assert(c);
56     assert(m);
57     assert(i);
58     
59     dbus_error_init(&error);
60
61     avahi_log_debug(__FILE__": interface=%s, path=%s, member=%s",
62                     dbus_message_get_interface(m),
63                     dbus_message_get_path(m),
64                     dbus_message_get_member(m));
65
66     /* Introspection */
67     if (dbus_message_is_method_call(m, DBUS_INTERFACE_INTROSPECTABLE, "Introspect"))
68         return avahi_dbus_handle_introspect(c, m, "RecordBrowser.Introspect");
69     
70     /* Access control */
71     if (strcmp(dbus_message_get_sender(m), i->client->name)) 
72         return avahi_dbus_respond_error(c, m, AVAHI_ERR_ACCESS_DENIED, NULL);
73     
74     if (dbus_message_is_method_call(m, AVAHI_DBUS_INTERFACE_RECORD_BROWSER, "Free")) {
75
76         if (!dbus_message_get_args(m, &error, DBUS_TYPE_INVALID)) {
77             avahi_log_warn("Error parsing RecordBrowser::Free message");
78             goto fail;
79         }
80
81         avahi_dbus_record_browser_free(i);
82         return avahi_dbus_respond_ok(c, m);
83         
84     }
85     
86     avahi_log_warn("Missed message %s::%s()", dbus_message_get_interface(m), dbus_message_get_member(m));
87
88 fail:
89     if (dbus_error_is_set(&error))
90         dbus_error_free(&error);
91     
92     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
93 }
94
95 void avahi_dbus_record_browser_callback(
96     AvahiSRecordBrowser *b,
97     AvahiIfIndex interface,
98     AvahiProtocol protocol,
99     AvahiBrowserEvent event,
100     AvahiRecord *record,
101     AvahiLookupResultFlags flags,
102     void* userdata) {
103     
104     RecordBrowserInfo *i = userdata;
105     DBusMessage *m = NULL;
106     int32_t i_interface, i_protocol;
107     uint32_t u_flags;
108     
109     assert(b);
110     assert(i);
111
112     i_interface = (int32_t) interface;
113     i_protocol = (int32_t) protocol;
114     u_flags = (uint32_t) flags;
115
116     m = dbus_message_new_signal(i->path, AVAHI_DBUS_INTERFACE_RECORD_BROWSER, avahi_dbus_map_browse_signal_name(event));
117
118     if (event == AVAHI_BROWSER_NEW || event == AVAHI_BROWSER_REMOVE) {
119         uint8_t rdata[0xFFFF];
120         size_t size;
121         assert(record);
122         
123         if (!(dbus_message_append_args(
124                   m,
125                   DBUS_TYPE_INT32, &i_interface,
126                   DBUS_TYPE_INT32, &i_protocol,
127                   DBUS_TYPE_STRING, &record->key->name,
128                   DBUS_TYPE_UINT16, &record->key->clazz,
129                   DBUS_TYPE_UINT16, &record->key->type,
130                   DBUS_TYPE_INVALID)))
131             goto fail;
132             
133         if ((size = avahi_rdata_serialize(record, rdata, sizeof(rdata))) == (size_t) -1 ||
134             avahi_dbus_append_rdata(m, rdata, size) < 0) {
135             avahi_log_debug(__FILE__": Failed to append rdata");
136             dbus_message_unref(m);
137             return;
138         }
139         
140         dbus_message_append_args(
141             m,
142             DBUS_TYPE_UINT32, &u_flags,
143             DBUS_TYPE_INVALID);
144         
145     } else if (event == AVAHI_BROWSER_FAILURE)
146         avahi_dbus_append_server_error(m);
147     
148     dbus_message_set_destination(m, i->client->name);   
149     dbus_connection_send(server->bus, m, NULL);
150     dbus_message_unref(m);
151
152     return;
153     
154 fail:
155
156     if (m)
157         dbus_message_unref(m);
158 }