blob: 7890fd2e10e711f5096247a5b3d8fbd025d9d94c [file] [log] [blame]
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -05001/*
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
Sreeram Ramachandran72604072014-05-21 13:19:43 -070017// THREAD-SAFETY
18// -------------
19// The methods in this file are called from multiple threads (from CommandListener, FwmarkServer
20// and DnsProxyListener). So, all accesses to shared state are guarded by a lock.
21//
22// In some cases, a single non-const method acquires and releases the lock several times, like so:
23// if (isValidNetwork(...)) { // isValidNetwork() acquires and releases the lock.
24// setDefaultNetwork(...); // setDefaultNetwork() also acquires and releases the lock.
25//
26// It might seem that this allows races where the state changes between the two statements, but in
27// fact there are no races because:
28// 1. This pattern only occurs in non-const methods (i.e., those that mutate state).
29// 2. Only CommandListener calls these non-const methods. The others call only const methods.
30// 3. CommandListener only processes one command at a time. I.e., it's serialized.
31// Thus, no other mutation can occur in between the two statements above.
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -050032
33#include "NetworkController.h"
34
Lorenzo Colitti36679362015-02-25 10:26:19 +090035#include "DummyNetwork.h"
Sreeram Ramachandran1011b492014-07-24 19:04:32 -070036#include "Fwmark.h"
Sreeram Ramachandran6a773532014-07-11 09:10:20 -070037#include "LocalNetwork.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070038#include "PhysicalNetwork.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070039#include "RouteController.h"
Sreeram Ramachandran4043f012014-06-23 12:41:37 -070040#include "VirtualNetwork.h"
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070041
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -070042#include "cutils/misc.h"
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070043#define LOG_TAG "Netd"
44#include "log/log.h"
Sreeram Ramachandran72604072014-05-21 13:19:43 -070045#include "resolv_netid.h"
46
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070047namespace {
48
49// Keep these in sync with ConnectivityService.java.
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -070050const unsigned MIN_NET_ID = 100;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -070051const unsigned MAX_NET_ID = 65535;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -070052
53} // namespace
54
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -070055const unsigned NetworkController::MIN_OEM_ID = 1;
56const unsigned NetworkController::MAX_OEM_ID = 50;
Lorenzo Colitti36679362015-02-25 10:26:19 +090057const unsigned NetworkController::DUMMY_NET_ID = 51;
58// NetIds 52..98 are reserved for future use.
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -070059const unsigned NetworkController::LOCAL_NET_ID = 99;
60
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -070061// All calls to methods here are made while holding a write lock on mRWLock.
62class NetworkController::DelegateImpl : public PhysicalNetwork::Delegate {
63public:
64 explicit DelegateImpl(NetworkController* networkController);
65 virtual ~DelegateImpl();
66
67 int modifyFallthrough(unsigned vpnNetId, const std::string& physicalInterface,
68 Permission permission, bool add) WARN_UNUSED_RESULT;
69
70private:
71 int addFallthrough(const std::string& physicalInterface,
72 Permission permission) override WARN_UNUSED_RESULT;
73 int removeFallthrough(const std::string& physicalInterface,
74 Permission permission) override WARN_UNUSED_RESULT;
75
76 int modifyFallthrough(const std::string& physicalInterface, Permission permission,
77 bool add) WARN_UNUSED_RESULT;
78
79 NetworkController* const mNetworkController;
80};
81
82NetworkController::DelegateImpl::DelegateImpl(NetworkController* networkController) :
83 mNetworkController(networkController) {
84}
85
86NetworkController::DelegateImpl::~DelegateImpl() {
87}
88
89int NetworkController::DelegateImpl::modifyFallthrough(unsigned vpnNetId,
90 const std::string& physicalInterface,
91 Permission permission, bool add) {
92 if (add) {
93 if (int ret = RouteController::addVirtualNetworkFallthrough(vpnNetId,
94 physicalInterface.c_str(),
95 permission)) {
96 ALOGE("failed to add fallthrough to %s for VPN netId %u", physicalInterface.c_str(),
97 vpnNetId);
98 return ret;
99 }
100 } else {
101 if (int ret = RouteController::removeVirtualNetworkFallthrough(vpnNetId,
102 physicalInterface.c_str(),
103 permission)) {
104 ALOGE("failed to remove fallthrough to %s for VPN netId %u", physicalInterface.c_str(),
105 vpnNetId);
106 return ret;
107 }
108 }
109 return 0;
110}
111
112int NetworkController::DelegateImpl::addFallthrough(const std::string& physicalInterface,
113 Permission permission) {
114 return modifyFallthrough(physicalInterface, permission, true);
115}
116
117int NetworkController::DelegateImpl::removeFallthrough(const std::string& physicalInterface,
118 Permission permission) {
119 return modifyFallthrough(physicalInterface, permission, false);
120}
121
122int NetworkController::DelegateImpl::modifyFallthrough(const std::string& physicalInterface,
123 Permission permission, bool add) {
124 for (const auto& entry : mNetworkController->mNetworks) {
125 if (entry.second->getType() == Network::VIRTUAL) {
126 if (int ret = modifyFallthrough(entry.first, physicalInterface, permission, add)) {
127 return ret;
128 }
129 }
130 }
131 return 0;
132}
133
134NetworkController::NetworkController() :
135 mDelegateImpl(new NetworkController::DelegateImpl(this)), mDefaultNetId(NETID_UNSET) {
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700136 mNetworks[LOCAL_NET_ID] = new LocalNetwork(LOCAL_NET_ID);
Lorenzo Colitti36679362015-02-25 10:26:19 +0900137 mNetworks[DUMMY_NET_ID] = new DummyNetwork(DUMMY_NET_ID);
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500138}
139
140unsigned NetworkController::getDefaultNetwork() const {
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700141 android::RWLock::AutoRLock lock(mRWLock);
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500142 return mDefaultNetId;
143}
144
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700145int NetworkController::setDefaultNetwork(unsigned netId) {
146 android::RWLock::AutoWLock lock(mRWLock);
147
148 if (netId == mDefaultNetId) {
149 return 0;
Sreeram Ramachandran72604072014-05-21 13:19:43 -0700150 }
151
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700152 if (netId != NETID_UNSET) {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700153 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900154 if (!network) {
155 ALOGE("no such netId %u", netId);
156 return -ENONET;
157 }
158 if (network->getType() != Network::PHYSICAL) {
159 ALOGE("cannot set default to non-physical network with netId %u", netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700160 return -EINVAL;
161 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700162 if (int ret = static_cast<PhysicalNetwork*>(network)->addAsDefault()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700163 return ret;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700164 }
165 }
166
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700167 if (mDefaultNetId != NETID_UNSET) {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700168 Network* network = getNetworkLocked(mDefaultNetId);
169 if (!network || network->getType() != Network::PHYSICAL) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700170 ALOGE("cannot find previously set default network with netId %u", mDefaultNetId);
171 return -ESRCH;
172 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700173 if (int ret = static_cast<PhysicalNetwork*>(network)->removeAsDefault()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700174 return ret;
Sreeram Ramachandran9c0d3132014-04-10 20:35:04 -0700175 }
176 }
177
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700178 mDefaultNetId = netId;
179 return 0;
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500180}
181
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700182uint32_t NetworkController::getNetworkForDns(unsigned* netId, uid_t uid) const {
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500183 android::RWLock::AutoRLock lock(mRWLock);
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700184 Fwmark fwmark;
185 fwmark.protectedFromVpn = true;
186 fwmark.permission = PERMISSION_SYSTEM;
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900187 if (checkUserNetworkAccessLocked(uid, *netId) == 0) {
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700188 // If a non-zero NetId was explicitly specified, and the user has permission for that
189 // network, use that network's DNS servers. Do not fall through to the default network even
190 // if the explicitly selected network is a split tunnel VPN or a VPN without DNS servers.
191 fwmark.explicitlySelected = true;
192 } else {
193 // If the user is subject to a VPN and the VPN provides DNS servers, use those servers
194 // (possibly falling through to the default network if the VPN doesn't provide a route to
195 // them). Otherwise, use the default network's DNS servers.
196 VirtualNetwork* virtualNetwork = getVirtualNetworkForUserLocked(uid);
197 if (virtualNetwork && virtualNetwork->getHasDns()) {
198 *netId = virtualNetwork->getNetId();
199 } else {
200 *netId = mDefaultNetId;
201 }
202 }
203 fwmark.netId = *netId;
204 return fwmark.intValue;
205}
206
207// Returns the NetId that a given UID would use if no network is explicitly selected. Specifically,
208// the VPN that applies to the UID if any; otherwise, the default network.
209unsigned NetworkController::getNetworkForUser(uid_t uid) const {
210 android::RWLock::AutoRLock lock(mRWLock);
211 if (VirtualNetwork* virtualNetwork = getVirtualNetworkForUserLocked(uid)) {
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700212 return virtualNetwork->getNetId();
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500213 }
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700214 return mDefaultNetId;
215}
216
217// Returns the NetId that will be set when a socket connect()s. This is the bypassable VPN that
218// applies to the user if any; otherwise, the default network.
219//
220// In general, we prefer to always set the default network's NetId in connect(), so that if the VPN
221// is a split-tunnel and disappears later, the socket continues working (since the default network's
222// NetId is still valid). Secure VPNs will correctly grab the socket's traffic since they have a
223// high-priority routing rule that doesn't care what NetId the socket has.
224//
225// But bypassable VPNs have a very low priority rule, so we need to mark the socket with the
226// bypassable VPN's NetId if we expect it to get any traffic at all. If the bypassable VPN is a
227// split-tunnel, that's okay, because we have fallthrough rules that will direct the fallthrough
228// traffic to the default network. But it does mean that if the bypassable VPN goes away (and thus
229// the fallthrough rules also go away), the socket that used to fallthrough to the default network
230// will stop working.
231unsigned NetworkController::getNetworkForConnect(uid_t uid) const {
232 android::RWLock::AutoRLock lock(mRWLock);
233 VirtualNetwork* virtualNetwork = getVirtualNetworkForUserLocked(uid);
234 if (virtualNetwork && !virtualNetwork->isSecure()) {
235 return virtualNetwork->getNetId();
236 }
237 return mDefaultNetId;
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500238}
239
Erik Klinecea2d342015-06-25 18:24:46 +0900240void NetworkController::getNetworkContext(
241 unsigned netId, uid_t uid, struct android_net_context* netcontext) const {
242 struct android_net_context nc = {
243 .app_netid = netId,
244 .app_mark = MARK_UNSET,
245 .dns_netid = netId,
246 .dns_mark = MARK_UNSET,
247 .uid = uid,
248 };
249
Erik Kline492ca5b2016-03-09 14:56:00 +0900250 // |netId| comes directly (via dnsproxyd) from the value returned by netIdForResolv() in the
251 // client process. This value is nonzero iff.:
252 //
253 // 1. The app specified a netid/nethandle to a DNS resolution method such as:
254 // - [Java] android.net.Network#getAllByName()
255 // - [C/++] android_getaddrinfofornetwork()
256 // 2. The app specified a netid/nethandle to be used as a process default via:
257 // - [Java] android.net.ConnectivityManager#bindProcessToNetwork()
258 // - [C/++] android_setprocnetwork()
259 // 3. The app called android.net.ConnectivityManager#startUsingNetworkFeature().
260 //
261 // In all these cases (with the possible exception of #3), the right thing to do is to treat
262 // such cases as explicitlySelected.
263 const bool explicitlySelected = (nc.app_netid != NETID_UNSET);
264 if (!explicitlySelected) {
Erik Klinecea2d342015-06-25 18:24:46 +0900265 nc.app_netid = getNetworkForConnect(uid);
266 }
Erik Kline492ca5b2016-03-09 14:56:00 +0900267
Erik Klinecea2d342015-06-25 18:24:46 +0900268 Fwmark fwmark;
269 fwmark.netId = nc.app_netid;
Erik Kline492ca5b2016-03-09 14:56:00 +0900270 fwmark.explicitlySelected = explicitlySelected;
271 fwmark.protectedFromVpn = canProtect(uid);
272 fwmark.permission = getPermissionForUser(uid);
Erik Klinecea2d342015-06-25 18:24:46 +0900273 nc.app_mark = fwmark.intValue;
274
275 nc.dns_mark = getNetworkForDns(&(nc.dns_netid), uid);
276
277 if (netcontext) {
278 *netcontext = nc;
279 }
280}
281
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700282unsigned NetworkController::getNetworkForInterface(const char* interface) const {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700283 android::RWLock::AutoRLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700284 for (const auto& entry : mNetworks) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700285 if (entry.second->hasInterface(interface)) {
286 return entry.first;
287 }
288 }
Paul Jensen35c77e32014-04-10 14:57:54 -0400289 return NETID_UNSET;
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500290}
291
Sreeram Ramachandran070b2d22014-07-11 17:06:12 -0700292bool NetworkController::isVirtualNetwork(unsigned netId) const {
293 android::RWLock::AutoRLock lock(mRWLock);
294 Network* network = getNetworkLocked(netId);
295 return network && network->getType() == Network::VIRTUAL;
296}
297
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700298int NetworkController::createPhysicalNetwork(unsigned netId, Permission permission) {
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -0700299 if (!((MIN_NET_ID <= netId && netId <= MAX_NET_ID) ||
300 (MIN_OEM_ID <= netId && netId <= MAX_OEM_ID))) {
Paul Jensenae37e8a2014-04-28 10:35:51 -0400301 ALOGE("invalid netId %u", netId);
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900302 return -EINVAL;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700303 }
304
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700305 if (isValidNetwork(netId)) {
306 ALOGE("duplicate netId %u", netId);
307 return -EEXIST;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700308 }
309
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700310 PhysicalNetwork* physicalNetwork = new PhysicalNetwork(netId, mDelegateImpl);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700311 if (int ret = physicalNetwork->setPermission(permission)) {
312 ALOGE("inconceivable! setPermission cannot fail on an empty network");
313 delete physicalNetwork;
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900314 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700315 }
316
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700317 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700318 mNetworks[netId] = physicalNetwork;
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900319 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700320}
321
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700322int NetworkController::createVirtualNetwork(unsigned netId, bool hasDns, bool secure) {
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -0700323 if (!(MIN_NET_ID <= netId && netId <= MAX_NET_ID)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700324 ALOGE("invalid netId %u", netId);
325 return -EINVAL;
326 }
327
328 if (isValidNetwork(netId)) {
329 ALOGE("duplicate netId %u", netId);
330 return -EEXIST;
331 }
332
333 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700334 if (int ret = modifyFallthroughLocked(netId, true)) {
335 return ret;
336 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700337 mNetworks[netId] = new VirtualNetwork(netId, hasDns, secure);
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700338 return 0;
339}
340
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700341int NetworkController::destroyNetwork(unsigned netId) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900342 if (netId == LOCAL_NET_ID) {
343 ALOGE("cannot destroy local network");
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700344 return -EINVAL;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700345 }
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900346 if (!isValidNetwork(netId)) {
347 ALOGE("no such netId %u", netId);
348 return -ENONET;
349 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700350
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700351 // TODO: ioctl(SIOCKILLADDR, ...) to kill all sockets on the old network.
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700352
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700353 android::RWLock::AutoWLock lock(mRWLock);
354 Network* network = getNetworkLocked(netId);
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900355
356 // If we fail to destroy a network, things will get stuck badly. Therefore, unlike most of the
357 // other network code, ignore failures and attempt to clear out as much state as possible, even
358 // if we hit an error on the way. Return the first error that we see.
359 int ret = network->clearInterfaces();
360
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700361 if (mDefaultNetId == netId) {
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900362 if (int err = static_cast<PhysicalNetwork*>(network)->removeAsDefault()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700363 ALOGE("inconceivable! removeAsDefault cannot fail on an empty network");
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900364 if (!ret) {
365 ret = err;
366 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700367 }
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700368 mDefaultNetId = NETID_UNSET;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700369 } else if (network->getType() == Network::VIRTUAL) {
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900370 if (int err = modifyFallthroughLocked(netId, false)) {
371 if (!ret) {
372 ret = err;
373 }
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700374 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700375 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700376 mNetworks.erase(netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700377 delete network;
Sreeram Ramachandran3ced0692014-04-18 09:49:13 -0700378 _resolv_delete_cache_for_net(netId);
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900379 return ret;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700380}
381
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700382int NetworkController::addInterfaceToNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran72604072014-05-21 13:19:43 -0700383 if (!isValidNetwork(netId)) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900384 ALOGE("no such netId %u", netId);
385 return -ENONET;
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700386 }
387
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700388 unsigned existingNetId = getNetworkForInterface(interface);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700389 if (existingNetId != NETID_UNSET && existingNetId != netId) {
390 ALOGE("interface %s already assigned to netId %u", interface, existingNetId);
391 return -EBUSY;
392 }
393
394 android::RWLock::AutoWLock lock(mRWLock);
395 return getNetworkLocked(netId)->addInterface(interface);
396}
397
398int NetworkController::removeInterfaceFromNetwork(unsigned netId, const char* interface) {
399 if (!isValidNetwork(netId)) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900400 ALOGE("no such netId %u", netId);
401 return -ENONET;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700402 }
403
404 android::RWLock::AutoWLock lock(mRWLock);
405 return getNetworkLocked(netId)->removeInterface(interface);
406}
407
408Permission NetworkController::getPermissionForUser(uid_t uid) const {
409 android::RWLock::AutoRLock lock(mRWLock);
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700410 return getPermissionForUserLocked(uid);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700411}
412
413void NetworkController::setPermissionForUsers(Permission permission,
414 const std::vector<uid_t>& uids) {
415 android::RWLock::AutoWLock lock(mRWLock);
416 for (uid_t uid : uids) {
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700417 mUsers[uid] = permission;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700418 }
419}
420
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900421int NetworkController::checkUserNetworkAccess(uid_t uid, unsigned netId) const {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700422 android::RWLock::AutoRLock lock(mRWLock);
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900423 return checkUserNetworkAccessLocked(uid, netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700424}
425
426int NetworkController::setPermissionForNetworks(Permission permission,
427 const std::vector<unsigned>& netIds) {
428 android::RWLock::AutoWLock lock(mRWLock);
429 for (unsigned netId : netIds) {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700430 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900431 if (!network) {
432 ALOGE("no such netId %u", netId);
433 return -ENONET;
434 }
435 if (network->getType() != Network::PHYSICAL) {
436 ALOGE("cannot set permissions on non-physical network with netId %u", netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700437 return -EINVAL;
438 }
439
440 // TODO: ioctl(SIOCKILLADDR, ...) to kill socets on the network that don't have permission.
441
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700442 if (int ret = static_cast<PhysicalNetwork*>(network)->setPermission(permission)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700443 return ret;
444 }
445 }
446 return 0;
447}
448
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700449int NetworkController::addUsersToNetwork(unsigned netId, const UidRanges& uidRanges) {
450 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700451 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900452 if (!network) {
453 ALOGE("no such netId %u", netId);
454 return -ENONET;
455 }
456 if (network->getType() != Network::VIRTUAL) {
457 ALOGE("cannot add users to non-virtual network with netId %u", netId);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700458 return -EINVAL;
459 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700460 if (int ret = static_cast<VirtualNetwork*>(network)->addUsers(uidRanges)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700461 return ret;
462 }
463 return 0;
464}
465
466int NetworkController::removeUsersFromNetwork(unsigned netId, const UidRanges& uidRanges) {
467 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700468 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900469 if (!network) {
470 ALOGE("no such netId %u", netId);
471 return -ENONET;
472 }
473 if (network->getType() != Network::VIRTUAL) {
474 ALOGE("cannot remove users from non-virtual network with netId %u", netId);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700475 return -EINVAL;
476 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700477 if (int ret = static_cast<VirtualNetwork*>(network)->removeUsers(uidRanges)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700478 return ret;
479 }
480 return 0;
481}
482
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700483int NetworkController::addRoute(unsigned netId, const char* interface, const char* destination,
484 const char* nexthop, bool legacy, uid_t uid) {
485 return modifyRoute(netId, interface, destination, nexthop, true, legacy, uid);
486}
487
488int NetworkController::removeRoute(unsigned netId, const char* interface, const char* destination,
489 const char* nexthop, bool legacy, uid_t uid) {
490 return modifyRoute(netId, interface, destination, nexthop, false, legacy, uid);
491}
492
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700493bool NetworkController::canProtect(uid_t uid) const {
494 android::RWLock::AutoRLock lock(mRWLock);
495 return ((getPermissionForUserLocked(uid) & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) ||
496 mProtectableUsers.find(uid) != mProtectableUsers.end();
497}
498
Sreeram Ramachandran89dad012014-07-02 10:09:49 -0700499void NetworkController::allowProtect(const std::vector<uid_t>& uids) {
500 android::RWLock::AutoWLock lock(mRWLock);
501 mProtectableUsers.insert(uids.begin(), uids.end());
502}
503
504void NetworkController::denyProtect(const std::vector<uid_t>& uids) {
505 android::RWLock::AutoWLock lock(mRWLock);
506 for (uid_t uid : uids) {
507 mProtectableUsers.erase(uid);
508 }
509}
510
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700511bool NetworkController::isValidNetwork(unsigned netId) const {
512 android::RWLock::AutoRLock lock(mRWLock);
513 return getNetworkLocked(netId);
514}
515
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700516Network* NetworkController::getNetworkLocked(unsigned netId) const {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700517 auto iter = mNetworks.find(netId);
518 return iter == mNetworks.end() ? NULL : iter->second;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700519}
520
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700521VirtualNetwork* NetworkController::getVirtualNetworkForUserLocked(uid_t uid) const {
522 for (const auto& entry : mNetworks) {
523 if (entry.second->getType() == Network::VIRTUAL) {
524 VirtualNetwork* virtualNetwork = static_cast<VirtualNetwork*>(entry.second);
525 if (virtualNetwork->appliesToUser(uid)) {
526 return virtualNetwork;
527 }
528 }
529 }
530 return NULL;
531}
532
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700533Permission NetworkController::getPermissionForUserLocked(uid_t uid) const {
534 auto iter = mUsers.find(uid);
535 if (iter != mUsers.end()) {
536 return iter->second;
537 }
538 return uid < FIRST_APPLICATION_UID ? PERMISSION_SYSTEM : PERMISSION_NONE;
539}
540
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900541int NetworkController::checkUserNetworkAccessLocked(uid_t uid, unsigned netId) const {
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700542 Network* network = getNetworkLocked(netId);
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900543 if (!network) {
544 return -ENONET;
545 }
546
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700547 // If uid is INVALID_UID, this likely means that we were unable to retrieve the UID of the peer
548 // (using SO_PEERCRED). Be safe and deny access to the network, even if it's valid.
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900549 if (uid == INVALID_UID) {
550 return -EREMOTEIO;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700551 }
552 Permission userPermission = getPermissionForUserLocked(uid);
553 if ((userPermission & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900554 return 0;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700555 }
556 if (network->getType() == Network::VIRTUAL) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900557 return static_cast<VirtualNetwork*>(network)->appliesToUser(uid) ? 0 : -EPERM;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700558 }
559 VirtualNetwork* virtualNetwork = getVirtualNetworkForUserLocked(uid);
560 if (virtualNetwork && virtualNetwork->isSecure() &&
561 mProtectableUsers.find(uid) == mProtectableUsers.end()) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900562 return -EPERM;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700563 }
564 Permission networkPermission = static_cast<PhysicalNetwork*>(network)->getPermission();
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900565 return ((userPermission & networkPermission) == networkPermission) ? 0 : -EACCES;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700566}
567
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700568int NetworkController::modifyRoute(unsigned netId, const char* interface, const char* destination,
569 const char* nexthop, bool add, bool legacy, uid_t uid) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900570 if (!isValidNetwork(netId)) {
571 ALOGE("no such netId %u", netId);
572 return -ENONET;
573 }
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700574 unsigned existingNetId = getNetworkForInterface(interface);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900575 if (existingNetId == NETID_UNSET) {
576 ALOGE("interface %s not assigned to any netId", interface);
577 return -ENODEV;
578 }
579 if (existingNetId != netId) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700580 ALOGE("interface %s assigned to netId %u, not %u", interface, existingNetId, netId);
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900581 return -ENOENT;
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700582 }
583
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700584 RouteController::TableType tableType;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700585 if (netId == LOCAL_NET_ID) {
586 tableType = RouteController::LOCAL_NETWORK;
587 } else if (legacy) {
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700588 if ((getPermissionForUser(uid) & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700589 tableType = RouteController::LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700590 } else {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700591 tableType = RouteController::LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700592 }
593 } else {
594 tableType = RouteController::INTERFACE;
595 }
596
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700597 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
598 RouteController::removeRoute(interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700599}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700600
601int NetworkController::modifyFallthroughLocked(unsigned vpnNetId, bool add) {
602 if (mDefaultNetId == NETID_UNSET) {
603 return 0;
604 }
605 Network* network = getNetworkLocked(mDefaultNetId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900606 if (!network) {
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700607 ALOGE("cannot find previously set default network with netId %u", mDefaultNetId);
608 return -ESRCH;
609 }
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900610 if (network->getType() != Network::PHYSICAL) {
611 ALOGE("inconceivable! default network must be a physical network");
612 return -EINVAL;
613 }
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700614 Permission permission = static_cast<PhysicalNetwork*>(network)->getPermission();
615 for (const auto& physicalInterface : network->getInterfaces()) {
616 if (int ret = mDelegateImpl->modifyFallthrough(vpnNetId, physicalInterface, permission,
617 add)) {
618 return ret;
619 }
620 }
621 return 0;
622}