]> git.meshlink.io Git - catta/blob - avahi-core/socket.c
work around yet another bsd limitation: prefer IP_MULTICAST_IF over IP_SENDSRCADDR...
[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(
466         int fd,
467         AvahiIfIndex interface,
468         AvahiDnsPacket *p,
469         const AvahiIPv4Address *src_address,
470         const AvahiIPv4Address *dst_address,
471         uint16_t dst_port) {
472
473     struct sockaddr_in sa;
474     struct msghdr msg;
475     struct iovec io;
476 #ifdef IP_PKTINFO
477     struct cmsghdr *cmsg;
478     size_t cmsg_data[( CMSG_SPACE(sizeof(struct in_pktinfo)) / sizeof(size_t)) + 1];
479 #elif !defined(IP_MULTICAST_IF) && defined(IP_SENDSRCADDR)
480     struct cmsghdr *cmsg;
481     size_t cmsg_data[( CMSG_SPACE(sizeof(struct in_addr)) / sizeof(size_t)) + 1];
482 #endif
483
484     assert(fd >= 0);
485     assert(p);
486     assert(avahi_dns_packet_check_valid(p) >= 0);
487     assert(!dst_address || dst_port > 0);
488
489     if (!dst_address)
490         mdns_mcast_group_ipv4(&sa);
491     else
492         ipv4_address_to_sockaddr(&sa, dst_address, dst_port);
493
494     memset(&io, 0, sizeof(io));
495     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
496     io.iov_len = p->size;
497
498     memset(&msg, 0, sizeof(msg));
499     msg.msg_name = &sa;
500     msg.msg_namelen = sizeof(sa);
501     msg.msg_iov = &io;
502     msg.msg_iovlen = 1;
503     msg.msg_flags = 0;
504     msg.msg_control = NULL;
505     msg.msg_controllen = 0;
506
507 #ifdef IP_PKTINFO
508     if (interface > 0 || src_address) {
509         struct in_pktinfo *pkti;
510
511         memset(cmsg_data, 0, sizeof(cmsg_data));
512         msg.msg_control = cmsg_data;
513         msg.msg_controllen = CMSG_LEN(sizeof(struct in_pktinfo));
514
515         cmsg = CMSG_FIRSTHDR(&msg);
516         cmsg->cmsg_len = msg.msg_controllen;
517         cmsg->cmsg_level = IPPROTO_IP;
518         cmsg->cmsg_type = IP_PKTINFO;
519
520         pkti = (struct in_pktinfo*) CMSG_DATA(cmsg);
521
522         if (interface > 0)
523             pkti->ipi_ifindex = interface;
524
525         if (src_address)
526             pkti->ipi_spec_dst.s_addr = src_address->address;
527     }
528 #elif defined(IP_MULTICAST_IF)
529     if (src_address) {
530         struct in_addr any = { INADDR_ANY };
531         if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_IF, src_address ? &src_address->address : &any, sizeof(struct in_addr)) < 0) {
532             avahi_log_warn("IP_MULTICAST_IF failed: %s", strerror(errno));
533             return -1;
534         }
535     }
536 #elif defined(IP_SENDSRCADDR)
537     if (src_address) {
538         struct in_addr *addr;
539
540         memset(cmsg_data, 0, sizeof(cmsg_data));
541         msg.msg_control = cmsg_data;
542         msg.msg_controllen = CMSG_LEN(sizeof(struct in_addr));
543
544         cmsg = CMSG_FIRSTHDR(&msg);
545         cmsg->cmsg_len = msg.msg_controllen;
546         cmsg->cmsg_level = IPPROTO_IP;
547         cmsg->cmsg_type = IP_SENDSRCADDR;
548
549         addr = (struct in_addr *)CMSG_DATA(cmsg);
550         addr->s_addr =  src_address->address;
551     }
552 #elif defined(__GNUC__)
553 #warning "FIXME: We need some code to set the outgoing interface/local address here if IP_PKTINFO/IP_MULTICAST_IF is not available"
554 #endif
555
556     return sendmsg_loop(fd, &msg, 0);
557 }
558
559 int avahi_send_dns_packet_ipv6(
560         int fd,
561         AvahiIfIndex interface,
562         AvahiDnsPacket *p,
563         const AvahiIPv6Address *src_address,
564         const AvahiIPv6Address *dst_address,
565         uint16_t dst_port) {
566
567     struct sockaddr_in6 sa;
568     struct msghdr msg;
569     struct iovec io;
570     struct cmsghdr *cmsg;
571     size_t cmsg_data[(CMSG_SPACE(sizeof(struct in6_pktinfo))/sizeof(size_t)) + 1];
572
573     assert(fd >= 0);
574     assert(p);
575     assert(avahi_dns_packet_check_valid(p) >= 0);
576     assert(!dst_address || dst_port > 0);
577
578     if (!dst_address)
579         mdns_mcast_group_ipv6(&sa);
580     else
581         ipv6_address_to_sockaddr(&sa, dst_address, dst_port);
582
583     memset(&io, 0, sizeof(io));
584     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
585     io.iov_len = p->size;
586
587     memset(&msg, 0, sizeof(msg));
588     msg.msg_name = &sa;
589     msg.msg_namelen = sizeof(sa);
590     msg.msg_iov = &io;
591     msg.msg_iovlen = 1;
592     msg.msg_flags = 0;
593
594     if (interface > 0 || src_address) {
595         struct in6_pktinfo *pkti;
596
597         memset(cmsg_data, 0, sizeof(cmsg_data));
598         msg.msg_control = cmsg_data;
599         msg.msg_controllen = CMSG_LEN(sizeof(struct in6_pktinfo));
600
601         cmsg = CMSG_FIRSTHDR(&msg);
602         cmsg->cmsg_len = msg.msg_controllen;
603         cmsg->cmsg_level = IPPROTO_IPV6;
604         cmsg->cmsg_type = IPV6_PKTINFO;
605
606         pkti = (struct in6_pktinfo*) CMSG_DATA(cmsg);
607
608         if (interface > 0)
609             pkti->ipi6_ifindex = interface;
610
611         if (src_address)
612             memcpy(&pkti->ipi6_addr, src_address->address, sizeof(src_address->address));
613     } else {
614         msg.msg_control = NULL;
615         msg.msg_controllen = 0;
616     }
617
618     return sendmsg_loop(fd, &msg, 0);
619 }
620
621 AvahiDnsPacket *avahi_recv_dns_packet_ipv4(
622         int fd,
623         AvahiIPv4Address *ret_src_address,
624         uint16_t *ret_src_port,
625         AvahiIPv4Address *ret_dst_address,
626         AvahiIfIndex *ret_iface,
627         uint8_t *ret_ttl) {
628
629     AvahiDnsPacket *p= NULL;
630     struct msghdr msg;
631     struct iovec io;
632     size_t aux[1024 / sizeof(size_t)]; /* for alignment on ia64 ! */
633     ssize_t l;
634     struct cmsghdr *cmsg;
635     int found_addr = 0;
636     int ms;
637     struct sockaddr_in sa;
638
639     assert(fd >= 0);
640
641     if (ioctl(fd, FIONREAD, &ms) < 0) {
642         avahi_log_warn("ioctl(): %s", strerror(errno));
643         goto fail;
644     }
645
646     if (ms < 0) {
647         avahi_log_warn("FIONREAD returned negative value.");
648         goto fail;
649     }
650
651     p = avahi_dns_packet_new(ms + AVAHI_DNS_PACKET_EXTRA_SIZE);
652
653     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
654     io.iov_len = p->max_size;
655
656     memset(&msg, 0, sizeof(msg));
657     msg.msg_name = &sa;
658     msg.msg_namelen = sizeof(sa);
659     msg.msg_iov = &io;
660     msg.msg_iovlen = 1;
661     msg.msg_control = aux;
662     msg.msg_controllen = sizeof(aux);
663     msg.msg_flags = 0;
664
665     if ((l = recvmsg(fd, &msg, 0)) < 0) {
666         /* Linux returns EAGAIN when an invalid IP packet has been
667         received. We suppress warnings in this case because this might
668         create quite a bit of log traffic on machines with unstable
669         links. (See #60) */
670
671         if (errno != EAGAIN)
672             avahi_log_warn("recvmsg(): %s", strerror(errno));
673
674         goto fail;
675     }
676
677     if (sa.sin_addr.s_addr == INADDR_ANY) {
678         /* Linux 2.4 behaves very strangely sometimes! */
679         goto fail;
680     }
681
682     assert(!(msg.msg_flags & MSG_CTRUNC));
683     assert(!(msg.msg_flags & MSG_TRUNC));
684
685     p->size = (size_t) l;
686
687     if (ret_src_port)
688         *ret_src_port = avahi_port_from_sockaddr((struct sockaddr*) &sa);
689
690     if (ret_src_address) {
691         AvahiAddress a;
692         avahi_address_from_sockaddr((struct sockaddr*) &sa, &a);
693         *ret_src_address = a.data.ipv4;
694     }
695
696     if (ret_ttl)
697         *ret_ttl = 255;
698
699     if (ret_iface)
700         *ret_iface = AVAHI_IF_UNSPEC;
701
702     for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
703
704         if (cmsg->cmsg_level == IPPROTO_IP) {
705
706             switch (cmsg->cmsg_type) {
707 #ifdef IP_RECVTTL
708                 case IP_RECVTTL:
709 #endif
710                 case IP_TTL:
711                     if (ret_ttl)
712                         *ret_ttl = (uint8_t) (*(int *) CMSG_DATA(cmsg));
713
714                     break;
715
716 #ifdef IP_PKTINFO
717                 case IP_PKTINFO: {
718                     struct in_pktinfo *i = (struct in_pktinfo*) CMSG_DATA(cmsg);
719
720                     if (ret_iface)
721                         *ret_iface = (int) i->ipi_ifindex;
722
723                     if (ret_dst_address)
724                         ret_dst_address->address = i->ipi_addr.s_addr;
725
726                     found_addr = 1;
727
728                     break;
729                 }
730 #endif
731
732 #ifdef IP_RECVIF
733                 case IP_RECVIF: {
734                     struct sockaddr_dl *sdl = (struct sockaddr_dl *) CMSG_DATA (cmsg);
735
736                     if (ret_iface)
737 #ifdef __sun
738                         *ret_iface = *(uint_t*) sdl;
739 #else
740                         *ret_iface = (int) sdl->sdl_index;
741 #endif
742
743                     break;
744                 }
745 #endif
746
747 #ifdef IP_RECVDSTADDR
748                 case IP_RECVDSTADDR:
749                     if (ret_dst_address)
750                         memcpy(&ret_dst_address->address, CMSG_DATA (cmsg), 4);
751
752                     found_addr = 1;
753                     break;
754 #endif
755
756                 default:
757                     avahi_log_warn("Unhandled cmsg_type : %d", cmsg->cmsg_type);
758                     break;
759             }
760         }
761     }
762
763     assert(found_addr);
764
765     return p;
766
767 fail:
768     if (p)
769         avahi_dns_packet_free(p);
770
771     return NULL;
772 }
773
774 AvahiDnsPacket *avahi_recv_dns_packet_ipv6(
775         int fd,
776         AvahiIPv6Address *ret_src_address,
777         uint16_t *ret_src_port,
778         AvahiIPv6Address *ret_dst_address,
779         AvahiIfIndex *ret_iface,
780         uint8_t *ret_ttl) {
781
782     AvahiDnsPacket *p = NULL;
783     struct msghdr msg;
784     struct iovec io;
785     size_t aux[1024 / sizeof(size_t)];
786     ssize_t l;
787     int ms;
788     struct cmsghdr *cmsg;
789     int found_ttl = 0, found_iface = 0;
790     struct sockaddr_in6 sa;
791
792     assert(fd >= 0);
793
794     if (ioctl(fd, FIONREAD, &ms) < 0) {
795         avahi_log_warn("ioctl(): %s", strerror(errno));
796         goto fail;
797     }
798
799     if (ms < 0) {
800         avahi_log_warn("FIONREAD returned negative value.");
801         goto fail;
802     }
803
804     p = avahi_dns_packet_new(ms + AVAHI_DNS_PACKET_EXTRA_SIZE);
805
806     io.iov_base = AVAHI_DNS_PACKET_DATA(p);
807     io.iov_len = p->max_size;
808
809     memset(&msg, 0, sizeof(msg));
810     msg.msg_name = (struct sockaddr*) &sa;
811     msg.msg_namelen = sizeof(sa);
812
813     msg.msg_iov = &io;
814     msg.msg_iovlen = 1;
815     msg.msg_control = aux;
816     msg.msg_controllen = sizeof(aux);
817     msg.msg_flags = 0;
818
819     if ((l = recvmsg(fd, &msg, 0)) < 0) {
820         /* Linux returns EAGAIN when an invalid IP packet has been
821         received. We suppress warnings in this case because this might
822         create quite a bit of log traffic on machines with unstable
823         links. (See #60) */
824
825         if (errno != EAGAIN)
826             avahi_log_warn("recvmsg(): %s", strerror(errno));
827
828         goto fail;
829     }
830
831     assert(!(msg.msg_flags & MSG_CTRUNC));
832     assert(!(msg.msg_flags & MSG_TRUNC));
833
834     p->size = (size_t) l;
835
836     if (ret_src_port)
837         *ret_src_port = avahi_port_from_sockaddr((struct sockaddr*) &sa);
838
839     if (ret_src_address) {
840         AvahiAddress a;
841         avahi_address_from_sockaddr((struct sockaddr*) &sa, &a);
842         *ret_src_address = a.data.ipv6;
843     }
844
845     for (cmsg = CMSG_FIRSTHDR(&msg); cmsg != NULL; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
846
847         if (cmsg->cmsg_level == IPPROTO_IPV6) {
848
849             switch (cmsg->cmsg_type) {
850
851                 case IPV6_HOPLIMIT:
852
853                     if (ret_ttl)
854                         *ret_ttl = (uint8_t) (*(int *) CMSG_DATA(cmsg));
855
856                     found_ttl = 1;
857
858                     break;
859
860                 case IPV6_PKTINFO: {
861                     struct in6_pktinfo *i = (struct in6_pktinfo*) CMSG_DATA(cmsg);
862
863                     if (ret_iface)
864                         *ret_iface = i->ipi6_ifindex;
865
866                     if (ret_dst_address)
867                         memcpy(ret_dst_address->address, i->ipi6_addr.s6_addr, 16);
868
869                     found_iface = 1;
870                     break;
871                 }
872
873                 default:
874                     avahi_log_warn("Unhandled cmsg_type : %d", cmsg->cmsg_type);
875                     break;
876             }
877         }
878     }
879
880     assert(found_iface);
881     assert(found_ttl);
882
883     return p;
884
885 fail:
886     if (p)
887         avahi_dns_packet_free(p);
888
889     return NULL;
890 }
891
892 int avahi_open_unicast_socket_ipv4(void) {
893     struct sockaddr_in local;
894     int fd = -1;
895
896     if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
897         avahi_log_warn("socket() failed: %s", strerror(errno));
898         goto fail;
899     }
900
901     memset(&local, 0, sizeof(local));
902     local.sin_family = AF_INET;
903
904     if (bind(fd, (struct sockaddr*) &local, sizeof(local)) < 0) {
905         avahi_log_warn("bind() failed: %s", strerror(errno));
906         goto fail;
907     }
908
909     if (ipv4_pktinfo(fd) < 0) {
910          goto fail;
911     }
912
913     if (avahi_set_cloexec(fd) < 0) {
914         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
915         goto fail;
916     }
917
918     if (avahi_set_nonblock(fd) < 0) {
919         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
920         goto fail;
921     }
922
923     return fd;
924
925 fail:
926     if (fd >= 0)
927         close(fd);
928
929     return -1;
930 }
931
932 int avahi_open_unicast_socket_ipv6(void) {
933     struct sockaddr_in6 local;
934     int fd = -1, yes;
935
936     if ((fd = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
937         avahi_log_warn("socket() failed: %s", strerror(errno));
938         goto fail;
939     }
940
941     yes = 1;
942     if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &yes, sizeof(yes)) < 0) {
943         avahi_log_warn("IPV6_V6ONLY failed: %s", strerror(errno));
944         goto fail;
945     }
946
947     memset(&local, 0, sizeof(local));
948     local.sin6_family = AF_INET6;
949
950     if (bind(fd, (struct sockaddr*) &local, sizeof(local)) < 0) {
951         avahi_log_warn("bind() failed: %s", strerror(errno));
952         goto fail;
953     }
954
955     if (ipv6_pktinfo(fd) < 0)
956         goto fail;
957
958     if (avahi_set_cloexec(fd) < 0) {
959         avahi_log_warn("FD_CLOEXEC failed: %s", strerror(errno));
960         goto fail;
961     }
962
963     if (avahi_set_nonblock(fd) < 0) {
964         avahi_log_warn("O_NONBLOCK failed: %s", strerror(errno));
965         goto fail;
966     }
967
968     return fd;
969
970 fail:
971     if (fd >= 0)
972         close(fd);
973
974     return -1;
975 }