blob: ba5da9d41da01c0448542d24737f8f417f562703 [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"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070021
22#define LOG_TAG "Netd"
23#include "log/log.h"
24#include "logwrap/logwrap.h"
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070025#include "resolv_netid.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070026
Lorenzo Colittiba25df92014-06-18 00:22:17 +090027#include <arpa/inet.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070028#include <fcntl.h>
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090029#include <linux/fib_rules.h>
Paul Jensena561e122014-06-12 16:46:37 -040030#include <map>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070031#include <net/if.h>
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070032#include <sys/stat.h>
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070033
34namespace {
35
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070036// BEGIN CONSTANTS --------------------------------------------------------------------------------
37
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070038const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000;
Sreeram Ramachandran111bec22014-07-22 18:51:06 -070039const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070040const uint32_t RULE_PRIORITY_SECURE_VPN = 12000;
41const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000;
42const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000;
43const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000;
44const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070045const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070046const uint32_t RULE_PRIORITY_TETHERING = 18000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070047const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000;
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -070048const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070049const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070050const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000;
Lorenzo Colittia2c23052014-07-29 09:25:44 +000051const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000;
Lorenzo Colittidb74dba2014-07-29 18:26:21 +090052const uint32_t RULE_PRIORITY_UNREACHABLE = 32000;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070053
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070054const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97;
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070055const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98;
56const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99;
57
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070058const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network";
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070059const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network";
60const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system";
61
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -070062const char* const ROUTE_TABLE_NAME_LOCAL = "local";
63const char* const ROUTE_TABLE_NAME_MAIN = "main";
64
Lorenzo Colitti59656512014-06-25 03:20:29 +090065// TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not
66// upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make
67// it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert
68// that will warn us if upstream has given these values some other meaning.
69const uint16_t FRA_UID_START = 18;
70const uint16_t FRA_UID_END = 19;
71static_assert(FRA_UID_START > FRA_MAX,
72 "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. "
73 "Check that these values match what the kernel does and then update this assertion.");
74
Lorenzo Colitti72723682014-06-26 13:51:10 +090075const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK;
76const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +090077
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070078const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0};
79
80const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6};
81
82const char* const IP_VERSIONS[] = {"-4", "-6"};
83
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070084const uid_t UID_ROOT = 0;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -070085const char* const IIF_NONE = NULL;
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -070086const char* const OIF_NONE = NULL;
87const bool ACTION_ADD = true;
88const bool ACTION_DEL = false;
89const bool MODIFY_NON_UID_BASED_RULES = true;
90
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -070091const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables";
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -070092const int RT_TABLES_FLAGS = O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC;
93const 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 -070094
Lorenzo Colitti99286fe2014-08-12 15:08:00 +090095const unsigned ROUTE_FLUSH_ATTEMPTS = 2;
96
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070097// Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'"
98// warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t).
99constexpr uint16_t U16_RTA_LENGTH(uint16_t x) {
100 return RTA_LENGTH(x);
101}
102
103// These are practically const, but can't be declared so, because they are used to initialize
104// non-const pointers ("void* iov_base") in iovec arrays.
105rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY };
106rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE };
107rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK };
108rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK };
109rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START };
110rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END };
111
112rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE };
113rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF };
114
115uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0};
116
117// END CONSTANTS ----------------------------------------------------------------------------------
118
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700119// No locks needed because RouteController is accessed only from one thread (in CommandListener).
120std::map<std::string, uint32_t> interfaceToTable;
Paul Jensena561e122014-06-12 16:46:37 -0400121
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700122uint32_t getRouteTableForInterface(const char* interface) {
Sreeram Ramachandrana4811802014-04-10 12:10:24 -0700123 uint32_t index = if_nametoindex(interface);
Paul Jensena561e122014-06-12 16:46:37 -0400124 if (index) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700125 index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX;
126 interfaceToTable[interface] = index;
127 return index;
Paul Jensena561e122014-06-12 16:46:37 -0400128 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700129 // If the interface goes away if_nametoindex() will return 0 but we still need to know
130 // the index so we can remove the rules and routes.
131 auto iter = interfaceToTable.find(interface);
132 if (iter == interfaceToTable.end()) {
133 ALOGE("cannot find interface %s", interface);
134 return RT_TABLE_UNSPEC;
135 }
136 return iter->second;
137}
138
139void addTableName(uint32_t table, const std::string& name, std::string* contents) {
140 char tableString[UINT32_STRLEN];
141 snprintf(tableString, sizeof(tableString), "%u", table);
142 *contents += tableString;
143 *contents += " ";
144 *contents += name;
145 *contents += "\n";
146}
147
148// Doesn't return success/failure as the file is optional; it's okay if we fail to update it.
149void updateTableNamesFile() {
150 std::string contents;
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700151
152 addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents);
153 addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents);
154
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700155 addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700156 addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents);
157 addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents);
Sreeram Ramachandranbb40d512014-07-11 11:45:14 -0700158
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700159 for (const auto& entry : interfaceToTable) {
160 addTableName(entry.second, entry.first, &contents);
161 }
162
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700163 int fd = open(RT_TABLES_PATH, RT_TABLES_FLAGS, RT_TABLES_MODE);
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700164 if (fd == -1) {
165 ALOGE("failed to create %s (%s)", RT_TABLES_PATH, strerror(errno));
166 return;
167 }
168 // File creation is affected by umask, so make sure the right mode bits are set.
Sreeram Ramachandranc7d804c2014-07-09 07:39:30 -0700169 if (fchmod(fd, RT_TABLES_MODE) == -1) {
170 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 -0700171 }
172 ssize_t bytesWritten = write(fd, contents.data(), contents.size());
173 if (bytesWritten != static_cast<ssize_t>(contents.size())) {
174 ALOGE("failed to write to %s (%zd vs %zu bytes) (%s)", RT_TABLES_PATH, bytesWritten,
175 contents.size(), strerror(errno));
176 }
177 close(fd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700178}
179
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900180// Sends a netlink request and expects an ack.
181// |iov| is an array of struct iovec that contains the netlink message payload.
182// The netlink header is generated by this function based on |action| and |flags|.
183// Returns -errno if there was an error or if the kernel reported an error.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700184WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900185 nlmsghdr nlmsg = {
186 .nlmsg_type = action,
187 .nlmsg_flags = flags,
188 };
189 iov[0].iov_base = &nlmsg;
190 iov[0].iov_len = sizeof(nlmsg);
191 for (int i = 0; i < iovlen; ++i) {
192 nlmsg.nlmsg_len += iov[i].iov_len;
193 }
194
195 int ret;
196 struct {
197 nlmsghdr msg;
198 nlmsgerr err;
199 } response;
200
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900201 int sock = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
202 if (sock != -1 &&
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700203 connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS),
204 sizeof(NETLINK_ADDRESS)) != -1 &&
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900205 writev(sock, iov, iovlen) != -1 &&
206 (ret = recv(sock, &response, sizeof(response), 0)) != -1) {
207 if (ret == sizeof(response)) {
208 ret = response.err.error; // Netlink errors are negative errno.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700209 if (ret) {
210 ALOGE("netlink response contains error (%s)", strerror(-ret));
211 }
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900212 } else {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700213 ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900214 ret = -EBADMSG;
215 }
216 } else {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700217 ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno));
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900218 ret = -errno;
219 }
220
221 if (sock != -1) {
222 close(sock);
223 }
224
225 return ret;
226}
227
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700228// Returns 0 on success or negative errno on failure.
229int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) {
230 if (!input) {
231 *length = 0;
232 *padding = 0;
233 return 0;
234 }
235 *length = strlcpy(name, input, IFNAMSIZ) + 1;
236 if (*length > IFNAMSIZ) {
237 ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ);
238 return -ENAMETOOLONG;
239 }
240 *padding = RTA_SPACE(*length) - RTA_LENGTH(*length);
241 return 0;
242}
243
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700244// Adds or removes a routing rule for IPv4 and IPv6.
245//
246// + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the rule
247// returns ENETUNREACH.
248// + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is
249// ignored.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700250// + If |iif| is non-NULL, the rule matches the specified incoming interface.
251// + If |oif| is non-NULL, the rule matches the specified outgoing interface.
252// + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that
253// range (inclusive). Otherwise, the rule matches packets from all UIDs.
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900254//
255// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700256WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700257 uint32_t fwmark, uint32_t mask, const char* iif,
258 const char* oif, uid_t uidStart, uid_t uidEnd) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700259 // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask.
260 if (fwmark & ~mask) {
261 ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark);
262 return -ERANGE;
263 }
264
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700265 // Interface names must include exactly one terminating NULL and be properly padded, or older
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900266 // kernels will refuse to delete rules.
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700267 char iifName[IFNAMSIZ], oifName[IFNAMSIZ];
268 size_t iifLength, oifLength;
269 uint16_t iifPadding, oifPadding;
270 if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) {
271 return ret;
272 }
273 if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) {
274 return ret;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900275 }
276
Lorenzo Colitti59656512014-06-25 03:20:29 +0900277 // Either both start and end UID must be specified, or neither.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700278 if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) {
Sreeram Ramachandrancf891382014-07-01 15:49:20 -0700279 ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900280 return -EUSERS;
281 }
Lorenzo Colitti72723682014-06-26 13:51:10 +0900282 bool isUidRule = (uidStart != INVALID_UID);
Lorenzo Colitti59656512014-06-25 03:20:29 +0900283
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900284 // Assemble a rule request and put it in an array of iovec structures.
285 fib_rule_hdr rule = {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700286 .action = static_cast<uint8_t>(table != RT_TABLE_UNSPEC ? FR_ACT_TO_TBL :
287 FR_ACT_UNREACHABLE),
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900288 };
289
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700290 rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME };
291 rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900292
293 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700294 { NULL, 0 },
295 { &rule, sizeof(rule) },
296 { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) },
297 { &priority, sizeof(priority) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700298 { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 },
299 { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700300 { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 },
301 { &fwmark, mask ? sizeof(fwmark) : 0 },
302 { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 },
303 { &mask, mask ? sizeof(mask) : 0 },
304 { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 },
305 { &uidStart, isUidRule ? sizeof(uidStart) : 0 },
306 { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 },
307 { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 },
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700308 { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 },
309 { iifName, iifLength },
310 { PADDING_BUFFER, iifPadding },
311 { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 },
312 { oifName, oifLength },
313 { PADDING_BUFFER, oifPadding },
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900314 };
315
Lorenzo Colitti72723682014-06-26 13:51:10 +0900316 uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700317 for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) {
318 rule.family = AF_FAMILIES[i];
319 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900320 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700321 }
322 }
323
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900324 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700325}
326
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700327WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table,
328 uint32_t fwmark, uint32_t mask) {
329 return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID,
330 INVALID_UID);
331}
332
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900333// Adds or deletes an IPv4 or IPv6 route.
334// Returns 0 on success or negative errno on failure.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700335WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface,
336 const char* destination, const char* nexthop) {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900337 // At least the destination must be non-null.
338 if (!destination) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700339 ALOGE("null destination");
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900340 return -EFAULT;
341 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700342
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900343 // Parse the prefix.
344 uint8_t rawAddress[sizeof(in6_addr)];
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700345 uint8_t family;
346 uint8_t prefixLength;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900347 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
348 &prefixLength);
349 if (rawLength < 0) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700350 ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900351 return rawLength;
352 }
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700353
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900354 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
Sreeram Ramachandran1201e842014-07-01 15:06:05 -0700355 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900356 return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6.
357 }
358
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700359 uint8_t type = RTN_UNICAST;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900360 uint32_t ifindex;
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900361 uint8_t rawNexthop[sizeof(in6_addr)];
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700362
363 if (nexthop && !strcmp(nexthop, "unreachable")) {
364 type = RTN_UNREACHABLE;
365 // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup
366 // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for
367 // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.)
368 interface = OIF_NONE;
369 nexthop = NULL;
Lorenzo Colitti4c95a122014-09-18 16:01:50 +0900370 } else if (nexthop && !strcmp(nexthop, "throw")) {
371 type = RTN_THROW;
372 interface = OIF_NONE;
373 nexthop = NULL;
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700374 } else {
375 // If an interface was specified, find the ifindex.
376 if (interface != OIF_NONE) {
377 ifindex = if_nametoindex(interface);
378 if (!ifindex) {
379 ALOGE("cannot find interface %s", interface);
380 return -ENODEV;
381 }
382 }
383
384 // If a nexthop was specified, parse it as the same family as the prefix.
385 if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) {
386 ALOGE("inet_pton failed for nexthop %s", nexthop);
387 return -EINVAL;
388 }
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900389 }
390
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900391 // Assemble a rtmsg and put it in an array of iovec structures.
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700392 rtmsg route = {
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900393 .rtm_protocol = RTPROT_STATIC,
Sreeram Ramachandrande5d5df2014-07-26 18:43:25 -0700394 .rtm_type = type,
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900395 .rtm_family = family,
396 .rtm_dst_len = prefixLength,
Sreeram Ramachandran2bff72e2014-07-18 13:03:47 -0700397 .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK),
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900398 };
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900399
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700400 rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST };
401 rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900402
403 iovec iov[] = {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700404 { NULL, 0 },
405 { &route, sizeof(route) },
406 { &RTATTR_TABLE, sizeof(RTATTR_TABLE) },
407 { &table, sizeof(table) },
408 { &rtaDst, sizeof(rtaDst) },
409 { rawAddress, static_cast<size_t>(rawLength) },
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700410 { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 },
411 { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 },
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700412 { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 },
413 { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 },
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900414 };
Lorenzo Colittiba25df92014-06-18 00:22:17 +0900415
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700416 uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS :
417 NETLINK_REQUEST_FLAGS;
Lorenzo Colitti4753afd2014-06-20 23:03:29 +0900418 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700419}
420
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700421// An iptables rule to mark incoming packets on a network with the netId of the network.
422//
423// This is so that the kernel can:
424// + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping
425// replies, SYN-ACKs, etc).
426// + Mark sockets that accept connections from this interface so that the connection stays on the
427// same interface.
428WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface,
429 Permission permission, bool add) {
430 Fwmark fwmark;
431
432 fwmark.netId = netId;
433 fwmark.explicitlySelected = true;
434 fwmark.protectedFromVpn = true;
435 fwmark.permission = permission;
436
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700437 char markString[UINT32_HEX_STRLEN];
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700438 snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue);
439
Nilesh Poddarfb31c222014-12-19 10:43:30 -0800440 if (execIptables(V4V6, "-w", "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700441 "MARK", "--set-mark", markString, NULL)) {
442 ALOGE("failed to change iptables rule that sets incoming packet mark");
443 return -EREMOTEIO;
444 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700445
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700446 return 0;
447}
448
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700449// A rule to route responses to the local network forwarded via the VPN.
450//
451// When a VPN is in effect, packets from the local network to upstream networks are forwarded into
452// the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel.
453WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) {
454 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL,
455 ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE,
456 INVALID_UID, INVALID_UID);
457}
458
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700459// A rule to route all traffic from a given set of UIDs to go over the VPN.
460//
461// Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may
462// have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to
463// bypass the VPN if the protectedFromVpn bit is set.
464WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700465 bool secure, bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700466 Fwmark fwmark;
467 Fwmark mask;
468
469 fwmark.protectedFromVpn = false;
470 mask.protectedFromVpn = true;
471
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700472 uint32_t priority;
473
474 if (secure) {
475 priority = RULE_PRIORITY_SECURE_VPN;
476 } else {
477 priority = RULE_PRIORITY_BYPASSABLE_VPN;
478
479 fwmark.explicitlySelected = false;
480 mask.explicitlySelected = true;
481 }
482
483 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
484 mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700485}
486
487// A rule to allow system apps to send traffic over this VPN even if they are not part of the target
488// set of UIDs.
489//
490// This is needed for DnsProxyListener to correctly resolve a request for a user who is in the
491// target set, but where the DnsProxyListener itself is not.
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700492WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure,
493 bool add) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700494 Fwmark fwmark;
495 Fwmark mask;
496
497 fwmark.netId = netId;
498 mask.netId = FWMARK_NET_ID_MASK;
499
500 fwmark.permission = PERMISSION_SYSTEM;
501 mask.permission = PERMISSION_SYSTEM;
502
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700503 uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN;
504
505 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue,
506 mask.intValue);
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700507}
508
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700509// A rule to route traffic based on an explicitly chosen network.
510//
511// Supports apps that use the multinetwork APIs to restrict their traffic to a network.
512//
513// Even though we check permissions at the time we set a netId into the fwmark of a socket, we need
514// to check it again in the rules here, because a network's permissions may have been updated via
515// modifyNetworkPermission().
516WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table,
517 Permission permission, uid_t uidStart,
518 uid_t uidEnd, bool add) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700519 Fwmark fwmark;
520 Fwmark mask;
521
522 fwmark.netId = netId;
523 mask.netId = FWMARK_NET_ID_MASK;
524
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700525 fwmark.explicitlySelected = true;
526 mask.explicitlySelected = true;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700527
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700528 fwmark.permission = permission;
529 mask.permission = permission;
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700530
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700531 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700532 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700533}
534
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700535// A rule to route traffic based on a chosen outgoing interface.
536//
537// Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows
538// the outgoing interface (typically for link-local communications).
539WARN_UNUSED_RESULT int modifyOutputInterfaceRule(const char* interface, uint32_t table,
540 Permission permission, uid_t uidStart,
541 uid_t uidEnd, bool add) {
542 Fwmark fwmark;
543 Fwmark mask;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700544
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700545 fwmark.permission = permission;
546 mask.permission = permission;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700547
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700548 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700549 fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700550}
551
552// A rule to route traffic based on the chosen network.
553//
554// This is for sockets that have not explicitly requested a particular network, but have been
555// bound to one when they called connect(). This ensures that sockets connected on a particular
556// network stay on that network even if the default network changes.
557WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table,
558 Permission permission, bool add) {
559 Fwmark fwmark;
560 Fwmark mask;
561
562 fwmark.netId = netId;
563 mask.netId = FWMARK_NET_ID_MASK;
564
565 fwmark.explicitlySelected = false;
566 mask.explicitlySelected = true;
567
568 fwmark.permission = permission;
569 mask.permission = permission;
570
571 return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700572 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700573}
574
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700575// A rule to enable split tunnel VPNs.
576//
577// If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to
578// go over the default network, provided it wasn't explicitly restricted to the VPN and has the
579// permissions required by the default network.
580WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId,
581 const char* physicalInterface,
582 Permission permission) {
583 uint32_t table = getRouteTableForInterface(physicalInterface);
584 if (table == RT_TABLE_UNSPEC) {
585 return -ESRCH;
586 }
587
588 Fwmark fwmark;
589 Fwmark mask;
590
591 fwmark.netId = vpnNetId;
592 mask.netId = FWMARK_NET_ID_MASK;
593
594 fwmark.explicitlySelected = false;
595 mask.explicitlySelected = true;
596
597 fwmark.permission = permission;
598 mask.permission = permission;
599
600 return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue,
601 mask.intValue);
602}
603
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700604// Add rules to allow legacy routes added through the requestRouteToHost() API.
605WARN_UNUSED_RESULT int addLegacyRouteRules() {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700606 Fwmark fwmark;
607 Fwmark mask;
608
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700609 fwmark.explicitlySelected = false;
610 mask.explicitlySelected = true;
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700611
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700612 // Rules to allow legacy routes to override the default network.
613 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
614 fwmark.intValue, mask.intValue)) {
615 return ret;
616 }
617 if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK,
618 ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) {
619 return ret;
620 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700621
622 fwmark.permission = PERMISSION_SYSTEM;
623 mask.permission = PERMISSION_SYSTEM;
624
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700625 // A rule to allow legacy routes from system apps to override VPNs.
626 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700627 fwmark.intValue, mask.intValue);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700628}
629
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700630// Add rules to lookup the local network when specified explicitly or otherwise.
631WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) {
632 if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
633 INVALID_UID, INVALID_UID, ACTION_ADD)) {
634 return ret;
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700635 }
636
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700637 Fwmark fwmark;
638 Fwmark mask;
639
640 fwmark.explicitlySelected = false;
641 mask.explicitlySelected = true;
642
643 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK,
644 fwmark.intValue, mask.intValue);
645}
646
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000647// 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 +0900648// rule, but with a lower priority. We will never create routes in the main table; it should only be
649// used for directly-connected routes implicitly created by the kernel when adding IP addresses.
650// This is necessary, for example, when adding a route through a directly-connected gateway: in
651// order to add the route, there must already be a directly-connected route that covers the gateway.
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000652WARN_UNUSED_RESULT int addDirectlyConnectedRule() {
653 Fwmark fwmark;
654 Fwmark mask;
655
656 fwmark.netId = NETID_UNSET;
657 mask.netId = FWMARK_NET_ID_MASK;
658
659 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN,
660 fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT);
661}
662
Lorenzo Colittidb74dba2014-07-29 18:26:21 +0900663// Add an explicit unreachable rule close to the end of the prioriy list to make it clear that
664// relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended
665// behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable
666// rule will hopefully make things even clearer.
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700667WARN_UNUSED_RESULT int addUnreachableRule() {
668 return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET,
669 MARK_UNSET);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700670}
671
672WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) {
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700673 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
674 return ret;
675 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700676 return modifyOutputInterfaceRule(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE,
677 INVALID_UID, INVALID_UID, add);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700678}
679
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700680WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface,
681 Permission permission, bool add) {
682 uint32_t table = getRouteTableForInterface(interface);
683 if (table == RT_TABLE_UNSPEC) {
684 return -ESRCH;
685 }
686
687 if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) {
688 return ret;
689 }
690 if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID,
691 add)) {
692 return ret;
693 }
694 if (int ret = modifyOutputInterfaceRule(interface, table, permission, INVALID_UID, INVALID_UID,
695 add)) {
696 return ret;
697 }
698 return modifyImplicitNetworkRule(netId, table, permission, add);
699}
700
701WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700702 const UidRanges& uidRanges, bool secure, bool add,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700703 bool modifyNonUidBasedRules) {
704 uint32_t table = getRouteTableForInterface(interface);
705 if (table == RT_TABLE_UNSPEC) {
706 return -ESRCH;
707 }
708
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700709 for (const UidRanges::Range& range : uidRanges.getRanges()) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700710 if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700711 return ret;
712 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700713 if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first,
714 range.second, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700715 return ret;
716 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700717 if (int ret = modifyOutputInterfaceRule(interface, table, PERMISSION_NONE, range.first,
718 range.second, add)) {
719 return ret;
720 }
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700721 }
722
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700723 if (modifyNonUidBasedRules) {
724 if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) {
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700725 return ret;
726 }
Sreeram Ramachandran111bec22014-07-22 18:51:06 -0700727 if (int ret = modifyVpnOutputToLocalRule(interface, add)) {
728 return ret;
729 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700730 if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700731 return ret;
732 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700733 return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700734 }
735
736 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700737}
738
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700739WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface,
740 Permission permission) {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700741 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700742 if (table == RT_TABLE_UNSPEC) {
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900743 return -ESRCH;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700744 }
745
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700746 Fwmark fwmark;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700747 Fwmark mask;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700748
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700749 fwmark.netId = NETID_UNSET;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700750 mask.netId = FWMARK_NET_ID_MASK;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700751
752 fwmark.permission = permission;
Sreeram Ramachandran122f5812014-05-11 20:29:49 -0700753 mask.permission = permission;
754
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700755 return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue,
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700756 mask.intValue);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700757}
758
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700759WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
760 const char* outputInterface) {
761 uint32_t table = getRouteTableForInterface(outputInterface);
762 if (table == RT_TABLE_UNSPEC) {
763 return -ESRCH;
764 }
765
766 return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET,
767 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID);
768}
769
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700770// Returns 0 on success or negative errno on failure.
771WARN_UNUSED_RESULT int flushRules() {
772 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
773 const char* argv[] = {
774 IP_PATH,
775 IP_VERSIONS[i],
776 "rule",
777 "flush",
778 };
779 if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) {
780 ALOGE("failed to flush rules");
781 return -EREMOTEIO;
782 }
783 }
784 return 0;
785}
786
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700787// 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 +0900788// route, to the main table as well.
789// Returns 0 on success or negative errno on failure.
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700790WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination,
791 const char* nexthop, RouteController::TableType tableType) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700792 uint32_t table;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700793 switch (tableType) {
794 case RouteController::INTERFACE: {
795 table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700796 if (table == RT_TABLE_UNSPEC) {
797 return -ESRCH;
798 }
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700799 break;
800 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700801 case RouteController::LOCAL_NETWORK: {
802 table = ROUTE_TABLE_LOCAL_NETWORK;
803 break;
804 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700805 case RouteController::LEGACY_NETWORK: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700806 table = ROUTE_TABLE_LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700807 break;
808 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700809 case RouteController::LEGACY_SYSTEM: {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700810 table = ROUTE_TABLE_LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700811 break;
812 }
813 }
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700814
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900815 int ret = modifyIpRoute(action, table, interface, destination, nexthop);
Sreeram Ramachandran64166e72014-10-30 10:01:07 -0700816 // Trying to add a route that already exists shouldn't cause an error.
817 if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) {
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900818 return ret;
Sreeram Ramachandranc9213372014-04-16 12:32:18 -0700819 }
820
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900821 return 0;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700822}
823
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700824// Returns 0 on success or negative errno on failure.
825WARN_UNUSED_RESULT int flushRoutes(const char* interface) {
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700826 uint32_t table = getRouteTableForInterface(interface);
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700827 if (table == RT_TABLE_UNSPEC) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700828 return -ESRCH;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700829 }
830
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900831 char tableString[UINT32_STRLEN];
832 snprintf(tableString, sizeof(tableString), "%u", table);
833
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900834 int ret = 0;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700835 for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) {
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900836 const char* argv[] = {
837 IP_PATH,
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700838 IP_VERSIONS[i],
Sreeram Ramachandran72999d62014-07-02 18:06:34 -0700839 "route",
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900840 "flush",
841 "table",
842 tableString,
843 };
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900844
845 // A flush works by dumping routes and deleting each route as it's returned, and it can
846 // fail if something else deletes the route between the dump and the delete. This can
847 // happen, for example, if an interface goes down while we're trying to flush its routes.
848 // So try multiple times and only return an error if the last attempt fails.
849 //
850 // TODO: replace this with our own netlink code.
851 unsigned attempts = 0;
852 int err;
853 do {
854 err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv),
855 NULL, false, false);
856 ++attempts;
857 } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS);
858 if (err) {
859 ALOGE("failed to flush %s routes in table %s after %d attempts",
860 IP_VERSIONS[i], tableString, attempts);
861 ret = -EREMOTEIO;
Lorenzo Colitti357e5622014-06-17 16:14:17 +0900862 }
863 }
864
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900865 // If we failed to flush routes, the caller may elect to keep this interface around, so keep
866 // track of its name.
867 if (!ret) {
868 interfaceToTable.erase(interface);
869 }
870
871 return ret;
Sreeram Ramachandran92b66c42014-04-15 14:28:55 -0700872}
873
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700874} // namespace
875
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700876int RouteController::Init(unsigned localNetId) {
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700877 if (int ret = flushRules()) {
878 return ret;
879 }
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700880 if (int ret = addLegacyRouteRules()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700881 return ret;
882 }
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700883 if (int ret = addLocalNetworkRules(localNetId)) {
884 return ret;
885 }
Lorenzo Colittia2c23052014-07-29 09:25:44 +0000886 if (int ret = addDirectlyConnectedRule()) {
887 return ret;
888 }
Sreeram Ramachandranb717e742014-07-19 00:22:15 -0700889 if (int ret = addUnreachableRule()) {
890 return ret;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700891 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700892 updateTableNamesFile();
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700893 return 0;
Sreeram Ramachandran8fe9c8e2014-04-16 12:08:05 -0700894}
895
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700896int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700897 return modifyLocalNetwork(netId, interface, ACTION_ADD);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700898}
899
900int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700901 return modifyLocalNetwork(netId, interface, ACTION_DEL);
Sreeram Ramachandran6a773532014-07-11 09:10:20 -0700902}
903
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700904int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface,
905 Permission permission) {
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700906 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) {
907 return ret;
908 }
909 updateTableNamesFile();
910 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700911}
912
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700913int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface,
914 Permission permission) {
915 if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700916 return ret;
917 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700918 if (int ret = flushRoutes(interface)) {
919 return ret;
920 }
921 updateTableNamesFile();
922 return 0;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700923}
924
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700925int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700926 bool secure, const UidRanges& uidRanges) {
927 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700928 MODIFY_NON_UID_BASED_RULES)) {
929 return ret;
930 }
931 updateTableNamesFile();
932 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700933}
934
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700935int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700936 bool secure, const UidRanges& uidRanges) {
937 if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700938 MODIFY_NON_UID_BASED_RULES)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700939 return ret;
940 }
Sreeram Ramachandran4acd34a2014-07-07 22:11:37 -0700941 if (int ret = flushRoutes(interface)) {
942 return ret;
943 }
944 updateTableNamesFile();
945 return 0;
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700946}
947
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700948int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface,
949 Permission oldPermission,
950 Permission newPermission) {
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700951 // Add the new rules before deleting the old ones, to avoid race conditions.
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700952 if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700953 return ret;
954 }
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700955 return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700956}
957
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700958int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700959 const UidRanges& uidRanges) {
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700960 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700961 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700962}
963
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700964int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface,
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700965 bool secure, const UidRanges& uidRanges) {
966 return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL,
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700967 !MODIFY_NON_UID_BASED_RULES);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700968}
969
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700970int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) {
971 return modifyDefaultNetwork(RTM_NEWRULE, interface, permission);
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700972}
973
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700974int RouteController::removeInterfaceFromDefaultNetwork(const char* interface,
975 Permission permission) {
976 return modifyDefaultNetwork(RTM_DELRULE, interface, permission);
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700977}
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700978
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700979int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700980 TableType tableType) {
981 return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700982}
983
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900984int RouteController::removeRoute(const char* interface, const char* destination,
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700985 const char* nexthop, TableType tableType) {
986 return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700987}
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700988
989int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700990 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700991}
992
993int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) {
Sreeram Ramachandranfa9f4dc2014-07-22 18:16:44 -0700994 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface);
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700995}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700996
997int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
998 Permission permission) {
999 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission);
1000}
1001
1002int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId,
1003 const char* physicalInterface,
1004 Permission permission) {
1005 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission);
1006}