blob: 93a07638445a5b86ada011cfa99877ca06a647b3 [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
250 if (nc.app_netid == NETID_UNSET) {
251 nc.app_netid = getNetworkForConnect(uid);
252 }
253 Fwmark fwmark;
254 fwmark.netId = nc.app_netid;
255 nc.app_mark = fwmark.intValue;
256
257 nc.dns_mark = getNetworkForDns(&(nc.dns_netid), uid);
258
259 if (netcontext) {
260 *netcontext = nc;
261 }
262}
263
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700264unsigned NetworkController::getNetworkForInterface(const char* interface) const {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700265 android::RWLock::AutoRLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700266 for (const auto& entry : mNetworks) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700267 if (entry.second->hasInterface(interface)) {
268 return entry.first;
269 }
270 }
Paul Jensen35c77e32014-04-10 14:57:54 -0400271 return NETID_UNSET;
Szymon Jakubczaka0efaec2014-02-14 17:09:43 -0500272}
273
Sreeram Ramachandran070b2d22014-07-11 17:06:12 -0700274bool NetworkController::isVirtualNetwork(unsigned netId) const {
275 android::RWLock::AutoRLock lock(mRWLock);
276 Network* network = getNetworkLocked(netId);
277 return network && network->getType() == Network::VIRTUAL;
278}
279
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700280int NetworkController::createPhysicalNetwork(unsigned netId, Permission permission) {
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -0700281 if (!((MIN_NET_ID <= netId && netId <= MAX_NET_ID) ||
282 (MIN_OEM_ID <= netId && netId <= MAX_OEM_ID))) {
Paul Jensenae37e8a2014-04-28 10:35:51 -0400283 ALOGE("invalid netId %u", netId);
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900284 return -EINVAL;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700285 }
286
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700287 if (isValidNetwork(netId)) {
288 ALOGE("duplicate netId %u", netId);
289 return -EEXIST;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700290 }
291
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700292 PhysicalNetwork* physicalNetwork = new PhysicalNetwork(netId, mDelegateImpl);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700293 if (int ret = physicalNetwork->setPermission(permission)) {
294 ALOGE("inconceivable! setPermission cannot fail on an empty network");
295 delete physicalNetwork;
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900296 return ret;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700297 }
298
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700299 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700300 mNetworks[netId] = physicalNetwork;
Lorenzo Colitti96f261e2014-06-23 15:09:54 +0900301 return 0;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700302}
303
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700304int NetworkController::createVirtualNetwork(unsigned netId, bool hasDns, bool secure) {
Sreeram Ramachandranbbdde992014-09-05 16:05:03 -0700305 if (!(MIN_NET_ID <= netId && netId <= MAX_NET_ID)) {
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700306 ALOGE("invalid netId %u", netId);
307 return -EINVAL;
308 }
309
310 if (isValidNetwork(netId)) {
311 ALOGE("duplicate netId %u", netId);
312 return -EEXIST;
313 }
314
315 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700316 if (int ret = modifyFallthroughLocked(netId, true)) {
317 return ret;
318 }
Sreeram Ramachandran95684ba2014-07-23 13:27:31 -0700319 mNetworks[netId] = new VirtualNetwork(netId, hasDns, secure);
Sreeram Ramachandran4043f012014-06-23 12:41:37 -0700320 return 0;
321}
322
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700323int NetworkController::destroyNetwork(unsigned netId) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900324 if (netId == LOCAL_NET_ID) {
325 ALOGE("cannot destroy local network");
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700326 return -EINVAL;
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700327 }
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900328 if (!isValidNetwork(netId)) {
329 ALOGE("no such netId %u", netId);
330 return -ENONET;
331 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700332
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700333 // TODO: ioctl(SIOCKILLADDR, ...) to kill all sockets on the old network.
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700334
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700335 android::RWLock::AutoWLock lock(mRWLock);
336 Network* network = getNetworkLocked(netId);
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900337
338 // If we fail to destroy a network, things will get stuck badly. Therefore, unlike most of the
339 // other network code, ignore failures and attempt to clear out as much state as possible, even
340 // if we hit an error on the way. Return the first error that we see.
341 int ret = network->clearInterfaces();
342
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700343 if (mDefaultNetId == netId) {
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900344 if (int err = static_cast<PhysicalNetwork*>(network)->removeAsDefault()) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700345 ALOGE("inconceivable! removeAsDefault cannot fail on an empty network");
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900346 if (!ret) {
347 ret = err;
348 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700349 }
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700350 mDefaultNetId = NETID_UNSET;
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700351 } else if (network->getType() == Network::VIRTUAL) {
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900352 if (int err = modifyFallthroughLocked(netId, false)) {
353 if (!ret) {
354 ret = err;
355 }
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700356 }
Sreeram Ramachandran5c181bf2014-04-07 14:10:04 -0700357 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700358 mNetworks.erase(netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700359 delete network;
Sreeram Ramachandran3ced0692014-04-18 09:49:13 -0700360 _resolv_delete_cache_for_net(netId);
Lorenzo Colitti99286fe2014-08-12 15:08:00 +0900361 return ret;
Sreeram Ramachandran379bd332014-04-10 19:58:06 -0700362}
363
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700364int NetworkController::addInterfaceToNetwork(unsigned netId, const char* interface) {
Sreeram Ramachandran72604072014-05-21 13:19:43 -0700365 if (!isValidNetwork(netId)) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900366 ALOGE("no such netId %u", netId);
367 return -ENONET;
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700368 }
369
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700370 unsigned existingNetId = getNetworkForInterface(interface);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700371 if (existingNetId != NETID_UNSET && existingNetId != netId) {
372 ALOGE("interface %s already assigned to netId %u", interface, existingNetId);
373 return -EBUSY;
374 }
375
376 android::RWLock::AutoWLock lock(mRWLock);
377 return getNetworkLocked(netId)->addInterface(interface);
378}
379
380int NetworkController::removeInterfaceFromNetwork(unsigned netId, const char* interface) {
381 if (!isValidNetwork(netId)) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900382 ALOGE("no such netId %u", netId);
383 return -ENONET;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700384 }
385
386 android::RWLock::AutoWLock lock(mRWLock);
387 return getNetworkLocked(netId)->removeInterface(interface);
388}
389
390Permission NetworkController::getPermissionForUser(uid_t uid) const {
391 android::RWLock::AutoRLock lock(mRWLock);
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700392 return getPermissionForUserLocked(uid);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700393}
394
395void NetworkController::setPermissionForUsers(Permission permission,
396 const std::vector<uid_t>& uids) {
397 android::RWLock::AutoWLock lock(mRWLock);
398 for (uid_t uid : uids) {
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700399 mUsers[uid] = permission;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700400 }
401}
402
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900403int NetworkController::checkUserNetworkAccess(uid_t uid, unsigned netId) const {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700404 android::RWLock::AutoRLock lock(mRWLock);
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900405 return checkUserNetworkAccessLocked(uid, netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700406}
407
408int NetworkController::setPermissionForNetworks(Permission permission,
409 const std::vector<unsigned>& netIds) {
410 android::RWLock::AutoWLock lock(mRWLock);
411 for (unsigned netId : netIds) {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700412 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900413 if (!network) {
414 ALOGE("no such netId %u", netId);
415 return -ENONET;
416 }
417 if (network->getType() != Network::PHYSICAL) {
418 ALOGE("cannot set permissions on non-physical network with netId %u", netId);
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700419 return -EINVAL;
420 }
421
422 // TODO: ioctl(SIOCKILLADDR, ...) to kill socets on the network that don't have permission.
423
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700424 if (int ret = static_cast<PhysicalNetwork*>(network)->setPermission(permission)) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700425 return ret;
426 }
427 }
428 return 0;
429}
430
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700431int NetworkController::addUsersToNetwork(unsigned netId, const UidRanges& uidRanges) {
432 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700433 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900434 if (!network) {
435 ALOGE("no such netId %u", netId);
436 return -ENONET;
437 }
438 if (network->getType() != Network::VIRTUAL) {
439 ALOGE("cannot add users to non-virtual network with netId %u", netId);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700440 return -EINVAL;
441 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700442 if (int ret = static_cast<VirtualNetwork*>(network)->addUsers(uidRanges)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700443 return ret;
444 }
445 return 0;
446}
447
448int NetworkController::removeUsersFromNetwork(unsigned netId, const UidRanges& uidRanges) {
449 android::RWLock::AutoWLock lock(mRWLock);
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700450 Network* network = getNetworkLocked(netId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900451 if (!network) {
452 ALOGE("no such netId %u", netId);
453 return -ENONET;
454 }
455 if (network->getType() != Network::VIRTUAL) {
456 ALOGE("cannot remove users from non-virtual network with netId %u", netId);
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700457 return -EINVAL;
458 }
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700459 if (int ret = static_cast<VirtualNetwork*>(network)->removeUsers(uidRanges)) {
Sreeram Ramachandranb1425cc2014-06-23 18:54:27 -0700460 return ret;
461 }
462 return 0;
463}
464
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700465int NetworkController::addRoute(unsigned netId, const char* interface, const char* destination,
466 const char* nexthop, bool legacy, uid_t uid) {
467 return modifyRoute(netId, interface, destination, nexthop, true, legacy, uid);
468}
469
470int NetworkController::removeRoute(unsigned netId, const char* interface, const char* destination,
471 const char* nexthop, bool legacy, uid_t uid) {
472 return modifyRoute(netId, interface, destination, nexthop, false, legacy, uid);
473}
474
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700475bool NetworkController::canProtect(uid_t uid) const {
476 android::RWLock::AutoRLock lock(mRWLock);
477 return ((getPermissionForUserLocked(uid) & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) ||
478 mProtectableUsers.find(uid) != mProtectableUsers.end();
479}
480
Sreeram Ramachandran89dad012014-07-02 10:09:49 -0700481void NetworkController::allowProtect(const std::vector<uid_t>& uids) {
482 android::RWLock::AutoWLock lock(mRWLock);
483 mProtectableUsers.insert(uids.begin(), uids.end());
484}
485
486void NetworkController::denyProtect(const std::vector<uid_t>& uids) {
487 android::RWLock::AutoWLock lock(mRWLock);
488 for (uid_t uid : uids) {
489 mProtectableUsers.erase(uid);
490 }
491}
492
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700493bool NetworkController::isValidNetwork(unsigned netId) const {
494 android::RWLock::AutoRLock lock(mRWLock);
495 return getNetworkLocked(netId);
496}
497
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700498Network* NetworkController::getNetworkLocked(unsigned netId) const {
Sreeram Ramachandran36ed53e2014-07-01 19:01:56 -0700499 auto iter = mNetworks.find(netId);
500 return iter == mNetworks.end() ? NULL : iter->second;
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700501}
502
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700503VirtualNetwork* NetworkController::getVirtualNetworkForUserLocked(uid_t uid) const {
504 for (const auto& entry : mNetworks) {
505 if (entry.second->getType() == Network::VIRTUAL) {
506 VirtualNetwork* virtualNetwork = static_cast<VirtualNetwork*>(entry.second);
507 if (virtualNetwork->appliesToUser(uid)) {
508 return virtualNetwork;
509 }
510 }
511 }
512 return NULL;
513}
514
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700515Permission NetworkController::getPermissionForUserLocked(uid_t uid) const {
516 auto iter = mUsers.find(uid);
517 if (iter != mUsers.end()) {
518 return iter->second;
519 }
520 return uid < FIRST_APPLICATION_UID ? PERMISSION_SYSTEM : PERMISSION_NONE;
521}
522
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900523int NetworkController::checkUserNetworkAccessLocked(uid_t uid, unsigned netId) const {
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700524 Network* network = getNetworkLocked(netId);
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900525 if (!network) {
526 return -ENONET;
527 }
528
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700529 // If uid is INVALID_UID, this likely means that we were unable to retrieve the UID of the peer
530 // (using SO_PEERCRED). Be safe and deny access to the network, even if it's valid.
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900531 if (uid == INVALID_UID) {
532 return -EREMOTEIO;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700533 }
534 Permission userPermission = getPermissionForUserLocked(uid);
535 if ((userPermission & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900536 return 0;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700537 }
538 if (network->getType() == Network::VIRTUAL) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900539 return static_cast<VirtualNetwork*>(network)->appliesToUser(uid) ? 0 : -EPERM;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700540 }
541 VirtualNetwork* virtualNetwork = getVirtualNetworkForUserLocked(uid);
542 if (virtualNetwork && virtualNetwork->isSecure() &&
543 mProtectableUsers.find(uid) == mProtectableUsers.end()) {
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900544 return -EPERM;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700545 }
546 Permission networkPermission = static_cast<PhysicalNetwork*>(network)->getPermission();
Lorenzo Colittia1067c82014-10-02 22:47:41 +0900547 return ((userPermission & networkPermission) == networkPermission) ? 0 : -EACCES;
Sreeram Ramachandran1011b492014-07-24 19:04:32 -0700548}
549
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700550int NetworkController::modifyRoute(unsigned netId, const char* interface, const char* destination,
551 const char* nexthop, bool add, bool legacy, uid_t uid) {
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900552 if (!isValidNetwork(netId)) {
553 ALOGE("no such netId %u", netId);
554 return -ENONET;
555 }
Sreeram Ramachandrane09b20a2014-07-05 17:15:14 -0700556 unsigned existingNetId = getNetworkForInterface(interface);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900557 if (existingNetId == NETID_UNSET) {
558 ALOGE("interface %s not assigned to any netId", interface);
559 return -ENODEV;
560 }
561 if (existingNetId != netId) {
Sreeram Ramachandranf4f6c8d2014-06-23 09:54:06 -0700562 ALOGE("interface %s assigned to netId %u, not %u", interface, existingNetId, netId);
Lorenzo Colittif7fc8ec2014-06-18 00:41:58 +0900563 return -ENOENT;
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700564 }
565
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700566 RouteController::TableType tableType;
Sreeram Ramachandran87475a12014-07-15 16:20:28 -0700567 if (netId == LOCAL_NET_ID) {
568 tableType = RouteController::LOCAL_NETWORK;
569 } else if (legacy) {
Sreeram Ramachandraned4bd1f2014-07-05 12:31:05 -0700570 if ((getPermissionForUser(uid) & PERMISSION_SYSTEM) == PERMISSION_SYSTEM) {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700571 tableType = RouteController::LEGACY_SYSTEM;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700572 } else {
Sreeram Ramachandran5009d5e2014-07-03 12:20:48 -0700573 tableType = RouteController::LEGACY_NETWORK;
Sreeram Ramachandran38b7af12014-05-22 14:21:49 -0700574 }
575 } else {
576 tableType = RouteController::INTERFACE;
577 }
578
Sreeram Ramachandraneb27b7e2014-07-01 14:30:30 -0700579 return add ? RouteController::addRoute(interface, destination, nexthop, tableType) :
580 RouteController::removeRoute(interface, destination, nexthop, tableType);
Sreeram Ramachandran7619e1b2014-04-15 14:23:08 -0700581}
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700582
583int NetworkController::modifyFallthroughLocked(unsigned vpnNetId, bool add) {
584 if (mDefaultNetId == NETID_UNSET) {
585 return 0;
586 }
587 Network* network = getNetworkLocked(mDefaultNetId);
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900588 if (!network) {
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700589 ALOGE("cannot find previously set default network with netId %u", mDefaultNetId);
590 return -ESRCH;
591 }
Lorenzo Colitti738c93e2014-07-30 17:46:08 +0900592 if (network->getType() != Network::PHYSICAL) {
593 ALOGE("inconceivable! default network must be a physical network");
594 return -EINVAL;
595 }
Sreeram Ramachandran48e19b02014-07-22 22:23:20 -0700596 Permission permission = static_cast<PhysicalNetwork*>(network)->getPermission();
597 for (const auto& physicalInterface : network->getInterfaces()) {
598 if (int ret = mDelegateImpl->modifyFallthrough(vpnNetId, physicalInterface, permission,
599 add)) {
600 return ret;
601 }
602 }
603 return 0;
604}