]> git.meshlink.io Git - catta/blob - avahi-core/server.c
* Implement POOF aka "Passive Observation of Failure"
[catta] / avahi-core / server.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 <sys/socket.h>
27 #include <arpa/inet.h>
28 #include <string.h>
29 #include <sys/utsname.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <stdio.h>
33 #include <assert.h>
34 #include <stdlib.h>
35
36 #include <avahi-common/domain.h>
37 #include <avahi-common/timeval.h>
38 #include <avahi-common/malloc.h>
39 #include <avahi-common/error.h>
40
41 #include "server.h"
42 #include "iface.h"
43 #include "socket.h"
44 #include "browse.h"
45 #include "log.h"
46 #include "util.h"
47
48 #define AVAHI_RR_HOLDOFF_MSEC 1000
49 #define AVAHI_RR_HOLDOFF_MSEC_RATE_LIMIT 60000
50 #define AVAHI_RR_RATE_LIMIT_COUNT 15
51
52 static void free_entry(AvahiServer*s, AvahiEntry *e) {
53     AvahiEntry *t;
54
55     assert(s);
56     assert(e);
57
58     avahi_goodbye_entry(s, e, 1);
59
60     /* Remove from linked list */
61     AVAHI_LLIST_REMOVE(AvahiEntry, entries, s->entries, e);
62
63     /* Remove from hash table indexed by name */
64     t = avahi_hashmap_lookup(s->entries_by_key, e->record->key);
65     AVAHI_LLIST_REMOVE(AvahiEntry, by_key, t, e);
66     if (t)
67         avahi_hashmap_replace(s->entries_by_key, t->record->key, t);
68     else
69         avahi_hashmap_remove(s->entries_by_key, e->record->key);
70
71     /* Remove from associated group */
72     if (e->group)
73         AVAHI_LLIST_REMOVE(AvahiEntry, by_group, e->group->entries, e);
74
75     avahi_record_unref(e->record);
76     avahi_free(e);
77 }
78
79 static void free_group(AvahiServer *s, AvahiSEntryGroup *g) {
80     assert(s);
81     assert(g);
82
83     while (g->entries)
84         free_entry(s, g->entries);
85
86     if (g->register_time_event)
87         avahi_time_event_free(g->register_time_event);
88     
89     AVAHI_LLIST_REMOVE(AvahiSEntryGroup, groups, s->groups, g);
90     avahi_free(g);
91 }
92
93 static void cleanup_dead(AvahiServer *s) {
94     assert(s);
95
96     if (s->need_group_cleanup) {
97         AvahiSEntryGroup *g, *next;
98         
99         for (g = s->groups; g; g = next) {
100             next = g->groups_next;
101             
102             if (g->dead)
103                 free_group(s, g);
104         }
105
106         s->need_group_cleanup = 0;
107     }
108
109     if (s->need_entry_cleanup) {
110         AvahiEntry *e, *next;
111         
112         for (e = s->entries; e; e = next) {
113             next = e->entries_next;
114             
115             if (e->dead)
116                 free_entry(s, e);
117         }
118
119         s->need_entry_cleanup = 0;
120     }
121
122     if (s->need_browser_cleanup)
123         avahi_browser_cleanup(s);
124 }
125
126 static void enum_aux_records(AvahiServer *s, AvahiInterface *i, const char *name, uint16_t type, void (*callback)(AvahiServer *s, AvahiRecord *r, int flush_cache, void* userdata), void* userdata) {
127     AvahiKey *k;
128     AvahiEntry *e;
129
130     assert(s);
131     assert(i);
132     assert(name);
133     assert(callback);
134
135     assert(type != AVAHI_DNS_TYPE_ANY);
136
137     if (!(k = avahi_key_new(name, AVAHI_DNS_CLASS_IN, type)))
138         return; /** OOM */
139
140     for (e = avahi_hashmap_lookup(s->entries_by_key, k); e; e = e->by_key_next)
141         if (!e->dead && avahi_entry_is_registered(s, e, i)) 
142             callback(s, e->record, e->flags & AVAHI_ENTRY_UNIQUE, userdata);
143
144     avahi_key_unref(k);
145 }
146
147 void avahi_server_enumerate_aux_records(AvahiServer *s, AvahiInterface *i, AvahiRecord *r, void (*callback)(AvahiServer *s, AvahiRecord *r, int flush_cache, void* userdata), void* userdata) {
148     assert(s);
149     assert(i);
150     assert(r);
151     assert(callback);
152     
153     if (r->key->clazz == AVAHI_DNS_CLASS_IN) {
154         if (r->key->type == AVAHI_DNS_TYPE_PTR) {
155             enum_aux_records(s, i, r->data.ptr.name, AVAHI_DNS_TYPE_SRV, callback, userdata);
156             enum_aux_records(s, i, r->data.ptr.name, AVAHI_DNS_TYPE_TXT, callback, userdata);
157         } else if (r->key->type == AVAHI_DNS_TYPE_SRV) {
158             enum_aux_records(s, i, r->data.srv.name, AVAHI_DNS_TYPE_A, callback, userdata);
159             enum_aux_records(s, i, r->data.srv.name, AVAHI_DNS_TYPE_AAAA, callback, userdata);
160         }
161     }
162 }
163
164 void avahi_server_prepare_response(AvahiServer *s, AvahiInterface *i, AvahiEntry *e, int unicast_response, int auxiliary) {
165     assert(s);
166     assert(i);
167     assert(e);
168
169     avahi_record_list_push(s->record_list, e->record, e->flags & AVAHI_ENTRY_UNIQUE, unicast_response, auxiliary);
170 }
171
172 void avahi_server_prepare_matching_responses(AvahiServer *s, AvahiInterface *i, AvahiKey *k, int unicast_response) {
173     AvahiEntry *e;
174 /*     char *txt; */
175     
176     assert(s);
177     assert(i);
178     assert(k);
179
180 /*     avahi_log_debug("Posting responses matching [%s]", txt = avahi_key_to_string(k)); */
181 /*     avahi_free(txt); */
182
183     if (avahi_key_is_pattern(k)) {
184
185         /* Handle ANY query */
186         
187         for (e = s->entries; e; e = e->entries_next)
188             if (!e->dead && avahi_key_pattern_match(k, e->record->key) && avahi_entry_is_registered(s, e, i))
189                 avahi_server_prepare_response(s, i, e, unicast_response, 0);
190
191     } else {
192
193         /* Handle all other queries */
194         
195         for (e = avahi_hashmap_lookup(s->entries_by_key, k); e; e = e->by_key_next)
196             if (!e->dead && avahi_entry_is_registered(s, e, i))
197                 avahi_server_prepare_response(s, i, e, unicast_response, 0);
198     }
199 }
200
201 static void withdraw_entry(AvahiServer *s, AvahiEntry *e) {
202     assert(s);
203     assert(e);
204     
205     if (e->group) {
206         AvahiEntry *k;
207         
208         for (k = e->group->entries; k; k = k->by_group_next) {
209             if (!k->dead) {
210                 avahi_goodbye_entry(s, k, 0);
211                 k->dead = 1;
212             }
213         }
214
215         e->group->n_probing = 0;
216
217         avahi_s_entry_group_change_state(e->group, AVAHI_ENTRY_GROUP_COLLISION);
218     } else {
219         avahi_goodbye_entry(s, e, 0);
220         e->dead = 1;
221     }
222
223     s->need_entry_cleanup = 1;
224 }
225
226 static void withdraw_rrset(AvahiServer *s, AvahiKey *key) {
227     AvahiEntry *e;
228     
229     assert(s);
230     assert(key);
231
232    for (e = avahi_hashmap_lookup(s->entries_by_key, key); e; e = e->by_key_next)
233        if (!e->dead)
234            withdraw_entry(s, e);
235 }
236
237 static void incoming_probe(AvahiServer *s, AvahiRecord *record, AvahiInterface *i) {
238     AvahiEntry *e, *n;
239     char *t;
240     int ours = 0, won = 0, lost = 0;
241     
242     assert(s);
243     assert(record);
244     assert(i);
245
246     t = avahi_record_to_string(record);
247
248 /*     avahi_log_debug("incoming_probe()");  */
249
250     for (e = avahi_hashmap_lookup(s->entries_by_key, record->key); e; e = n) {
251         int cmp;
252         n = e->by_key_next;
253
254         if (e->dead)
255             continue;
256         
257         if ((cmp = avahi_record_lexicographical_compare(e->record, record)) == 0) {
258             ours = 1;
259             break;
260         } else {
261             
262             if (avahi_entry_is_probing(s, e, i)) {
263                 if (cmp > 0)
264                     won = 1;
265                 else /* cmp < 0 */
266                     lost = 1;
267             }
268         }
269     }
270
271     if (!ours) {
272
273         if (won)
274             avahi_log_debug("Recieved conflicting probe [%s]. Local host won.", t);
275         else if (lost) {
276             avahi_log_debug("Recieved conflicting probe [%s]. Local host lost. Withdrawing.", t);
277             withdraw_rrset(s, record->key);
278         }/*  else */
279 /*             avahi_log_debug("Not conflicting probe"); */
280     }
281
282     avahi_free(t);
283 }
284
285 static int handle_conflict(AvahiServer *s, AvahiInterface *i, AvahiRecord *record, int unique, const AvahiAddress *a) {
286     int valid = 1, ours = 0, conflict = 0, withdraw_immediately = 0;
287     AvahiEntry *e, *n, *conflicting_entry = NULL;
288     
289     assert(s);
290     assert(i);
291     assert(record);
292
293
294 /*     avahi_log_debug("CHECKING FOR CONFLICT: [%s]", t);   */
295
296     for (e = avahi_hashmap_lookup(s->entries_by_key, record->key); e; e = n) {
297         n = e->by_key_next;
298
299         if (e->dead)
300             continue;
301
302         /* Check if the incoming is a goodbye record */
303         if (avahi_record_is_goodbye(record)) {
304
305             if (avahi_record_equal_no_ttl(e->record, record)) {
306                 char *t;
307
308                 /* Refresh */
309                 t = avahi_record_to_string(record); 
310                 avahi_log_debug("Recieved goodbye record for one of our records [%s]. Refreshing.", t);
311                 avahi_server_prepare_matching_responses(s, i, e->record->key, 0);
312
313                 valid = 0;
314                 avahi_free(t);
315                 break;
316             }
317
318             /* If the goodybe packet doesn't match one of our own RRs, we simply ignore it. */
319             continue;
320         }
321         
322         if (!(e->flags & AVAHI_ENTRY_UNIQUE) && !unique)
323             continue;
324
325         /* Either our entry or the other is intended to be unique, so let's check */
326         
327         if (avahi_record_equal_no_ttl(e->record, record)) {
328             ours = 1; /* We have an identical record, so this is no conflict */
329             
330             /* Check wheter there is a TTL conflict */
331             if (record->ttl <= e->record->ttl/2 &&
332                 avahi_entry_is_registered(s, e, i)) {
333                 char *t;
334                 /* Refresh */
335                 t = avahi_record_to_string(record); 
336                 
337                 avahi_log_debug("Recieved record with bad TTL [%s]. Refreshing.", t);
338                 avahi_server_prepare_matching_responses(s, i, e->record->key, 0);
339                 valid = 0;
340                 
341                 avahi_free(t);
342             }
343                 
344             /* There's no need to check the other entries of this RRset */
345             break;
346
347         } else {
348             
349             if (avahi_entry_is_registered(s, e, i)) {
350                 
351                 /* A conflict => we have to return to probe mode */
352                 conflict = 1;
353                 conflicting_entry = e;
354
355             } else if (avahi_entry_is_probing(s, e, i)) {
356
357                 /* We are currently registering a matching record, but
358                  * someone else already claimed it, so let's
359                  * withdraw */
360                 conflict = 1;
361                 withdraw_immediately = 1;
362             }
363         }
364     }
365
366 /*     avahi_log_debug("ours=%i conflict=%i", ours, conflict); */
367
368     if (!ours && conflict) {
369         char *t;
370  
371         valid = 0;
372
373         t = avahi_record_to_string(record); 
374  
375         if (withdraw_immediately) {
376             avahi_log_debug("Recieved conflicting record [%s] with local record to be. Withdrawing.", t);
377             withdraw_rrset(s, record->key);
378         } else {
379             assert(conflicting_entry);
380             avahi_log_debug("Recieved conflicting record [%s]. Resetting our record.", t);
381             avahi_entry_return_to_initial_state(s, conflicting_entry, i);
382
383             /* Local unique records are returned to probing
384              * state. Local shared records are reannounced. */
385         }
386
387         avahi_free(t);
388     }
389
390     return valid;
391 }
392
393 static void append_aux_callback(AvahiServer *s, AvahiRecord *r, int flush_cache, void* userdata) {
394     int *unicast_response = userdata;
395
396     assert(s);
397     assert(r);
398     assert(unicast_response);
399     
400     avahi_record_list_push(s->record_list, r, flush_cache, *unicast_response, 1);
401 }
402
403 static void append_aux_records_to_list(AvahiServer *s, AvahiInterface *i, AvahiRecord *r, int unicast_response) {
404     assert(s);
405     assert(r);
406
407     avahi_server_enumerate_aux_records(s, i, r, append_aux_callback, &unicast_response);
408 }
409
410 void avahi_server_generate_response(AvahiServer *s, AvahiInterface *i, AvahiDnsPacket *p, const AvahiAddress *a, uint16_t port, int legacy_unicast, int immediately) {
411
412     assert(s);
413     assert(i);
414     assert(!legacy_unicast || (a && port > 0 && p));
415
416     if (legacy_unicast) {
417         AvahiDnsPacket *reply;
418         AvahiRecord *r;
419
420         if (!(reply = avahi_dns_packet_new_reply(p, 512 /* unicast DNS maximum packet size is 512 */ , 1, 1)))
421             return; /* OOM */
422         
423         while ((r = avahi_record_list_next(s->record_list, NULL, NULL, NULL))) {
424
425             append_aux_records_to_list(s, i, r, 0);
426             
427             if (avahi_dns_packet_append_record(reply, r, 0, 10))
428                 avahi_dns_packet_inc_field(reply, AVAHI_DNS_FIELD_ANCOUNT);
429             else {
430                 char *t = avahi_record_to_string(r);
431                 avahi_log_warn("Record [%s] not fitting in legacy unicast packet, dropping.", t);
432                 avahi_free(t);
433             }
434
435             avahi_record_unref(r);
436         }
437
438         if (avahi_dns_packet_get_field(reply, AVAHI_DNS_FIELD_ANCOUNT) != 0)
439             avahi_interface_send_packet_unicast(i, reply, a, port);
440
441         avahi_dns_packet_free(reply);
442
443     } else {
444         int unicast_response, flush_cache, auxiliary;
445         AvahiDnsPacket *reply = NULL;
446         AvahiRecord *r;
447
448         /* In case the query packet was truncated never respond
449         immediately, because known answer suppression records might be
450         contained in later packets */
451         int tc = p && !!(avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS) & AVAHI_DNS_FLAG_TC);
452         
453         while ((r = avahi_record_list_next(s->record_list, &flush_cache, &unicast_response, &auxiliary))) {
454                         
455             if (!avahi_interface_post_response(i, r, flush_cache, a, immediately || (flush_cache && !tc && !auxiliary)) && unicast_response) {
456
457                 append_aux_records_to_list(s, i, r, unicast_response);
458                 
459                 /* Due to some reasons the record has not been scheduled.
460                  * The client requested an unicast response in that
461                  * case. Therefore we prepare such a response */
462
463                 for (;;) {
464                 
465                     if (!reply) {
466                         assert(p);
467
468                         if (!(reply = avahi_dns_packet_new_reply(p, i->hardware->mtu, 0, 0)))
469                             break; /* OOM */
470                     }
471                 
472                     if (avahi_dns_packet_append_record(reply, r, flush_cache, 0)) {
473
474                         /* Appending this record succeeded, so incremeant
475                          * the specific header field, and return to the caller */
476                         
477                         avahi_dns_packet_inc_field(reply, AVAHI_DNS_FIELD_ANCOUNT);
478
479                         break;
480                     }
481
482                     if (avahi_dns_packet_get_field(reply, AVAHI_DNS_FIELD_ANCOUNT) == 0) {
483                         size_t size;
484
485                         /* The record is too large for one packet, so create a larger packet */
486
487                         avahi_dns_packet_free(reply);
488                         size = avahi_record_get_estimate_size(r) + AVAHI_DNS_PACKET_HEADER_SIZE;
489                         if (size > AVAHI_DNS_PACKET_MAX_SIZE)
490                             size = AVAHI_DNS_PACKET_MAX_SIZE;
491
492                         if (!(reply = avahi_dns_packet_new_reply(p, size, 0, 1)))
493                             break; /* OOM */
494
495                         if (!avahi_dns_packet_append_record(reply, r, flush_cache, 0)) {
496                             char *t;
497                             avahi_dns_packet_free(reply);
498                             t = avahi_record_to_string(r);
499                             avahi_log_warn("Record [%s] too large, doesn't fit in any packet!", t);
500                             avahi_free(t);
501                             break;
502                         } else
503                             avahi_dns_packet_inc_field(reply, AVAHI_DNS_FIELD_ANCOUNT);
504                     }
505
506                     /* Appending the record didn't succeeed, so let's send this packet, and create a new one */
507                     avahi_interface_send_packet_unicast(i, reply, a, port);
508                     avahi_dns_packet_free(reply);
509                     reply = NULL;
510                 }
511             }
512
513             avahi_record_unref(r);
514         }
515
516         if (reply) {
517             if (avahi_dns_packet_get_field(reply, AVAHI_DNS_FIELD_ANCOUNT) != 0) 
518                 avahi_interface_send_packet_unicast(i, reply, a, port);
519             avahi_dns_packet_free(reply);
520         }
521     }
522
523     avahi_record_list_flush(s->record_list);
524 }
525
526
527 static void reflect_response(AvahiServer *s, AvahiInterface *i, AvahiRecord *r, int flush_cache) {
528     AvahiInterface *j;
529     
530     assert(s);
531     assert(i);
532     assert(r);
533
534     if (!s->config.enable_reflector)
535         return;
536
537     for (j = s->monitor->interfaces; j; j = j->interface_next)
538         if (j != i && (s->config.reflect_ipv || j->protocol == i->protocol))
539             avahi_interface_post_response(j, r, flush_cache, NULL, 1);
540 }
541
542 static void* reflect_cache_walk_callback(AvahiCache *c, AvahiKey *pattern, AvahiCacheEntry *e, void* userdata) {
543     AvahiServer *s = userdata;
544
545     assert(c);
546     assert(pattern);
547     assert(e);
548     assert(s);
549
550     avahi_record_list_push(s->record_list, e->record, e->cache_flush, 0, 0);
551     return NULL;
552 }
553
554 static void reflect_query(AvahiServer *s, AvahiInterface *i, AvahiKey *k) {
555     AvahiInterface *j;
556     
557     assert(s);
558     assert(i);
559     assert(k);
560
561     if (!s->config.enable_reflector)
562         return;
563
564     for (j = s->monitor->interfaces; j; j = j->interface_next)
565         if (j != i && (s->config.reflect_ipv || j->protocol == i->protocol)) {
566             /* Post the query to other networks */
567             avahi_interface_post_query(j, k, 1);
568
569             /* Reply from caches of other network. This is needed to
570              * "work around" known answer suppression. */
571
572             avahi_cache_walk(j->cache, k, reflect_cache_walk_callback, s);
573         }
574 }
575
576 static void reflect_probe(AvahiServer *s, AvahiInterface *i, AvahiRecord *r) {
577     AvahiInterface *j;
578     
579     assert(s);
580     assert(i);
581     assert(r);
582
583     if (!s->config.enable_reflector)
584         return;
585
586     for (j = s->monitor->interfaces; j; j = j->interface_next)
587         if (j != i && (s->config.reflect_ipv || j->protocol == i->protocol))
588             avahi_interface_post_probe(j, r, 1);
589 }
590
591 static void handle_query_packet(AvahiServer *s, AvahiDnsPacket *p, AvahiInterface *i, const AvahiAddress *a, uint16_t port, int legacy_unicast, int from_local_iface) {
592     size_t n;
593     int is_probe;
594     
595     assert(s);
596     assert(p);
597     assert(i);
598     assert(a);
599
600 /*     avahi_log_debug("query"); */
601
602     assert(avahi_record_list_is_empty(s->record_list));
603
604     is_probe = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_NSCOUNT) > 0;
605     
606     /* Handle the questions */
607     for (n = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_QDCOUNT); n > 0; n --) {
608         AvahiKey *key;
609         int unicast_response = 0;
610
611         if (!(key = avahi_dns_packet_consume_key(p, &unicast_response))) {
612             avahi_log_warn("Packet too short (1)");
613             goto fail;
614         }
615
616         if (!legacy_unicast && !from_local_iface) {
617             reflect_query(s, i, key);
618             avahi_cache_start_poof(i->cache, key, a);
619         }
620
621         if (avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT) == 0 &&
622             !(avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS) & AVAHI_DNS_FLAG_TC))
623             /* Allow our own queries to be suppressed by incoming
624              * queries only when they do not include known answers */
625             avahi_query_scheduler_incoming(i->query_scheduler, key);
626         
627         avahi_server_prepare_matching_responses(s, i, key, unicast_response);
628         avahi_key_unref(key);
629     }
630
631     if (!legacy_unicast) {
632
633         /* Known Answer Suppression */
634         for (n = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT); n > 0; n --) {
635             AvahiRecord *record;
636             int unique = 0;
637             
638             if (!(record = avahi_dns_packet_consume_record(p, &unique))) {
639                 avahi_log_warn("Packet too short (2)");
640                 goto fail;
641             }
642             
643             if (handle_conflict(s, i, record, unique, a)) {
644                 avahi_response_scheduler_suppress(i->response_scheduler, record, a);
645                 avahi_record_list_drop(s->record_list, record);
646                 avahi_cache_stop_poof(i->cache, record, a);
647             }
648             
649             avahi_record_unref(record);
650         }
651         
652         /* Probe record */
653         for (n = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_NSCOUNT); n > 0; n --) {
654             AvahiRecord *record;
655             int unique = 0;
656             
657             if (!(record = avahi_dns_packet_consume_record(p, &unique))) {
658                 avahi_log_warn("Packet too short (3)");
659                 goto fail;
660             }
661             
662             if (!avahi_key_is_pattern(record->key)) {
663                 if (!from_local_iface)
664                     reflect_probe(s, i, record);
665                 incoming_probe(s, record, i);
666             }
667             
668             avahi_record_unref(record);
669         }
670     }
671
672     if (!avahi_record_list_is_empty(s->record_list))
673         avahi_server_generate_response(s, i, p, a, port, legacy_unicast, is_probe);
674
675     return;
676     
677 fail:
678     avahi_record_list_flush(s->record_list);
679 }
680
681 static void handle_response_packet(AvahiServer *s, AvahiDnsPacket *p, AvahiInterface *i, const AvahiAddress *a, int from_local_iface) {
682     unsigned n;
683     
684     assert(s);
685     assert(p);
686     assert(i);
687     assert(a);
688
689 /*     avahi_log_debug("response"); */
690     
691     for (n = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT) +
692              avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ARCOUNT); n > 0; n--) {
693         AvahiRecord *record;
694         int cache_flush = 0;
695 /*         char *txt; */
696         
697         if (!(record = avahi_dns_packet_consume_record(p, &cache_flush))) {
698             avahi_log_warn("Packet too short (4)");
699             break;
700         }
701
702         if (!avahi_key_is_pattern(record->key)) {
703
704 /*             avahi_log_debug("Handling response: %s", txt = avahi_record_to_string(record)); */
705 /*             avahi_free(txt); */
706             
707             if (handle_conflict(s, i, record, cache_flush, a)) {
708                 if (!from_local_iface)
709                     reflect_response(s, i, record, cache_flush);
710                 avahi_cache_update(i->cache, record, cache_flush, a);
711                 avahi_response_scheduler_incoming(i->response_scheduler, record, cache_flush);
712             }
713         }
714             
715         avahi_record_unref(record);
716     }
717
718     /* If the incoming response contained a conflicting record, some
719        records have been scheduling for sending. We need to flush them
720        here. */
721     if (!avahi_record_list_is_empty(s->record_list))
722         avahi_server_generate_response(s, i, NULL, NULL, 0, 0, 1);
723 }
724
725 static AvahiLegacyUnicastReflectSlot* allocate_slot(AvahiServer *s) {
726     unsigned n, idx = (unsigned) -1;
727     AvahiLegacyUnicastReflectSlot *slot;
728     
729     assert(s);
730
731     if (!s->legacy_unicast_reflect_slots)
732         s->legacy_unicast_reflect_slots = avahi_new0(AvahiLegacyUnicastReflectSlot*, AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS);
733
734     for (n = 0; n < AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS; n++, s->legacy_unicast_reflect_id++) {
735         idx = s->legacy_unicast_reflect_id % AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS;
736         
737         if (!s->legacy_unicast_reflect_slots[idx])
738             break;
739     }
740
741     if (idx == (unsigned) -1 || s->legacy_unicast_reflect_slots[idx])
742         return NULL;
743
744     if (!(slot = avahi_new(AvahiLegacyUnicastReflectSlot, 1)))
745         return NULL; /* OOM */
746
747     s->legacy_unicast_reflect_slots[idx] = slot;
748     slot->id = s->legacy_unicast_reflect_id++;
749     slot->server = s;
750     
751     return slot;
752 }
753
754 static void deallocate_slot(AvahiServer *s, AvahiLegacyUnicastReflectSlot *slot) {
755     unsigned idx;
756
757     assert(s);
758     assert(slot);
759
760     idx = slot->id % AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS;
761
762     assert(s->legacy_unicast_reflect_slots[idx] == slot);
763
764     avahi_time_event_free(slot->time_event);
765     
766     avahi_free(slot);
767     s->legacy_unicast_reflect_slots[idx] = NULL;
768 }
769
770 static void free_slots(AvahiServer *s) {
771     unsigned idx;
772     assert(s);
773
774     if (!s->legacy_unicast_reflect_slots)
775         return;
776
777     for (idx = 0; idx < AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS; idx ++)
778         if (s->legacy_unicast_reflect_slots[idx])
779             deallocate_slot(s, s->legacy_unicast_reflect_slots[idx]);
780
781     avahi_free(s->legacy_unicast_reflect_slots);
782     s->legacy_unicast_reflect_slots = NULL;
783 }
784
785 static AvahiLegacyUnicastReflectSlot* find_slot(AvahiServer *s, uint16_t id) {
786     unsigned idx;
787     
788     assert(s);
789
790     if (!s->legacy_unicast_reflect_slots)
791         return NULL;
792     
793     idx = id % AVAHI_MAX_LEGACY_UNICAST_REFLECT_SLOTS;
794
795     if (!s->legacy_unicast_reflect_slots[idx] || s->legacy_unicast_reflect_slots[idx]->id != id)
796         return NULL;
797
798     return s->legacy_unicast_reflect_slots[idx];
799 }
800
801 static void legacy_unicast_reflect_slot_timeout(AvahiTimeEvent *e, void *userdata) {
802     AvahiLegacyUnicastReflectSlot *slot = userdata;
803
804     assert(e);
805     assert(slot);
806     assert(slot->time_event == e);
807
808     deallocate_slot(slot->server, slot);
809 }
810
811 static void reflect_legacy_unicast_query_packet(AvahiServer *s, AvahiDnsPacket *p, AvahiInterface *i, const AvahiAddress *a, uint16_t port) {
812     AvahiLegacyUnicastReflectSlot *slot;
813     AvahiInterface *j;
814
815     assert(s);
816     assert(p);
817     assert(i);
818     assert(a);
819     assert(port > 0);
820     assert(i->protocol == a->proto);
821     
822     if (!s->config.enable_reflector)
823         return;
824
825 /*     avahi_log_debug("legacy unicast reflector"); */
826     
827     /* Reflecting legacy unicast queries is a little more complicated
828        than reflecting normal queries, since we must route the
829        responses back to the right client. Therefore we must store
830        some information for finding the right client contact data for
831        response packets. In contrast to normal queries legacy
832        unicast query and response packets are reflected untouched and
833        are not reassembled into larger packets */
834
835     if (!(slot = allocate_slot(s))) {
836         /* No slot available, we drop this legacy unicast query */
837         avahi_log_warn("No slot available for legacy unicast reflection, dropping query packet.");
838         return;
839     }
840
841     slot->original_id = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ID);
842     slot->address = *a;
843     slot->port = port;
844     slot->interface = i->hardware->index;
845
846     avahi_elapse_time(&slot->elapse_time, 2000, 0);
847     slot->time_event = avahi_time_event_new(s->time_event_queue, &slot->elapse_time, legacy_unicast_reflect_slot_timeout, slot);
848
849     /* Patch the packet with our new locally generatedt id */
850     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_ID, slot->id);
851     
852     for (j = s->monitor->interfaces; j; j = j->interface_next)
853         if (avahi_interface_relevant(j) &&
854             j != i &&
855             (s->config.reflect_ipv || j->protocol == i->protocol)) {
856
857             if (j->protocol == AVAHI_PROTO_INET && s->fd_legacy_unicast_ipv4 >= 0) {
858                 avahi_send_dns_packet_ipv4(s->fd_legacy_unicast_ipv4, j->hardware->index, p, NULL, 0);
859                 } else if (j->protocol == AVAHI_PROTO_INET6 && s->fd_legacy_unicast_ipv6 >= 0)
860                 avahi_send_dns_packet_ipv6(s->fd_legacy_unicast_ipv6, j->hardware->index, p, NULL, 0);
861         }
862
863     /* Reset the id */
864     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_ID, slot->original_id);
865 }
866
867 static int originates_from_local_legacy_unicast_socket(AvahiServer *s, const struct sockaddr *sa) {
868     AvahiAddress a;
869     assert(s);
870     assert(sa);
871
872     if (!s->config.enable_reflector)
873         return 0;
874     
875     avahi_address_from_sockaddr(sa, &a);
876
877     if (!avahi_address_is_local(s->monitor, &a))
878         return 0;
879     
880     if (sa->sa_family == AF_INET && s->fd_legacy_unicast_ipv4 >= 0) {
881         struct sockaddr_in lsa;
882         socklen_t l = sizeof(lsa);
883         
884         if (getsockname(s->fd_legacy_unicast_ipv4, &lsa, &l) != 0)
885             avahi_log_warn("getsockname(): %s", strerror(errno));
886         else
887             return lsa.sin_port == ((const struct sockaddr_in*) sa)->sin_port;
888
889     }
890
891     if (sa->sa_family == AF_INET6 && s->fd_legacy_unicast_ipv6 >= 0) {
892         struct sockaddr_in6 lsa;
893         socklen_t l = sizeof(lsa);
894
895         if (getsockname(s->fd_legacy_unicast_ipv6, &lsa, &l) != 0)
896             avahi_log_warn("getsockname(): %s", strerror(errno));
897         else
898             return lsa.sin6_port == ((const struct sockaddr_in6*) sa)->sin6_port;
899     }
900
901     return 0;
902 }
903
904 static int is_mdns_mcast_address(const AvahiAddress *a) {
905     AvahiAddress b;
906     assert(a);
907
908     avahi_address_parse(a->proto == AVAHI_PROTO_INET ? AVAHI_IPV4_MCAST_GROUP : AVAHI_IPV6_MCAST_GROUP, a->proto, &b);
909     return avahi_address_cmp(a, &b) == 0;
910 }
911
912 static int originates_from_local_iface(AvahiServer *s, AvahiIfIndex iface, const AvahiAddress *a, uint16_t port) {
913     assert(s);
914     assert(iface != AVAHI_IF_UNSPEC);
915     assert(a);
916
917     /* If it isn't the MDNS port it can't be generated by us */
918     if (port != AVAHI_MDNS_PORT)
919         return 0;
920
921     return avahi_interface_has_address(s->monitor, iface, a);
922 }
923
924 static void dispatch_packet(AvahiServer *s, AvahiDnsPacket *p, const struct sockaddr *sa, AvahiAddress *dest, AvahiIfIndex iface, int ttl) {
925     AvahiInterface *i;
926     AvahiAddress a;
927     uint16_t port;
928     int from_local_iface = 0;
929     
930     assert(s);
931     assert(p);
932     assert(sa);
933     assert(dest);
934     assert(iface > 0);
935
936     if (!(i = avahi_interface_monitor_get_interface(s->monitor, iface, avahi_af_to_proto(sa->sa_family))) ||
937         !avahi_interface_relevant(i)) {
938         avahi_log_warn("Recieved packet from invalid interface.");
939         return;
940     }
941
942 /*     avahi_log_debug("new packet recieved on interface '%s.%i'.", i->hardware->name, i->protocol); */
943
944     port = avahi_port_from_sockaddr(sa);
945     avahi_address_from_sockaddr(sa, &a);
946     
947     if (avahi_address_is_ipv4_in_ipv6(&a))
948         /* This is an IPv4 address encapsulated in IPv6, so let's ignore it. */
949         return;
950
951     if (originates_from_local_legacy_unicast_socket(s, sa))
952         /* This originates from our local reflector, so let's ignore it */
953         return;
954
955     /* We don't want to reflect local traffic, so we check if this packet is generated locally. */
956     if (s->config.enable_reflector)
957         from_local_iface = originates_from_local_iface(s, iface, &a, port);
958
959     if (avahi_dns_packet_check_valid_multicast(p) < 0) {
960         avahi_log_warn("Recieved invalid packet.");
961         return;
962     }
963
964     if (avahi_dns_packet_is_query(p)) {
965         int legacy_unicast = 0;
966
967         if (avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ARCOUNT) != 0) {
968             avahi_log_warn("Invalid query packet.");
969             return;
970         }
971
972         if (port != AVAHI_MDNS_PORT) {
973             /* Legacy Unicast */
974
975             if ((avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT) != 0 ||
976                  avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_NSCOUNT) != 0)) {
977                 avahi_log_warn("Invalid legacy unicast query packet.");
978                 return;
979             }
980         
981             legacy_unicast = 1;
982         }
983
984         if (legacy_unicast)
985             reflect_legacy_unicast_query_packet(s, p, i, &a, port);
986         
987         handle_query_packet(s, p, i, &a, port, legacy_unicast, from_local_iface);
988         
989 /*         avahi_log_debug("Handled query"); */
990     } else {
991         if (port != AVAHI_MDNS_PORT) {
992             avahi_log_warn("Recieved repsonse with invalid source port %u on interface '%s.%i'", port, i->hardware->name, i->protocol);
993             return;
994         }
995
996         if (ttl != 255 && s->config.check_response_ttl) {
997             avahi_log_warn("Recieved response with invalid TTL %u on interface '%s.%i'.", ttl, i->hardware->name, i->protocol);
998             return;
999         }
1000
1001         if (!is_mdns_mcast_address(dest) &&
1002             !avahi_interface_address_on_link(i, &a)) {
1003             avahi_log_warn("Recivied non-local response on interface '%s.%i'.", i->hardware->name, i->protocol);
1004             return;
1005         }
1006         
1007         if (avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_QDCOUNT) != 0 ||
1008             avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ANCOUNT) == 0 ||
1009             avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_NSCOUNT) != 0) {
1010             avahi_log_warn("Invalid response packet.");
1011             return;
1012         }
1013
1014         handle_response_packet(s, p, i, &a, from_local_iface);
1015 /*         avahi_log_debug("Handled response"); */
1016     }
1017 }
1018
1019 static void dispatch_legacy_unicast_packet(AvahiServer *s, AvahiDnsPacket *p, const struct sockaddr *sa, AvahiIfIndex iface) {
1020     AvahiInterface *i, *j;
1021     AvahiAddress a;
1022     AvahiLegacyUnicastReflectSlot *slot;
1023     
1024     assert(s);
1025     assert(p);
1026     assert(sa);
1027     assert(iface > 0);
1028
1029     if (!(i = avahi_interface_monitor_get_interface(s->monitor, iface, avahi_af_to_proto(sa->sa_family))) ||
1030         !avahi_interface_relevant(i)) {
1031         avahi_log_warn("Recieved packet from invalid interface.");
1032         return;
1033     }
1034
1035 /*     avahi_log_debug("new legacy unicast packet recieved on interface '%s.%i'.", i->hardware->name, i->protocol); */
1036
1037     avahi_address_from_sockaddr(sa, &a);
1038     
1039     if (avahi_address_is_ipv4_in_ipv6(&a))
1040         /* This is an IPv4 address encapsulated in IPv6, so let's ignore it. */
1041         return;
1042
1043     if (avahi_dns_packet_check_valid(p) < 0 || avahi_dns_packet_is_query(p)) {
1044         avahi_log_warn("Recieved invalid packet.");
1045         return;
1046     }
1047
1048     if (!(slot = find_slot(s, avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ID)))) {
1049         avahi_log_warn("Recieved legacy unicast response with unknown id");
1050         return;
1051     }
1052
1053     if (!(j = avahi_interface_monitor_get_interface(s->monitor, slot->interface, slot->address.proto)) ||
1054         !avahi_interface_relevant(j))
1055         return;
1056
1057     /* Patch the original ID into this response */
1058     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_ID, slot->original_id);
1059
1060     /* Forward the response to the correct client */
1061     avahi_interface_send_packet_unicast(j, p, &slot->address, slot->port);
1062
1063     /* Undo changes to packet */
1064     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_ID, slot->id);
1065 }
1066
1067 static void socket_event(AvahiWatch *w, int fd, AvahiWatchEvent events, void *userdata) {
1068     AvahiServer *s = userdata;
1069     AvahiAddress dest;
1070     AvahiDnsPacket *p;
1071     AvahiIfIndex iface;
1072     uint8_t ttl;
1073     struct sockaddr_in sa;
1074     struct sockaddr_in6 sa6;
1075
1076     assert(w);
1077     assert(fd >= 0);
1078
1079     if (events & AVAHI_WATCH_IN) {
1080     
1081         if (fd == s->fd_ipv4) {
1082             dest.proto = AVAHI_PROTO_INET;
1083             if ((p = avahi_recv_dns_packet_ipv4(s->fd_ipv4, &sa, &dest.data.ipv4, &iface, &ttl))) {
1084                 dispatch_packet(s, p, (struct sockaddr*) &sa, &dest, iface, ttl);
1085                 avahi_dns_packet_free(p);
1086             }
1087         } else if (fd == s->fd_ipv6) {
1088             dest.proto = AVAHI_PROTO_INET6;
1089
1090             if ((p = avahi_recv_dns_packet_ipv6(s->fd_ipv6, &sa6, &dest.data.ipv6, &iface, &ttl))) {
1091                 dispatch_packet(s, p, (struct sockaddr*) &sa6, &dest, iface, ttl);
1092                 avahi_dns_packet_free(p);
1093             }
1094         } else if (fd == s->fd_legacy_unicast_ipv4) {
1095             dest.proto = AVAHI_PROTO_INET;
1096             
1097             if ((p = avahi_recv_dns_packet_ipv4(s->fd_legacy_unicast_ipv4, &sa, &dest.data.ipv4, &iface, &ttl))) {
1098                 dispatch_legacy_unicast_packet(s, p, (struct sockaddr*) &sa, iface);
1099                 avahi_dns_packet_free(p);
1100             }
1101         } else if (fd == s->fd_legacy_unicast_ipv6) {
1102             dest.proto = AVAHI_PROTO_INET6;
1103             
1104             if ((p = avahi_recv_dns_packet_ipv6(s->fd_legacy_unicast_ipv6, &sa6, &dest.data.ipv6, &iface, &ttl))) {
1105                 dispatch_legacy_unicast_packet(s, p, (struct sockaddr*) &sa6, iface);
1106                 avahi_dns_packet_free(p);
1107             }
1108         }
1109
1110         cleanup_dead(s);
1111     } else
1112         abort();
1113 }
1114
1115 static void server_set_state(AvahiServer *s, AvahiServerState state) {
1116     assert(s);
1117
1118     if (s->state == state)
1119         return;
1120     
1121     s->state = state;
1122
1123     if (s->callback)
1124         s->callback(s, state, s->userdata);
1125 }
1126
1127 static void withdraw_host_rrs(AvahiServer *s) {
1128     assert(s);
1129
1130     if (s->hinfo_entry_group)
1131         avahi_s_entry_group_reset(s->hinfo_entry_group);
1132
1133     if (s->browse_domain_entry_group)
1134         avahi_s_entry_group_reset(s->browse_domain_entry_group);
1135
1136     avahi_update_host_rrs(s->monitor, 1);
1137     s->n_host_rr_pending = 0;
1138 }
1139
1140 void avahi_server_decrease_host_rr_pending(AvahiServer *s) {
1141     assert(s);
1142     
1143     assert(s->n_host_rr_pending > 0);
1144
1145     if (--s->n_host_rr_pending == 0)
1146         server_set_state(s, AVAHI_SERVER_RUNNING);
1147 }
1148
1149 void avahi_server_increase_host_rr_pending(AvahiServer *s) {
1150     assert(s);
1151
1152     s->n_host_rr_pending ++;
1153 }
1154
1155 void avahi_host_rr_entry_group_callback(AvahiServer *s, AvahiSEntryGroup *g, AvahiEntryGroupState state, void *userdata) {
1156     assert(s);
1157     assert(g);
1158
1159     if (state == AVAHI_ENTRY_GROUP_REGISTERING &&
1160         s->state == AVAHI_SERVER_REGISTERING)
1161         avahi_server_increase_host_rr_pending(s);
1162     
1163     else if (state == AVAHI_ENTRY_GROUP_COLLISION &&
1164         (s->state == AVAHI_SERVER_REGISTERING || s->state == AVAHI_SERVER_RUNNING)) {
1165         withdraw_host_rrs(s);
1166         server_set_state(s, AVAHI_SERVER_COLLISION);
1167         
1168     } else if (state == AVAHI_ENTRY_GROUP_ESTABLISHED &&
1169                s->state == AVAHI_SERVER_REGISTERING)
1170         avahi_server_decrease_host_rr_pending(s);
1171 }
1172
1173 static void register_hinfo(AvahiServer *s) {
1174     struct utsname utsname;
1175     AvahiRecord *r;
1176     
1177     assert(s);
1178     
1179     if (!s->config.publish_hinfo)
1180         return;
1181
1182     if (s->hinfo_entry_group)
1183         assert(avahi_s_entry_group_is_empty(s->hinfo_entry_group));
1184     else
1185         s->hinfo_entry_group = avahi_s_entry_group_new(s, avahi_host_rr_entry_group_callback, NULL);
1186
1187     if (!s->hinfo_entry_group) {
1188         avahi_log_warn("Failed to create HINFO entry group: %s", avahi_strerror(s->error));
1189         return;
1190     }
1191     
1192     /* Fill in HINFO rr */
1193     if ((r = avahi_record_new_full(s->host_name_fqdn, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_HINFO, AVAHI_DEFAULT_TTL_HOST_NAME))) {
1194         uname(&utsname);
1195         r->data.hinfo.cpu = avahi_strdup(avahi_strup(utsname.machine));
1196         r->data.hinfo.os = avahi_strdup(avahi_strup(utsname.sysname));
1197
1198         if (avahi_server_add(s, s->hinfo_entry_group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, AVAHI_ENTRY_UNIQUE, r) < 0) {
1199             avahi_log_warn("Failed to add HINFO RR: %s", avahi_strerror(s->error));
1200             return;
1201         }
1202
1203         avahi_record_unref(r);
1204     }
1205
1206     if (avahi_s_entry_group_commit(s->hinfo_entry_group) < 0)
1207         avahi_log_warn("Failed to commit HINFO entry group: %s", avahi_strerror(s->error));
1208
1209 }
1210
1211 static void register_localhost(AvahiServer *s) {
1212     AvahiAddress a;
1213     assert(s);
1214     
1215     /* Add localhost entries */
1216     avahi_address_parse("127.0.0.1", AVAHI_PROTO_INET, &a);
1217     avahi_server_add_address(s, NULL, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, AVAHI_ENTRY_NOPROBE|AVAHI_ENTRY_NOANNOUNCE, "localhost", &a);
1218
1219     avahi_address_parse("::1", AVAHI_PROTO_INET6, &a);
1220     avahi_server_add_address(s, NULL, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, AVAHI_ENTRY_NOPROBE|AVAHI_ENTRY_NOANNOUNCE, "ip6-localhost", &a);
1221 }
1222
1223 static void register_browse_domain(AvahiServer *s) {
1224     assert(s);
1225
1226     if (!s->config.publish_domain)
1227         return;
1228
1229     if (s->browse_domain_entry_group)
1230         assert(avahi_s_entry_group_is_empty(s->browse_domain_entry_group));
1231     else
1232         s->browse_domain_entry_group = avahi_s_entry_group_new(s, NULL, NULL);
1233
1234     if (!s->browse_domain_entry_group) {
1235         avahi_log_warn("Failed to create browse domain entry group: %s", avahi_strerror(s->error));
1236         return;
1237     }
1238     
1239     if (avahi_server_add_ptr(s, s->browse_domain_entry_group, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, 0, AVAHI_DEFAULT_TTL, "b._dns-sd._udp.local", s->domain_name) < 0) {
1240         avahi_log_warn("Failed to add browse domain RR: %s", avahi_strerror(s->error));
1241         return;
1242     }
1243
1244     if (avahi_s_entry_group_commit(s->browse_domain_entry_group) < 0)
1245         avahi_log_warn("Failed to commit browse domain entry group: %s", avahi_strerror(s->error));
1246 }
1247
1248 static void register_stuff(AvahiServer *s) {
1249     assert(s);
1250
1251     server_set_state(s, AVAHI_SERVER_REGISTERING);
1252     s->n_host_rr_pending ++;  /** Make sure that the state isn't changed tp AVAHI_SERVER_RUNNING too early */
1253
1254     register_hinfo(s);
1255     register_browse_domain(s);
1256     avahi_update_host_rrs(s->monitor, 0);
1257
1258     s->n_host_rr_pending --;
1259     
1260     if (s->n_host_rr_pending == 0)
1261         server_set_state(s, AVAHI_SERVER_RUNNING);
1262 }
1263
1264 static void update_fqdn(AvahiServer *s) {
1265     char *n;
1266     
1267     assert(s);
1268     assert(s->host_name);
1269     assert(s->domain_name);
1270
1271     if (!(n = avahi_strdup_printf("%s.%s", s->host_name, s->domain_name)))
1272         return; /* OOM */
1273
1274     avahi_free(s->host_name_fqdn);
1275     s->host_name_fqdn = n;
1276 }
1277
1278 int avahi_server_set_host_name(AvahiServer *s, const char *host_name) {
1279     assert(s);
1280     assert(host_name);
1281
1282     if (host_name && !avahi_is_valid_host_name(host_name))
1283         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_HOST_NAME);
1284
1285     withdraw_host_rrs(s);
1286
1287     avahi_free(s->host_name);
1288     s->host_name = host_name ? avahi_normalize_name(host_name) : avahi_get_host_name();
1289     s->host_name[strcspn(s->host_name, ".")] = 0;
1290     update_fqdn(s);
1291
1292     register_stuff(s);
1293     return AVAHI_OK;
1294 }
1295
1296 int avahi_server_set_domain_name(AvahiServer *s, const char *domain_name) {
1297     assert(s);
1298     assert(domain_name);
1299
1300     if (domain_name && !avahi_is_valid_domain_name(domain_name))
1301         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_DOMAIN_NAME);
1302
1303     withdraw_host_rrs(s);
1304
1305     avahi_free(s->domain_name);
1306     s->domain_name = domain_name ? avahi_normalize_name(domain_name) : avahi_strdup("local");
1307     update_fqdn(s);
1308
1309     register_stuff(s);
1310     return AVAHI_OK;
1311 }
1312
1313 static int valid_server_config(const AvahiServerConfig *sc) {
1314
1315     if (sc->host_name && !avahi_is_valid_host_name(sc->host_name))
1316         return AVAHI_ERR_INVALID_HOST_NAME;
1317     
1318     if (sc->domain_name && !avahi_is_valid_domain_name(sc->domain_name))
1319         return AVAHI_ERR_INVALID_DOMAIN_NAME;
1320
1321     return AVAHI_OK;
1322 }
1323
1324 static int setup_sockets(AvahiServer *s) {
1325     assert(s);
1326     
1327     s->fd_ipv4 = s->config.use_ipv4 ? avahi_open_socket_ipv4() : -1;
1328     s->fd_ipv6 = s->config.use_ipv6 ? avahi_open_socket_ipv6() : -1;
1329     
1330     if (s->fd_ipv6 < 0 && s->fd_ipv4 < 0)
1331         return AVAHI_ERR_NO_NETWORK;
1332
1333     if (s->fd_ipv4 < 0 && s->config.use_ipv4)
1334         avahi_log_notice("Failed to create IPv4 socket, proceeding in IPv6 only mode");
1335     else if (s->fd_ipv6 < 0 && s->config.use_ipv6)
1336         avahi_log_notice("Failed to create IPv6 socket, proceeding in IPv4 only mode");
1337
1338     s->fd_legacy_unicast_ipv4 = s->fd_ipv4 >= 0 && s->config.enable_reflector ? avahi_open_unicast_socket_ipv4() : -1;
1339     s->fd_legacy_unicast_ipv6 = s->fd_ipv6 >= 0 && s->config.enable_reflector ? avahi_open_unicast_socket_ipv6() : -1;
1340     
1341     s->watch_ipv4 =
1342         s->watch_ipv6 =
1343         s->watch_legacy_unicast_ipv4 =
1344         s->watch_legacy_unicast_ipv6 = NULL;
1345     
1346     if (s->fd_ipv4 >= 0)
1347         s->watch_ipv4 = s->poll_api->watch_new(s->poll_api, s->fd_ipv4, AVAHI_WATCH_IN, socket_event, s);
1348     if (s->fd_ipv6 >= 0)
1349         s->watch_ipv6 = s->poll_api->watch_new(s->poll_api, s->fd_ipv6, AVAHI_WATCH_IN, socket_event, s);
1350     
1351     if (s->fd_legacy_unicast_ipv4 >= 0)
1352         s->watch_legacy_unicast_ipv4 = s->poll_api->watch_new(s->poll_api, s->fd_legacy_unicast_ipv4, AVAHI_WATCH_IN, socket_event, s);
1353     if (s->fd_legacy_unicast_ipv6 >= 0)
1354         s->watch_legacy_unicast_ipv6 = s->poll_api->watch_new(s->poll_api, s->fd_legacy_unicast_ipv6, AVAHI_WATCH_IN, socket_event, s);
1355             
1356     return 0;
1357 }
1358
1359 AvahiServer *avahi_server_new(const AvahiPoll *poll_api, const AvahiServerConfig *sc, AvahiServerCallback callback, void* userdata, int *error) {
1360     AvahiServer *s;
1361     int e;
1362     
1363     if ((e = valid_server_config(sc)) < 0) {
1364         if (error)
1365             *error = e;
1366         return NULL;
1367     }
1368     
1369     if (!(s = avahi_new(AvahiServer, 1))) {
1370         if (error)
1371             *error = AVAHI_ERR_NO_MEMORY;
1372
1373         return NULL;
1374     }
1375
1376     s->poll_api = poll_api;
1377
1378     if (sc)
1379         avahi_server_config_copy(&s->config, sc);
1380     else
1381         avahi_server_config_init(&s->config);
1382
1383     if ((e = setup_sockets(s)) < 0) {
1384         if (error)
1385             *error = e;
1386
1387         avahi_server_config_free(&s->config);
1388         avahi_free(s);
1389         
1390         return NULL;
1391     }
1392
1393     
1394     s->n_host_rr_pending = 0;
1395     s->need_entry_cleanup = 0;
1396     s->need_group_cleanup = 0;
1397     s->need_browser_cleanup = 0;
1398     
1399     s->time_event_queue = avahi_time_event_queue_new(poll_api);
1400     
1401     s->callback = callback;
1402     s->userdata = userdata;
1403     
1404     s->entries_by_key = avahi_hashmap_new((AvahiHashFunc) avahi_key_hash, (AvahiEqualFunc) avahi_key_equal, NULL, NULL);
1405     AVAHI_LLIST_HEAD_INIT(AvahiEntry, s->entries);
1406     AVAHI_LLIST_HEAD_INIT(AvahiGroup, s->groups);
1407
1408     s->record_browser_hashmap = avahi_hashmap_new((AvahiHashFunc) avahi_key_hash, (AvahiEqualFunc) avahi_key_equal, NULL, NULL);
1409     AVAHI_LLIST_HEAD_INIT(AvahiSRecordBrowser, s->record_browsers);
1410     AVAHI_LLIST_HEAD_INIT(AvahiSHostNameResolver, s->host_name_resolvers);
1411     AVAHI_LLIST_HEAD_INIT(AvahiSAddressResolver, s->address_resolvers);
1412     AVAHI_LLIST_HEAD_INIT(AvahiSDomainBrowser, s->domain_browsers);
1413     AVAHI_LLIST_HEAD_INIT(AvahiSServiceTypeBrowser, s->service_type_browsers);
1414     AVAHI_LLIST_HEAD_INIT(AvahiSServiceBrowser, s->service_browsers);
1415     AVAHI_LLIST_HEAD_INIT(AvahiSServiceResolver, s->service_resolvers);
1416     AVAHI_LLIST_HEAD_INIT(AvahiSDNSServerBrowser, s->dns_server_browsers);
1417
1418     s->legacy_unicast_reflect_slots = NULL;
1419     s->legacy_unicast_reflect_id = 0;
1420
1421
1422     if (s->config.enable_wide_area) {
1423         s->wide_area_lookup_engine = avahi_wide_area_engine_new(s);
1424         avahi_wide_area_set_servers(s->wide_area_lookup_engine, s->config.wide_area_servers, s->config.n_wide_area_servers);
1425     } else
1426         s->wide_area_lookup_engine = NULL;
1427
1428     s->multicast_lookup_engine = avahi_multicast_lookup_engine_new(s);
1429
1430     do {
1431         s->local_service_cookie = (uint32_t) rand() * (uint32_t) rand();
1432     } while (s->local_service_cookie == AVAHI_SERVICE_COOKIE_INVALID);
1433     
1434     /* Get host name */
1435     s->host_name = s->config.host_name ? avahi_normalize_name(s->config.host_name) : avahi_get_host_name();
1436     s->host_name[strcspn(s->host_name, ".")] = 0;
1437     s->domain_name = s->config.domain_name ? avahi_normalize_name(s->config.domain_name) : avahi_strdup("local");
1438     s->host_name_fqdn = NULL;
1439     update_fqdn(s);
1440
1441     s->record_list = avahi_record_list_new();
1442
1443     s->state = AVAHI_SERVER_INVALID;
1444
1445     s->monitor = avahi_interface_monitor_new(s);
1446     avahi_interface_monitor_sync(s->monitor);
1447
1448     register_localhost(s);
1449
1450     s->hinfo_entry_group = NULL;
1451     s->browse_domain_entry_group = NULL;
1452     register_stuff(s);
1453
1454     s->error = AVAHI_OK;
1455     
1456     return s;
1457 }
1458
1459 void avahi_server_free(AvahiServer* s) {
1460     assert(s);
1461
1462     /* Remove all browsers */
1463
1464     while (s->dns_server_browsers)
1465         avahi_s_dns_server_browser_free(s->dns_server_browsers);
1466     while (s->host_name_resolvers)
1467         avahi_s_host_name_resolver_free(s->host_name_resolvers);
1468     while (s->address_resolvers)
1469         avahi_s_address_resolver_free(s->address_resolvers);
1470     while (s->domain_browsers)
1471         avahi_s_domain_browser_free(s->domain_browsers);
1472     while (s->service_type_browsers)
1473         avahi_s_service_type_browser_free(s->service_type_browsers);
1474     while (s->service_browsers)
1475         avahi_s_service_browser_free(s->service_browsers);
1476     while (s->service_resolvers)
1477         avahi_s_service_resolver_free(s->service_resolvers);
1478     while (s->record_browsers)
1479         avahi_s_record_browser_destroy(s->record_browsers);
1480     
1481     /* Remove all locally rgeistered stuff */
1482
1483     while(s->entries)
1484         free_entry(s, s->entries);
1485
1486     avahi_interface_monitor_free(s->monitor);
1487
1488     while (s->groups)
1489         free_group(s, s->groups);
1490
1491     free_slots(s);
1492
1493     avahi_hashmap_free(s->entries_by_key);
1494     avahi_record_list_free(s->record_list);
1495     avahi_hashmap_free(s->record_browser_hashmap);
1496
1497     if (s->wide_area_lookup_engine)
1498         avahi_wide_area_engine_free(s->wide_area_lookup_engine);
1499     avahi_multicast_lookup_engine_free(s->multicast_lookup_engine);
1500
1501     avahi_time_event_queue_free(s->time_event_queue);
1502     
1503     /* Free watches */
1504     
1505     if (s->watch_ipv4)
1506         s->poll_api->watch_free(s->watch_ipv4);
1507     if (s->watch_ipv6)
1508         s->poll_api->watch_free(s->watch_ipv6);
1509     
1510     if (s->watch_legacy_unicast_ipv4)
1511         s->poll_api->watch_free(s->watch_legacy_unicast_ipv4);
1512     if (s->watch_legacy_unicast_ipv6)
1513         s->poll_api->watch_free(s->watch_legacy_unicast_ipv6);
1514
1515     /* Free sockets */
1516     
1517     if (s->fd_ipv4 >= 0)
1518         close(s->fd_ipv4);
1519     if (s->fd_ipv6 >= 0)
1520         close(s->fd_ipv6);
1521     
1522     if (s->fd_legacy_unicast_ipv4 >= 0)
1523         close(s->fd_legacy_unicast_ipv4);
1524     if (s->fd_legacy_unicast_ipv6 >= 0)
1525         close(s->fd_legacy_unicast_ipv6);
1526     
1527     /* Free other stuff */
1528     
1529     avahi_free(s->host_name);
1530     avahi_free(s->domain_name);
1531     avahi_free(s->host_name_fqdn);
1532
1533     avahi_server_config_free(&s->config);
1534
1535     avahi_free(s);
1536 }
1537
1538 static int check_record_conflict(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, AvahiRecord *r, AvahiEntryFlags flags) {
1539     AvahiEntry *e;
1540     
1541     assert(s);
1542     assert(r);
1543
1544     for (e = avahi_hashmap_lookup(s->entries_by_key, r->key); e; e = e->by_key_next) {
1545         if (e->dead)
1546             continue;
1547
1548         if (!(flags & AVAHI_ENTRY_UNIQUE) && !(e->flags & AVAHI_ENTRY_UNIQUE))
1549             continue;
1550         
1551         if ((flags & AVAHI_ENTRY_ALLOWMUTIPLE) && (e->flags & AVAHI_ENTRY_ALLOWMUTIPLE) )
1552             continue;
1553
1554         if ((interface <= 0 ||
1555              e->interface <= 0 ||
1556              e->interface == interface) &&
1557             (protocol == AVAHI_PROTO_UNSPEC ||
1558              e->protocol == AVAHI_PROTO_UNSPEC ||
1559              e->protocol == protocol))
1560
1561             return -1;
1562     }
1563
1564     return 0;
1565 }
1566
1567 int avahi_server_add(
1568     AvahiServer *s,
1569     AvahiSEntryGroup *g,
1570     AvahiIfIndex interface,
1571     AvahiProtocol protocol,
1572     AvahiEntryFlags flags,
1573     AvahiRecord *r) {
1574     
1575     AvahiEntry *e, *t;
1576     
1577     assert(s);
1578     assert(r);
1579
1580     if (r->ttl == 0)
1581         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_TTL);
1582
1583     if (avahi_key_is_pattern(r->key))
1584         return avahi_server_set_errno(s, AVAHI_ERR_IS_PATTERN);
1585
1586     if (!avahi_record_is_valid(r))
1587         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_RECORD);
1588
1589     if (check_record_conflict(s, interface, protocol, r, flags) < 0)
1590         return avahi_server_set_errno(s, AVAHI_ERR_LOCAL_COLLISION);
1591
1592     if (!(e = avahi_new(AvahiEntry, 1)))
1593         return avahi_server_set_errno(s, AVAHI_ERR_NO_NETWORK);
1594         
1595     e->server = s;
1596     e->record = avahi_record_ref(r);
1597     e->group = g;
1598     e->interface = interface;
1599     e->protocol = protocol;
1600     e->flags = flags;
1601     e->dead = 0;
1602
1603     AVAHI_LLIST_HEAD_INIT(AvahiAnnouncement, e->announcements);
1604
1605     AVAHI_LLIST_PREPEND(AvahiEntry, entries, s->entries, e);
1606
1607     /* Insert into hash table indexed by name */
1608     t = avahi_hashmap_lookup(s->entries_by_key, e->record->key);
1609     AVAHI_LLIST_PREPEND(AvahiEntry, by_key, t, e);
1610     avahi_hashmap_replace(s->entries_by_key, e->record->key, t);
1611
1612     /* Insert into group list */
1613     if (g)
1614         AVAHI_LLIST_PREPEND(AvahiEntry, by_group, g->entries, e); 
1615
1616     avahi_announce_entry(s, e);
1617
1618     return 0;
1619 }
1620
1621 const AvahiRecord *avahi_server_iterate(AvahiServer *s, AvahiSEntryGroup *g, void **state) {
1622     AvahiEntry **e = (AvahiEntry**) state;
1623     assert(s);
1624     assert(e);
1625
1626     if (!*e)
1627         *e = g ? g->entries : s->entries;
1628     
1629     while (*e && (*e)->dead)
1630         *e = g ? (*e)->by_group_next : (*e)->entries_next;
1631         
1632     if (!*e)
1633         return NULL;
1634
1635     return avahi_record_ref((*e)->record);
1636 }
1637
1638 int avahi_server_dump(AvahiServer *s, AvahiDumpCallback callback, void* userdata) {
1639     AvahiEntry *e;
1640     
1641     assert(s);
1642     assert(callback);
1643
1644     callback(";;; ZONE DUMP FOLLOWS ;;;", userdata);
1645
1646     for (e = s->entries; e; e = e->entries_next) {
1647         char *t;
1648         char ln[256];
1649
1650         if (e->dead)
1651             continue;
1652         
1653         if (!(t = avahi_record_to_string(e->record)))
1654             return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1655         
1656         snprintf(ln, sizeof(ln), "%s ; iface=%i proto=%i", t, e->interface, e->protocol);
1657         avahi_free(t);
1658
1659         callback(ln, userdata);
1660     }
1661
1662     avahi_dump_caches(s->monitor, callback, userdata);
1663
1664     if (s->wide_area_lookup_engine)
1665         avahi_wide_area_cache_dump(s->wide_area_lookup_engine, callback, userdata);
1666     return AVAHI_OK;
1667 }
1668
1669 int avahi_server_add_ptr(
1670     AvahiServer *s,
1671     AvahiSEntryGroup *g,
1672     AvahiIfIndex interface,
1673     AvahiProtocol protocol,
1674     AvahiEntryFlags flags,
1675     uint32_t ttl,
1676     const char *name,
1677     const char *dest) {
1678
1679     AvahiRecord *r;
1680     int ret;
1681
1682     assert(s);
1683     assert(dest);
1684
1685     if (!(r = avahi_record_new_full(name ? name : s->host_name_fqdn, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_PTR, ttl)))
1686         return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1687         
1688     r->data.ptr.name = avahi_normalize_name(dest);
1689     ret = avahi_server_add(s, g, interface, protocol, flags, r);
1690     avahi_record_unref(r);
1691     return ret;
1692 }
1693
1694 int avahi_server_add_address(
1695     AvahiServer *s,
1696     AvahiSEntryGroup *g,
1697     AvahiIfIndex interface,
1698     AvahiProtocol protocol,
1699     AvahiEntryFlags flags,
1700     const char *name,
1701     AvahiAddress *a) {
1702
1703     char *n = NULL;
1704     int ret = AVAHI_OK;
1705     assert(s);
1706     assert(a);
1707
1708     if (name) {
1709         if (!(n = avahi_normalize_name(name)))
1710             return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1711
1712         name = n;
1713     } else
1714         name = s->host_name_fqdn;
1715
1716     if (!avahi_is_valid_domain_name(name)) {
1717         ret = avahi_server_set_errno(s, AVAHI_ERR_INVALID_HOST_NAME);
1718         goto fail;
1719     }
1720     
1721     if (a->proto == AVAHI_PROTO_INET) {
1722         char *reverse;
1723         AvahiRecord  *r;
1724
1725         if (!(r = avahi_record_new_full(name, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_A, AVAHI_DEFAULT_TTL_HOST_NAME))) {
1726             ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1727             goto fail;
1728         }
1729         
1730         r->data.a.address = a->data.ipv4;
1731         ret = avahi_server_add(s, g, interface, protocol, flags | AVAHI_ENTRY_UNIQUE | AVAHI_ENTRY_ALLOWMUTIPLE, r);
1732         avahi_record_unref(r);
1733
1734         if (ret < 0)
1735             goto fail;
1736         
1737         if (!(reverse = avahi_reverse_lookup_name_ipv4(&a->data.ipv4))) {
1738             ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1739             goto fail;
1740         }
1741
1742         ret = avahi_server_add_ptr(s, g, interface, protocol, flags | AVAHI_ENTRY_UNIQUE, AVAHI_DEFAULT_TTL_HOST_NAME, reverse, name);
1743         avahi_free(reverse);
1744
1745     } else {
1746         char *reverse;
1747         AvahiRecord *r;
1748
1749         assert(a->proto == AVAHI_PROTO_INET6);
1750             
1751         if (!(r = avahi_record_new_full(name, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_AAAA, AVAHI_DEFAULT_TTL_HOST_NAME))) {
1752             ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1753             goto fail;
1754         }
1755         
1756         r->data.aaaa.address = a->data.ipv6;
1757         ret = avahi_server_add(s, g, interface, protocol, flags | AVAHI_ENTRY_UNIQUE | AVAHI_ENTRY_ALLOWMUTIPLE, r);
1758         avahi_record_unref(r);
1759
1760         if (ret < 0)
1761             goto fail;
1762
1763         if (!(reverse = avahi_reverse_lookup_name_ipv6_arpa(&a->data.ipv6))) {
1764             ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1765             goto fail;
1766         }
1767             
1768         ret = avahi_server_add_ptr(s, g, interface, protocol, flags | AVAHI_ENTRY_UNIQUE, AVAHI_DEFAULT_TTL_HOST_NAME, reverse, name);
1769         avahi_free(reverse);
1770
1771         if (ret < 0)
1772             goto fail;
1773     
1774         if (!(reverse = avahi_reverse_lookup_name_ipv6_int(&a->data.ipv6))) {
1775             ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1776             goto fail;
1777         }
1778
1779         ret = avahi_server_add_ptr(s, g, interface, protocol, flags | AVAHI_ENTRY_UNIQUE, AVAHI_DEFAULT_TTL_HOST_NAME, reverse, name);
1780         avahi_free(reverse);
1781     }
1782
1783 fail:
1784     
1785     avahi_free(n);
1786
1787     return ret;
1788 }
1789
1790 static int server_add_txt_strlst_nocopy(
1791     AvahiServer *s,
1792     AvahiSEntryGroup *g,
1793     AvahiIfIndex interface,
1794     AvahiProtocol protocol,
1795     AvahiEntryFlags flags,
1796     uint32_t ttl,
1797     const char *name,
1798     AvahiStringList *strlst) {
1799
1800     AvahiRecord *r;
1801     int ret;
1802     
1803     assert(s);
1804     
1805     if (!(r = avahi_record_new_full(name ? name : s->host_name_fqdn, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_TXT, ttl)))
1806         return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1807     
1808     r->data.txt.string_list = strlst;
1809     ret = avahi_server_add(s, g, interface, protocol, flags, r);
1810     avahi_record_unref(r);
1811
1812     return ret;
1813 }
1814
1815 int avahi_server_add_txt_strlst(
1816     AvahiServer *s,
1817     AvahiSEntryGroup *g,
1818     AvahiIfIndex interface,
1819     AvahiProtocol protocol,
1820     AvahiEntryFlags flags,
1821     uint32_t ttl,
1822     const char *name,
1823     AvahiStringList *strlst) {
1824
1825     assert(s);
1826
1827     return server_add_txt_strlst_nocopy(s, g, interface, protocol, flags, ttl, name, avahi_string_list_copy(strlst));
1828 }
1829
1830 int avahi_server_add_txt_va(
1831     AvahiServer *s,
1832     AvahiSEntryGroup *g,
1833     AvahiIfIndex interface,
1834     AvahiProtocol protocol,
1835     AvahiEntryFlags flags,
1836     uint32_t ttl,
1837     const char *name,
1838     va_list va) {
1839
1840     assert(s);
1841
1842     return server_add_txt_strlst_nocopy(s, g, interface, protocol, flags, ttl, name, avahi_string_list_new_va(va));
1843 }
1844
1845 int avahi_server_add_txt(
1846     AvahiServer *s,
1847     AvahiSEntryGroup *g,
1848     AvahiIfIndex interface,
1849     AvahiProtocol protocol,
1850     AvahiEntryFlags flags,
1851     uint32_t ttl,
1852     const char *name,
1853     ...) {
1854
1855     va_list va;
1856     int ret;
1857     
1858     assert(s);
1859
1860     va_start(va, name);
1861     ret = avahi_server_add_txt_va(s, g, interface, protocol, flags, ttl, name, va);
1862     va_end(va);
1863
1864     return ret;
1865 }
1866
1867 static void escape_service_name(char *d, size_t size, const char *s) {
1868     assert(d);
1869     assert(size);
1870     assert(s);
1871
1872     while (*s && size >= 2) {
1873         if (*s == '.' || *s == '\\') {
1874             if (size < 3)
1875                 break;
1876
1877             *(d++) = '\\';
1878             size--;
1879         }
1880             
1881         *(d++) = *(s++);
1882         size--;
1883     }
1884
1885     assert(size > 0);
1886     *(d++) = 0;
1887 }
1888
1889 static AvahiStringList *add_magic_cookie(
1890     AvahiServer *s,
1891     AvahiStringList *strlst) {
1892
1893     assert(s);
1894
1895     if (!s->config.add_service_cookie)
1896         return strlst;
1897
1898     if (avahi_string_list_find(strlst, AVAHI_SERVICE_COOKIE))
1899         /* This string list already contains a magic cookie */
1900         return strlst;
1901
1902     return avahi_string_list_add_printf(strlst, AVAHI_SERVICE_COOKIE"=%u", s->local_service_cookie);
1903 }
1904
1905 static int server_add_service_strlst_nocopy(
1906     AvahiServer *s,
1907     AvahiSEntryGroup *g,
1908     AvahiIfIndex interface,
1909     AvahiProtocol protocol,
1910     const char *name,
1911     const char *type,
1912     const char *domain,
1913     const char *host,
1914     uint16_t port,
1915     AvahiStringList *strlst) {
1916
1917     char ptr_name[256], svc_name[256], ename[64], enum_ptr[256];
1918     char *t = NULL, *d = NULL, *h = NULL;
1919     AvahiRecord *r = NULL;
1920     int ret = AVAHI_OK;
1921     
1922     assert(s);
1923     assert(type);
1924     assert(name);
1925
1926     if (!avahi_is_valid_service_name(name))
1927         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_SERVICE_NAME);
1928
1929     if (!avahi_is_valid_service_type(type))
1930         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_SERVICE_TYPE);
1931
1932     if (domain && !avahi_is_valid_domain_name(domain))
1933         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_DOMAIN_NAME);
1934
1935     if (host && !avahi_is_valid_domain_name(host))
1936         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_HOST_NAME);
1937
1938     escape_service_name(ename, sizeof(ename), name);
1939
1940     if (!domain)
1941         domain = s->domain_name;
1942
1943     if (!host)
1944         host = s->host_name_fqdn;
1945
1946     if (!(d = avahi_normalize_name(domain)) ||
1947         !(t = avahi_normalize_name(type)) ||
1948         !(h = avahi_normalize_name(host))) {
1949         ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1950         goto fail;
1951     }
1952
1953     snprintf(ptr_name, sizeof(ptr_name), "%s.%s", t, d);
1954     snprintf(svc_name, sizeof(svc_name), "%s.%s.%s", ename, t, d);
1955
1956     if ((ret = avahi_server_add_ptr(s, g, interface, protocol, AVAHI_ENTRY_NULL, AVAHI_DEFAULT_TTL, ptr_name, svc_name)) < 0)
1957         goto fail;
1958
1959     if (!(r = avahi_record_new_full(svc_name, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_SRV, AVAHI_DEFAULT_TTL_HOST_NAME))) {
1960         ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
1961         goto fail;
1962     }
1963     
1964     r->data.srv.priority = 0;
1965     r->data.srv.weight = 0;
1966     r->data.srv.port = port;
1967     r->data.srv.name = h;
1968     h = NULL;
1969     ret = avahi_server_add(s, g, interface, protocol, AVAHI_ENTRY_UNIQUE, r);
1970     avahi_record_unref(r);
1971
1972     if (ret < 0)
1973         goto fail;
1974
1975     strlst = add_magic_cookie(s, strlst);
1976     
1977     ret = server_add_txt_strlst_nocopy(s, g, interface, protocol, AVAHI_ENTRY_UNIQUE, AVAHI_DEFAULT_TTL, svc_name, strlst);
1978     strlst = NULL;
1979
1980     if (ret < 0)
1981         goto fail;
1982
1983     snprintf(enum_ptr, sizeof(enum_ptr), "_services._dns-sd._udp.%s", d);
1984     ret = avahi_server_add_ptr(s, g, interface, protocol, AVAHI_ENTRY_NULL, AVAHI_DEFAULT_TTL, enum_ptr, ptr_name);
1985
1986 fail:
1987     
1988     avahi_free(d);
1989     avahi_free(t);
1990     avahi_free(h);
1991
1992     avahi_string_list_free(strlst);
1993     
1994     return ret;
1995 }
1996
1997 int avahi_server_add_service_strlst(
1998     AvahiServer *s,
1999     AvahiSEntryGroup *g,
2000     AvahiIfIndex interface,
2001     AvahiProtocol protocol,
2002     const char *name,
2003     const char *type,
2004     const char *domain,
2005     const char *host,
2006     uint16_t port,
2007     AvahiStringList *strlst) {
2008
2009     assert(s);
2010     assert(type);
2011     assert(name);
2012
2013     return server_add_service_strlst_nocopy(s, g, interface, protocol, name, type, domain, host, port, avahi_string_list_copy(strlst));
2014 }
2015
2016 int avahi_server_add_service_va(
2017     AvahiServer *s,
2018     AvahiSEntryGroup *g,
2019     AvahiIfIndex interface,
2020     AvahiProtocol protocol,
2021     const char *name,
2022     const char *type,
2023     const char *domain,
2024     const char *host,
2025     uint16_t port,
2026     va_list va){
2027
2028     assert(s);
2029     assert(type);
2030     assert(name);
2031
2032     return server_add_service_strlst_nocopy(s, g, interface, protocol, name, type, domain, host, port, avahi_string_list_new_va(va));
2033 }
2034
2035 int avahi_server_add_service(
2036     AvahiServer *s,
2037     AvahiSEntryGroup *g,
2038     AvahiIfIndex interface,
2039     AvahiProtocol protocol,
2040     const char *name,
2041     const char *type,
2042     const char *domain,
2043     const char *host,
2044     uint16_t port,
2045     ... ){
2046
2047     va_list va;
2048     int ret;
2049     
2050     assert(s);
2051     assert(type);
2052     assert(name);
2053
2054     va_start(va, port);
2055     ret = avahi_server_add_service_va(s, g, interface, protocol, name, type, domain, host, port, va);
2056     va_end(va);
2057     return ret;
2058 }
2059
2060 static void hexstring(char *s, size_t sl, const void *p, size_t pl) {
2061     static const char hex[] = "0123456789abcdef";
2062     int b = 0;
2063     const uint8_t *k = p;
2064
2065     while (sl > 1 && pl > 0) {
2066         *(s++) = hex[(b ? *k : *k >> 4) & 0xF];
2067
2068         if (b) {
2069             k++;
2070             pl--;
2071         }
2072         
2073         b = !b;
2074
2075         sl--;
2076     }
2077
2078     if (sl > 0)
2079         *s = 0;
2080 }
2081
2082 int avahi_server_add_dns_server_address(
2083     AvahiServer *s,
2084     AvahiSEntryGroup *g,
2085     AvahiIfIndex interface,
2086     AvahiProtocol protocol,
2087     const char *domain,
2088     AvahiDNSServerType type,
2089     const AvahiAddress *address,
2090     uint16_t port /** should be 53 */) {
2091
2092     AvahiRecord *r;
2093     int ret;
2094     char n[64], h[64];
2095
2096     assert(s);
2097     assert(address);
2098     assert(type == AVAHI_DNS_SERVER_UPDATE || type == AVAHI_DNS_SERVER_RESOLVE);
2099     assert(address->proto == AVAHI_PROTO_INET || address->proto == AVAHI_PROTO_INET6);
2100
2101     if (port == 0)
2102         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_PORT);
2103     
2104     if (domain && !avahi_is_valid_domain_name(domain))
2105         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_DOMAIN_NAME);
2106
2107     if (address->proto == AVAHI_PROTO_INET) {
2108         hexstring(h, sizeof(h), &address->data, sizeof(AvahiIPv4Address));
2109         snprintf(n, sizeof(n), "ip-%s.%s", h, s->domain_name);
2110         r = avahi_record_new_full(n, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_A, AVAHI_DEFAULT_TTL_HOST_NAME);
2111         r->data.a.address = address->data.ipv4;
2112     } else {
2113         hexstring(h, sizeof(h), &address->data, sizeof(AvahiIPv6Address));
2114         snprintf(n, sizeof(n), "ip6-%s.%s", h, s->domain_name);
2115         r = avahi_record_new_full(n, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_AAAA, AVAHI_DEFAULT_TTL_HOST_NAME);
2116         r->data.aaaa.address = address->data.ipv6;
2117     }
2118
2119     if (!r)
2120         return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2121     
2122     ret = avahi_server_add(s, g, interface, protocol, AVAHI_ENTRY_UNIQUE | AVAHI_ENTRY_ALLOWMUTIPLE, r);
2123     avahi_record_unref(r);
2124
2125     if (ret < 0)
2126         return ret;
2127     
2128     return avahi_server_add_dns_server_name(s, g, interface, protocol, domain, type, n, port);
2129 }
2130
2131 int avahi_server_add_dns_server_name(
2132     AvahiServer *s,
2133     AvahiSEntryGroup *g,
2134     AvahiIfIndex interface,
2135     AvahiProtocol protocol,
2136     const char *domain,
2137     AvahiDNSServerType type,
2138     const char *name,
2139     uint16_t port /** should be 53 */) {
2140
2141     int ret = -1;
2142     char t[256], *d = NULL, *n = NULL;
2143     AvahiRecord *r;
2144     
2145     assert(s);
2146     assert(name);
2147     assert(type == AVAHI_DNS_SERVER_UPDATE || type == AVAHI_DNS_SERVER_RESOLVE);
2148
2149     if (port == 0)
2150         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_PORT);
2151
2152     if (!avahi_is_valid_domain_name(name))
2153         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_HOST_NAME);
2154
2155     if (domain && !avahi_is_valid_domain_name(domain))
2156         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_DOMAIN_NAME);
2157
2158     
2159     if (!domain)
2160         domain = s->domain_name;
2161
2162     if (!(n = avahi_normalize_name(name)) ||
2163         !(d = avahi_normalize_name(domain))) {
2164         avahi_free(n);
2165         avahi_free(d);
2166         return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2167     }
2168
2169     snprintf(t, sizeof(t), "%s.%s", type == AVAHI_DNS_SERVER_RESOLVE ? "_domain._udp" : "_dns-update._udp", d);
2170     avahi_free(d);
2171     
2172     if (!(r = avahi_record_new_full(t, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_SRV, AVAHI_DEFAULT_TTL_HOST_NAME))) {
2173         avahi_free(n);
2174         return avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2175     }
2176     
2177     r->data.srv.priority = 0;
2178     r->data.srv.weight = 0;
2179     r->data.srv.port = port;
2180     r->data.srv.name = n;
2181     ret = avahi_server_add(s, g, interface, protocol, AVAHI_ENTRY_NULL, r);
2182     avahi_record_unref(r);
2183
2184     return ret;
2185 }
2186
2187 static void post_query_callback(AvahiInterfaceMonitor *m, AvahiInterface *i, void* userdata) {
2188     AvahiKey *k = userdata;
2189
2190     assert(m);
2191     assert(i);
2192     assert(k);
2193
2194     avahi_interface_post_query(i, k, 0);
2195 }
2196
2197 void avahi_server_post_query(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, AvahiKey *key) {
2198     assert(s);
2199     assert(key);
2200
2201     avahi_interface_monitor_walk(s->monitor, interface, protocol, post_query_callback, key);
2202 }
2203
2204 void avahi_s_entry_group_change_state(AvahiSEntryGroup *g, AvahiEntryGroupState state) {
2205     assert(g);
2206
2207     if (g->state == state)
2208         return;
2209
2210     assert(state <= AVAHI_ENTRY_GROUP_COLLISION);
2211
2212     g->state = state;
2213     
2214     if (g->callback)
2215         g->callback(g->server, g, state, g->userdata);
2216 }
2217
2218 AvahiSEntryGroup *avahi_s_entry_group_new(AvahiServer *s, AvahiSEntryGroupCallback callback, void* userdata) {
2219     AvahiSEntryGroup *g;
2220     
2221     assert(s);
2222
2223     if (!(g = avahi_new(AvahiSEntryGroup, 1))) {
2224         avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2225         return NULL;
2226     }
2227     
2228     g->server = s;
2229     g->callback = callback;
2230     g->userdata = userdata;
2231     g->dead = 0;
2232     g->state = AVAHI_ENTRY_GROUP_UNCOMMITED;
2233     g->n_probing = 0;
2234     g->n_register_try = 0;
2235     g->register_time_event = NULL;
2236     g->register_time.tv_sec = 0;
2237     g->register_time.tv_usec = 0;
2238     AVAHI_LLIST_HEAD_INIT(AvahiEntry, g->entries);
2239
2240     AVAHI_LLIST_PREPEND(AvahiSEntryGroup, groups, s->groups, g);
2241     return g;
2242 }
2243
2244 void avahi_s_entry_group_free(AvahiSEntryGroup *g) {
2245     AvahiEntry *e;
2246     
2247     assert(g);
2248     assert(g->server);
2249
2250     for (e = g->entries; e; e = e->by_group_next) {
2251         if (!e->dead) {
2252             avahi_goodbye_entry(g->server, e, 1);
2253             e->dead = 1;
2254         }
2255     }
2256
2257     if (g->register_time_event) {
2258         avahi_time_event_free(g->register_time_event);
2259         g->register_time_event = NULL;
2260     }
2261
2262     g->dead = 1;
2263     
2264     g->server->need_group_cleanup = 1;
2265     g->server->need_entry_cleanup = 1;
2266 }
2267
2268 static void entry_group_commit_real(AvahiSEntryGroup *g) {
2269     assert(g);
2270
2271     gettimeofday(&g->register_time, NULL);
2272
2273     avahi_s_entry_group_change_state(g, AVAHI_ENTRY_GROUP_REGISTERING);
2274
2275     if (!g->dead) {
2276         avahi_announce_group(g->server, g);
2277         avahi_s_entry_group_check_probed(g, 0);
2278     }
2279 }
2280
2281 static void entry_group_register_time_event_callback(AvahiTimeEvent *e, void* userdata) {
2282     AvahiSEntryGroup *g = userdata;
2283     assert(g);
2284
2285 /*     avahi_log_debug("Holdoff passed, waking up and going on."); */
2286
2287     avahi_time_event_free(g->register_time_event);
2288     g->register_time_event = NULL;
2289     
2290     /* Holdoff time passed, so let's start probing */
2291     entry_group_commit_real(g);
2292 }
2293
2294 int avahi_s_entry_group_commit(AvahiSEntryGroup *g) {
2295     struct timeval now;
2296     
2297     assert(g);
2298     assert(!g->dead);
2299
2300     if (g->state != AVAHI_ENTRY_GROUP_UNCOMMITED && g->state != AVAHI_ENTRY_GROUP_COLLISION)
2301         return avahi_server_set_errno(g->server, AVAHI_ERR_BAD_STATE);
2302
2303     g->n_register_try++;
2304
2305     avahi_timeval_add(&g->register_time,
2306                       1000*(g->n_register_try >= AVAHI_RR_RATE_LIMIT_COUNT ?
2307                             AVAHI_RR_HOLDOFF_MSEC_RATE_LIMIT :
2308                             AVAHI_RR_HOLDOFF_MSEC));
2309
2310     gettimeofday(&now, NULL);
2311
2312     if (avahi_timeval_compare(&g->register_time, &now) <= 0) {
2313         /* Holdoff time passed, so let's start probing */
2314 /*         avahi_log_debug("Holdoff passed, directly going on.");  */
2315
2316         entry_group_commit_real(g);
2317     } else {
2318 /*          avahi_log_debug("Holdoff not passed, sleeping.");  */
2319
2320          /* Holdoff time has not yet passed, so let's wait */
2321         assert(!g->register_time_event);
2322         g->register_time_event = avahi_time_event_new(g->server->time_event_queue, &g->register_time, entry_group_register_time_event_callback, g);
2323         
2324         avahi_s_entry_group_change_state(g, AVAHI_ENTRY_GROUP_REGISTERING);
2325     }
2326
2327     return AVAHI_OK;
2328 }
2329
2330 void avahi_s_entry_group_reset(AvahiSEntryGroup *g) {
2331     AvahiEntry *e;
2332     assert(g);
2333     
2334     if (g->register_time_event) {
2335         avahi_time_event_free(g->register_time_event);
2336         g->register_time_event = NULL;
2337     }
2338     
2339     for (e = g->entries; e; e = e->by_group_next) {
2340         if (!e->dead) {
2341             avahi_goodbye_entry(g->server, e, 1);
2342             e->dead = 1;
2343         }
2344     }
2345
2346     if (g->register_time_event) {
2347         avahi_time_event_free(g->register_time_event);
2348         g->register_time_event = NULL;
2349     }
2350     
2351     g->server->need_entry_cleanup = 1;
2352     g->n_probing = 0;
2353
2354     avahi_s_entry_group_change_state(g, AVAHI_ENTRY_GROUP_UNCOMMITED);
2355 }
2356
2357 int avahi_entry_is_commited(AvahiEntry *e) {
2358     assert(e);
2359     assert(!e->dead);
2360
2361     return !e->group ||
2362         e->group->state == AVAHI_ENTRY_GROUP_REGISTERING ||
2363         e->group->state == AVAHI_ENTRY_GROUP_ESTABLISHED;
2364 }
2365
2366 AvahiEntryGroupState avahi_s_entry_group_get_state(AvahiSEntryGroup *g) {
2367     assert(g);
2368     assert(!g->dead);
2369
2370     return g->state;
2371 }
2372
2373 void avahi_s_entry_group_set_data(AvahiSEntryGroup *g, void* userdata) {
2374     assert(g);
2375
2376     g->userdata = userdata;
2377 }
2378
2379 void* avahi_s_entry_group_get_data(AvahiSEntryGroup *g) {
2380     assert(g);
2381
2382     return g->userdata;
2383 }
2384
2385 int avahi_s_entry_group_is_empty(AvahiSEntryGroup *g) {
2386     AvahiEntry *e;
2387     assert(g);
2388
2389     /* Look for an entry that is not dead */
2390     for (e = g->entries; e; e = e->by_group_next)
2391         if (!e->dead)
2392             return 0;
2393
2394     return 1;
2395 }
2396
2397 const char* avahi_server_get_domain_name(AvahiServer *s) {
2398     assert(s);
2399
2400     return s->domain_name;
2401 }
2402
2403 const char* avahi_server_get_host_name(AvahiServer *s) {
2404     assert(s);
2405
2406     return s->host_name;
2407 }
2408
2409 const char* avahi_server_get_host_name_fqdn(AvahiServer *s) {
2410     assert(s);
2411
2412     return s->host_name_fqdn;
2413 }
2414
2415 void* avahi_server_get_data(AvahiServer *s) {
2416     assert(s);
2417
2418     return s->userdata;
2419 }
2420
2421 void avahi_server_set_data(AvahiServer *s, void* userdata) {
2422     assert(s);
2423
2424     s->userdata = userdata;
2425 }
2426
2427 AvahiServerState avahi_server_get_state(AvahiServer *s) {
2428     assert(s);
2429
2430     return s->state;
2431 }
2432
2433 AvahiServerConfig* avahi_server_config_init(AvahiServerConfig *c) {
2434     assert(c);
2435
2436     memset(c, 0, sizeof(AvahiServerConfig));
2437     c->use_ipv6 = 1;
2438     c->use_ipv4 = 1;
2439     c->host_name = NULL;
2440     c->domain_name = NULL;
2441     c->check_response_ttl = 0;
2442     c->publish_hinfo = 1;
2443     c->publish_addresses = 1;
2444     c->publish_workstation = 1;
2445     c->publish_domain = 1;
2446     c->use_iff_running = 0;
2447     c->enable_reflector = 0;
2448     c->reflect_ipv = 0;
2449     c->add_service_cookie = 1;
2450     c->enable_wide_area = 0;
2451     c->n_wide_area_servers = 0;
2452     
2453     return c;
2454 }
2455
2456 void avahi_server_config_free(AvahiServerConfig *c) {
2457     assert(c);
2458
2459     avahi_free(c->host_name);
2460     avahi_free(c->domain_name);
2461 }
2462
2463 AvahiServerConfig* avahi_server_config_copy(AvahiServerConfig *ret, const AvahiServerConfig *c) {
2464     char *d = NULL, *h = NULL;
2465     assert(ret);
2466     assert(c);
2467
2468     if (c->host_name)
2469         if (!(h = avahi_strdup(c->host_name)))
2470             return NULL;
2471
2472     if (c->domain_name)
2473         if (!(d = avahi_strdup(c->domain_name))) {
2474             avahi_free(h);
2475             return NULL;
2476         }
2477     
2478     *ret = *c;
2479     ret->host_name = h;
2480     ret->domain_name = d;
2481
2482     return ret;
2483 }
2484
2485 int avahi_server_errno(AvahiServer *s) {
2486     assert(s);
2487     
2488     return s->error;
2489 }
2490
2491 /* Just for internal use */
2492 int avahi_server_set_errno(AvahiServer *s, int error) {
2493     assert(s);
2494
2495     return s->error = error;
2496 }
2497
2498 uint32_t avahi_server_get_local_service_cookie(AvahiServer *s) {
2499     assert(s);
2500
2501     return s->local_service_cookie;
2502 }
2503
2504 int avahi_server_is_service_local(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char*domain) {
2505     AvahiKey *key = NULL;
2506     char *d, *t;
2507     char ename[64], n[256];
2508     int ret;
2509     AvahiEntry *e;
2510     
2511     assert(s);
2512     assert(name);
2513     assert(type);
2514     assert(domain);
2515
2516     if (!avahi_is_valid_service_name(name))
2517         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_SERVICE_NAME);
2518
2519     if (!avahi_is_valid_service_type(type))
2520         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_SERVICE_TYPE);
2521
2522     if (domain && !avahi_is_valid_domain_name(domain))
2523         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_DOMAIN_NAME);
2524
2525     escape_service_name(ename, sizeof(ename), name);
2526     
2527     if (!(d = avahi_normalize_name(domain)) ||
2528         !(t = avahi_normalize_name(type))) {
2529         ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2530         goto fail;
2531     }
2532     snprintf(n, sizeof(n), "%s.%s.%s", ename, t, d);
2533     
2534     if (!(key = avahi_key_new(n, AVAHI_DNS_CLASS_IN, AVAHI_DNS_TYPE_SRV))) {
2535         ret = avahi_server_set_errno(s, AVAHI_ERR_NO_MEMORY);
2536         goto fail;
2537     }
2538
2539     ret = 0;
2540     
2541     for (e = avahi_hashmap_lookup(s->entries_by_key, key); e; e = e->by_key_next) {
2542
2543         if ((e->interface == interface || e->interface <= 0 || interface <= 0) &&
2544             (e->protocol == protocol || e->protocol == AVAHI_PROTO_UNSPEC || protocol == AVAHI_PROTO_UNSPEC)) {
2545             ret = 1;
2546             break;
2547         }
2548     }
2549     
2550     avahi_key_unref(key);
2551     
2552     avahi_free(d);
2553     avahi_free(t);
2554
2555     return ret;
2556     
2557 fail:
2558     if (d)
2559         avahi_free(d);
2560
2561     if (t)
2562         avahi_free(t);
2563
2564     if (key)
2565         avahi_key_unref(key);
2566
2567     return ret;
2568 }
2569
2570 /** Set the wide area DNS servers */
2571 int avahi_server_set_wide_area_servers(AvahiServer *s, const AvahiAddress *a, unsigned n) {
2572     assert(s);
2573
2574     if (!s->wide_area_lookup_engine)
2575         return avahi_server_set_errno(s, AVAHI_ERR_INVALID_CONFIG);
2576
2577     avahi_wide_area_set_servers(s->wide_area_lookup_engine, a, n);
2578     return AVAHI_OK;
2579 }