blob: 8dddc9623af31d43ada6f68b03d8cb2d96387f9b [file] [log] [blame]
Daniel Drowna45056e2012-03-23 10:42:54 -05001/*
2 * Copyright 2012 Daniel Drown
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * clatd.c - tun interface setup and main event loop
17 */
18#include <poll.h>
19#include <signal.h>
20#include <time.h>
21#include <stdio.h>
22#include <sys/types.h>
23#include <sys/ioctl.h>
24#include <sys/stat.h>
25#include <string.h>
26#include <errno.h>
27#include <stdlib.h>
28#include <unistd.h>
29#include <arpa/inet.h>
30#include <fcntl.h>
31
32#include <netinet/in.h>
33#include <netinet/ip.h>
34#include <netinet/ip_icmp.h>
35#include <netinet/udp.h>
36#include <netinet/tcp.h>
37#include <netinet/ip6.h>
38#include <netinet/icmp6.h>
39#include <linux/icmp.h>
40
Nick Kralevich2edb7562013-02-28 14:15:22 -080041#include <sys/capability.h>
Lorenzo Colittid9084182013-03-22 00:42:21 +090042#include <sys/uio.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050043#include <linux/prctl.h>
44#include <linux/if.h>
45#include <linux/if_tun.h>
46#include <linux/if_ether.h>
47
48#include <private/android_filesystem_config.h>
49
50#include "ipv4.h"
51#include "ipv6.h"
Lorenzo Colittid9084182013-03-22 00:42:21 +090052#include "translate.h"
Daniel Drowna45056e2012-03-23 10:42:54 -050053#include "clatd.h"
54#include "config.h"
55#include "logging.h"
56#include "setif.h"
57#include "setroute.h"
58#include "mtu.h"
59#include "getaddr.h"
60#include "dump.h"
61
62#define DEVICENAME6 "clat"
63#define DEVICENAME4 "clat4"
64
65int forwarding_fd = -1;
66volatile sig_atomic_t running = 1;
67
68struct tun_data {
69 char device6[IFNAMSIZ], device4[IFNAMSIZ];
70 int fd6, fd4;
71};
72
73/* function: set_forwarding
74 * enables/disables ipv6 forwarding
75 */
76void set_forwarding(int fd, const char *setting) {
77 /* we have to forward packets from the WAN to the tun interface */
78 if(write(fd, setting, strlen(setting)) < 0) {
79 logmsg(ANDROID_LOG_FATAL,"set_forwarding(%s) failed: %s", setting, strerror(errno));
80 exit(1);
81 }
82}
83
Lorenzo Colittibaf62992013-03-01 20:29:39 +090084/* function: stop_loop
85 * signal handler: stop the event loop
Daniel Drowna45056e2012-03-23 10:42:54 -050086 */
Lorenzo Colittibaf62992013-03-01 20:29:39 +090087void stop_loop(int signal) {
Daniel Drowna45056e2012-03-23 10:42:54 -050088 running = 0;
89}
90
91/* function: tun_open
92 * tries to open the tunnel device
93 */
94int tun_open() {
95 int fd;
96
97 fd = open("/dev/tun", O_RDWR);
98 if(fd < 0) {
99 fd = open("/dev/net/tun", O_RDWR);
100 }
101
102 return fd;
103}
104
105/* function: tun_alloc
106 * creates a tun interface and names it
107 * dev - the name for the new tun device
108 */
109int tun_alloc(char *dev, int fd) {
110 struct ifreq ifr;
111 int err;
112
113 memset(&ifr, 0, sizeof(ifr));
114
115 ifr.ifr_flags = IFF_TUN;
116 if( *dev ) {
117 strncpy(ifr.ifr_name, dev, IFNAMSIZ);
118 ifr.ifr_name[IFNAMSIZ-1] = '\0';
119 }
120
121 if( (err = ioctl(fd, TUNSETIFF, (void *) &ifr)) < 0 ){
122 close(fd);
123 return err;
124 }
125 strcpy(dev, ifr.ifr_name);
126 return 0;
127}
128
129/* function: deconfigure_tun_ipv6
130 * removes the ipv6 route
131 * tunnel - tun device data
132 */
133void deconfigure_tun_ipv6(const struct tun_data *tunnel) {
134 int status;
135
136 status = if_route(tunnel->device6, AF_INET6, &Global_Clatd_Config.ipv6_local_subnet,
137 128, NULL, 1, 0, ROUTE_DELETE);
138 if(status < 0) {
139 logmsg(ANDROID_LOG_WARN,"deconfigure_tun_ipv6/if_route(6) failed: %s",strerror(-status));
140 }
141}
142
143/* function: configure_tun_ipv6
144 * configures the ipv6 route
145 * note: routes a /128 out of the (assumed routed to us) /64 to the CLAT interface
146 * tunnel - tun device data
147 */
148void configure_tun_ipv6(const struct tun_data *tunnel) {
149 struct in6_addr local_nat64_prefix_6;
150 int status;
151
152 status = if_route(tunnel->device6, AF_INET6, &Global_Clatd_Config.ipv6_local_subnet,
153 128, NULL, 1, 0, ROUTE_CREATE);
154 if(status < 0) {
155 logmsg(ANDROID_LOG_FATAL,"configure_tun_ipv6/if_route(6) failed: %s",strerror(-status));
156 exit(1);
157 }
158}
159
160/* function: interface_poll
161 * polls the uplink network interface for address changes
162 * tunnel - tun device data
163 */
164void interface_poll(const struct tun_data *tunnel) {
165 union anyip *interface_ip;
166
167 interface_ip = getinterface_ip(Global_Clatd_Config.default_pdp_interface, AF_INET6);
168 if(!interface_ip) {
169 logmsg(ANDROID_LOG_WARN,"unable to find an ipv6 ip on interface %s",Global_Clatd_Config.default_pdp_interface);
170 return;
171 }
172
173 config_generate_local_ipv6_subnet(&interface_ip->ip6);
174
175 if(!IN6_ARE_ADDR_EQUAL(&interface_ip->ip6, &Global_Clatd_Config.ipv6_local_subnet)) {
176 char from_addr[INET6_ADDRSTRLEN], to_addr[INET6_ADDRSTRLEN];
177 inet_ntop(AF_INET6, &Global_Clatd_Config.ipv6_local_subnet, from_addr, sizeof(from_addr));
178 inet_ntop(AF_INET6, &interface_ip->ip6, to_addr, sizeof(to_addr));
179 logmsg(ANDROID_LOG_WARN, "clat subnet changed from %s to %s", from_addr, to_addr);
180
181 // remove old route
182 deconfigure_tun_ipv6(tunnel);
183
184 // add new route, start translating packets to the new prefix
185 memcpy(&Global_Clatd_Config.ipv6_local_subnet, &interface_ip->ip6, sizeof(struct in6_addr));
186 configure_tun_ipv6(tunnel);
187 }
188
189 free(interface_ip);
190}
191
192/* function: configure_tun_ip
193 * configures the ipv4 and ipv6 addresses on the tunnel interface
194 * tunnel - tun device data
195 */
196void configure_tun_ip(const struct tun_data *tunnel) {
Daniel Drowna45056e2012-03-23 10:42:54 -0500197 int status;
198
Lorenzo Colitti3ca03022013-03-27 12:39:10 +0900199 // Configure the interface before bringing it up. As soon as we bring the interface up, the
200 // framework will be notified and will assume the interface's configuration has been finalized.
201 status = add_address(tunnel->device4, AF_INET, &Global_Clatd_Config.ipv4_local_subnet,
202 32, &Global_Clatd_Config.ipv4_local_subnet);
203 if(status < 0) {
204 logmsg(ANDROID_LOG_FATAL,"configure_tun_ip/if_address(4) failed: %s",strerror(-status));
205 exit(1);
206 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500207
208 if((status = if_up(tunnel->device6, Global_Clatd_Config.mtu)) < 0) {
209 logmsg(ANDROID_LOG_FATAL,"configure_tun_ip/if_up(6) failed: %s",strerror(-status));
210 exit(1);
211 }
Lorenzo Colitti3ca03022013-03-27 12:39:10 +0900212
Daniel Drowna45056e2012-03-23 10:42:54 -0500213 if((status = if_up(tunnel->device4, Global_Clatd_Config.ipv4mtu)) < 0) {
214 logmsg(ANDROID_LOG_FATAL,"configure_tun_ip/if_up(4) failed: %s",strerror(-status));
215 exit(1);
216 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500217
218 configure_tun_ipv6(tunnel);
Daniel Drowna45056e2012-03-23 10:42:54 -0500219}
220
221/* function: drop_root
222 * drops root privs but keeps the needed capability
223 */
224void drop_root() {
225 gid_t groups[] = { AID_INET };
226 if(setgroups(sizeof(groups)/sizeof(groups[0]), groups) < 0) {
227 logmsg(ANDROID_LOG_FATAL,"drop_root/setgroups failed: %s",strerror(errno));
228 exit(1);
229 }
230
231 prctl(PR_SET_KEEPCAPS, 1, 0, 0, 0);
232
233 if(setgid(AID_CLAT) < 0) {
234 logmsg(ANDROID_LOG_FATAL,"drop_root/setgid failed: %s",strerror(errno));
235 exit(1);
236 }
237 if(setuid(AID_CLAT) < 0) {
238 logmsg(ANDROID_LOG_FATAL,"drop_root/setuid failed: %s",strerror(errno));
239 exit(1);
240 }
241
242 struct __user_cap_header_struct header;
243 struct __user_cap_data_struct cap;
244 memset(&header, 0, sizeof(header));
245 memset(&cap, 0, sizeof(cap));
246
247 header.version = _LINUX_CAPABILITY_VERSION;
248 header.pid = 0; // 0 = change myself
249 cap.effective = cap.permitted = (1 << CAP_NET_ADMIN);
250
251 if(capset(&header, &cap) < 0) {
252 logmsg(ANDROID_LOG_FATAL,"drop_root/capset failed: %s",strerror(errno));
253 exit(1);
254 }
255}
256
257/* function: configure_interface
258 * reads the configuration and applies it to the interface
259 * uplink_interface - network interface to use to reach the ipv6 internet
260 * plat_prefix - PLAT prefix to use
261 * tunnel - tun device data
262 */
263void configure_interface(const char *uplink_interface, const char *plat_prefix, struct tun_data *tunnel) {
264 int error;
265
266 if(!read_config("/system/etc/clatd.conf", uplink_interface, plat_prefix)) {
267 logmsg(ANDROID_LOG_FATAL,"read_config failed");
268 exit(1);
269 }
270
271 if(Global_Clatd_Config.mtu > MAXMTU) {
272 logmsg(ANDROID_LOG_WARN,"Max MTU is %d, requested %d", MAXMTU, Global_Clatd_Config.mtu);
273 Global_Clatd_Config.mtu = MAXMTU;
274 }
275 if(Global_Clatd_Config.mtu <= 0) {
276 Global_Clatd_Config.mtu = getifmtu(Global_Clatd_Config.default_pdp_interface);
277 logmsg(ANDROID_LOG_WARN,"ifmtu=%d",Global_Clatd_Config.mtu);
278 }
279 if(Global_Clatd_Config.mtu < 1280) {
280 logmsg(ANDROID_LOG_WARN,"mtu too small = %d", Global_Clatd_Config.mtu);
281 Global_Clatd_Config.mtu = 1280;
282 }
283
284 if(Global_Clatd_Config.ipv4mtu <= 0 || (Global_Clatd_Config.ipv4mtu > Global_Clatd_Config.mtu - 20)) {
285 Global_Clatd_Config.ipv4mtu = Global_Clatd_Config.mtu-20;
286 logmsg(ANDROID_LOG_WARN,"ipv4mtu now set to = %d",Global_Clatd_Config.ipv4mtu);
287 }
288
289 error = tun_alloc(tunnel->device6, tunnel->fd6);
290 if(error < 0) {
291 logmsg(ANDROID_LOG_FATAL,"tun_alloc failed: %s",strerror(errno));
292 exit(1);
293 }
294
295 error = tun_alloc(tunnel->device4, tunnel->fd4);
296 if(error < 0) {
297 logmsg(ANDROID_LOG_FATAL,"tun_alloc/4 failed: %s",strerror(errno));
298 exit(1);
299 }
300
301 configure_tun_ip(tunnel);
302}
303
304/* function: packet_handler
305 * takes a tun header and a packet and sends it down the stack
306 * tunnel - tun device data
307 * tun_header - tun header
308 * packet - packet
309 * packetsize - size of packet
310 */
Lorenzo Colittid9084182013-03-22 00:42:21 +0900311void packet_handler(const struct tun_data *tunnel, struct tun_pi *tun_header, const char *packet,
312 size_t packetsize) {
313 int fd;
314 int iov_len = 0;
315
316 // Allocate buffers for all packet headers.
317 struct tun_pi tun_targ;
318 char iphdr[sizeof(struct ip6_hdr)];
319 char transporthdr[MAX_TCP_HDR];
320
321 // iovec of the packets we'll send. This gets passed down to the translation functions.
322 clat_packet out = {
323 { &tun_targ, sizeof(tun_targ) }, // Tunnel header.
324 { iphdr, 0 }, // IP header.
325 { transporthdr, 0 }, // Transport layer header.
326 { NULL, 0 }, // Payload. No buffer, it's a pointer to the original payload.
327 };
Daniel Drowna45056e2012-03-23 10:42:54 -0500328
329 if(tun_header->flags != 0) {
330 logmsg(ANDROID_LOG_WARN,"packet_handler: unexpected flags = %d", tun_header->flags);
331 }
332
Lorenzo Colittid9084182013-03-22 00:42:21 +0900333 if(ntohs(tun_header->proto) == ETH_P_IP) {
334 fd = tunnel->fd6;
335 fill_tun_header(&tun_targ, ETH_P_IPV6);
336 iov_len = ipv4_packet(out, POS_IPHDR, packet, packetsize);
337 } else if(ntohs(tun_header->proto) == ETH_P_IPV6) {
338 fd = tunnel->fd4;
339 fill_tun_header(&tun_targ, ETH_P_IP);
340 iov_len = ipv6_packet(out, POS_IPHDR, packet, packetsize);
Daniel Drowna45056e2012-03-23 10:42:54 -0500341 } else {
342 logmsg(ANDROID_LOG_WARN,"packet_handler: unknown packet type = %x",tun_header->proto);
343 }
Lorenzo Colittid9084182013-03-22 00:42:21 +0900344
345 if (iov_len > 0) {
346 writev(fd, out, iov_len);
347 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500348}
349
350/* function: read_packet
351 * reads a packet from the tunnel fd and passes it down the stack
352 * active_fd - tun file descriptor marked ready for reading
353 * tunnel - tun device data
354 */
355void read_packet(int active_fd, const struct tun_data *tunnel) {
356 ssize_t readlen;
357 char packet[PACKETLEN];
358
359 // in case something ignores the packet length
360 memset(packet, 0, PACKETLEN);
361
362 readlen = read(active_fd,packet,PACKETLEN);
363
364 if(readlen < 0) {
365 logmsg(ANDROID_LOG_WARN,"read_packet/read error: %s", strerror(errno));
366 return;
367 } else if(readlen == 0) {
368 logmsg(ANDROID_LOG_WARN,"read_packet/tun interface removed");
369 running = 0;
370 } else {
371 struct tun_pi tun_header;
372 ssize_t header_size = sizeof(struct tun_pi);
373
374 if(readlen < header_size) {
375 logmsg(ANDROID_LOG_WARN,"read_packet/short read: got %ld bytes", readlen);
376 return;
377 }
378
Lorenzo Colittid9084182013-03-22 00:42:21 +0900379 packet_handler(tunnel, (struct tun_pi *) packet, packet + header_size, readlen - header_size);
Daniel Drowna45056e2012-03-23 10:42:54 -0500380 }
381}
382
383/* function: event_loop
384 * reads packets from the tun network interface and passes them down the stack
385 * tunnel - tun device data
386 */
387void event_loop(const struct tun_data *tunnel) {
388 time_t last_interface_poll;
389 struct pollfd wait_fd[2];
390
391 // start the poll timer
392 last_interface_poll = time(NULL);
393
394 wait_fd[0].fd = tunnel->fd6;
395 wait_fd[0].events = POLLIN;
396 wait_fd[0].revents = 0;
397 wait_fd[1].fd = tunnel->fd4;
398 wait_fd[1].events = POLLIN;
399 wait_fd[1].revents = 0;
400
401 while(running) {
402 if(poll(wait_fd, 2, NO_TRAFFIC_INTERFACE_POLL_FREQUENCY*1000) == -1) {
403 if(errno != EINTR) {
404 logmsg(ANDROID_LOG_WARN,"event_loop/poll returned an error: %s",strerror(errno));
405 }
406 } else {
407 int i;
408 for(i = 0; i < 2; i++) {
409 if((wait_fd[i].revents & POLLIN) != 0) {
410 read_packet(wait_fd[i].fd,tunnel);
411 }
412 }
413 }
414
415 time_t now = time(NULL);
416 if(last_interface_poll < (now - INTERFACE_POLL_FREQUENCY)) {
417 interface_poll(tunnel);
418 last_interface_poll = now;
419 }
420 }
421}
422
423/* function: print_help
424 * in case the user is running this on the command line
425 */
426void print_help() {
427 printf("android-clat arguments:\n");
428 printf("-i [uplink interface]\n");
429 printf("-p [plat prefix]\n");
430}
431
432/* function: main
433 * allocate and setup the tun device, then run the event loop
434 */
435int main(int argc, char **argv) {
436 struct tun_data tunnel;
437 int opt;
438 char *uplink_interface = NULL, *plat_prefix = NULL;
439
440 strcpy(tunnel.device6, DEVICENAME6);
441 strcpy(tunnel.device4, DEVICENAME4);
442
443 while((opt = getopt(argc, argv, "i:p:h")) != -1) {
444 switch(opt) {
445 case 'i':
446 uplink_interface = optarg;
447 break;
448 case 'p':
449 plat_prefix = optarg;
450 break;
451 case 'h':
452 default:
453 print_help();
454 exit(1);
455 break;
456 }
457 }
458
459 if(uplink_interface == NULL) {
Lorenzo Colittid9084182013-03-22 00:42:21 +0900460 logmsg(ANDROID_LOG_FATAL, "clatd called without an interface");
Daniel Drowna45056e2012-03-23 10:42:54 -0500461 printf("I need an interface\n");
462 exit(1);
463 }
Lorenzo Colittid9084182013-03-22 00:42:21 +0900464 logmsg(ANDROID_LOG_INFO, "Starting clat version %s on %s", CLATD_VERSION, uplink_interface);
Daniel Drowna45056e2012-03-23 10:42:54 -0500465
466 // open the tunnel device before dropping privs
467 tunnel.fd6 = tun_open();
468 if(tunnel.fd6 < 0) {
Lorenzo Colittid9084182013-03-22 00:42:21 +0900469 logmsg(ANDROID_LOG_FATAL, "tun_open failed: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -0500470 exit(1);
471 }
472
473 tunnel.fd4 = tun_open();
474 if(tunnel.fd4 < 0) {
Lorenzo Colittid9084182013-03-22 00:42:21 +0900475 logmsg(ANDROID_LOG_FATAL, "tun_open4 failed: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -0500476 exit(1);
477 }
478
479 // open the forwarding configuration before dropping privs
480 forwarding_fd = open("/proc/sys/net/ipv6/conf/all/forwarding", O_RDWR);
481 if(forwarding_fd < 0) {
Lorenzo Colittid9084182013-03-22 00:42:21 +0900482 logmsg(ANDROID_LOG_FATAL,"open /proc/sys/net/ipv6/conf/all/forwarding failed: %s",
483 strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -0500484 exit(1);
485 }
486
Daniel Drowna45056e2012-03-23 10:42:54 -0500487 // run under a regular user
488 drop_root();
489
Lorenzo Colittibaf62992013-03-01 20:29:39 +0900490 // When run from netd, the environment variable ANDROID_DNS_MODE is set to
491 // "local", but that only works for the netd process itself.
492 unsetenv("ANDROID_DNS_MODE");
Daniel Drowna45056e2012-03-23 10:42:54 -0500493
494 configure_interface(uplink_interface, plat_prefix, &tunnel);
495
Daniel Drowna45056e2012-03-23 10:42:54 -0500496 set_forwarding(forwarding_fd,"1\n");
497
Lorenzo Colittibaf62992013-03-01 20:29:39 +0900498 // Loop until someone sends us a signal or brings down the tun interface.
499 if(signal(SIGTERM, stop_loop) == SIG_ERR) {
500 logmsg(ANDROID_LOG_FATAL, "sigterm handler failed: %s", strerror(errno));
501 exit(1);
502 }
503 event_loop(&tunnel);
Daniel Drowna45056e2012-03-23 10:42:54 -0500504
505 set_forwarding(forwarding_fd,"0\n");
Lorenzo Colittibaf62992013-03-01 20:29:39 +0900506 logmsg(ANDROID_LOG_INFO,"Shutting down clat on %s", uplink_interface);
Daniel Drowna45056e2012-03-23 10:42:54 -0500507
508 return 0;
509}