blob: a0fd7d520bd0d49cdf19606d6b2b410645f4bcc7 [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
Lorenzo Colitti7035f222017-02-13 18:29:00 +090030#include "DummyNetwork.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070031#include "Fwmark.h"
Lorenzo Colitti1ef549d2017-02-13 18:32:09 +090032#include "NetlinkCommands.h"
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070033#include "UidRanges.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070034
Elliott Hughesbbd56262015-12-04 15:45:10 -080035#include "android-base/file.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070036#define LOG_TAG "Netd"
37#include "log/log.h"
38#include "logwrap/logwrap.h"
Lorenzo Colitti36679362015-02-25 10:26:19 +090039#include "netutils/ifc.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070040#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070041
Dan Albert5407e142015-03-16 10:05:59 -070042using android::base::WriteStringToFile;
Robin Leedc0d5782016-07-20 14:17:11 +010043using android::net::UidRange;
Dan Albert5407e142015-03-16 10:05:59 -070044
Lorenzo Colitti7035f222017-02-13 18:29:00 +090045namespace android {
46namespace net {
47
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070048namespace {
49
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070050// BEGIN CONSTANTS --------------------------------------------------------------------------------
51
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070052const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Lorenzo Colitti57947f02015-02-27 16:45:55 +090053const uint32_t RULE_PRIORITY_VPN_OVERRIDE_OIF = 10500;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070054const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070055const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
Robin Lee6c84ef62016-05-03 13:17:58 +010056const uint32_t RULE_PRIORITY_PROHIBIT_NON_VPN = 12500;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070057const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
58const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
59const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
60const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070061const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070062const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070063const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070064const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070065const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070066const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000067const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090068const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070069
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070070const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070071const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
72const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
73
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070074const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070075const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
76const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
77
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070078const char* const ROUTE_TABLE_NAME_LOCAL = "local";
79const char* const ROUTE_TABLE_NAME_MAIN = "main";
80
Lorenzo Colitti2b078672016-12-16 18:45:03 +090081// TODO: These values aren't defined by the Linux kernel, because legacy UID routing (as used in N
82// and below) was not upstreamed. Now that the UID routing code is upstream, we should remove these
83// and rely on the kernel header values.
Lorenzo Colitti59656512014-06-25 03:20:29 +090084const uint16_t FRA_UID_START = 18;
85const uint16_t FRA_UID_END = 19;
Lorenzo Colitti2b078672016-12-16 18:45:03 +090086
87// These values are upstream, but not yet in our headers.
88// TODO: delete these definitions when updating the headers.
89const uint16_t FRA_UID_RANGE = 20;
90struct fib_rule_uid_range {
91 __u32 start;
92 __u32 end;
93};
Lorenzo Colitti59656512014-06-25 03:20:29 +090094
Lorenzo Colitti72723682014-06-26 13:51:10 +090095const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
96const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090097
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070098const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
99
100const char* const IP_VERSIONS[] = {"-4", "-6"};
101
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700102const uid_t UID_ROOT = 0;
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900103const char* const IIF_LOOPBACK = "lo";
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700104const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700105const char* const OIF_NONE = NULL;
106const bool ACTION_ADD = true;
107const bool ACTION_DEL = false;
108const bool MODIFY_NON_UID_BASED_RULES = true;
109
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700110const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700111const 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 -0700112
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900113const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
114
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700115// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
116// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
117constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
118 return RTA_LENGTH(x);
119}
120
121// These are practically const, but can't be declared so, because they are used to initialize
122// non-const pointers ("void* iov_base") in iovec arrays.
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900123rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
124rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
125rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
126rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
127rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
128rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
129rtattr FRATTR_UID_RANGE = { U16_RTA_LENGTH(sizeof(fib_rule_uid_range)), FRA_UID_RANGE };
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700130
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900131rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
132rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700133
134uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
135
136// END CONSTANTS ----------------------------------------------------------------------------------
137
Lorenzo Colitti0b073fb2017-02-10 07:49:12 +0900138const char *actionName(uint16_t action) {
139 static const char *ops[4] = {"adding", "deleting", "getting", "???"};
140 return ops[action % 4];
141}
142
143const char *familyName(uint8_t family) {
144 switch (family) {
145 case AF_INET: return "IPv4";
146 case AF_INET6: return "IPv6";
147 default: return "???";
148 }
149}
150
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700151// No locks needed because RouteController is accessed only from one thread (in CommandListener).
152std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400153
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700154uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700155 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400156 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700157 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
158 interfaceToTable[interface] = index;
159 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400160 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700161 // If the interface goes away if_nametoindex() will return 0 but we still need to know
162 // the index so we can remove the rules and routes.
163 auto iter = interfaceToTable.find(interface);
164 if (iter == interfaceToTable.end()) {
165 ALOGE("cannot find interface %s", interface);
166 return RT_TABLE_UNSPEC;
167 }
168 return iter->second;
169}
170
171void addTableName(uint32_t table, const std::string& name, std::string* contents) {
172 char tableString[UINT32_STRLEN];
173 snprintf(tableString, sizeof(tableString), "%u", table);
174 *contents += tableString;
175 *contents += " ";
176 *contents += name;
177 *contents += "\n";
178}
179
180// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
181void updateTableNamesFile() {
182 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700183
184 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
185 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
186
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700187 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700188 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
189 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700190
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700191 for (const auto& entry : interfaceToTable) {
192 addTableName(entry.second, entry.first, &contents);
193 }
194
Dan Albert5407e142015-03-16 10:05:59 -0700195 if (!WriteStringToFile(contents, RT_TABLES_PATH, RT_TABLES_MODE, AID_SYSTEM, AID_WIFI)) {
Elliott Hughesbd378322015-02-04 13:25:14 -0800196 ALOGE("failed to write to %s (%s)", RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700197 return;
198 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700199}
200
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700201// Returns 0 on success or negative errno on failure.
202int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
203 if (!input) {
204 *length = 0;
205 *padding = 0;
206 return 0;
207 }
208 *length = strlcpy(name, input, IFNAMSIZ) + 1;
209 if (*length > IFNAMSIZ) {
210 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
211 return -ENAMETOOLONG;
212 }
213 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
214 return 0;
215}
216
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700217// Adds or removes a routing rule for IPv4 and IPv6.
218//
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900219// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the table is
Robin Lee4ef94642016-04-01 11:50:49 +0100220// unspecified. An unspecified table is not allowed when creating an FR_ACT_TO_TBL rule.
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700221// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
222// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700223// + If |iif| is non-NULL, the rule matches the specified incoming interface.
224// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
225// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
226// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900227//
228// Returns 0 on success or negative errno on failure.
Robin Lee4ef94642016-04-01 11:50:49 +0100229WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint8_t ruleType,
230 uint32_t table, uint32_t fwmark, uint32_t mask, const char* iif,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700231 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700232 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
233 if (fwmark & ~mask) {
234 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
235 return -ERANGE;
236 }
237
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700238 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900239 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700240 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
241 size_t iifLength, oifLength;
242 uint16_t iifPadding, oifPadding;
243 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
244 return ret;
245 }
246 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
247 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900248 }
249
Lorenzo Colitti59656512014-06-25 03:20:29 +0900250 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700251 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700252 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900253 return -EUSERS;
254 }
Robin Lee4ef94642016-04-01 11:50:49 +0100255
Lorenzo Colitti72723682014-06-26 13:51:10 +0900256 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900257
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900258 // Assemble a rule request and put it in an array of iovec structures.
259 fib_rule_hdr rule = {
Robin Lee4ef94642016-04-01 11:50:49 +0100260 .action = ruleType,
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900261 // Note that here we're implicitly setting rule.table to 0. When we want to specify a
262 // non-zero table, we do this via the FRATTR_TABLE attribute.
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900263 };
264
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900265 // Don't ever create a rule that looks up table 0, because table 0 is the local table.
266 // It's OK to specify a table ID of 0 when deleting a rule, because that doesn't actually select
267 // table 0, it's a wildcard that matches anything.
268 if (table == RT_TABLE_UNSPEC && rule.action == FR_ACT_TO_TBL && action != RTM_DELRULE) {
269 ALOGE("RT_TABLE_UNSPEC only allowed when deleting rules");
270 return -ENOTUNIQ;
271 }
272
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700273 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
274 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900275 struct fib_rule_uid_range uidRange = { uidStart, uidEnd };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900276
277 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700278 { NULL, 0 },
279 { &rule, sizeof(rule) },
280 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
281 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700282 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
283 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700284 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
285 { &fwmark, mask ? sizeof(fwmark) : 0 },
286 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
287 { &mask, mask ? sizeof(mask) : 0 },
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900288 // Rules that contain both legacy and new UID routing attributes will work on old kernels,
289 // which will simply ignore the FRA_UID_RANGE attribute since it is larger than their
290 // FRA_MAX. They will also work on kernels that are not too new:
291 // - FRA_UID_START clashes with FRA_PAD in 4.7, but that shouldn't be a problem because
292 // FRA_PAD has no validation.
293 // - FRA_UID_END clashes with FRA_L3MDEV in 4.8 and above, and will cause an error because
294 // FRA_L3MDEV has a maximum length of 1.
295 // TODO: delete the legacy UID routing code before running it on 4.8 or above.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700296 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
297 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
298 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
299 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Lorenzo Colitti2b078672016-12-16 18:45:03 +0900300 { &FRATTR_UID_RANGE, isUidRule ? sizeof(FRATTR_UID_RANGE) : 0 },
301 { &uidRange, isUidRule ? sizeof(uidRange) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700302 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
303 { iifName, iifLength },
304 { PADDING_BUFFER, iifPadding },
305 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
306 { oifName, oifLength },
307 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900308 };
309
Lorenzo Colitti72723682014-06-26 13:51:10 +0900310 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700311 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
312 rule.family = AF_FAMILIES[i];
313 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti0b073fb2017-02-10 07:49:12 +0900314 ALOGE("Error %s %s rule: %s", actionName(action), familyName(rule.family),
315 strerror(-ret));
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900316 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700317 }
318 }
319
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900320 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700321}
322
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700323WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Robin Lee4ef94642016-04-01 11:50:49 +0100324 uint32_t fwmark, uint32_t mask, const char* iif,
325 const char* oif, uid_t uidStart, uid_t uidEnd) {
326 return modifyIpRule(action, priority, FR_ACT_TO_TBL, table, fwmark, mask, iif, oif, uidStart,
327 uidEnd);
328}
329
330WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700331 uint32_t fwmark, uint32_t mask) {
332 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
333 INVALID_UID);
334}
335
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900336// Adds or deletes an IPv4 or IPv6 route.
337// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700338WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
339 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900340 // At least the destination must be non-null.
341 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700342 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900343 return -EFAULT;
344 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700345
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900346 // Parse the prefix.
347 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700348 uint8_t family;
349 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900350 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
351 &prefixLength);
352 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700353 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900354 return rawLength;
355 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700356
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900357 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700358 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900359 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
360 }
361
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700362 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900363 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900364 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700365
366 if (nexthop && !strcmp(nexthop, "unreachable")) {
367 type = RTN_UNREACHABLE;
368 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
369 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
370 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
371 interface = OIF_NONE;
372 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900373 } else if (nexthop && !strcmp(nexthop, "throw")) {
374 type = RTN_THROW;
375 interface = OIF_NONE;
376 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700377 } else {
378 // If an interface was specified, find the ifindex.
379 if (interface != OIF_NONE) {
380 ifindex = if_nametoindex(interface);
381 if (!ifindex) {
382 ALOGE("cannot find interface %s", interface);
383 return -ENODEV;
384 }
385 }
386
387 // If a nexthop was specified, parse it as the same family as the prefix.
388 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
389 ALOGE("inet_pton failed for nexthop %s", nexthop);
390 return -EINVAL;
391 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900392 }
393
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900394 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700395 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900396 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700397 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900398 .rtm_family = family,
399 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700400 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900401 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900402
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700403 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
404 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900405
406 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700407 { NULL, 0 },
408 { &route, sizeof(route) },
409 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
410 { &table, sizeof(table) },
411 { &rtaDst, sizeof(rtaDst) },
412 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700413 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
414 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700415 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
416 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900417 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900418
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700419 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
420 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti0b073fb2017-02-10 07:49:12 +0900421 int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
422 if (ret) {
423 ALOGE("Error %s route %s -> %s %s to table %u: %s",
424 actionName(action), destination, nexthop, interface, table, strerror(-ret));
425 }
426 return ret;
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700427}
428
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700429// An iptables rule to mark incoming packets on a network with the netId of the network.
430//
431// This is so that the kernel can:
432// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
433// replies, SYN-ACKs, etc).
434// + Mark sockets that accept connections from this interface so that the connection stays on the
435// same interface.
436WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
437 Permission permission, bool add) {
438 Fwmark fwmark;
439
440 fwmark.netId = netId;
441 fwmark.explicitlySelected = true;
442 fwmark.protectedFromVpn = true;
443 fwmark.permission = permission;
444
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700445 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700446 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
447
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700448 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
449 "MARK", "--set-mark", markString, NULL)) {
450 ALOGE("failed to change iptables rule that sets incoming packet mark");
451 return -EREMOTEIO;
452 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700453
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700454 return 0;
455}
456
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700457// A rule to route responses to the local network forwarded via the VPN.
458//
459// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
460// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
461WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
462 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
463 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
464 INVALID_UID, INVALID_UID);
465}
466
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700467// A rule to route all traffic from a given set of UIDs to go over the VPN.
468//
469// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
470// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
471// bypass the VPN if the protectedFromVpn bit is set.
472WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700473 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700474 Fwmark fwmark;
475 Fwmark mask;
476
477 fwmark.protectedFromVpn = false;
478 mask.protectedFromVpn = true;
479
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700480 uint32_t priority;
481
482 if (secure) {
483 priority = RULE_PRIORITY_SECURE_VPN;
484 } else {
485 priority = RULE_PRIORITY_BYPASSABLE_VPN;
486
487 fwmark.explicitlySelected = false;
488 mask.explicitlySelected = true;
489 }
490
491 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900492 mask.intValue, IIF_LOOPBACK, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700493}
494
495// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
496// set of UIDs.
497//
498// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
499// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700500WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
501 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700502 Fwmark fwmark;
503 Fwmark mask;
504
505 fwmark.netId = netId;
506 mask.netId = FWMARK_NET_ID_MASK;
507
508 fwmark.permission = PERMISSION_SYSTEM;
509 mask.permission = PERMISSION_SYSTEM;
510
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700511 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
512
513 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
514 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700515}
516
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700517// A rule to route traffic based on an explicitly chosen network.
518//
519// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
520//
521// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
522// to check it again in the rules here, because a network's permissions may have been updated via
523// modifyNetworkPermission().
524WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
525 Permission permission, uid_t uidStart,
526 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700527 Fwmark fwmark;
528 Fwmark mask;
529
530 fwmark.netId = netId;
531 mask.netId = FWMARK_NET_ID_MASK;
532
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700533 fwmark.explicitlySelected = true;
534 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700535
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700536 fwmark.permission = permission;
537 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700538
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700539 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700540 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700541}
542
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700543// A rule to route traffic based on a chosen outgoing interface.
544//
545// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
546// the outgoing interface (typically for link-local communications).
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900547WARN_UNUSED_RESULT int modifyOutputInterfaceRules(const char* interface, uint32_t table,
548 Permission permission, uid_t uidStart,
549 uid_t uidEnd, bool add) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700550 Fwmark fwmark;
551 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700552
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700553 fwmark.permission = permission;
554 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700555
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900556 // If this rule does not specify a UID range, then also add a corresponding high-priority rule
557 // for UID. This covers forwarded packets and system daemons such as the tethering DHCP server.
558 if (uidStart == INVALID_UID && uidEnd == INVALID_UID) {
559 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OVERRIDE_OIF,
560 table, fwmark.intValue, mask.intValue, IIF_NONE, interface,
561 UID_ROOT, UID_ROOT)) {
562 return ret;
563 }
564 }
565
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700566 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700567 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700568}
569
570// A rule to route traffic based on the chosen network.
571//
572// This is for sockets that have not explicitly requested a particular network, but have been
573// bound to one when they called connect(). This ensures that sockets connected on a particular
574// network stay on that network even if the default network changes.
575WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
576 Permission permission, bool add) {
577 Fwmark fwmark;
578 Fwmark mask;
579
580 fwmark.netId = netId;
581 mask.netId = FWMARK_NET_ID_MASK;
582
583 fwmark.explicitlySelected = false;
584 mask.explicitlySelected = true;
585
586 fwmark.permission = permission;
587 mask.permission = permission;
588
589 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700590 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700591}
592
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700593// A rule to enable split tunnel VPNs.
594//
595// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
596// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
597// permissions required by the default network.
598WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
599 const char* physicalInterface,
600 Permission permission) {
601 uint32_t table = getRouteTableForInterface(physicalInterface);
602 if (table == RT_TABLE_UNSPEC) {
603 return -ESRCH;
604 }
605
606 Fwmark fwmark;
607 Fwmark mask;
608
609 fwmark.netId = vpnNetId;
610 mask.netId = FWMARK_NET_ID_MASK;
611
612 fwmark.explicitlySelected = false;
613 mask.explicitlySelected = true;
614
615 fwmark.permission = permission;
616 mask.permission = permission;
617
618 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
619 mask.intValue);
620}
621
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700622// Add rules to allow legacy routes added through the requestRouteToHost() API.
623WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700624 Fwmark fwmark;
625 Fwmark mask;
626
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700627 fwmark.explicitlySelected = false;
628 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700629
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700630 // Rules to allow legacy routes to override the default network.
631 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
632 fwmark.intValue, mask.intValue)) {
633 return ret;
634 }
635 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
636 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
637 return ret;
638 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700639
640 fwmark.permission = PERMISSION_SYSTEM;
641 mask.permission = PERMISSION_SYSTEM;
642
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700643 // A rule to allow legacy routes from system apps to override VPNs.
644 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700645 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700646}
647
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700648// Add rules to lookup the local network when specified explicitly or otherwise.
649WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
650 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
651 INVALID_UID, INVALID_UID, ACTION_ADD)) {
652 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700653 }
654
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700655 Fwmark fwmark;
656 Fwmark mask;
657
658 fwmark.explicitlySelected = false;
659 mask.explicitlySelected = true;
660
661 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
662 fwmark.intValue, mask.intValue);
663}
664
Lorenzo Colitti36679362015-02-25 10:26:19 +0900665int configureDummyNetwork() {
666 const char *interface = DummyNetwork::INTERFACE_NAME;
667 uint32_t table = getRouteTableForInterface(interface);
668 if (table == RT_TABLE_UNSPEC) {
669 // getRouteTableForInterface has already looged an error.
670 return -ESRCH;
671 }
672
673 ifc_init();
674 int ret = ifc_up(interface);
675 ifc_close();
676 if (ret) {
677 ALOGE("Can't bring up %s: %s", interface, strerror(errno));
678 return -errno;
679 }
680
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900681 if ((ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
682 INVALID_UID, INVALID_UID, ACTION_ADD))) {
683 ALOGE("Can't create oif rules for %s: %s", interface, strerror(-ret));
Lorenzo Colitti36679362015-02-25 10:26:19 +0900684 return ret;
685 }
686
687 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "0.0.0.0/0", NULL))) {
Lorenzo Colitti36679362015-02-25 10:26:19 +0900688 return ret;
689 }
690
691 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "::/0", NULL))) {
Lorenzo Colitti36679362015-02-25 10:26:19 +0900692 return ret;
693 }
694
695 return 0;
696}
697
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000698// 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 +0900699// rule, but with a lower priority. We will never create routes in the main table; it should only be
700// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
701// This is necessary, for example, when adding a route through a directly-connected gateway: in
702// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000703WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
704 Fwmark fwmark;
705 Fwmark mask;
706
707 fwmark.netId = NETID_UNSET;
708 mask.netId = FWMARK_NET_ID_MASK;
709
710 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
711 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
712}
713
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900714// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
715// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
716// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
717// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700718WARN_UNUSED_RESULT int addUnreachableRule() {
Robin Leec125fe42016-05-02 08:53:34 +0100719 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, FR_ACT_UNREACHABLE, RT_TABLE_UNSPEC,
720 MARK_UNSET, MARK_UNSET, IIF_NONE, OIF_NONE, INVALID_UID, INVALID_UID);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700721}
722
723WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700724 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
725 return ret;
726 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900727 return modifyOutputInterfaceRules(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
728 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700729}
730
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700731WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
732 Permission permission, bool add) {
733 uint32_t table = getRouteTableForInterface(interface);
734 if (table == RT_TABLE_UNSPEC) {
735 return -ESRCH;
736 }
737
738 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
739 return ret;
740 }
741 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
742 add)) {
743 return ret;
744 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900745 if (int ret = modifyOutputInterfaceRules(interface, table, permission, INVALID_UID, INVALID_UID,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700746 add)) {
747 return ret;
748 }
749 return modifyImplicitNetworkRule(netId, table, permission, add);
750}
751
Robin Leeb8087362016-03-30 18:43:08 +0100752WARN_UNUSED_RESULT int modifyRejectNonSecureNetworkRule(const UidRanges& uidRanges, bool add) {
753 Fwmark fwmark;
754 Fwmark mask;
755 fwmark.protectedFromVpn = false;
756 mask.protectedFromVpn = true;
757
Robin Leedc0d5782016-07-20 14:17:11 +0100758 for (const UidRange& range : uidRanges.getRanges()) {
Robin Leeb8087362016-03-30 18:43:08 +0100759 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE,
760 RULE_PRIORITY_PROHIBIT_NON_VPN, FR_ACT_PROHIBIT, RT_TABLE_UNSPEC,
761 fwmark.intValue, mask.intValue, IIF_LOOPBACK, OIF_NONE,
Robin Leedc0d5782016-07-20 14:17:11 +0100762 range.getStart(), range.getStop())) {
Robin Leeb8087362016-03-30 18:43:08 +0100763 return ret;
764 }
765 }
766
767 return 0;
768}
769
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700770WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700771 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700772 bool modifyNonUidBasedRules) {
773 uint32_t table = getRouteTableForInterface(interface);
774 if (table == RT_TABLE_UNSPEC) {
775 return -ESRCH;
776 }
777
Robin Leedc0d5782016-07-20 14:17:11 +0100778 for (const UidRange& range : uidRanges.getRanges()) {
779 if (int ret = modifyVpnUidRangeRule(table, range.getStart(), range.getStop(), secure, add))
780 {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700781 return ret;
782 }
Robin Leedc0d5782016-07-20 14:17:11 +0100783 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.getStart(),
784 range.getStop(), add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700785 return ret;
786 }
Robin Leedc0d5782016-07-20 14:17:11 +0100787 if (int ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
788 range.getStart(), range.getStop(), add)) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700789 return ret;
790 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700791 }
792
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700793 if (modifyNonUidBasedRules) {
794 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700795 return ret;
796 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700797 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
798 return ret;
799 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700800 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700801 return ret;
802 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700803 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700804 }
805
806 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700807}
808
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700809WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
810 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700811 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700812 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900813 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700814 }
815
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700816 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700817 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700818
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700819 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700820 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700821
822 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700823 mask.permission = permission;
824
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700825 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700826 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700827}
828
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700829WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
830 const char* outputInterface) {
831 uint32_t table = getRouteTableForInterface(outputInterface);
832 if (table == RT_TABLE_UNSPEC) {
833 return -ESRCH;
834 }
835
836 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
837 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
838}
839
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700840// Returns 0 on success or negative errno on failure.
841WARN_UNUSED_RESULT int flushRules() {
842 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
843 const char* argv[] = {
844 IP_PATH,
845 IP_VERSIONS[i],
846 "rule",
847 "flush",
848 };
849 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
850 ALOGE("failed to flush rules");
851 return -EREMOTEIO;
852 }
853 }
854 return 0;
855}
856
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700857// 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 +0900858// route, to the main table as well.
859// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700860WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
861 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700862 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700863 switch (tableType) {
864 case RouteController::INTERFACE: {
865 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700866 if (table == RT_TABLE_UNSPEC) {
867 return -ESRCH;
868 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700869 break;
870 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700871 case RouteController::LOCAL_NETWORK: {
872 table = ROUTE_TABLE_LOCAL_NETWORK;
873 break;
874 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700875 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700876 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700877 break;
878 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700879 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700880 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700881 break;
882 }
883 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700884
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900885 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran03213152014-10-30 10:01:07 -0700886 // Trying to add a route that already exists shouldn't cause an error.
887 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900888 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700889 }
890
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900891 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700892}
893
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700894// Returns 0 on success or negative errno on failure.
895WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700896 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700897 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700898 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700899 }
900
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900901 char tableString[UINT32_STRLEN];
902 snprintf(tableString, sizeof(tableString), "%u", table);
903
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900904 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700905 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900906 const char* argv[] = {
907 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700908 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700909 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900910 "flush",
911 "table",
912 tableString,
913 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900914
915 // A flush works by dumping routes and deleting each route as it's returned, and it can
916 // fail if something else deletes the route between the dump and the delete. This can
917 // happen, for example, if an interface goes down while we're trying to flush its routes.
918 // So try multiple times and only return an error if the last attempt fails.
919 //
920 // TODO: replace this with our own netlink code.
921 unsigned attempts = 0;
922 int err;
923 do {
924 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
925 NULL, false, false);
926 ++attempts;
927 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
928 if (err) {
929 ALOGE("failed to flush %s routes in table %s after %d attempts",
930 IP_VERSIONS[i], tableString, attempts);
931 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900932 }
933 }
934
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900935 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
936 // track of its name.
937 if (!ret) {
938 interfaceToTable.erase(interface);
939 }
940
941 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700942}
943
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900944WARN_UNUSED_RESULT int clearTetheringRules(const char* inputInterface) {
945 int ret = 0;
946 while (ret == 0) {
947 ret = modifyIpRule(RTM_DELRULE, RULE_PRIORITY_TETHERING, 0, MARK_UNSET, MARK_UNSET,
948 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
949 }
950
951 if (ret == -ENOENT) {
952 return 0;
953 } else {
954 return ret;
955 }
956}
957
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700958} // namespace
959
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700960int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700961 if (int ret = flushRules()) {
962 return ret;
963 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700964 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700965 return ret;
966 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700967 if (int ret = addLocalNetworkRules(localNetId)) {
968 return ret;
969 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000970 if (int ret = addDirectlyConnectedRule()) {
971 return ret;
972 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700973 if (int ret = addUnreachableRule()) {
974 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700975 }
Lorenzo Colitti36679362015-02-25 10:26:19 +0900976 // Don't complain if we can't add the dummy network, since not all devices support it.
977 configureDummyNetwork();
978
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700979 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700980 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700981}
982
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700983int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700984 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700985}
986
987int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700988 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700989}
990
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700991int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
992 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700993 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
994 return ret;
995 }
996 updateTableNamesFile();
997 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700998}
999
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001000int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
1001 Permission permission) {
1002 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001003 return ret;
1004 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001005 if (int ret = flushRoutes(interface)) {
1006 return ret;
1007 }
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +09001008 if (int ret = clearTetheringRules(interface)) {
1009 return ret;
1010 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001011 updateTableNamesFile();
1012 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001013}
1014
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001015int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001016 bool secure, const UidRanges& uidRanges) {
1017 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001018 MODIFY_NON_UID_BASED_RULES)) {
1019 return ret;
1020 }
1021 updateTableNamesFile();
1022 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001023}
1024
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001025int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001026 bool secure, const UidRanges& uidRanges) {
1027 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001028 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001029 return ret;
1030 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001031 if (int ret = flushRoutes(interface)) {
1032 return ret;
1033 }
1034 updateTableNamesFile();
1035 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001036}
1037
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001038int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
1039 Permission oldPermission,
1040 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001041 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001042 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001043 return ret;
1044 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001045 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001046}
1047
Robin Leeb8087362016-03-30 18:43:08 +01001048int RouteController::addUsersToRejectNonSecureNetworkRule(const UidRanges& uidRanges) {
1049 return modifyRejectNonSecureNetworkRule(uidRanges, true);
1050}
1051
1052int RouteController::removeUsersFromRejectNonSecureNetworkRule(const UidRanges& uidRanges) {
1053 return modifyRejectNonSecureNetworkRule(uidRanges, false);
1054}
1055
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001056int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001057 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001058 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001059 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001060}
1061
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001062int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001063 bool secure, const UidRanges& uidRanges) {
1064 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001065 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001066}
1067
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001068int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
1069 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001070}
1071
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001072int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
1073 Permission permission) {
1074 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001075}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001076
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001077int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001078 TableType tableType) {
1079 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001080}
1081
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +09001082int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001083 const char* nexthop, TableType tableType) {
1084 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001085}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001086
1087int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001088 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001089}
1090
1091int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001092 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001093}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -07001094
1095int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
1096 Permission permission) {
1097 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1098}
1099
1100int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1101 const char* physicalInterface,
1102 Permission permission) {
1103 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1104}
Lorenzo Colitti7035f222017-02-13 18:29:00 +09001105
1106} // namespace net
1107} // namespace android