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