blob: 4cb145b2b1b52cae2230f15337d93dc4e2edc256 [file] [log] [blame]
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
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
17#include "RouteController.h"
18
Dan Albertaa1be2b2015-01-06 09:36:17 -080019#include <arpa/inet.h>
20#include <errno.h>
21#include <fcntl.h>
22#include <linux/fib_rules.h>
23#include <net/if.h>
24#include <sys/stat.h>
25
26#include <map>
27
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070028#include "Fwmark.h"
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070029#include "UidRanges.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070030
31#define LOG_TAG "Netd"
32#include "log/log.h"
33#include "logwrap/logwrap.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070034#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070035
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070036namespace {
37
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070038// BEGIN CONSTANTS --------------------------------------------------------------------------------
39
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070040const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070041const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070042const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
43const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
44const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
45const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
46const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070047const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070048const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070049const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070050const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070051const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070052const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000053const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090054const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070055
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070056const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070057const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
58const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
59
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070060const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070061const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
62const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
63
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070064const char* const ROUTE_TABLE_NAME_LOCAL = "local";
65const char* const ROUTE_TABLE_NAME_MAIN = "main";
66
Lorenzo Colitti59656512014-06-25 03:20:29 +090067// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
68// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
69// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
70// that will warn us if upstream has given these values some other meaning.
71const uint16_t FRA_UID_START = 18;
72const uint16_t FRA_UID_END = 19;
73static_assert(FRA_UID_START > FRA_MAX,
74 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
75 "Check that these values match what the kernel does and then update this assertion.");
76
Lorenzo Colitti72723682014-06-26 13:51:10 +090077const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
78const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090079
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070080const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
81
82const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
83
84const char* const IP_VERSIONS[] = {"-4", "-6"};
85
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070086const uid_t UID_ROOT = 0;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070087const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070088const char* const OIF_NONE = NULL;
89const bool ACTION_ADD = true;
90const bool ACTION_DEL = false;
91const bool MODIFY_NON_UID_BASED_RULES = true;
92
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070093const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -070094const int RT_TABLES_FLAGS = O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC;
95const mode_t RT_TABLES_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; // mode 0644, rw-r--r--
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070096
Lorenzo Colitti99286fe2014-08-12 15:08:00 +090097const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
98
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070099// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
100// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
101constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
102 return RTA_LENGTH(x);
103}
104
105// These are practically const, but can't be declared so, because they are used to initialize
106// non-const pointers ("void* iov_base") in iovec arrays.
107rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
108rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
109rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
110rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
111rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
112rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
113
114rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
115rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
116
117uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
118
119// END CONSTANTS ----------------------------------------------------------------------------------
120
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700121// No locks needed because RouteController is accessed only from one thread (in CommandListener).
122std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400123
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700124uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700125 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400126 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700127 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
128 interfaceToTable[interface] = index;
129 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400130 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700131 // If the interface goes away if_nametoindex() will return 0 but we still need to know
132 // the index so we can remove the rules and routes.
133 auto iter = interfaceToTable.find(interface);
134 if (iter == interfaceToTable.end()) {
135 ALOGE("cannot find interface %s", interface);
136 return RT_TABLE_UNSPEC;
137 }
138 return iter->second;
139}
140
141void addTableName(uint32_t table, const std::string& name, std::string* contents) {
142 char tableString[UINT32_STRLEN];
143 snprintf(tableString, sizeof(tableString), "%u", table);
144 *contents += tableString;
145 *contents += " ";
146 *contents += name;
147 *contents += "\n";
148}
149
150// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
151void updateTableNamesFile() {
152 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700153
154 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
155 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
156
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700157 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700158 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
159 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700160
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700161 for (const auto& entry : interfaceToTable) {
162 addTableName(entry.second, entry.first, &contents);
163 }
164
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700165 int fd = open(RT_TABLES_PATH, RT_TABLES_FLAGS, RT_TABLES_MODE);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700166 if (fd == -1) {
167 ALOGE("failed to create %s (%s)", RT_TABLES_PATH, strerror(errno));
168 return;
169 }
170 // File creation is affected by umask, so make sure the right mode bits are set.
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700171 if (fchmod(fd, RT_TABLES_MODE) == -1) {
172 ALOGE("failed to set mode 0%o on %s (%s)", RT_TABLES_MODE, RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700173 }
174 ssize_t bytesWritten = write(fd, contents.data(), contents.size());
175 if (bytesWritten != static_cast<ssize_t>(contents.size())) {
176 ALOGE("failed to write to %s (%zd vs %zu bytes) (%s)", RT_TABLES_PATH, bytesWritten,
177 contents.size(), strerror(errno));
178 }
179 close(fd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700180}
181
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900182// Sends a netlink request and expects an ack.
183// |iov| is an array of struct iovec that contains the netlink message payload.
184// The netlink header is generated by this function based on |action| and |flags|.
185// Returns -errno if there was an error or if the kernel reported an error.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700186WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900187 nlmsghdr nlmsg = {
188 .nlmsg_type = action,
189 .nlmsg_flags = flags,
190 };
191 iov[0].iov_base = &nlmsg;
192 iov[0].iov_len = sizeof(nlmsg);
193 for (int i = 0; i < iovlen; ++i) {
194 nlmsg.nlmsg_len += iov[i].iov_len;
195 }
196
197 int ret;
198 struct {
199 nlmsghdr msg;
200 nlmsgerr err;
201 } response;
202
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900203 int sock = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
204 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700205 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
206 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900207 writev(sock, iov, iovlen) != -1 &&
208 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
209 if (ret == sizeof(response)) {
210 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700211 if (ret) {
212 ALOGE("netlink response contains error (%s)", strerror(-ret));
213 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900214 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700215 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900216 ret = -EBADMSG;
217 }
218 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700219 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900220 ret = -errno;
221 }
222
223 if (sock != -1) {
224 close(sock);
225 }
226
227 return ret;
228}
229
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700230// Returns 0 on success or negative errno on failure.
231int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
232 if (!input) {
233 *length = 0;
234 *padding = 0;
235 return 0;
236 }
237 *length = strlcpy(name, input, IFNAMSIZ) + 1;
238 if (*length > IFNAMSIZ) {
239 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
240 return -ENAMETOOLONG;
241 }
242 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
243 return 0;
244}
245
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700246// Adds or removes a routing rule for IPv4 and IPv6.
247//
248// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the rule
249// returns ENETUNREACH.
250// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
251// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700252// + If |iif| is non-NULL, the rule matches the specified incoming interface.
253// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
254// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
255// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900256//
257// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700258WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700259 uint32_t fwmark, uint32_t mask, const char* iif,
260 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700261 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
262 if (fwmark & ~mask) {
263 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
264 return -ERANGE;
265 }
266
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700267 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900268 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700269 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
270 size_t iifLength, oifLength;
271 uint16_t iifPadding, oifPadding;
272 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
273 return ret;
274 }
275 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
276 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900277 }
278
Lorenzo Colitti59656512014-06-25 03:20:29 +0900279 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700280 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700281 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900282 return -EUSERS;
283 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900284 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900285
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900286 // Assemble a rule request and put it in an array of iovec structures.
287 fib_rule_hdr rule = {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700288 .action = static_cast<uint8_t>(table != RT_TABLE_UNSPEC ? FR_ACT_TO_TBL :
289 FR_ACT_UNREACHABLE),
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900290 };
291
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700292 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
293 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900294
295 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700296 { NULL, 0 },
297 { &rule, sizeof(rule) },
298 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
299 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700300 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
301 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700302 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
303 { &fwmark, mask ? sizeof(fwmark) : 0 },
304 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
305 { &mask, mask ? sizeof(mask) : 0 },
306 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
307 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
308 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
309 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700310 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
311 { iifName, iifLength },
312 { PADDING_BUFFER, iifPadding },
313 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
314 { oifName, oifLength },
315 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900316 };
317
Lorenzo Colitti72723682014-06-26 13:51:10 +0900318 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700319 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
320 rule.family = AF_FAMILIES[i];
321 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900322 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700323 }
324 }
325
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900326 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700327}
328
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700329WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
330 uint32_t fwmark, uint32_t mask) {
331 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
332 INVALID_UID);
333}
334
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900335// Adds or deletes an IPv4 or IPv6 route.
336// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700337WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
338 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900339 // At least the destination must be non-null.
340 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700341 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900342 return -EFAULT;
343 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700344
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900345 // Parse the prefix.
346 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700347 uint8_t family;
348 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900349 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
350 &prefixLength);
351 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700352 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900353 return rawLength;
354 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700355
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900356 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700357 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900358 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
359 }
360
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700361 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900362 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900363 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700364
365 if (nexthop && !strcmp(nexthop, "unreachable")) {
366 type = RTN_UNREACHABLE;
367 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
368 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
369 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
370 interface = OIF_NONE;
371 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900372 } else if (nexthop && !strcmp(nexthop, "throw")) {
373 type = RTN_THROW;
374 interface = OIF_NONE;
375 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700376 } else {
377 // If an interface was specified, find the ifindex.
378 if (interface != OIF_NONE) {
379 ifindex = if_nametoindex(interface);
380 if (!ifindex) {
381 ALOGE("cannot find interface %s", interface);
382 return -ENODEV;
383 }
384 }
385
386 // If a nexthop was specified, parse it as the same family as the prefix.
387 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
388 ALOGE("inet_pton failed for nexthop %s", nexthop);
389 return -EINVAL;
390 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900391 }
392
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900393 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700394 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900395 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700396 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900397 .rtm_family = family,
398 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700399 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900400 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900401
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700402 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
403 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900404
405 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700406 { NULL, 0 },
407 { &route, sizeof(route) },
408 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
409 { &table, sizeof(table) },
410 { &rtaDst, sizeof(rtaDst) },
411 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700412 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
413 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700414 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
415 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900416 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900417
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700418 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
419 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900420 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700421}
422
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700423// An iptables rule to mark incoming packets on a network with the netId of the network.
424//
425// This is so that the kernel can:
426// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
427// replies, SYN-ACKs, etc).
428// + Mark sockets that accept connections from this interface so that the connection stays on the
429// same interface.
430WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
431 Permission permission, bool add) {
432 Fwmark fwmark;
433
434 fwmark.netId = netId;
435 fwmark.explicitlySelected = true;
436 fwmark.protectedFromVpn = true;
437 fwmark.permission = permission;
438
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700439 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700440 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
441
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700442 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
443 "MARK", "--set-mark", markString, NULL)) {
444 ALOGE("failed to change iptables rule that sets incoming packet mark");
445 return -EREMOTEIO;
446 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700447
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700448 return 0;
449}
450
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700451// A rule to route responses to the local network forwarded via the VPN.
452//
453// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
454// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
455WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
456 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
457 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
458 INVALID_UID, INVALID_UID);
459}
460
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700461// A rule to route all traffic from a given set of UIDs to go over the VPN.
462//
463// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
464// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
465// bypass the VPN if the protectedFromVpn bit is set.
466WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700467 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700468 Fwmark fwmark;
469 Fwmark mask;
470
471 fwmark.protectedFromVpn = false;
472 mask.protectedFromVpn = true;
473
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700474 uint32_t priority;
475
476 if (secure) {
477 priority = RULE_PRIORITY_SECURE_VPN;
478 } else {
479 priority = RULE_PRIORITY_BYPASSABLE_VPN;
480
481 fwmark.explicitlySelected = false;
482 mask.explicitlySelected = true;
483 }
484
485 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
486 mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700487}
488
489// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
490// set of UIDs.
491//
492// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
493// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700494WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
495 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700496 Fwmark fwmark;
497 Fwmark mask;
498
499 fwmark.netId = netId;
500 mask.netId = FWMARK_NET_ID_MASK;
501
502 fwmark.permission = PERMISSION_SYSTEM;
503 mask.permission = PERMISSION_SYSTEM;
504
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700505 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
506
507 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
508 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700509}
510
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700511// A rule to route traffic based on an explicitly chosen network.
512//
513// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
514//
515// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
516// to check it again in the rules here, because a network's permissions may have been updated via
517// modifyNetworkPermission().
518WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
519 Permission permission, uid_t uidStart,
520 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700521 Fwmark fwmark;
522 Fwmark mask;
523
524 fwmark.netId = netId;
525 mask.netId = FWMARK_NET_ID_MASK;
526
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700527 fwmark.explicitlySelected = true;
528 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700529
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700530 fwmark.permission = permission;
531 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700532
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700533 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700534 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700535}
536
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700537// A rule to route traffic based on a chosen outgoing interface.
538//
539// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
540// the outgoing interface (typically for link-local communications).
541WARN_UNUSED_RESULT int modifyOutputInterfaceRule(const char* interface, uint32_t table,
542 Permission permission, uid_t uidStart,
543 uid_t uidEnd, bool add) {
544 Fwmark fwmark;
545 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700546
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700547 fwmark.permission = permission;
548 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700549
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700550 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700551 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700552}
553
554// A rule to route traffic based on the chosen network.
555//
556// This is for sockets that have not explicitly requested a particular network, but have been
557// bound to one when they called connect(). This ensures that sockets connected on a particular
558// network stay on that network even if the default network changes.
559WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
560 Permission permission, bool add) {
561 Fwmark fwmark;
562 Fwmark mask;
563
564 fwmark.netId = netId;
565 mask.netId = FWMARK_NET_ID_MASK;
566
567 fwmark.explicitlySelected = false;
568 mask.explicitlySelected = true;
569
570 fwmark.permission = permission;
571 mask.permission = permission;
572
573 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700574 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700575}
576
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700577// A rule to enable split tunnel VPNs.
578//
579// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
580// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
581// permissions required by the default network.
582WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
583 const char* physicalInterface,
584 Permission permission) {
585 uint32_t table = getRouteTableForInterface(physicalInterface);
586 if (table == RT_TABLE_UNSPEC) {
587 return -ESRCH;
588 }
589
590 Fwmark fwmark;
591 Fwmark mask;
592
593 fwmark.netId = vpnNetId;
594 mask.netId = FWMARK_NET_ID_MASK;
595
596 fwmark.explicitlySelected = false;
597 mask.explicitlySelected = true;
598
599 fwmark.permission = permission;
600 mask.permission = permission;
601
602 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
603 mask.intValue);
604}
605
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700606// Add rules to allow legacy routes added through the requestRouteToHost() API.
607WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700608 Fwmark fwmark;
609 Fwmark mask;
610
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700611 fwmark.explicitlySelected = false;
612 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700613
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700614 // Rules to allow legacy routes to override the default network.
615 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
616 fwmark.intValue, mask.intValue)) {
617 return ret;
618 }
619 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
620 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
621 return ret;
622 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700623
624 fwmark.permission = PERMISSION_SYSTEM;
625 mask.permission = PERMISSION_SYSTEM;
626
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700627 // A rule to allow legacy routes from system apps to override VPNs.
628 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700629 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700630}
631
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700632// Add rules to lookup the local network when specified explicitly or otherwise.
633WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
634 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
635 INVALID_UID, INVALID_UID, ACTION_ADD)) {
636 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700637 }
638
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700639 Fwmark fwmark;
640 Fwmark mask;
641
642 fwmark.explicitlySelected = false;
643 mask.explicitlySelected = true;
644
645 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
646 fwmark.intValue, mask.intValue);
647}
648
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000649// Add a new rule to look up the 'main' table, with the same selectors as the "default network"
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900650// rule, but with a lower priority. We will never create routes in the main table; it should only be
651// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
652// This is necessary, for example, when adding a route through a directly-connected gateway: in
653// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000654WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
655 Fwmark fwmark;
656 Fwmark mask;
657
658 fwmark.netId = NETID_UNSET;
659 mask.netId = FWMARK_NET_ID_MASK;
660
661 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
662 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
663}
664
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900665// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
666// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
667// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
668// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700669WARN_UNUSED_RESULT int addUnreachableRule() {
670 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
671 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700672}
673
674WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700675 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
676 return ret;
677 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700678 return modifyOutputInterfaceRule(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
679 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700680}
681
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700682WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
683 Permission permission, bool add) {
684 uint32_t table = getRouteTableForInterface(interface);
685 if (table == RT_TABLE_UNSPEC) {
686 return -ESRCH;
687 }
688
689 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
690 return ret;
691 }
692 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
693 add)) {
694 return ret;
695 }
696 if (int ret = modifyOutputInterfaceRule(interface, table, permission, INVALID_UID, INVALID_UID,
697 add)) {
698 return ret;
699 }
700 return modifyImplicitNetworkRule(netId, table, permission, add);
701}
702
703WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700704 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700705 bool modifyNonUidBasedRules) {
706 uint32_t table = getRouteTableForInterface(interface);
707 if (table == RT_TABLE_UNSPEC) {
708 return -ESRCH;
709 }
710
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700711 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700712 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700713 return ret;
714 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700715 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
716 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700717 return ret;
718 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700719 if (int ret = modifyOutputInterfaceRule(interface, table, PERMISSION_NONE, range.first,
720 range.second, add)) {
721 return ret;
722 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700723 }
724
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700725 if (modifyNonUidBasedRules) {
726 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700727 return ret;
728 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700729 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
730 return ret;
731 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700732 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700733 return ret;
734 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700735 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700736 }
737
738 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700739}
740
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700741WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
742 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700743 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700744 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900745 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700746 }
747
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700748 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700749 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700750
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700751 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700752 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700753
754 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700755 mask.permission = permission;
756
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700757 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700758 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700759}
760
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700761WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
762 const char* outputInterface) {
763 uint32_t table = getRouteTableForInterface(outputInterface);
764 if (table == RT_TABLE_UNSPEC) {
765 return -ESRCH;
766 }
767
768 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
769 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
770}
771
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700772// Returns 0 on success or negative errno on failure.
773WARN_UNUSED_RESULT int flushRules() {
774 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
775 const char* argv[] = {
776 IP_PATH,
777 IP_VERSIONS[i],
778 "rule",
779 "flush",
780 };
781 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
782 ALOGE("failed to flush rules");
783 return -EREMOTEIO;
784 }
785 }
786 return 0;
787}
788
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700789// Adds or removes an IPv4 or IPv6 route to the specified table and, if it's a directly-connected
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900790// route, to the main table as well.
791// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700792WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
793 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700794 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700795 switch (tableType) {
796 case RouteController::INTERFACE: {
797 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700798 if (table == RT_TABLE_UNSPEC) {
799 return -ESRCH;
800 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700801 break;
802 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700803 case RouteController::LOCAL_NETWORK: {
804 table = ROUTE_TABLE_LOCAL_NETWORK;
805 break;
806 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700807 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700808 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700809 break;
810 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700811 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700812 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700813 break;
814 }
815 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700816
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900817 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran1077d292014-06-27 06:42:11 -0700818 // We allow apps to call requestRouteToHost() multiple times with the same route, so ignore
819 // EEXIST failures when adding routes to legacy tables.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700820 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST &&
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700821 (tableType == RouteController::LEGACY_NETWORK ||
822 tableType == RouteController::LEGACY_SYSTEM))) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900823 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700824 }
825
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900826 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700827}
828
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700829// Returns 0 on success or negative errno on failure.
830WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700831 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700832 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700833 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700834 }
835
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900836 char tableString[UINT32_STRLEN];
837 snprintf(tableString, sizeof(tableString), "%u", table);
838
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900839 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700840 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900841 const char* argv[] = {
842 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700843 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700844 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900845 "flush",
846 "table",
847 tableString,
848 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900849
850 // A flush works by dumping routes and deleting each route as it's returned, and it can
851 // fail if something else deletes the route between the dump and the delete. This can
852 // happen, for example, if an interface goes down while we're trying to flush its routes.
853 // So try multiple times and only return an error if the last attempt fails.
854 //
855 // TODO: replace this with our own netlink code.
856 unsigned attempts = 0;
857 int err;
858 do {
859 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
860 NULL, false, false);
861 ++attempts;
862 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
863 if (err) {
864 ALOGE("failed to flush %s routes in table %s after %d attempts",
865 IP_VERSIONS[i], tableString, attempts);
866 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900867 }
868 }
869
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900870 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
871 // track of its name.
872 if (!ret) {
873 interfaceToTable.erase(interface);
874 }
875
876 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700877}
878
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700879} // namespace
880
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700881int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700882 if (int ret = flushRules()) {
883 return ret;
884 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700885 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700886 return ret;
887 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700888 if (int ret = addLocalNetworkRules(localNetId)) {
889 return ret;
890 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000891 if (int ret = addDirectlyConnectedRule()) {
892 return ret;
893 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700894 if (int ret = addUnreachableRule()) {
895 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700896 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700897 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700898 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700899}
900
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700901int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700902 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700903}
904
905int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700906 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700907}
908
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700909int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
910 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700911 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
912 return ret;
913 }
914 updateTableNamesFile();
915 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700916}
917
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700918int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
919 Permission permission) {
920 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700921 return ret;
922 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700923 if (int ret = flushRoutes(interface)) {
924 return ret;
925 }
926 updateTableNamesFile();
927 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700928}
929
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700930int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700931 bool secure, const UidRanges& uidRanges) {
932 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700933 MODIFY_NON_UID_BASED_RULES)) {
934 return ret;
935 }
936 updateTableNamesFile();
937 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700938}
939
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700940int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700941 bool secure, const UidRanges& uidRanges) {
942 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700943 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700944 return ret;
945 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700946 if (int ret = flushRoutes(interface)) {
947 return ret;
948 }
949 updateTableNamesFile();
950 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700951}
952
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700953int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
954 Permission oldPermission,
955 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700956 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700957 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700958 return ret;
959 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700960 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700961}
962
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700963int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700964 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700965 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700966 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700967}
968
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700969int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700970 bool secure, const UidRanges& uidRanges) {
971 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700972 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700973}
974
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700975int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
976 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700977}
978
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700979int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
980 Permission permission) {
981 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700982}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700983
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700984int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700985 TableType tableType) {
986 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700987}
988
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900989int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700990 const char* nexthop, TableType tableType) {
991 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700992}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700993
994int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700995 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700996}
997
998int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700999 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001000}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -07001001
1002int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
1003 Permission permission) {
1004 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1005}
1006
1007int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1008 const char* physicalInterface,
1009 Permission permission) {
1010 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1011}