blob: e4b7cc1f3f0db8232aacef09f1e2339df7ca1086 [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;
42
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070043namespace {
44
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070045// BEGIN CONSTANTS --------------------------------------------------------------------------------
46
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070047const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Lorenzo Colitti57947f02015-02-27 16:45:55 +090048const uint32_t RULE_PRIORITY_VPN_OVERRIDE_OIF = 10500;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070049const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070050const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
51const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
52const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
53const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
54const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070055const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070056const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070057const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070058const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070059const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070060const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000061const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090062const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070063
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070064const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070065const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
66const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
67
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070068const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070069const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
70const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
71
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070072const char* const ROUTE_TABLE_NAME_LOCAL = "local";
73const char* const ROUTE_TABLE_NAME_MAIN = "main";
74
Lorenzo Colitti59656512014-06-25 03:20:29 +090075// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
76// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
77// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
78// that will warn us if upstream has given these values some other meaning.
79const uint16_t FRA_UID_START = 18;
80const uint16_t FRA_UID_END = 19;
81static_assert(FRA_UID_START > FRA_MAX,
82 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
83 "Check that these values match what the kernel does and then update this assertion.");
84
Lorenzo Colitti72723682014-06-26 13:51:10 +090085const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
86const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090087
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070088const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
89
90const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
91
92const char* const IP_VERSIONS[] = {"-4", "-6"};
93
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070094const uid_t UID_ROOT = 0;
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +090095const char* const IIF_LOOPBACK = "lo";
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070096const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070097const char* const OIF_NONE = NULL;
98const bool ACTION_ADD = true;
99const bool ACTION_DEL = false;
100const bool MODIFY_NON_UID_BASED_RULES = true;
101
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700102const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700103const 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 -0700104
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900105const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
106
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700107// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
108// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
109constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
110 return RTA_LENGTH(x);
111}
112
113// These are practically const, but can't be declared so, because they are used to initialize
114// non-const pointers ("void* iov_base") in iovec arrays.
115rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
116rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
117rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
118rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
119rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
120rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
121
122rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
123rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
124
125uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
126
127// END CONSTANTS ----------------------------------------------------------------------------------
128
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700129// No locks needed because RouteController is accessed only from one thread (in CommandListener).
130std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400131
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700132uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700133 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400134 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700135 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
136 interfaceToTable[interface] = index;
137 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400138 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700139 // If the interface goes away if_nametoindex() will return 0 but we still need to know
140 // the index so we can remove the rules and routes.
141 auto iter = interfaceToTable.find(interface);
142 if (iter == interfaceToTable.end()) {
143 ALOGE("cannot find interface %s", interface);
144 return RT_TABLE_UNSPEC;
145 }
146 return iter->second;
147}
148
149void addTableName(uint32_t table, const std::string& name, std::string* contents) {
150 char tableString[UINT32_STRLEN];
151 snprintf(tableString, sizeof(tableString), "%u", table);
152 *contents += tableString;
153 *contents += " ";
154 *contents += name;
155 *contents += "\n";
156}
157
158// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
159void updateTableNamesFile() {
160 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700161
162 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
163 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
164
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700165 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700166 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
167 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700168
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700169 for (const auto& entry : interfaceToTable) {
170 addTableName(entry.second, entry.first, &contents);
171 }
172
Dan Albert5407e142015-03-16 10:05:59 -0700173 if (!WriteStringToFile(contents, RT_TABLES_PATH, RT_TABLES_MODE, AID_SYSTEM, AID_WIFI)) {
Elliott Hughesbd378322015-02-04 13:25:14 -0800174 ALOGE("failed to write to %s (%s)", RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700175 return;
176 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700177}
178
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900179// Sends a netlink request and expects an ack.
180// |iov| is an array of struct iovec that contains the netlink message payload.
181// The netlink header is generated by this function based on |action| and |flags|.
182// Returns -errno if there was an error or if the kernel reported an error.
Evgenii Stepanovf65122c2016-02-11 16:55:56 -0800183
184// Disable optimizations in ASan build.
185// ASan reports an out-of-bounds 32-bit(!) access in the first loop of the
186// function (over iov[]).
187#ifdef __clang__
188#if __has_feature(address_sanitizer)
189__attribute__((optnone))
190#endif
191#endif
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700192WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900193 nlmsghdr nlmsg = {
194 .nlmsg_type = action,
195 .nlmsg_flags = flags,
196 };
197 iov[0].iov_base = &nlmsg;
198 iov[0].iov_len = sizeof(nlmsg);
199 for (int i = 0; i < iovlen; ++i) {
200 nlmsg.nlmsg_len += iov[i].iov_len;
201 }
202
203 int ret;
204 struct {
205 nlmsghdr msg;
206 nlmsgerr err;
207 } response;
208
Nick Kralevich53ea9ca2015-01-31 13:54:00 -0800209 int sock = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900210 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700211 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
212 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900213 writev(sock, iov, iovlen) != -1 &&
214 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
215 if (ret == sizeof(response)) {
216 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700217 if (ret) {
218 ALOGE("netlink response contains error (%s)", strerror(-ret));
219 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900220 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700221 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900222 ret = -EBADMSG;
223 }
224 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700225 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900226 ret = -errno;
227 }
228
229 if (sock != -1) {
230 close(sock);
231 }
232
233 return ret;
234}
235
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700236// Returns 0 on success or negative errno on failure.
237int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
238 if (!input) {
239 *length = 0;
240 *padding = 0;
241 return 0;
242 }
243 *length = strlcpy(name, input, IFNAMSIZ) + 1;
244 if (*length > IFNAMSIZ) {
245 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
246 return -ENAMETOOLONG;
247 }
248 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
249 return 0;
250}
251
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700252// Adds or removes a routing rule for IPv4 and IPv6.
253//
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900254// + If |priority| is RULE_PRIORITY_UNREACHABLE, the rule returns ENETUNREACH (i.e., specifies an
255// action of FR_ACT_UNREACHABLE). Otherwise, the rule specifies an action of FR_ACT_TO_TBL.
256// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the table is
257// unspecified. An unspecified table is only allowed when deleting a rule.
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700258// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
259// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700260// + If |iif| is non-NULL, the rule matches the specified incoming interface.
261// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
262// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
263// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900264//
265// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700266WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700267 uint32_t fwmark, uint32_t mask, const char* iif,
268 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700269 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
270 if (fwmark & ~mask) {
271 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
272 return -ERANGE;
273 }
274
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700275 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900276 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700277 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
278 size_t iifLength, oifLength;
279 uint16_t iifPadding, oifPadding;
280 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
281 return ret;
282 }
283 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
284 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900285 }
286
Lorenzo Colitti59656512014-06-25 03:20:29 +0900287 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700288 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700289 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900290 return -EUSERS;
291 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900292 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900293
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900294 // Assemble a rule request and put it in an array of iovec structures.
295 fib_rule_hdr rule = {
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900296 .action = static_cast<uint8_t>(priority != RULE_PRIORITY_UNREACHABLE ? FR_ACT_TO_TBL :
297 FR_ACT_UNREACHABLE),
298 // Note that here we're implicitly setting rule.table to 0. When we want to specify a
299 // non-zero table, we do this via the FRATTR_TABLE attribute.
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900300 };
301
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900302 // Don't ever create a rule that looks up table 0, because table 0 is the local table.
303 // It's OK to specify a table ID of 0 when deleting a rule, because that doesn't actually select
304 // table 0, it's a wildcard that matches anything.
305 if (table == RT_TABLE_UNSPEC && rule.action == FR_ACT_TO_TBL && action != RTM_DELRULE) {
306 ALOGE("RT_TABLE_UNSPEC only allowed when deleting rules");
307 return -ENOTUNIQ;
308 }
309
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700310 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
311 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900312
313 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700314 { NULL, 0 },
315 { &rule, sizeof(rule) },
316 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
317 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700318 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
319 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700320 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
321 { &fwmark, mask ? sizeof(fwmark) : 0 },
322 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
323 { &mask, mask ? sizeof(mask) : 0 },
324 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
325 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
326 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
327 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700328 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
329 { iifName, iifLength },
330 { PADDING_BUFFER, iifPadding },
331 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
332 { oifName, oifLength },
333 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900334 };
335
Lorenzo Colitti72723682014-06-26 13:51:10 +0900336 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700337 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
338 rule.family = AF_FAMILIES[i];
339 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900340 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700341 }
342 }
343
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900344 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700345}
346
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700347WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
348 uint32_t fwmark, uint32_t mask) {
349 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
350 INVALID_UID);
351}
352
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900353// Adds or deletes an IPv4 or IPv6 route.
354// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700355WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
356 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900357 // At least the destination must be non-null.
358 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700359 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900360 return -EFAULT;
361 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700362
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900363 // Parse the prefix.
364 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700365 uint8_t family;
366 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900367 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
368 &prefixLength);
369 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700370 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900371 return rawLength;
372 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700373
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900374 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700375 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900376 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
377 }
378
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700379 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900380 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900381 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700382
383 if (nexthop && !strcmp(nexthop, "unreachable")) {
384 type = RTN_UNREACHABLE;
385 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
386 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
387 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
388 interface = OIF_NONE;
389 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900390 } else if (nexthop && !strcmp(nexthop, "throw")) {
391 type = RTN_THROW;
392 interface = OIF_NONE;
393 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700394 } else {
395 // If an interface was specified, find the ifindex.
396 if (interface != OIF_NONE) {
397 ifindex = if_nametoindex(interface);
398 if (!ifindex) {
399 ALOGE("cannot find interface %s", interface);
400 return -ENODEV;
401 }
402 }
403
404 // If a nexthop was specified, parse it as the same family as the prefix.
405 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
406 ALOGE("inet_pton failed for nexthop %s", nexthop);
407 return -EINVAL;
408 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900409 }
410
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900411 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700412 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900413 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700414 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900415 .rtm_family = family,
416 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700417 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900418 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900419
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700420 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
421 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900422
423 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700424 { NULL, 0 },
425 { &route, sizeof(route) },
426 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
427 { &table, sizeof(table) },
428 { &rtaDst, sizeof(rtaDst) },
429 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700430 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
431 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700432 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
433 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900434 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900435
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700436 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
437 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900438 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700439}
440
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700441// An iptables rule to mark incoming packets on a network with the netId of the network.
442//
443// This is so that the kernel can:
444// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
445// replies, SYN-ACKs, etc).
446// + Mark sockets that accept connections from this interface so that the connection stays on the
447// same interface.
448WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
449 Permission permission, bool add) {
450 Fwmark fwmark;
451
452 fwmark.netId = netId;
453 fwmark.explicitlySelected = true;
454 fwmark.protectedFromVpn = true;
455 fwmark.permission = permission;
456
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700457 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700458 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
459
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700460 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
461 "MARK", "--set-mark", markString, NULL)) {
462 ALOGE("failed to change iptables rule that sets incoming packet mark");
463 return -EREMOTEIO;
464 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700465
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700466 return 0;
467}
468
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700469// A rule to route responses to the local network forwarded via the VPN.
470//
471// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
472// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
473WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
474 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
475 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
476 INVALID_UID, INVALID_UID);
477}
478
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700479// A rule to route all traffic from a given set of UIDs to go over the VPN.
480//
481// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
482// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
483// bypass the VPN if the protectedFromVpn bit is set.
484WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700485 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700486 Fwmark fwmark;
487 Fwmark mask;
488
489 fwmark.protectedFromVpn = false;
490 mask.protectedFromVpn = true;
491
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700492 uint32_t priority;
493
494 if (secure) {
495 priority = RULE_PRIORITY_SECURE_VPN;
496 } else {
497 priority = RULE_PRIORITY_BYPASSABLE_VPN;
498
499 fwmark.explicitlySelected = false;
500 mask.explicitlySelected = true;
501 }
502
503 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900504 mask.intValue, IIF_LOOPBACK, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700505}
506
507// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
508// set of UIDs.
509//
510// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
511// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700512WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
513 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700514 Fwmark fwmark;
515 Fwmark mask;
516
517 fwmark.netId = netId;
518 mask.netId = FWMARK_NET_ID_MASK;
519
520 fwmark.permission = PERMISSION_SYSTEM;
521 mask.permission = PERMISSION_SYSTEM;
522
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700523 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
524
525 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
526 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700527}
528
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700529// A rule to route traffic based on an explicitly chosen network.
530//
531// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
532//
533// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
534// to check it again in the rules here, because a network's permissions may have been updated via
535// modifyNetworkPermission().
536WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
537 Permission permission, uid_t uidStart,
538 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700539 Fwmark fwmark;
540 Fwmark mask;
541
542 fwmark.netId = netId;
543 mask.netId = FWMARK_NET_ID_MASK;
544
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700545 fwmark.explicitlySelected = true;
546 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700547
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700548 fwmark.permission = permission;
549 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700550
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700551 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700552 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700553}
554
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700555// A rule to route traffic based on a chosen outgoing interface.
556//
557// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
558// the outgoing interface (typically for link-local communications).
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900559WARN_UNUSED_RESULT int modifyOutputInterfaceRules(const char* interface, uint32_t table,
560 Permission permission, uid_t uidStart,
561 uid_t uidEnd, bool add) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700562 Fwmark fwmark;
563 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700564
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700565 fwmark.permission = permission;
566 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700567
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900568 // If this rule does not specify a UID range, then also add a corresponding high-priority rule
569 // for UID. This covers forwarded packets and system daemons such as the tethering DHCP server.
570 if (uidStart == INVALID_UID && uidEnd == INVALID_UID) {
571 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OVERRIDE_OIF,
572 table, fwmark.intValue, mask.intValue, IIF_NONE, interface,
573 UID_ROOT, UID_ROOT)) {
574 return ret;
575 }
576 }
577
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700578 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700579 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700580}
581
582// A rule to route traffic based on the chosen network.
583//
584// This is for sockets that have not explicitly requested a particular network, but have been
585// bound to one when they called connect(). This ensures that sockets connected on a particular
586// network stay on that network even if the default network changes.
587WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
588 Permission permission, bool add) {
589 Fwmark fwmark;
590 Fwmark mask;
591
592 fwmark.netId = netId;
593 mask.netId = FWMARK_NET_ID_MASK;
594
595 fwmark.explicitlySelected = false;
596 mask.explicitlySelected = true;
597
598 fwmark.permission = permission;
599 mask.permission = permission;
600
601 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700602 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700603}
604
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700605// A rule to enable split tunnel VPNs.
606//
607// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
608// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
609// permissions required by the default network.
610WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
611 const char* physicalInterface,
612 Permission permission) {
613 uint32_t table = getRouteTableForInterface(physicalInterface);
614 if (table == RT_TABLE_UNSPEC) {
615 return -ESRCH;
616 }
617
618 Fwmark fwmark;
619 Fwmark mask;
620
621 fwmark.netId = vpnNetId;
622 mask.netId = FWMARK_NET_ID_MASK;
623
624 fwmark.explicitlySelected = false;
625 mask.explicitlySelected = true;
626
627 fwmark.permission = permission;
628 mask.permission = permission;
629
630 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
631 mask.intValue);
632}
633
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700634// Add rules to allow legacy routes added through the requestRouteToHost() API.
635WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700636 Fwmark fwmark;
637 Fwmark mask;
638
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700639 fwmark.explicitlySelected = false;
640 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700641
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700642 // Rules to allow legacy routes to override the default network.
643 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
644 fwmark.intValue, mask.intValue)) {
645 return ret;
646 }
647 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
648 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
649 return ret;
650 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700651
652 fwmark.permission = PERMISSION_SYSTEM;
653 mask.permission = PERMISSION_SYSTEM;
654
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700655 // A rule to allow legacy routes from system apps to override VPNs.
656 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700657 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700658}
659
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700660// Add rules to lookup the local network when specified explicitly or otherwise.
661WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
662 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
663 INVALID_UID, INVALID_UID, ACTION_ADD)) {
664 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700665 }
666
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700667 Fwmark fwmark;
668 Fwmark mask;
669
670 fwmark.explicitlySelected = false;
671 mask.explicitlySelected = true;
672
673 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
674 fwmark.intValue, mask.intValue);
675}
676
Lorenzo Colitti36679362015-02-25 10:26:19 +0900677int configureDummyNetwork() {
678 const char *interface = DummyNetwork::INTERFACE_NAME;
679 uint32_t table = getRouteTableForInterface(interface);
680 if (table == RT_TABLE_UNSPEC) {
681 // getRouteTableForInterface has already looged an error.
682 return -ESRCH;
683 }
684
685 ifc_init();
686 int ret = ifc_up(interface);
687 ifc_close();
688 if (ret) {
689 ALOGE("Can't bring up %s: %s", interface, strerror(errno));
690 return -errno;
691 }
692
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900693 if ((ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
694 INVALID_UID, INVALID_UID, ACTION_ADD))) {
695 ALOGE("Can't create oif rules for %s: %s", interface, strerror(-ret));
Lorenzo Colitti36679362015-02-25 10:26:19 +0900696 return ret;
697 }
698
699 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "0.0.0.0/0", NULL))) {
700 ALOGE("Can't add IPv4 default route to %s: %s", interface, strerror(-ret));
701 return ret;
702 }
703
704 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "::/0", NULL))) {
705 ALOGE("Can't add IPv6 default route to %s: %s", interface, strerror(-ret));
706 return ret;
707 }
708
709 return 0;
710}
711
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000712// 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 +0900713// rule, but with a lower priority. We will never create routes in the main table; it should only be
714// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
715// This is necessary, for example, when adding a route through a directly-connected gateway: in
716// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000717WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
718 Fwmark fwmark;
719 Fwmark mask;
720
721 fwmark.netId = NETID_UNSET;
722 mask.netId = FWMARK_NET_ID_MASK;
723
724 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
725 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
726}
727
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900728// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
729// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
730// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
731// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700732WARN_UNUSED_RESULT int addUnreachableRule() {
733 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
734 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700735}
736
737WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700738 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
739 return ret;
740 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900741 return modifyOutputInterfaceRules(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
742 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700743}
744
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700745WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
746 Permission permission, bool add) {
747 uint32_t table = getRouteTableForInterface(interface);
748 if (table == RT_TABLE_UNSPEC) {
749 return -ESRCH;
750 }
751
752 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
753 return ret;
754 }
755 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
756 add)) {
757 return ret;
758 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900759 if (int ret = modifyOutputInterfaceRules(interface, table, permission, INVALID_UID, INVALID_UID,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700760 add)) {
761 return ret;
762 }
763 return modifyImplicitNetworkRule(netId, table, permission, add);
764}
765
766WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700767 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700768 bool modifyNonUidBasedRules) {
769 uint32_t table = getRouteTableForInterface(interface);
770 if (table == RT_TABLE_UNSPEC) {
771 return -ESRCH;
772 }
773
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700774 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700775 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700776 return ret;
777 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700778 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
779 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700780 return ret;
781 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900782 if (int ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE, range.first,
783 range.second, add)) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700784 return ret;
785 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700786 }
787
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700788 if (modifyNonUidBasedRules) {
789 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700790 return ret;
791 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700792 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
793 return ret;
794 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700795 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700796 return ret;
797 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700798 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700799 }
800
801 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700802}
803
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700804WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
805 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700806 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700807 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900808 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700809 }
810
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700811 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700812 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700813
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700814 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700815 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700816
817 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700818 mask.permission = permission;
819
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700820 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700821 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700822}
823
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700824WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
825 const char* outputInterface) {
826 uint32_t table = getRouteTableForInterface(outputInterface);
827 if (table == RT_TABLE_UNSPEC) {
828 return -ESRCH;
829 }
830
831 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
832 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
833}
834
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700835// Returns 0 on success or negative errno on failure.
836WARN_UNUSED_RESULT int flushRules() {
837 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
838 const char* argv[] = {
839 IP_PATH,
840 IP_VERSIONS[i],
841 "rule",
842 "flush",
843 };
844 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
845 ALOGE("failed to flush rules");
846 return -EREMOTEIO;
847 }
848 }
849 return 0;
850}
851
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700852// 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 +0900853// route, to the main table as well.
854// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700855WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
856 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700857 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700858 switch (tableType) {
859 case RouteController::INTERFACE: {
860 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700861 if (table == RT_TABLE_UNSPEC) {
862 return -ESRCH;
863 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700864 break;
865 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700866 case RouteController::LOCAL_NETWORK: {
867 table = ROUTE_TABLE_LOCAL_NETWORK;
868 break;
869 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700870 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700871 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700872 break;
873 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700874 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700875 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700876 break;
877 }
878 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700879
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900880 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran03213152014-10-30 10:01:07 -0700881 // Trying to add a route that already exists shouldn't cause an error.
882 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900883 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700884 }
885
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900886 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700887}
888
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700889// Returns 0 on success or negative errno on failure.
890WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700891 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700892 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700893 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700894 }
895
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900896 char tableString[UINT32_STRLEN];
897 snprintf(tableString, sizeof(tableString), "%u", table);
898
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900899 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700900 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900901 const char* argv[] = {
902 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700903 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700904 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900905 "flush",
906 "table",
907 tableString,
908 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900909
910 // A flush works by dumping routes and deleting each route as it's returned, and it can
911 // fail if something else deletes the route between the dump and the delete. This can
912 // happen, for example, if an interface goes down while we're trying to flush its routes.
913 // So try multiple times and only return an error if the last attempt fails.
914 //
915 // TODO: replace this with our own netlink code.
916 unsigned attempts = 0;
917 int err;
918 do {
919 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
920 NULL, false, false);
921 ++attempts;
922 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
923 if (err) {
924 ALOGE("failed to flush %s routes in table %s after %d attempts",
925 IP_VERSIONS[i], tableString, attempts);
926 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900927 }
928 }
929
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900930 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
931 // track of its name.
932 if (!ret) {
933 interfaceToTable.erase(interface);
934 }
935
936 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700937}
938
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900939WARN_UNUSED_RESULT int clearTetheringRules(const char* inputInterface) {
940 int ret = 0;
941 while (ret == 0) {
942 ret = modifyIpRule(RTM_DELRULE, RULE_PRIORITY_TETHERING, 0, MARK_UNSET, MARK_UNSET,
943 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
944 }
945
946 if (ret == -ENOENT) {
947 return 0;
948 } else {
949 return ret;
950 }
951}
952
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700953} // namespace
954
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700955int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700956 if (int ret = flushRules()) {
957 return ret;
958 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700959 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700960 return ret;
961 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700962 if (int ret = addLocalNetworkRules(localNetId)) {
963 return ret;
964 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000965 if (int ret = addDirectlyConnectedRule()) {
966 return ret;
967 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700968 if (int ret = addUnreachableRule()) {
969 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700970 }
Lorenzo Colitti36679362015-02-25 10:26:19 +0900971 // Don't complain if we can't add the dummy network, since not all devices support it.
972 configureDummyNetwork();
973
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700974 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700975 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700976}
977
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700978int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700979 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700980}
981
982int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700983 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700984}
985
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700986int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
987 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700988 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
989 return ret;
990 }
991 updateTableNamesFile();
992 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700993}
994
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700995int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
996 Permission permission) {
997 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700998 return ret;
999 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001000 if (int ret = flushRoutes(interface)) {
1001 return ret;
1002 }
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +09001003 if (int ret = clearTetheringRules(interface)) {
1004 return ret;
1005 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001006 updateTableNamesFile();
1007 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001008}
1009
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001010int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001011 bool secure, const UidRanges& uidRanges) {
1012 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001013 MODIFY_NON_UID_BASED_RULES)) {
1014 return ret;
1015 }
1016 updateTableNamesFile();
1017 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001018}
1019
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001020int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001021 bool secure, const UidRanges& uidRanges) {
1022 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001023 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001024 return ret;
1025 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001026 if (int ret = flushRoutes(interface)) {
1027 return ret;
1028 }
1029 updateTableNamesFile();
1030 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001031}
1032
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001033int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
1034 Permission oldPermission,
1035 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001036 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001037 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001038 return ret;
1039 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001040 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001041}
1042
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001043int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001044 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001045 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001046 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001047}
1048
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001049int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001050 bool secure, const UidRanges& uidRanges) {
1051 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001052 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001053}
1054
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001055int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
1056 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001057}
1058
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001059int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
1060 Permission permission) {
1061 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001062}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001063
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001064int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001065 TableType tableType) {
1066 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001067}
1068
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +09001069int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001070 const char* nexthop, TableType tableType) {
1071 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001072}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001073
1074int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001075 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001076}
1077
1078int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001079 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001080}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -07001081
1082int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
1083 Permission permission) {
1084 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1085}
1086
1087int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1088 const char* physicalInterface,
1089 Permission permission) {
1090 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1091}