]> git.meshlink.io Git - catta/blob - avahi-core/dns.c
* split off lookup.h and publish.h from core.h
[catta] / avahi-core / dns.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 <netinet/in.h>
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdio.h>
31 #include <assert.h>
32
33 #include <avahi-common/domain.h>
34 #include <avahi-common/malloc.h>
35
36 #include "dns.h"
37 #include "log.h"
38
39 AvahiDnsPacket* avahi_dns_packet_new(unsigned mtu) {
40     AvahiDnsPacket *p;
41     size_t max_size;
42
43     if (mtu <= 0)
44         max_size = AVAHI_DNS_PACKET_MAX_SIZE;
45     else if (mtu >= AVAHI_DNS_PACKET_EXTRA_SIZE)
46         max_size = mtu - AVAHI_DNS_PACKET_EXTRA_SIZE;
47     else
48         max_size = 0;
49
50     if (max_size < AVAHI_DNS_PACKET_HEADER_SIZE)
51         max_size = AVAHI_DNS_PACKET_HEADER_SIZE;
52     
53     if (!(p = avahi_malloc(sizeof(AvahiDnsPacket) + max_size)))
54         return p;
55     
56     p->size = p->rindex = AVAHI_DNS_PACKET_HEADER_SIZE;
57     p->max_size = max_size;
58     p->name_table = NULL;
59
60     memset(AVAHI_DNS_PACKET_DATA(p), 0, p->size);
61     return p;
62 }
63
64 AvahiDnsPacket* avahi_dns_packet_new_query(unsigned mtu) {
65     AvahiDnsPacket *p;
66
67     if (!(p = avahi_dns_packet_new(mtu)))
68         return NULL;
69     
70     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_FLAGS, AVAHI_DNS_FLAGS(0, 0, 0, 0, 0, 0, 0, 0, 0, 0));
71     return p;
72 }
73
74 AvahiDnsPacket* avahi_dns_packet_new_response(unsigned mtu, int aa) {
75     AvahiDnsPacket *p;
76
77     if (!(p = avahi_dns_packet_new(mtu)))
78         return NULL;
79     
80     avahi_dns_packet_set_field(p, AVAHI_DNS_FIELD_FLAGS, AVAHI_DNS_FLAGS(1, 0, aa, 0, 0, 0, 0, 0, 0, 0));
81     return p;
82 }
83
84 AvahiDnsPacket* avahi_dns_packet_new_reply(AvahiDnsPacket* p, unsigned mtu, int copy_queries, int aa) {
85     AvahiDnsPacket *r;
86     assert(p);
87
88     if (!(r = avahi_dns_packet_new_response(mtu, aa)))
89         return NULL;
90
91     if (copy_queries) {
92         unsigned saved_rindex;
93         uint32_t n;
94
95         saved_rindex = p->rindex;
96         p->rindex = AVAHI_DNS_PACKET_HEADER_SIZE;
97         
98         for (n = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_QDCOUNT); n > 0; n--) {
99             AvahiKey *k;
100             int unicast_response;
101
102             if ((k = avahi_dns_packet_consume_key(p, &unicast_response))) {
103                 avahi_dns_packet_append_key(r, k, unicast_response);
104                 avahi_key_unref(k);
105             }
106         }
107
108         p->rindex = saved_rindex;
109
110         avahi_dns_packet_set_field(r, AVAHI_DNS_FIELD_QDCOUNT, avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_QDCOUNT));
111     }
112
113     avahi_dns_packet_set_field(r, AVAHI_DNS_FIELD_ID, avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_ID));
114
115     avahi_dns_packet_set_field(r, AVAHI_DNS_FIELD_FLAGS,
116                                (avahi_dns_packet_get_field(r, AVAHI_DNS_FIELD_FLAGS) & ~AVAHI_DNS_FLAG_OPCODE) |
117                                (avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS) & AVAHI_DNS_FLAG_OPCODE));
118
119     return r;
120
121
122
123 void avahi_dns_packet_free(AvahiDnsPacket *p) {
124     assert(p);
125
126     if (p->name_table)
127         avahi_hashmap_free(p->name_table);
128     
129     avahi_free(p);
130 }
131
132 void avahi_dns_packet_set_field(AvahiDnsPacket *p, unsigned idx, uint16_t v) {
133     assert(p);
134     assert(idx < AVAHI_DNS_PACKET_HEADER_SIZE);
135     
136     ((uint16_t*) AVAHI_DNS_PACKET_DATA(p))[idx] = htons(v);
137 }
138
139 uint16_t avahi_dns_packet_get_field(AvahiDnsPacket *p, unsigned idx) {
140     assert(p);
141     assert(idx < AVAHI_DNS_PACKET_HEADER_SIZE);
142
143     return ntohs(((uint16_t*) AVAHI_DNS_PACKET_DATA(p))[idx]);
144 }
145
146 void avahi_dns_packet_inc_field(AvahiDnsPacket *p, unsigned idx) {
147     assert(p);
148     assert(idx < AVAHI_DNS_PACKET_HEADER_SIZE);
149
150     avahi_dns_packet_set_field(p, idx, avahi_dns_packet_get_field(p, idx) + 1);
151 }   
152
153 uint8_t* avahi_dns_packet_append_name(AvahiDnsPacket *p, const char *name) {
154     uint8_t *d, *saved_ptr = NULL;
155     size_t saved_size;
156     
157     assert(p);
158     assert(name);
159
160     saved_size = p->size;
161     saved_ptr = avahi_dns_packet_extend(p, 0);
162     
163     while (*name) {
164         uint8_t* prev;
165         const char *pname;
166         char label[64], *u;
167         
168
169         /* Check whether we can compress this name. */
170
171         if (p->name_table && (prev = avahi_hashmap_lookup(p->name_table, name))) {
172             unsigned idx;
173             
174             assert(prev >= AVAHI_DNS_PACKET_DATA(p));
175             idx = (unsigned) (prev - AVAHI_DNS_PACKET_DATA(p));
176
177             assert(idx < p->size);
178
179             if (idx < 0x4000) {
180                 uint16_t *t;
181                 if (!(t = (uint16_t*) avahi_dns_packet_extend(p, sizeof(uint16_t))))
182                     return NULL;
183
184                 *t = htons((0xC000 | idx));
185                 return saved_ptr;
186             }
187         }
188
189         pname = name;
190         
191         if (!(avahi_unescape_label(&name, label, sizeof(label))))
192             goto fail;
193
194         if (!(d = avahi_dns_packet_append_string(p, label)))
195             goto fail;
196
197         if (!p->name_table)
198             /* This works only for normalized domain names */
199             p->name_table = avahi_hashmap_new(avahi_string_hash, avahi_string_equal, avahi_free, NULL);
200
201         if (!(u = avahi_strdup(pname)))
202             avahi_log_error("avahi_strdup() failed.");
203         else
204             avahi_hashmap_insert(p->name_table, u, d);
205     }
206
207     if (!(d = avahi_dns_packet_extend(p, 1)))
208         goto fail;
209     
210     *d = 0;
211
212     return saved_ptr;
213
214 fail:
215     p->size = saved_size;
216     return NULL;
217 }
218
219 uint8_t* avahi_dns_packet_append_uint16(AvahiDnsPacket *p, uint16_t v) {
220     uint8_t *d;
221     assert(p);
222     
223     if (!(d = avahi_dns_packet_extend(p, sizeof(uint16_t))))
224         return NULL;
225     
226     *((uint16_t*) d) = htons(v);
227     return d;
228 }
229
230 uint8_t *avahi_dns_packet_append_uint32(AvahiDnsPacket *p, uint32_t v) {
231     uint8_t *d;
232     assert(p);
233
234     if (!(d = avahi_dns_packet_extend(p, sizeof(uint32_t))))
235         return NULL;
236     
237     *((uint32_t*) d) = htonl(v);
238
239     return d;
240 }
241
242 uint8_t *avahi_dns_packet_append_bytes(AvahiDnsPacket  *p, const void *b, size_t l) {
243     uint8_t* d;
244
245     assert(p);
246     assert(b);
247     assert(l);
248
249     if (!(d = avahi_dns_packet_extend(p, l)))
250         return NULL;
251
252     memcpy(d, b, l);
253     return d;
254 }
255
256 uint8_t* avahi_dns_packet_append_string(AvahiDnsPacket *p, const char *s) {
257     uint8_t* d;
258     size_t k;
259     
260     assert(p);
261     assert(s);
262
263     if ((k = strlen(s)) >= 255)
264         k = 255;
265     
266     if (!(d = avahi_dns_packet_extend(p, k+1)))
267         return NULL;
268
269     *d = (uint8_t) k;
270     memcpy(d+1, s, k);
271
272     return d;
273 }
274
275 uint8_t *avahi_dns_packet_extend(AvahiDnsPacket *p, size_t l) {
276     uint8_t *d;
277     
278     assert(p);
279
280     if (p->size+l > p->max_size)
281         return NULL;
282     
283     d = AVAHI_DNS_PACKET_DATA(p) + p->size;
284     p->size += l;
285     
286     return d;
287 }
288
289 int avahi_dns_packet_check_valid(AvahiDnsPacket *p) {
290     uint16_t flags;
291     assert(p);
292
293     if (p->size < AVAHI_DNS_PACKET_HEADER_SIZE)
294         return -1;
295
296     flags = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS);
297     
298     if (flags & AVAHI_DNS_FLAG_OPCODE)
299         return -1;
300
301     return 0;
302 }
303
304 int avahi_dns_packet_check_valid_multicast(AvahiDnsPacket *p) {
305     uint16_t flags;
306     assert(p);
307
308     if (avahi_dns_packet_check_valid(p) < 0)
309         return -1;
310     
311     flags = avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS);
312     
313     if (flags & AVAHI_DNS_FLAG_RCODE)
314         return -1;
315
316     return 0;
317 }
318
319
320 int avahi_dns_packet_is_query(AvahiDnsPacket *p) {
321     assert(p);
322     
323     return !(avahi_dns_packet_get_field(p, AVAHI_DNS_FIELD_FLAGS) & AVAHI_DNS_FLAG_QR);
324 }
325
326 static int consume_labels(AvahiDnsPacket *p, unsigned idx, char *ret_name, size_t l) {
327     int ret = 0;
328     int compressed = 0;
329     int first_label = 1;
330     assert(p && ret_name && l);
331     
332     for (;;) {
333         uint8_t n;
334
335         if (idx+1 > p->size)
336             return -1;
337
338         n = AVAHI_DNS_PACKET_DATA(p)[idx];
339
340         if (!n) {
341             idx++;
342             if (!compressed)
343                 ret++;
344
345             if (l < 1)
346                 return -1;
347             *ret_name = 0;
348             
349             return ret;
350             
351         } else if (n <= 63) {
352             /* Uncompressed label */
353             idx++;
354             if (!compressed)
355                 ret++;
356         
357             if (idx + n > p->size)
358                 return -1;
359
360             if ((size_t) n + 1 > l)
361                 return -1;
362
363             if (!first_label) {
364                 *(ret_name++) = '.';
365                 l--;
366             } else
367                 first_label = 0;
368
369             if (!(avahi_escape_label(AVAHI_DNS_PACKET_DATA(p) + idx, n, &ret_name, &l)))
370                 return -1;
371
372             idx += n;
373             
374             if (!compressed)
375                 ret += n;
376         } else if ((n & 0xC0) == 0xC0) {
377             /* Compressed label */
378
379             if (idx+2 > p->size)
380                 return -1;
381
382             idx = ((unsigned) (AVAHI_DNS_PACKET_DATA(p)[idx] & ~0xC0)) << 8 | AVAHI_DNS_PACKET_DATA(p)[idx+1];
383
384             if (!compressed)
385                 ret += 2;
386             
387             compressed = 1;
388         } else
389             return -1;
390     }
391 }
392
393 int avahi_dns_packet_consume_name(AvahiDnsPacket *p, char *ret_name, size_t l) {
394     int r;
395     
396     if ((r = consume_labels(p, p->rindex, ret_name, l)) < 0)
397         return -1;
398
399     p->rindex += r;
400     return 0;
401 }
402
403 int avahi_dns_packet_consume_uint16(AvahiDnsPacket *p, uint16_t *ret_v) {
404     assert(p);
405     assert(ret_v);
406
407     if (p->rindex + sizeof(uint16_t) > p->size)
408         return -1;
409
410     *ret_v = ntohs(*((uint16_t*) (AVAHI_DNS_PACKET_DATA(p) + p->rindex)));
411     p->rindex += sizeof(uint16_t);
412
413     return 0;
414 }
415
416 int avahi_dns_packet_consume_uint32(AvahiDnsPacket *p, uint32_t *ret_v) {
417     assert(p);
418     assert(ret_v);
419
420     if (p->rindex + sizeof(uint32_t) > p->size)
421         return -1;
422
423     *ret_v = ntohl(*((uint32_t*) (AVAHI_DNS_PACKET_DATA(p) + p->rindex)));
424     p->rindex += sizeof(uint32_t);
425     
426     return 0;
427 }
428
429 int avahi_dns_packet_consume_bytes(AvahiDnsPacket *p, void * ret_data, size_t l) {
430     assert(p);
431     assert(ret_data);
432     assert(l > 0);
433     
434     if (p->rindex + l > p->size)
435         return -1;
436
437     memcpy(ret_data, AVAHI_DNS_PACKET_DATA(p) + p->rindex, l);
438     p->rindex += l;
439
440     return 0;
441 }
442
443 int avahi_dns_packet_consume_string(AvahiDnsPacket *p, char *ret_string, size_t l) {
444     size_t k;
445     
446     assert(p);
447     assert(ret_string);
448     assert(l > 0);
449
450     if (p->rindex >= p->size)
451         return -1;
452
453     k = AVAHI_DNS_PACKET_DATA(p)[p->rindex];
454
455     if (p->rindex+1+k > p->size)
456         return -1;
457
458     if (l > k+1)
459         l = k+1;
460
461     memcpy(ret_string, AVAHI_DNS_PACKET_DATA(p)+p->rindex+1, l-1);
462     ret_string[l-1] = 0;
463     
464     p->rindex += 1+k;
465
466     return 0;
467 }
468
469 const void* avahi_dns_packet_get_rptr(AvahiDnsPacket *p) {
470     assert(p);
471     
472     if (p->rindex > p->size)
473         return NULL;
474
475     return AVAHI_DNS_PACKET_DATA(p) + p->rindex;
476 }
477
478 int avahi_dns_packet_skip(AvahiDnsPacket *p, size_t length) {
479     assert(p);
480
481     if (p->rindex + length > p->size)
482         return -1;
483
484     p->rindex += length;
485     return 0;
486 }
487
488 AvahiRecord* avahi_dns_packet_consume_record(AvahiDnsPacket *p, int *ret_cache_flush) {
489     char name[257], buf[257];
490     uint16_t type, class;
491     uint32_t ttl;
492     uint16_t rdlength;
493     AvahiRecord *r = NULL;
494     const void* start;
495
496     assert(p);
497
498 /*     avahi_log_debug("consume_record()"); */
499
500     if (avahi_dns_packet_consume_name(p, name, sizeof(name)) < 0 ||
501         avahi_dns_packet_consume_uint16(p, &type) < 0 ||
502         avahi_dns_packet_consume_uint16(p, &class) < 0 ||
503         avahi_dns_packet_consume_uint32(p, &ttl) < 0 ||
504         avahi_dns_packet_consume_uint16(p, &rdlength) < 0 ||
505         p->rindex + rdlength > p->size)
506         goto fail;
507
508 /*     avahi_log_debug("name = %s, rdlength = %u", name, rdlength); */
509
510     if (ret_cache_flush)
511         *ret_cache_flush = !!(class & AVAHI_DNS_CACHE_FLUSH);
512     class &= ~AVAHI_DNS_CACHE_FLUSH;
513     
514     start = avahi_dns_packet_get_rptr(p);
515     
516     if (!(r = avahi_record_new_full(name, class, type, ttl)))
517         return NULL;
518     
519     switch (type) {
520         case AVAHI_DNS_TYPE_PTR:
521         case AVAHI_DNS_TYPE_CNAME:
522
523 /*             avahi_log_debug("ptr"); */
524             
525             if (avahi_dns_packet_consume_name(p, buf, sizeof(buf)) < 0)
526                 goto fail;
527
528             r->data.ptr.name = avahi_strdup(buf);
529             break;
530
531             
532         case AVAHI_DNS_TYPE_SRV:
533
534 /*             avahi_log_debug("srv"); */
535             
536             if (avahi_dns_packet_consume_uint16(p, &r->data.srv.priority) < 0 ||
537                 avahi_dns_packet_consume_uint16(p, &r->data.srv.weight) < 0 ||
538                 avahi_dns_packet_consume_uint16(p, &r->data.srv.port) < 0 ||
539                 avahi_dns_packet_consume_name(p, buf, sizeof(buf)) < 0)
540                 goto fail;
541             
542             r->data.srv.name = avahi_strdup(buf);
543             break;
544
545         case AVAHI_DNS_TYPE_HINFO:
546             
547 /*             avahi_log_debug("hinfo"); */
548
549             if (avahi_dns_packet_consume_string(p, buf, sizeof(buf)) < 0)
550                 goto fail;
551
552             r->data.hinfo.cpu = avahi_strdup(buf);
553
554             if (avahi_dns_packet_consume_string(p, buf, sizeof(buf)) < 0)
555                 goto fail;
556
557             r->data.hinfo.os = avahi_strdup(buf);
558             break;
559
560         case AVAHI_DNS_TYPE_TXT:
561
562 /*             avahi_log_debug("txt"); */
563
564             if (rdlength > 0) {
565                 r->data.txt.string_list = avahi_string_list_parse(avahi_dns_packet_get_rptr(p), rdlength);
566                 
567                 if (avahi_dns_packet_skip(p, rdlength) < 0)
568                     goto fail;
569             } else
570                 r->data.txt.string_list = NULL;
571             
572             break;
573
574         case AVAHI_DNS_TYPE_A:
575
576 /*             avahi_log_debug("A"); */
577
578             if (avahi_dns_packet_consume_bytes(p, &r->data.a.address, sizeof(AvahiIPv4Address)) < 0)
579                 goto fail;
580             
581             break;
582
583         case AVAHI_DNS_TYPE_AAAA:
584
585 /*             avahi_log_debug("aaaa"); */
586             
587             if (avahi_dns_packet_consume_bytes(p, &r->data.aaaa.address, sizeof(AvahiIPv6Address)) < 0)
588                 goto fail;
589             
590             break;
591             
592         default:
593
594 /*             avahi_log_debug("generic"); */
595             
596             if (rdlength > 0) {
597
598                 r->data.generic.data = avahi_memdup(avahi_dns_packet_get_rptr(p), rdlength);
599                 
600                 if (avahi_dns_packet_skip(p, rdlength) < 0)
601                     goto fail;
602             }
603
604             break;
605     }
606
607 /*     avahi_log_debug("%i == %u ?", (uint8_t*) avahi_dns_packet_get_rptr(p) - (uint8_t*) start, rdlength); */
608     
609     /* Check if we read enough data */
610     if ((const uint8_t*) avahi_dns_packet_get_rptr(p) - (const uint8_t*) start != rdlength)
611         goto fail;
612
613     return r;
614
615 fail:
616     if (r)
617         avahi_record_unref(r);
618
619     return NULL;
620 }
621
622 AvahiKey* avahi_dns_packet_consume_key(AvahiDnsPacket *p, int *ret_unicast_response) {
623     char name[256];
624     uint16_t type, class;
625
626     assert(p);
627
628     if (avahi_dns_packet_consume_name(p, name, sizeof(name)) < 0 ||
629         avahi_dns_packet_consume_uint16(p, &type) < 0 ||
630         avahi_dns_packet_consume_uint16(p, &class) < 0)
631         return NULL;
632
633     if (ret_unicast_response)
634         *ret_unicast_response = !!(class & AVAHI_DNS_UNICAST_RESPONSE);
635
636     class &= ~AVAHI_DNS_UNICAST_RESPONSE;
637     
638     return avahi_key_new(name, class, type);
639 }
640
641 uint8_t* avahi_dns_packet_append_key(AvahiDnsPacket *p, AvahiKey *k, int unicast_response) {
642     uint8_t *t;
643     size_t size;
644     
645     assert(p);
646     assert(k);
647
648     size = p->size;
649     
650     if (!(t = avahi_dns_packet_append_name(p, k->name)) ||
651         !avahi_dns_packet_append_uint16(p, k->type) ||
652         !avahi_dns_packet_append_uint16(p, k->clazz | (unicast_response ? AVAHI_DNS_UNICAST_RESPONSE : 0))) {
653         p->size = size;
654         return NULL;
655     }
656
657     return t;
658 }
659
660 uint8_t* avahi_dns_packet_append_record(AvahiDnsPacket *p, AvahiRecord *r, int cache_flush, unsigned max_ttl) {
661     uint8_t *t, *l, *start;
662     size_t size;
663
664     assert(p);
665     assert(r);
666
667     size = p->size;
668
669     if (!(t = avahi_dns_packet_append_name(p, r->key->name)) ||
670         !avahi_dns_packet_append_uint16(p, r->key->type) ||
671         !avahi_dns_packet_append_uint16(p, cache_flush ? (r->key->clazz | AVAHI_DNS_CACHE_FLUSH) : (r->key->clazz &~ AVAHI_DNS_CACHE_FLUSH)) ||
672         !avahi_dns_packet_append_uint32(p, (max_ttl && r->ttl > max_ttl) ? max_ttl : r->ttl) ||
673         !(l = avahi_dns_packet_append_uint16(p, 0)))
674         goto fail;
675
676     start = avahi_dns_packet_extend(p, 0);
677
678     switch (r->key->type) {
679         
680         case AVAHI_DNS_TYPE_PTR:
681         case AVAHI_DNS_TYPE_CNAME :
682
683             if (!(avahi_dns_packet_append_name(p, r->data.ptr.name)))
684                 goto fail;
685             
686             break;
687
688         case AVAHI_DNS_TYPE_SRV:
689
690             if (!avahi_dns_packet_append_uint16(p, r->data.srv.priority) ||
691                 !avahi_dns_packet_append_uint16(p, r->data.srv.weight) ||
692                 !avahi_dns_packet_append_uint16(p, r->data.srv.port) ||
693                 !avahi_dns_packet_append_name(p, r->data.srv.name))
694                 goto fail;
695
696             break;
697
698         case AVAHI_DNS_TYPE_HINFO:
699             if (!avahi_dns_packet_append_string(p, r->data.hinfo.cpu) ||
700                 !avahi_dns_packet_append_string(p, r->data.hinfo.os))
701                 goto fail;
702
703             break;
704
705         case AVAHI_DNS_TYPE_TXT: {
706
707             uint8_t *data;
708             size_t n;
709
710             n = avahi_string_list_serialize(r->data.txt.string_list, NULL, 0);
711
712 /*             avahi_log_debug("appending string: %u %p", n, r->data.txt.string_list); */
713
714             if (!(data = avahi_dns_packet_extend(p, n)))
715                 goto fail;
716
717             avahi_string_list_serialize(r->data.txt.string_list, data, n);
718             break;
719         }
720
721
722         case AVAHI_DNS_TYPE_A:
723
724             if (!avahi_dns_packet_append_bytes(p, &r->data.a.address, sizeof(r->data.a.address)))
725                 goto fail;
726             
727             break;
728
729         case AVAHI_DNS_TYPE_AAAA:
730             
731             if (!avahi_dns_packet_append_bytes(p, &r->data.aaaa.address, sizeof(r->data.aaaa.address)))
732                 goto fail;
733             
734             break;
735             
736         default:
737
738             if (r->data.generic.size &&
739                 avahi_dns_packet_append_bytes(p, r->data.generic.data, r->data.generic.size))
740                 goto fail;
741
742             break;
743     }
744
745
746
747     
748     size = avahi_dns_packet_extend(p, 0) - start;
749     assert(size <= 0xFFFF);
750
751 /*     avahi_log_debug("appended %u", size); */
752
753     * (uint16_t*) l = htons((uint16_t) size);
754     
755     return t;
756
757
758 fail:
759     p->size = size;
760     return NULL;
761 }
762
763 int avahi_dns_packet_is_empty(AvahiDnsPacket *p) {
764     assert(p);
765
766     return p->size <= AVAHI_DNS_PACKET_HEADER_SIZE;
767 }
768
769 size_t avahi_dns_packet_space(AvahiDnsPacket *p) {
770     assert(p);
771
772     assert(p->size <= p->max_size);
773     
774     return p->max_size - p->size;
775 }