]> git.meshlink.io Git - catta/blob - avahi-core/socket.c
Patch from Padraig O'Briain <Padraig.Obriain@sun.com> to build avahi on Solaris
[catta] / avahi-core / socket.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 <inttypes.h>
27 #include <errno.h>
28 #include <string.h>
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <fcntl.h>
32 #include <sys/time.h>
33 #include <sys/ioctl.h>
34 #ifdef HAVE_SYS_FILIO_H
35 #include <sys/filio.h>
36 #endif
37 #include <assert.h>
38
39 #include <sys/types.h>
40 #include <sys/socket.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
43 #include <net/if.h>
44 #include <sys/uio.h>
45
46 #ifdef IP_RECVIF
47 #include <net/if_dl.h>
48 #endif
49
50 #include "dns.h"
51 #include "fdutil.h"
52 #include "socket.h"
53 #include "log.h"
54 #include "addr-util.h"
55
56 /* this is a portability hack */
57 #ifndef IPV6_ADD_MEMBERSHIP
58 #ifdef  IPV6_JOIN_GROUP
59 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
60 #endif
61 #endif
62
63 #ifndef IPV6_DROP_MEMBERSHIP
64 #ifdef  IPV6_LEAVE_GROUP
65 #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
66 #endif
67 #endif
68
69 static void mdns_mcast_group_ipv4(struct sockaddr_in *ret_sa) {
70     assert(ret_sa);
71
72     memset(ret_sa, 0, sizeof(struct sockaddr_in));
73     ret_sa->sin_family = AF_INET;
74     ret_sa->sin_port = htons(AVAHI_MDNS_PORT);
75     inet_pton(AF_INET, AVAHI_IPV4_MCAST_GROUP, &ret_sa->sin_addr);
76 }
77
78 static void mdns_mcast_group_ipv6(struct sockaddr_in6 *ret_sa) {
79     assert(ret_sa);
80
81     memset(ret_sa, 0, sizeof(struct sockaddr_in6));
82     ret_sa->sin6_family = AF_INET6;
83     ret_sa->sin6_port = htons(AVAHI_MDNS_PORT);
84     inet_pton(AF_INET6, AVAHI_IPV6_MCAST_GROUP, &ret_sa->sin6_addr);
85 }
86
87 static void ipv4_address_to_sockaddr(struct sockaddr_in *ret_sa, const AvahiIPv4Address *a, uint16_t port) {
88     assert(ret_sa);
89     assert(a);
90     assert(port > 0);
91
92     memset(ret_sa, 0, sizeof(struct sockaddr_in));
93     ret_sa->sin_family = AF_INET;
94     ret_sa->sin_port = htons(port);
95     memcpy(&ret_sa->sin_addr, a, sizeof(AvahiIPv4Address));
96 }
97
98 static void ipv6_address_to_sockaddr(struct sockaddr_in6 *ret_sa, const AvahiIPv6Address *a, uint16_t port) {
99     assert(ret_sa);
100     assert(a);
101     assert(port > 0);
102
103     memset(ret_sa, 0, sizeof(struct sockaddr_in6));
104     ret_sa->sin6_family = AF_INET6;
105     ret_sa->sin6_port = htons(port);
106     memcpy(&ret_sa->sin6_addr, a, sizeof(AvahiIPv6Address));
107 }
108
109 int avahi_mdns_mcast_join_ipv4(int fd, const AvahiIPv4Address *a, int idx, int join) {
110 #ifdef HAVE_STRUCT_IP_MREQN
111     struct ip_mreqn mreq;
112 #else
113     struct ip_mreq mreq;
114 #endif
115     struct sockaddr_in sa;
116
117     assert(fd >= 0);
118     assert(idx >= 0);
119     assert(a);
120
121     memset(&mreq, 0, sizeof(mreq));
122 #ifdef HAVE_STRUCT_IP_MREQN
123     mreq.imr_ifindex = idx;
124     mreq.imr_address.s_addr = a->address;
125 #else
126     mreq.imr_interface.s_addr = a->address;
127 #endif
128     mdns_mcast_group_ipv4(&sa);
129     mreq.imr_multiaddr = sa.sin_addr;
130
131     /* Some network drivers have issues with dropping membership of
132      * mcast groups when the iface is down, but don't allow rejoining
133      * when it comes back up. This is an ugly workaround */
134     if (join)
135         setsockopt(fd, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
136
137     if (setsockopt(fd, IPPROTO_IP, join ? IP_ADD_MEMBERSHIP : IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq)) < 0) {
138         avahi_log_warn("%s failed: %s", join ? "IP_ADD_MEMBERSHIP" : "IP_DROP_MEMBERSHIP", strerror(errno));
139         return -1;
140     } 
141
142     return 0;
143 }
144
145 int avahi_mdns_mcast_join_ipv6(int fd, const AvahiIPv6Address *a, int idx, int join) {
146     struct ipv6_mreq mreq6; 
147     struct sockaddr_in6 sa6;
148
149     assert(fd >= 0);
150     assert(idx >= 0);
151     assert(a);
152
153     memset(&mreq6, 0, sizeof(mreq6));
154     mdns_mcast_group_ipv6 (&sa6);
155     mreq6.ipv6mr_multiaddr = sa6.sin6_addr;
156     mreq6.ipv6mr_interface = idx;
157
158     if (join)
159         setsockopt(fd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6));
160     
161     if (setsockopt(fd, IPPROTO_IPV6, join ? IPV6_ADD_MEMBERSHIP : IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
162         avahi_log_warn("%s failed: %s", join ? "IPV6_ADD_MEMBERSHIP" : "IPV6_DROP_MEMBERSHIP", strerror(errno));
163         return -1;
164     }
165
166     return 0;
167 }
168
169 static int reuseaddr(int fd) {
170     int yes;
171     
172     yes = 1;
173     if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0) {
174         avahi_log_warn("SO_REUSEADDR failed: %s", strerror(errno));
175         return -1;
176     }
177     
178 #ifdef SO_REUSEPORT
179     yes = 1;
180     if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &yes, sizeof(yes)) < 0) {
181         avahi_log_warn("SO_REUSEPORT failed: %s", strerror(errno));
182         return -1;
183     }
184 #endif
185     
186     return 0;
187 }
188
189 static int bind_with_warn(int fd, const struct sockaddr *sa, socklen_t l) {
190     
191     assert(fd >= 0);
192     assert(sa);
193     assert(l > 0);
194     
195     if (bind(fd, sa, l) < 0) {
196
197         if (errno != EADDRINUSE) {
198             avahi_log_warn("bind() failed: %s", strerror(errno));
199             return -1;
200         }
201             
202         avahi_log_warn("*** WARNING: Detected another %s mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***",
203                        sa->sa_family == AF_INET ? "IPv4" : "IPv6");
204
205         /* Try again, this time with SO_REUSEADDR set */
206         if (reuseaddr(fd) < 0)
207             return -1;
208         
209         if (bind(fd, sa, l) < 0) {
210             avahi_log_warn("bind() failed: %s", strerror(errno));
211             return -1;
212         }
213     } else {
214
215         /* We enable SO_REUSEADDR afterwards, to make sure that the
216          * user may run other mDNS implementations if he really
217          * wants. */
218         
219         if (reuseaddr(fd) < 0)
220             return -1;
221     }
222
223     return 0;
224 }
225
226 static int ipv4_pktinfo(int fd) {
227     int yes;
228     
229 #ifdef IP_PKTINFO
230     yes = 1;
231     if (setsockopt(fd, IPPROTO_IP, IP_PKTINFO, &yes, sizeof(yes)) < 0) {
232         avahi_log_warn("IP_PKTINFO failed: %s", strerror(errno));
233         return -1;
234     }
235 #else
236     
237 #ifdef IP_RECVINTERFACE
238     yes = 1;
239     if (setsockopt (fd, IPPROTO_IP, IP_RECVINTERFACE, &yes, sizeof(yes)) < 0) {
240         avahi_log_warn("IP_RECVINTERFACE failed: %s", strerror(errno));
241         return -1;
242     }
243 #elif defined(IP_RECVIF)
244     yes = 1;
245     if (setsockopt (fd, IPPROTO_IP, IP_RECVIF, &yes, sizeof(yes)) < 0) {
246         avahi_log_warn("IP_RECVIF failed: %s", strerror(errno));
247         return -1;
248     }
249 #endif
250     
251 #ifdef IP_RECVDSTADDR
252     yes = 1;
253     if (setsockopt (fd, IPPROTO_IP, IP_RECVDSTADDR, &yes, sizeof(yes)) < 0) {
254         avahi_log_warn("IP_RECVDSTADDR failed: %s", strerror(errno));
255         return -1;
256     }
257 #endif
258     
259 #endif /* IP_PKTINFO */
260
261 #ifdef IP_RECVTTL
262     yes = 1;
263     if (setsockopt(fd, IPPROTO_IP, IP_RECVTTL, &yes, sizeof(yes)) < 0) {
264         avahi_log_warn("IP_RECVTTL failed: %s", strerror(errno));
265         return -1;
266     }
267 #endif
268
269     return 0;
270 }
271
272 static int ipv6_pktinfo(int fd) {
273     int yes;
274     
275 #ifdef IPV6_RECVPKTINFO
276     yes = 1;
277     if (setsockopt(fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, &yes, sizeof(yes)) < 0) {
278         avahi_log_warn("IPV6_RECVPKTINFO failed: %s", strerror(errno));
279         return -1;
280     }
281 #elif defined(IPV6_PKTINFO)
282     yes = 1;
283     if (setsockopt(fd, IPPROTO_IPV6, IPV6_PKTINFO, &yes, sizeof(yes)) < 0) {
284         avahi_log_warn("IPV6_PKTINFO failed: %s", strerror(errno));
285         return -1;
286     }
287 #endif
288
289 #ifdef IPV6_RECVHOPS
290     yes = 1;
291     if (setsockopt(fd, IPPROTO_IPV6, IPV6_RECVHOPS, &yes, sizeof(yes)) < 0) {
292         avahi_log_warn("IPV6_RECVHOPS failed: %s", strerror(errno));
293         return -1;
294     }
295 #elif defined(IPV6_RECVHOPLIMIT)
296     yes = 1;
297     if (setsockopt(fd, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &yes, sizeof(yes)) < 0) {
298         avahi_log_warn("IPV6_RECVHOPLIMIT failed: %s", strerror(errno));
299         return -1;
300     }
301 #elif defined(IPV6_HOPLIMIT)
302     yes = 1;
303     if (setsockopt(fd, IPPROTO_IPV6, IPV6_HOPLIMIT, &yes, sizeof(yes)) < 0) {
304         avahi_log_warn("IPV6_HOPLIMIT failed: %s", strerror(errno));
305         return -1;
306     }
307 #endif
308
309     return 0;
310 }
311
312 int avahi_open_socket_ipv4(int no_reuse) {
313     struct sockaddr_in local;
314     int fd = -1, r, ittl;
315     uint8_t ttl, cyes;
316         
317     if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
318         avahi_log_warn("socket() failed: %s", strerror(errno));
319         goto fail;
320     }
321     
322     ttl = 255;
323     if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)) < 0) {
324         avahi_log_warn("IP_MULTICAST_TTL failed: %s", strerror(errno));
325         goto fail;
326     }
327
328     ittl = 255;
329     if (setsockopt(fd, IPPROTO_IP, IP_TTL, &ittl, sizeof(ittl)) < 0) {
330         avahi_log_warn("IP_TTL failed: %s", strerror(errno));
331         goto fail;
332     }
333     
334     cyes = 1;
335     if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &cyes, sizeof(cyes)) < 0) {
336         avahi_log_warn("IP_MULTICAST_LOOP failed: %s", strerror(errno));
337         goto fail;
338     }
339     
340     memset(&local, 0, sizeof(local));
341     local.sin_family = AF_INET;
342     local.sin_port = htons(AVAHI_MDNS_PORT);
343
344     if (no_reuse)
345         r = bind(fd, (struct sockaddr*) &local, sizeof(local));
346     else
347         r = bind_with_warn(fd, (struct sockaddr*) &local, sizeof(local));
348
349     if (r < 0)
350         goto fail;
351
352     if (ipv4_pktinfo (fd) < 0)
353          goto fail;
354
355     if (avahi_set_cloexec(fd) < 0) {
356         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
357         goto fail;
358     }
359     
360     if (avahi_set_nonblock(fd) < 0) {
361         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
362         goto fail;
363     }
364
365     return fd;
366
367 fail:
368     if (fd >= 0)
369         close(fd);
370
371     return -1;
372 }
373
374 int avahi_open_socket_ipv6(int no_reuse) {
375     struct sockaddr_in6 sa, local;
376     int fd = -1, yes, r;
377     int ttl;
378
379     mdns_mcast_group_ipv6(&sa);
380         
381     if ((fd = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
382         avahi_log_warn("socket() failed: %s", strerror(errno));
383         goto fail;
384     }
385     
386     ttl = 255;
387     if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &ttl, sizeof(ttl)) < 0) {
388         avahi_log_warn("IPV6_MULTICAST_HOPS failed: %s", strerror(errno));
389         goto fail;
390     }
391
392     ttl = 255;
393     if (setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof(ttl)) < 0) {
394         avahi_log_warn("IPV6_UNICAST_HOPS failed: %s", strerror(errno));
395         goto fail;
396     }
397     
398     yes = 1;
399     if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &yes, sizeof(yes)) < 0) {
400         avahi_log_warn("IPV6_V6ONLY failed: %s", strerror(errno));
401         goto fail;
402     }
403
404     yes = 1;
405     if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &yes, sizeof(yes)) < 0) {
406         avahi_log_warn("IPV6_MULTICAST_LOOP failed: %s", strerror(errno));
407         goto fail;
408     }
409
410     memset(&local, 0, sizeof(local));
411     local.sin6_family = AF_INET6;
412     local.sin6_port = htons(AVAHI_MDNS_PORT);
413     
414     if (no_reuse)
415         r = bind(fd, (struct sockaddr*) &local, sizeof(local));
416     else
417         r = bind_with_warn(fd, (struct sockaddr*) &local, sizeof(local));
418
419     if (r < 0)
420         goto fail;
421
422     if (ipv6_pktinfo(fd) < 0)
423         goto fail;
424     
425     if (avahi_set_cloexec(fd) < 0) {
426         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
427         goto fail;
428     }
429     
430     if (avahi_set_nonblock(fd) < 0) {
431         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
432         goto fail;
433     }
434
435     return fd;
436
437 fail:
438     if (fd >= 0)
439         close(fd);
440
441     return -1;
442 }
443
444 static int sendmsg_loop(int fd, struct msghdr *msg, int flags) {
445     assert(fd >= 0);
446     assert(msg);
447
448     for (;;) {
449     
450         if (sendmsg(fd, msg, flags) >= 0)
451             break;
452         
453         if (errno != EAGAIN) {
454             avahi_log_debug("sendmsg() failed: %s", strerror(errno));
455             return -1;
456         }
457         
458         if (avahi_wait_for_write(fd) < 0)
459             return -1;
460     }
461
462     return 0;
463 }
464
465 int avahi_send_dns_packet_ipv4(int fd, AvahiIfIndex interface, AvahiDnsPacket *p, const AvahiIPv4Address *src_address, const AvahiIPv4Address *dst_address, uint16_t dst_port) {
466     struct sockaddr_in sa;
467     struct msghdr msg;
468     struct iovec io;
469 #ifdef IP_PKTINFO
470     struct cmsghdr *cmsg;
471     size_t cmsg_data[( CMSG_SPACE(sizeof(struct in_pktinfo)) / sizeof(size_t)) + 1];
472 #elif defined(IP_SENDSRCADDR)
473     struct cmsghdr *cmsg;
474     size_t cmsg_data[( CMSG_SPACE(sizeof(struct in_addr)) / sizeof(size_t)) + 1];
475 #endif
476
477     assert(fd >= 0);
478     assert(p);
479     assert(avahi_dns_packet_check_valid(p) >= 0);
480     assert(!dst_address || dst_port > 0);
481
482     if (!dst_address)
483         mdns_mcast_group_ipv4(&sa);
484     else
485         ipv4_address_to_sockaddr(&sa, dst_address, dst_port);
486
487     memset(&io, 0, sizeof(io));
488     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
489     io.iov_len = p->size;
490
491     memset(&msg, 0, sizeof(msg));
492     msg.msg_name = &sa;
493     msg.msg_namelen = sizeof(sa);
494     msg.msg_iov = &io;
495     msg.msg_iovlen = 1;
496     msg.msg_flags = 0;
497     msg.msg_control = NULL;
498     msg.msg_controllen = 0;
499
500 #ifdef IP_PKTINFO
501     if (interface > 0 || src_address) {
502         struct in_pktinfo *pkti;
503         
504         memset(cmsg_data, 0, sizeof(cmsg_data));
505         msg.msg_control = cmsg_data;
506         msg.msg_controllen = sizeof(cmsg_data);
507         
508         cmsg = CMSG_FIRSTHDR(&msg);
509         cmsg->cmsg_len = CMSG_LEN(sizeof(struct in_pktinfo));
510         cmsg->cmsg_level = IPPROTO_IP;
511         cmsg->cmsg_type = IP_PKTINFO;
512
513         pkti = (struct in_pktinfo*) CMSG_DATA(cmsg);
514
515         if (interface > 0) 
516             pkti->ipi_ifindex = interface;
517
518         if (src_address)
519             pkti->ipi_spec_dst.s_addr = src_address->address;
520
521         msg.msg_controllen = cmsg->cmsg_len;
522     }
523 #elif defined(IP_SENDSRCADDR)
524     if (src_address) {
525         struct in_addr *addr;
526       
527         memset(cmsg_data, 0, sizeof(cmsg_data));
528         cmsg = (struct cmsghdr*) cmsg_data;
529         cmsg->cmsg_len = CMSG_LEN(sizeof(struct in_addr));
530         cmsg->cmsg_level = IPPROTO_IP;
531         cmsg->cmsg_type = IP_SENDSRCADDR;
532         
533         addr = (struct in_addr *)CMSG_DATA(cmsg);
534         addr->s_addr =  src_address->address;
535         
536         msg.msg_control = cmsg_data;
537         msg.msg_controllen = CMSG_SPACE(sizeof(struct in_addr));
538     }
539 #elif defined(IP_MULTICAST_IF)
540     {
541         struct in_addr any = { INADDR_ANY };
542         if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_IF, src_address ? (const void*) &src_address->address : (const void*) &any, sizeof(struct in_addr)) < 0) {
543             avahi_log_warn("IP_MULTICAST_IF failed: %s", strerror(errno));
544             return -1;
545         }
546     }
547 #elif defined(__GNUC__)
548 #warning "FIXME: We need some code to set the outgoing interface/local address here if IP_PKTINFO/IP_MULTICAST_IF is not available"
549 #endif
550
551     return sendmsg_loop(fd, &msg, 0);
552 }
553
554 int avahi_send_dns_packet_ipv6(int fd, AvahiIfIndex interface, AvahiDnsPacket *p, const AvahiIPv6Address *src_address, const AvahiIPv6Address *dst_address, uint16_t dst_port) {
555     struct sockaddr_in6 sa;
556     struct msghdr msg;
557     struct iovec io;
558     struct cmsghdr *cmsg;
559     size_t cmsg_data[(CMSG_SPACE(sizeof(struct in6_pktinfo))/sizeof(size_t)) + 1];
560
561     assert(fd >= 0);
562     assert(p);
563     assert(avahi_dns_packet_check_valid(p) >= 0);
564     assert(!dst_address || dst_port > 0);
565
566     if (!dst_address)
567         mdns_mcast_group_ipv6(&sa);
568     else
569         ipv6_address_to_sockaddr(&sa, dst_address, dst_port);
570
571     memset(&io, 0, sizeof(io));
572     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
573     io.iov_len = p->size;
574
575     memset(&msg, 0, sizeof(msg));
576     msg.msg_name = &sa;
577     msg.msg_namelen = sizeof(sa);
578     msg.msg_iov = &io;
579     msg.msg_iovlen = 1;
580     msg.msg_flags = 0;
581
582     if (interface > 0 || src_address) {
583         struct in6_pktinfo *pkti;
584     
585         memset(cmsg_data, 0, sizeof(cmsg_data));
586         cmsg = (struct cmsghdr*) cmsg_data;
587         cmsg->cmsg_len = CMSG_LEN(sizeof(struct in6_pktinfo));
588         cmsg->cmsg_level = IPPROTO_IPV6;
589         cmsg->cmsg_type = IPV6_PKTINFO;
590         
591         pkti = (struct in6_pktinfo*) CMSG_DATA(cmsg);
592
593         if (interface > 0)
594             pkti->ipi6_ifindex = interface;
595
596         if (src_address)
597             memcpy(&pkti->ipi6_addr, src_address->address, sizeof(src_address->address));
598         
599         msg.msg_control = cmsg_data;
600         msg.msg_controllen = CMSG_SPACE(sizeof(struct in6_pktinfo));
601     } else {
602         msg.msg_control = NULL;
603         msg.msg_controllen = 0;
604     }
605     
606     return sendmsg_loop(fd, &msg, 0);
607 }
608
609 AvahiDnsPacket *avahi_recv_dns_packet_ipv4(int fd, AvahiIPv4Address *ret_src_address, uint16_t *ret_src_port, AvahiIPv4Address *ret_dst_address, AvahiIfIndex *ret_iface, uint8_t *ret_ttl) {
610     AvahiDnsPacket *p= NULL;
611     struct msghdr msg;
612     struct iovec io;
613     size_t aux[1024 / sizeof(size_t)]; /* for alignment on ia64 ! */
614     ssize_t l;
615     struct cmsghdr *cmsg;
616     int found_addr = 0;
617     int ms;
618     struct sockaddr_in sa;
619
620     assert(fd >= 0);
621
622     if (ioctl(fd, FIONREAD, &ms) < 0) {
623         avahi_log_warn("ioctl(): %s", strerror(errno));
624         goto fail;
625     }
626
627     p = avahi_dns_packet_new(ms + AVAHI_DNS_PACKET_EXTRA_SIZE);
628
629     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
630     io.iov_len = p->max_size;
631     
632     memset(&msg, 0, sizeof(msg));
633     msg.msg_name = &sa;
634     msg.msg_namelen = sizeof(sa);
635     msg.msg_iov = &io;
636     msg.msg_iovlen = 1;
637     msg.msg_control = aux;
638     msg.msg_controllen = sizeof(aux);
639     msg.msg_flags = 0;
640     
641     if ((l = recvmsg(fd, &msg, 0)) < 0) {
642         avahi_log_warn("recvmsg(): %s", strerror(errno));
643         goto fail;
644     }
645
646     if (sa.sin_addr.s_addr == INADDR_ANY) {
647         /* Linux 2.4 behaves very strangely sometimes! */
648         goto fail;
649     }
650
651     assert(!(msg.msg_flags & MSG_CTRUNC));
652     assert(!(msg.msg_flags & MSG_TRUNC));
653
654     p->size = (size_t) l;
655
656     if (ret_src_port)
657         *ret_src_port = avahi_port_from_sockaddr((struct sockaddr*) &sa);
658
659     if (ret_src_address) {
660         AvahiAddress a;
661         avahi_address_from_sockaddr((struct sockaddr*) &sa, &a);
662         *ret_src_address = a.data.ipv4;
663     }
664
665     if (ret_ttl)
666         *ret_ttl = 255;
667
668     if (ret_iface)
669         *ret_iface = AVAHI_IF_UNSPEC;
670     
671     for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
672         
673         if (cmsg->cmsg_level == IPPROTO_IP) {
674             
675             switch (cmsg->cmsg_type) {
676 #ifdef IP_RECVTTL
677                 case IP_RECVTTL:
678 #endif
679                 case IP_TTL:
680                     if (ret_ttl)
681                         *ret_ttl = (uint8_t) (*(int *) CMSG_DATA(cmsg));
682
683                     break;
684
685 #ifdef IP_PKTINFO
686                 case IP_PKTINFO: {
687                     struct in_pktinfo *i = (struct in_pktinfo*) CMSG_DATA(cmsg);
688                     
689                     if (ret_iface)
690                         *ret_iface = (int) i->ipi_ifindex;
691                     
692                     if (ret_dst_address)
693                         ret_dst_address->address = i->ipi_addr.s_addr;
694                     
695                     found_addr = 1;
696
697                     break;
698                 }
699 #endif
700                     
701 #ifdef IP_RECVIF
702                 case IP_RECVIF: {
703                     struct sockaddr_dl *sdl = (struct sockaddr_dl *) CMSG_DATA (cmsg);
704                     
705                     if (ret_iface)
706                         *ret_iface = (int) sdl->sdl_index;
707
708                     break;
709                 }
710 #endif
711             
712 #ifdef IP_RECVDSTADDR
713                 case IP_RECVDSTADDR:
714                     if (ret_dst_address)
715                         memcpy(&ret_dst_address->address, CMSG_DATA (cmsg), 4);
716                     
717                     found_addr = 1;
718                     break;
719 #endif
720                     
721                 default:
722                     avahi_log_warn("Unhandled cmsg_type : %d", cmsg->cmsg_type);
723                     break;
724             }
725         }
726     }
727
728     assert(found_addr);
729
730     return p;
731
732 fail:
733     if (p)
734         avahi_dns_packet_free(p);
735
736     return NULL;
737 }
738
739 AvahiDnsPacket *avahi_recv_dns_packet_ipv6(int fd, AvahiIPv6Address *ret_src_address, uint16_t *ret_src_port, AvahiIPv6Address *ret_dst_address, AvahiIfIndex *ret_iface, uint8_t *ret_ttl) {
740     AvahiDnsPacket *p = NULL;
741     struct msghdr msg;
742     struct iovec io;
743     size_t aux[1024 / sizeof(size_t)];
744     ssize_t l;
745     int ms;
746     struct cmsghdr *cmsg;
747     int found_ttl = 0, found_iface = 0;
748     struct sockaddr_in6 sa;
749
750     assert(fd >= 0);
751
752     if (ioctl(fd, FIONREAD, &ms) < 0) {
753         avahi_log_warn("ioctl(): %s", strerror(errno));
754         goto fail;
755     }
756     
757     p = avahi_dns_packet_new(ms + AVAHI_DNS_PACKET_EXTRA_SIZE);
758
759     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
760     io.iov_len = p->max_size;
761     
762     memset(&msg, 0, sizeof(msg));
763     msg.msg_name = (struct sockaddr*) &sa;
764     msg.msg_namelen = sizeof(sa);
765     
766     msg.msg_iov = &io;
767     msg.msg_iovlen = 1;
768     msg.msg_control = aux;
769     msg.msg_controllen = sizeof(aux);
770     msg.msg_flags = 0;
771     
772     if ((l = recvmsg(fd, &msg, 0)) < 0) {
773         avahi_log_warn("recvmsg(): %s", strerror(errno));
774         goto fail;
775     }
776
777     assert(!(msg.msg_flags & MSG_CTRUNC));
778     assert(!(msg.msg_flags & MSG_TRUNC));
779  
780     p->size = (size_t) l;
781
782     if (ret_src_port)
783         *ret_src_port = avahi_port_from_sockaddr((struct sockaddr*) &sa);
784
785     if (ret_src_address) {
786         AvahiAddress a;
787         avahi_address_from_sockaddr((struct sockaddr*) &sa, &a);
788         *ret_src_address = a.data.ipv6;
789     }
790
791     for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
792
793         if (cmsg->cmsg_level == IPPROTO_IPV6) {
794
795             switch (cmsg->cmsg_type) {
796
797                 case IPV6_HOPLIMIT:
798
799                     if (ret_ttl)
800                         *ret_ttl = (uint8_t) (*(int *) CMSG_DATA(cmsg));
801
802                     found_ttl = 1;
803                     
804                     break;
805
806                 case IPV6_PKTINFO: {
807                     struct in6_pktinfo *i = (struct in6_pktinfo*) CMSG_DATA(cmsg);
808                     
809                     if (ret_iface)
810                         *ret_iface = i->ipi6_ifindex;
811                     
812                     if (ret_dst_address)
813                         memcpy(ret_dst_address->address, i->ipi6_addr.s6_addr, 16);
814
815                     found_iface = 1;
816                     break;
817                 }
818                     
819                 default:
820                     avahi_log_warn("Unhandled cmsg_type : %d", cmsg->cmsg_type);
821                     break;
822             }
823         }
824     }
825
826     assert(found_iface);
827     assert(found_ttl);
828
829     return p;
830
831 fail:
832     if (p)
833         avahi_dns_packet_free(p);
834
835     return NULL;
836 }
837
838 int avahi_open_unicast_socket_ipv4(void) {
839     struct sockaddr_in local;
840     int fd = -1;
841         
842     if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
843         avahi_log_warn("socket() failed: %s", strerror(errno));
844         goto fail;
845     }
846     
847     memset(&local, 0, sizeof(local));
848     local.sin_family = AF_INET;
849     
850     if (bind(fd, (struct sockaddr*) &local, sizeof(local)) < 0) {
851         avahi_log_warn("bind() failed: %s", strerror(errno));
852         goto fail;
853     }
854
855     if (ipv4_pktinfo(fd) < 0) {
856          goto fail;
857     }
858
859     if (avahi_set_cloexec(fd) < 0) {
860         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
861         goto fail;
862     }
863     
864     if (avahi_set_nonblock(fd) < 0) {
865         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
866         goto fail;
867     }
868
869     return fd;
870
871 fail:
872     if (fd >= 0)
873         close(fd);
874
875     return -1;
876 }
877
878 int avahi_open_unicast_socket_ipv6(void) {
879     struct sockaddr_in6 local;
880     int fd = -1;
881         
882     if ((fd = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
883         avahi_log_warn("socket() failed: %s", strerror(errno));
884         goto fail;
885     }
886     
887     memset(&local, 0, sizeof(local));
888     local.sin6_family = AF_INET6;
889     
890     if (bind(fd, (struct sockaddr*) &local, sizeof(local)) < 0) {
891         avahi_log_warn("bind() failed: %s", strerror(errno));
892         goto fail;
893     }
894
895     if (ipv6_pktinfo(fd) < 0)
896         goto fail;
897     
898     if (avahi_set_cloexec(fd) < 0) {
899         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
900         goto fail;
901     }
902     
903     if (avahi_set_nonblock(fd) < 0) {
904         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
905         goto fail;
906     }
907
908     return fd;
909
910 fail:
911     if (fd >= 0)
912         close(fd);
913
914     return -1;
915 }