Enable and fix many extra warnings supported by GCC and Clang.
[tinc] / src / multicast_device.c
1 /*
2     device.c -- multicast socket
3     Copyright (C) 2002-2005 Ivo Timmermans,
4                   2002-2013 Guus Sliepen <guus@tinc-vpn.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "system.h"
22
23 #include "conf.h"
24 #include "device.h"
25 #include "net.h"
26 #include "logger.h"
27 #include "netutl.h"
28 #include "utils.h"
29 #include "xalloc.h"
30
31 static const char *device_info = "multicast socket";
32
33 static struct addrinfo *ai = NULL;
34 static mac_t ignore_src = {0};
35
36 static bool setup_device(void) {
37         char *host = NULL;
38         char *port;
39         char *space;
40         int ttl = 1;
41
42         get_config_string(lookup_config(&config_tree, "Interface"), &iface);
43
44         if(!get_config_string(lookup_config(&config_tree, "Device"), &device)) {
45                 logger(DEBUG_ALWAYS, LOG_ERR, "Device variable required for %s", device_info);
46                 goto error;
47         }
48
49         host = xstrdup(device);
50         space = strchr(host, ' ');
51
52         if(!space) {
53                 logger(DEBUG_ALWAYS, LOG_ERR, "Port number required for %s", device_info);
54                 goto error;
55         }
56
57         *space++ = 0;
58         port = space;
59         space = strchr(port, ' ');
60
61         if(space) {
62                 *space++ = 0;
63                 ttl = atoi(space);
64         }
65
66         ai = str2addrinfo(host, port, SOCK_DGRAM);
67
68         if(!ai) {
69                 goto error;
70         }
71
72         device_fd = socket(ai->ai_family, SOCK_DGRAM, IPPROTO_UDP);
73
74         if(device_fd < 0) {
75                 logger(DEBUG_ALWAYS, LOG_ERR, "Creating socket failed: %s", sockstrerror(sockerrno));
76                 goto error;
77         }
78
79 #ifdef FD_CLOEXEC
80         fcntl(device_fd, F_SETFD, FD_CLOEXEC);
81 #endif
82
83         static const int one = 1;
84         setsockopt(device_fd, SOL_SOCKET, SO_REUSEADDR, (void *)&one, sizeof(one));
85
86         if(bind(device_fd, ai->ai_addr, ai->ai_addrlen)) {
87                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't bind to %s %s: %s", host, port, sockstrerror(sockerrno));
88                 goto error;
89         }
90
91         switch(ai->ai_family) {
92 #ifdef IP_ADD_MEMBERSHIP
93
94         case AF_INET: {
95                 struct ip_mreq mreq;
96                 struct sockaddr_in in;
97                 memcpy(&in, ai->ai_addr, sizeof(in));
98                 mreq.imr_multiaddr.s_addr = in.sin_addr.s_addr;
99                 mreq.imr_interface.s_addr = htonl(INADDR_ANY);
100
101                 if(setsockopt(device_fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (void *)&mreq, sizeof(mreq))) {
102                         logger(DEBUG_ALWAYS, LOG_ERR, "Cannot join multicast group %s %s: %s", host, port, sockstrerror(sockerrno));
103                         goto error;
104                 }
105
106 #ifdef IP_MULTICAST_LOOP
107                 setsockopt(device_fd, IPPROTO_IP, IP_MULTICAST_LOOP, (const void *)&one, sizeof(one));
108 #endif
109 #ifdef IP_MULTICAST_TTL
110                 setsockopt(device_fd, IPPROTO_IP, IP_MULTICAST_TTL, (void *)&ttl, sizeof(ttl));
111 #endif
112         }
113         break;
114 #endif
115
116 #ifdef IPV6_JOIN_GROUP
117
118         case AF_INET6: {
119                 struct ipv6_mreq mreq;
120                 struct sockaddr_in6 in6;
121                 memcpy(&in6, ai->ai_addr, sizeof(in6));
122                 memcpy(&mreq.ipv6mr_multiaddr, &in6.sin6_addr, sizeof(mreq.ipv6mr_multiaddr));
123                 mreq.ipv6mr_interface = in6.sin6_scope_id;
124
125                 if(setsockopt(device_fd, IPPROTO_IPV6, IPV6_JOIN_GROUP, (void *)&mreq, sizeof(mreq))) {
126                         logger(DEBUG_ALWAYS, LOG_ERR, "Cannot join multicast group %s %s: %s", host, port, sockstrerror(sockerrno));
127                         goto error;
128                 }
129
130 #ifdef IPV6_MULTICAST_LOOP
131                 setsockopt(device_fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, (const void *)&one, sizeof(one));
132 #endif
133 #ifdef IPV6_MULTICAST_HOPS
134                 setsockopt(device_fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (void *)&ttl, sizeof(ttl));
135 #endif
136         }
137         break;
138 #endif
139
140         default:
141                 logger(DEBUG_ALWAYS, LOG_ERR, "Multicast for address family %x unsupported", ai->ai_family);
142                 goto error;
143         }
144
145         logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
146
147         return true;
148
149 error:
150
151         if(device_fd >= 0) {
152                 closesocket(device_fd);
153         }
154
155         if(ai) {
156                 freeaddrinfo(ai);
157         }
158
159         free(host);
160
161         return false;
162 }
163
164 static void close_device(void) {
165         close(device_fd);
166         device_fd = -1;
167
168         free(device);
169         device = NULL;
170         free(iface);
171         iface = NULL;
172
173         if(ai) {
174                 freeaddrinfo(ai);
175                 ai = NULL;
176         }
177
178         device_info = NULL;
179 }
180
181 static bool read_packet(vpn_packet_t *packet) {
182         ssize_t lenin;
183
184         if((lenin = recv(device_fd, (void *)DATA(packet), MTU, 0)) <= 0) {
185                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
186                        device, sockstrerror(sockerrno));
187                 return false;
188         }
189
190         if(!memcmp(&ignore_src, DATA(packet) + 6, sizeof(ignore_src))) {
191                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Ignoring loopback packet of %ld bytes from %s", (long)lenin, device_info);
192                 return false;
193         }
194
195         packet->len = lenin;
196
197         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
198                device_info);
199
200         return true;
201 }
202
203 static bool write_packet(vpn_packet_t *packet) {
204         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
205                packet->len, device_info);
206
207         if(sendto(device_fd, (void *)DATA(packet), packet->len, 0, ai->ai_addr, ai->ai_addrlen) < 0) {
208                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
209                        sockstrerror(sockerrno));
210                 return false;
211         }
212
213         memcpy(&ignore_src, DATA(packet) + 6, sizeof(ignore_src));
214
215         return true;
216 }
217
218 const devops_t multicast_devops = {
219         .setup = setup_device,
220         .close = close_device,
221         .read = read_packet,
222         .write = write_packet,
223 };