blob: f72f4316a6eb38f7f3077fbbb9b03e01c515ce7a [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 */
junyulaic4e591a2018-11-26 22:36:10 +090018#include <arpa/inet.h>
19#include <errno.h>
20#include <fcntl.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050021#include <poll.h>
22#include <signal.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050023#include <stdio.h>
junyulaic4e591a2018-11-26 22:36:10 +090024#include <stdlib.h>
25#include <string.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050026#include <sys/ioctl.h>
Elliott Hughes3afe9ae2014-07-18 17:25:26 -070027#include <sys/prctl.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050028#include <sys/stat.h>
junyulaic4e591a2018-11-26 22:36:10 +090029#include <sys/types.h>
30#include <time.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050031#include <unistd.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050032
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +090033#include <linux/filter.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050034#include <linux/if.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050035#include <linux/if_ether.h>
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +090036#include <linux/if_packet.h>
junyulaic4e591a2018-11-26 22:36:10 +090037#include <linux/if_tun.h>
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +090038#include <net/if.h>
junyulaic4e591a2018-11-26 22:36:10 +090039#include <sys/capability.h>
40#include <sys/uio.h>
Daniel Drowna45056e2012-03-23 10:42:54 -050041
Daniel Drowna45056e2012-03-23 10:42:54 -050042#include "clatd.h"
43#include "config.h"
Daniel Drowna45056e2012-03-23 10:42:54 -050044#include "dump.h"
junyulaic4e591a2018-11-26 22:36:10 +090045#include "getaddr.h"
46#include "logging.h"
junyulaic4e591a2018-11-26 22:36:10 +090047#include "translate.h"
Daniel Drowna45056e2012-03-23 10:42:54 -050048
Maciej Żenczykowski5ce6cda2020-06-02 14:39:33 -070049struct clat_config Global_Clatd_Config;
50
Lorenzo Colitti57d480d2014-02-09 10:35:38 +090051/* 40 bytes IPv6 header - 20 bytes IPv4 header + 8 bytes fragment header */
52#define MTU_DELTA 28
53
Daniel Drowna45056e2012-03-23 10:42:54 -050054volatile sig_atomic_t running = 1;
55
Lorenzo Colitti66deecd2019-01-04 12:27:27 +090056int ipv6_address_changed(const char *interface) {
57 union anyip *interface_ip;
58
59 interface_ip = getinterface_ip(interface, AF_INET6);
60 if (!interface_ip) {
61 logmsg(ANDROID_LOG_ERROR, "Unable to find an IPv6 address on interface %s", interface);
62 return 1;
63 }
64
65 if (!ipv6_prefix_equal(&interface_ip->ip6, &Global_Clatd_Config.ipv6_local_subnet)) {
66 char oldstr[INET6_ADDRSTRLEN];
67 char newstr[INET6_ADDRSTRLEN];
68 inet_ntop(AF_INET6, &Global_Clatd_Config.ipv6_local_subnet, oldstr, sizeof(oldstr));
69 inet_ntop(AF_INET6, &interface_ip->ip6, newstr, sizeof(newstr));
70 logmsg(ANDROID_LOG_INFO, "IPv6 prefix on %s changed: %s -> %s", interface, oldstr, newstr);
71 free(interface_ip);
72 return 1;
73 } else {
74 free(interface_ip);
75 return 0;
76 }
77}
78
Daniel Drowna45056e2012-03-23 10:42:54 -050079/* function: read_packet
Lorenzo Colitti9353be22014-12-03 15:18:29 +090080 * reads a packet from the tunnel fd and translates it
junyulaic4e591a2018-11-26 22:36:10 +090081 * read_fd - file descriptor to read original packet from
82 * write_fd - file descriptor to write translated packet to
83 * to_ipv6 - whether the packet is to be translated to ipv6 or ipv4
Daniel Drowna45056e2012-03-23 10:42:54 -050084 */
Lorenzo Colitti9353be22014-12-03 15:18:29 +090085void read_packet(int read_fd, int write_fd, int to_ipv6) {
Maciej Żenczykowski50303532020-06-02 14:46:45 -070086 uint8_t buf[PACKETLEN];
87 ssize_t readlen = read(read_fd, buf, PACKETLEN);
Daniel Drowna45056e2012-03-23 10:42:54 -050088
junyulaic4e591a2018-11-26 22:36:10 +090089 if (readlen < 0) {
Lorenzo Colitti49454812015-01-31 19:18:47 +090090 if (errno != EAGAIN) {
junyulaic4e591a2018-11-26 22:36:10 +090091 logmsg(ANDROID_LOG_WARN, "read_packet/read error: %s", strerror(errno));
Lorenzo Colitti49454812015-01-31 19:18:47 +090092 }
Daniel Drowna45056e2012-03-23 10:42:54 -050093 return;
junyulaic4e591a2018-11-26 22:36:10 +090094 } else if (readlen == 0) {
95 logmsg(ANDROID_LOG_WARN, "read_packet/tun interface removed");
Daniel Drowna45056e2012-03-23 10:42:54 -050096 running = 0;
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +090097 return;
98 }
99
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700100 if (!to_ipv6) {
101 translate_packet(write_fd, 0 /* to_ipv6 */, buf, readlen);
102 return;
103 }
104
junyulaic4e591a2018-11-26 22:36:10 +0900105 struct tun_pi *tun_header = (struct tun_pi *)buf;
106 if (readlen < (ssize_t)sizeof(*tun_header)) {
107 logmsg(ANDROID_LOG_WARN, "read_packet/short read: got %ld bytes", readlen);
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900108 return;
Daniel Drowna45056e2012-03-23 10:42:54 -0500109 }
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +0900110
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900111 uint16_t proto = ntohs(tun_header->proto);
112 if (proto != ETH_P_IP) {
113 logmsg(ANDROID_LOG_WARN, "%s: unknown packet type = 0x%x", __func__, proto);
114 return;
115 }
116
junyulaic4e591a2018-11-26 22:36:10 +0900117 if (tun_header->flags != 0) {
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900118 logmsg(ANDROID_LOG_WARN, "%s: unexpected flags = %d", __func__, tun_header->flags);
119 }
120
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700121 uint8_t *packet = (uint8_t *)(tun_header + 1);
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900122 readlen -= sizeof(*tun_header);
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700123 translate_packet(write_fd, 1 /* to_ipv6 */, packet, readlen);
Daniel Drowna45056e2012-03-23 10:42:54 -0500124}
125
126/* function: event_loop
127 * reads packets from the tun network interface and passes them down the stack
junyulaic4e591a2018-11-26 22:36:10 +0900128 * tunnel - tun device data
Daniel Drowna45056e2012-03-23 10:42:54 -0500129 */
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900130void event_loop(struct tun_data *tunnel) {
Daniel Drowna45056e2012-03-23 10:42:54 -0500131 time_t last_interface_poll;
Lorenzo Colittidce3ddf2014-08-25 16:07:12 -0700132 struct pollfd wait_fd[] = {
133 { tunnel->read_fd6, POLLIN, 0 },
134 { tunnel->fd4, POLLIN, 0 },
135 };
Daniel Drowna45056e2012-03-23 10:42:54 -0500136
137 // start the poll timer
138 last_interface_poll = time(NULL);
139
junyulaic4e591a2018-11-26 22:36:10 +0900140 while (running) {
141 if (poll(wait_fd, ARRAY_SIZE(wait_fd), NO_TRAFFIC_INTERFACE_POLL_FREQUENCY * 1000) == -1) {
Bernie Innocenti69dc60d2018-05-14 20:40:49 +0900142 if (errno != EINTR) {
junyulaic4e591a2018-11-26 22:36:10 +0900143 logmsg(ANDROID_LOG_WARN, "event_loop/poll returned an error: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -0500144 }
145 } else {
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900146 // Call read_packet if the socket has data to be read, but also if an
147 // error is waiting. If we don't call read() after getting POLLERR, a
148 // subsequent poll() will return immediately with POLLERR again,
149 // causing this code to spin in a loop. Calling read() will clear the
150 // socket error flag instead.
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700151 if (wait_fd[0].revents) read_packet(tunnel->read_fd6, tunnel->fd4, 0 /* to_ipv6 */);
152 if (wait_fd[1].revents) read_packet(tunnel->fd4, tunnel->write_fd6, 1 /* to_ipv6 */);
Daniel Drowna45056e2012-03-23 10:42:54 -0500153 }
154
155 time_t now = time(NULL);
Rocco Yuee4b7da62020-09-02 15:21:41 +0800156 if (now >= (last_interface_poll + INTERFACE_POLL_FREQUENCY)) {
157 last_interface_poll = now;
Maciej Żenczykowskiba667df2020-06-02 01:41:54 -0700158 if (ipv6_address_changed(Global_Clatd_Config.native_ipv6_interface)) {
Lorenzo Colitti66deecd2019-01-04 12:27:27 +0900159 break;
160 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500161 }
162 }
163}