Const correctness.
[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 "route.h"
30 #include "xalloc.h"
31
32 static const char *device_info = "multicast socket";
33
34 static struct addrinfo *ai = NULL;
35 static mac_t ignore_src = {{0}};
36
37 static bool setup_device(void) {
38         char *host = NULL;
39         char *port;
40         char *space;
41         int ttl = 1;
42
43         get_config_string(lookup_config(config_tree, "Interface"), &iface);
44
45         if(!get_config_string(lookup_config(config_tree, "Device"), &device)) {
46                 logger(DEBUG_ALWAYS, LOG_ERR, "Device variable required for %s", device_info);
47                 goto error;
48         }
49
50         host = xstrdup(device);
51         space = strchr(host, ' ');
52
53         if(!space) {
54                 logger(DEBUG_ALWAYS, LOG_ERR, "Port number required for %s", device_info);
55                 goto error;
56         }
57
58         *space++ = 0;
59         port = space;
60         space = strchr(port, ' ');
61
62         if(space) {
63                 *space++ = 0;
64                 ttl = atoi(space);
65         }
66
67         ai = str2addrinfo(host, port, SOCK_DGRAM);
68
69         if(!ai) {
70                 goto error;
71         }
72
73         device_fd = socket(ai->ai_family, SOCK_DGRAM, IPPROTO_UDP);
74
75         if(device_fd < 0) {
76                 logger(DEBUG_ALWAYS, LOG_ERR, "Creating socket failed: %s", sockstrerror(sockerrno));
77                 goto error;
78         }
79
80 #ifdef FD_CLOEXEC
81         fcntl(device_fd, F_SETFD, FD_CLOEXEC);
82 #endif
83
84         static const int one = 1;
85         setsockopt(device_fd, SOL_SOCKET, SO_REUSEADDR, (void *)&one, sizeof(one));
86
87         if(bind(device_fd, ai->ai_addr, ai->ai_addrlen)) {
88                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't bind to %s %s: %s", host, port, sockstrerror(sockerrno));
89                 goto error;
90         }
91
92         switch(ai->ai_family) {
93 #ifdef IP_ADD_MEMBERSHIP
94
95         case AF_INET: {
96                 struct ip_mreq mreq;
97                 struct sockaddr_in in;
98                 memcpy(&in, ai->ai_addr, sizeof(in));
99                 mreq.imr_multiaddr.s_addr = in.sin_addr.s_addr;
100                 mreq.imr_interface.s_addr = htonl(INADDR_ANY);
101
102                 if(setsockopt(device_fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (void *)&mreq, sizeof(mreq))) {
103                         logger(DEBUG_ALWAYS, LOG_ERR, "Cannot join multicast group %s %s: %s", host, port, sockstrerror(sockerrno));
104                         goto error;
105                 }
106
107 #ifdef IP_MULTICAST_LOOP
108                 setsockopt(device_fd, IPPROTO_IP, IP_MULTICAST_LOOP, (const void *)&one, sizeof(one));
109 #endif
110 #ifdef IP_MULTICAST_TTL
111                 setsockopt(device_fd, IPPROTO_IP, IP_MULTICAST_TTL, (void *)&ttl, sizeof(ttl));
112 #endif
113         }
114         break;
115 #endif
116
117 #ifdef IPV6_JOIN_GROUP
118
119         case AF_INET6: {
120                 struct ipv6_mreq mreq;
121                 struct sockaddr_in6 in6;
122                 memcpy(&in6, ai->ai_addr, sizeof(in6));
123                 memcpy(&mreq.ipv6mr_multiaddr, &in6.sin6_addr, sizeof(mreq.ipv6mr_multiaddr));
124                 mreq.ipv6mr_interface = in6.sin6_scope_id;
125
126                 if(setsockopt(device_fd, IPPROTO_IPV6, IPV6_JOIN_GROUP, (void *)&mreq, sizeof(mreq))) {
127                         logger(DEBUG_ALWAYS, LOG_ERR, "Cannot join multicast group %s %s: %s", host, port, sockstrerror(sockerrno));
128                         goto error;
129                 }
130
131 #ifdef IPV6_MULTICAST_LOOP
132                 setsockopt(device_fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, (const void *)&one, sizeof(one));
133 #endif
134 #ifdef IPV6_MULTICAST_HOPS
135                 setsockopt(device_fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (void *)&ttl, sizeof(ttl));
136 #endif
137         }
138         break;
139 #endif
140
141         default:
142                 logger(DEBUG_ALWAYS, LOG_ERR, "Multicast for address family %x unsupported", ai->ai_family);
143                 goto error;
144         }
145
146         logger(DEBUG_ALWAYS, LOG_INFO, "%s is a %s", device, device_info);
147
148         return true;
149
150 error:
151
152         if(device_fd >= 0) {
153                 closesocket(device_fd);
154         }
155
156         if(ai) {
157                 freeaddrinfo(ai);
158         }
159
160         free(host);
161
162         return false;
163 }
164
165 static void close_device(void) {
166         close(device_fd);
167         device_fd = -1;
168
169         free(device);
170         device = NULL;
171         free(iface);
172         iface = NULL;
173
174         if(ai) {
175                 freeaddrinfo(ai);
176                 ai = NULL;
177         }
178
179         device_info = NULL;
180 }
181
182 static bool read_packet(vpn_packet_t *packet) {
183         int lenin;
184
185         if((lenin = recv(device_fd, (void *)DATA(packet), MTU, 0)) <= 0) {
186                 logger(DEBUG_ALWAYS, LOG_ERR, "Error while reading from %s %s: %s", device_info,
187                        device, sockstrerror(sockerrno));
188                 return false;
189         }
190
191         if(!memcmp(&ignore_src, DATA(packet) + 6, sizeof(ignore_src))) {
192                 logger(DEBUG_SCARY_THINGS, LOG_DEBUG, "Ignoring loopback packet of %d bytes from %s", lenin, device_info);
193                 return false;
194         }
195
196         packet->len = lenin;
197
198         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Read packet of %d bytes from %s", packet->len,
199                device_info);
200
201         return true;
202 }
203
204 static bool write_packet(vpn_packet_t *packet) {
205         logger(DEBUG_TRAFFIC, LOG_DEBUG, "Writing packet of %d bytes to %s",
206                packet->len, device_info);
207
208         if(sendto(device_fd, (void *)DATA(packet), packet->len, 0, ai->ai_addr, ai->ai_addrlen) < 0) {
209                 logger(DEBUG_ALWAYS, LOG_ERR, "Can't write to %s %s: %s", device_info, device,
210                        sockstrerror(sockerrno));
211                 return false;
212         }
213
214         memcpy(&ignore_src, DATA(packet) + 6, sizeof(ignore_src));
215
216         return true;
217 }
218
219 const devops_t multicast_devops = {
220         .setup = setup_device,
221         .close = close_device,
222         .read = read_packet,
223         .write = write_packet,
224 };