blob: 48c609d6016da3f8eef56a3c0e3ee8f56848cb75 [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"
Lorenzo Colitti36679362015-02-25 10:26:19 +090032#include "DummyNetwork.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070033
Elliott Hughesbbd56262015-12-04 15:45:10 -080034#include "android-base/file.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070035#define LOG_TAG "Netd"
36#include "log/log.h"
37#include "logwrap/logwrap.h"
Lorenzo Colitti36679362015-02-25 10:26:19 +090038#include "netutils/ifc.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070039#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070040
Dan Albert5407e142015-03-16 10:05:59 -070041using android::base::WriteStringToFile;
Robin Leedc0d5782016-07-20 14:17:11 +010042using android::net::UidRange;
Dan Albert5407e142015-03-16 10:05:59 -070043
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070044namespace {
45
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070046// BEGIN CONSTANTS --------------------------------------------------------------------------------
47
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070048const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Lorenzo Colitti57947f02015-02-27 16:45:55 +090049const uint32_t RULE_PRIORITY_VPN_OVERRIDE_OIF = 10500;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070050const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070051const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
Robin Lee6c84ef62016-05-03 13:17:58 +010052const uint32_t RULE_PRIORITY_PROHIBIT_NON_VPN = 12500;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070053const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
54const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
55const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
56const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070057const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070058const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070059const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070060const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070061const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070062const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000063const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090064const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070065
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070066const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070067const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
68const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
69
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070070const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070071const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
72const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
73
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070074const char* const ROUTE_TABLE_NAME_LOCAL = "local";
75const char* const ROUTE_TABLE_NAME_MAIN = "main";
76
Lorenzo Colitti2b078672016-12-16 18:45:03 +090077// TODO: These values aren't defined by the Linux kernel, because legacy UID routing (as used in N
78// and below) was not upstreamed. Now that the UID routing code is upstream, we should remove these
79// and rely on the kernel header values.
Lorenzo Colitti59656512014-06-25 03:20:29 +090080const uint16_t FRA_UID_START = 18;
81const uint16_t FRA_UID_END = 19;
Lorenzo Colitti2b078672016-12-16 18:45:03 +090082
83// These values are upstream, but not yet in our headers.
84// TODO: delete these definitions when updating the headers.
85const uint16_t FRA_UID_RANGE = 20;
86struct fib_rule_uid_range {
87 __u32 start;
88 __u32 end;
89};
Lorenzo Colitti59656512014-06-25 03:20:29 +090090
Lorenzo Colitti72723682014-06-26 13:51:10 +090091const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
92const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090093
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070094const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
95
96const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
97
98const char* const IP_VERSIONS[] = {"-4", "-6"};
99
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700100const uid_t UID_ROOT = 0;
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900101const char* const IIF_LOOPBACK = "lo";
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700102const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700103const char* const OIF_NONE = NULL;
104const bool ACTION_ADD = true;
105const bool ACTION_DEL = false;
106const bool MODIFY_NON_UID_BASED_RULES = true;
107
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700108const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700109const 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 -0700110
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900111const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
112
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700113// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
114// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
115constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
116 return RTA_LENGTH(x);
117}
118
119// These are practically const, but can't be declared so, because they are used to initialize
120// non-const pointers ("void* iov_base") in iovec arrays.
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900121rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
122rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
123rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
124rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
125rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
126rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
127rtattr FRATTR_UID_RANGE = { U16_RTA_LENGTH(sizeof(fib_rule_uid_range)), FRA_UID_RANGE };
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700128
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900129rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
130rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700131
132uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
133
134// END CONSTANTS ----------------------------------------------------------------------------------
135
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700136// No locks needed because RouteController is accessed only from one thread (in CommandListener).
137std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400138
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700139uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700140 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400141 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700142 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
143 interfaceToTable[interface] = index;
144 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400145 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700146 // If the interface goes away if_nametoindex() will return 0 but we still need to know
147 // the index so we can remove the rules and routes.
148 auto iter = interfaceToTable.find(interface);
149 if (iter == interfaceToTable.end()) {
150 ALOGE("cannot find interface %s", interface);
151 return RT_TABLE_UNSPEC;
152 }
153 return iter->second;
154}
155
156void addTableName(uint32_t table, const std::string& name, std::string* contents) {
157 char tableString[UINT32_STRLEN];
158 snprintf(tableString, sizeof(tableString), "%u", table);
159 *contents += tableString;
160 *contents += " ";
161 *contents += name;
162 *contents += "\n";
163}
164
165// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
166void updateTableNamesFile() {
167 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700168
169 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
170 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
171
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700172 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700173 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
174 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700175
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700176 for (const auto& entry : interfaceToTable) {
177 addTableName(entry.second, entry.first, &contents);
178 }
179
Dan Albert5407e142015-03-16 10:05:59 -0700180 if (!WriteStringToFile(contents, RT_TABLES_PATH, RT_TABLES_MODE, AID_SYSTEM, AID_WIFI)) {
Elliott Hughesbd378322015-02-04 13:25:14 -0800181 ALOGE("failed to write to %s (%s)", RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700182 return;
183 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700184}
185
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900186// Sends a netlink request and expects an ack.
187// |iov| is an array of struct iovec that contains the netlink message payload.
188// The netlink header is generated by this function based on |action| and |flags|.
189// Returns -errno if there was an error or if the kernel reported an error.
Evgenii Stepanovf65122c2016-02-11 16:55:56 -0800190
191// Disable optimizations in ASan build.
192// ASan reports an out-of-bounds 32-bit(!) access in the first loop of the
193// function (over iov[]).
194#ifdef __clang__
195#if __has_feature(address_sanitizer)
196__attribute__((optnone))
197#endif
198#endif
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700199WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900200 nlmsghdr nlmsg = {
201 .nlmsg_type = action,
202 .nlmsg_flags = flags,
203 };
204 iov[0].iov_base = &nlmsg;
205 iov[0].iov_len = sizeof(nlmsg);
206 for (int i = 0; i < iovlen; ++i) {
207 nlmsg.nlmsg_len += iov[i].iov_len;
208 }
209
210 int ret;
211 struct {
212 nlmsghdr msg;
213 nlmsgerr err;
214 } response;
215
Nick Kralevich53ea9ca2015-01-31 13:54:00 -0800216 int sock = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900217 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700218 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
219 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900220 writev(sock, iov, iovlen) != -1 &&
221 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
222 if (ret == sizeof(response)) {
223 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700224 if (ret) {
225 ALOGE("netlink response contains error (%s)", strerror(-ret));
226 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900227 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700228 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900229 ret = -EBADMSG;
230 }
231 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700232 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900233 ret = -errno;
234 }
235
236 if (sock != -1) {
237 close(sock);
238 }
239
240 return ret;
241}
242
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700243// Returns 0 on success or negative errno on failure.
244int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
245 if (!input) {
246 *length = 0;
247 *padding = 0;
248 return 0;
249 }
250 *length = strlcpy(name, input, IFNAMSIZ) + 1;
251 if (*length > IFNAMSIZ) {
252 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
253 return -ENAMETOOLONG;
254 }
255 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
256 return 0;
257}
258
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700259// Adds or removes a routing rule for IPv4 and IPv6.
260//
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900261// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the table is
Robin Lee4ef94642016-04-01 11:50:49 +0100262// unspecified. An unspecified table is not allowed when creating an FR_ACT_TO_TBL rule.
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700263// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
264// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700265// + If |iif| is non-NULL, the rule matches the specified incoming interface.
266// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
267// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
268// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900269//
270// Returns 0 on success or negative errno on failure.
Robin Lee4ef94642016-04-01 11:50:49 +0100271WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint8_t ruleType,
272 uint32_t table, uint32_t fwmark, uint32_t mask, const char* iif,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700273 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700274 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
275 if (fwmark & ~mask) {
276 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
277 return -ERANGE;
278 }
279
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700280 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900281 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700282 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
283 size_t iifLength, oifLength;
284 uint16_t iifPadding, oifPadding;
285 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
286 return ret;
287 }
288 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
289 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900290 }
291
Lorenzo Colitti59656512014-06-25 03:20:29 +0900292 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700293 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700294 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900295 return -EUSERS;
296 }
Robin Lee4ef94642016-04-01 11:50:49 +0100297
Lorenzo Colitti72723682014-06-26 13:51:10 +0900298 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900299
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900300 // Assemble a rule request and put it in an array of iovec structures.
301 fib_rule_hdr rule = {
Robin Lee4ef94642016-04-01 11:50:49 +0100302 .action = ruleType,
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900303 // Note that here we're implicitly setting rule.table to 0. When we want to specify a
304 // non-zero table, we do this via the FRATTR_TABLE attribute.
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900305 };
306
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900307 // Don't ever create a rule that looks up table 0, because table 0 is the local table.
308 // It's OK to specify a table ID of 0 when deleting a rule, because that doesn't actually select
309 // table 0, it's a wildcard that matches anything.
310 if (table == RT_TABLE_UNSPEC && rule.action == FR_ACT_TO_TBL && action != RTM_DELRULE) {
311 ALOGE("RT_TABLE_UNSPEC only allowed when deleting rules");
312 return -ENOTUNIQ;
313 }
314
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700315 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
316 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900317 struct fib_rule_uid_range uidRange = { uidStart, uidEnd };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900318
319 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700320 { NULL, 0 },
321 { &rule, sizeof(rule) },
322 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
323 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700324 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
325 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700326 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
327 { &fwmark, mask ? sizeof(fwmark) : 0 },
328 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
329 { &mask, mask ? sizeof(mask) : 0 },
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900330 // Rules that contain both legacy and new UID routing attributes will work on old kernels,
331 // which will simply ignore the FRA_UID_RANGE attribute since it is larger than their
332 // FRA_MAX. They will also work on kernels that are not too new:
333 // - FRA_UID_START clashes with FRA_PAD in 4.7, but that shouldn't be a problem because
334 // FRA_PAD has no validation.
335 // - FRA_UID_END clashes with FRA_L3MDEV in 4.8 and above, and will cause an error because
336 // FRA_L3MDEV has a maximum length of 1.
337 // TODO: delete the legacy UID routing code before running it on 4.8 or above.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700338 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
339 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
340 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
341 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900342 { &FRATTR_UID_RANGE, isUidRule ? sizeof(FRATTR_UID_RANGE) : 0 },
343 { &uidRange, isUidRule ? sizeof(uidRange) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700344 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
345 { iifName, iifLength },
346 { PADDING_BUFFER, iifPadding },
347 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
348 { oifName, oifLength },
349 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900350 };
351
Lorenzo Colitti72723682014-06-26 13:51:10 +0900352 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700353 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
354 rule.family = AF_FAMILIES[i];
355 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900356 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700357 }
358 }
359
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900360 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700361}
362
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700363WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Robin Lee4ef94642016-04-01 11:50:49 +0100364 uint32_t fwmark, uint32_t mask, const char* iif,
365 const char* oif, uid_t uidStart, uid_t uidEnd) {
366 return modifyIpRule(action, priority, FR_ACT_TO_TBL, table, fwmark, mask, iif, oif, uidStart,
367 uidEnd);
368}
369
370WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700371 uint32_t fwmark, uint32_t mask) {
372 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
373 INVALID_UID);
374}
375
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900376// Adds or deletes an IPv4 or IPv6 route.
377// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700378WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
379 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900380 // At least the destination must be non-null.
381 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700382 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900383 return -EFAULT;
384 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700385
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900386 // Parse the prefix.
387 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700388 uint8_t family;
389 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900390 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
391 &prefixLength);
392 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700393 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900394 return rawLength;
395 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700396
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900397 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700398 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900399 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
400 }
401
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700402 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900403 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900404 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700405
406 if (nexthop && !strcmp(nexthop, "unreachable")) {
407 type = RTN_UNREACHABLE;
408 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
409 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
410 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
411 interface = OIF_NONE;
412 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900413 } else if (nexthop && !strcmp(nexthop, "throw")) {
414 type = RTN_THROW;
415 interface = OIF_NONE;
416 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700417 } else {
418 // If an interface was specified, find the ifindex.
419 if (interface != OIF_NONE) {
420 ifindex = if_nametoindex(interface);
421 if (!ifindex) {
422 ALOGE("cannot find interface %s", interface);
423 return -ENODEV;
424 }
425 }
426
427 // If a nexthop was specified, parse it as the same family as the prefix.
428 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
429 ALOGE("inet_pton failed for nexthop %s", nexthop);
430 return -EINVAL;
431 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900432 }
433
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900434 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700435 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900436 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700437 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900438 .rtm_family = family,
439 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700440 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900441 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900442
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700443 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
444 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900445
446 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700447 { NULL, 0 },
448 { &route, sizeof(route) },
449 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
450 { &table, sizeof(table) },
451 { &rtaDst, sizeof(rtaDst) },
452 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700453 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
454 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700455 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
456 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900457 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900458
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700459 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
460 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900461 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700462}
463
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700464// An iptables rule to mark incoming packets on a network with the netId of the network.
465//
466// This is so that the kernel can:
467// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
468// replies, SYN-ACKs, etc).
469// + Mark sockets that accept connections from this interface so that the connection stays on the
470// same interface.
471WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
472 Permission permission, bool add) {
473 Fwmark fwmark;
474
475 fwmark.netId = netId;
476 fwmark.explicitlySelected = true;
477 fwmark.protectedFromVpn = true;
478 fwmark.permission = permission;
479
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700480 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700481 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
482
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700483 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
484 "MARK", "--set-mark", markString, NULL)) {
485 ALOGE("failed to change iptables rule that sets incoming packet mark");
486 return -EREMOTEIO;
487 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700488
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700489 return 0;
490}
491
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700492// A rule to route responses to the local network forwarded via the VPN.
493//
494// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
495// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
496WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
497 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
498 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
499 INVALID_UID, INVALID_UID);
500}
501
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700502// A rule to route all traffic from a given set of UIDs to go over the VPN.
503//
504// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
505// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
506// bypass the VPN if the protectedFromVpn bit is set.
507WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700508 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700509 Fwmark fwmark;
510 Fwmark mask;
511
512 fwmark.protectedFromVpn = false;
513 mask.protectedFromVpn = true;
514
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700515 uint32_t priority;
516
517 if (secure) {
518 priority = RULE_PRIORITY_SECURE_VPN;
519 } else {
520 priority = RULE_PRIORITY_BYPASSABLE_VPN;
521
522 fwmark.explicitlySelected = false;
523 mask.explicitlySelected = true;
524 }
525
526 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900527 mask.intValue, IIF_LOOPBACK, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700528}
529
530// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
531// set of UIDs.
532//
533// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
534// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700535WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
536 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700537 Fwmark fwmark;
538 Fwmark mask;
539
540 fwmark.netId = netId;
541 mask.netId = FWMARK_NET_ID_MASK;
542
543 fwmark.permission = PERMISSION_SYSTEM;
544 mask.permission = PERMISSION_SYSTEM;
545
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700546 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
547
548 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
549 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700550}
551
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700552// A rule to route traffic based on an explicitly chosen network.
553//
554// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
555//
556// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
557// to check it again in the rules here, because a network's permissions may have been updated via
558// modifyNetworkPermission().
559WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
560 Permission permission, uid_t uidStart,
561 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700562 Fwmark fwmark;
563 Fwmark mask;
564
565 fwmark.netId = netId;
566 mask.netId = FWMARK_NET_ID_MASK;
567
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700568 fwmark.explicitlySelected = true;
569 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700570
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700571 fwmark.permission = permission;
572 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700573
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700574 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700575 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700576}
577
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700578// A rule to route traffic based on a chosen outgoing interface.
579//
580// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
581// the outgoing interface (typically for link-local communications).
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900582WARN_UNUSED_RESULT int modifyOutputInterfaceRules(const char* interface, uint32_t table,
583 Permission permission, uid_t uidStart,
584 uid_t uidEnd, bool add) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700585 Fwmark fwmark;
586 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700587
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700588 fwmark.permission = permission;
589 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700590
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900591 // If this rule does not specify a UID range, then also add a corresponding high-priority rule
592 // for UID. This covers forwarded packets and system daemons such as the tethering DHCP server.
593 if (uidStart == INVALID_UID && uidEnd == INVALID_UID) {
594 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OVERRIDE_OIF,
595 table, fwmark.intValue, mask.intValue, IIF_NONE, interface,
596 UID_ROOT, UID_ROOT)) {
597 return ret;
598 }
599 }
600
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700601 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700602 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700603}
604
605// A rule to route traffic based on the chosen network.
606//
607// This is for sockets that have not explicitly requested a particular network, but have been
608// bound to one when they called connect(). This ensures that sockets connected on a particular
609// network stay on that network even if the default network changes.
610WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
611 Permission permission, bool add) {
612 Fwmark fwmark;
613 Fwmark mask;
614
615 fwmark.netId = netId;
616 mask.netId = FWMARK_NET_ID_MASK;
617
618 fwmark.explicitlySelected = false;
619 mask.explicitlySelected = true;
620
621 fwmark.permission = permission;
622 mask.permission = permission;
623
624 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700625 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700626}
627
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700628// A rule to enable split tunnel VPNs.
629//
630// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
631// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
632// permissions required by the default network.
633WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
634 const char* physicalInterface,
635 Permission permission) {
636 uint32_t table = getRouteTableForInterface(physicalInterface);
637 if (table == RT_TABLE_UNSPEC) {
638 return -ESRCH;
639 }
640
641 Fwmark fwmark;
642 Fwmark mask;
643
644 fwmark.netId = vpnNetId;
645 mask.netId = FWMARK_NET_ID_MASK;
646
647 fwmark.explicitlySelected = false;
648 mask.explicitlySelected = true;
649
650 fwmark.permission = permission;
651 mask.permission = permission;
652
653 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
654 mask.intValue);
655}
656
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700657// Add rules to allow legacy routes added through the requestRouteToHost() API.
658WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700659 Fwmark fwmark;
660 Fwmark mask;
661
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700662 fwmark.explicitlySelected = false;
663 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700664
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700665 // Rules to allow legacy routes to override the default network.
666 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
667 fwmark.intValue, mask.intValue)) {
668 return ret;
669 }
670 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
671 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
672 return ret;
673 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700674
675 fwmark.permission = PERMISSION_SYSTEM;
676 mask.permission = PERMISSION_SYSTEM;
677
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700678 // A rule to allow legacy routes from system apps to override VPNs.
679 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700680 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700681}
682
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700683// Add rules to lookup the local network when specified explicitly or otherwise.
684WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
685 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
686 INVALID_UID, INVALID_UID, ACTION_ADD)) {
687 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700688 }
689
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700690 Fwmark fwmark;
691 Fwmark mask;
692
693 fwmark.explicitlySelected = false;
694 mask.explicitlySelected = true;
695
696 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
697 fwmark.intValue, mask.intValue);
698}
699
Lorenzo Colitti36679362015-02-25 10:26:19 +0900700int configureDummyNetwork() {
701 const char *interface = DummyNetwork::INTERFACE_NAME;
702 uint32_t table = getRouteTableForInterface(interface);
703 if (table == RT_TABLE_UNSPEC) {
704 // getRouteTableForInterface has already looged an error.
705 return -ESRCH;
706 }
707
708 ifc_init();
709 int ret = ifc_up(interface);
710 ifc_close();
711 if (ret) {
712 ALOGE("Can't bring up %s: %s", interface, strerror(errno));
713 return -errno;
714 }
715
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900716 if ((ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
717 INVALID_UID, INVALID_UID, ACTION_ADD))) {
718 ALOGE("Can't create oif rules for %s: %s", interface, strerror(-ret));
Lorenzo Colitti36679362015-02-25 10:26:19 +0900719 return ret;
720 }
721
722 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "0.0.0.0/0", NULL))) {
723 ALOGE("Can't add IPv4 default route to %s: %s", interface, strerror(-ret));
724 return ret;
725 }
726
727 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "::/0", NULL))) {
728 ALOGE("Can't add IPv6 default route to %s: %s", interface, strerror(-ret));
729 return ret;
730 }
731
732 return 0;
733}
734
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000735// 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 +0900736// rule, but with a lower priority. We will never create routes in the main table; it should only be
737// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
738// This is necessary, for example, when adding a route through a directly-connected gateway: in
739// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000740WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
741 Fwmark fwmark;
742 Fwmark mask;
743
744 fwmark.netId = NETID_UNSET;
745 mask.netId = FWMARK_NET_ID_MASK;
746
747 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
748 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
749}
750
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900751// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
752// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
753// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
754// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700755WARN_UNUSED_RESULT int addUnreachableRule() {
Robin Leec125fe42016-05-02 08:53:34 +0100756 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, FR_ACT_UNREACHABLE, RT_TABLE_UNSPEC,
757 MARK_UNSET, MARK_UNSET, IIF_NONE, OIF_NONE, INVALID_UID, INVALID_UID);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700758}
759
760WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700761 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
762 return ret;
763 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900764 return modifyOutputInterfaceRules(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
765 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700766}
767
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700768WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
769 Permission permission, bool add) {
770 uint32_t table = getRouteTableForInterface(interface);
771 if (table == RT_TABLE_UNSPEC) {
772 return -ESRCH;
773 }
774
775 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
776 return ret;
777 }
778 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
779 add)) {
780 return ret;
781 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900782 if (int ret = modifyOutputInterfaceRules(interface, table, permission, INVALID_UID, INVALID_UID,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700783 add)) {
784 return ret;
785 }
786 return modifyImplicitNetworkRule(netId, table, permission, add);
787}
788
Robin Leeb8087362016-03-30 18:43:08 +0100789WARN_UNUSED_RESULT int modifyRejectNonSecureNetworkRule(const UidRanges& uidRanges, bool add) {
790 Fwmark fwmark;
791 Fwmark mask;
792 fwmark.protectedFromVpn = false;
793 mask.protectedFromVpn = true;
794
Robin Leedc0d5782016-07-20 14:17:11 +0100795 for (const UidRange& range : uidRanges.getRanges()) {
Robin Leeb8087362016-03-30 18:43:08 +0100796 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE,
797 RULE_PRIORITY_PROHIBIT_NON_VPN, FR_ACT_PROHIBIT, RT_TABLE_UNSPEC,
798 fwmark.intValue, mask.intValue, IIF_LOOPBACK, OIF_NONE,
Robin Leedc0d5782016-07-20 14:17:11 +0100799 range.getStart(), range.getStop())) {
Robin Leeb8087362016-03-30 18:43:08 +0100800 return ret;
801 }
802 }
803
804 return 0;
805}
806
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700807WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700808 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700809 bool modifyNonUidBasedRules) {
810 uint32_t table = getRouteTableForInterface(interface);
811 if (table == RT_TABLE_UNSPEC) {
812 return -ESRCH;
813 }
814
Robin Leedc0d5782016-07-20 14:17:11 +0100815 for (const UidRange& range : uidRanges.getRanges()) {
816 if (int ret = modifyVpnUidRangeRule(table, range.getStart(), range.getStop(), secure, add))
817 {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700818 return ret;
819 }
Robin Leedc0d5782016-07-20 14:17:11 +0100820 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.getStart(),
821 range.getStop(), add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700822 return ret;
823 }
Robin Leedc0d5782016-07-20 14:17:11 +0100824 if (int ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
825 range.getStart(), range.getStop(), add)) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700826 return ret;
827 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700828 }
829
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700830 if (modifyNonUidBasedRules) {
831 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700832 return ret;
833 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700834 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
835 return ret;
836 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700837 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700838 return ret;
839 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700840 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700841 }
842
843 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700844}
845
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700846WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
847 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700848 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700849 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900850 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700851 }
852
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700853 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700854 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700855
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700856 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700857 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700858
859 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700860 mask.permission = permission;
861
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700862 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700863 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700864}
865
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700866WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
867 const char* outputInterface) {
868 uint32_t table = getRouteTableForInterface(outputInterface);
869 if (table == RT_TABLE_UNSPEC) {
870 return -ESRCH;
871 }
872
873 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
874 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
875}
876
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700877// Returns 0 on success or negative errno on failure.
878WARN_UNUSED_RESULT int flushRules() {
879 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
880 const char* argv[] = {
881 IP_PATH,
882 IP_VERSIONS[i],
883 "rule",
884 "flush",
885 };
886 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
887 ALOGE("failed to flush rules");
888 return -EREMOTEIO;
889 }
890 }
891 return 0;
892}
893
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700894// 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 +0900895// route, to the main table as well.
896// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700897WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
898 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700899 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700900 switch (tableType) {
901 case RouteController::INTERFACE: {
902 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700903 if (table == RT_TABLE_UNSPEC) {
904 return -ESRCH;
905 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700906 break;
907 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700908 case RouteController::LOCAL_NETWORK: {
909 table = ROUTE_TABLE_LOCAL_NETWORK;
910 break;
911 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700912 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700913 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700914 break;
915 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700916 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700917 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700918 break;
919 }
920 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700921
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900922 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran03213152014-10-30 10:01:07 -0700923 // Trying to add a route that already exists shouldn't cause an error.
924 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900925 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700926 }
927
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900928 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700929}
930
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700931// Returns 0 on success or negative errno on failure.
932WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700933 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700934 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700935 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700936 }
937
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900938 char tableString[UINT32_STRLEN];
939 snprintf(tableString, sizeof(tableString), "%u", table);
940
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900941 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700942 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900943 const char* argv[] = {
944 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700945 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700946 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900947 "flush",
948 "table",
949 tableString,
950 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900951
952 // A flush works by dumping routes and deleting each route as it's returned, and it can
953 // fail if something else deletes the route between the dump and the delete. This can
954 // happen, for example, if an interface goes down while we're trying to flush its routes.
955 // So try multiple times and only return an error if the last attempt fails.
956 //
957 // TODO: replace this with our own netlink code.
958 unsigned attempts = 0;
959 int err;
960 do {
961 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
962 NULL, false, false);
963 ++attempts;
964 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
965 if (err) {
966 ALOGE("failed to flush %s routes in table %s after %d attempts",
967 IP_VERSIONS[i], tableString, attempts);
968 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900969 }
970 }
971
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900972 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
973 // track of its name.
974 if (!ret) {
975 interfaceToTable.erase(interface);
976 }
977
978 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700979}
980
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900981WARN_UNUSED_RESULT int clearTetheringRules(const char* inputInterface) {
982 int ret = 0;
983 while (ret == 0) {
984 ret = modifyIpRule(RTM_DELRULE, RULE_PRIORITY_TETHERING, 0, MARK_UNSET, MARK_UNSET,
985 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
986 }
987
988 if (ret == -ENOENT) {
989 return 0;
990 } else {
991 return ret;
992 }
993}
994
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700995} // namespace
996
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700997int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700998 if (int ret = flushRules()) {
999 return ret;
1000 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001001 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001002 return ret;
1003 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001004 if (int ret = addLocalNetworkRules(localNetId)) {
1005 return ret;
1006 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +00001007 if (int ret = addDirectlyConnectedRule()) {
1008 return ret;
1009 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -07001010 if (int ret = addUnreachableRule()) {
1011 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001012 }
Lorenzo Colitti36679362015-02-25 10:26:19 +09001013 // Don't complain if we can't add the dummy network, since not all devices support it.
1014 configureDummyNetwork();
1015
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001016 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001017 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -07001018}
1019
Sreeram Ramachandran6a773532014-07-11 09:10:20 -07001020int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001021 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -07001022}
1023
1024int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001025 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -07001026}
1027
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001028int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
1029 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001030 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
1031 return ret;
1032 }
1033 updateTableNamesFile();
1034 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001035}
1036
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001037int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
1038 Permission permission) {
1039 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001040 return ret;
1041 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001042 if (int ret = flushRoutes(interface)) {
1043 return ret;
1044 }
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +09001045 if (int ret = clearTetheringRules(interface)) {
1046 return ret;
1047 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001048 updateTableNamesFile();
1049 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001050}
1051
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001052int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001053 bool secure, const UidRanges& uidRanges) {
1054 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001055 MODIFY_NON_UID_BASED_RULES)) {
1056 return ret;
1057 }
1058 updateTableNamesFile();
1059 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001060}
1061
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001062int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001063 bool secure, const UidRanges& uidRanges) {
1064 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001065 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001066 return ret;
1067 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001068 if (int ret = flushRoutes(interface)) {
1069 return ret;
1070 }
1071 updateTableNamesFile();
1072 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001073}
1074
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001075int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
1076 Permission oldPermission,
1077 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001078 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001079 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001080 return ret;
1081 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001082 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001083}
1084
Robin Leeb8087362016-03-30 18:43:08 +01001085int RouteController::addUsersToRejectNonSecureNetworkRule(const UidRanges& uidRanges) {
1086 return modifyRejectNonSecureNetworkRule(uidRanges, true);
1087}
1088
1089int RouteController::removeUsersFromRejectNonSecureNetworkRule(const UidRanges& uidRanges) {
1090 return modifyRejectNonSecureNetworkRule(uidRanges, false);
1091}
1092
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001093int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001094 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001095 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001096 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001097}
1098
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001099int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001100 bool secure, const UidRanges& uidRanges) {
1101 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001102 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001103}
1104
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001105int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
1106 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001107}
1108
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001109int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
1110 Permission permission) {
1111 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001112}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001113
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001114int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001115 TableType tableType) {
1116 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001117}
1118
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +09001119int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001120 const char* nexthop, TableType tableType) {
1121 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001122}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001123
1124int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001125 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001126}
1127
1128int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001129 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001130}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -07001131
1132int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
1133 Permission permission) {
1134 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1135}
1136
1137int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1138 const char* physicalInterface,
1139 Permission permission) {
1140 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1141}