blob: cd4ce2d142bb54fe52cca4d349b038b4abf87428 [file] [log] [blame]
Robert Greenwalt7b816022014-04-18 15:25:25 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.connectivity;
18
Paul Jensenca8f16a2014-05-09 12:47:55 -040019import android.content.Context;
Lorenzo Colitti9307ca22019-01-12 01:54:23 +090020import android.net.INetd;
Remi NGUYEN VANe67b0c32018-12-27 16:43:56 +090021import android.net.INetworkMonitor;
Robert Greenwalt7b816022014-04-18 15:25:25 -070022import android.net.LinkProperties;
23import android.net.Network;
24import android.net.NetworkCapabilities;
25import android.net.NetworkInfo;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -070026import android.net.NetworkMisc;
Robert Greenwalt7b816022014-04-18 15:25:25 -070027import android.net.NetworkRequest;
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -060028import android.net.NetworkState;
Paul Jensenca8f16a2014-05-09 12:47:55 -040029import android.os.Handler;
Hugo Benichief502882017-09-01 01:23:32 +000030import android.os.INetworkManagementService;
Robert Greenwalt7b816022014-04-18 15:25:25 -070031import android.os.Messenger;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +090032import android.os.SystemClock;
33import android.util.Log;
Robert Greenwalt7b816022014-04-18 15:25:25 -070034import android.util.SparseArray;
35
36import com.android.internal.util.AsyncChannel;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +090037import com.android.internal.util.WakeupMessage;
Paul Jensencf4c2c62015-07-01 14:16:32 -040038import com.android.server.ConnectivityService;
Robert Greenwalt7b816022014-04-18 15:25:25 -070039
Lorenzo Colittib57578ca2016-07-01 01:53:25 +090040import java.io.PrintWriter;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +090041import java.util.Objects;
42import java.util.SortedSet;
43import java.util.TreeSet;
Robert Greenwalt7b816022014-04-18 15:25:25 -070044
45/**
46 * A bag class used by ConnectivityService for holding a collection of most recent
47 * information published by a particular NetworkAgent as well as the
48 * AsyncChannel/messenger for reaching that NetworkAgent and lists of NetworkRequests
Paul Jensen85cf78e2015-06-25 13:25:07 -040049 * interested in using it. Default sort order is descending by score.
Robert Greenwalt7b816022014-04-18 15:25:25 -070050 */
Paul Jensene0988542015-06-25 15:30:08 -040051// States of a network:
52// --------------------
53// 1. registered, uncreated, disconnected, unvalidated
54// This state is entered when a NetworkFactory registers a NetworkAgent in any state except
55// the CONNECTED state.
Robin Lee585e2482016-05-01 23:00:00 +010056// 2. registered, uncreated, connecting, unvalidated
57// This state is entered when a registered NetworkAgent for a VPN network transitions to the
58// CONNECTING state (TODO: go through this state for every network, not just VPNs).
59// ConnectivityService will tell netd to create the network early in order to add extra UID
60// routing rules referencing the netID. These rules need to be in place before the network is
61// connected to avoid racing against client apps trying to connect to a half-setup network.
62// 3. registered, uncreated, connected, unvalidated
63// This state is entered when a registered NetworkAgent transitions to the CONNECTED state.
64// ConnectivityService will tell netd to create the network if it was not already created, and
65// immediately transition to state #4.
66// 4. registered, created, connected, unvalidated
Paul Jensencf4c2c62015-07-01 14:16:32 -040067// If this network can satisfy the default NetworkRequest, then NetworkMonitor will
Paul Jensene0988542015-06-25 15:30:08 -040068// probe for Internet connectivity.
69// If this network cannot satisfy the default NetworkRequest, it will immediately be
Robin Lee585e2482016-05-01 23:00:00 +010070// transitioned to state #5.
Paul Jensene0988542015-06-25 15:30:08 -040071// A network may remain in this state if NetworkMonitor fails to find Internet connectivity,
72// for example:
73// a. a captive portal is present, or
74// b. a WiFi router whose Internet backhaul is down, or
75// c. a wireless connection stops transfering packets temporarily (e.g. device is in elevator
76// or tunnel) but does not disconnect from the AP/cell tower, or
77// d. a stand-alone device offering a WiFi AP without an uplink for configuration purposes.
Robin Lee585e2482016-05-01 23:00:00 +010078// 5. registered, created, connected, validated
Paul Jensene0988542015-06-25 15:30:08 -040079//
80// The device's default network connection:
81// ----------------------------------------
Robin Lee585e2482016-05-01 23:00:00 +010082// Networks in states #4 and #5 may be used as a device's default network connection if they
Paul Jensene0988542015-06-25 15:30:08 -040083// satisfy the default NetworkRequest.
Robin Lee585e2482016-05-01 23:00:00 +010084// A network, that satisfies the default NetworkRequest, in state #5 should always be chosen
85// in favor of a network, that satisfies the default NetworkRequest, in state #4.
Paul Jensene0988542015-06-25 15:30:08 -040086// When deciding between two networks, that both satisfy the default NetworkRequest, to select
87// for the default network connection, the one with the higher score should be chosen.
88//
89// When a network disconnects:
90// ---------------------------
91// If a network's transport disappears, for example:
92// a. WiFi turned off, or
93// b. cellular data turned off, or
94// c. airplane mode is turned on, or
95// d. a wireless connection disconnects from AP/cell tower entirely (e.g. device is out of range
96// of AP for an extended period of time, or switches to another AP without roaming)
Robin Lee585e2482016-05-01 23:00:00 +010097// then that network can transition from any state (#1-#5) to unregistered. This happens by
Paul Jensene0988542015-06-25 15:30:08 -040098// the transport disconnecting their NetworkAgent's AsyncChannel with ConnectivityManager.
99// ConnectivityService also tells netd to destroy the network.
100//
101// When ConnectivityService disconnects a network:
102// -----------------------------------------------
103// If a network has no chance of satisfying any requests (even if it were to become validated
Robin Lee585e2482016-05-01 23:00:00 +0100104// and enter state #5), ConnectivityService will disconnect the NetworkAgent's AsyncChannel.
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900105//
106// If the network was satisfying a foreground NetworkRequest (i.e. had been the highest scoring that
107// satisfied the NetworkRequest's constraints), but is no longer the highest scoring network for any
108// foreground NetworkRequest, then there will be a 30s pause to allow network communication to be
109// wrapped up rather than abruptly terminated. During this pause the network is said to be
110// "lingering". During this pause if the network begins satisfying a foreground NetworkRequest,
111// ConnectivityService will cancel the future disconnection of the NetworkAgent's AsyncChannel, and
112// the network is no longer considered "lingering". After the linger timer expires, if the network
113// is satisfying one or more background NetworkRequests it is kept up in the background. If it is
114// not, ConnectivityService disconnects the NetworkAgent's AsyncChannel.
Paul Jensen85cf78e2015-06-25 13:25:07 -0400115public class NetworkAgentInfo implements Comparable<NetworkAgentInfo> {
Hugo Benichic8e9e122016-09-14 23:23:08 +0000116
Robert Greenwalt7b816022014-04-18 15:25:25 -0700117 public NetworkInfo networkInfo;
Paul Jensen31a94f42015-02-13 14:18:39 -0500118 // This Network object should always be used if possible, so as to encourage reuse of the
119 // enclosed socket factory and connection pool. Avoid creating other Network objects.
120 // This Network object is always valid.
121 public final Network network;
Robert Greenwalt7b816022014-04-18 15:25:25 -0700122 public LinkProperties linkProperties;
Paul Jensen1c7ba022015-06-16 14:27:36 -0400123 // This should only be modified via ConnectivityService.updateCapabilities().
Robert Greenwalt7b816022014-04-18 15:25:25 -0700124 public NetworkCapabilities networkCapabilities;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700125 public final NetworkMisc networkMisc;
Robin Lee585e2482016-05-01 23:00:00 +0100126 // Indicates if netd has been told to create this Network. From this point on the appropriate
127 // routing rules are setup and routes are added so packets can begin flowing over the Network.
Lorenzo Colittid49159f2015-05-14 23:15:10 +0900128 // This is a sticky bit; once set it is never cleared.
Paul Jenseneec75412014-08-04 12:21:19 -0400129 public boolean created;
Robin Lee585e2482016-05-01 23:00:00 +0100130 // Set to true after the first time this network is marked as CONNECTED. Once set, the network
131 // shows up in API calls, is able to satisfy NetworkRequests and can become the default network.
132 // This is a sticky bit; once set it is never cleared.
133 public boolean everConnected;
Paul Jensen71b645f2014-10-13 14:13:07 -0400134 // Set to true if this Network successfully passed validation or if it did not satisfy the
135 // default NetworkRequest in which case validation will not be attempted.
Lorenzo Colittid49159f2015-05-14 23:15:10 +0900136 // This is a sticky bit; once set it is never cleared even if future validation attempts fail.
Lorenzo Colittid3b8a3e2014-12-17 11:14:42 +0900137 public boolean everValidated;
Paul Jensenca8f16a2014-05-09 12:47:55 -0400138
Lorenzo Colitti7b42f392014-12-17 11:26:49 +0900139 // The result of the last validation attempt on this network (true if validated, false if not).
Lorenzo Colitti7b42f392014-12-17 11:26:49 +0900140 public boolean lastValidated;
141
Lorenzo Colitti165c51c2016-09-19 01:00:19 +0900142 // If true, becoming unvalidated will lower the network's score. This is only meaningful if the
143 // system is configured not to do this for certain networks, e.g., if the
144 // config_networkAvoidBadWifi option is set to 0 and the user has not overridden that via
145 // Settings.Global.NETWORK_AVOID_BAD_WIFI.
146 public boolean avoidUnvalidated;
147
Lorenzo Colittid49159f2015-05-14 23:15:10 +0900148 // Whether a captive portal was ever detected on this network.
149 // This is a sticky bit; once set it is never cleared.
Paul Jensen3d194ea2015-06-16 14:27:36 -0400150 public boolean everCaptivePortalDetected;
151
152 // Whether a captive portal was found during the last network validation attempt.
153 public boolean lastCaptivePortalDetected;
Lorenzo Colittid49159f2015-05-14 23:15:10 +0900154
lucaslind2e045e02019-01-24 15:55:30 +0800155 // Indicates the user was notified of a successful captive portal login since a portal was
156 // last detected.
157 public boolean captivePortalLoginNotified;
158
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900159 // Networks are lingered when they become unneeded as a result of their NetworkRequests being
160 // satisfied by a higher-scoring network. so as to allow communication to wrap up before the
161 // network is taken down. This usually only happens to the default network. Lingering ends with
162 // either the linger timeout expiring and the network being taken down, or the network
163 // satisfying a request again.
164 public static class LingerTimer implements Comparable<LingerTimer> {
165 public final NetworkRequest request;
166 public final long expiryMs;
167
168 public LingerTimer(NetworkRequest request, long expiryMs) {
169 this.request = request;
170 this.expiryMs = expiryMs;
171 }
172 public boolean equals(Object o) {
173 if (!(o instanceof LingerTimer)) return false;
174 LingerTimer other = (LingerTimer) o;
175 return (request.requestId == other.request.requestId) && (expiryMs == other.expiryMs);
176 }
177 public int hashCode() {
178 return Objects.hash(request.requestId, expiryMs);
179 }
180 public int compareTo(LingerTimer other) {
181 return (expiryMs != other.expiryMs) ?
182 Long.compare(expiryMs, other.expiryMs) :
183 Integer.compare(request.requestId, other.request.requestId);
184 }
185 public String toString() {
186 return String.format("%s, expires %dms", request.toString(),
187 expiryMs - SystemClock.elapsedRealtime());
188 }
189 }
190
191 /**
192 * Inform ConnectivityService that the network LINGER period has
193 * expired.
194 * obj = this NetworkAgentInfo
195 */
196 public static final int EVENT_NETWORK_LINGER_COMPLETE = 1001;
197
198 // All linger timers for this network, sorted by expiry time. A linger timer is added whenever
199 // a request is moved to a network with a better score, regardless of whether the network is or
200 // was lingering or not.
201 // TODO: determine if we can replace this with a smaller or unsorted data structure. (e.g.,
202 // SparseLongArray) combined with the timestamp of when the last timer is scheduled to fire.
203 private final SortedSet<LingerTimer> mLingerTimers = new TreeSet<>();
204
205 // For fast lookups. Indexes into mLingerTimers by request ID.
206 private final SparseArray<LingerTimer> mLingerTimerForRequest = new SparseArray<>();
207
208 // Linger expiry timer. Armed whenever mLingerTimers is non-empty, regardless of whether the
209 // network is lingering or not. Always set to the expiry of the LingerTimer that expires last.
210 // When the timer fires, all linger state is cleared, and if the network has no requests, it is
211 // torn down.
212 private WakeupMessage mLingerMessage;
213
214 // Linger expiry. Holds the expiry time of the linger timer, or 0 if the timer is not armed.
215 private long mLingerExpiryMs;
216
217 // Whether the network is lingering or not. Must be maintained separately from the above because
218 // it depends on the state of other networks and requests, which only ConnectivityService knows.
219 // (Example: we don't linger a network if it would become the best for a NetworkRequest if it
220 // validated).
221 private boolean mLingering;
Paul Jensen85cf78e2015-06-25 13:25:07 -0400222
Paul Jensen2161a8e2014-09-11 11:00:39 -0400223 // This represents the last score received from the NetworkAgent.
224 private int currentScore;
Robert Greenwalte73cc462014-09-07 16:50:01 -0700225
Robert Greenwalt7b816022014-04-18 15:25:25 -0700226 // The list of NetworkRequests being satisfied by this Network.
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900227 private final SparseArray<NetworkRequest> mNetworkRequests = new SparseArray<>();
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900228
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900229 // How many of the satisfied requests are actual requests and not listens.
230 private int mNumRequestNetworkRequests = 0;
Robert Greenwalt7b816022014-04-18 15:25:25 -0700231
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900232 // How many of the satisfied requests are of type BACKGROUND_REQUEST.
233 private int mNumBackgroundNetworkRequests = 0;
234
Robert Greenwalt7b816022014-04-18 15:25:25 -0700235 public final Messenger messenger;
236 public final AsyncChannel asyncChannel;
237
Chalard Jean08577fc2018-05-02 21:14:54 +0900238 public final int factorySerialNumber;
239
Lorenzo Colitti95439462014-10-09 13:44:48 +0900240 // Used by ConnectivityService to keep track of 464xlat.
241 public Nat464Xlat clatd;
242
Remi NGUYEN VANe67b0c32018-12-27 16:43:56 +0900243 // Set after asynchronous creation of the NetworkMonitor.
244 private volatile INetworkMonitor mNetworkMonitor;
245
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900246 private static final String TAG = ConnectivityService.class.getSimpleName();
247 private static final boolean VDBG = false;
Hugo Benichi50d46a42017-08-31 14:29:51 +0000248 private final ConnectivityService mConnService;
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900249 private final INetd mNetd;
250 private final INetworkManagementService mNMS;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900251 private final Context mContext;
Hugo Benichi50d46a42017-08-31 14:29:51 +0000252 private final Handler mHandler;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900253
Paul Jensen31a94f42015-02-13 14:18:39 -0500254 public NetworkAgentInfo(Messenger messenger, AsyncChannel ac, Network net, NetworkInfo info,
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700255 LinkProperties lp, NetworkCapabilities nc, int score, Context context, Handler handler,
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900256 NetworkMisc misc, ConnectivityService connService, INetd netd,
Chalard Jean08577fc2018-05-02 21:14:54 +0900257 INetworkManagementService nms, int factorySerialNumber) {
Robert Greenwalt7b816022014-04-18 15:25:25 -0700258 this.messenger = messenger;
259 asyncChannel = ac;
Paul Jensen31a94f42015-02-13 14:18:39 -0500260 network = net;
Robert Greenwalt7b816022014-04-18 15:25:25 -0700261 networkInfo = info;
262 linkProperties = lp;
263 networkCapabilities = nc;
264 currentScore = score;
Hugo Benichi50d46a42017-08-31 14:29:51 +0000265 mConnService = connService;
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900266 mNetd = netd;
267 mNMS = nms;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900268 mContext = context;
Hugo Benichi50d46a42017-08-31 14:29:51 +0000269 mHandler = handler;
Sreeram Ramachandran8cd33ed2014-07-23 15:23:15 -0700270 networkMisc = misc;
Chalard Jean08577fc2018-05-02 21:14:54 +0900271 this.factorySerialNumber = factorySerialNumber;
Robert Greenwalt7b816022014-04-18 15:25:25 -0700272 }
273
Remi NGUYEN VANe67b0c32018-12-27 16:43:56 +0900274 /**
275 * Inform NetworkAgentInfo that a new NetworkMonitor was created.
276 */
277 public void onNetworkMonitorCreated(INetworkMonitor networkMonitor) {
278 mNetworkMonitor = networkMonitor;
279 }
280
Hugo Benichief502882017-09-01 01:23:32 +0000281 public ConnectivityService connService() {
282 return mConnService;
283 }
284
soma, kawata88b8f632018-10-23 21:10:02 +0900285 public NetworkMisc netMisc() {
286 return networkMisc;
287 }
288
Hugo Benichief502882017-09-01 01:23:32 +0000289 public Handler handler() {
290 return mHandler;
291 }
292
Hugo Benichic894b122017-07-31 12:58:20 +0900293 public Network network() {
294 return network;
295 }
296
Remi NGUYEN VANe67b0c32018-12-27 16:43:56 +0900297 /**
298 * Get the INetworkMonitor in this NetworkAgentInfo.
299 *
300 * <p>This will be null before {@link #onNetworkMonitorCreated(INetworkMonitor)} is called.
301 */
302 public INetworkMonitor networkMonitor() {
303 return mNetworkMonitor;
304 }
305
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900306 // Functions for manipulating the requests satisfied by this network.
307 //
308 // These functions must only called on ConnectivityService's main thread.
309
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900310 private static final boolean ADD = true;
311 private static final boolean REMOVE = false;
312
313 private void updateRequestCounts(boolean add, NetworkRequest request) {
314 int delta = add ? +1 : -1;
315 switch (request.type) {
316 case REQUEST:
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900317 mNumRequestNetworkRequests += delta;
318 break;
319
320 case BACKGROUND_REQUEST:
321 mNumRequestNetworkRequests += delta;
322 mNumBackgroundNetworkRequests += delta;
323 break;
324
Chalard Jean715d39b2018-02-16 17:59:29 +0900325 case TRACK_DEFAULT:
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900326 case LISTEN:
327 break;
328
329 case NONE:
330 default:
331 Log.wtf(TAG, "Unhandled request type " + request.type);
332 break;
333 }
334 }
335
Paul Jensen3d911462015-06-12 06:40:24 -0400336 /**
337 * Add {@code networkRequest} to this network as it's satisfied by this network.
Paul Jensen3d911462015-06-12 06:40:24 -0400338 * @return true if {@code networkRequest} was added or false if {@code networkRequest} was
339 * already present.
340 */
341 public boolean addRequest(NetworkRequest networkRequest) {
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900342 NetworkRequest existing = mNetworkRequests.get(networkRequest.requestId);
343 if (existing == networkRequest) return false;
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900344 if (existing != null) {
345 // Should only happen if the requestId wraps. If that happens lots of other things will
346 // be broken as well.
347 Log.wtf(TAG, String.format("Duplicate requestId for %s and %s on %s",
348 networkRequest, existing, name()));
349 updateRequestCounts(REMOVE, existing);
350 }
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900351 mNetworkRequests.put(networkRequest.requestId, networkRequest);
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900352 updateRequestCounts(ADD, networkRequest);
Paul Jensen3d911462015-06-12 06:40:24 -0400353 return true;
Robert Greenwalt71bf33a2014-05-15 18:07:26 -0700354 }
355
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900356 /**
357 * Remove the specified request from this network.
358 */
359 public void removeRequest(int requestId) {
360 NetworkRequest existing = mNetworkRequests.get(requestId);
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900361 if (existing == null) return;
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900362 updateRequestCounts(REMOVE, existing);
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900363 mNetworkRequests.remove(requestId);
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900364 if (existing.isRequest()) {
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900365 unlingerRequest(existing);
366 }
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900367 }
368
369 /**
370 * Returns whether this network is currently satisfying the request with the specified ID.
371 */
372 public boolean isSatisfyingRequest(int id) {
373 return mNetworkRequests.get(id) != null;
374 }
375
376 /**
377 * Returns the request at the specified position in the list of requests satisfied by this
378 * network.
379 */
380 public NetworkRequest requestAt(int index) {
381 return mNetworkRequests.valueAt(index);
382 }
383
384 /**
385 * Returns the number of requests currently satisfied by this network for which
386 * {@link android.net.NetworkRequest#isRequest} returns {@code true}.
387 */
388 public int numRequestNetworkRequests() {
389 return mNumRequestNetworkRequests;
390 }
391
392 /**
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900393 * Returns the number of requests currently satisfied by this network of type
394 * {@link android.net.NetworkRequest.Type.BACKGROUND_REQUEST}.
395 */
396 public int numBackgroundNetworkRequests() {
397 return mNumBackgroundNetworkRequests;
398 }
399
400 /**
401 * Returns the number of foreground requests currently satisfied by this network.
402 */
403 public int numForegroundNetworkRequests() {
404 return mNumRequestNetworkRequests - mNumBackgroundNetworkRequests;
405 }
406
407 /**
Lorenzo Colitti767708d2016-07-01 01:37:11 +0900408 * Returns the number of requests of any type currently satisfied by this network.
409 */
410 public int numNetworkRequests() {
411 return mNetworkRequests.size();
412 }
413
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900414 /**
415 * Returns whether the network is a background network. A network is a background network if it
Chalard Jeanb72b62d2018-02-16 16:08:35 +0900416 * does not have the NET_CAPABILITY_FOREGROUND capability, which implies it is satisfying no
417 * foreground request, is not lingering (i.e. kept for a while after being outscored), and is
418 * not a speculative network (i.e. kept pending validation when validation would have it
419 * outscore another foreground network). That implies it is being kept up by some background
420 * request (otherwise it would be torn down), maybe the mobile always-on request.
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900421 */
422 public boolean isBackgroundNetwork() {
Chalard Jeanb72b62d2018-02-16 16:08:35 +0900423 return !isVPN() && numForegroundNetworkRequests() == 0 && mNumBackgroundNetworkRequests > 0
424 && !isLingering();
Lorenzo Colitti3d4a1062016-09-09 18:48:56 +0900425 }
426
Chalard Jean804b8fb2018-01-30 22:41:41 +0900427 /**
428 * Returns whether this network is currently suspended. A network is suspended if it is still
429 * connected but data temporarily fails to transfer. See {@link NetworkInfo.State#SUSPENDED}
430 * and {@link NetworkCapabilities#NET_CAPABILITY_NOT_SUSPENDED}.
431 */
432 public boolean isSuspended() {
433 return networkInfo.getState() == NetworkInfo.State.SUSPENDED;
434 }
435
Paul Jensen0cc17322014-11-25 15:26:53 -0500436 // Does this network satisfy request?
437 public boolean satisfies(NetworkRequest request) {
438 return created &&
439 request.networkCapabilities.satisfiedByNetworkCapabilities(networkCapabilities);
440 }
441
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900442 public boolean satisfiesImmutableCapabilitiesOf(NetworkRequest request) {
443 return created &&
444 request.networkCapabilities.satisfiedByImmutableNetworkCapabilities(
445 networkCapabilities);
446 }
447
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400448 public boolean isVPN() {
449 return networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_VPN);
450 }
451
Paul Jensenb10e37f2014-11-25 12:33:08 -0500452 private int getCurrentScore(boolean pretendValidated) {
Paul Jensen2161a8e2014-09-11 11:00:39 -0400453 // TODO: We may want to refactor this into a NetworkScore class that takes a base score from
454 // the NetworkAgent and signals from the NetworkAgent and uses those signals to modify the
455 // score. The NetworkScore class would provide a nice place to centralize score constants
456 // so they are not scattered about the transports.
457
Lorenzo Colittie03c3c72015-04-03 16:38:52 +0900458 // If this network is explicitly selected and the user has decided to use it even if it's
459 // unvalidated, give it the maximum score. Also give it the maximum score if it's explicitly
460 // selected and we're trying to see what its score could be. This ensures that we don't tear
461 // down an explicitly selected network before the user gets a chance to prefer it when
462 // a higher-scoring network (e.g., Ethernet) is available.
463 if (networkMisc.explicitlySelected && (networkMisc.acceptUnvalidated || pretendValidated)) {
Chalard Jean918a68b2018-01-19 17:00:47 +0900464 return ConnectivityConstants.MAXIMUM_NETWORK_SCORE;
Lorenzo Colittie03c3c72015-04-03 16:38:52 +0900465 }
Paul Jensen2161a8e2014-09-11 11:00:39 -0400466
Lorenzo Colittie03c3c72015-04-03 16:38:52 +0900467 int score = currentScore;
Hugo Benichic8e9e122016-09-14 23:23:08 +0000468 if (!lastValidated && !pretendValidated && !ignoreWifiUnvalidationPenalty()) {
Chalard Jean918a68b2018-01-19 17:00:47 +0900469 score -= ConnectivityConstants.UNVALIDATED_SCORE_PENALTY;
Paul Jensene0988542015-06-25 15:30:08 -0400470 }
Paul Jensen2161a8e2014-09-11 11:00:39 -0400471 if (score < 0) score = 0;
Paul Jensen2161a8e2014-09-11 11:00:39 -0400472 return score;
473 }
474
Hugo Benichic8e9e122016-09-14 23:23:08 +0000475 // Return true on devices configured to ignore score penalty for wifi networks
476 // that become unvalidated (b/31075769).
477 private boolean ignoreWifiUnvalidationPenalty() {
Lorenzo Colitti165c51c2016-09-19 01:00:19 +0900478 boolean isWifi = networkCapabilities.hasTransport(NetworkCapabilities.TRANSPORT_WIFI) &&
479 networkCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET);
Hugo Benichi50d46a42017-08-31 14:29:51 +0000480 boolean avoidBadWifi = mConnService.avoidBadWifi() || avoidUnvalidated;
Lorenzo Colitti165c51c2016-09-19 01:00:19 +0900481 return isWifi && !avoidBadWifi && everValidated;
Hugo Benichic8e9e122016-09-14 23:23:08 +0000482 }
483
Paul Jensenb10e37f2014-11-25 12:33:08 -0500484 // Get the current score for this Network. This may be modified from what the
485 // NetworkAgent sent, as it has modifiers applied to it.
486 public int getCurrentScore() {
487 return getCurrentScore(false);
488 }
489
490 // Get the current score for this Network as if it was validated. This may be modified from
491 // what the NetworkAgent sent, as it has modifiers applied to it.
492 public int getCurrentScoreAsValidated() {
493 return getCurrentScore(true);
494 }
495
Paul Jensen2161a8e2014-09-11 11:00:39 -0400496 public void setCurrentScore(int newScore) {
497 currentScore = newScore;
498 }
499
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600500 public NetworkState getNetworkState() {
501 synchronized (this) {
Chalard Jean804b8fb2018-01-30 22:41:41 +0900502 // Network objects are outwardly immutable so there is no point in duplicating.
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -0600503 // Duplicating also precludes sharing socket factories and connection pools.
504 final String subscriberId = (networkMisc != null) ? networkMisc.subscriberId : null;
505 return new NetworkState(new NetworkInfo(networkInfo),
506 new LinkProperties(linkProperties),
507 new NetworkCapabilities(networkCapabilities), network, subscriberId, null);
508 }
509 }
510
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900511 /**
512 * Sets the specified request to linger on this network for the specified time. Called by
513 * ConnectivityService when the request is moved to another network with a higher score.
514 */
515 public void lingerRequest(NetworkRequest request, long now, long duration) {
516 if (mLingerTimerForRequest.get(request.requestId) != null) {
517 // Cannot happen. Once a request is lingering on a particular network, we cannot
518 // re-linger it unless that network becomes the best for that request again, in which
519 // case we should have unlingered it.
520 Log.wtf(TAG, this.name() + ": request " + request.requestId + " already lingered");
521 }
522 final long expiryMs = now + duration;
523 LingerTimer timer = new LingerTimer(request, expiryMs);
524 if (VDBG) Log.d(TAG, "Adding LingerTimer " + timer + " to " + this.name());
525 mLingerTimers.add(timer);
526 mLingerTimerForRequest.put(request.requestId, timer);
527 }
528
529 /**
530 * Cancel lingering. Called by ConnectivityService when a request is added to this network.
Lorenzo Colitti5526f9c2016-08-22 16:46:40 +0900531 * Returns true if the given request was lingering on this network, false otherwise.
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900532 */
Lorenzo Colitti5526f9c2016-08-22 16:46:40 +0900533 public boolean unlingerRequest(NetworkRequest request) {
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900534 LingerTimer timer = mLingerTimerForRequest.get(request.requestId);
535 if (timer != null) {
536 if (VDBG) Log.d(TAG, "Removing LingerTimer " + timer + " from " + this.name());
537 mLingerTimers.remove(timer);
538 mLingerTimerForRequest.remove(request.requestId);
Lorenzo Colitti5526f9c2016-08-22 16:46:40 +0900539 return true;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900540 }
Lorenzo Colitti5526f9c2016-08-22 16:46:40 +0900541 return false;
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900542 }
543
544 public long getLingerExpiry() {
545 return mLingerExpiryMs;
546 }
547
548 public void updateLingerTimer() {
549 long newExpiry = mLingerTimers.isEmpty() ? 0 : mLingerTimers.last().expiryMs;
550 if (newExpiry == mLingerExpiryMs) return;
551
552 // Even if we're going to reschedule the timer, cancel it first. This is because the
553 // semantics of WakeupMessage guarantee that if cancel is called then the alarm will
554 // never call its callback (handleLingerComplete), even if it has already fired.
555 // WakeupMessage makes no such guarantees about rescheduling a message, so if mLingerMessage
556 // has already been dispatched, rescheduling to some time in the future it won't stop it
557 // from calling its callback immediately.
558 if (mLingerMessage != null) {
559 mLingerMessage.cancel();
560 mLingerMessage = null;
561 }
562
563 if (newExpiry > 0) {
Hugo Benichi50d46a42017-08-31 14:29:51 +0000564 mLingerMessage = mConnService.makeWakeupMessage(
565 mContext, mHandler,
Lorenzo Colittib57578ca2016-07-01 01:53:25 +0900566 "NETWORK_LINGER_COMPLETE." + network.netId,
567 EVENT_NETWORK_LINGER_COMPLETE, this);
568 mLingerMessage.schedule(newExpiry);
569 }
570
571 mLingerExpiryMs = newExpiry;
572 }
573
574 public void linger() {
575 mLingering = true;
576 }
577
578 public void unlinger() {
579 mLingering = false;
580 }
581
582 public boolean isLingering() {
583 return mLingering;
584 }
585
586 public void clearLingerState() {
587 if (mLingerMessage != null) {
588 mLingerMessage.cancel();
589 mLingerMessage = null;
590 }
591 mLingerTimers.clear();
592 mLingerTimerForRequest.clear();
593 updateLingerTimer(); // Sets mLingerExpiryMs, cancels and nulls out mLingerMessage.
594 mLingering = false;
595 }
596
597 public void dumpLingerTimers(PrintWriter pw) {
598 for (LingerTimer timer : mLingerTimers) { pw.println(timer); }
599 }
600
Hugo Benichief502882017-09-01 01:23:32 +0000601 public void updateClat(INetworkManagementService netd) {
602 if (Nat464Xlat.requiresClat(this)) {
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900603 maybeStartClat();
Hugo Benichief502882017-09-01 01:23:32 +0000604 } else {
605 maybeStopClat();
606 }
607 }
608
609 /** Ensure clat has started for this network. */
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900610 public void maybeStartClat() {
Hugo Benichief502882017-09-01 01:23:32 +0000611 if (clatd != null && clatd.isStarted()) {
612 return;
613 }
Lorenzo Colitti9307ca22019-01-12 01:54:23 +0900614 clatd = new Nat464Xlat(this, mNetd, mNMS);
Hugo Benichief502882017-09-01 01:23:32 +0000615 clatd.start();
616 }
617
618 /** Ensure clat has stopped for this network. */
619 public void maybeStopClat() {
620 if (clatd == null) {
621 return;
622 }
623 clatd.stop();
624 clatd = null;
625 }
626
Robert Greenwalt7b816022014-04-18 15:25:25 -0700627 public String toString() {
lucaslind2e045e02019-01-24 15:55:30 +0800628 return "NetworkAgentInfo{ ni{" + networkInfo + "} "
629 + "network{" + network + "} nethandle{" + network.getNetworkHandle() + "} "
630 + "lp{" + linkProperties + "} "
631 + "nc{" + networkCapabilities + "} Score{" + getCurrentScore() + "} "
632 + "everValidated{" + everValidated + "} lastValidated{" + lastValidated + "} "
633 + "created{" + created + "} lingering{" + isLingering() + "} "
634 + "explicitlySelected{" + networkMisc.explicitlySelected + "} "
635 + "acceptUnvalidated{" + networkMisc.acceptUnvalidated + "} "
636 + "everCaptivePortalDetected{" + everCaptivePortalDetected + "} "
637 + "lastCaptivePortalDetected{" + lastCaptivePortalDetected + "} "
638 + "captivePortalLoginNotified{" + captivePortalLoginNotified + "} "
639 + "clat{" + clatd + "} "
640 + "}";
Robert Greenwalt7b816022014-04-18 15:25:25 -0700641 }
642
643 public String name() {
644 return "NetworkAgentInfo [" + networkInfo.getTypeName() + " (" +
Hugo Benichib577d652017-06-27 15:13:20 +0900645 networkInfo.getSubtypeName() + ") - " + Objects.toString(network) + "]";
Robert Greenwalt7b816022014-04-18 15:25:25 -0700646 }
Paul Jensen85cf78e2015-06-25 13:25:07 -0400647
648 // Enables sorting in descending order of score.
649 @Override
650 public int compareTo(NetworkAgentInfo other) {
651 return other.getCurrentScore() - getCurrentScore();
652 }
Robert Greenwalt7b816022014-04-18 15:25:25 -0700653}