blob: 736aa740ba51b125b757e3123e0d34c333ac4ba1 [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
Elliott Hughesbd378322015-02-04 13:25:14 -080026#include <private/android_filesystem_config.h>
27
Dan Albertaa1be2b2015-01-06 09:36:17 -080028#include <map>
29
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070030#include "Fwmark.h"
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070031#include "UidRanges.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070032
Dan Albertb67219a2015-03-13 22:35:27 -070033#include "base/file.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070034#define LOG_TAG "Netd"
35#include "log/log.h"
36#include "logwrap/logwrap.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070037#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070038
Dan Albertb67219a2015-03-13 22:35:27 -070039using android::base::WriteStringToFile;
40
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070041namespace {
42
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070043// BEGIN CONSTANTS --------------------------------------------------------------------------------
44
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070045const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070046const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070047const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
48const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
49const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
50const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
51const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070052const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070053const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070054const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070055const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070056const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070057const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000058const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090059const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070060
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070061const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070062const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
63const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
64
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070065const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070066const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
67const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
68
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070069const char* const ROUTE_TABLE_NAME_LOCAL = "local";
70const char* const ROUTE_TABLE_NAME_MAIN = "main";
71
Lorenzo Colitti59656512014-06-25 03:20:29 +090072// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
73// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
74// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
75// that will warn us if upstream has given these values some other meaning.
76const uint16_t FRA_UID_START = 18;
77const uint16_t FRA_UID_END = 19;
78static_assert(FRA_UID_START > FRA_MAX,
79 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
80 "Check that these values match what the kernel does and then update this assertion.");
81
Lorenzo Colitti72723682014-06-26 13:51:10 +090082const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
83const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090084
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070085const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
86
87const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
88
89const char* const IP_VERSIONS[] = {"-4", "-6"};
90
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070091const uid_t UID_ROOT = 0;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070092const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070093const char* const OIF_NONE = NULL;
94const bool ACTION_ADD = true;
95const bool ACTION_DEL = false;
96const bool MODIFY_NON_UID_BASED_RULES = true;
97
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070098const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -070099const 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 -0700100
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900101const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
102
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700103// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
104// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
105constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
106 return RTA_LENGTH(x);
107}
108
109// These are practically const, but can't be declared so, because they are used to initialize
110// non-const pointers ("void* iov_base") in iovec arrays.
111rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
112rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
113rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
114rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
115rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
116rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
117
118rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
119rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
120
121uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
122
123// END CONSTANTS ----------------------------------------------------------------------------------
124
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700125// No locks needed because RouteController is accessed only from one thread (in CommandListener).
126std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400127
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700128uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700129 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400130 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700131 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
132 interfaceToTable[interface] = index;
133 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400134 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700135 // If the interface goes away if_nametoindex() will return 0 but we still need to know
136 // the index so we can remove the rules and routes.
137 auto iter = interfaceToTable.find(interface);
138 if (iter == interfaceToTable.end()) {
139 ALOGE("cannot find interface %s", interface);
140 return RT_TABLE_UNSPEC;
141 }
142 return iter->second;
143}
144
145void addTableName(uint32_t table, const std::string& name, std::string* contents) {
146 char tableString[UINT32_STRLEN];
147 snprintf(tableString, sizeof(tableString), "%u", table);
148 *contents += tableString;
149 *contents += " ";
150 *contents += name;
151 *contents += "\n";
152}
153
154// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
155void updateTableNamesFile() {
156 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700157
158 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
159 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
160
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700161 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700162 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
163 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700164
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700165 for (const auto& entry : interfaceToTable) {
166 addTableName(entry.second, entry.first, &contents);
167 }
168
Dan Albertb67219a2015-03-13 22:35:27 -0700169 if (!WriteStringToFile(contents, RT_TABLES_PATH, RT_TABLES_MODE, AID_SYSTEM, AID_WIFI)) {
Elliott Hughesbd378322015-02-04 13:25:14 -0800170 ALOGE("failed to write to %s (%s)", RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700171 return;
172 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700173}
174
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900175// Sends a netlink request and expects an ack.
176// |iov| is an array of struct iovec that contains the netlink message payload.
177// The netlink header is generated by this function based on |action| and |flags|.
178// Returns -errno if there was an error or if the kernel reported an error.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700179WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900180 nlmsghdr nlmsg = {
181 .nlmsg_type = action,
182 .nlmsg_flags = flags,
183 };
184 iov[0].iov_base = &nlmsg;
185 iov[0].iov_len = sizeof(nlmsg);
186 for (int i = 0; i < iovlen; ++i) {
187 nlmsg.nlmsg_len += iov[i].iov_len;
188 }
189
190 int ret;
191 struct {
192 nlmsghdr msg;
193 nlmsgerr err;
194 } response;
195
Nick Kralevich53ea9ca2015-01-31 13:54:00 -0800196 int sock = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900197 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700198 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
199 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900200 writev(sock, iov, iovlen) != -1 &&
201 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
202 if (ret == sizeof(response)) {
203 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700204 if (ret) {
205 ALOGE("netlink response contains error (%s)", strerror(-ret));
206 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900207 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700208 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900209 ret = -EBADMSG;
210 }
211 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700212 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900213 ret = -errno;
214 }
215
216 if (sock != -1) {
217 close(sock);
218 }
219
220 return ret;
221}
222
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700223// Returns 0 on success or negative errno on failure.
224int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
225 if (!input) {
226 *length = 0;
227 *padding = 0;
228 return 0;
229 }
230 *length = strlcpy(name, input, IFNAMSIZ) + 1;
231 if (*length > IFNAMSIZ) {
232 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
233 return -ENAMETOOLONG;
234 }
235 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
236 return 0;
237}
238
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700239// Adds or removes a routing rule for IPv4 and IPv6.
240//
241// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the rule
242// returns ENETUNREACH.
243// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
244// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700245// + If |iif| is non-NULL, the rule matches the specified incoming interface.
246// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
247// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
248// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900249//
250// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700251WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700252 uint32_t fwmark, uint32_t mask, const char* iif,
253 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700254 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
255 if (fwmark & ~mask) {
256 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
257 return -ERANGE;
258 }
259
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700260 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900261 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700262 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
263 size_t iifLength, oifLength;
264 uint16_t iifPadding, oifPadding;
265 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
266 return ret;
267 }
268 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
269 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900270 }
271
Lorenzo Colitti59656512014-06-25 03:20:29 +0900272 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700273 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700274 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900275 return -EUSERS;
276 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900277 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900278
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900279 // Assemble a rule request and put it in an array of iovec structures.
280 fib_rule_hdr rule = {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700281 .action = static_cast<uint8_t>(table != RT_TABLE_UNSPEC ? FR_ACT_TO_TBL :
282 FR_ACT_UNREACHABLE),
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900283 };
284
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700285 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
286 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900287
288 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700289 { NULL, 0 },
290 { &rule, sizeof(rule) },
291 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
292 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700293 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
294 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700295 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
296 { &fwmark, mask ? sizeof(fwmark) : 0 },
297 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
298 { &mask, mask ? sizeof(mask) : 0 },
299 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
300 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
301 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
302 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700303 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
304 { iifName, iifLength },
305 { PADDING_BUFFER, iifPadding },
306 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
307 { oifName, oifLength },
308 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900309 };
310
Lorenzo Colitti72723682014-06-26 13:51:10 +0900311 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700312 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
313 rule.family = AF_FAMILIES[i];
314 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900315 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700316 }
317 }
318
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900319 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700320}
321
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700322WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
323 uint32_t fwmark, uint32_t mask) {
324 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
325 INVALID_UID);
326}
327
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900328// Adds or deletes an IPv4 or IPv6 route.
329// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700330WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
331 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900332 // At least the destination must be non-null.
333 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700334 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900335 return -EFAULT;
336 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700337
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900338 // Parse the prefix.
339 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700340 uint8_t family;
341 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900342 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
343 &prefixLength);
344 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700345 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900346 return rawLength;
347 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700348
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900349 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700350 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900351 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
352 }
353
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700354 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900355 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900356 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700357
358 if (nexthop && !strcmp(nexthop, "unreachable")) {
359 type = RTN_UNREACHABLE;
360 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
361 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
362 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
363 interface = OIF_NONE;
364 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900365 } else if (nexthop && !strcmp(nexthop, "throw")) {
366 type = RTN_THROW;
367 interface = OIF_NONE;
368 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700369 } else {
370 // If an interface was specified, find the ifindex.
371 if (interface != OIF_NONE) {
372 ifindex = if_nametoindex(interface);
373 if (!ifindex) {
374 ALOGE("cannot find interface %s", interface);
375 return -ENODEV;
376 }
377 }
378
379 // If a nexthop was specified, parse it as the same family as the prefix.
380 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
381 ALOGE("inet_pton failed for nexthop %s", nexthop);
382 return -EINVAL;
383 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900384 }
385
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900386 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700387 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900388 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700389 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900390 .rtm_family = family,
391 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700392 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900393 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900394
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700395 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
396 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900397
398 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700399 { NULL, 0 },
400 { &route, sizeof(route) },
401 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
402 { &table, sizeof(table) },
403 { &rtaDst, sizeof(rtaDst) },
404 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700405 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
406 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700407 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
408 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900409 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900410
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700411 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
412 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900413 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700414}
415
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700416// An iptables rule to mark incoming packets on a network with the netId of the network.
417//
418// This is so that the kernel can:
419// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
420// replies, SYN-ACKs, etc).
421// + Mark sockets that accept connections from this interface so that the connection stays on the
422// same interface.
423WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
424 Permission permission, bool add) {
425 Fwmark fwmark;
426
427 fwmark.netId = netId;
428 fwmark.explicitlySelected = true;
429 fwmark.protectedFromVpn = true;
430 fwmark.permission = permission;
431
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700432 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700433 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
434
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700435 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
436 "MARK", "--set-mark", markString, NULL)) {
437 ALOGE("failed to change iptables rule that sets incoming packet mark");
438 return -EREMOTEIO;
439 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700440
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700441 return 0;
442}
443
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700444// A rule to route responses to the local network forwarded via the VPN.
445//
446// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
447// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
448WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
449 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
450 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
451 INVALID_UID, INVALID_UID);
452}
453
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700454// A rule to route all traffic from a given set of UIDs to go over the VPN.
455//
456// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
457// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
458// bypass the VPN if the protectedFromVpn bit is set.
459WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700460 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700461 Fwmark fwmark;
462 Fwmark mask;
463
464 fwmark.protectedFromVpn = false;
465 mask.protectedFromVpn = true;
466
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700467 uint32_t priority;
468
469 if (secure) {
470 priority = RULE_PRIORITY_SECURE_VPN;
471 } else {
472 priority = RULE_PRIORITY_BYPASSABLE_VPN;
473
474 fwmark.explicitlySelected = false;
475 mask.explicitlySelected = true;
476 }
477
478 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
479 mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700480}
481
482// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
483// set of UIDs.
484//
485// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
486// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700487WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
488 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700489 Fwmark fwmark;
490 Fwmark mask;
491
492 fwmark.netId = netId;
493 mask.netId = FWMARK_NET_ID_MASK;
494
495 fwmark.permission = PERMISSION_SYSTEM;
496 mask.permission = PERMISSION_SYSTEM;
497
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700498 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
499
500 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
501 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700502}
503
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700504// A rule to route traffic based on an explicitly chosen network.
505//
506// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
507//
508// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
509// to check it again in the rules here, because a network's permissions may have been updated via
510// modifyNetworkPermission().
511WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
512 Permission permission, uid_t uidStart,
513 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700514 Fwmark fwmark;
515 Fwmark mask;
516
517 fwmark.netId = netId;
518 mask.netId = FWMARK_NET_ID_MASK;
519
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700520 fwmark.explicitlySelected = true;
521 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700522
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700523 fwmark.permission = permission;
524 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700525
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700526 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700527 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700528}
529
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700530// A rule to route traffic based on a chosen outgoing interface.
531//
532// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
533// the outgoing interface (typically for link-local communications).
534WARN_UNUSED_RESULT int modifyOutputInterfaceRule(const char* interface, uint32_t table,
535 Permission permission, uid_t uidStart,
536 uid_t uidEnd, bool add) {
537 Fwmark fwmark;
538 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700539
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700540 fwmark.permission = permission;
541 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700542
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700543 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700544 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700545}
546
547// A rule to route traffic based on the chosen network.
548//
549// This is for sockets that have not explicitly requested a particular network, but have been
550// bound to one when they called connect(). This ensures that sockets connected on a particular
551// network stay on that network even if the default network changes.
552WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
553 Permission permission, bool add) {
554 Fwmark fwmark;
555 Fwmark mask;
556
557 fwmark.netId = netId;
558 mask.netId = FWMARK_NET_ID_MASK;
559
560 fwmark.explicitlySelected = false;
561 mask.explicitlySelected = true;
562
563 fwmark.permission = permission;
564 mask.permission = permission;
565
566 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700567 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700568}
569
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700570// A rule to enable split tunnel VPNs.
571//
572// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
573// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
574// permissions required by the default network.
575WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
576 const char* physicalInterface,
577 Permission permission) {
578 uint32_t table = getRouteTableForInterface(physicalInterface);
579 if (table == RT_TABLE_UNSPEC) {
580 return -ESRCH;
581 }
582
583 Fwmark fwmark;
584 Fwmark mask;
585
586 fwmark.netId = vpnNetId;
587 mask.netId = FWMARK_NET_ID_MASK;
588
589 fwmark.explicitlySelected = false;
590 mask.explicitlySelected = true;
591
592 fwmark.permission = permission;
593 mask.permission = permission;
594
595 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
596 mask.intValue);
597}
598
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700599// Add rules to allow legacy routes added through the requestRouteToHost() API.
600WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700601 Fwmark fwmark;
602 Fwmark mask;
603
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700604 fwmark.explicitlySelected = false;
605 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700606
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700607 // Rules to allow legacy routes to override the default network.
608 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
609 fwmark.intValue, mask.intValue)) {
610 return ret;
611 }
612 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
613 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
614 return ret;
615 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700616
617 fwmark.permission = PERMISSION_SYSTEM;
618 mask.permission = PERMISSION_SYSTEM;
619
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700620 // A rule to allow legacy routes from system apps to override VPNs.
621 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700622 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700623}
624
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700625// Add rules to lookup the local network when specified explicitly or otherwise.
626WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
627 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
628 INVALID_UID, INVALID_UID, ACTION_ADD)) {
629 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700630 }
631
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700632 Fwmark fwmark;
633 Fwmark mask;
634
635 fwmark.explicitlySelected = false;
636 mask.explicitlySelected = true;
637
638 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
639 fwmark.intValue, mask.intValue);
640}
641
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000642// 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 +0900643// rule, but with a lower priority. We will never create routes in the main table; it should only be
644// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
645// This is necessary, for example, when adding a route through a directly-connected gateway: in
646// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000647WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
648 Fwmark fwmark;
649 Fwmark mask;
650
651 fwmark.netId = NETID_UNSET;
652 mask.netId = FWMARK_NET_ID_MASK;
653
654 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
655 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
656}
657
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900658// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
659// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
660// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
661// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700662WARN_UNUSED_RESULT int addUnreachableRule() {
663 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
664 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700665}
666
667WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700668 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
669 return ret;
670 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700671 return modifyOutputInterfaceRule(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
672 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700673}
674
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700675WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
676 Permission permission, bool add) {
677 uint32_t table = getRouteTableForInterface(interface);
678 if (table == RT_TABLE_UNSPEC) {
679 return -ESRCH;
680 }
681
682 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
683 return ret;
684 }
685 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
686 add)) {
687 return ret;
688 }
689 if (int ret = modifyOutputInterfaceRule(interface, table, permission, INVALID_UID, INVALID_UID,
690 add)) {
691 return ret;
692 }
693 return modifyImplicitNetworkRule(netId, table, permission, add);
694}
695
696WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700697 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700698 bool modifyNonUidBasedRules) {
699 uint32_t table = getRouteTableForInterface(interface);
700 if (table == RT_TABLE_UNSPEC) {
701 return -ESRCH;
702 }
703
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700704 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700705 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700706 return ret;
707 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700708 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
709 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700710 return ret;
711 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700712 if (int ret = modifyOutputInterfaceRule(interface, table, PERMISSION_NONE, range.first,
713 range.second, add)) {
714 return ret;
715 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700716 }
717
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700718 if (modifyNonUidBasedRules) {
719 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700720 return ret;
721 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700722 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
723 return ret;
724 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700725 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700726 return ret;
727 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700728 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700729 }
730
731 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700732}
733
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700734WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
735 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700736 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700737 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900738 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700739 }
740
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700741 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700742 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700743
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700744 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700745 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700746
747 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700748 mask.permission = permission;
749
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700750 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700751 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700752}
753
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700754WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
755 const char* outputInterface) {
756 uint32_t table = getRouteTableForInterface(outputInterface);
757 if (table == RT_TABLE_UNSPEC) {
758 return -ESRCH;
759 }
760
761 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
762 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
763}
764
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700765// Returns 0 on success or negative errno on failure.
766WARN_UNUSED_RESULT int flushRules() {
767 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
768 const char* argv[] = {
769 IP_PATH,
770 IP_VERSIONS[i],
771 "rule",
772 "flush",
773 };
774 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
775 ALOGE("failed to flush rules");
776 return -EREMOTEIO;
777 }
778 }
779 return 0;
780}
781
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700782// 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 +0900783// route, to the main table as well.
784// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700785WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
786 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700787 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700788 switch (tableType) {
789 case RouteController::INTERFACE: {
790 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700791 if (table == RT_TABLE_UNSPEC) {
792 return -ESRCH;
793 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700794 break;
795 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700796 case RouteController::LOCAL_NETWORK: {
797 table = ROUTE_TABLE_LOCAL_NETWORK;
798 break;
799 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700800 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700801 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700802 break;
803 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700804 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700805 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700806 break;
807 }
808 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700809
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900810 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran03213152014-10-30 10:01:07 -0700811 // Trying to add a route that already exists shouldn't cause an error.
812 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900813 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700814 }
815
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900816 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700817}
818
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700819// Returns 0 on success or negative errno on failure.
820WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700821 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700822 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700823 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700824 }
825
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900826 char tableString[UINT32_STRLEN];
827 snprintf(tableString, sizeof(tableString), "%u", table);
828
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900829 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700830 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900831 const char* argv[] = {
832 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700833 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700834 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900835 "flush",
836 "table",
837 tableString,
838 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900839
840 // A flush works by dumping routes and deleting each route as it's returned, and it can
841 // fail if something else deletes the route between the dump and the delete. This can
842 // happen, for example, if an interface goes down while we're trying to flush its routes.
843 // So try multiple times and only return an error if the last attempt fails.
844 //
845 // TODO: replace this with our own netlink code.
846 unsigned attempts = 0;
847 int err;
848 do {
849 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
850 NULL, false, false);
851 ++attempts;
852 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
853 if (err) {
854 ALOGE("failed to flush %s routes in table %s after %d attempts",
855 IP_VERSIONS[i], tableString, attempts);
856 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900857 }
858 }
859
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900860 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
861 // track of its name.
862 if (!ret) {
863 interfaceToTable.erase(interface);
864 }
865
866 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700867}
868
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700869} // namespace
870
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700871int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700872 if (int ret = flushRules()) {
873 return ret;
874 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700875 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700876 return ret;
877 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700878 if (int ret = addLocalNetworkRules(localNetId)) {
879 return ret;
880 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000881 if (int ret = addDirectlyConnectedRule()) {
882 return ret;
883 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700884 if (int ret = addUnreachableRule()) {
885 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700886 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700887 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700888 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700889}
890
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700891int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700892 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700893}
894
895int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700896 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700897}
898
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700899int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
900 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700901 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
902 return ret;
903 }
904 updateTableNamesFile();
905 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700906}
907
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700908int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
909 Permission permission) {
910 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700911 return ret;
912 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700913 if (int ret = flushRoutes(interface)) {
914 return ret;
915 }
916 updateTableNamesFile();
917 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700918}
919
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700920int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700921 bool secure, const UidRanges& uidRanges) {
922 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700923 MODIFY_NON_UID_BASED_RULES)) {
924 return ret;
925 }
926 updateTableNamesFile();
927 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700928}
929
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700930int RouteController::removeInterfaceFromVirtualNetwork(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_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700933 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700934 return ret;
935 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700936 if (int ret = flushRoutes(interface)) {
937 return ret;
938 }
939 updateTableNamesFile();
940 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700941}
942
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700943int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
944 Permission oldPermission,
945 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700946 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700947 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700948 return ret;
949 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700950 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700951}
952
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700953int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700954 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700955 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700956 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700957}
958
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700959int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700960 bool secure, const UidRanges& uidRanges) {
961 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700962 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700963}
964
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700965int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
966 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700967}
968
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700969int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
970 Permission permission) {
971 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700972}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700973
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700974int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700975 TableType tableType) {
976 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700977}
978
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900979int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700980 const char* nexthop, TableType tableType) {
981 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700982}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700983
984int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700985 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700986}
987
988int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700989 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700990}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700991
992int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
993 Permission permission) {
994 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
995}
996
997int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
998 const char* physicalInterface,
999 Permission permission) {
1000 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1001}