Mercurial > pidgin
annotate src/protocols/bonjour/dns_sd.c @ 13755:2790a5f877f7
[gaim-migrate @ 16166]
Get rid of a little warninget
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 09 May 2006 04:05:04 +0000 |
parents | b10030f6eab7 |
children | b986b6e2441b |
rev | line source |
---|---|
11477 | 1 /* |
2 * This program is free software; you can redistribute it and/or modify | |
3 * it under the terms of the GNU General Public License as published by | |
4 * the Free Software Foundation; either version 2 of the License, or | |
5 * (at your option) any later version. | |
6 * | |
7 * This program is distributed in the hope that it will be useful, | |
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
10 * GNU Library General Public License for more details. | |
11 * | |
12 * You should have received a copy of the GNU General Public License | |
13 * along with this program; if not, write to the Free Software | |
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
15 */ | |
16 | |
17 #include <string.h> | |
18 | |
19 #include "dns_sd.h" | |
20 #include "bonjour.h" | |
21 #include "buddy.h" | |
22 #include "debug.h" | |
23 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
24 /* Private data */ |
11477 | 25 |
11539 | 26 typedef struct _dns_sd_packet |
27 { | |
28 gchar *name; | |
29 gchar *txtvers; | |
30 gchar *version; | |
31 gchar *first; | |
32 gchar *last; | |
11477 | 33 gint port_p2pj; |
11539 | 34 gchar *phsh; |
35 gchar *status; | |
36 gchar *message; | |
37 gchar *email; | |
38 gchar *vc; | |
39 gchar *jid; | |
40 gchar *AIM; | |
41 } dns_sd_packet; | |
11477 | 42 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
43 /* End private data */ |
11477 | 44 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
45 /* Private functions */ |
11477 | 46 |
11539 | 47 static sw_result HOWL_API |
48 _publish_reply(sw_discovery discovery, sw_discovery_oid oid, | |
49 sw_discovery_publish_status status, sw_opaque extra) | |
11477 | 50 { |
11539 | 51 gaim_debug_warning("bonjour", "_publish_reply --> Start\n"); |
52 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
53 /* Check the answer from the mDNS daemon */ |
11539 | 54 switch (status) |
55 { | |
11477 | 56 case SW_DISCOVERY_PUBLISH_STARTED : |
57 gaim_debug_info("bonjour", "_publish_reply --> Service started\n"); | |
58 break; | |
59 case SW_DISCOVERY_PUBLISH_STOPPED : | |
60 gaim_debug_info("bonjour", "_publish_reply --> Service stopped\n"); | |
61 break; | |
62 case SW_DISCOVERY_PUBLISH_NAME_COLLISION : | |
63 gaim_debug_info("bonjour", "_publish_reply --> Name collision\n"); | |
64 break; | |
65 case SW_DISCOVERY_PUBLISH_INVALID : | |
66 gaim_debug_info("bonjour", "_publish_reply --> Service invalid\n"); | |
67 break; | |
68 } | |
11539 | 69 |
11477 | 70 return SW_OKAY; |
71 } | |
72 | |
11539 | 73 static sw_result HOWL_API |
74 _resolve_reply(sw_discovery discovery, sw_discovery_oid oid, | |
75 sw_uint32 interface_index, sw_const_string name, | |
76 sw_const_string type, sw_const_string domain, | |
77 sw_ipv4_address address, sw_port port, | |
78 sw_octets text_record, sw_ulong text_record_len, | |
79 sw_opaque extra) | |
11477 | 80 { |
11539 | 81 BonjourBuddy *buddy; |
82 GaimAccount *account = (GaimAccount*)extra; | |
83 gchar *txtvers = NULL; | |
84 gchar *version = NULL; | |
85 gchar *first = NULL; | |
11477 | 86 gint port_p2pj = -1; |
11539 | 87 gchar *phsh = NULL; |
88 gchar *status = NULL; | |
89 gchar *email = NULL; | |
90 gchar *last = NULL; | |
91 gchar *jid = NULL; | |
92 gchar *AIM = NULL; | |
93 gchar *vc = NULL; | |
94 gchar *msg = NULL; | |
11477 | 95 gint address_length = 16; |
11539 | 96 gchar *ip = NULL; |
11477 | 97 sw_text_record_iterator iterator; |
11498 | 98 char key[SW_TEXT_RECORD_MAX_LEN]; |
99 char value[SW_TEXT_RECORD_MAX_LEN]; | |
11477 | 100 sw_uint32 value_length; |
101 | |
102 sw_discovery_cancel(discovery, oid); | |
11539 | 103 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
104 /* Get the ip as a string */ |
11477 | 105 ip = malloc(address_length); |
106 sw_ipv4_address_name(address, ip, address_length); | |
107 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
108 /* Obtain the parameters from the text_record */ |
11539 | 109 if ((text_record_len > 0) && (text_record) && (*text_record != '\0')) |
110 { | |
11477 | 111 sw_text_record_iterator_init(&iterator, text_record, text_record_len); |
11539 | 112 while (sw_text_record_iterator_next(iterator, key, (sw_octet *)value, &value_length) == SW_OKAY) |
113 { | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
114 /* Compare the keys with the possible ones and save them on */ |
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
115 /* the appropiate place of the buddy_list */ |
11477 | 116 if (strcmp(key, "txtvers") == 0) { |
117 txtvers = g_strdup(value); | |
118 } else if (strcmp(key, "version") == 0) { | |
119 version = g_strdup(value); | |
120 } else if (strcmp(key, "1st") == 0) { | |
121 first = g_strdup(value); | |
122 } else if (strcmp(key, "port.p2pj") == 0) { | |
123 port_p2pj = atoi(value); | |
124 } else if (strcmp(key, "status") == 0) { | |
125 status = g_strdup(value); | |
126 } else if (strcmp(key, "email") == 0) { | |
127 email = g_strdup(value); | |
128 } else if (strcmp(key, "last") == 0) { | |
129 last = g_strdup(value); | |
130 } else if (strcmp(key, "jid") == 0) { | |
131 jid = g_strdup(value); | |
132 } else if (strcmp(key, "AIM") == 0) { | |
133 AIM = g_strdup(value); | |
134 } else if (strcmp(key, "vc") == 0) { | |
135 vc = g_strdup(value); | |
136 } else if (strcmp(key, "phsh") == 0) { | |
137 phsh = g_strdup(value); | |
138 } else if (strcmp(key, "msg") == 0) { | |
139 msg = g_strdup(value); | |
140 } | |
141 } | |
142 } | |
143 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
144 /* Put the parameters of the text_record in a buddy and add the buddy to */ |
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
145 /* the buddy list */ |
13649 | 146 buddy = bonjour_buddy_new(name, first, port_p2pj, phsh, |
11539 | 147 status, email, last, jid, AIM, vc, ip, msg); |
148 | |
149 if (bonjour_buddy_check(buddy) == FALSE) | |
150 { | |
13649 | 151 bonjour_buddy_delete(buddy); |
11477 | 152 return SW_DISCOVERY_E_UNKNOWN; |
153 } | |
11539 | 154 |
11496 | 155 /* Add or update the buddy in our buddy list */ |
156 bonjour_buddy_add_to_gaim(account, buddy); | |
11539 | 157 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
158 /* Free all the temporal strings */ |
11477 | 159 g_free(txtvers); |
160 g_free(version); | |
161 g_free(first); | |
162 g_free(last); | |
163 g_free(status); | |
164 g_free(email); | |
165 g_free(jid); | |
166 g_free(AIM); | |
167 g_free(vc); | |
168 g_free(phsh); | |
169 g_free(msg); | |
11539 | 170 |
11477 | 171 return SW_OKAY; |
172 } | |
173 | |
11539 | 174 static sw_result HOWL_API |
175 _browser_reply(sw_discovery discovery, sw_discovery_oid oid, | |
176 sw_discovery_browse_status status, | |
177 sw_uint32 interface_index, sw_const_string name, | |
178 sw_const_string type, sw_const_string domain, | |
179 sw_opaque_t extra) | |
11477 | 180 { |
181 sw_discovery_resolve_id rid; | |
11539 | 182 GaimAccount *account = (GaimAccount*)extra; |
183 GaimBuddy *gb = NULL; | |
184 | |
185 switch (status) | |
186 { | |
11477 | 187 case SW_DISCOVERY_BROWSE_INVALID: |
188 gaim_debug_warning("bonjour", "_browser_reply --> Invalid\n"); | |
189 break; | |
190 case SW_DISCOVERY_BROWSE_RELEASE: | |
191 gaim_debug_warning("bonjour", "_browser_reply --> Release\n"); | |
192 break; | |
193 case SW_DISCOVERY_BROWSE_ADD_DOMAIN: | |
194 gaim_debug_warning("bonjour", "_browser_reply --> Add domain\n"); | |
195 break; | |
196 case SW_DISCOVERY_BROWSE_ADD_DEFAULT_DOMAIN: | |
197 gaim_debug_warning("bonjour", "_browser_reply --> Add default domain\n"); | |
198 break; | |
199 case SW_DISCOVERY_BROWSE_REMOVE_DOMAIN: | |
200 gaim_debug_warning("bonjour", "_browser_reply --> Remove domain\n"); | |
201 break; | |
202 case SW_DISCOVERY_BROWSE_ADD_SERVICE: | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
203 /* A new peer has join the network and uses iChat bonjour */ |
11477 | 204 gaim_debug_info("bonjour", "_browser_reply --> Add service\n"); |
11539 | 205 if (g_ascii_strcasecmp(name, account->username) != 0) |
206 { | |
207 if (sw_discovery_resolve(discovery, interface_index, name, type, | |
208 domain, _resolve_reply, extra, &rid) != SW_OKAY) | |
209 { | |
11477 | 210 gaim_debug_warning("bonjour", "_browser_reply --> Cannot send resolve\n"); |
211 } | |
212 } | |
213 break; | |
214 case SW_DISCOVERY_BROWSE_REMOVE_SERVICE: | |
215 gaim_debug_info("bonjour", "_browser_reply --> Remove service\n"); | |
216 gb = gaim_find_buddy((GaimAccount*)extra, name); | |
11539 | 217 if (gb != NULL) |
218 { | |
11477 | 219 bonjour_buddy_delete(gb->proto_data); |
220 gaim_blist_remove_buddy(gb); | |
221 } | |
222 break; | |
223 case SW_DISCOVERY_BROWSE_RESOLVED: | |
224 gaim_debug_info("bonjour", "_browse_reply --> Resolved\n"); | |
225 break; | |
226 default: | |
227 break; | |
228 } | |
11539 | 229 |
11477 | 230 return SW_OKAY; |
231 } | |
232 | |
11677 | 233 static int |
11539 | 234 _dns_sd_publish(BonjourDnsSd *data, PublishType type) |
11477 | 235 { |
236 sw_text_record dns_data; | |
11773
92cf092f194e
[gaim-migrate @ 14064]
Gary Kramlich <grim@reaperworld.com>
parents:
11678
diff
changeset
|
237 sw_result publish_result = SW_OKAY; |
11477 | 238 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
239 /* Fill the data for the service */ |
11539 | 240 if (sw_text_record_init(&dns_data) != SW_OKAY) |
241 { | |
11927 | 242 gaim_debug_error("bonjour", "Unable to initialize the data for the mDNS.\n"); |
11477 | 243 return -1; |
244 } | |
245 | |
246 sw_text_record_add_key_and_string_value(dns_data, "txtvers", data->txtvers); | |
247 sw_text_record_add_key_and_string_value(dns_data, "version", data->version); | |
248 sw_text_record_add_key_and_string_value(dns_data, "1st", data->first); | |
249 sw_text_record_add_key_and_string_value(dns_data, "last", data->last); | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
250 /* sw_text_record_add_key_and_string_value(dns_data, "port.p2pj", itoa(data->port_p2pj)); */ |
11477 | 251 sw_text_record_add_key_and_string_value(dns_data, "port.p2pj", BONJOUR_DEFAULT_PORT); |
252 sw_text_record_add_key_and_string_value(dns_data, "phsh", data->phsh); | |
253 sw_text_record_add_key_and_string_value(dns_data, "status", data->status); | |
254 sw_text_record_add_key_and_string_value(dns_data, "msg", data->msg); | |
255 sw_text_record_add_key_and_string_value(dns_data, "email", data->email); | |
256 sw_text_record_add_key_and_string_value(dns_data, "vc", data->vc); | |
257 sw_text_record_add_key_and_string_value(dns_data, "jid", data->jid); | |
258 sw_text_record_add_key_and_string_value(dns_data, "AIM", data->AIM); | |
259 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
260 /* Publish the service */ |
11539 | 261 switch (type) |
262 { | |
11477 | 263 case PUBLISH_START: |
12104 | 264 publish_result = sw_discovery_publish(data->session, 0, data->name, ICHAT_SERVICE, NULL, |
11539 | 265 NULL, data->port_p2pj, sw_text_record_bytes(dns_data), sw_text_record_len(dns_data), |
12104 | 266 _publish_reply, NULL, &data->session_id); |
11477 | 267 break; |
268 case PUBLISH_UPDATE: | |
12104 | 269 publish_result = sw_discovery_publish_update(data->session, data->session_id, |
11477 | 270 sw_text_record_bytes(dns_data), sw_text_record_len(dns_data)); |
271 break; | |
272 } | |
11539 | 273 if (publish_result != SW_OKAY) |
274 { | |
11477 | 275 gaim_debug_error("bonjour", "Unable to publish or change the status of the _presence._tcp service."); |
276 return -1; | |
277 } | |
278 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
279 /* Free the memory used by temp data */ |
11477 | 280 sw_text_record_fina(dns_data); |
281 | |
282 return 0; | |
283 } | |
284 | |
11678 | 285 static void |
286 _dns_sd_handle_packets(gpointer data, gint source, GaimInputCondition condition) | |
11477 | 287 { |
12104 | 288 sw_discovery_read_socket((sw_discovery)data); |
11477 | 289 } |
290 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
291 /* End private functions */ |
11477 | 292 |
293 /** | |
294 * Allocate space for the dns-sd data. | |
295 */ | |
11539 | 296 BonjourDnsSd * |
297 bonjour_dns_sd_new() | |
11477 | 298 { |
12035
52eaf0f0db4c
[gaim-migrate @ 14328]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11927
diff
changeset
|
299 BonjourDnsSd *data = g_new0(BonjourDnsSd, 1); |
11539 | 300 |
11477 | 301 return data; |
302 } | |
303 | |
304 /** | |
305 * Deallocate the space of the dns-sd data. | |
306 */ | |
11539 | 307 void |
308 bonjour_dns_sd_free(BonjourDnsSd *data) | |
11477 | 309 { |
11496 | 310 g_free(data->first); |
311 g_free(data->last); | |
312 g_free(data->email); | |
11477 | 313 g_free(data); |
314 } | |
315 | |
316 /** | |
317 * Send a new dns-sd packet updating our status. | |
318 */ | |
11539 | 319 void |
320 bonjour_dns_sd_send_status(BonjourDnsSd *data, const char *status, const char *status_message) | |
11477 | 321 { |
11496 | 322 g_free(data->status); |
323 g_free(data->msg); | |
11477 | 324 |
325 data->status = g_strdup(status); | |
326 data->msg = g_strdup(status_message); | |
327 | |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
328 /* Update our text record with the new status */ |
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
329 _dns_sd_publish(data, PUBLISH_UPDATE); /* <--We must control the errors */ |
11477 | 330 } |
331 | |
332 /** | |
11496 | 333 * Advertise our presence within the dns-sd daemon and start browsing |
334 * for other bonjour peers. | |
11477 | 335 */ |
11927 | 336 gboolean |
11539 | 337 bonjour_dns_sd_start(BonjourDnsSd *data) |
338 { | |
11678 | 339 GaimAccount *account; |
340 GaimConnection *gc; | |
11477 | 341 gint dns_sd_socket; |
342 sw_discovery_oid session_id; | |
11539 | 343 |
11678 | 344 account = data->account; |
345 gc = gaim_account_get_connection(account); | |
346 | |
11927 | 347 /* Initialize the dns-sd data and session */ |
12104 | 348 if (sw_discovery_init(&data->session) != SW_OKAY) |
11539 | 349 { |
11927 | 350 gaim_debug_error("bonjour", "Unable to initialize an mDNS session.\n"); |
13063 | 351 |
352 /* In Avahi, sw_discovery_init frees data->session but doesn't clear it */ | |
353 data->session = NULL; | |
354 | |
11927 | 355 return FALSE; |
11477 | 356 } |
11539 | 357 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
358 /* Publish our bonjour IM client at the mDNS daemon */ |
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
359 _dns_sd_publish(data, PUBLISH_START); /* <--We must control the errors */ |
11539 | 360 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
361 /* Advise the daemon that we are waiting for connections */ |
12104 | 362 if (sw_discovery_browse(data->session, 0, ICHAT_SERVICE, NULL, _browser_reply, |
11539 | 363 data->account, &session_id) != SW_OKAY) |
364 { | |
11477 | 365 gaim_debug_error("bonjour", "Unable to get service."); |
11927 | 366 return FALSE; |
11477 | 367 } |
11539 | 368 |
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
369 /* Get the socket that communicates with the mDNS daemon and bind it to a */ |
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11773
diff
changeset
|
370 /* callback that will handle the dns_sd packets */ |
12104 | 371 dns_sd_socket = sw_discovery_socket(data->session); |
11678 | 372 gc->inpa = gaim_input_add(dns_sd_socket, GAIM_INPUT_READ, |
373 _dns_sd_handle_packets, data->session); | |
11927 | 374 |
375 return TRUE; | |
11477 | 376 } |
377 | |
378 /** | |
379 * Unregister the "_presence._tcp" service at the mDNS daemon. | |
380 */ | |
11927 | 381 void |
11539 | 382 bonjour_dns_sd_stop(BonjourDnsSd *data) |
11477 | 383 { |
11678 | 384 GaimAccount *account; |
385 GaimConnection *gc; | |
386 | |
11927 | 387 if (data->session == NULL) |
388 return; | |
389 | |
12104 | 390 sw_discovery_cancel(data->session, data->session_id); |
11539 | 391 |
11678 | 392 account = data->account; |
393 gc = gaim_account_get_connection(account); | |
394 gaim_input_remove(gc->inpa); | |
12093 | 395 |
396 g_free(data->session); | |
397 data->session = NULL; | |
11477 | 398 } |