blob: f760fef05c3f745441f0044ca5238cf7f776f406 [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
Lorenzo Colitti27da0ad2020-06-01 12:15:20 +090042#include <private/android_filesystem_config.h> // For AID_CLAT.
Daniel Drowna45056e2012-03-23 10:42:54 -050043
Daniel Drowna45056e2012-03-23 10:42:54 -050044#include "clatd.h"
45#include "config.h"
Daniel Drowna45056e2012-03-23 10:42:54 -050046#include "dump.h"
junyulaic4e591a2018-11-26 22:36:10 +090047#include "getaddr.h"
48#include "logging.h"
junyulaic4e591a2018-11-26 22:36:10 +090049#include "translate.h"
Daniel Drowna45056e2012-03-23 10:42:54 -050050
Maciej Żenczykowski5ce6cda2020-06-02 14:39:33 -070051struct clat_config Global_Clatd_Config;
52
Lorenzo Colitti57d480d2014-02-09 10:35:38 +090053/* 40 bytes IPv6 header - 20 bytes IPv4 header + 8 bytes fragment header */
54#define MTU_DELTA 28
55
Daniel Drowna45056e2012-03-23 10:42:54 -050056volatile sig_atomic_t running = 1;
57
junyulaib5e8f972018-10-29 23:10:15 +080058/* function: set_capability
59 * set the permitted, effective and inheritable capabilities of the current
60 * thread
Daniel Drowna45056e2012-03-23 10:42:54 -050061 */
junyulaib5e8f972018-10-29 23:10:15 +080062void set_capability(uint64_t target_cap) {
63 struct __user_cap_header_struct header = {
64 .version = _LINUX_CAPABILITY_VERSION_3,
65 .pid = 0 // 0 = change myself
66 };
67 struct __user_cap_data_struct cap[_LINUX_CAPABILITY_U32S_3] = {};
68
69 cap[0].permitted = cap[0].effective = cap[0].inheritable = target_cap;
70 cap[1].permitted = cap[1].effective = cap[1].inheritable = target_cap >> 32;
71
72 if (capset(&header, cap) < 0) {
73 logmsg(ANDROID_LOG_FATAL, "capset failed: %s", strerror(errno));
74 exit(1);
75 }
76}
77
Maciej Żenczykowskib64249e2021-10-22 18:31:50 -070078/* function: drop_root_and_caps
79 * drops root privs and all capabilities
junyulaib5e8f972018-10-29 23:10:15 +080080 */
Maciej Żenczykowskib64249e2021-10-22 18:31:50 -070081void drop_root_and_caps() {
Maciej Żenczykowski7c87aaa2021-10-22 16:07:00 -070082 // see man setgroups: this drops all supplementary groups
83 if (setgroups(0, NULL) < 0) {
junyulaib5e8f972018-10-29 23:10:15 +080084 logmsg(ANDROID_LOG_FATAL, "setgroups failed: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -050085 exit(1);
86 }
87
junyulaib5e8f972018-10-29 23:10:15 +080088 if (setresgid(AID_CLAT, AID_CLAT, AID_CLAT) < 0) {
89 logmsg(ANDROID_LOG_FATAL, "setresgid failed: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -050090 exit(1);
91 }
junyulaib5e8f972018-10-29 23:10:15 +080092 if (setresuid(AID_CLAT, AID_CLAT, AID_CLAT) < 0) {
93 logmsg(ANDROID_LOG_FATAL, "setresuid failed: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -050094 exit(1);
95 }
96
Maciej Żenczykowskib64249e2021-10-22 18:31:50 -070097 set_capability(0);
Daniel Drowna45056e2012-03-23 10:42:54 -050098}
99
Lorenzo Colitti66deecd2019-01-04 12:27:27 +0900100int ipv6_address_changed(const char *interface) {
101 union anyip *interface_ip;
102
103 interface_ip = getinterface_ip(interface, AF_INET6);
104 if (!interface_ip) {
105 logmsg(ANDROID_LOG_ERROR, "Unable to find an IPv6 address on interface %s", interface);
106 return 1;
107 }
108
109 if (!ipv6_prefix_equal(&interface_ip->ip6, &Global_Clatd_Config.ipv6_local_subnet)) {
110 char oldstr[INET6_ADDRSTRLEN];
111 char newstr[INET6_ADDRSTRLEN];
112 inet_ntop(AF_INET6, &Global_Clatd_Config.ipv6_local_subnet, oldstr, sizeof(oldstr));
113 inet_ntop(AF_INET6, &interface_ip->ip6, newstr, sizeof(newstr));
114 logmsg(ANDROID_LOG_INFO, "IPv6 prefix on %s changed: %s -> %s", interface, oldstr, newstr);
115 free(interface_ip);
116 return 1;
117 } else {
118 free(interface_ip);
119 return 0;
120 }
121}
122
Daniel Drowna45056e2012-03-23 10:42:54 -0500123/* function: read_packet
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900124 * reads a packet from the tunnel fd and translates it
junyulaic4e591a2018-11-26 22:36:10 +0900125 * read_fd - file descriptor to read original packet from
126 * write_fd - file descriptor to write translated packet to
127 * to_ipv6 - whether the packet is to be translated to ipv6 or ipv4
Daniel Drowna45056e2012-03-23 10:42:54 -0500128 */
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900129void read_packet(int read_fd, int write_fd, int to_ipv6) {
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700130 uint8_t buf[PACKETLEN];
131 ssize_t readlen = read(read_fd, buf, PACKETLEN);
Daniel Drowna45056e2012-03-23 10:42:54 -0500132
junyulaic4e591a2018-11-26 22:36:10 +0900133 if (readlen < 0) {
Lorenzo Colitti49454812015-01-31 19:18:47 +0900134 if (errno != EAGAIN) {
junyulaic4e591a2018-11-26 22:36:10 +0900135 logmsg(ANDROID_LOG_WARN, "read_packet/read error: %s", strerror(errno));
Lorenzo Colitti49454812015-01-31 19:18:47 +0900136 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500137 return;
junyulaic4e591a2018-11-26 22:36:10 +0900138 } else if (readlen == 0) {
139 logmsg(ANDROID_LOG_WARN, "read_packet/tun interface removed");
Daniel Drowna45056e2012-03-23 10:42:54 -0500140 running = 0;
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +0900141 return;
142 }
143
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700144 if (!to_ipv6) {
145 translate_packet(write_fd, 0 /* to_ipv6 */, buf, readlen);
146 return;
147 }
148
junyulaic4e591a2018-11-26 22:36:10 +0900149 struct tun_pi *tun_header = (struct tun_pi *)buf;
150 if (readlen < (ssize_t)sizeof(*tun_header)) {
151 logmsg(ANDROID_LOG_WARN, "read_packet/short read: got %ld bytes", readlen);
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900152 return;
Daniel Drowna45056e2012-03-23 10:42:54 -0500153 }
Lorenzo Colittif08c5aa2014-06-03 12:56:38 +0900154
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900155 uint16_t proto = ntohs(tun_header->proto);
156 if (proto != ETH_P_IP) {
157 logmsg(ANDROID_LOG_WARN, "%s: unknown packet type = 0x%x", __func__, proto);
158 return;
159 }
160
junyulaic4e591a2018-11-26 22:36:10 +0900161 if (tun_header->flags != 0) {
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900162 logmsg(ANDROID_LOG_WARN, "%s: unexpected flags = %d", __func__, tun_header->flags);
163 }
164
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700165 uint8_t *packet = (uint8_t *)(tun_header + 1);
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900166 readlen -= sizeof(*tun_header);
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700167 translate_packet(write_fd, 1 /* to_ipv6 */, packet, readlen);
Daniel Drowna45056e2012-03-23 10:42:54 -0500168}
169
170/* function: event_loop
171 * reads packets from the tun network interface and passes them down the stack
junyulaic4e591a2018-11-26 22:36:10 +0900172 * tunnel - tun device data
Daniel Drowna45056e2012-03-23 10:42:54 -0500173 */
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900174void event_loop(struct tun_data *tunnel) {
Daniel Drowna45056e2012-03-23 10:42:54 -0500175 time_t last_interface_poll;
Lorenzo Colittidce3ddf2014-08-25 16:07:12 -0700176 struct pollfd wait_fd[] = {
177 { tunnel->read_fd6, POLLIN, 0 },
178 { tunnel->fd4, POLLIN, 0 },
179 };
Daniel Drowna45056e2012-03-23 10:42:54 -0500180
181 // start the poll timer
182 last_interface_poll = time(NULL);
183
junyulaic4e591a2018-11-26 22:36:10 +0900184 while (running) {
185 if (poll(wait_fd, ARRAY_SIZE(wait_fd), NO_TRAFFIC_INTERFACE_POLL_FREQUENCY * 1000) == -1) {
Bernie Innocenti69dc60d2018-05-14 20:40:49 +0900186 if (errno != EINTR) {
junyulaic4e591a2018-11-26 22:36:10 +0900187 logmsg(ANDROID_LOG_WARN, "event_loop/poll returned an error: %s", strerror(errno));
Daniel Drowna45056e2012-03-23 10:42:54 -0500188 }
189 } else {
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900190 // Call read_packet if the socket has data to be read, but also if an
191 // error is waiting. If we don't call read() after getting POLLERR, a
192 // subsequent poll() will return immediately with POLLERR again,
193 // causing this code to spin in a loop. Calling read() will clear the
194 // socket error flag instead.
Maciej Żenczykowski50303532020-06-02 14:46:45 -0700195 if (wait_fd[0].revents) read_packet(tunnel->read_fd6, tunnel->fd4, 0 /* to_ipv6 */);
196 if (wait_fd[1].revents) read_packet(tunnel->fd4, tunnel->write_fd6, 1 /* to_ipv6 */);
Daniel Drowna45056e2012-03-23 10:42:54 -0500197 }
198
199 time_t now = time(NULL);
Rocco Yuee4b7da62020-09-02 15:21:41 +0800200 if (now >= (last_interface_poll + INTERFACE_POLL_FREQUENCY)) {
201 last_interface_poll = now;
Maciej Żenczykowskiba667df2020-06-02 01:41:54 -0700202 if (ipv6_address_changed(Global_Clatd_Config.native_ipv6_interface)) {
Lorenzo Colitti66deecd2019-01-04 12:27:27 +0900203 break;
204 }
Daniel Drowna45056e2012-03-23 10:42:54 -0500205 }
206 }
207}