blob: ca888dfe8d527ee341a7b3769e968ad5a1f0d344 [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
19#include "Fwmark.h"
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070020#include "UidRanges.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070021
22#define LOG_TAG "Netd"
23#include "log/log.h"
24#include "logwrap/logwrap.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070025#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070026
Lorenzo Colittiba25df92014-06-18 00:22:17 +090027#include <arpa/inet.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070028#include <fcntl.h>
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090029#include <linux/fib_rules.h>
Paul Jensena561e122014-06-12 16:46:37 -040030#include <map>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070031#include <net/if.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070032#include <sys/stat.h>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070033
34namespace {
35
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070036// BEGIN CONSTANTS --------------------------------------------------------------------------------
37
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070038const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070039const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070040const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
41const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
42const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
43const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
44const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070045const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070046const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070047const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070048const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070049const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070050const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000051const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090052const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070053
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070054const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070055const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
56const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
57
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070058const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070059const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
60const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
61
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070062const char* const ROUTE_TABLE_NAME_LOCAL = "local";
63const char* const ROUTE_TABLE_NAME_MAIN = "main";
64
Lorenzo Colitti59656512014-06-25 03:20:29 +090065// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
66// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
67// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
68// that will warn us if upstream has given these values some other meaning.
69const uint16_t FRA_UID_START = 18;
70const uint16_t FRA_UID_END = 19;
71static_assert(FRA_UID_START > FRA_MAX,
72 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
73 "Check that these values match what the kernel does and then update this assertion.");
74
Lorenzo Colitti72723682014-06-26 13:51:10 +090075const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
76const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090077
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070078const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
79
80const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
81
82const char* const IP_VERSIONS[] = {"-4", "-6"};
83
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070084const uid_t UID_ROOT = 0;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070085const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070086const char* const OIF_NONE = NULL;
87const bool ACTION_ADD = true;
88const bool ACTION_DEL = false;
89const bool MODIFY_NON_UID_BASED_RULES = true;
90
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070091const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -070092const int RT_TABLES_FLAGS = O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC;
93const 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 -070094
Lorenzo Colitti99286fe2014-08-12 15:08:00 +090095const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
96
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070097// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
98// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
99constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
100 return RTA_LENGTH(x);
101}
102
103// These are practically const, but can't be declared so, because they are used to initialize
104// non-const pointers ("void* iov_base") in iovec arrays.
105rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
106rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
107rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
108rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
109rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
110rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
111
112rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
113rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
114
115uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
116
117// END CONSTANTS ----------------------------------------------------------------------------------
118
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700119// No locks needed because RouteController is accessed only from one thread (in CommandListener).
120std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400121
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700122uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700123 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400124 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700125 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
126 interfaceToTable[interface] = index;
127 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400128 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700129 // If the interface goes away if_nametoindex() will return 0 but we still need to know
130 // the index so we can remove the rules and routes.
131 auto iter = interfaceToTable.find(interface);
132 if (iter == interfaceToTable.end()) {
133 ALOGE("cannot find interface %s", interface);
134 return RT_TABLE_UNSPEC;
135 }
136 return iter->second;
137}
138
139void addTableName(uint32_t table, const std::string& name, std::string* contents) {
140 char tableString[UINT32_STRLEN];
141 snprintf(tableString, sizeof(tableString), "%u", table);
142 *contents += tableString;
143 *contents += " ";
144 *contents += name;
145 *contents += "\n";
146}
147
148// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
149void updateTableNamesFile() {
150 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700151
152 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
153 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
154
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700155 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700156 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
157 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700158
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700159 for (const auto& entry : interfaceToTable) {
160 addTableName(entry.second, entry.first, &contents);
161 }
162
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700163 int fd = open(RT_TABLES_PATH, RT_TABLES_FLAGS, RT_TABLES_MODE);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700164 if (fd == -1) {
165 ALOGE("failed to create %s (%s)", RT_TABLES_PATH, strerror(errno));
166 return;
167 }
168 // File creation is affected by umask, so make sure the right mode bits are set.
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700169 if (fchmod(fd, RT_TABLES_MODE) == -1) {
170 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 -0700171 }
172 ssize_t bytesWritten = write(fd, contents.data(), contents.size());
173 if (bytesWritten != static_cast<ssize_t>(contents.size())) {
174 ALOGE("failed to write to %s (%zd vs %zu bytes) (%s)", RT_TABLES_PATH, bytesWritten,
175 contents.size(), strerror(errno));
176 }
177 close(fd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700178}
179
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900180// Sends a netlink request and expects an ack.
181// |iov| is an array of struct iovec that contains the netlink message payload.
182// The netlink header is generated by this function based on |action| and |flags|.
183// Returns -errno if there was an error or if the kernel reported an error.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700184WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900185 nlmsghdr nlmsg = {
186 .nlmsg_type = action,
187 .nlmsg_flags = flags,
188 };
189 iov[0].iov_base = &nlmsg;
190 iov[0].iov_len = sizeof(nlmsg);
191 for (int i = 0; i < iovlen; ++i) {
192 nlmsg.nlmsg_len += iov[i].iov_len;
193 }
194
195 int ret;
196 struct {
197 nlmsghdr msg;
198 nlmsgerr err;
199 } response;
200
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900201 int sock = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
202 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700203 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
204 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900205 writev(sock, iov, iovlen) != -1 &&
206 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
207 if (ret == sizeof(response)) {
208 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700209 if (ret) {
210 ALOGE("netlink response contains error (%s)", strerror(-ret));
211 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900212 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700213 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900214 ret = -EBADMSG;
215 }
216 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700217 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900218 ret = -errno;
219 }
220
221 if (sock != -1) {
222 close(sock);
223 }
224
225 return ret;
226}
227
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700228// Returns 0 on success or negative errno on failure.
229int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
230 if (!input) {
231 *length = 0;
232 *padding = 0;
233 return 0;
234 }
235 *length = strlcpy(name, input, IFNAMSIZ) + 1;
236 if (*length > IFNAMSIZ) {
237 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
238 return -ENAMETOOLONG;
239 }
240 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
241 return 0;
242}
243
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700244// Adds or removes a routing rule for IPv4 and IPv6.
245//
246// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the rule
247// returns ENETUNREACH.
248// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
249// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700250// + If |iif| is non-NULL, the rule matches the specified incoming interface.
251// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
252// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
253// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900254//
255// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700256WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700257 uint32_t fwmark, uint32_t mask, const char* iif,
258 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700259 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
260 if (fwmark & ~mask) {
261 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
262 return -ERANGE;
263 }
264
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700265 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900266 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700267 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
268 size_t iifLength, oifLength;
269 uint16_t iifPadding, oifPadding;
270 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
271 return ret;
272 }
273 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
274 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900275 }
276
Lorenzo Colitti59656512014-06-25 03:20:29 +0900277 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700278 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700279 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900280 return -EUSERS;
281 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900282 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900283
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900284 // Assemble a rule request and put it in an array of iovec structures.
285 fib_rule_hdr rule = {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700286 .action = static_cast<uint8_t>(table != RT_TABLE_UNSPEC ? FR_ACT_TO_TBL :
287 FR_ACT_UNREACHABLE),
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900288 };
289
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700290 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
291 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900292
293 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700294 { NULL, 0 },
295 { &rule, sizeof(rule) },
296 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
297 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700298 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
299 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700300 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
301 { &fwmark, mask ? sizeof(fwmark) : 0 },
302 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
303 { &mask, mask ? sizeof(mask) : 0 },
304 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
305 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
306 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
307 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700308 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
309 { iifName, iifLength },
310 { PADDING_BUFFER, iifPadding },
311 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
312 { oifName, oifLength },
313 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900314 };
315
Lorenzo Colitti72723682014-06-26 13:51:10 +0900316 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700317 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
318 rule.family = AF_FAMILIES[i];
319 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900320 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700321 }
322 }
323
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900324 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700325}
326
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700327WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
328 uint32_t fwmark, uint32_t mask) {
329 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
330 INVALID_UID);
331}
332
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900333// Adds or deletes an IPv4 or IPv6 route.
334// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700335WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
336 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900337 // At least the destination must be non-null.
338 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700339 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900340 return -EFAULT;
341 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700342
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900343 // Parse the prefix.
344 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700345 uint8_t family;
346 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900347 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
348 &prefixLength);
349 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700350 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900351 return rawLength;
352 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700353
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900354 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700355 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900356 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
357 }
358
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700359 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900360 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900361 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700362
363 if (nexthop && !strcmp(nexthop, "unreachable")) {
364 type = RTN_UNREACHABLE;
365 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
366 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
367 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
368 interface = OIF_NONE;
369 nexthop = NULL;
370 } else {
371 // If an interface was specified, find the ifindex.
372 if (interface != OIF_NONE) {
373 ifindex = if_nametoindex(interface);
374 if (!ifindex) {
375 ALOGE("cannot find interface %s", interface);
376 return -ENODEV;
377 }
378 }
379
380 // If a nexthop was specified, parse it as the same family as the prefix.
381 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
382 ALOGE("inet_pton failed for nexthop %s", nexthop);
383 return -EINVAL;
384 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900385 }
386
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900387 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700388 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900389 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700390 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900391 .rtm_family = family,
392 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700393 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900394 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900395
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700396 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
397 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900398
399 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700400 { NULL, 0 },
401 { &route, sizeof(route) },
402 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
403 { &table, sizeof(table) },
404 { &rtaDst, sizeof(rtaDst) },
405 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700406 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
407 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700408 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
409 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900410 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900411
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700412 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
413 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900414 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700415}
416
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700417// An iptables rule to mark incoming packets on a network with the netId of the network.
418//
419// This is so that the kernel can:
420// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
421// replies, SYN-ACKs, etc).
422// + Mark sockets that accept connections from this interface so that the connection stays on the
423// same interface.
424WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
425 Permission permission, bool add) {
426 Fwmark fwmark;
427
428 fwmark.netId = netId;
429 fwmark.explicitlySelected = true;
430 fwmark.protectedFromVpn = true;
431 fwmark.permission = permission;
432
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700433 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700434 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
435
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700436 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
437 "MARK", "--set-mark", markString, NULL)) {
438 ALOGE("failed to change iptables rule that sets incoming packet mark");
439 return -EREMOTEIO;
440 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700441
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700442 return 0;
443}
444
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700445// A rule to route responses to the local network forwarded via the VPN.
446//
447// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
448// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
449WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
450 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
451 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
452 INVALID_UID, INVALID_UID);
453}
454
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700455// A rule to route all traffic from a given set of UIDs to go over the VPN.
456//
457// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
458// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
459// bypass the VPN if the protectedFromVpn bit is set.
460WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700461 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700462 Fwmark fwmark;
463 Fwmark mask;
464
465 fwmark.protectedFromVpn = false;
466 mask.protectedFromVpn = true;
467
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700468 uint32_t priority;
469
470 if (secure) {
471 priority = RULE_PRIORITY_SECURE_VPN;
472 } else {
473 priority = RULE_PRIORITY_BYPASSABLE_VPN;
474
475 fwmark.explicitlySelected = false;
476 mask.explicitlySelected = true;
477 }
478
479 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
480 mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700481}
482
483// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
484// set of UIDs.
485//
486// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
487// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700488WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
489 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700490 Fwmark fwmark;
491 Fwmark mask;
492
493 fwmark.netId = netId;
494 mask.netId = FWMARK_NET_ID_MASK;
495
496 fwmark.permission = PERMISSION_SYSTEM;
497 mask.permission = PERMISSION_SYSTEM;
498
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700499 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
500
501 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
502 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700503}
504
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700505// A rule to route traffic based on an explicitly chosen network.
506//
507// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
508//
509// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
510// to check it again in the rules here, because a network's permissions may have been updated via
511// modifyNetworkPermission().
512WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
513 Permission permission, uid_t uidStart,
514 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700515 Fwmark fwmark;
516 Fwmark mask;
517
518 fwmark.netId = netId;
519 mask.netId = FWMARK_NET_ID_MASK;
520
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700521 fwmark.explicitlySelected = true;
522 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700523
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700524 fwmark.permission = permission;
525 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700526
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700527 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700528 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700529}
530
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700531// A rule to route traffic based on a chosen outgoing interface.
532//
533// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
534// the outgoing interface (typically for link-local communications).
535WARN_UNUSED_RESULT int modifyOutputInterfaceRule(const char* interface, uint32_t table,
536 Permission permission, uid_t uidStart,
537 uid_t uidEnd, bool add) {
538 Fwmark fwmark;
539 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700540
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700541 fwmark.permission = permission;
542 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700543
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700544 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700545 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700546}
547
548// A rule to route traffic based on the chosen network.
549//
550// This is for sockets that have not explicitly requested a particular network, but have been
551// bound to one when they called connect(). This ensures that sockets connected on a particular
552// network stay on that network even if the default network changes.
553WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
554 Permission permission, bool add) {
555 Fwmark fwmark;
556 Fwmark mask;
557
558 fwmark.netId = netId;
559 mask.netId = FWMARK_NET_ID_MASK;
560
561 fwmark.explicitlySelected = false;
562 mask.explicitlySelected = true;
563
564 fwmark.permission = permission;
565 mask.permission = permission;
566
567 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700568 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700569}
570
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700571// A rule to enable split tunnel VPNs.
572//
573// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
574// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
575// permissions required by the default network.
576WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
577 const char* physicalInterface,
578 Permission permission) {
579 uint32_t table = getRouteTableForInterface(physicalInterface);
580 if (table == RT_TABLE_UNSPEC) {
581 return -ESRCH;
582 }
583
584 Fwmark fwmark;
585 Fwmark mask;
586
587 fwmark.netId = vpnNetId;
588 mask.netId = FWMARK_NET_ID_MASK;
589
590 fwmark.explicitlySelected = false;
591 mask.explicitlySelected = true;
592
593 fwmark.permission = permission;
594 mask.permission = permission;
595
596 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
597 mask.intValue);
598}
599
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700600// Add rules to allow legacy routes added through the requestRouteToHost() API.
601WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700602 Fwmark fwmark;
603 Fwmark mask;
604
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700605 fwmark.explicitlySelected = false;
606 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700607
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700608 // Rules to allow legacy routes to override the default network.
609 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
610 fwmark.intValue, mask.intValue)) {
611 return ret;
612 }
613 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
614 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
615 return ret;
616 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700617
618 fwmark.permission = PERMISSION_SYSTEM;
619 mask.permission = PERMISSION_SYSTEM;
620
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700621 // A rule to allow legacy routes from system apps to override VPNs.
622 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700623 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700624}
625
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700626// Add rules to lookup the local network when specified explicitly or otherwise.
627WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
628 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
629 INVALID_UID, INVALID_UID, ACTION_ADD)) {
630 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700631 }
632
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700633 Fwmark fwmark;
634 Fwmark mask;
635
636 fwmark.explicitlySelected = false;
637 mask.explicitlySelected = true;
638
639 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
640 fwmark.intValue, mask.intValue);
641}
642
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000643// 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 +0900644// rule, but with a lower priority. We will never create routes in the main table; it should only be
645// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
646// This is necessary, for example, when adding a route through a directly-connected gateway: in
647// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000648WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
649 Fwmark fwmark;
650 Fwmark mask;
651
652 fwmark.netId = NETID_UNSET;
653 mask.netId = FWMARK_NET_ID_MASK;
654
655 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
656 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
657}
658
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900659// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
660// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
661// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
662// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700663WARN_UNUSED_RESULT int addUnreachableRule() {
664 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
665 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700666}
667
668WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700669 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
670 return ret;
671 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700672 return modifyOutputInterfaceRule(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
673 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700674}
675
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700676WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
677 Permission permission, bool add) {
678 uint32_t table = getRouteTableForInterface(interface);
679 if (table == RT_TABLE_UNSPEC) {
680 return -ESRCH;
681 }
682
683 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
684 return ret;
685 }
686 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
687 add)) {
688 return ret;
689 }
690 if (int ret = modifyOutputInterfaceRule(interface, table, permission, INVALID_UID, INVALID_UID,
691 add)) {
692 return ret;
693 }
694 return modifyImplicitNetworkRule(netId, table, permission, add);
695}
696
697WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700698 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700699 bool modifyNonUidBasedRules) {
700 uint32_t table = getRouteTableForInterface(interface);
701 if (table == RT_TABLE_UNSPEC) {
702 return -ESRCH;
703 }
704
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700705 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700706 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700707 return ret;
708 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700709 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
710 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700711 return ret;
712 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700713 if (int ret = modifyOutputInterfaceRule(interface, table, PERMISSION_NONE, range.first,
714 range.second, add)) {
715 return ret;
716 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700717 }
718
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700719 if (modifyNonUidBasedRules) {
720 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700721 return ret;
722 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700723 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
724 return ret;
725 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700726 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700727 return ret;
728 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700729 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700730 }
731
732 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700733}
734
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700735WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
736 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700737 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700738 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900739 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700740 }
741
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700742 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700743 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700744
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700745 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700746 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700747
748 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700749 mask.permission = permission;
750
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700751 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700752 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700753}
754
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700755WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
756 const char* outputInterface) {
757 uint32_t table = getRouteTableForInterface(outputInterface);
758 if (table == RT_TABLE_UNSPEC) {
759 return -ESRCH;
760 }
761
762 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
763 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
764}
765
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700766// Returns 0 on success or negative errno on failure.
767WARN_UNUSED_RESULT int flushRules() {
768 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
769 const char* argv[] = {
770 IP_PATH,
771 IP_VERSIONS[i],
772 "rule",
773 "flush",
774 };
775 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
776 ALOGE("failed to flush rules");
777 return -EREMOTEIO;
778 }
779 }
780 return 0;
781}
782
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700783// 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 +0900784// route, to the main table as well.
785// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700786WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
787 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700788 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700789 switch (tableType) {
790 case RouteController::INTERFACE: {
791 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700792 if (table == RT_TABLE_UNSPEC) {
793 return -ESRCH;
794 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700795 break;
796 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700797 case RouteController::LOCAL_NETWORK: {
798 table = ROUTE_TABLE_LOCAL_NETWORK;
799 break;
800 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700801 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700802 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700803 break;
804 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700805 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700806 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700807 break;
808 }
809 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700810
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900811 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran1077d292014-06-27 06:42:11 -0700812 // We allow apps to call requestRouteToHost() multiple times with the same route, so ignore
813 // EEXIST failures when adding routes to legacy tables.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700814 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST &&
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700815 (tableType == RouteController::LEGACY_NETWORK ||
816 tableType == RouteController::LEGACY_SYSTEM))) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900817 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700818 }
819
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900820 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700821}
822
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700823// Returns 0 on success or negative errno on failure.
824WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700825 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700826 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700827 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700828 }
829
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900830 char tableString[UINT32_STRLEN];
831 snprintf(tableString, sizeof(tableString), "%u", table);
832
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900833 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700834 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900835 const char* argv[] = {
836 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700837 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700838 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900839 "flush",
840 "table",
841 tableString,
842 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900843
844 // A flush works by dumping routes and deleting each route as it's returned, and it can
845 // fail if something else deletes the route between the dump and the delete. This can
846 // happen, for example, if an interface goes down while we're trying to flush its routes.
847 // So try multiple times and only return an error if the last attempt fails.
848 //
849 // TODO: replace this with our own netlink code.
850 unsigned attempts = 0;
851 int err;
852 do {
853 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
854 NULL, false, false);
855 ++attempts;
856 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
857 if (err) {
858 ALOGE("failed to flush %s routes in table %s after %d attempts",
859 IP_VERSIONS[i], tableString, attempts);
860 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900861 }
862 }
863
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900864 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
865 // track of its name.
866 if (!ret) {
867 interfaceToTable.erase(interface);
868 }
869
870 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700871}
872
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700873} // namespace
874
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700875int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700876 if (int ret = flushRules()) {
877 return ret;
878 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700879 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700880 return ret;
881 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700882 if (int ret = addLocalNetworkRules(localNetId)) {
883 return ret;
884 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000885 if (int ret = addDirectlyConnectedRule()) {
886 return ret;
887 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700888 if (int ret = addUnreachableRule()) {
889 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700890 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700891 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700892 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700893}
894
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700895int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700896 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700897}
898
899int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700900 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700901}
902
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700903int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
904 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700905 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
906 return ret;
907 }
908 updateTableNamesFile();
909 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700910}
911
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700912int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
913 Permission permission) {
914 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700915 return ret;
916 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700917 if (int ret = flushRoutes(interface)) {
918 return ret;
919 }
920 updateTableNamesFile();
921 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700922}
923
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700924int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700925 bool secure, const UidRanges& uidRanges) {
926 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700927 MODIFY_NON_UID_BASED_RULES)) {
928 return ret;
929 }
930 updateTableNamesFile();
931 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700932}
933
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700934int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700935 bool secure, const UidRanges& uidRanges) {
936 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700937 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700938 return ret;
939 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700940 if (int ret = flushRoutes(interface)) {
941 return ret;
942 }
943 updateTableNamesFile();
944 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700945}
946
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700947int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
948 Permission oldPermission,
949 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700950 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700951 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700952 return ret;
953 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700954 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700955}
956
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700957int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700958 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700959 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700960 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700961}
962
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700963int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700964 bool secure, const UidRanges& uidRanges) {
965 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700966 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700967}
968
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700969int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
970 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700971}
972
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700973int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
974 Permission permission) {
975 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700976}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700977
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700978int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700979 TableType tableType) {
980 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700981}
982
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900983int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700984 const char* nexthop, TableType tableType) {
985 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700986}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700987
988int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700989 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700990}
991
992int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700993 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700994}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700995
996int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
997 Permission permission) {
998 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
999}
1000
1001int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1002 const char* physicalInterface,
1003 Permission permission) {
1004 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1005}