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 | |
Dan Albert | aa1be2b | 2015-01-06 09:36:17 -0800 | [diff] [blame] | 19 | #include <arpa/inet.h> |
| 20 | #include <errno.h> |
| 21 | #include <fcntl.h> |
| 22 | #include <linux/fib_rules.h> |
| 23 | #include <net/if.h> |
| 24 | #include <sys/stat.h> |
| 25 | |
Elliott Hughes | bd37832 | 2015-02-04 13:25:14 -0800 | [diff] [blame] | 26 | #include <private/android_filesystem_config.h> |
| 27 | |
Dan Albert | aa1be2b | 2015-01-06 09:36:17 -0800 | [diff] [blame] | 28 | #include <map> |
| 29 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 30 | #include "Fwmark.h" |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 31 | #include "UidRanges.h" |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 32 | #include "DummyNetwork.h" |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 33 | |
Elliott Hughes | bbd5626 | 2015-12-04 15:45:10 -0800 | [diff] [blame] | 34 | #include "android-base/file.h" |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 35 | #define LOG_TAG "Netd" |
| 36 | #include "log/log.h" |
| 37 | #include "logwrap/logwrap.h" |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 38 | #include "netutils/ifc.h" |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 39 | #include "resolv_netid.h" |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 40 | |
Dan Albert | 5407e14 | 2015-03-16 10:05:59 -0700 | [diff] [blame] | 41 | using android::base::WriteStringToFile; |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 42 | using android::net::UidRange; |
Dan Albert | 5407e14 | 2015-03-16 10:05:59 -0700 | [diff] [blame] | 43 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 44 | namespace { |
| 45 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 46 | // BEGIN CONSTANTS -------------------------------------------------------------------------------- |
| 47 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 48 | const uint32_t RULE_PRIORITY_VPN_OVERRIDE_SYSTEM = 10000; |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 49 | const uint32_t RULE_PRIORITY_VPN_OVERRIDE_OIF = 10500; |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 50 | const uint32_t RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL = 11000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 51 | const uint32_t RULE_PRIORITY_SECURE_VPN = 12000; |
Robin Lee | 6c84ef6 | 2016-05-03 13:17:58 +0100 | [diff] [blame] | 52 | const uint32_t RULE_PRIORITY_PROHIBIT_NON_VPN = 12500; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 53 | const uint32_t RULE_PRIORITY_EXPLICIT_NETWORK = 13000; |
| 54 | const uint32_t RULE_PRIORITY_OUTPUT_INTERFACE = 14000; |
| 55 | const uint32_t RULE_PRIORITY_LEGACY_SYSTEM = 15000; |
| 56 | const uint32_t RULE_PRIORITY_LEGACY_NETWORK = 16000; |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 57 | const uint32_t RULE_PRIORITY_LOCAL_NETWORK = 17000; |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 58 | const uint32_t RULE_PRIORITY_TETHERING = 18000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 59 | const uint32_t RULE_PRIORITY_IMPLICIT_NETWORK = 19000; |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 60 | const uint32_t RULE_PRIORITY_BYPASSABLE_VPN = 20000; |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 61 | const uint32_t RULE_PRIORITY_VPN_FALLTHROUGH = 21000; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 62 | const uint32_t RULE_PRIORITY_DEFAULT_NETWORK = 22000; |
Lorenzo Colitti | a2c2305 | 2014-07-29 09:25:44 +0000 | [diff] [blame] | 63 | const uint32_t RULE_PRIORITY_DIRECTLY_CONNECTED = 23000; |
Lorenzo Colitti | db74dba | 2014-07-29 18:26:21 +0900 | [diff] [blame] | 64 | const uint32_t RULE_PRIORITY_UNREACHABLE = 32000; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 65 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 66 | const uint32_t ROUTE_TABLE_LOCAL_NETWORK = 97; |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 67 | const uint32_t ROUTE_TABLE_LEGACY_NETWORK = 98; |
| 68 | const uint32_t ROUTE_TABLE_LEGACY_SYSTEM = 99; |
| 69 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 70 | const char* const ROUTE_TABLE_NAME_LOCAL_NETWORK = "local_network"; |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 71 | const char* const ROUTE_TABLE_NAME_LEGACY_NETWORK = "legacy_network"; |
| 72 | const char* const ROUTE_TABLE_NAME_LEGACY_SYSTEM = "legacy_system"; |
| 73 | |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 74 | const char* const ROUTE_TABLE_NAME_LOCAL = "local"; |
| 75 | const char* const ROUTE_TABLE_NAME_MAIN = "main"; |
| 76 | |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 77 | // TODO: These values aren't defined by the Linux kernel, because legacy UID routing (as used in N |
| 78 | // and below) was not upstreamed. Now that the UID routing code is upstream, we should remove these |
| 79 | // and rely on the kernel header values. |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 80 | const uint16_t FRA_UID_START = 18; |
| 81 | const uint16_t FRA_UID_END = 19; |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 82 | |
| 83 | // These values are upstream, but not yet in our headers. |
| 84 | // TODO: delete these definitions when updating the headers. |
| 85 | const uint16_t FRA_UID_RANGE = 20; |
| 86 | struct fib_rule_uid_range { |
| 87 | __u32 start; |
| 88 | __u32 end; |
| 89 | }; |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 90 | |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 91 | const uint16_t NETLINK_REQUEST_FLAGS = NLM_F_REQUEST | NLM_F_ACK; |
| 92 | 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] | 93 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 94 | const sockaddr_nl NETLINK_ADDRESS = {AF_NETLINK, 0, 0, 0}; |
| 95 | |
| 96 | const uint8_t AF_FAMILIES[] = {AF_INET, AF_INET6}; |
| 97 | |
| 98 | const char* const IP_VERSIONS[] = {"-4", "-6"}; |
| 99 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 100 | const uid_t UID_ROOT = 0; |
Lorenzo Colitti | 5ad4e98 | 2015-02-26 17:34:32 +0900 | [diff] [blame] | 101 | const char* const IIF_LOOPBACK = "lo"; |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 102 | const char* const IIF_NONE = NULL; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 103 | const char* const OIF_NONE = NULL; |
| 104 | const bool ACTION_ADD = true; |
| 105 | const bool ACTION_DEL = false; |
| 106 | const bool MODIFY_NON_UID_BASED_RULES = true; |
| 107 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 108 | const char* const RT_TABLES_PATH = "/data/misc/net/rt_tables"; |
Sreeram Ramachandran | c7d804c | 2014-07-09 07:39:30 -0700 | [diff] [blame] | 109 | 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] | 110 | |
Lorenzo Colitti | 99286fe | 2014-08-12 15:08:00 +0900 | [diff] [blame] | 111 | const unsigned ROUTE_FLUSH_ATTEMPTS = 2; |
| 112 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 113 | // Avoids "non-constant-expression cannot be narrowed from type 'unsigned int' to 'unsigned short'" |
| 114 | // warnings when using RTA_LENGTH(x) inside static initializers (even when x is already uint16_t). |
| 115 | constexpr uint16_t U16_RTA_LENGTH(uint16_t x) { |
| 116 | return RTA_LENGTH(x); |
| 117 | } |
| 118 | |
| 119 | // These are practically const, but can't be declared so, because they are used to initialize |
| 120 | // non-const pointers ("void* iov_base") in iovec arrays. |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 121 | rtattr FRATTR_PRIORITY = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_PRIORITY }; |
| 122 | rtattr FRATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_TABLE }; |
| 123 | rtattr FRATTR_FWMARK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMARK }; |
| 124 | rtattr FRATTR_FWMASK = { U16_RTA_LENGTH(sizeof(uint32_t)), FRA_FWMASK }; |
| 125 | rtattr FRATTR_UID_START = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_START }; |
| 126 | rtattr FRATTR_UID_END = { U16_RTA_LENGTH(sizeof(uid_t)), FRA_UID_END }; |
| 127 | rtattr FRATTR_UID_RANGE = { U16_RTA_LENGTH(sizeof(fib_rule_uid_range)), FRA_UID_RANGE }; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 128 | |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 129 | rtattr RTATTR_TABLE = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_TABLE }; |
| 130 | rtattr RTATTR_OIF = { U16_RTA_LENGTH(sizeof(uint32_t)), RTA_OIF }; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 131 | |
| 132 | uint8_t PADDING_BUFFER[RTA_ALIGNTO] = {0, 0, 0, 0}; |
| 133 | |
| 134 | // END CONSTANTS ---------------------------------------------------------------------------------- |
| 135 | |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 136 | const char *actionName(uint16_t action) { |
| 137 | static const char *ops[4] = {"adding", "deleting", "getting", "???"}; |
| 138 | return ops[action % 4]; |
| 139 | } |
| 140 | |
| 141 | const char *familyName(uint8_t family) { |
| 142 | switch (family) { |
| 143 | case AF_INET: return "IPv4"; |
| 144 | case AF_INET6: return "IPv6"; |
| 145 | default: return "???"; |
| 146 | } |
| 147 | } |
| 148 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 149 | // No locks needed because RouteController is accessed only from one thread (in CommandListener). |
| 150 | std::map<std::string, uint32_t> interfaceToTable; |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 151 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 152 | uint32_t getRouteTableForInterface(const char* interface) { |
Sreeram Ramachandran | a481180 | 2014-04-10 12:10:24 -0700 | [diff] [blame] | 153 | uint32_t index = if_nametoindex(interface); |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 154 | if (index) { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 155 | index += RouteController::ROUTE_TABLE_OFFSET_FROM_INDEX; |
| 156 | interfaceToTable[interface] = index; |
| 157 | return index; |
Paul Jensen | a561e12 | 2014-06-12 16:46:37 -0400 | [diff] [blame] | 158 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 159 | // If the interface goes away if_nametoindex() will return 0 but we still need to know |
| 160 | // the index so we can remove the rules and routes. |
| 161 | auto iter = interfaceToTable.find(interface); |
| 162 | if (iter == interfaceToTable.end()) { |
| 163 | ALOGE("cannot find interface %s", interface); |
| 164 | return RT_TABLE_UNSPEC; |
| 165 | } |
| 166 | return iter->second; |
| 167 | } |
| 168 | |
| 169 | void addTableName(uint32_t table, const std::string& name, std::string* contents) { |
| 170 | char tableString[UINT32_STRLEN]; |
| 171 | snprintf(tableString, sizeof(tableString), "%u", table); |
| 172 | *contents += tableString; |
| 173 | *contents += " "; |
| 174 | *contents += name; |
| 175 | *contents += "\n"; |
| 176 | } |
| 177 | |
| 178 | // Doesn't return success/failure as the file is optional; it's okay if we fail to update it. |
| 179 | void updateTableNamesFile() { |
| 180 | std::string contents; |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 181 | |
| 182 | addTableName(RT_TABLE_LOCAL, ROUTE_TABLE_NAME_LOCAL, &contents); |
| 183 | addTableName(RT_TABLE_MAIN, ROUTE_TABLE_NAME_MAIN, &contents); |
| 184 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 185 | addTableName(ROUTE_TABLE_LOCAL_NETWORK, ROUTE_TABLE_NAME_LOCAL_NETWORK, &contents); |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 186 | addTableName(ROUTE_TABLE_LEGACY_NETWORK, ROUTE_TABLE_NAME_LEGACY_NETWORK, &contents); |
| 187 | addTableName(ROUTE_TABLE_LEGACY_SYSTEM, ROUTE_TABLE_NAME_LEGACY_SYSTEM, &contents); |
Sreeram Ramachandran | bb40d51 | 2014-07-11 11:45:14 -0700 | [diff] [blame] | 188 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 189 | for (const auto& entry : interfaceToTable) { |
| 190 | addTableName(entry.second, entry.first, &contents); |
| 191 | } |
| 192 | |
Dan Albert | 5407e14 | 2015-03-16 10:05:59 -0700 | [diff] [blame] | 193 | if (!WriteStringToFile(contents, RT_TABLES_PATH, RT_TABLES_MODE, AID_SYSTEM, AID_WIFI)) { |
Elliott Hughes | bd37832 | 2015-02-04 13:25:14 -0800 | [diff] [blame] | 194 | ALOGE("failed to write to %s (%s)", RT_TABLES_PATH, strerror(errno)); |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 195 | return; |
| 196 | } |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 199 | // Sends a netlink request and possibly expects an ack. |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 200 | // |iov| is an array of struct iovec that contains the netlink message payload. |
| 201 | // The netlink header is generated by this function based on |action| and |flags|. |
| 202 | // Returns -errno if there was an error or if the kernel reported an error. |
Evgenii Stepanov | f65122c | 2016-02-11 16:55:56 -0800 | [diff] [blame] | 203 | |
| 204 | // Disable optimizations in ASan build. |
| 205 | // ASan reports an out-of-bounds 32-bit(!) access in the first loop of the |
| 206 | // function (over iov[]). |
| 207 | #ifdef __clang__ |
| 208 | #if __has_feature(address_sanitizer) |
| 209 | __attribute__((optnone)) |
| 210 | #endif |
| 211 | #endif |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 212 | 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] | 213 | nlmsghdr nlmsg = { |
| 214 | .nlmsg_type = action, |
| 215 | .nlmsg_flags = flags, |
| 216 | }; |
| 217 | iov[0].iov_base = &nlmsg; |
| 218 | iov[0].iov_len = sizeof(nlmsg); |
| 219 | for (int i = 0; i < iovlen; ++i) { |
| 220 | nlmsg.nlmsg_len += iov[i].iov_len; |
| 221 | } |
| 222 | |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 223 | int sock = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE); |
| 224 | if (sock == -1) { |
| 225 | return -errno; |
| 226 | } |
| 227 | |
| 228 | int ret = 0; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 229 | struct { |
| 230 | nlmsghdr msg; |
| 231 | nlmsgerr err; |
| 232 | } response; |
| 233 | |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 234 | |
| 235 | if (connect(sock, reinterpret_cast<const sockaddr*>(&NETLINK_ADDRESS), |
| 236 | sizeof(NETLINK_ADDRESS)) == -1 || writev(sock, iov, iovlen) == -1) { |
| 237 | ret = -errno; |
| 238 | ALOGE("netlink socket connect/writev failed (%s)", strerror(-ret)); |
| 239 | close(sock); |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | if (flags & NLM_F_ACK) { |
| 244 | ret = recv(sock, &response, sizeof(response), 0); |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 245 | if (ret == sizeof(response)) { |
| 246 | ret = response.err.error; // Netlink errors are negative errno. |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 247 | } else if (ret == -1) { |
| 248 | ret = -errno; |
| 249 | ALOGE("netlink recv failed (%s)", strerror(-ret)); |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 250 | } else { |
Sreeram Ramachandran | 1201e84 | 2014-07-01 15:06:05 -0700 | [diff] [blame] | 251 | ALOGE("bad netlink response message size (%d != %zu)", ret, sizeof(response)); |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 252 | ret = -EBADMSG; |
| 253 | } |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | if (sock != -1) { |
| 257 | close(sock); |
| 258 | } |
| 259 | |
| 260 | return ret; |
| 261 | } |
| 262 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 263 | // Returns 0 on success or negative errno on failure. |
| 264 | int padInterfaceName(const char* input, char* name, size_t* length, uint16_t* padding) { |
| 265 | if (!input) { |
| 266 | *length = 0; |
| 267 | *padding = 0; |
| 268 | return 0; |
| 269 | } |
| 270 | *length = strlcpy(name, input, IFNAMSIZ) + 1; |
| 271 | if (*length > IFNAMSIZ) { |
| 272 | ALOGE("interface name too long (%zu > %u)", *length, IFNAMSIZ); |
| 273 | return -ENAMETOOLONG; |
| 274 | } |
| 275 | *padding = RTA_SPACE(*length) - RTA_LENGTH(*length); |
| 276 | return 0; |
| 277 | } |
| 278 | |
Sreeram Ramachandran | 8fe9c8e | 2014-04-16 12:08:05 -0700 | [diff] [blame] | 279 | // Adds or removes a routing rule for IPv4 and IPv6. |
| 280 | // |
Lorenzo Colitti | 6b6f25f | 2015-03-03 17:22:57 +0900 | [diff] [blame] | 281 | // + If |table| is non-zero, the rule points at the specified routing table. Otherwise, the table is |
Robin Lee | 4ef9464 | 2016-04-01 11:50:49 +0100 | [diff] [blame] | 282 | // unspecified. An unspecified table is not allowed when creating an FR_ACT_TO_TBL rule. |
Sreeram Ramachandran | 8fe9c8e | 2014-04-16 12:08:05 -0700 | [diff] [blame] | 283 | // + If |mask| is non-zero, the rule matches the specified fwmark and mask. Otherwise, |fwmark| is |
| 284 | // ignored. |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 285 | // + If |iif| is non-NULL, the rule matches the specified incoming interface. |
| 286 | // + If |oif| is non-NULL, the rule matches the specified outgoing interface. |
| 287 | // + If |uidStart| and |uidEnd| are not INVALID_UID, the rule matches packets from UIDs in that |
| 288 | // range (inclusive). Otherwise, the rule matches packets from all UIDs. |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 289 | // |
| 290 | // Returns 0 on success or negative errno on failure. |
Robin Lee | 4ef9464 | 2016-04-01 11:50:49 +0100 | [diff] [blame] | 291 | WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint8_t ruleType, |
| 292 | uint32_t table, uint32_t fwmark, uint32_t mask, const char* iif, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 293 | const char* oif, uid_t uidStart, uid_t uidEnd) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 294 | // Ensure that if you set a bit in the fwmark, it's not being ignored by the mask. |
| 295 | if (fwmark & ~mask) { |
| 296 | ALOGE("mask 0x%x does not select all the bits set in fwmark 0x%x", mask, fwmark); |
| 297 | return -ERANGE; |
| 298 | } |
| 299 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 300 | // 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] | 301 | // kernels will refuse to delete rules. |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 302 | char iifName[IFNAMSIZ], oifName[IFNAMSIZ]; |
| 303 | size_t iifLength, oifLength; |
| 304 | uint16_t iifPadding, oifPadding; |
| 305 | if (int ret = padInterfaceName(iif, iifName, &iifLength, &iifPadding)) { |
| 306 | return ret; |
| 307 | } |
| 308 | if (int ret = padInterfaceName(oif, oifName, &oifLength, &oifPadding)) { |
| 309 | return ret; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 310 | } |
| 311 | |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 312 | // Either both start and end UID must be specified, or neither. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 313 | if ((uidStart == INVALID_UID) != (uidEnd == INVALID_UID)) { |
Sreeram Ramachandran | cf89138 | 2014-07-01 15:49:20 -0700 | [diff] [blame] | 314 | ALOGE("incompatible start and end UIDs (%u vs %u)", uidStart, uidEnd); |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 315 | return -EUSERS; |
| 316 | } |
Robin Lee | 4ef9464 | 2016-04-01 11:50:49 +0100 | [diff] [blame] | 317 | |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 318 | bool isUidRule = (uidStart != INVALID_UID); |
Lorenzo Colitti | 5965651 | 2014-06-25 03:20:29 +0900 | [diff] [blame] | 319 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 320 | // Assemble a rule request and put it in an array of iovec structures. |
| 321 | fib_rule_hdr rule = { |
Robin Lee | 4ef9464 | 2016-04-01 11:50:49 +0100 | [diff] [blame] | 322 | .action = ruleType, |
Lorenzo Colitti | 6b6f25f | 2015-03-03 17:22:57 +0900 | [diff] [blame] | 323 | // Note that here we're implicitly setting rule.table to 0. When we want to specify a |
| 324 | // non-zero table, we do this via the FRATTR_TABLE attribute. |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 325 | }; |
| 326 | |
Lorenzo Colitti | 6b6f25f | 2015-03-03 17:22:57 +0900 | [diff] [blame] | 327 | // Don't ever create a rule that looks up table 0, because table 0 is the local table. |
| 328 | // It's OK to specify a table ID of 0 when deleting a rule, because that doesn't actually select |
| 329 | // table 0, it's a wildcard that matches anything. |
| 330 | if (table == RT_TABLE_UNSPEC && rule.action == FR_ACT_TO_TBL && action != RTM_DELRULE) { |
| 331 | ALOGE("RT_TABLE_UNSPEC only allowed when deleting rules"); |
| 332 | return -ENOTUNIQ; |
| 333 | } |
| 334 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 335 | rtattr fraIifName = { U16_RTA_LENGTH(iifLength), FRA_IIFNAME }; |
| 336 | rtattr fraOifName = { U16_RTA_LENGTH(oifLength), FRA_OIFNAME }; |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 337 | struct fib_rule_uid_range uidRange = { uidStart, uidEnd }; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 338 | |
| 339 | iovec iov[] = { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 340 | { NULL, 0 }, |
| 341 | { &rule, sizeof(rule) }, |
| 342 | { &FRATTR_PRIORITY, sizeof(FRATTR_PRIORITY) }, |
| 343 | { &priority, sizeof(priority) }, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 344 | { &FRATTR_TABLE, table != RT_TABLE_UNSPEC ? sizeof(FRATTR_TABLE) : 0 }, |
| 345 | { &table, table != RT_TABLE_UNSPEC ? sizeof(table) : 0 }, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 346 | { &FRATTR_FWMARK, mask ? sizeof(FRATTR_FWMARK) : 0 }, |
| 347 | { &fwmark, mask ? sizeof(fwmark) : 0 }, |
| 348 | { &FRATTR_FWMASK, mask ? sizeof(FRATTR_FWMASK) : 0 }, |
| 349 | { &mask, mask ? sizeof(mask) : 0 }, |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 350 | // Rules that contain both legacy and new UID routing attributes will work on old kernels, |
| 351 | // which will simply ignore the FRA_UID_RANGE attribute since it is larger than their |
| 352 | // FRA_MAX. They will also work on kernels that are not too new: |
| 353 | // - FRA_UID_START clashes with FRA_PAD in 4.7, but that shouldn't be a problem because |
| 354 | // FRA_PAD has no validation. |
| 355 | // - FRA_UID_END clashes with FRA_L3MDEV in 4.8 and above, and will cause an error because |
| 356 | // FRA_L3MDEV has a maximum length of 1. |
| 357 | // TODO: delete the legacy UID routing code before running it on 4.8 or above. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 358 | { &FRATTR_UID_START, isUidRule ? sizeof(FRATTR_UID_START) : 0 }, |
| 359 | { &uidStart, isUidRule ? sizeof(uidStart) : 0 }, |
| 360 | { &FRATTR_UID_END, isUidRule ? sizeof(FRATTR_UID_END) : 0 }, |
| 361 | { &uidEnd, isUidRule ? sizeof(uidEnd) : 0 }, |
Lorenzo Colitti | 2b07867 | 2016-12-16 18:45:03 +0900 | [diff] [blame] | 362 | { &FRATTR_UID_RANGE, isUidRule ? sizeof(FRATTR_UID_RANGE) : 0 }, |
| 363 | { &uidRange, isUidRule ? sizeof(uidRange) : 0 }, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 364 | { &fraIifName, iif != IIF_NONE ? sizeof(fraIifName) : 0 }, |
| 365 | { iifName, iifLength }, |
| 366 | { PADDING_BUFFER, iifPadding }, |
| 367 | { &fraOifName, oif != OIF_NONE ? sizeof(fraOifName) : 0 }, |
| 368 | { oifName, oifLength }, |
| 369 | { PADDING_BUFFER, oifPadding }, |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 370 | }; |
| 371 | |
Lorenzo Colitti | 7272368 | 2014-06-26 13:51:10 +0900 | [diff] [blame] | 372 | 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] | 373 | for (size_t i = 0; i < ARRAY_SIZE(AF_FAMILIES); ++i) { |
| 374 | rule.family = AF_FAMILIES[i]; |
| 375 | if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) { |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 376 | ALOGE("Error %s %s rule: %s", actionName(action), familyName(rule.family), |
| 377 | strerror(-ret)); |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 378 | return ret; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 379 | } |
| 380 | } |
| 381 | |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 382 | return 0; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 385 | WARN_UNUSED_RESULT int modifyIpRule(uint16_t action, uint32_t priority, uint32_t table, |
Robin Lee | 4ef9464 | 2016-04-01 11:50:49 +0100 | [diff] [blame] | 386 | uint32_t fwmark, uint32_t mask, const char* iif, |
| 387 | const char* oif, uid_t uidStart, uid_t uidEnd) { |
| 388 | return modifyIpRule(action, priority, FR_ACT_TO_TBL, table, fwmark, mask, iif, oif, uidStart, |
| 389 | uidEnd); |
| 390 | } |
| 391 | |
| 392 | 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] | 393 | uint32_t fwmark, uint32_t mask) { |
| 394 | return modifyIpRule(action, priority, table, fwmark, mask, IIF_NONE, OIF_NONE, INVALID_UID, |
| 395 | INVALID_UID); |
| 396 | } |
| 397 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 398 | // Adds or deletes an IPv4 or IPv6 route. |
| 399 | // Returns 0 on success or negative errno on failure. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 400 | WARN_UNUSED_RESULT int modifyIpRoute(uint16_t action, uint32_t table, const char* interface, |
| 401 | const char* destination, const char* nexthop) { |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 402 | // At least the destination must be non-null. |
| 403 | if (!destination) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 404 | ALOGE("null destination"); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 405 | return -EFAULT; |
| 406 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 407 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 408 | // Parse the prefix. |
| 409 | uint8_t rawAddress[sizeof(in6_addr)]; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 410 | uint8_t family; |
| 411 | uint8_t prefixLength; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 412 | int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress), |
| 413 | &prefixLength); |
| 414 | if (rawLength < 0) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 415 | ALOGE("parsePrefix failed for destination %s (%s)", destination, strerror(-rawLength)); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 416 | return rawLength; |
| 417 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 418 | |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 419 | if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) { |
Sreeram Ramachandran | 1201e84 | 2014-07-01 15:06:05 -0700 | [diff] [blame] | 420 | ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress)); |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 421 | return -ENOBUFS; // Cannot happen; parsePrefix only supports IPv4 and IPv6. |
| 422 | } |
| 423 | |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 424 | uint8_t type = RTN_UNICAST; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 425 | uint32_t ifindex; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 426 | uint8_t rawNexthop[sizeof(in6_addr)]; |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 427 | |
| 428 | if (nexthop && !strcmp(nexthop, "unreachable")) { |
| 429 | type = RTN_UNREACHABLE; |
| 430 | // 'interface' is likely non-NULL, as the caller (modifyRoute()) likely used it to lookup |
| 431 | // the table number. But it's an error to specify an interface ("dev ...") or a nexthop for |
| 432 | // unreachable routes, so nuke them. (IPv6 allows them to be specified; IPv4 doesn't.) |
| 433 | interface = OIF_NONE; |
| 434 | nexthop = NULL; |
Lorenzo Colitti | 4c95a12 | 2014-09-18 16:01:50 +0900 | [diff] [blame] | 435 | } else if (nexthop && !strcmp(nexthop, "throw")) { |
| 436 | type = RTN_THROW; |
| 437 | interface = OIF_NONE; |
| 438 | nexthop = NULL; |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 439 | } else { |
| 440 | // If an interface was specified, find the ifindex. |
| 441 | if (interface != OIF_NONE) { |
| 442 | ifindex = if_nametoindex(interface); |
| 443 | if (!ifindex) { |
| 444 | ALOGE("cannot find interface %s", interface); |
| 445 | return -ENODEV; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | // If a nexthop was specified, parse it as the same family as the prefix. |
| 450 | if (nexthop && inet_pton(family, nexthop, rawNexthop) <= 0) { |
| 451 | ALOGE("inet_pton failed for nexthop %s", nexthop); |
| 452 | return -EINVAL; |
| 453 | } |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 454 | } |
| 455 | |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 456 | // Assemble a rtmsg and put it in an array of iovec structures. |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 457 | rtmsg route = { |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 458 | .rtm_protocol = RTPROT_STATIC, |
Sreeram Ramachandran | de5d5df | 2014-07-26 18:43:25 -0700 | [diff] [blame] | 459 | .rtm_type = type, |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 460 | .rtm_family = family, |
| 461 | .rtm_dst_len = prefixLength, |
Sreeram Ramachandran | 2bff72e | 2014-07-18 13:03:47 -0700 | [diff] [blame] | 462 | .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] | 463 | }; |
Lorenzo Colitti | 4753afd | 2014-06-20 23:03:29 +0900 | [diff] [blame] | 464 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 465 | rtattr rtaDst = { U16_RTA_LENGTH(rawLength), RTA_DST }; |
| 466 | rtattr rtaGateway = { U16_RTA_LENGTH(rawLength), RTA_GATEWAY }; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 467 | |
| 468 | iovec iov[] = { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 469 | { NULL, 0 }, |
| 470 | { &route, sizeof(route) }, |
| 471 | { &RTATTR_TABLE, sizeof(RTATTR_TABLE) }, |
| 472 | { &table, sizeof(table) }, |
| 473 | { &rtaDst, sizeof(rtaDst) }, |
| 474 | { rawAddress, static_cast<size_t>(rawLength) }, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 475 | { &RTATTR_OIF, interface != OIF_NONE ? sizeof(RTATTR_OIF) : 0 }, |
| 476 | { &ifindex, interface != OIF_NONE ? sizeof(ifindex) : 0 }, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 477 | { &rtaGateway, nexthop ? sizeof(rtaGateway) : 0 }, |
| 478 | { rawNexthop, nexthop ? static_cast<size_t>(rawLength) : 0 }, |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 479 | }; |
Lorenzo Colitti | ba25df9 | 2014-06-18 00:22:17 +0900 | [diff] [blame] | 480 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 481 | uint16_t flags = (action == RTM_NEWROUTE) ? NETLINK_CREATE_REQUEST_FLAGS : |
| 482 | NETLINK_REQUEST_FLAGS; |
Lorenzo Colitti | 0b073fb | 2017-02-10 07:49:12 +0900 | [diff] [blame^] | 483 | int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov)); |
| 484 | if (ret) { |
| 485 | ALOGE("Error %s route %s -> %s %s to table %u: %s", |
| 486 | actionName(action), destination, nexthop, interface, table, strerror(-ret)); |
| 487 | } |
| 488 | return ret; |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 489 | } |
| 490 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 491 | // An iptables rule to mark incoming packets on a network with the netId of the network. |
| 492 | // |
| 493 | // This is so that the kernel can: |
| 494 | // + Use the right fwmark for (and thus correctly route) replies (e.g.: TCP RST, ICMP errors, ping |
| 495 | // replies, SYN-ACKs, etc). |
| 496 | // + Mark sockets that accept connections from this interface so that the connection stays on the |
| 497 | // same interface. |
| 498 | WARN_UNUSED_RESULT int modifyIncomingPacketMark(unsigned netId, const char* interface, |
| 499 | Permission permission, bool add) { |
| 500 | Fwmark fwmark; |
| 501 | |
| 502 | fwmark.netId = netId; |
| 503 | fwmark.explicitlySelected = true; |
| 504 | fwmark.protectedFromVpn = true; |
| 505 | fwmark.permission = permission; |
| 506 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 507 | char markString[UINT32_HEX_STRLEN]; |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 508 | snprintf(markString, sizeof(markString), "0x%x", fwmark.intValue); |
| 509 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 510 | if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j", |
| 511 | "MARK", "--set-mark", markString, NULL)) { |
| 512 | ALOGE("failed to change iptables rule that sets incoming packet mark"); |
| 513 | return -EREMOTEIO; |
| 514 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 515 | |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 516 | return 0; |
| 517 | } |
| 518 | |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 519 | // A rule to route responses to the local network forwarded via the VPN. |
| 520 | // |
| 521 | // When a VPN is in effect, packets from the local network to upstream networks are forwarded into |
| 522 | // the VPN's tunnel interface. When the VPN forwards the responses, they emerge out of the tunnel. |
| 523 | WARN_UNUSED_RESULT int modifyVpnOutputToLocalRule(const char* vpnInterface, bool add) { |
| 524 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OUTPUT_TO_LOCAL, |
| 525 | ROUTE_TABLE_LOCAL_NETWORK, MARK_UNSET, MARK_UNSET, vpnInterface, OIF_NONE, |
| 526 | INVALID_UID, INVALID_UID); |
| 527 | } |
| 528 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 529 | // A rule to route all traffic from a given set of UIDs to go over the VPN. |
| 530 | // |
| 531 | // Notice that this rule doesn't use the netId. I.e., no matter what netId the user's socket may |
| 532 | // have, if they are subject to this VPN, their traffic has to go through it. Allows the traffic to |
| 533 | // bypass the VPN if the protectedFromVpn bit is set. |
| 534 | 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] | 535 | bool secure, bool add) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 536 | Fwmark fwmark; |
| 537 | Fwmark mask; |
| 538 | |
| 539 | fwmark.protectedFromVpn = false; |
| 540 | mask.protectedFromVpn = true; |
| 541 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 542 | uint32_t priority; |
| 543 | |
| 544 | if (secure) { |
| 545 | priority = RULE_PRIORITY_SECURE_VPN; |
| 546 | } else { |
| 547 | priority = RULE_PRIORITY_BYPASSABLE_VPN; |
| 548 | |
| 549 | fwmark.explicitlySelected = false; |
| 550 | mask.explicitlySelected = true; |
| 551 | } |
| 552 | |
| 553 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue, |
Lorenzo Colitti | 5ad4e98 | 2015-02-26 17:34:32 +0900 | [diff] [blame] | 554 | mask.intValue, IIF_LOOPBACK, OIF_NONE, uidStart, uidEnd); |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | // A rule to allow system apps to send traffic over this VPN even if they are not part of the target |
| 558 | // set of UIDs. |
| 559 | // |
| 560 | // This is needed for DnsProxyListener to correctly resolve a request for a user who is in the |
| 561 | // target set, but where the DnsProxyListener itself is not. |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 562 | WARN_UNUSED_RESULT int modifyVpnSystemPermissionRule(unsigned netId, uint32_t table, bool secure, |
| 563 | bool add) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 564 | Fwmark fwmark; |
| 565 | Fwmark mask; |
| 566 | |
| 567 | fwmark.netId = netId; |
| 568 | mask.netId = FWMARK_NET_ID_MASK; |
| 569 | |
| 570 | fwmark.permission = PERMISSION_SYSTEM; |
| 571 | mask.permission = PERMISSION_SYSTEM; |
| 572 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 573 | uint32_t priority = secure ? RULE_PRIORITY_SECURE_VPN : RULE_PRIORITY_BYPASSABLE_VPN; |
| 574 | |
| 575 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, priority, table, fwmark.intValue, |
| 576 | mask.intValue); |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 577 | } |
| 578 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 579 | // A rule to route traffic based on an explicitly chosen network. |
| 580 | // |
| 581 | // Supports apps that use the multinetwork APIs to restrict their traffic to a network. |
| 582 | // |
| 583 | // Even though we check permissions at the time we set a netId into the fwmark of a socket, we need |
| 584 | // to check it again in the rules here, because a network's permissions may have been updated via |
| 585 | // modifyNetworkPermission(). |
| 586 | WARN_UNUSED_RESULT int modifyExplicitNetworkRule(unsigned netId, uint32_t table, |
| 587 | Permission permission, uid_t uidStart, |
| 588 | uid_t uidEnd, bool add) { |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 589 | Fwmark fwmark; |
| 590 | Fwmark mask; |
| 591 | |
| 592 | fwmark.netId = netId; |
| 593 | mask.netId = FWMARK_NET_ID_MASK; |
| 594 | |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 595 | fwmark.explicitlySelected = true; |
| 596 | mask.explicitlySelected = true; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 597 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 598 | fwmark.permission = permission; |
| 599 | mask.permission = permission; |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 600 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 601 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_EXPLICIT_NETWORK, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 602 | fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, uidStart, uidEnd); |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 605 | // A rule to route traffic based on a chosen outgoing interface. |
| 606 | // |
| 607 | // Supports apps that use SO_BINDTODEVICE or IP_PKTINFO options and the kernel that already knows |
| 608 | // the outgoing interface (typically for link-local communications). |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 609 | WARN_UNUSED_RESULT int modifyOutputInterfaceRules(const char* interface, uint32_t table, |
| 610 | Permission permission, uid_t uidStart, |
| 611 | uid_t uidEnd, bool add) { |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 612 | Fwmark fwmark; |
| 613 | Fwmark mask; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 614 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 615 | fwmark.permission = permission; |
| 616 | mask.permission = permission; |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 617 | |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 618 | // If this rule does not specify a UID range, then also add a corresponding high-priority rule |
| 619 | // for UID. This covers forwarded packets and system daemons such as the tethering DHCP server. |
| 620 | if (uidStart == INVALID_UID && uidEnd == INVALID_UID) { |
| 621 | if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_VPN_OVERRIDE_OIF, |
| 622 | table, fwmark.intValue, mask.intValue, IIF_NONE, interface, |
| 623 | UID_ROOT, UID_ROOT)) { |
| 624 | return ret; |
| 625 | } |
| 626 | } |
| 627 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 628 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_OUTPUT_INTERFACE, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 629 | fwmark.intValue, mask.intValue, IIF_NONE, interface, uidStart, uidEnd); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | // A rule to route traffic based on the chosen network. |
| 633 | // |
| 634 | // This is for sockets that have not explicitly requested a particular network, but have been |
| 635 | // bound to one when they called connect(). This ensures that sockets connected on a particular |
| 636 | // network stay on that network even if the default network changes. |
| 637 | WARN_UNUSED_RESULT int modifyImplicitNetworkRule(unsigned netId, uint32_t table, |
| 638 | Permission permission, bool add) { |
| 639 | Fwmark fwmark; |
| 640 | Fwmark mask; |
| 641 | |
| 642 | fwmark.netId = netId; |
| 643 | mask.netId = FWMARK_NET_ID_MASK; |
| 644 | |
| 645 | fwmark.explicitlySelected = false; |
| 646 | mask.explicitlySelected = true; |
| 647 | |
| 648 | fwmark.permission = permission; |
| 649 | mask.permission = permission; |
| 650 | |
| 651 | return modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, RULE_PRIORITY_IMPLICIT_NETWORK, table, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 652 | fwmark.intValue, mask.intValue); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 653 | } |
| 654 | |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 655 | // A rule to enable split tunnel VPNs. |
| 656 | // |
| 657 | // If a packet with a VPN's netId doesn't find a route in the VPN's routing table, it's allowed to |
| 658 | // go over the default network, provided it wasn't explicitly restricted to the VPN and has the |
| 659 | // permissions required by the default network. |
| 660 | WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId, |
| 661 | const char* physicalInterface, |
| 662 | Permission permission) { |
| 663 | uint32_t table = getRouteTableForInterface(physicalInterface); |
| 664 | if (table == RT_TABLE_UNSPEC) { |
| 665 | return -ESRCH; |
| 666 | } |
| 667 | |
| 668 | Fwmark fwmark; |
| 669 | Fwmark mask; |
| 670 | |
| 671 | fwmark.netId = vpnNetId; |
| 672 | mask.netId = FWMARK_NET_ID_MASK; |
| 673 | |
| 674 | fwmark.explicitlySelected = false; |
| 675 | mask.explicitlySelected = true; |
| 676 | |
| 677 | fwmark.permission = permission; |
| 678 | mask.permission = permission; |
| 679 | |
| 680 | return modifyIpRule(action, RULE_PRIORITY_VPN_FALLTHROUGH, table, fwmark.intValue, |
| 681 | mask.intValue); |
| 682 | } |
| 683 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 684 | // Add rules to allow legacy routes added through the requestRouteToHost() API. |
| 685 | WARN_UNUSED_RESULT int addLegacyRouteRules() { |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 686 | Fwmark fwmark; |
| 687 | Fwmark mask; |
| 688 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 689 | fwmark.explicitlySelected = false; |
| 690 | mask.explicitlySelected = true; |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 691 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 692 | // Rules to allow legacy routes to override the default network. |
| 693 | if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_SYSTEM, ROUTE_TABLE_LEGACY_SYSTEM, |
| 694 | fwmark.intValue, mask.intValue)) { |
| 695 | return ret; |
| 696 | } |
| 697 | if (int ret = modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LEGACY_NETWORK, |
| 698 | ROUTE_TABLE_LEGACY_NETWORK, fwmark.intValue, mask.intValue)) { |
| 699 | return ret; |
| 700 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 701 | |
| 702 | fwmark.permission = PERMISSION_SYSTEM; |
| 703 | mask.permission = PERMISSION_SYSTEM; |
| 704 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 705 | // A rule to allow legacy routes from system apps to override VPNs. |
| 706 | 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] | 707 | fwmark.intValue, mask.intValue); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 710 | // Add rules to lookup the local network when specified explicitly or otherwise. |
| 711 | WARN_UNUSED_RESULT int addLocalNetworkRules(unsigned localNetId) { |
| 712 | if (int ret = modifyExplicitNetworkRule(localNetId, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE, |
| 713 | INVALID_UID, INVALID_UID, ACTION_ADD)) { |
| 714 | return ret; |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 715 | } |
| 716 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 717 | Fwmark fwmark; |
| 718 | Fwmark mask; |
| 719 | |
| 720 | fwmark.explicitlySelected = false; |
| 721 | mask.explicitlySelected = true; |
| 722 | |
| 723 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_LOCAL_NETWORK, ROUTE_TABLE_LOCAL_NETWORK, |
| 724 | fwmark.intValue, mask.intValue); |
| 725 | } |
| 726 | |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 727 | int configureDummyNetwork() { |
| 728 | const char *interface = DummyNetwork::INTERFACE_NAME; |
| 729 | uint32_t table = getRouteTableForInterface(interface); |
| 730 | if (table == RT_TABLE_UNSPEC) { |
| 731 | // getRouteTableForInterface has already looged an error. |
| 732 | return -ESRCH; |
| 733 | } |
| 734 | |
| 735 | ifc_init(); |
| 736 | int ret = ifc_up(interface); |
| 737 | ifc_close(); |
| 738 | if (ret) { |
| 739 | ALOGE("Can't bring up %s: %s", interface, strerror(errno)); |
| 740 | return -errno; |
| 741 | } |
| 742 | |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 743 | if ((ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE, |
| 744 | INVALID_UID, INVALID_UID, ACTION_ADD))) { |
| 745 | ALOGE("Can't create oif rules for %s: %s", interface, strerror(-ret)); |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 746 | return ret; |
| 747 | } |
| 748 | |
| 749 | if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "0.0.0.0/0", NULL))) { |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 750 | return ret; |
| 751 | } |
| 752 | |
| 753 | if ((ret = modifyIpRoute(RTM_NEWROUTE, table, interface, "::/0", NULL))) { |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 754 | return ret; |
| 755 | } |
| 756 | |
| 757 | return 0; |
| 758 | } |
| 759 | |
Lorenzo Colitti | a2c2305 | 2014-07-29 09:25:44 +0000 | [diff] [blame] | 760 | // Add a new rule to look up the 'main' table, with the same selectors as the "default network" |
Lorenzo Colitti | db74dba | 2014-07-29 18:26:21 +0900 | [diff] [blame] | 761 | // rule, but with a lower priority. We will never create routes in the main table; it should only be |
| 762 | // used for directly-connected routes implicitly created by the kernel when adding IP addresses. |
| 763 | // This is necessary, for example, when adding a route through a directly-connected gateway: in |
| 764 | // order to add the route, there must already be a directly-connected route that covers the gateway. |
Lorenzo Colitti | a2c2305 | 2014-07-29 09:25:44 +0000 | [diff] [blame] | 765 | WARN_UNUSED_RESULT int addDirectlyConnectedRule() { |
| 766 | Fwmark fwmark; |
| 767 | Fwmark mask; |
| 768 | |
| 769 | fwmark.netId = NETID_UNSET; |
| 770 | mask.netId = FWMARK_NET_ID_MASK; |
| 771 | |
| 772 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_DIRECTLY_CONNECTED, RT_TABLE_MAIN, |
| 773 | fwmark.intValue, mask.intValue, IIF_NONE, OIF_NONE, UID_ROOT, UID_ROOT); |
| 774 | } |
| 775 | |
Lorenzo Colitti | db74dba | 2014-07-29 18:26:21 +0900 | [diff] [blame] | 776 | // Add an explicit unreachable rule close to the end of the prioriy list to make it clear that |
| 777 | // relying on the kernel-default "from all lookup main" rule at priority 32766 is not intended |
| 778 | // behaviour. We do flush the kernel-default rules at startup, but having an explicit unreachable |
| 779 | // rule will hopefully make things even clearer. |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 780 | WARN_UNUSED_RESULT int addUnreachableRule() { |
Robin Lee | c125fe4 | 2016-05-02 08:53:34 +0100 | [diff] [blame] | 781 | return modifyIpRule(RTM_NEWRULE, RULE_PRIORITY_UNREACHABLE, FR_ACT_UNREACHABLE, RT_TABLE_UNSPEC, |
| 782 | MARK_UNSET, MARK_UNSET, IIF_NONE, OIF_NONE, INVALID_UID, INVALID_UID); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 783 | } |
| 784 | |
| 785 | WARN_UNUSED_RESULT int modifyLocalNetwork(unsigned netId, const char* interface, bool add) { |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 786 | if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) { |
| 787 | return ret; |
| 788 | } |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 789 | return modifyOutputInterfaceRules(interface, ROUTE_TABLE_LOCAL_NETWORK, PERMISSION_NONE, |
| 790 | INVALID_UID, INVALID_UID, add); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 791 | } |
| 792 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 793 | WARN_UNUSED_RESULT int modifyPhysicalNetwork(unsigned netId, const char* interface, |
| 794 | Permission permission, bool add) { |
| 795 | uint32_t table = getRouteTableForInterface(interface); |
| 796 | if (table == RT_TABLE_UNSPEC) { |
| 797 | return -ESRCH; |
| 798 | } |
| 799 | |
| 800 | if (int ret = modifyIncomingPacketMark(netId, interface, permission, add)) { |
| 801 | return ret; |
| 802 | } |
| 803 | if (int ret = modifyExplicitNetworkRule(netId, table, permission, INVALID_UID, INVALID_UID, |
| 804 | add)) { |
| 805 | return ret; |
| 806 | } |
Lorenzo Colitti | 57947f0 | 2015-02-27 16:45:55 +0900 | [diff] [blame] | 807 | if (int ret = modifyOutputInterfaceRules(interface, table, permission, INVALID_UID, INVALID_UID, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 808 | add)) { |
| 809 | return ret; |
| 810 | } |
| 811 | return modifyImplicitNetworkRule(netId, table, permission, add); |
| 812 | } |
| 813 | |
Robin Lee | b808736 | 2016-03-30 18:43:08 +0100 | [diff] [blame] | 814 | WARN_UNUSED_RESULT int modifyRejectNonSecureNetworkRule(const UidRanges& uidRanges, bool add) { |
| 815 | Fwmark fwmark; |
| 816 | Fwmark mask; |
| 817 | fwmark.protectedFromVpn = false; |
| 818 | mask.protectedFromVpn = true; |
| 819 | |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 820 | for (const UidRange& range : uidRanges.getRanges()) { |
Robin Lee | b808736 | 2016-03-30 18:43:08 +0100 | [diff] [blame] | 821 | if (int ret = modifyIpRule(add ? RTM_NEWRULE : RTM_DELRULE, |
| 822 | RULE_PRIORITY_PROHIBIT_NON_VPN, FR_ACT_PROHIBIT, RT_TABLE_UNSPEC, |
| 823 | fwmark.intValue, mask.intValue, IIF_LOOPBACK, OIF_NONE, |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 824 | range.getStart(), range.getStop())) { |
Robin Lee | b808736 | 2016-03-30 18:43:08 +0100 | [diff] [blame] | 825 | return ret; |
| 826 | } |
| 827 | } |
| 828 | |
| 829 | return 0; |
| 830 | } |
| 831 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 832 | WARN_UNUSED_RESULT int modifyVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 833 | const UidRanges& uidRanges, bool secure, bool add, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 834 | bool modifyNonUidBasedRules) { |
| 835 | uint32_t table = getRouteTableForInterface(interface); |
| 836 | if (table == RT_TABLE_UNSPEC) { |
| 837 | return -ESRCH; |
| 838 | } |
| 839 | |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 840 | for (const UidRange& range : uidRanges.getRanges()) { |
| 841 | if (int ret = modifyVpnUidRangeRule(table, range.getStart(), range.getStop(), secure, add)) |
| 842 | { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 843 | return ret; |
| 844 | } |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 845 | if (int ret = modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, range.getStart(), |
| 846 | range.getStop(), add)) { |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 847 | return ret; |
| 848 | } |
Robin Lee | dc0d578 | 2016-07-20 14:17:11 +0100 | [diff] [blame] | 849 | if (int ret = modifyOutputInterfaceRules(interface, table, PERMISSION_NONE, |
| 850 | range.getStart(), range.getStop(), add)) { |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 851 | return ret; |
| 852 | } |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 855 | if (modifyNonUidBasedRules) { |
| 856 | if (int ret = modifyIncomingPacketMark(netId, interface, PERMISSION_NONE, add)) { |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 857 | return ret; |
| 858 | } |
Sreeram Ramachandran | 111bec2 | 2014-07-22 18:51:06 -0700 | [diff] [blame] | 859 | if (int ret = modifyVpnOutputToLocalRule(interface, add)) { |
| 860 | return ret; |
| 861 | } |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 862 | if (int ret = modifyVpnSystemPermissionRule(netId, table, secure, add)) { |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 863 | return ret; |
| 864 | } |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 865 | return modifyExplicitNetworkRule(netId, table, PERMISSION_NONE, UID_ROOT, UID_ROOT, add); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 871 | WARN_UNUSED_RESULT int modifyDefaultNetwork(uint16_t action, const char* interface, |
| 872 | Permission permission) { |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 873 | uint32_t table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 874 | if (table == RT_TABLE_UNSPEC) { |
Lorenzo Colitti | 96f261e | 2014-06-23 15:09:54 +0900 | [diff] [blame] | 875 | return -ESRCH; |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 876 | } |
| 877 | |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 878 | Fwmark fwmark; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 879 | Fwmark mask; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 880 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 881 | fwmark.netId = NETID_UNSET; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 882 | mask.netId = FWMARK_NET_ID_MASK; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 883 | |
| 884 | fwmark.permission = permission; |
Sreeram Ramachandran | 122f581 | 2014-05-11 20:29:49 -0700 | [diff] [blame] | 885 | mask.permission = permission; |
| 886 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 887 | return modifyIpRule(action, RULE_PRIORITY_DEFAULT_NETWORK, table, fwmark.intValue, |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 888 | mask.intValue); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 891 | WARN_UNUSED_RESULT int modifyTetheredNetwork(uint16_t action, const char* inputInterface, |
| 892 | const char* outputInterface) { |
| 893 | uint32_t table = getRouteTableForInterface(outputInterface); |
| 894 | if (table == RT_TABLE_UNSPEC) { |
| 895 | return -ESRCH; |
| 896 | } |
| 897 | |
| 898 | return modifyIpRule(action, RULE_PRIORITY_TETHERING, table, MARK_UNSET, MARK_UNSET, |
| 899 | inputInterface, OIF_NONE, INVALID_UID, INVALID_UID); |
| 900 | } |
| 901 | |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 902 | // Returns 0 on success or negative errno on failure. |
| 903 | WARN_UNUSED_RESULT int flushRules() { |
| 904 | for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) { |
| 905 | const char* argv[] = { |
| 906 | IP_PATH, |
| 907 | IP_VERSIONS[i], |
| 908 | "rule", |
| 909 | "flush", |
| 910 | }; |
| 911 | if (android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), NULL, false, false)) { |
| 912 | ALOGE("failed to flush rules"); |
| 913 | return -EREMOTEIO; |
| 914 | } |
| 915 | } |
| 916 | return 0; |
| 917 | } |
| 918 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 919 | // 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] | 920 | // route, to the main table as well. |
| 921 | // Returns 0 on success or negative errno on failure. |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 922 | WARN_UNUSED_RESULT int modifyRoute(uint16_t action, const char* interface, const char* destination, |
| 923 | const char* nexthop, RouteController::TableType tableType) { |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 924 | uint32_t table; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 925 | switch (tableType) { |
| 926 | case RouteController::INTERFACE: { |
| 927 | table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 928 | if (table == RT_TABLE_UNSPEC) { |
| 929 | return -ESRCH; |
| 930 | } |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 931 | break; |
| 932 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 933 | case RouteController::LOCAL_NETWORK: { |
| 934 | table = ROUTE_TABLE_LOCAL_NETWORK; |
| 935 | break; |
| 936 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 937 | case RouteController::LEGACY_NETWORK: { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 938 | table = ROUTE_TABLE_LEGACY_NETWORK; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 939 | break; |
| 940 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 941 | case RouteController::LEGACY_SYSTEM: { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 942 | table = ROUTE_TABLE_LEGACY_SYSTEM; |
Sreeram Ramachandran | 38b7af1 | 2014-05-22 14:21:49 -0700 | [diff] [blame] | 943 | break; |
| 944 | } |
| 945 | } |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 946 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 947 | int ret = modifyIpRoute(action, table, interface, destination, nexthop); |
Sreeram Ramachandran | 0321315 | 2014-10-30 10:01:07 -0700 | [diff] [blame] | 948 | // Trying to add a route that already exists shouldn't cause an error. |
| 949 | if (ret && !(action == RTM_NEWROUTE && ret == -EEXIST)) { |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 950 | return ret; |
Sreeram Ramachandran | c921337 | 2014-04-16 12:32:18 -0700 | [diff] [blame] | 951 | } |
| 952 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 953 | return 0; |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 954 | } |
| 955 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 956 | // Returns 0 on success or negative errno on failure. |
| 957 | WARN_UNUSED_RESULT int flushRoutes(const char* interface) { |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 958 | uint32_t table = getRouteTableForInterface(interface); |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 959 | if (table == RT_TABLE_UNSPEC) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 960 | return -ESRCH; |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 963 | char tableString[UINT32_STRLEN]; |
| 964 | snprintf(tableString, sizeof(tableString), "%u", table); |
| 965 | |
Lorenzo Colitti | 99286fe | 2014-08-12 15:08:00 +0900 | [diff] [blame] | 966 | int ret = 0; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 967 | for (size_t i = 0; i < ARRAY_SIZE(IP_VERSIONS); ++i) { |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 968 | const char* argv[] = { |
| 969 | IP_PATH, |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 970 | IP_VERSIONS[i], |
Sreeram Ramachandran | 72999d6 | 2014-07-02 18:06:34 -0700 | [diff] [blame] | 971 | "route", |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 972 | "flush", |
| 973 | "table", |
| 974 | tableString, |
| 975 | }; |
Lorenzo Colitti | 99286fe | 2014-08-12 15:08:00 +0900 | [diff] [blame] | 976 | |
| 977 | // A flush works by dumping routes and deleting each route as it's returned, and it can |
| 978 | // fail if something else deletes the route between the dump and the delete. This can |
| 979 | // happen, for example, if an interface goes down while we're trying to flush its routes. |
| 980 | // So try multiple times and only return an error if the last attempt fails. |
| 981 | // |
| 982 | // TODO: replace this with our own netlink code. |
| 983 | unsigned attempts = 0; |
| 984 | int err; |
| 985 | do { |
| 986 | err = android_fork_execvp(ARRAY_SIZE(argv), const_cast<char**>(argv), |
| 987 | NULL, false, false); |
| 988 | ++attempts; |
| 989 | } while (err != 0 && attempts < ROUTE_FLUSH_ATTEMPTS); |
| 990 | if (err) { |
| 991 | ALOGE("failed to flush %s routes in table %s after %d attempts", |
| 992 | IP_VERSIONS[i], tableString, attempts); |
| 993 | ret = -EREMOTEIO; |
Lorenzo Colitti | 357e562 | 2014-06-17 16:14:17 +0900 | [diff] [blame] | 994 | } |
| 995 | } |
| 996 | |
Lorenzo Colitti | 99286fe | 2014-08-12 15:08:00 +0900 | [diff] [blame] | 997 | // If we failed to flush routes, the caller may elect to keep this interface around, so keep |
| 998 | // track of its name. |
| 999 | if (!ret) { |
| 1000 | interfaceToTable.erase(interface); |
| 1001 | } |
| 1002 | |
| 1003 | return ret; |
Sreeram Ramachandran | 92b66c4 | 2014-04-15 14:28:55 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
Lorenzo Colitti | 6b6f25f | 2015-03-03 17:22:57 +0900 | [diff] [blame] | 1006 | WARN_UNUSED_RESULT int clearTetheringRules(const char* inputInterface) { |
| 1007 | int ret = 0; |
| 1008 | while (ret == 0) { |
| 1009 | ret = modifyIpRule(RTM_DELRULE, RULE_PRIORITY_TETHERING, 0, MARK_UNSET, MARK_UNSET, |
| 1010 | inputInterface, OIF_NONE, INVALID_UID, INVALID_UID); |
| 1011 | } |
| 1012 | |
| 1013 | if (ret == -ENOENT) { |
| 1014 | return 0; |
| 1015 | } else { |
| 1016 | return ret; |
| 1017 | } |
| 1018 | } |
| 1019 | |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 1020 | } // namespace |
| 1021 | |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1022 | int RouteController::Init(unsigned localNetId) { |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 1023 | if (int ret = flushRules()) { |
| 1024 | return ret; |
| 1025 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1026 | if (int ret = addLegacyRouteRules()) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1027 | return ret; |
| 1028 | } |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 1029 | if (int ret = addLocalNetworkRules(localNetId)) { |
| 1030 | return ret; |
| 1031 | } |
Lorenzo Colitti | a2c2305 | 2014-07-29 09:25:44 +0000 | [diff] [blame] | 1032 | if (int ret = addDirectlyConnectedRule()) { |
| 1033 | return ret; |
| 1034 | } |
Sreeram Ramachandran | b717e74 | 2014-07-19 00:22:15 -0700 | [diff] [blame] | 1035 | if (int ret = addUnreachableRule()) { |
| 1036 | return ret; |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1037 | } |
Lorenzo Colitti | 3667936 | 2015-02-25 10:26:19 +0900 | [diff] [blame] | 1038 | // Don't complain if we can't add the dummy network, since not all devices support it. |
| 1039 | configureDummyNetwork(); |
| 1040 | |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1041 | updateTableNamesFile(); |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1042 | return 0; |
Sreeram Ramachandran | 8fe9c8e | 2014-04-16 12:08:05 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 1045 | int RouteController::addInterfaceToLocalNetwork(unsigned netId, const char* interface) { |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1046 | return modifyLocalNetwork(netId, interface, ACTION_ADD); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | int RouteController::removeInterfaceFromLocalNetwork(unsigned netId, const char* interface) { |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1050 | return modifyLocalNetwork(netId, interface, ACTION_DEL); |
Sreeram Ramachandran | 6a77353 | 2014-07-11 09:10:20 -0700 | [diff] [blame] | 1051 | } |
| 1052 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1053 | int RouteController::addInterfaceToPhysicalNetwork(unsigned netId, const char* interface, |
| 1054 | Permission permission) { |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1055 | if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_ADD)) { |
| 1056 | return ret; |
| 1057 | } |
| 1058 | updateTableNamesFile(); |
| 1059 | return 0; |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1062 | int RouteController::removeInterfaceFromPhysicalNetwork(unsigned netId, const char* interface, |
| 1063 | Permission permission) { |
| 1064 | if (int ret = modifyPhysicalNetwork(netId, interface, permission, ACTION_DEL)) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1065 | return ret; |
| 1066 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1067 | if (int ret = flushRoutes(interface)) { |
| 1068 | return ret; |
| 1069 | } |
Lorenzo Colitti | 6b6f25f | 2015-03-03 17:22:57 +0900 | [diff] [blame] | 1070 | if (int ret = clearTetheringRules(interface)) { |
| 1071 | return ret; |
| 1072 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1073 | updateTableNamesFile(); |
| 1074 | return 0; |
Sreeram Ramachandran | 379bd33 | 2014-04-10 19:58:06 -0700 | [diff] [blame] | 1075 | } |
| 1076 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1077 | int RouteController::addInterfaceToVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 1078 | bool secure, const UidRanges& uidRanges) { |
| 1079 | if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD, |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1080 | MODIFY_NON_UID_BASED_RULES)) { |
| 1081 | return ret; |
| 1082 | } |
| 1083 | updateTableNamesFile(); |
| 1084 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 1085 | } |
| 1086 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1087 | int RouteController::removeInterfaceFromVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 1088 | bool secure, const UidRanges& uidRanges) { |
| 1089 | if (int ret = modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1090 | MODIFY_NON_UID_BASED_RULES)) { |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 1091 | return ret; |
| 1092 | } |
Sreeram Ramachandran | 4acd34a | 2014-07-07 22:11:37 -0700 | [diff] [blame] | 1093 | if (int ret = flushRoutes(interface)) { |
| 1094 | return ret; |
| 1095 | } |
| 1096 | updateTableNamesFile(); |
| 1097 | return 0; |
Sreeram Ramachandran | 4043f01 | 2014-06-23 12:41:37 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1100 | int RouteController::modifyPhysicalNetworkPermission(unsigned netId, const char* interface, |
| 1101 | Permission oldPermission, |
| 1102 | Permission newPermission) { |
Sreeram Ramachandran | 379bd33 | 2014-04-10 19:58:06 -0700 | [diff] [blame] | 1103 | // 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] | 1104 | if (int ret = modifyPhysicalNetwork(netId, interface, newPermission, ACTION_ADD)) { |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1105 | return ret; |
| 1106 | } |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1107 | return modifyPhysicalNetwork(netId, interface, oldPermission, ACTION_DEL); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 1108 | } |
| 1109 | |
Robin Lee | b808736 | 2016-03-30 18:43:08 +0100 | [diff] [blame] | 1110 | int RouteController::addUsersToRejectNonSecureNetworkRule(const UidRanges& uidRanges) { |
| 1111 | return modifyRejectNonSecureNetworkRule(uidRanges, true); |
| 1112 | } |
| 1113 | |
| 1114 | int RouteController::removeUsersFromRejectNonSecureNetworkRule(const UidRanges& uidRanges) { |
| 1115 | return modifyRejectNonSecureNetworkRule(uidRanges, false); |
| 1116 | } |
| 1117 | |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 1118 | int RouteController::addUsersToVirtualNetwork(unsigned netId, const char* interface, bool secure, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1119 | const UidRanges& uidRanges) { |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 1120 | return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_ADD, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1121 | !MODIFY_NON_UID_BASED_RULES); |
Sreeram Ramachandran | b1425cc | 2014-06-23 18:54:27 -0700 | [diff] [blame] | 1122 | } |
| 1123 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1124 | int RouteController::removeUsersFromVirtualNetwork(unsigned netId, const char* interface, |
Sreeram Ramachandran | 95684ba | 2014-07-23 13:27:31 -0700 | [diff] [blame] | 1125 | bool secure, const UidRanges& uidRanges) { |
| 1126 | return modifyVirtualNetwork(netId, interface, uidRanges, secure, ACTION_DEL, |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1127 | !MODIFY_NON_UID_BASED_RULES); |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1130 | int RouteController::addInterfaceToDefaultNetwork(const char* interface, Permission permission) { |
| 1131 | return modifyDefaultNetwork(RTM_NEWRULE, interface, permission); |
Sreeram Ramachandran | 9c0d313 | 2014-04-10 20:35:04 -0700 | [diff] [blame] | 1132 | } |
| 1133 | |
Sreeram Ramachandran | 5009d5e | 2014-07-03 12:20:48 -0700 | [diff] [blame] | 1134 | int RouteController::removeInterfaceFromDefaultNetwork(const char* interface, |
| 1135 | Permission permission) { |
| 1136 | return modifyDefaultNetwork(RTM_DELRULE, interface, permission); |
Sreeram Ramachandran | 5c181bf | 2014-04-07 14:10:04 -0700 | [diff] [blame] | 1137 | } |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 1138 | |
Sreeram Ramachandran | f4f6c8d | 2014-06-23 09:54:06 -0700 | [diff] [blame] | 1139 | int RouteController::addRoute(const char* interface, const char* destination, const char* nexthop, |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 1140 | TableType tableType) { |
| 1141 | return modifyRoute(RTM_NEWROUTE, interface, destination, nexthop, tableType); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
Lorenzo Colitti | f7fc8ec | 2014-06-18 00:41:58 +0900 | [diff] [blame] | 1144 | int RouteController::removeRoute(const char* interface, const char* destination, |
Sreeram Ramachandran | eb27b7e | 2014-07-01 14:30:30 -0700 | [diff] [blame] | 1145 | const char* nexthop, TableType tableType) { |
| 1146 | return modifyRoute(RTM_DELROUTE, interface, destination, nexthop, tableType); |
Sreeram Ramachandran | 7619e1b | 2014-04-15 14:23:08 -0700 | [diff] [blame] | 1147 | } |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1148 | |
| 1149 | int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 1150 | return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) { |
Sreeram Ramachandran | fa9f4dc | 2014-07-22 18:16:44 -0700 | [diff] [blame] | 1154 | return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface); |
Sreeram Ramachandran | 87475a1 | 2014-07-15 16:20:28 -0700 | [diff] [blame] | 1155 | } |
Sreeram Ramachandran | 48e19b0 | 2014-07-22 22:23:20 -0700 | [diff] [blame] | 1156 | |
| 1157 | int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface, |
| 1158 | Permission permission) { |
| 1159 | return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission); |
| 1160 | } |
| 1161 | |
| 1162 | int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId, |
| 1163 | const char* physicalInterface, |
| 1164 | Permission permission) { |
| 1165 | return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission); |
| 1166 | } |