Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 1 | /* |
| 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 Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 20 | #include "UidRanges.h" |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 21 | |
| 22 | #define LOG_TAG "Netd" |
| 23 | #include "log/log.h" |
| 24 | #include "logwrap/logwrap.h" |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 25 | #include "resolv_netid.h" |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 26 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 27 | #include <arpa/inet.h> |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 28 | #include <fcntl.h> |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 29 | #include <linux/fib_rules.h> |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 30 | #include <map> |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 31 | #include <net/if.h> |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 32 | #include <sys/stat.h> |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 33 | |
| 34 | namespace { |
| 35 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 36 | // BEGIN CONSTANTS -------------------------------------------------------------------------------- |
| 37 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 38 | const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000; |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 39 | const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 40 | const uint32_t RULE_PRIORITY_SECURE_VPN = 12000; |
| 41 | const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000; |
| 42 | const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000; |
| 43 | const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000; |
| 44 | const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000; |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 45 | const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000; |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 46 | const uint32_t RULE_PRIORITY_TETHERING = 18000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 47 | const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000; |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 48 | const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000; |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 49 | const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 50 | const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000; |
Lorenzo Colitti | 2f5ea0e | 2014-07-29 15:46:56 +0900 | [diff] [blame^] | 51 | const uint32_t RULE_PRIORITY_UNREACHABLE = 32000; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 52 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 53 | const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97; |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 54 | const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98; |
| 55 | const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99; |
| 56 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 57 | const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network"; |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 58 | const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network"; |
| 59 | const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system"; |
| 60 | |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 61 | const char* const ROUTE_TABLE_NAME_LOCAL = "local"; |
| 62 | const char* const ROUTE_TABLE_NAME_MAIN = "main"; |
| 63 | |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 64 | // TODO: These values aren't defined by the Linux kernel, because our UID routing changes are not |
| 65 | // upstream (yet?), so we can't just pick them up from kernel headers. When (if?) the changes make |
| 66 | // it upstream, we'll remove this and rely on the kernel header values. For now, add a static assert |
| 67 | // that will warn us if upstream has given these values some other meaning. |
| 68 | const uint16_t FRA_UID_START = 18; |
| 69 | const uint16_t FRA_UID_END = 19; |
| 70 | static_assert(FRA_UID_START > FRA_MAX, |
| 71 | "Android-specific FRA_UID_{START,END} values also assigned in Linux uapi. " |
| 72 | "Check that these values match what the kernel does and then update this assertion."); |
| 73 | |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 74 | const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK; |
| 75 | const uint16_t NETLINK_CREATE_REQUEST_FLAGS = NETLINK_REQUEST_FLAGS | NLM_F_CREATE | NLM_F_EXCL; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 76 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 77 | const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0}; |
| 78 | |
| 79 | const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6}; |
| 80 | |
| 81 | const char* const IP_VERSIONS[] = {"-4", "-6"}; |
| 82 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 83 | const uid_t UID_ROOT = 0; |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 84 | const char* const IIF_NONE = NULL; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 85 | const char* const OIF_NONE = NULL; |
| 86 | const bool ACTION_ADD = true; |
| 87 | const bool ACTION_DEL = false; |
| 88 | const bool MODIFY_NON_UID_BASED_RULES = true; |
| 89 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 90 | const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables"; |
Sreeram Ramachandran | c7d804c | 2014-07-09 07:39:30 -0700 | [diff] [blame] | 91 | const int RT_TABLES_FLAGS = O_CREAT | O_TRUNC | O_WRONLY | O_NOFOLLOW | O_CLOEXEC; |
| 92 | const mode_t RT_TABLES_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; // mode 0644, rw-r--r-- |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 93 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 94 | // Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'" |
| 95 | // warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t). |
| 96 | constexpr uint16_t U16_RTA_LENGTH(uint16_t x) { |
| 97 | return RTA_LENGTH(x); |
| 98 | } |
| 99 | |
| 100 | // These are practically const, but can't be declared so, because they are used to initialize |
| 101 | // non-const pointers ("void* iov_base") in iovec arrays. |
| 102 | rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY }; |
| 103 | rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE }; |
| 104 | rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK }; |
| 105 | rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK }; |
| 106 | rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START }; |
| 107 | rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END }; |
| 108 | |
| 109 | rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE }; |
| 110 | rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF }; |
| 111 | |
| 112 | uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0}; |
| 113 | |
| 114 | // END CONSTANTS ---------------------------------------------------------------------------------- |
| 115 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 116 | // No locks needed because RouteController is accessed only from one thread (in CommandListener). |
| 117 | std::map<std::string, uint32_t> interfaceToTable; |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 118 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 119 | uint32_t getRouteTableForInterface(const char* interface) { |
Sreeram Ramachandran | a481180 | 2014-04-10 12:10:24 -0700 | [diff] [blame] | 120 | uint32_t index = if_nametoindex(interface); |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 121 | if (index) { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 122 | index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX; |
| 123 | interfaceToTable[interface] = index; |
| 124 | return index; |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 125 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 126 | // If the interface goes away if_nametoindex() will return 0 but we still need to know |
| 127 | // the index so we can remove the rules and routes. |
| 128 | auto iter = interfaceToTable.find(interface); |
| 129 | if (iter == interfaceToTable.end()) { |
| 130 | ALOGE("cannot find interface %s", interface); |
| 131 | return RT_TABLE_UNSPEC; |
| 132 | } |
| 133 | return iter->second; |
| 134 | } |
| 135 | |
| 136 | void addTableName(uint32_t table, const std::string& name, std::string* contents) { |
| 137 | char tableString[UINT32_STRLEN]; |
| 138 | snprintf(tableString, sizeof(tableString), "%u", table); |
| 139 | *contents += tableString; |
| 140 | *contents += " "; |
| 141 | *contents += name; |
| 142 | *contents += "\n"; |
| 143 | } |
| 144 | |
| 145 | // Doesn't return success/failure as the file is optional; it's okay if we fail to update it. |
| 146 | void updateTableNamesFile() { |
| 147 | std::string contents; |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 148 | |
| 149 | addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents); |
| 150 | addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents); |
| 151 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 152 | addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents); |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 153 | addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents); |
| 154 | addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents); |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 155 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 156 | for (const auto& entry : interfaceToTable) { |
| 157 | addTableName(entry.second, entry.first, &contents); |
| 158 | } |
| 159 | |
Sreeram Ramachandran | c7d804c | 2014-07-09 07:39:30 -0700 | [diff] [blame] | 160 | int fd = open(RT_TABLES_PATH, RT_TABLES_FLAGS, RT_TABLES_MODE); |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 161 | if (fd == -1) { |
| 162 | ALOGE("failed to create %s (%s)", RT_TABLES_PATH, strerror(errno)); |
| 163 | return; |
| 164 | } |
| 165 | // File creation is affected by umask, so make sure the right mode bits are set. |
Sreeram Ramachandran | c7d804c | 2014-07-09 07:39:30 -0700 | [diff] [blame] | 166 | if (fchmod(fd, RT_TABLES_MODE) == -1) { |
| 167 | ALOGE("failed to set mode 0%o on %s (%s)", RT_TABLES_MODE, RT_TABLES_PATH, strerror(errno)); |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 168 | } |
| 169 | ssize_t bytesWritten = write(fd, contents.data(), contents.size()); |
| 170 | if (bytesWritten != static_cast<ssize_t>(contents.size())) { |
| 171 | ALOGE("failed to write to %s (%zd vs %zu bytes) (%s)", RT_TABLES_PATH, bytesWritten, |
| 172 | contents.size(), strerror(errno)); |
| 173 | } |
| 174 | close(fd); |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 177 | // Sends a netlink request and expects an ack. |
| 178 | // |iov| is an array of struct iovec that contains the netlink message payload. |
| 179 | // The netlink header is generated by this function based on |action| and |flags|. |
| 180 | // Returns -errno if there was an error or if the kernel reported an error. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 181 | WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) { |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 182 | nlmsghdr nlmsg = { |
| 183 | .nlmsg_type = action, |
| 184 | .nlmsg_flags = flags, |
| 185 | }; |
| 186 | iov[0].iov_base = &nlmsg; |
| 187 | iov[0].iov_len = sizeof(nlmsg); |
| 188 | for (int i = 0; i < iovlen; ++i) { |
| 189 | nlmsg.nlmsg_len += iov[i].iov_len; |
| 190 | } |
| 191 | |
| 192 | int ret; |
| 193 | struct { |
| 194 | nlmsghdr msg; |
| 195 | nlmsgerr err; |
| 196 | } response; |
| 197 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 198 | int sock = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE); |
| 199 | if (sock != -1 && |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 200 | connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS), |
| 201 | sizeof(NETLINK_ADDRESS)) != -1 && |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 202 | writev(sock, iov, iovlen) != -1 && |
| 203 | (ret = recv(sock, &response, sizeof(response), 0)) != -1) { |
| 204 | if (ret == sizeof(response)) { |
| 205 | ret = response.err.error; // Netlink errors are negative errno. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 206 | if (ret) { |
| 207 | ALOGE("netlink response contains error (%s)", strerror(-ret)); |
| 208 | } |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 209 | } else { |
Sreeram Ramachandran | 1201e84 | 2014-07-01 15:06:05 -0700 | [diff] [blame] | 210 | ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response)); |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 211 | ret = -EBADMSG; |
| 212 | } |
| 213 | } else { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 214 | ALOGE("netlink socket/connect/writev/recv failed (%s)", strerror(errno)); |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 215 | ret = -errno; |
| 216 | } |
| 217 | |
| 218 | if (sock != -1) { |
| 219 | close(sock); |
| 220 | } |
| 221 | |
| 222 | return ret; |
| 223 | } |
| 224 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 225 | // Returns 0 on success or negative errno on failure. |
| 226 | int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) { |
| 227 | if (!input) { |
| 228 | *length = 0; |
| 229 | *padding = 0; |
| 230 | return 0; |
| 231 | } |
| 232 | *length = strlcpy(name, input, IFNAMSIZ) + 1; |
| 233 | if (*length > IFNAMSIZ) { |
| 234 | ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ); |
| 235 | return -ENAMETOOLONG; |
| 236 | } |
| 237 | *padding = RTA_SPACE(*length) - RTA_LENGTH(*length); |
| 238 | return 0; |
| 239 | } |
| 240 | |
Sreeram Ramachandran | 8fe9c8e | 2014-04-16 12:08:05 -0700 | [diff] [blame] | 241 | // Adds or removes a routing rule for IPv4 and IPv6. |
| 242 | // |
| 243 | // + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the rule |
| 244 | // returns ENETUNREACH. |
| 245 | // + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is |
| 246 | // ignored. |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 247 | // + If |iif| is non-NULL, the rule matches the specified incoming interface. |
| 248 | // + If |oif| is non-NULL, the rule matches the specified outgoing interface. |
| 249 | // + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that |
| 250 | // range (inclusive). Otherwise, the rule matches packets from all UIDs. |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 251 | // |
| 252 | // Returns 0 on success or negative errno on failure. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 253 | WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 254 | uint32_t fwmark, uint32_t mask, const char* iif, |
| 255 | const char* oif, uid_t uidStart, uid_t uidEnd) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 256 | // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask. |
| 257 | if (fwmark & ~mask) { |
| 258 | ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark); |
| 259 | return -ERANGE; |
| 260 | } |
| 261 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 262 | // Interface names must include exactly one terminating NULL and be properly padded, or older |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 263 | // kernels will refuse to delete rules. |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 264 | char iifName[IFNAMSIZ], oifName[IFNAMSIZ]; |
| 265 | size_t iifLength, oifLength; |
| 266 | uint16_t iifPadding, oifPadding; |
| 267 | if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) { |
| 268 | return ret; |
| 269 | } |
| 270 | if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) { |
| 271 | return ret; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 272 | } |
| 273 | |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 274 | // Either both start and end UID must be specified, or neither. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 275 | if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) { |
Sreeram Ramachandran | cf89138 | 2014-07-01 15:49:20 -0700 | [diff] [blame] | 276 | ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd); |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 277 | return -EUSERS; |
| 278 | } |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 279 | bool isUidRule = (uidStart != INVALID_UID); |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 280 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 281 | // Assemble a rule request and put it in an array of iovec structures. |
| 282 | fib_rule_hdr rule = { |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 283 | .action = static_cast<uint8_t>(table != RT_TABLE_UNSPEC ? FR_ACT_TO_TBL : |
| 284 | FR_ACT_UNREACHABLE), |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 285 | }; |
| 286 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 287 | rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME }; |
| 288 | rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME }; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 289 | |
| 290 | iovec iov[] = { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 291 | { NULL, 0 }, |
| 292 | { &rule, sizeof(rule) }, |
| 293 | { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) }, |
| 294 | { &priority, sizeof(priority) }, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 295 | { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 }, |
| 296 | { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 }, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 297 | { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 }, |
| 298 | { &fwmark, mask ? sizeof(fwmark) : 0 }, |
| 299 | { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 }, |
| 300 | { &mask, mask ? sizeof(mask) : 0 }, |
| 301 | { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 }, |
| 302 | { &uidStart, isUidRule ? sizeof(uidStart) : 0 }, |
| 303 | { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 }, |
| 304 | { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 }, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 305 | { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 }, |
| 306 | { iifName, iifLength }, |
| 307 | { PADDING_BUFFER, iifPadding }, |
| 308 | { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 }, |
| 309 | { oifName, oifLength }, |
| 310 | { PADDING_BUFFER, oifPadding }, |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 311 | }; |
| 312 | |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 313 | uint16_t flags = (action == RTM_NEWRULE) ? NETLINK_CREATE_REQUEST_FLAGS : NETLINK_REQUEST_FLAGS; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 314 | for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) { |
| 315 | rule.family = AF_FAMILIES[i]; |
| 316 | if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) { |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 317 | return ret; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 318 | } |
| 319 | } |
| 320 | |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 321 | return 0; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 324 | WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table, |
| 325 | uint32_t fwmark, uint32_t mask) { |
| 326 | return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID, |
| 327 | INVALID_UID); |
| 328 | } |
| 329 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 330 | // Adds or deletes an IPv4 or IPv6 route. |
| 331 | // Returns 0 on success or negative errno on failure. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 332 | WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface, |
| 333 | const char* destination, const char* nexthop) { |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 334 | // At least the destination must be non-null. |
| 335 | if (!destination) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 336 | ALOGE("null destination"); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 337 | return -EFAULT; |
| 338 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 339 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 340 | // Parse the prefix. |
| 341 | uint8_t rawAddress[sizeof(in6_addr)]; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 342 | uint8_t family; |
| 343 | uint8_t prefixLength; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 344 | int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress), |
| 345 | &prefixLength); |
| 346 | if (rawLength < 0) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 347 | ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength)); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 348 | return rawLength; |
| 349 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 350 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 351 | if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) { |
Sreeram Ramachandran | 1201e84 | 2014-07-01 15:06:05 -0700 | [diff] [blame] | 352 | ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress)); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 353 | return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6. |
| 354 | } |
| 355 | |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 356 | uint8_t type = RTN_UNICAST; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 357 | uint32_t ifindex; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 358 | uint8_t rawNexthop[sizeof(in6_addr)]; |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 359 | |
| 360 | if (nexthop && !strcmp(nexthop, "unreachable")) { |
| 361 | type = RTN_UNREACHABLE; |
| 362 | // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup |
| 363 | // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for |
| 364 | // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.) |
| 365 | interface = OIF_NONE; |
| 366 | nexthop = NULL; |
| 367 | } else { |
| 368 | // If an interface was specified, find the ifindex. |
| 369 | if (interface != OIF_NONE) { |
| 370 | ifindex = if_nametoindex(interface); |
| 371 | if (!ifindex) { |
| 372 | ALOGE("cannot find interface %s", interface); |
| 373 | return -ENODEV; |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | // If a nexthop was specified, parse it as the same family as the prefix. |
| 378 | if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) { |
| 379 | ALOGE("inet_pton failed for nexthop %s", nexthop); |
| 380 | return -EINVAL; |
| 381 | } |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 382 | } |
| 383 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 384 | // Assemble a rtmsg and put it in an array of iovec structures. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 385 | rtmsg route = { |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 386 | .rtm_protocol = RTPROT_STATIC, |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 387 | .rtm_type = type, |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 388 | .rtm_family = family, |
| 389 | .rtm_dst_len = prefixLength, |
Sreeram Ramachandran | 2bff72e | 2014-07-18 13:03:47 -0700 | [diff] [blame] | 390 | .rtm_scope = static_cast<uint8_t>(nexthop ? RT_SCOPE_UNIVERSE : RT_SCOPE_LINK), |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 391 | }; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 392 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 393 | rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST }; |
| 394 | rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY }; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 395 | |
| 396 | iovec iov[] = { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 397 | { NULL, 0 }, |
| 398 | { &route, sizeof(route) }, |
| 399 | { &RTATTR_TABLE, sizeof(RTATTR_TABLE) }, |
| 400 | { &table, sizeof(table) }, |
| 401 | { &rtaDst, sizeof(rtaDst) }, |
| 402 | { rawAddress, static_cast<size_t>(rawLength) }, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 403 | { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 }, |
| 404 | { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 }, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 405 | { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 }, |
| 406 | { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 }, |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 407 | }; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 408 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 409 | uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS : |
| 410 | NETLINK_REQUEST_FLAGS; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 411 | return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov)); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 412 | } |
| 413 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 414 | // An iptables rule to mark incoming packets on a network with the netId of the network. |
| 415 | // |
| 416 | // This is so that the kernel can: |
| 417 | // + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping |
| 418 | // replies, SYN-ACKs, etc). |
| 419 | // + Mark sockets that accept connections from this interface so that the connection stays on the |
| 420 | // same interface. |
| 421 | WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface, |
| 422 | Permission permission, bool add) { |
| 423 | Fwmark fwmark; |
| 424 | |
| 425 | fwmark.netId = netId; |
| 426 | fwmark.explicitlySelected = true; |
| 427 | fwmark.protectedFromVpn = true; |
| 428 | fwmark.permission = permission; |
| 429 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 430 | char markString[UINT32_HEX_STRLEN]; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 431 | snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue); |
| 432 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 433 | if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j", |
| 434 | "MARK", "--set-mark", markString, NULL)) { |
| 435 | ALOGE("failed to change iptables rule that sets incoming packet mark"); |
| 436 | return -EREMOTEIO; |
| 437 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 438 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 439 | return 0; |
| 440 | } |
| 441 | |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 442 | // A rule to route responses to the local network forwarded via the VPN. |
| 443 | // |
| 444 | // When a VPN is in effect, packets from the local network to upstream networks are forwarded into |
| 445 | // the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel. |
| 446 | WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) { |
| 447 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL, |
| 448 | ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE, |
| 449 | INVALID_UID, INVALID_UID); |
| 450 | } |
| 451 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 452 | // A rule to route all traffic from a given set of UIDs to go over the VPN. |
| 453 | // |
| 454 | // Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may |
| 455 | // have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to |
| 456 | // bypass the VPN if the protectedFromVpn bit is set. |
| 457 | WARN_UNUSED_RESULT int modifyVpnUidRangeRule(uint32_t table, uid_t uidStart, uid_t uidEnd, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 458 | bool secure, bool add) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 459 | Fwmark fwmark; |
| 460 | Fwmark mask; |
| 461 | |
| 462 | fwmark.protectedFromVpn = false; |
| 463 | mask.protectedFromVpn = true; |
| 464 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 465 | uint32_t priority; |
| 466 | |
| 467 | if (secure) { |
| 468 | priority = RULE_PRIORITY_SECURE_VPN; |
| 469 | } else { |
| 470 | priority = RULE_PRIORITY_BYPASSABLE_VPN; |
| 471 | |
| 472 | fwmark.explicitlySelected = false; |
| 473 | mask.explicitlySelected = true; |
| 474 | } |
| 475 | |
| 476 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue, |
| 477 | mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd); |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | // A rule to allow system apps to send traffic over this VPN even if they are not part of the target |
| 481 | // set of UIDs. |
| 482 | // |
| 483 | // This is needed for DnsProxyListener to correctly resolve a request for a user who is in the |
| 484 | // target set, but where the DnsProxyListener itself is not. |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 485 | WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure, |
| 486 | bool add) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 487 | Fwmark fwmark; |
| 488 | Fwmark mask; |
| 489 | |
| 490 | fwmark.netId = netId; |
| 491 | mask.netId = FWMARK_NET_ID_MASK; |
| 492 | |
| 493 | fwmark.permission = PERMISSION_SYSTEM; |
| 494 | mask.permission = PERMISSION_SYSTEM; |
| 495 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 496 | uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN; |
| 497 | |
| 498 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue, |
| 499 | mask.intValue); |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 502 | // A rule to route traffic based on an explicitly chosen network. |
| 503 | // |
| 504 | // Supports apps that use the multinetwork APIs to restrict their traffic to a network. |
| 505 | // |
| 506 | // Even though we check permissions at the time we set a netId into the fwmark of a socket, we need |
| 507 | // to check it again in the rules here, because a network's permissions may have been updated via |
| 508 | // modifyNetworkPermission(). |
| 509 | WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table, |
| 510 | Permission permission, uid_t uidStart, |
| 511 | uid_t uidEnd, bool add) { |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 512 | Fwmark fwmark; |
| 513 | Fwmark mask; |
| 514 | |
| 515 | fwmark.netId = netId; |
| 516 | mask.netId = FWMARK_NET_ID_MASK; |
| 517 | |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 518 | fwmark.explicitlySelected = true; |
| 519 | mask.explicitlySelected = true; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 520 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 521 | fwmark.permission = permission; |
| 522 | mask.permission = permission; |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 523 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 524 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 525 | fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd); |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 528 | // A rule to route traffic based on a chosen outgoing interface. |
| 529 | // |
| 530 | // Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows |
| 531 | // the outgoing interface (typically for link-local communications). |
| 532 | WARN_UNUSED_RESULT int modifyOutputInterfaceRule(const char* interface, uint32_t table, |
| 533 | Permission permission, uid_t uidStart, |
| 534 | uid_t uidEnd, bool add) { |
| 535 | Fwmark fwmark; |
| 536 | Fwmark mask; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 537 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 538 | fwmark.permission = permission; |
| 539 | mask.permission = permission; |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 540 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 541 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 542 | fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | // A rule to route traffic based on the chosen network. |
| 546 | // |
| 547 | // This is for sockets that have not explicitly requested a particular network, but have been |
| 548 | // bound to one when they called connect(). This ensures that sockets connected on a particular |
| 549 | // network stay on that network even if the default network changes. |
| 550 | WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table, |
| 551 | Permission permission, bool add) { |
| 552 | Fwmark fwmark; |
| 553 | Fwmark mask; |
| 554 | |
| 555 | fwmark.netId = netId; |
| 556 | mask.netId = FWMARK_NET_ID_MASK; |
| 557 | |
| 558 | fwmark.explicitlySelected = false; |
| 559 | mask.explicitlySelected = true; |
| 560 | |
| 561 | fwmark.permission = permission; |
| 562 | mask.permission = permission; |
| 563 | |
| 564 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 565 | fwmark.intValue, mask.intValue); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 568 | // A rule to enable split tunnel VPNs. |
| 569 | // |
| 570 | // If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to |
| 571 | // go over the default network, provided it wasn't explicitly restricted to the VPN and has the |
| 572 | // permissions required by the default network. |
| 573 | WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId, |
| 574 | const char* physicalInterface, |
| 575 | Permission permission) { |
| 576 | uint32_t table = getRouteTableForInterface(physicalInterface); |
| 577 | if (table == RT_TABLE_UNSPEC) { |
| 578 | return -ESRCH; |
| 579 | } |
| 580 | |
| 581 | Fwmark fwmark; |
| 582 | Fwmark mask; |
| 583 | |
| 584 | fwmark.netId = vpnNetId; |
| 585 | mask.netId = FWMARK_NET_ID_MASK; |
| 586 | |
| 587 | fwmark.explicitlySelected = false; |
| 588 | mask.explicitlySelected = true; |
| 589 | |
| 590 | fwmark.permission = permission; |
| 591 | mask.permission = permission; |
| 592 | |
| 593 | return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue, |
| 594 | mask.intValue); |
| 595 | } |
| 596 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 597 | // Add rules to allow legacy routes added through the requestRouteToHost() API. |
| 598 | WARN_UNUSED_RESULT int addLegacyRouteRules() { |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 599 | Fwmark fwmark; |
| 600 | Fwmark mask; |
| 601 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 602 | fwmark.explicitlySelected = false; |
| 603 | mask.explicitlySelected = true; |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 604 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 605 | // Rules to allow legacy routes to override the default network. |
| 606 | if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM, |
| 607 | fwmark.intValue, mask.intValue)) { |
| 608 | return ret; |
| 609 | } |
| 610 | if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK, |
| 611 | ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) { |
| 612 | return ret; |
| 613 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 614 | |
| 615 | fwmark.permission = PERMISSION_SYSTEM; |
| 616 | mask.permission = PERMISSION_SYSTEM; |
| 617 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 618 | // A rule to allow legacy routes from system apps to override VPNs. |
| 619 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_VPN_OVERRIDE_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 620 | fwmark.intValue, mask.intValue); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 621 | } |
| 622 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 623 | // Add rules to lookup the local network when specified explicitly or otherwise. |
| 624 | WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) { |
| 625 | if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE, |
| 626 | INVALID_UID, INVALID_UID, ACTION_ADD)) { |
| 627 | return ret; |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 628 | } |
| 629 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 630 | Fwmark fwmark; |
| 631 | Fwmark mask; |
| 632 | |
| 633 | fwmark.explicitlySelected = false; |
| 634 | mask.explicitlySelected = true; |
| 635 | |
| 636 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK, |
| 637 | fwmark.intValue, mask.intValue); |
| 638 | } |
| 639 | |
Lorenzo Colitti | 2f5ea0e | 2014-07-29 15:46:56 +0900 | [diff] [blame^] | 640 | // Add an explicit unreachable rule close to the end of the prioriy list to make it clear that |
| 641 | // relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended |
| 642 | // behaviour, and that no routes should be in the main table. We do flush the kernel-default rules |
| 643 | // at startup, but having an explicit unreachable rule will hopefully make things even clearer. |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 644 | WARN_UNUSED_RESULT int addUnreachableRule() { |
| 645 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, RT_TABLE_UNSPEC, MARK_UNSET, |
| 646 | MARK_UNSET); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) { |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 650 | if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) { |
| 651 | return ret; |
| 652 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 653 | return modifyOutputInterfaceRule(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE, |
| 654 | INVALID_UID, INVALID_UID, add); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 655 | } |
| 656 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 657 | WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface, |
| 658 | Permission permission, bool add) { |
| 659 | uint32_t table = getRouteTableForInterface(interface); |
| 660 | if (table == RT_TABLE_UNSPEC) { |
| 661 | return -ESRCH; |
| 662 | } |
| 663 | |
| 664 | if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) { |
| 665 | return ret; |
| 666 | } |
| 667 | if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID, |
| 668 | add)) { |
| 669 | return ret; |
| 670 | } |
| 671 | if (int ret = modifyOutputInterfaceRule(interface, table, permission, INVALID_UID, INVALID_UID, |
| 672 | add)) { |
| 673 | return ret; |
| 674 | } |
| 675 | return modifyImplicitNetworkRule(netId, table, permission, add); |
| 676 | } |
| 677 | |
| 678 | WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 679 | const UidRanges& uidRanges, bool secure, bool add, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 680 | bool modifyNonUidBasedRules) { |
| 681 | uint32_t table = getRouteTableForInterface(interface); |
| 682 | if (table == RT_TABLE_UNSPEC) { |
| 683 | return -ESRCH; |
| 684 | } |
| 685 | |
Sreeram Ramachandran | e09b20a | 2014-07-05 17:15:14 -0700 | [diff] [blame] | 686 | for (const UidRanges::Range& range : uidRanges.getRanges()) { |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 687 | if (int ret = modifyVpnUidRangeRule(table, range.first, range.second, secure, add)) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 688 | return ret; |
| 689 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 690 | if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.first, |
| 691 | range.second, add)) { |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 692 | return ret; |
| 693 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 694 | if (int ret = modifyOutputInterfaceRule(interface, table, PERMISSION_NONE, range.first, |
| 695 | range.second, add)) { |
| 696 | return ret; |
| 697 | } |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 698 | } |
| 699 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 700 | if (modifyNonUidBasedRules) { |
| 701 | if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) { |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 702 | return ret; |
| 703 | } |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 704 | if (int ret = modifyVpnOutputToLocalRule(interface, add)) { |
| 705 | return ret; |
| 706 | } |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 707 | if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) { |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 708 | return ret; |
| 709 | } |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 710 | return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 714 | } |
| 715 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 716 | WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface, |
| 717 | Permission permission) { |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 718 | uint32_t table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 719 | if (table == RT_TABLE_UNSPEC) { |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 720 | return -ESRCH; |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 721 | } |
| 722 | |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 723 | Fwmark fwmark; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 724 | Fwmark mask; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 725 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 726 | fwmark.netId = NETID_UNSET; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 727 | mask.netId = FWMARK_NET_ID_MASK; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 728 | |
| 729 | fwmark.permission = permission; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 730 | mask.permission = permission; |
| 731 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 732 | return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 733 | mask.intValue); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 736 | WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface, |
| 737 | const char* outputInterface) { |
| 738 | uint32_t table = getRouteTableForInterface(outputInterface); |
| 739 | if (table == RT_TABLE_UNSPEC) { |
| 740 | return -ESRCH; |
| 741 | } |
| 742 | |
| 743 | return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET, |
| 744 | inputInterface, OIF_NONE, INVALID_UID, INVALID_UID); |
| 745 | } |
| 746 | |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 747 | // Returns 0 on success or negative errno on failure. |
| 748 | WARN_UNUSED_RESULT int flushRules() { |
| 749 | for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) { |
| 750 | const char* argv[] = { |
| 751 | IP_PATH, |
| 752 | IP_VERSIONS[i], |
| 753 | "rule", |
| 754 | "flush", |
| 755 | }; |
| 756 | if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) { |
| 757 | ALOGE("failed to flush rules"); |
| 758 | return -EREMOTEIO; |
| 759 | } |
| 760 | } |
| 761 | return 0; |
| 762 | } |
| 763 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 764 | // Adds or removes an IPv4 or IPv6 route to the specified table and, if it's a directly-connected |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 765 | // route, to the main table as well. |
| 766 | // Returns 0 on success or negative errno on failure. |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 767 | WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination, |
| 768 | const char* nexthop, RouteController::TableType tableType) { |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 769 | uint32_t table; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 770 | switch (tableType) { |
| 771 | case RouteController::INTERFACE: { |
| 772 | table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 773 | if (table == RT_TABLE_UNSPEC) { |
| 774 | return -ESRCH; |
| 775 | } |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 776 | break; |
| 777 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 778 | case RouteController::LOCAL_NETWORK: { |
| 779 | table = ROUTE_TABLE_LOCAL_NETWORK; |
| 780 | break; |
| 781 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 782 | case RouteController::LEGACY_NETWORK: { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 783 | table = ROUTE_TABLE_LEGACY_NETWORK; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 784 | break; |
| 785 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 786 | case RouteController::LEGACY_SYSTEM: { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 787 | table = ROUTE_TABLE_LEGACY_SYSTEM; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 788 | break; |
| 789 | } |
| 790 | } |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 791 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 792 | int ret = modifyIpRoute(action, table, interface, destination, nexthop); |
Sreeram Ramachandran | 1077d29 | 2014-06-27 06:42:11 -0700 | [diff] [blame] | 793 | // We allow apps to call requestRouteToHost() multiple times with the same route, so ignore |
| 794 | // EEXIST failures when adding routes to legacy tables. |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 795 | if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST && |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 796 | (tableType == RouteController::LEGACY_NETWORK || |
| 797 | tableType == RouteController::LEGACY_SYSTEM))) { |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 798 | return ret; |
Sreeram Ramachandran | c921337 | 2014-04-16 12:32:18 -0700 | [diff] [blame] | 799 | } |
| 800 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 801 | return 0; |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 802 | } |
| 803 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 804 | // Returns 0 on success or negative errno on failure. |
| 805 | WARN_UNUSED_RESULT int flushRoutes(const char* interface) { |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 806 | uint32_t table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 807 | if (table == RT_TABLE_UNSPEC) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 808 | return -ESRCH; |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 811 | char tableString[UINT32_STRLEN]; |
| 812 | snprintf(tableString, sizeof(tableString), "%u", table); |
| 813 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 814 | for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) { |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 815 | const char* argv[] = { |
| 816 | IP_PATH, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 817 | IP_VERSIONS[i], |
Sreeram Ramachandran | 72999d6 | 2014-07-02 18:06:34 -0700 | [diff] [blame] | 818 | "route", |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 819 | "flush", |
| 820 | "table", |
| 821 | tableString, |
| 822 | }; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 823 | if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) { |
| 824 | ALOGE("failed to flush routes"); |
| 825 | return -EREMOTEIO; |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 826 | } |
| 827 | } |
| 828 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 829 | interfaceToTable.erase(interface); |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 830 | return 0; |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 831 | } |
| 832 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 833 | } // namespace |
| 834 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 835 | int RouteController::Init(unsigned localNetId) { |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 836 | if (int ret = flushRules()) { |
| 837 | return ret; |
| 838 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 839 | if (int ret = addLegacyRouteRules()) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 840 | return ret; |
| 841 | } |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 842 | if (int ret = addLocalNetworkRules(localNetId)) { |
| 843 | return ret; |
| 844 | } |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 845 | if (int ret = addUnreachableRule()) { |
| 846 | return ret; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 847 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 848 | updateTableNamesFile(); |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 849 | return 0; |
Sreeram Ramachandran | 8fe9c8e | 2014-04-16 12:08:05 -0700 | [diff] [blame] | 850 | } |
| 851 | |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 852 | int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) { |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 853 | return modifyLocalNetwork(netId, interface, ACTION_ADD); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) { |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 857 | return modifyLocalNetwork(netId, interface, ACTION_DEL); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 858 | } |
| 859 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 860 | int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface, |
| 861 | Permission permission) { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 862 | if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) { |
| 863 | return ret; |
| 864 | } |
| 865 | updateTableNamesFile(); |
| 866 | return 0; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 869 | int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface, |
| 870 | Permission permission) { |
| 871 | if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 872 | return ret; |
| 873 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 874 | if (int ret = flushRoutes(interface)) { |
| 875 | return ret; |
| 876 | } |
| 877 | updateTableNamesFile(); |
| 878 | return 0; |
Sreeram Ramachandran | 379bd33 | 2014-04-10 19:58:06 -0700 | [diff] [blame] | 879 | } |
| 880 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 881 | int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 882 | bool secure, const UidRanges& uidRanges) { |
| 883 | if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD, |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 884 | MODIFY_NON_UID_BASED_RULES)) { |
| 885 | return ret; |
| 886 | } |
| 887 | updateTableNamesFile(); |
| 888 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 891 | int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 892 | bool secure, const UidRanges& uidRanges) { |
| 893 | if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 894 | MODIFY_NON_UID_BASED_RULES)) { |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 895 | return ret; |
| 896 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 897 | if (int ret = flushRoutes(interface)) { |
| 898 | return ret; |
| 899 | } |
| 900 | updateTableNamesFile(); |
| 901 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 902 | } |
| 903 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 904 | int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface, |
| 905 | Permission oldPermission, |
| 906 | Permission newPermission) { |
Sreeram Ramachandran | 379bd33 | 2014-04-10 19:58:06 -0700 | [diff] [blame] | 907 | // Add the new rules before deleting the old ones, to avoid race conditions. |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 908 | if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 909 | return ret; |
| 910 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 911 | return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 912 | } |
| 913 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 914 | int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 915 | const UidRanges& uidRanges) { |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 916 | return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 917 | !MODIFY_NON_UID_BASED_RULES); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 918 | } |
| 919 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 920 | int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 921 | bool secure, const UidRanges& uidRanges) { |
| 922 | return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 923 | !MODIFY_NON_UID_BASED_RULES); |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 924 | } |
| 925 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 926 | int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) { |
| 927 | return modifyDefaultNetwork(RTM_NEWRULE, interface, permission); |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 928 | } |
| 929 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 930 | int RouteController::removeInterfaceFromDefaultNetwork(const char* interface, |
| 931 | Permission permission) { |
| 932 | return modifyDefaultNetwork(RTM_DELRULE, interface, permission); |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 933 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 934 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 935 | int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop, |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 936 | TableType tableType) { |
| 937 | return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 938 | } |
| 939 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 940 | int RouteController::removeRoute(const char* interface, const char* destination, |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 941 | const char* nexthop, TableType tableType) { |
| 942 | return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 943 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 944 | |
| 945 | int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 946 | return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 950 | return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 951 | } |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 952 | |
| 953 | int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface, |
| 954 | Permission permission) { |
| 955 | return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission); |
| 956 | } |
| 957 | |
| 958 | int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId, |
| 959 | const char* physicalInterface, |
| 960 | Permission permission) { |
| 961 | return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission); |
| 962 | } |