blob: cdca2de7477d37e970d4777640111b09b18df340 [file] [log] [blame]
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "RouteController.h"
18
19#include "Fwmark.h"
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -070020#include "UidRanges.h"
Lorenzo Colitti36679362015-02-25 10:26:19 +090021#include "DummyNetwork.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070022
23#define LOG_TAG "Netd"
24#include "log/log.h"
25#include "logwrap/logwrap.h"
Lorenzo Colitti36679362015-02-25 10:26:19 +090026#include "netutils/ifc.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070027#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070028
Lorenzo Colittiba25df92014-06-18 00:22:17 +090029#include <arpa/inet.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070030#include <fcntl.h>
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090031#include <linux/fib_rules.h>
Paul Jensena561e122014-06-12 16:46:37 -040032#include <map>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070033#include <net/if.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070034#include <sys/stat.h>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070035
36namespace {
37
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070038// BEGIN CONSTANTS --------------------------------------------------------------------------------
39
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070040const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Lorenzo Colitti57947f02015-02-27 16:45:55 +090041const uint32_t RULE_PRIORITY_VPN_OVERRIDE_OIF = 10500;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070042const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070043const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
44const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
45const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
46const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
47const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070048const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070049const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070050const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070051const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070052const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070053const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000054const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090055const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070056
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070057const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070058const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
59const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
60
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070061const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070062const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
63const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
64
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070065const char* const ROUTE_TABLE_NAME_LOCAL = "local";
66const char* const ROUTE_TABLE_NAME_MAIN = "main";
67
Lorenzo Colitti59656512014-06-25 03:20:29 +090068// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
69// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
70// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
71// that will warn us if upstream has given these values some other meaning.
72const uint16_t FRA_UID_START = 18;
73const uint16_t FRA_UID_END = 19;
74static_assert(FRA_UID_START > FRA_MAX,
75 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
76 "Check that these values match what the kernel does and then update this assertion.");
77
Lorenzo Colitti72723682014-06-26 13:51:10 +090078const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
79const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090080
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070081const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
82
83const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
84
85const char* const IP_VERSIONS[] = {"-4", "-6"};
86
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070087const uid_t UID_ROOT = 0;
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +090088const char* const IIF_LOOPBACK = "lo";
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070089const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070090const char* const OIF_NONE = NULL;
91const bool ACTION_ADD = true;
92const bool ACTION_DEL = false;
93const bool MODIFY_NON_UID_BASED_RULES = true;
94
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070095const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -070096const int RT_TABLES_FLAGS = O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC;
97const 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 -070098
Lorenzo Colitti99286fe2014-08-12 15:08:00 +090099const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
100
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700101// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
102// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
103constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
104 return RTA_LENGTH(x);
105}
106
107// These are practically const, but can't be declared so, because they are used to initialize
108// non-const pointers ("void* iov_base") in iovec arrays.
109rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
110rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
111rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
112rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
113rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
114rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
115
116rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
117rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
118
119uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
120
121// END CONSTANTS ----------------------------------------------------------------------------------
122
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700123// No locks needed because RouteController is accessed only from one thread (in CommandListener).
124std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400125
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700126uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700127 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400128 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700129 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
130 interfaceToTable[interface] = index;
131 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400132 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700133 // If the interface goes away if_nametoindex() will return 0 but we still need to know
134 // the index so we can remove the rules and routes.
135 auto iter = interfaceToTable.find(interface);
136 if (iter == interfaceToTable.end()) {
137 ALOGE("cannot find interface %s", interface);
138 return RT_TABLE_UNSPEC;
139 }
140 return iter->second;
141}
142
143void addTableName(uint32_t table, const std::string& name, std::string* contents) {
144 char tableString[UINT32_STRLEN];
145 snprintf(tableString, sizeof(tableString), "%u", table);
146 *contents += tableString;
147 *contents += " ";
148 *contents += name;
149 *contents += "\n";
150}
151
152// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
153void updateTableNamesFile() {
154 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700155
156 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
157 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
158
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700159 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700160 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
161 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700162
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700163 for (const auto& entry : interfaceToTable) {
164 addTableName(entry.second, entry.first, &contents);
165 }
166
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700167 int fd = open(RT_TABLES_PATH, RT_TABLES_FLAGS, RT_TABLES_MODE);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700168 if (fd == -1) {
169 ALOGE("failed to create %s (%s)", RT_TABLES_PATH, strerror(errno));
170 return;
171 }
172 // File creation is affected by umask, so make sure the right mode bits are set.
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700173 if (fchmod(fd, RT_TABLES_MODE) == -1) {
174 ALOGE("failed to set mode 0%o on %s (%s)", RT_TABLES_MODE, RT_TABLES_PATH, strerror(errno));
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700175 }
176 ssize_t bytesWritten = write(fd, contents.data(), contents.size());
177 if (bytesWritten != static_cast<ssize_t>(contents.size())) {
178 ALOGE("failed to write to %s (%zd vs %zu bytes) (%s)", RT_TABLES_PATH, bytesWritten,
179 contents.size(), strerror(errno));
180 }
181 close(fd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700182}
183
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900184// Sends a netlink request and expects an ack.
185// |iov| is an array of struct iovec that contains the netlink message payload.
186// The netlink header is generated by this function based on |action| and |flags|.
187// Returns -errno if there was an error or if the kernel reported an error.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700188WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900189 nlmsghdr nlmsg = {
190 .nlmsg_type = action,
191 .nlmsg_flags = flags,
192 };
193 iov[0].iov_base = &nlmsg;
194 iov[0].iov_len = sizeof(nlmsg);
195 for (int i = 0; i < iovlen; ++i) {
196 nlmsg.nlmsg_len += iov[i].iov_len;
197 }
198
199 int ret;
200 struct {
201 nlmsghdr msg;
202 nlmsgerr err;
203 } response;
204
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900205 int sock = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
206 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700207 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
208 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900209 writev(sock, iov, iovlen) != -1 &&
210 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
211 if (ret == sizeof(response)) {
212 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700213 if (ret) {
214 ALOGE("netlink response contains error (%s)", strerror(-ret));
215 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900216 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700217 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900218 ret = -EBADMSG;
219 }
220 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700221 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900222 ret = -errno;
223 }
224
225 if (sock != -1) {
226 close(sock);
227 }
228
229 return ret;
230}
231
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700232// Returns 0 on success or negative errno on failure.
233int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
234 if (!input) {
235 *length = 0;
236 *padding = 0;
237 return 0;
238 }
239 *length = strlcpy(name, input, IFNAMSIZ) + 1;
240 if (*length > IFNAMSIZ) {
241 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
242 return -ENAMETOOLONG;
243 }
244 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
245 return 0;
246}
247
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700248// Adds or removes a routing rule for IPv4 and IPv6.
249//
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900250// + If |priority| is RULE_PRIORITY_UNREACHABLE, the rule returns ENETUNREACH (i.e., specifies an
251// action of FR_ACT_UNREACHABLE). Otherwise, the rule specifies an action of FR_ACT_TO_TBL.
252// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the table is
253// unspecified. An unspecified table is only allowed when deleting a rule.
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700254// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
255// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700256// + If |iif| is non-NULL, the rule matches the specified incoming interface.
257// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
258// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
259// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900260//
261// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700262WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700263 uint32_t fwmark, uint32_t mask, const char* iif,
264 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700265 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
266 if (fwmark & ~mask) {
267 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
268 return -ERANGE;
269 }
270
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700271 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900272 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700273 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
274 size_t iifLength, oifLength;
275 uint16_t iifPadding, oifPadding;
276 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
277 return ret;
278 }
279 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
280 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900281 }
282
Lorenzo Colitti59656512014-06-25 03:20:29 +0900283 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700284 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700285 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900286 return -EUSERS;
287 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900288 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900289
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900290 // Assemble a rule request and put it in an array of iovec structures.
291 fib_rule_hdr rule = {
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900292 .action = static_cast<uint8_t>(priority != RULE_PRIORITY_UNREACHABLE ? FR_ACT_TO_TBL :
293 FR_ACT_UNREACHABLE),
294 // Note that here we're implicitly setting rule.table to 0. When we want to specify a
295 // non-zero table, we do this via the FRATTR_TABLE attribute.
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900296 };
297
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900298 // Don't ever create a rule that looks up table 0, because table 0 is the local table.
299 // It's OK to specify a table ID of 0 when deleting a rule, because that doesn't actually select
300 // table 0, it's a wildcard that matches anything.
301 if (table == RT_TABLE_UNSPEC && rule.action == FR_ACT_TO_TBL && action != RTM_DELRULE) {
302 ALOGE("RT_TABLE_UNSPEC only allowed when deleting rules");
303 return -ENOTUNIQ;
304 }
305
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700306 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
307 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900308
309 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700310 { NULL, 0 },
311 { &rule, sizeof(rule) },
312 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
313 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700314 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
315 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700316 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
317 { &fwmark, mask ? sizeof(fwmark) : 0 },
318 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
319 { &mask, mask ? sizeof(mask) : 0 },
320 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
321 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
322 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
323 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700324 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
325 { iifName, iifLength },
326 { PADDING_BUFFER, iifPadding },
327 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
328 { oifName, oifLength },
329 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900330 };
331
Lorenzo Colitti72723682014-06-26 13:51:10 +0900332 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700333 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
334 rule.family = AF_FAMILIES[i];
335 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900336 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700337 }
338 }
339
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900340 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700341}
342
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700343WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
344 uint32_t fwmark, uint32_t mask) {
345 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
346 INVALID_UID);
347}
348
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900349// Adds or deletes an IPv4 or IPv6 route.
350// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700351WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
352 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900353 // At least the destination must be non-null.
354 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700355 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900356 return -EFAULT;
357 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700358
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900359 // Parse the prefix.
360 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700361 uint8_t family;
362 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900363 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
364 &prefixLength);
365 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700366 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900367 return rawLength;
368 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700369
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900370 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700371 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900372 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
373 }
374
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700375 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900376 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900377 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700378
379 if (nexthop && !strcmp(nexthop, "unreachable")) {
380 type = RTN_UNREACHABLE;
381 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
382 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
383 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
384 interface = OIF_NONE;
385 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900386 } else if (nexthop && !strcmp(nexthop, "throw")) {
387 type = RTN_THROW;
388 interface = OIF_NONE;
389 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700390 } else {
391 // If an interface was specified, find the ifindex.
392 if (interface != OIF_NONE) {
393 ifindex = if_nametoindex(interface);
394 if (!ifindex) {
395 ALOGE("cannot find interface %s", interface);
396 return -ENODEV;
397 }
398 }
399
400 // If a nexthop was specified, parse it as the same family as the prefix.
401 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
402 ALOGE("inet_pton failed for nexthop %s", nexthop);
403 return -EINVAL;
404 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900405 }
406
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900407 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700408 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900409 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700410 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900411 .rtm_family = family,
412 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700413 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900414 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900415
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700416 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
417 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900418
419 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700420 { NULL, 0 },
421 { &route, sizeof(route) },
422 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
423 { &table, sizeof(table) },
424 { &rtaDst, sizeof(rtaDst) },
425 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700426 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
427 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700428 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
429 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900430 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900431
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700432 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
433 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900434 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700435}
436
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700437// An iptables rule to mark incoming packets on a network with the netId of the network.
438//
439// This is so that the kernel can:
440// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
441// replies, SYN-ACKs, etc).
442// + Mark sockets that accept connections from this interface so that the connection stays on the
443// same interface.
444WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
445 Permission permission, bool add) {
446 Fwmark fwmark;
447
448 fwmark.netId = netId;
449 fwmark.explicitlySelected = true;
450 fwmark.protectedFromVpn = true;
451 fwmark.permission = permission;
452
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700453 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700454 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
455
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700456 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
457 "MARK", "--set-mark", markString, NULL)) {
458 ALOGE("failed to change iptables rule that sets incoming packet mark");
459 return -EREMOTEIO;
460 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700461
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700462 return 0;
463}
464
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700465// A rule to route responses to the local network forwarded via the VPN.
466//
467// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
468// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
469WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
470 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
471 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
472 INVALID_UID, INVALID_UID);
473}
474
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700475// A rule to route all traffic from a given set of UIDs to go over the VPN.
476//
477// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
478// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
479// bypass the VPN if the protectedFromVpn bit is set.
480WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700481 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700482 Fwmark fwmark;
483 Fwmark mask;
484
485 fwmark.protectedFromVpn = false;
486 mask.protectedFromVpn = true;
487
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700488 uint32_t priority;
489
490 if (secure) {
491 priority = RULE_PRIORITY_SECURE_VPN;
492 } else {
493 priority = RULE_PRIORITY_BYPASSABLE_VPN;
494
495 fwmark.explicitlySelected = false;
496 mask.explicitlySelected = true;
497 }
498
499 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
Lorenzo Colitti5ad4e982015-02-26 17:34:32 +0900500 mask.intValue, IIF_LOOPBACK, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700501}
502
503// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
504// set of UIDs.
505//
506// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
507// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700508WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
509 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700510 Fwmark fwmark;
511 Fwmark mask;
512
513 fwmark.netId = netId;
514 mask.netId = FWMARK_NET_ID_MASK;
515
516 fwmark.permission = PERMISSION_SYSTEM;
517 mask.permission = PERMISSION_SYSTEM;
518
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700519 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
520
521 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
522 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700523}
524
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700525// A rule to route traffic based on an explicitly chosen network.
526//
527// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
528//
529// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
530// to check it again in the rules here, because a network's permissions may have been updated via
531// modifyNetworkPermission().
532WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
533 Permission permission, uid_t uidStart,
534 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700535 Fwmark fwmark;
536 Fwmark mask;
537
538 fwmark.netId = netId;
539 mask.netId = FWMARK_NET_ID_MASK;
540
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700541 fwmark.explicitlySelected = true;
542 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700543
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700544 fwmark.permission = permission;
545 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700546
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700547 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700548 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700549}
550
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700551// A rule to route traffic based on a chosen outgoing interface.
552//
553// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
554// the outgoing interface (typically for link-local communications).
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900555WARN_UNUSED_RESULT int modifyOutputInterfaceRules(const char* interface, uint32_t table,
556 Permission permission, uid_t uidStart,
557 uid_t uidEnd, bool add) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700558 Fwmark fwmark;
559 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700560
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700561 fwmark.permission = permission;
562 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700563
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900564 // If this rule does not specify a UID range, then also add a corresponding high-priority rule
565 // for UID. This covers forwarded packets and system daemons such as the tethering DHCP server.
566 if (uidStart == INVALID_UID && uidEnd == INVALID_UID) {
567 if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OVERRIDE_OIF,
568 table, fwmark.intValue, mask.intValue, IIF_NONE, interface,
569 UID_ROOT, UID_ROOT)) {
570 return ret;
571 }
572 }
573
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700574 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700575 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700576}
577
578// A rule to route traffic based on the chosen network.
579//
580// This is for sockets that have not explicitly requested a particular network, but have been
581// bound to one when they called connect(). This ensures that sockets connected on a particular
582// network stay on that network even if the default network changes.
583WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
584 Permission permission, bool add) {
585 Fwmark fwmark;
586 Fwmark mask;
587
588 fwmark.netId = netId;
589 mask.netId = FWMARK_NET_ID_MASK;
590
591 fwmark.explicitlySelected = false;
592 mask.explicitlySelected = true;
593
594 fwmark.permission = permission;
595 mask.permission = permission;
596
597 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700598 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700599}
600
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700601// A rule to enable split tunnel VPNs.
602//
603// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
604// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
605// permissions required by the default network.
606WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
607 const char* physicalInterface,
608 Permission permission) {
609 uint32_t table = getRouteTableForInterface(physicalInterface);
610 if (table == RT_TABLE_UNSPEC) {
611 return -ESRCH;
612 }
613
614 Fwmark fwmark;
615 Fwmark mask;
616
617 fwmark.netId = vpnNetId;
618 mask.netId = FWMARK_NET_ID_MASK;
619
620 fwmark.explicitlySelected = false;
621 mask.explicitlySelected = true;
622
623 fwmark.permission = permission;
624 mask.permission = permission;
625
626 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
627 mask.intValue);
628}
629
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700630// Add rules to allow legacy routes added through the requestRouteToHost() API.
631WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700632 Fwmark fwmark;
633 Fwmark mask;
634
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700635 fwmark.explicitlySelected = false;
636 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700637
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700638 // Rules to allow legacy routes to override the default network.
639 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
640 fwmark.intValue, mask.intValue)) {
641 return ret;
642 }
643 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
644 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
645 return ret;
646 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700647
648 fwmark.permission = PERMISSION_SYSTEM;
649 mask.permission = PERMISSION_SYSTEM;
650
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700651 // A rule to allow legacy routes from system apps to override VPNs.
652 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700653 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700654}
655
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700656// Add rules to lookup the local network when specified explicitly or otherwise.
657WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
658 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
659 INVALID_UID, INVALID_UID, ACTION_ADD)) {
660 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700661 }
662
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700663 Fwmark fwmark;
664 Fwmark mask;
665
666 fwmark.explicitlySelected = false;
667 mask.explicitlySelected = true;
668
669 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
670 fwmark.intValue, mask.intValue);
671}
672
Lorenzo Colitti36679362015-02-25 10:26:19 +0900673int configureDummyNetwork() {
674 const char *interface = DummyNetwork::INTERFACE_NAME;
675 uint32_t table = getRouteTableForInterface(interface);
676 if (table == RT_TABLE_UNSPEC) {
677 // getRouteTableForInterface has already looged an error.
678 return -ESRCH;
679 }
680
681 ifc_init();
682 int ret = ifc_up(interface);
683 ifc_close();
684 if (ret) {
685 ALOGE("Can't bring up %s: %s", interface, strerror(errno));
686 return -errno;
687 }
688
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900689 if ((ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE,
690 INVALID_UID, INVALID_UID, ACTION_ADD))) {
691 ALOGE("Can't create oif rules for %s: %s", interface, strerror(-ret));
Lorenzo Colitti36679362015-02-25 10:26:19 +0900692 return ret;
693 }
694
695 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "0.0.0.0/0", NULL))) {
696 ALOGE("Can't add IPv4 default route to %s: %s", interface, strerror(-ret));
697 return ret;
698 }
699
700 if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "::/0", NULL))) {
701 ALOGE("Can't add IPv6 default route to %s: %s", interface, strerror(-ret));
702 return ret;
703 }
704
705 return 0;
706}
707
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000708// 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 +0900709// rule, but with a lower priority. We will never create routes in the main table; it should only be
710// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
711// This is necessary, for example, when adding a route through a directly-connected gateway: in
712// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000713WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
714 Fwmark fwmark;
715 Fwmark mask;
716
717 fwmark.netId = NETID_UNSET;
718 mask.netId = FWMARK_NET_ID_MASK;
719
720 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
721 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
722}
723
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900724// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
725// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
726// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
727// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700728WARN_UNUSED_RESULT int addUnreachableRule() {
729 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
730 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700731}
732
733WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700734 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
735 return ret;
736 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900737 return modifyOutputInterfaceRules(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
738 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700739}
740
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700741WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
742 Permission permission, bool add) {
743 uint32_t table = getRouteTableForInterface(interface);
744 if (table == RT_TABLE_UNSPEC) {
745 return -ESRCH;
746 }
747
748 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
749 return ret;
750 }
751 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
752 add)) {
753 return ret;
754 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900755 if (int ret = modifyOutputInterfaceRules(interface, table, permission, INVALID_UID, INVALID_UID,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700756 add)) {
757 return ret;
758 }
759 return modifyImplicitNetworkRule(netId, table, permission, add);
760}
761
762WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700763 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700764 bool modifyNonUidBasedRules) {
765 uint32_t table = getRouteTableForInterface(interface);
766 if (table == RT_TABLE_UNSPEC) {
767 return -ESRCH;
768 }
769
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700770 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700771 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700772 return ret;
773 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700774 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
775 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700776 return ret;
777 }
Lorenzo Colitti57947f02015-02-27 16:45:55 +0900778 if (int ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE, range.first,
779 range.second, add)) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700780 return ret;
781 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700782 }
783
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700784 if (modifyNonUidBasedRules) {
785 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700786 return ret;
787 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700788 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
789 return ret;
790 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700791 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700792 return ret;
793 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700794 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700795 }
796
797 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700798}
799
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700800WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
801 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700802 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700803 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900804 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700805 }
806
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700807 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700808 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700809
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700810 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700811 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700812
813 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700814 mask.permission = permission;
815
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700816 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700817 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700818}
819
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700820WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
821 const char* outputInterface) {
822 uint32_t table = getRouteTableForInterface(outputInterface);
823 if (table == RT_TABLE_UNSPEC) {
824 return -ESRCH;
825 }
826
827 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
828 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
829}
830
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700831// Returns 0 on success or negative errno on failure.
832WARN_UNUSED_RESULT int flushRules() {
833 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
834 const char* argv[] = {
835 IP_PATH,
836 IP_VERSIONS[i],
837 "rule",
838 "flush",
839 };
840 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
841 ALOGE("failed to flush rules");
842 return -EREMOTEIO;
843 }
844 }
845 return 0;
846}
847
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700848// 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 +0900849// route, to the main table as well.
850// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700851WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
852 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700853 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700854 switch (tableType) {
855 case RouteController::INTERFACE: {
856 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700857 if (table == RT_TABLE_UNSPEC) {
858 return -ESRCH;
859 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700860 break;
861 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700862 case RouteController::LOCAL_NETWORK: {
863 table = ROUTE_TABLE_LOCAL_NETWORK;
864 break;
865 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700866 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700867 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700868 break;
869 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700870 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700871 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700872 break;
873 }
874 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700875
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900876 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran64166e72014-10-30 10:01:07 -0700877 // Trying to add a route that already exists shouldn't cause an error.
878 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900879 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700880 }
881
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900882 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700883}
884
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700885// Returns 0 on success or negative errno on failure.
886WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700887 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700888 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700889 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700890 }
891
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900892 char tableString[UINT32_STRLEN];
893 snprintf(tableString, sizeof(tableString), "%u", table);
894
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900895 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700896 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900897 const char* argv[] = {
898 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700899 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700900 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900901 "flush",
902 "table",
903 tableString,
904 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900905
906 // A flush works by dumping routes and deleting each route as it's returned, and it can
907 // fail if something else deletes the route between the dump and the delete. This can
908 // happen, for example, if an interface goes down while we're trying to flush its routes.
909 // So try multiple times and only return an error if the last attempt fails.
910 //
911 // TODO: replace this with our own netlink code.
912 unsigned attempts = 0;
913 int err;
914 do {
915 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
916 NULL, false, false);
917 ++attempts;
918 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
919 if (err) {
920 ALOGE("failed to flush %s routes in table %s after %d attempts",
921 IP_VERSIONS[i], tableString, attempts);
922 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900923 }
924 }
925
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900926 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
927 // track of its name.
928 if (!ret) {
929 interfaceToTable.erase(interface);
930 }
931
932 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700933}
934
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900935WARN_UNUSED_RESULT int clearTetheringRules(const char* inputInterface) {
936 int ret = 0;
937 while (ret == 0) {
938 ret = modifyIpRule(RTM_DELRULE, RULE_PRIORITY_TETHERING, 0, MARK_UNSET, MARK_UNSET,
939 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
940 }
941
942 if (ret == -ENOENT) {
943 return 0;
944 } else {
945 return ret;
946 }
947}
948
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700949} // namespace
950
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700951int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700952 if (int ret = flushRules()) {
953 return ret;
954 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700955 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700956 return ret;
957 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700958 if (int ret = addLocalNetworkRules(localNetId)) {
959 return ret;
960 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000961 if (int ret = addDirectlyConnectedRule()) {
962 return ret;
963 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700964 if (int ret = addUnreachableRule()) {
965 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700966 }
Lorenzo Colitti36679362015-02-25 10:26:19 +0900967 // Don't complain if we can't add the dummy network, since not all devices support it.
968 configureDummyNetwork();
969
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700970 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700971 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700972}
973
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700974int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700975 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700976}
977
978int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700979 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700980}
981
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700982int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
983 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700984 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
985 return ret;
986 }
987 updateTableNamesFile();
988 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700989}
990
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700991int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
992 Permission permission) {
993 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700994 return ret;
995 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700996 if (int ret = flushRoutes(interface)) {
997 return ret;
998 }
Lorenzo Colitti6b6f25f2015-03-03 17:22:57 +0900999 if (int ret = clearTetheringRules(interface)) {
1000 return ret;
1001 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001002 updateTableNamesFile();
1003 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001004}
1005
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001006int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001007 bool secure, const UidRanges& uidRanges) {
1008 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001009 MODIFY_NON_UID_BASED_RULES)) {
1010 return ret;
1011 }
1012 updateTableNamesFile();
1013 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001014}
1015
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001016int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001017 bool secure, const UidRanges& uidRanges) {
1018 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001019 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001020 return ret;
1021 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -07001022 if (int ret = flushRoutes(interface)) {
1023 return ret;
1024 }
1025 updateTableNamesFile();
1026 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -07001027}
1028
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001029int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
1030 Permission oldPermission,
1031 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -07001032 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001033 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001034 return ret;
1035 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001036 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001037}
1038
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001039int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001040 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001041 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001042 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -07001043}
1044
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001045int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -07001046 bool secure, const UidRanges& uidRanges) {
1047 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001048 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001049}
1050
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001051int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
1052 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -07001053}
1054
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -07001055int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
1056 Permission permission) {
1057 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -07001058}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001059
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -07001060int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001061 TableType tableType) {
1062 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001063}
1064
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +09001065int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -07001066 const char* nexthop, TableType tableType) {
1067 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -07001068}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001069
1070int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001071 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001072}
1073
1074int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -07001075 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -07001076}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -07001077
1078int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
1079 Permission permission) {
1080 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1081}
1082
1083int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1084 const char* physicalInterface,
1085 Permission permission) {
1086 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1087}