2 * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
3 * Copyright (C) 2014 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License version 2.1
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <sys/socket.h>
16 #include <sys/ioctl.h>
17 #include <sys/types.h>
19 #include <sys/utsname.h>
21 #include <arpa/inet.h>
29 #include <libubox/usock.h>
30 #include <libubox/uloop.h>
31 #include <libubox/avl-cmp.h>
32 #include <libubox/utils.h>
33 #include "interface.h"
39 interface_send_packet(struct interface
*iface
, struct iovec
*iov
, int iov_len
)
41 static size_t cmsg_data
[( CMSG_SPACE(sizeof(struct in_pktinfo
)) / sizeof(size_t)) + 1];
42 static struct sockaddr_in a
;
43 static struct msghdr m
= {
44 .msg_name
= (struct sockaddr
*) &a
,
45 .msg_namelen
= sizeof(a
),
46 .msg_control
= cmsg_data
,
47 .msg_controllen
= CMSG_LEN(sizeof(struct in_pktinfo
)),
49 struct in_pktinfo
*pkti
;
51 int fd
= iface
->fd
.fd
;
53 a
.sin_family
= AF_INET
;
54 a
.sin_port
= htons(MCAST_PORT
);
56 m
.msg_iovlen
= iov_len
;
58 memset(cmsg_data
, 0, sizeof(cmsg_data
));
59 cmsg
= CMSG_FIRSTHDR(&m
);
60 cmsg
->cmsg_len
= m
.msg_controllen
;
61 cmsg
->cmsg_level
= IPPROTO_IP
;
62 cmsg
->cmsg_type
= IP_PKTINFO
;
64 pkti
= (struct in_pktinfo
*) CMSG_DATA(cmsg
);
65 pkti
->ipi_ifindex
= iface
->ifindex
;
67 a
.sin_addr
.s_addr
= inet_addr(MCAST_ADDR
);
69 return sendmsg(fd
, &m
, 0);
72 static void interface_close(struct interface
*iface
)
78 uloop_fd_delete(&iface
->fd
);
83 static void interface_free(struct interface
*iface
)
85 interface_close(iface
);
90 read_socket(struct uloop_fd
*u
, unsigned int events
)
92 struct interface
*iface
= container_of(u
, struct interface
, fd
);
93 static uint8_t buffer
[8 * 1024];
97 interface_close(iface
);
98 uloop_timeout_set(&iface
->reconnect
, 1000);
102 len
= read(u
->fd
, buffer
, sizeof(buffer
));
104 fprintf(stderr
, "read failed: %s\n", strerror(errno
));
108 dns_handle_packet(iface
, buffer
, len
);
112 interface_socket_setup(struct interface
*iface
)
114 struct ip_mreqn mreq
;
118 struct sockaddr_in sa
= { 0 };
119 int fd
= iface
->fd
.fd
;
121 sa
.sin_family
= AF_INET
;
122 sa
.sin_port
= htons(MCAST_PORT
);
123 inet_pton(AF_INET
, MCAST_ADDR
, &sa
.sin_addr
);
125 memset(&mreq
, 0, sizeof(mreq
));
126 mreq
.imr_address
.s_addr
= iface
->v4_addr
.s_addr
;
127 mreq
.imr_multiaddr
= sa
.sin_addr
;
128 mreq
.imr_ifindex
= iface
->ifindex
;
130 if (setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_TTL
, &ttl
, sizeof(ttl
)) < 0)
131 fprintf(stderr
, "ioctl failed: IP_MULTICAST_TTL\n");
133 if (setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, &yes
, sizeof(yes
)) < 0)
134 fprintf(stderr
, "ioctl failed: SO_REUSEADDR\n");
136 /* Some network drivers have issues with dropping membership of
137 * mcast groups when the iface is down, but don't allow rejoining
138 * when it comes back up. This is an ugly workaround
139 * -- this was copied from avahi --
141 setsockopt(fd
, IPPROTO_IP
, IP_DROP_MEMBERSHIP
, &mreq
, sizeof(mreq
));
143 if (setsockopt(fd
, IPPROTO_IP
, IP_ADD_MEMBERSHIP
, &mreq
, sizeof(mreq
)) < 0) {
144 fprintf(stderr
, "failed to join multicast group: %s\n", strerror(errno
));
150 if (setsockopt(fd
, IPPROTO_IP
, IP_RECVTTL
, &yes
, sizeof(yes
)) < 0)
151 fprintf(stderr
, "ioctl failed: IP_RECVTTL\n");
153 if (setsockopt(fd
, IPPROTO_IP
, IP_PKTINFO
, &yes
, sizeof(yes
)) < 0)
154 fprintf(stderr
, "ioctl failed: IP_PKTINFO\n");
156 if (setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_LOOP
, &no
, sizeof(no
)) < 0)
157 fprintf(stderr
, "ioctl failed: IP_MULTICAST_LOOP\n");
163 reconnect_socket(struct uloop_timeout
*timeout
)
165 struct interface
*iface
= container_of(timeout
, struct interface
, reconnect
);
167 iface
->fd
.fd
= usock(USOCK_UDP
| USOCK_SERVER
| USOCK_NONBLOCK
, MCAST_ADDR
, "5353");
168 if (iface
->fd
.fd
< 0) {
169 fprintf(stderr
, "failed to add listener: %s\n", strerror(errno
));
173 if (interface_socket_setup(iface
)) {
178 uloop_fd_add(&iface
->fd
, ULOOP_READ
);
179 dns_send_question(iface
, "_services._dns-sd._udp.local", TYPE_PTR
);
180 announce_init(iface
);
184 uloop_timeout_set(timeout
, 1000);
188 static void interface_start(struct interface
*iface
)
190 iface
->fd
.cb
= read_socket
;
191 iface
->reconnect
.cb
= reconnect_socket
;
192 uloop_timeout_set(&iface
->reconnect
, 100);
196 iface_update_cb(struct vlist_tree
*tree
, struct vlist_node
*node_new
,
197 struct vlist_node
*node_old
)
199 struct interface
*iface
;
202 iface
= container_of(node_old
, struct interface
, node
);
203 interface_free(iface
);
207 iface
= container_of(node_new
, struct interface
, node
);
208 interface_start(iface
);
213 get_iface_ipv4(struct interface
*iface
)
215 struct sockaddr_in
*sin
;
219 sock
= socket(AF_INET
, SOCK_DGRAM
, 0);
223 memset(&ir
, 0, sizeof(struct ifreq
));
224 strncpy(ir
.ifr_name
, iface
->name
, sizeof(ir
.ifr_name
));
226 ret
= ioctl(sock
, SIOCGIFADDR
, &ir
);
230 sin
= (struct sockaddr_in
*) &ir
.ifr_addr
;
231 memcpy(&iface
->v4_addr
, &sin
->sin_addr
, sizeof(iface
->v4_addr
));
238 int interface_add(const char *name
)
240 struct interface
*iface
;
243 iface
= calloc_a(sizeof(*iface
),
244 &name_buf
, strlen(name
) + 1);
246 iface
->name
= strcpy(name_buf
, name
);
247 iface
->ifindex
= if_nametoindex(name
);
250 if (iface
->ifindex
<= 0)
253 if (get_iface_ipv4(iface
))
256 vlist_add(&interfaces
, &iface
->node
, name
);
264 VLIST_TREE(interfaces
, avl_strcmp
, iface_update_cb
, false, false);