blob: ef4a9e5f3b5db541b2275c309a591fd1ca7a6356 [file] [log] [blame]
Robert Greenwalt1448f052014-04-08 13:41:39 -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 android.net;
18
Jeff Sharkeyde570312017-10-24 21:25:50 -060019import android.annotation.IntDef;
paulhud9736de2019-03-08 16:35:20 +080020import android.annotation.NonNull;
Etan Cohenca9fb562018-11-27 07:32:39 -080021import android.annotation.Nullable;
Pavel Maltsevd9c9fff2018-03-22 11:41:32 -070022import android.annotation.SystemApi;
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -060023import android.annotation.TestApi;
Artur Satayev33f92172019-12-10 17:47:52 +000024import android.compat.annotation.UnsupportedAppUsage;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060025import android.net.ConnectivityManager.NetworkCallback;
Mathew Inwood45d2c252018-09-14 12:35:36 +010026import android.os.Build;
Robert Greenwalt1448f052014-04-08 13:41:39 -070027import android.os.Parcel;
28import android.os.Parcelable;
Qingxi Li7cf06622020-01-17 17:54:27 -080029import android.os.Process;
Roshan Piusef628d32020-01-16 12:17:17 -080030import android.text.TextUtils;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090031import android.util.ArraySet;
Kweku Adams85f2fbc2017-12-18 12:04:12 -080032import android.util.proto.ProtoOutputStream;
Robert Greenwalta7e148a2017-04-10 14:32:23 -070033
34import com.android.internal.annotations.VisibleForTesting;
Hugo Benichi9910dbc2017-03-22 18:29:58 +090035import com.android.internal.util.BitUtils;
Hugo Benichi16f0a942017-06-20 14:07:59 +090036import com.android.internal.util.Preconditions;
Etan Cohena7434272017-04-03 12:17:51 -070037
Jeff Sharkeyde570312017-10-24 21:25:50 -060038import java.lang.annotation.Retention;
39import java.lang.annotation.RetentionPolicy;
Cody Kesting201fc132020-01-17 11:58:36 -080040import java.util.ArrayList;
41import java.util.Collections;
42import java.util.List;
Etan Cohena7434272017-04-03 12:17:51 -070043import java.util.Objects;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090044import java.util.Set;
Hugo Benichieae7a222017-07-25 11:40:56 +090045import java.util.StringJoiner;
Robert Greenwalt1448f052014-04-08 13:41:39 -070046
47/**
Jeff Sharkey49bcd602017-11-09 13:11:50 -070048 * Representation of the capabilities of an active network. Instances are
49 * typically obtained through
Jeff Sharkey72f9c422017-10-27 17:22:59 -060050 * {@link NetworkCallback#onCapabilitiesChanged(Network, NetworkCapabilities)}
51 * or {@link ConnectivityManager#getNetworkCapabilities(Network)}.
Jeff Sharkey72f9c422017-10-27 17:22:59 -060052 * <p>
53 * This replaces the old {@link ConnectivityManager#TYPE_MOBILE} method of
54 * network selection. Rather than indicate a need for Wi-Fi because an
55 * application needs high bandwidth and risk obsolescence when a new, fast
56 * network appears (like LTE), the application should specify it needs high
57 * bandwidth. Similarly if an application needs an unmetered network for a bulk
58 * transfer it can specify that rather than assuming all cellular based
59 * connections are metered and all Wi-Fi based connections are not.
Robert Greenwalt1448f052014-04-08 13:41:39 -070060 */
61public final class NetworkCapabilities implements Parcelable {
Etan Cohena7434272017-04-03 12:17:51 -070062 private static final String TAG = "NetworkCapabilities";
63
lucaslin783f2212019-10-22 18:27:33 +080064 // Set to true when private DNS is broken.
65 private boolean mPrivateDnsBroken;
66
Roshan Piusef628d32020-01-16 12:17:17 -080067 /**
68 * Uid of the app making the request.
69 */
70 private int mRequestorUid;
71
72 /**
73 * Package name of the app making the request.
74 */
75 private String mRequestorPackageName;
76
Robert Greenwalt01d004e2014-05-18 15:24:21 -070077 public NetworkCapabilities() {
Lorenzo Colittif7058f52015-04-27 11:31:55 +090078 clearAll();
Lorenzo Colitti260a36d2015-07-08 12:49:04 +090079 mNetworkCapabilities = DEFAULT_CAPABILITIES;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070080 }
81
82 public NetworkCapabilities(NetworkCapabilities nc) {
83 if (nc != null) {
Chalard Jean4c4bc932018-05-18 23:48:49 +090084 set(nc);
Robert Greenwalt01d004e2014-05-18 15:24:21 -070085 }
86 }
Robert Greenwalt1448f052014-04-08 13:41:39 -070087
88 /**
Lorenzo Colittif7058f52015-04-27 11:31:55 +090089 * Completely clears the contents of this object, removing even the capabilities that are set
90 * by default when the object is constructed.
Lorenzo Colittif7058f52015-04-27 11:31:55 +090091 */
92 public void clearAll() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -080093 mNetworkCapabilities = mTransportTypes = mUnwantedNetworkCapabilities = 0;
Jeff Sharkey49bcd602017-11-09 13:11:50 -070094 mLinkUpBandwidthKbps = mLinkDownBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
Lorenzo Colittif7058f52015-04-27 11:31:55 +090095 mNetworkSpecifier = null;
Etan Cohenca9fb562018-11-27 07:32:39 -080096 mTransportInfo = null;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +090097 mSignalStrength = SIGNAL_STRENGTH_UNSPECIFIED;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090098 mUids = null;
Cody Kesting201fc132020-01-17 11:58:36 -080099 mAdministratorUids.clear();
Qingxi Li7cf06622020-01-17 17:54:27 -0800100 mOwnerUid = Process.INVALID_UID;
Chalard Jeanb03a6222018-04-11 21:09:10 +0900101 mSSID = null;
lucaslin783f2212019-10-22 18:27:33 +0800102 mPrivateDnsBroken = false;
Roshan Piusef628d32020-01-16 12:17:17 -0800103 mRequestorUid = Process.INVALID_UID;
104 mRequestorPackageName = null;
Lorenzo Colittif7058f52015-04-27 11:31:55 +0900105 }
106
107 /**
Chalard Jean4c4bc932018-05-18 23:48:49 +0900108 * Set all contents of this object to the contents of a NetworkCapabilities.
109 * @hide
110 */
paulhud9736de2019-03-08 16:35:20 +0800111 public void set(@NonNull NetworkCapabilities nc) {
Chalard Jean4c4bc932018-05-18 23:48:49 +0900112 mNetworkCapabilities = nc.mNetworkCapabilities;
113 mTransportTypes = nc.mTransportTypes;
114 mLinkUpBandwidthKbps = nc.mLinkUpBandwidthKbps;
115 mLinkDownBandwidthKbps = nc.mLinkDownBandwidthKbps;
116 mNetworkSpecifier = nc.mNetworkSpecifier;
Etan Cohenca9fb562018-11-27 07:32:39 -0800117 mTransportInfo = nc.mTransportInfo;
Chalard Jean4c4bc932018-05-18 23:48:49 +0900118 mSignalStrength = nc.mSignalStrength;
119 setUids(nc.mUids); // Will make the defensive copy
Cody Kesting201fc132020-01-17 11:58:36 -0800120 setAdministratorUids(nc.mAdministratorUids);
Qingxi Li7cf06622020-01-17 17:54:27 -0800121 mOwnerUid = nc.mOwnerUid;
Chalard Jean4c4bc932018-05-18 23:48:49 +0900122 mUnwantedNetworkCapabilities = nc.mUnwantedNetworkCapabilities;
123 mSSID = nc.mSSID;
lucaslin783f2212019-10-22 18:27:33 +0800124 mPrivateDnsBroken = nc.mPrivateDnsBroken;
Roshan Piusef628d32020-01-16 12:17:17 -0800125 mRequestorUid = nc.mRequestorUid;
126 mRequestorPackageName = nc.mRequestorPackageName;
Chalard Jean4c4bc932018-05-18 23:48:49 +0900127 }
128
129 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700130 * Represents the network's capabilities. If any are specified they will be satisfied
131 * by any Network that matches all of them.
132 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100133 @UnsupportedAppUsage
Lorenzo Colittif7058f52015-04-27 11:31:55 +0900134 private long mNetworkCapabilities;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700135
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800136 /**
137 * If any capabilities specified here they must not exist in the matching Network.
138 */
139 private long mUnwantedNetworkCapabilities;
140
Jeff Sharkeyde570312017-10-24 21:25:50 -0600141 /** @hide */
142 @Retention(RetentionPolicy.SOURCE)
143 @IntDef(prefix = { "NET_CAPABILITY_" }, value = {
144 NET_CAPABILITY_MMS,
145 NET_CAPABILITY_SUPL,
146 NET_CAPABILITY_DUN,
147 NET_CAPABILITY_FOTA,
148 NET_CAPABILITY_IMS,
149 NET_CAPABILITY_CBS,
150 NET_CAPABILITY_WIFI_P2P,
151 NET_CAPABILITY_IA,
152 NET_CAPABILITY_RCS,
153 NET_CAPABILITY_XCAP,
154 NET_CAPABILITY_EIMS,
155 NET_CAPABILITY_NOT_METERED,
156 NET_CAPABILITY_INTERNET,
157 NET_CAPABILITY_NOT_RESTRICTED,
158 NET_CAPABILITY_TRUSTED,
159 NET_CAPABILITY_NOT_VPN,
160 NET_CAPABILITY_VALIDATED,
161 NET_CAPABILITY_CAPTIVE_PORTAL,
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600162 NET_CAPABILITY_NOT_ROAMING,
Jeff Sharkeyde570312017-10-24 21:25:50 -0600163 NET_CAPABILITY_FOREGROUND,
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900164 NET_CAPABILITY_NOT_CONGESTED,
Chalard Jean804b8fb2018-01-30 22:41:41 +0900165 NET_CAPABILITY_NOT_SUSPENDED,
Pavel Maltsev43403202018-01-30 17:19:44 -0800166 NET_CAPABILITY_OEM_PAID,
lucasline252a742019-03-12 13:08:03 +0800167 NET_CAPABILITY_MCX,
168 NET_CAPABILITY_PARTIAL_CONNECTIVITY,
Jeff Sharkeyde570312017-10-24 21:25:50 -0600169 })
170 public @interface NetCapability { }
171
Robert Greenwalt1448f052014-04-08 13:41:39 -0700172 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700173 * Indicates this is a network that has the ability to reach the
174 * carrier's MMSC for sending and receiving MMS messages.
Robert Greenwalt1448f052014-04-08 13:41:39 -0700175 */
176 public static final int NET_CAPABILITY_MMS = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700177
178 /**
179 * Indicates this is a network that has the ability to reach the carrier's
180 * SUPL server, used to retrieve GPS information.
181 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700182 public static final int NET_CAPABILITY_SUPL = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700183
184 /**
185 * Indicates this is a network that has the ability to reach the carrier's
186 * DUN or tethering gateway.
187 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700188 public static final int NET_CAPABILITY_DUN = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700189
190 /**
191 * Indicates this is a network that has the ability to reach the carrier's
192 * FOTA portal, used for over the air updates.
193 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700194 public static final int NET_CAPABILITY_FOTA = 3;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700195
196 /**
197 * Indicates this is a network that has the ability to reach the carrier's
198 * IMS servers, used for network registration and signaling.
199 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700200 public static final int NET_CAPABILITY_IMS = 4;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700201
202 /**
203 * Indicates this is a network that has the ability to reach the carrier's
204 * CBS servers, used for carrier specific services.
205 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700206 public static final int NET_CAPABILITY_CBS = 5;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700207
208 /**
209 * Indicates this is a network that has the ability to reach a Wi-Fi direct
210 * peer.
211 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700212 public static final int NET_CAPABILITY_WIFI_P2P = 6;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700213
214 /**
215 * Indicates this is a network that has the ability to reach a carrier's
216 * Initial Attach servers.
217 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700218 public static final int NET_CAPABILITY_IA = 7;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700219
220 /**
221 * Indicates this is a network that has the ability to reach a carrier's
222 * RCS servers, used for Rich Communication Services.
223 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700224 public static final int NET_CAPABILITY_RCS = 8;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700225
226 /**
227 * Indicates this is a network that has the ability to reach a carrier's
228 * XCAP servers, used for configuration and control.
229 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700230 public static final int NET_CAPABILITY_XCAP = 9;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700231
232 /**
233 * Indicates this is a network that has the ability to reach a carrier's
Robert Greenwalt4bd43892015-07-09 14:49:35 -0700234 * Emergency IMS servers or other services, used for network signaling
235 * during emergency calls.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700236 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700237 public static final int NET_CAPABILITY_EIMS = 10;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700238
239 /**
240 * Indicates that this network is unmetered.
241 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700242 public static final int NET_CAPABILITY_NOT_METERED = 11;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700243
244 /**
245 * Indicates that this network should be able to reach the internet.
246 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700247 public static final int NET_CAPABILITY_INTERNET = 12;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700248
249 /**
250 * Indicates that this network is available for general use. If this is not set
251 * applications should not attempt to communicate on this network. Note that this
252 * is simply informative and not enforcement - enforcement is handled via other means.
253 * Set by default.
254 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700255 public static final int NET_CAPABILITY_NOT_RESTRICTED = 13;
256
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700257 /**
258 * Indicates that the user has indicated implicit trust of this network. This
259 * generally means it's a sim-selected carrier, a plugged in ethernet, a paired
260 * BT device or a wifi the user asked to connect to. Untrusted networks
261 * are probably limited to unknown wifi AP. Set by default.
262 */
263 public static final int NET_CAPABILITY_TRUSTED = 14;
264
Paul Jensen76b610a2015-03-18 09:33:07 -0400265 /**
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400266 * Indicates that this network is not a VPN. This capability is set by default and should be
Paul Jensen76b610a2015-03-18 09:33:07 -0400267 * explicitly cleared for VPN networks.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400268 */
269 public static final int NET_CAPABILITY_NOT_VPN = 15;
270
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900271 /**
272 * Indicates that connectivity on this network was successfully validated. For example, for a
273 * network with NET_CAPABILITY_INTERNET, it means that Internet connectivity was successfully
274 * detected.
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900275 */
276 public static final int NET_CAPABILITY_VALIDATED = 16;
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700277
Paul Jensen3d194ea2015-06-16 14:27:36 -0400278 /**
279 * Indicates that this network was found to have a captive portal in place last time it was
280 * probed.
281 */
282 public static final int NET_CAPABILITY_CAPTIVE_PORTAL = 17;
283
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900284 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600285 * Indicates that this network is not roaming.
286 */
287 public static final int NET_CAPABILITY_NOT_ROAMING = 18;
288
289 /**
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900290 * Indicates that this network is available for use by apps, and not a network that is being
291 * kept up in the background to facilitate fast network switching.
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900292 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600293 public static final int NET_CAPABILITY_FOREGROUND = 19;
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900294
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900295 /**
296 * Indicates that this network is not congested.
297 * <p>
Jeff Sharkey0a5570d2018-04-10 12:38:29 -0600298 * When a network is congested, applications should defer network traffic
299 * that can be done at a later time, such as uploading analytics.
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900300 */
301 public static final int NET_CAPABILITY_NOT_CONGESTED = 20;
302
Chalard Jean804b8fb2018-01-30 22:41:41 +0900303 /**
304 * Indicates that this network is not currently suspended.
305 * <p>
306 * When a network is suspended, the network's IP addresses and any connections
307 * established on the network remain valid, but the network is temporarily unable
308 * to transfer data. This can happen, for example, if a cellular network experiences
309 * a temporary loss of signal, such as when driving through a tunnel, etc.
310 * A network with this capability is not suspended, so is expected to be able to
311 * transfer data.
312 */
313 public static final int NET_CAPABILITY_NOT_SUSPENDED = 21;
314
Pavel Maltsev43403202018-01-30 17:19:44 -0800315 /**
316 * Indicates that traffic that goes through this network is paid by oem. For example,
317 * this network can be used by system apps to upload telemetry data.
318 * @hide
319 */
Pavel Maltsevd9c9fff2018-03-22 11:41:32 -0700320 @SystemApi
Pavel Maltsev43403202018-01-30 17:19:44 -0800321 public static final int NET_CAPABILITY_OEM_PAID = 22;
322
Amit Mahajanfd3ee572019-02-20 15:04:30 -0800323 /**
324 * Indicates this is a network that has the ability to reach a carrier's Mission Critical
325 * servers.
326 */
327 public static final int NET_CAPABILITY_MCX = 23;
328
lucasline252a742019-03-12 13:08:03 +0800329 /**
330 * Indicates that this network was tested to only provide partial connectivity.
331 * @hide
332 */
333 @SystemApi
334 public static final int NET_CAPABILITY_PARTIAL_CONNECTIVITY = 24;
335
Robert Greenwalt1448f052014-04-08 13:41:39 -0700336 private static final int MIN_NET_CAPABILITY = NET_CAPABILITY_MMS;
lucasline252a742019-03-12 13:08:03 +0800337 private static final int MAX_NET_CAPABILITY = NET_CAPABILITY_PARTIAL_CONNECTIVITY;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700338
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700339 /**
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900340 * Network capabilities that are expected to be mutable, i.e., can change while a particular
341 * network is connected.
342 */
343 private static final long MUTABLE_CAPABILITIES =
344 // TRUSTED can change when user explicitly connects to an untrusted network in Settings.
345 // http://b/18206275
Chalard Jean804b8fb2018-01-30 22:41:41 +0900346 (1 << NET_CAPABILITY_TRUSTED)
347 | (1 << NET_CAPABILITY_VALIDATED)
348 | (1 << NET_CAPABILITY_CAPTIVE_PORTAL)
349 | (1 << NET_CAPABILITY_NOT_ROAMING)
350 | (1 << NET_CAPABILITY_FOREGROUND)
351 | (1 << NET_CAPABILITY_NOT_CONGESTED)
lucasline252a742019-03-12 13:08:03 +0800352 | (1 << NET_CAPABILITY_NOT_SUSPENDED)
353 | (1 << NET_CAPABILITY_PARTIAL_CONNECTIVITY);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900354
355 /**
356 * Network capabilities that are not allowed in NetworkRequests. This exists because the
357 * NetworkFactory / NetworkAgent model does not deal well with the situation where a
358 * capability's presence cannot be known in advance. If such a capability is requested, then we
359 * can get into a cycle where the NetworkFactory endlessly churns out NetworkAgents that then
360 * get immediately torn down because they do not have the requested capability.
361 */
362 private static final long NON_REQUESTABLE_CAPABILITIES =
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900363 MUTABLE_CAPABILITIES & ~(1 << NET_CAPABILITY_TRUSTED);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900364
365 /**
366 * Capabilities that are set by default when the object is constructed.
367 */
368 private static final long DEFAULT_CAPABILITIES =
369 (1 << NET_CAPABILITY_NOT_RESTRICTED) |
370 (1 << NET_CAPABILITY_TRUSTED) |
371 (1 << NET_CAPABILITY_NOT_VPN);
372
373 /**
Paul Jensen487ffe72015-07-24 15:57:11 -0400374 * Capabilities that suggest that a network is restricted.
Pavel Maltsev4af91072018-03-07 14:33:22 -0800375 * {@see #maybeMarkCapabilitiesRestricted}, {@see #FORCE_RESTRICTED_CAPABILITIES}
Paul Jensen487ffe72015-07-24 15:57:11 -0400376 */
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700377 @VisibleForTesting
378 /* package */ static final long RESTRICTED_CAPABILITIES =
Paul Jensen487ffe72015-07-24 15:57:11 -0400379 (1 << NET_CAPABILITY_CBS) |
380 (1 << NET_CAPABILITY_DUN) |
381 (1 << NET_CAPABILITY_EIMS) |
382 (1 << NET_CAPABILITY_FOTA) |
383 (1 << NET_CAPABILITY_IA) |
384 (1 << NET_CAPABILITY_IMS) |
385 (1 << NET_CAPABILITY_RCS) |
Amit Mahajanfd3ee572019-02-20 15:04:30 -0800386 (1 << NET_CAPABILITY_XCAP) |
387 (1 << NET_CAPABILITY_MCX);
Pavel Maltsev4af91072018-03-07 14:33:22 -0800388
389 /**
390 * Capabilities that force network to be restricted.
391 * {@see #maybeMarkCapabilitiesRestricted}.
392 */
393 private static final long FORCE_RESTRICTED_CAPABILITIES =
Pavel Maltsev43403202018-01-30 17:19:44 -0800394 (1 << NET_CAPABILITY_OEM_PAID);
Paul Jensen487ffe72015-07-24 15:57:11 -0400395
396 /**
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700397 * Capabilities that suggest that a network is unrestricted.
398 * {@see #maybeMarkCapabilitiesRestricted}.
399 */
400 @VisibleForTesting
401 /* package */ static final long UNRESTRICTED_CAPABILITIES =
402 (1 << NET_CAPABILITY_INTERNET) |
403 (1 << NET_CAPABILITY_MMS) |
404 (1 << NET_CAPABILITY_SUPL) |
405 (1 << NET_CAPABILITY_WIFI_P2P);
406
407 /**
lucasline252a742019-03-12 13:08:03 +0800408 * Capabilities that are managed by ConnectivityService.
409 */
410 private static final long CONNECTIVITY_MANAGED_CAPABILITIES =
411 (1 << NET_CAPABILITY_VALIDATED)
412 | (1 << NET_CAPABILITY_CAPTIVE_PORTAL)
413 | (1 << NET_CAPABILITY_FOREGROUND)
414 | (1 << NET_CAPABILITY_PARTIAL_CONNECTIVITY);
415
416 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700417 * Adds the given capability to this {@code NetworkCapability} instance.
418 * Multiple capabilities may be applied sequentially. Note that when searching
419 * for a network to satisfy a request, all capabilities requested must be satisfied.
420 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600421 * @param capability the capability to be added.
Pierre Imaic8419a82016-03-22 17:54:54 +0900422 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700423 */
paulhud9736de2019-03-08 16:35:20 +0800424 public @NonNull NetworkCapabilities addCapability(@NetCapability int capability) {
Aaron Huange6b62392019-09-20 22:52:54 +0800425 // If the given capability was previously added to the list of unwanted capabilities
426 // then the capability will also be removed from the list of unwanted capabilities.
427 // TODO: Consider adding unwanted capabilities to the public API and mention this
428 // in the documentation.
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800429 checkValidCapability(capability);
Robert Greenwalt7569f182014-06-08 16:42:59 -0700430 mNetworkCapabilities |= 1 << capability;
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800431 mUnwantedNetworkCapabilities &= ~(1 << capability); // remove from unwanted capability list
Robert Greenwalt7569f182014-06-08 16:42:59 -0700432 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700433 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700434
435 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800436 * Adds the given capability to the list of unwanted capabilities of this
437 * {@code NetworkCapability} instance. Multiple unwanted capabilities may be applied
438 * sequentially. Note that when searching for a network to satisfy a request, the network
439 * must not contain any capability from unwanted capability list.
440 * <p>
441 * If the capability was previously added to the list of required capabilities (for
442 * example, it was there by default or added using {@link #addCapability(int)} method), then
443 * it will be removed from the list of required capabilities as well.
444 *
445 * @see #addCapability(int)
446 * @hide
447 */
448 public void addUnwantedCapability(@NetCapability int capability) {
449 checkValidCapability(capability);
450 mUnwantedNetworkCapabilities |= 1 << capability;
451 mNetworkCapabilities &= ~(1 << capability); // remove from requested capabilities
452 }
453
454 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700455 * Removes (if found) the given capability from this {@code NetworkCapability} instance.
456 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600457 * @param capability the capability to be removed.
Pierre Imaic8419a82016-03-22 17:54:54 +0900458 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700459 */
paulhud9736de2019-03-08 16:35:20 +0800460 public @NonNull NetworkCapabilities removeCapability(@NetCapability int capability) {
Aaron Huange6b62392019-09-20 22:52:54 +0800461 // Note that this method removes capabilities that were added via addCapability(int),
462 // addUnwantedCapability(int) or setCapabilities(int[], int[]).
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800463 checkValidCapability(capability);
464 final long mask = ~(1 << capability);
465 mNetworkCapabilities &= mask;
466 mUnwantedNetworkCapabilities &= mask;
Robert Greenwalt7569f182014-06-08 16:42:59 -0700467 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700468 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700469
470 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600471 * Sets (or clears) the given capability on this {@link NetworkCapabilities}
472 * instance.
473 *
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600474 */
paulhud9736de2019-03-08 16:35:20 +0800475 public @NonNull NetworkCapabilities setCapability(@NetCapability int capability,
476 boolean value) {
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600477 if (value) {
478 addCapability(capability);
479 } else {
480 removeCapability(capability);
481 }
482 return this;
483 }
484
485 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700486 * Gets all the capabilities set on this {@code NetworkCapability} instance.
487 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600488 * @return an array of capability values for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700489 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700490 */
Artur Satayev5a525852019-10-31 15:15:50 +0000491 @UnsupportedAppUsage
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -0600492 @TestApi
Jeff Sharkeyde570312017-10-24 21:25:50 -0600493 public @NetCapability int[] getCapabilities() {
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900494 return BitUtils.unpackBits(mNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700495 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700496
497 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800498 * Gets all the unwanted capabilities set on this {@code NetworkCapability} instance.
499 *
500 * @return an array of unwanted capability values for this instance.
501 * @hide
502 */
503 public @NetCapability int[] getUnwantedCapabilities() {
504 return BitUtils.unpackBits(mUnwantedNetworkCapabilities);
505 }
506
507
508 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600509 * Sets all the capabilities set on this {@code NetworkCapability} instance.
Jeff Sharkey49bcd602017-11-09 13:11:50 -0700510 * This overwrites any existing capabilities.
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600511 *
512 * @hide
513 */
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800514 public void setCapabilities(@NetCapability int[] capabilities,
515 @NetCapability int[] unwantedCapabilities) {
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600516 mNetworkCapabilities = BitUtils.packBits(capabilities);
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800517 mUnwantedNetworkCapabilities = BitUtils.packBits(unwantedCapabilities);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600518 }
519
520 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800521 * @deprecated use {@link #setCapabilities(int[], int[])}
522 * @hide
523 */
524 @Deprecated
525 public void setCapabilities(@NetCapability int[] capabilities) {
526 setCapabilities(capabilities, new int[] {});
527 }
528
529 /**
530 * Tests for the presence of a capability on this instance.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700531 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600532 * @param capability the capabilities to be tested for.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700533 * @return {@code true} if set on this instance.
534 */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600535 public boolean hasCapability(@NetCapability int capability) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800536 return isValidCapability(capability)
537 && ((mNetworkCapabilities & (1 << capability)) != 0);
538 }
539
540 /** @hide */
541 public boolean hasUnwantedCapability(@NetCapability int capability) {
542 return isValidCapability(capability)
543 && ((mUnwantedNetworkCapabilities & (1 << capability)) != 0);
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700544 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700545
lucasline252a742019-03-12 13:08:03 +0800546 /**
547 * Check if this NetworkCapabilities has system managed capabilities or not.
548 * @hide
549 */
550 public boolean hasConnectivityManagedCapability() {
551 return ((mNetworkCapabilities & CONNECTIVITY_MANAGED_CAPABILITIES) != 0);
552 }
553
Pavel Maltseve18ef262018-03-07 11:13:04 -0800554 /** Note this method may result in having the same capability in wanted and unwanted lists. */
paulhud9736de2019-03-08 16:35:20 +0800555 private void combineNetCapabilities(@NonNull NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700556 this.mNetworkCapabilities |= nc.mNetworkCapabilities;
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800557 this.mUnwantedNetworkCapabilities |= nc.mUnwantedNetworkCapabilities;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700558 }
559
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900560 /**
561 * Convenience function that returns a human-readable description of the first mutable
562 * capability we find. Used to present an error message to apps that request mutable
563 * capabilities.
564 *
565 * @hide
566 */
paulhud9736de2019-03-08 16:35:20 +0800567 public @Nullable String describeFirstNonRequestableCapability() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800568 final long nonRequestable = (mNetworkCapabilities | mUnwantedNetworkCapabilities)
569 & NON_REQUESTABLE_CAPABILITIES;
570
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900571 if (nonRequestable != 0) {
572 return capabilityNameOf(BitUtils.unpackBits(nonRequestable)[0]);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900573 }
574 if (mLinkUpBandwidthKbps != 0 || mLinkDownBandwidthKbps != 0) return "link bandwidth";
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900575 if (hasSignalStrength()) return "signalStrength";
lucaslin783f2212019-10-22 18:27:33 +0800576 if (isPrivateDnsBroken()) {
577 return "privateDnsBroken";
578 }
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900579 return null;
580 }
581
paulhud9736de2019-03-08 16:35:20 +0800582 private boolean satisfiedByNetCapabilities(@NonNull NetworkCapabilities nc,
583 boolean onlyImmutable) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800584 long requestedCapabilities = mNetworkCapabilities;
585 long requestedUnwantedCapabilities = mUnwantedNetworkCapabilities;
586 long providedCapabilities = nc.mNetworkCapabilities;
587
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900588 if (onlyImmutable) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800589 requestedCapabilities &= ~MUTABLE_CAPABILITIES;
590 requestedUnwantedCapabilities &= ~MUTABLE_CAPABILITIES;
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900591 }
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800592 return ((providedCapabilities & requestedCapabilities) == requestedCapabilities)
593 && ((requestedUnwantedCapabilities & providedCapabilities) == 0);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700594 }
595
Robert Greenwalt06314e42014-10-29 14:04:06 -0700596 /** @hide */
paulhud9736de2019-03-08 16:35:20 +0800597 public boolean equalsNetCapabilities(@NonNull NetworkCapabilities nc) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800598 return (nc.mNetworkCapabilities == this.mNetworkCapabilities)
599 && (nc.mUnwantedNetworkCapabilities == this.mUnwantedNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700600 }
601
paulhud9736de2019-03-08 16:35:20 +0800602 private boolean equalsNetCapabilitiesRequestable(@NonNull NetworkCapabilities that) {
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900603 return ((this.mNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES) ==
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800604 (that.mNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES))
605 && ((this.mUnwantedNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES) ==
606 (that.mUnwantedNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES));
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900607 }
608
Robert Greenwalt1448f052014-04-08 13:41:39 -0700609 /**
paulhu18354322020-01-09 17:08:11 +0800610 * Deduces that all the capabilities it provides are typically provided by restricted networks
611 * or not.
Paul Jensen487ffe72015-07-24 15:57:11 -0400612 *
paulhu18354322020-01-09 17:08:11 +0800613 * @return {@code true} if the network should be restricted.
Paul Jensen487ffe72015-07-24 15:57:11 -0400614 * @hide
615 */
paulhu18354322020-01-09 17:08:11 +0800616 @SystemApi
617 public boolean deduceRestrictedCapability() {
Pavel Maltsev4af91072018-03-07 14:33:22 -0800618 // Check if we have any capability that forces the network to be restricted.
619 final boolean forceRestrictedCapability =
620 (mNetworkCapabilities & FORCE_RESTRICTED_CAPABILITIES) != 0;
621
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700622 // Verify there aren't any unrestricted capabilities. If there are we say
Pavel Maltsev4af91072018-03-07 14:33:22 -0800623 // the whole thing is unrestricted unless it is forced to be restricted.
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700624 final boolean hasUnrestrictedCapabilities =
Pavel Maltsev4af91072018-03-07 14:33:22 -0800625 (mNetworkCapabilities & UNRESTRICTED_CAPABILITIES) != 0;
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700626
627 // Must have at least some restricted capabilities.
628 final boolean hasRestrictedCapabilities =
Pavel Maltsev4af91072018-03-07 14:33:22 -0800629 (mNetworkCapabilities & RESTRICTED_CAPABILITIES) != 0;
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700630
paulhu18354322020-01-09 17:08:11 +0800631 return forceRestrictedCapability
632 || (hasRestrictedCapabilities && !hasUnrestrictedCapabilities);
633 }
634
635 /**
636 * Removes the NET_CAPABILITY_NOT_RESTRICTED capability if deducing the network is restricted.
637 *
638 * @hide
639 */
640 public void maybeMarkCapabilitiesRestricted() {
641 if (deduceRestrictedCapability()) {
Paul Jensen487ffe72015-07-24 15:57:11 -0400642 removeCapability(NET_CAPABILITY_NOT_RESTRICTED);
Paul Jensenaae613d2015-08-19 11:06:15 -0400643 }
Paul Jensen487ffe72015-07-24 15:57:11 -0400644 }
645
646 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700647 * Representing the transport type. Apps should generally not care about transport. A
648 * request for a fast internet connection could be satisfied by a number of different
649 * transports. If any are specified here it will be satisfied a Network that matches
650 * any of them. If a caller doesn't care about the transport it should not specify any.
651 */
652 private long mTransportTypes;
653
Jeff Sharkeyde570312017-10-24 21:25:50 -0600654 /** @hide */
655 @Retention(RetentionPolicy.SOURCE)
656 @IntDef(prefix = { "TRANSPORT_" }, value = {
657 TRANSPORT_CELLULAR,
658 TRANSPORT_WIFI,
659 TRANSPORT_BLUETOOTH,
660 TRANSPORT_ETHERNET,
661 TRANSPORT_VPN,
662 TRANSPORT_WIFI_AWARE,
663 TRANSPORT_LOWPAN,
Benedict Wong89ce5e32018-11-14 17:40:55 -0800664 TRANSPORT_TEST,
Jeff Sharkeyde570312017-10-24 21:25:50 -0600665 })
666 public @interface Transport { }
667
Robert Greenwalt1448f052014-04-08 13:41:39 -0700668 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700669 * Indicates this network uses a Cellular transport.
Robert Greenwalt1448f052014-04-08 13:41:39 -0700670 */
671 public static final int TRANSPORT_CELLULAR = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700672
673 /**
674 * Indicates this network uses a Wi-Fi transport.
675 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700676 public static final int TRANSPORT_WIFI = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700677
678 /**
679 * Indicates this network uses a Bluetooth transport.
680 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700681 public static final int TRANSPORT_BLUETOOTH = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700682
683 /**
684 * Indicates this network uses an Ethernet transport.
685 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700686 public static final int TRANSPORT_ETHERNET = 3;
687
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400688 /**
689 * Indicates this network uses a VPN transport.
690 */
691 public static final int TRANSPORT_VPN = 4;
692
Etan Cohen305ea282016-06-20 09:27:12 -0700693 /**
Etan Cohen0849ded2016-10-26 11:22:06 -0700694 * Indicates this network uses a Wi-Fi Aware transport.
Etan Cohen305ea282016-06-20 09:27:12 -0700695 */
Etan Cohen0849ded2016-10-26 11:22:06 -0700696 public static final int TRANSPORT_WIFI_AWARE = 5;
Etan Cohen305ea282016-06-20 09:27:12 -0700697
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700698 /**
699 * Indicates this network uses a LoWPAN transport.
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700700 */
701 public static final int TRANSPORT_LOWPAN = 6;
702
Benedict Wong89ce5e32018-11-14 17:40:55 -0800703 /**
704 * Indicates this network uses a Test-only virtual interface as a transport.
705 *
706 * @hide
707 */
708 @TestApi
709 public static final int TRANSPORT_TEST = 7;
710
Hugo Benichi6a9bb8e2017-03-15 23:05:01 +0900711 /** @hide */
712 public static final int MIN_TRANSPORT = TRANSPORT_CELLULAR;
713 /** @hide */
Benedict Wong89ce5e32018-11-14 17:40:55 -0800714 public static final int MAX_TRANSPORT = TRANSPORT_TEST;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700715
Hugo Benichi16f0a942017-06-20 14:07:59 +0900716 /** @hide */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600717 public static boolean isValidTransport(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900718 return (MIN_TRANSPORT <= transportType) && (transportType <= MAX_TRANSPORT);
719 }
720
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900721 private static final String[] TRANSPORT_NAMES = {
722 "CELLULAR",
723 "WIFI",
724 "BLUETOOTH",
725 "ETHERNET",
726 "VPN",
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700727 "WIFI_AWARE",
Benedict Wong89ce5e32018-11-14 17:40:55 -0800728 "LOWPAN",
729 "TEST"
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900730 };
731
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700732 /**
733 * Adds the given transport type to this {@code NetworkCapability} instance.
734 * Multiple transports may be applied sequentially. Note that when searching
735 * for a network to satisfy a request, any listed in the request will satisfy the request.
736 * For example {@code TRANSPORT_WIFI} and {@code TRANSPORT_ETHERNET} added to a
737 * {@code NetworkCapabilities} would cause either a Wi-Fi network or an Ethernet network
738 * to be selected. This is logically different than
739 * {@code NetworkCapabilities.NET_CAPABILITY_*} listed above.
740 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600741 * @param transportType the transport type to be added.
Pierre Imaic8419a82016-03-22 17:54:54 +0900742 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700743 */
paulhud9736de2019-03-08 16:35:20 +0800744 public @NonNull NetworkCapabilities addTransportType(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900745 checkValidTransportType(transportType);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700746 mTransportTypes |= 1 << transportType;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700747 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700748 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700749 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700750
751 /**
752 * Removes (if found) the given transport from this {@code NetworkCapability} instance.
753 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600754 * @param transportType the transport type to be removed.
Pierre Imaic8419a82016-03-22 17:54:54 +0900755 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700756 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700757 */
paulhud9736de2019-03-08 16:35:20 +0800758 public @NonNull NetworkCapabilities removeTransportType(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900759 checkValidTransportType(transportType);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700760 mTransportTypes &= ~(1 << transportType);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700761 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700762 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700763 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700764
765 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600766 * Sets (or clears) the given transport on this {@link NetworkCapabilities}
767 * instance.
768 *
769 * @hide
770 */
paulhud9736de2019-03-08 16:35:20 +0800771 public @NonNull NetworkCapabilities setTransportType(@Transport int transportType,
772 boolean value) {
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600773 if (value) {
774 addTransportType(transportType);
775 } else {
776 removeTransportType(transportType);
777 }
778 return this;
779 }
780
781 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700782 * Gets all the transports set on this {@code NetworkCapability} instance.
783 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600784 * @return an array of transport type values for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700785 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700786 */
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -0600787 @TestApi
Remi NGUYEN VAN94a05572019-01-20 12:38:10 +0900788 @SystemApi
paulhud9736de2019-03-08 16:35:20 +0800789 @NonNull public @Transport int[] getTransportTypes() {
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900790 return BitUtils.unpackBits(mTransportTypes);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700791 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700792
793 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600794 * Sets all the transports set on this {@code NetworkCapability} instance.
Jeff Sharkey49bcd602017-11-09 13:11:50 -0700795 * This overwrites any existing transports.
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600796 *
797 * @hide
798 */
799 public void setTransportTypes(@Transport int[] transportTypes) {
800 mTransportTypes = BitUtils.packBits(transportTypes);
801 }
802
803 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700804 * Tests for the presence of a transport on this instance.
805 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600806 * @param transportType the transport type to be tested for.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700807 * @return {@code true} if set on this instance.
808 */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600809 public boolean hasTransport(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900810 return isValidTransport(transportType) && ((mTransportTypes & (1 << transportType)) != 0);
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700811 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700812
813 private void combineTransportTypes(NetworkCapabilities nc) {
814 this.mTransportTypes |= nc.mTransportTypes;
815 }
Hugo Benichieae7a222017-07-25 11:40:56 +0900816
Robert Greenwalt1448f052014-04-08 13:41:39 -0700817 private boolean satisfiedByTransportTypes(NetworkCapabilities nc) {
818 return ((this.mTransportTypes == 0) ||
819 ((this.mTransportTypes & nc.mTransportTypes) != 0));
820 }
Hugo Benichieae7a222017-07-25 11:40:56 +0900821
Robert Greenwalt06314e42014-10-29 14:04:06 -0700822 /** @hide */
823 public boolean equalsTransportTypes(NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700824 return (nc.mTransportTypes == this.mTransportTypes);
825 }
826
827 /**
Roshan Piusef628d32020-01-16 12:17:17 -0800828 * UID of the app that owns this network, or Process#INVALID_UID if none/unknown.
Chalard Jeanf474fc32018-01-17 15:10:05 +0900829 *
Qingxi Li7cf06622020-01-17 17:54:27 -0800830 * <p>This field keeps track of the UID of the app that created this network and is in charge of
831 * its lifecycle. This could be the UID of apps such as the Wifi network suggestor, the running
832 * VPN, or Carrier Service app managing a cellular data connection.
Chalard Jeanf474fc32018-01-17 15:10:05 +0900833 */
Qingxi Li7cf06622020-01-17 17:54:27 -0800834 private int mOwnerUid = Process.INVALID_UID;
Chalard Jeanf474fc32018-01-17 15:10:05 +0900835
836 /**
Qingxi Li7cf06622020-01-17 17:54:27 -0800837 * Set the UID of the owner app.
Chalard Jeanf474fc32018-01-17 15:10:05 +0900838 */
Roshan Piusef628d32020-01-16 12:17:17 -0800839 public @NonNull NetworkCapabilities setOwnerUid(final int uid) {
Qingxi Li7cf06622020-01-17 17:54:27 -0800840 mOwnerUid = uid;
Roshan Piusef628d32020-01-16 12:17:17 -0800841 return this;
Chalard Jeanf474fc32018-01-17 15:10:05 +0900842 }
843
Qingxi Li7cf06622020-01-17 17:54:27 -0800844 /**
845 * Retrieves the UID of the owner app.
846 */
847 public int getOwnerUid() {
848 return mOwnerUid;
Lorenzo Colitti4c9f9542019-04-12 10:48:06 +0000849 }
850
Chalard Jeanf474fc32018-01-17 15:10:05 +0900851 /**
Cody Kesting201fc132020-01-17 11:58:36 -0800852 * UIDs of packages that are administrators of this network, or empty if none.
853 *
854 * <p>This field tracks the UIDs of packages that have permission to manage this network.
855 *
856 * <p>Network owners will also be listed as administrators.
857 *
858 * <p>For NetworkCapability instances being sent from the System Server, this value MUST be
859 * empty unless the destination is 1) the System Server, or 2) Telephony. In either case, the
860 * receiving entity must have the ACCESS_FINE_LOCATION permission and target R+.
861 */
862 private final List<Integer> mAdministratorUids = new ArrayList<>();
863
864 /**
865 * Sets the list of UIDs that are administrators of this network.
866 *
867 * <p>UIDs included in administratorUids gain administrator privileges over this Network.
868 * Examples of UIDs that should be included in administratorUids are:
869 * <ul>
870 * <li>Carrier apps with privileges for the relevant subscription
871 * <li>Active VPN apps
872 * <li>Other application groups with a particular Network-related role
873 * </ul>
874 *
875 * <p>In general, user-supplied networks (such as WiFi networks) do not have an administrator.
876 *
Cody Kestingd198ed02020-01-05 14:06:39 -0800877 * <p>An app is granted owner privileges over Networks that it supplies. The owner UID MUST
878 * always be included in administratorUids.
Cody Kesting201fc132020-01-17 11:58:36 -0800879 *
880 * @param administratorUids the UIDs to be set as administrators of this Network.
881 * @hide
882 */
883 @SystemApi
Roshan Piusef628d32020-01-16 12:17:17 -0800884 public @NonNull NetworkCapabilities setAdministratorUids(
885 @NonNull final List<Integer> administratorUids) {
Cody Kesting201fc132020-01-17 11:58:36 -0800886 mAdministratorUids.clear();
887 mAdministratorUids.addAll(administratorUids);
Roshan Piusef628d32020-01-16 12:17:17 -0800888 return this;
Cody Kesting201fc132020-01-17 11:58:36 -0800889 }
890
891 /**
892 * Retrieves the list of UIDs that are administrators of this Network.
893 *
894 * @return the List of UIDs that are administrators of this Network
895 * @hide
896 */
897 @NonNull
898 @SystemApi
899 public List<Integer> getAdministratorUids() {
900 return Collections.unmodifiableList(mAdministratorUids);
901 }
902
903 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600904 * Value indicating that link bandwidth is unspecified.
905 * @hide
906 */
907 public static final int LINK_BANDWIDTH_UNSPECIFIED = 0;
908
909 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700910 * Passive link bandwidth. This is a rough guide of the expected peak bandwidth
911 * for the first hop on the given transport. It is not measured, but may take into account
912 * link parameters (Radio technology, allocated channels, etc).
913 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600914 private int mLinkUpBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
915 private int mLinkDownBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700916
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700917 /**
918 * Sets the upstream bandwidth for this network in Kbps. This always only refers to
919 * the estimated first hop transport bandwidth.
920 * <p>
921 * Note that when used to request a network, this specifies the minimum acceptable.
922 * When received as the state of an existing network this specifies the typical
923 * first hop bandwidth expected. This is never measured, but rather is inferred
924 * from technology type and other link parameters. It could be used to differentiate
925 * between very slow 1xRTT cellular links and other faster networks or even between
926 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
927 * fast backhauls and slow backhauls.
928 *
929 * @param upKbps the estimated first hop upstream (device to network) bandwidth.
930 */
paulhud9736de2019-03-08 16:35:20 +0800931 public @NonNull NetworkCapabilities setLinkUpstreamBandwidthKbps(int upKbps) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700932 mLinkUpBandwidthKbps = upKbps;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600933 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700934 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700935
936 /**
937 * Retrieves the upstream bandwidth for this network in Kbps. This always only refers to
938 * the estimated first hop transport bandwidth.
939 *
940 * @return The estimated first hop upstream (device to network) bandwidth.
941 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700942 public int getLinkUpstreamBandwidthKbps() {
943 return mLinkUpBandwidthKbps;
944 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700945
946 /**
947 * Sets the downstream bandwidth for this network in Kbps. This always only refers to
948 * the estimated first hop transport bandwidth.
949 * <p>
950 * Note that when used to request a network, this specifies the minimum acceptable.
951 * When received as the state of an existing network this specifies the typical
952 * first hop bandwidth expected. This is never measured, but rather is inferred
953 * from technology type and other link parameters. It could be used to differentiate
954 * between very slow 1xRTT cellular links and other faster networks or even between
955 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
956 * fast backhauls and slow backhauls.
957 *
958 * @param downKbps the estimated first hop downstream (network to device) bandwidth.
959 */
paulhud9736de2019-03-08 16:35:20 +0800960 public @NonNull NetworkCapabilities setLinkDownstreamBandwidthKbps(int downKbps) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700961 mLinkDownBandwidthKbps = downKbps;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600962 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700963 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700964
965 /**
966 * Retrieves the downstream bandwidth for this network in Kbps. This always only refers to
967 * the estimated first hop transport bandwidth.
968 *
969 * @return The estimated first hop downstream (network to device) bandwidth.
970 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700971 public int getLinkDownstreamBandwidthKbps() {
972 return mLinkDownBandwidthKbps;
973 }
974
975 private void combineLinkBandwidths(NetworkCapabilities nc) {
976 this.mLinkUpBandwidthKbps =
977 Math.max(this.mLinkUpBandwidthKbps, nc.mLinkUpBandwidthKbps);
978 this.mLinkDownBandwidthKbps =
979 Math.max(this.mLinkDownBandwidthKbps, nc.mLinkDownBandwidthKbps);
980 }
981 private boolean satisfiedByLinkBandwidths(NetworkCapabilities nc) {
982 return !(this.mLinkUpBandwidthKbps > nc.mLinkUpBandwidthKbps ||
983 this.mLinkDownBandwidthKbps > nc.mLinkDownBandwidthKbps);
984 }
985 private boolean equalsLinkBandwidths(NetworkCapabilities nc) {
986 return (this.mLinkUpBandwidthKbps == nc.mLinkUpBandwidthKbps &&
987 this.mLinkDownBandwidthKbps == nc.mLinkDownBandwidthKbps);
988 }
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600989 /** @hide */
990 public static int minBandwidth(int a, int b) {
991 if (a == LINK_BANDWIDTH_UNSPECIFIED) {
992 return b;
993 } else if (b == LINK_BANDWIDTH_UNSPECIFIED) {
994 return a;
995 } else {
996 return Math.min(a, b);
997 }
998 }
999 /** @hide */
1000 public static int maxBandwidth(int a, int b) {
1001 return Math.max(a, b);
1002 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001003
Etan Cohena7434272017-04-03 12:17:51 -07001004 private NetworkSpecifier mNetworkSpecifier = null;
Etan Cohenca9fb562018-11-27 07:32:39 -08001005 private TransportInfo mTransportInfo = null;
Etan Cohena7434272017-04-03 12:17:51 -07001006
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001007 /**
1008 * Sets the optional bearer specific network specifier.
1009 * This has no meaning if a single transport is also not specified, so calling
1010 * this without a single transport set will generate an exception, as will
1011 * subsequently adding or removing transports after this is set.
1012 * </p>
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001013 *
Etan Cohena7434272017-04-03 12:17:51 -07001014 * @param networkSpecifier A concrete, parcelable framework class that extends
1015 * NetworkSpecifier.
Pierre Imaic8419a82016-03-22 17:54:54 +09001016 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001017 */
Aaron Huange6b62392019-09-20 22:52:54 +08001018 public @NonNull NetworkCapabilities setNetworkSpecifier(
1019 @NonNull NetworkSpecifier networkSpecifier) {
Etan Cohena7434272017-04-03 12:17:51 -07001020 if (networkSpecifier != null && Long.bitCount(mTransportTypes) != 1) {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001021 throw new IllegalStateException("Must have a single transport specified to use " +
1022 "setNetworkSpecifier");
1023 }
Etan Cohena7434272017-04-03 12:17:51 -07001024
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001025 mNetworkSpecifier = networkSpecifier;
Etan Cohena7434272017-04-03 12:17:51 -07001026
Pierre Imaic8419a82016-03-22 17:54:54 +09001027 return this;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001028 }
1029
1030 /**
Etan Cohenca9fb562018-11-27 07:32:39 -08001031 * Sets the optional transport specific information.
1032 *
1033 * @param transportInfo A concrete, parcelable framework class that extends
1034 * {@link TransportInfo}.
1035 * @return This NetworkCapabilities instance, to facilitate chaining.
1036 * @hide
1037 */
Aaron Huange6b62392019-09-20 22:52:54 +08001038 @SystemApi
1039 public @NonNull NetworkCapabilities setTransportInfo(@NonNull TransportInfo transportInfo) {
Etan Cohenca9fb562018-11-27 07:32:39 -08001040 mTransportInfo = transportInfo;
1041 return this;
1042 }
1043
1044 /**
paulhud9736de2019-03-08 16:35:20 +08001045 * Gets the optional bearer specific network specifier. May be {@code null} if not set.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001046 *
Etan Cohena7434272017-04-03 12:17:51 -07001047 * @return The optional {@link NetworkSpecifier} specifying the bearer specific network
paulhud9736de2019-03-08 16:35:20 +08001048 * specifier or {@code null}. See {@link #setNetworkSpecifier}.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001049 */
paulhud9736de2019-03-08 16:35:20 +08001050 public @Nullable NetworkSpecifier getNetworkSpecifier() {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001051 return mNetworkSpecifier;
1052 }
1053
Etan Cohenca9fb562018-11-27 07:32:39 -08001054 /**
1055 * Returns a transport-specific information container. The application may cast this
1056 * container to a concrete sub-class based on its knowledge of the network request. The
1057 * application should be able to deal with a {@code null} return value or an invalid case,
Etan Cohenbd648ce2018-12-10 14:07:15 -08001058 * e.g. use {@code instanceof} operator to verify expected type.
Etan Cohenca9fb562018-11-27 07:32:39 -08001059 *
1060 * @return A concrete implementation of the {@link TransportInfo} class or null if not
1061 * available for the network.
1062 */
1063 @Nullable public TransportInfo getTransportInfo() {
1064 return mTransportInfo;
1065 }
1066
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001067 private void combineSpecifiers(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -07001068 if (mNetworkSpecifier != null && !mNetworkSpecifier.equals(nc.mNetworkSpecifier)) {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001069 throw new IllegalStateException("Can't combine two networkSpecifiers");
1070 }
Etan Cohena7434272017-04-03 12:17:51 -07001071 setNetworkSpecifier(nc.mNetworkSpecifier);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001072 }
Etan Cohena7434272017-04-03 12:17:51 -07001073
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001074 private boolean satisfiedBySpecifier(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -07001075 return mNetworkSpecifier == null || mNetworkSpecifier.satisfiedBy(nc.mNetworkSpecifier)
1076 || nc.mNetworkSpecifier instanceof MatchAllNetworkSpecifier;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001077 }
Etan Cohena7434272017-04-03 12:17:51 -07001078
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001079 private boolean equalsSpecifier(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -07001080 return Objects.equals(mNetworkSpecifier, nc.mNetworkSpecifier);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001081 }
1082
Etan Cohenca9fb562018-11-27 07:32:39 -08001083 private void combineTransportInfos(NetworkCapabilities nc) {
1084 if (mTransportInfo != null && !mTransportInfo.equals(nc.mTransportInfo)) {
1085 throw new IllegalStateException("Can't combine two TransportInfos");
1086 }
1087 setTransportInfo(nc.mTransportInfo);
1088 }
1089
1090 private boolean equalsTransportInfo(NetworkCapabilities nc) {
1091 return Objects.equals(mTransportInfo, nc.mTransportInfo);
1092 }
1093
Robert Greenwalt1448f052014-04-08 13:41:39 -07001094 /**
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001095 * Magic value that indicates no signal strength provided. A request specifying this value is
1096 * always satisfied.
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001097 */
1098 public static final int SIGNAL_STRENGTH_UNSPECIFIED = Integer.MIN_VALUE;
1099
1100 /**
1101 * Signal strength. This is a signed integer, and higher values indicate better signal.
1102 * The exact units are bearer-dependent. For example, Wi-Fi uses RSSI.
1103 */
paulhud9736de2019-03-08 16:35:20 +08001104 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P)
Jeff Sharkey49bcd602017-11-09 13:11:50 -07001105 private int mSignalStrength = SIGNAL_STRENGTH_UNSPECIFIED;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001106
1107 /**
1108 * Sets the signal strength. This is a signed integer, with higher values indicating a stronger
1109 * signal. The exact units are bearer-dependent. For example, Wi-Fi uses the same RSSI units
Chalard Jeanb03a6222018-04-11 21:09:10 +09001110 * reported by wifi code.
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001111 * <p>
1112 * Note that when used to register a network callback, this specifies the minimum acceptable
1113 * signal strength. When received as the state of an existing network it specifies the current
1114 * value. A value of code SIGNAL_STRENGTH_UNSPECIFIED} means no value when received and has no
1115 * effect when requesting a callback.
1116 *
1117 * @param signalStrength the bearer-specific signal strength.
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001118 */
paulhud9736de2019-03-08 16:35:20 +08001119 public @NonNull NetworkCapabilities setSignalStrength(int signalStrength) {
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001120 mSignalStrength = signalStrength;
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001121 return this;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001122 }
1123
1124 /**
1125 * Returns {@code true} if this object specifies a signal strength.
1126 *
1127 * @hide
1128 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +01001129 @UnsupportedAppUsage
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001130 public boolean hasSignalStrength() {
1131 return mSignalStrength > SIGNAL_STRENGTH_UNSPECIFIED;
1132 }
1133
1134 /**
1135 * Retrieves the signal strength.
1136 *
1137 * @return The bearer-specific signal strength.
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001138 */
1139 public int getSignalStrength() {
1140 return mSignalStrength;
1141 }
1142
1143 private void combineSignalStrength(NetworkCapabilities nc) {
1144 this.mSignalStrength = Math.max(this.mSignalStrength, nc.mSignalStrength);
1145 }
1146
1147 private boolean satisfiedBySignalStrength(NetworkCapabilities nc) {
1148 return this.mSignalStrength <= nc.mSignalStrength;
1149 }
1150
1151 private boolean equalsSignalStrength(NetworkCapabilities nc) {
1152 return this.mSignalStrength == nc.mSignalStrength;
1153 }
1154
1155 /**
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001156 * List of UIDs this network applies to. No restriction if null.
1157 * <p>
Chalard Jeanb552c462018-02-21 18:43:54 +09001158 * For networks, mUids represent the list of network this applies to, and null means this
1159 * network applies to all UIDs.
1160 * For requests, mUids is the list of UIDs this network MUST apply to to match ; ALL UIDs
1161 * must be included in a network so that they match. As an exception to the general rule,
1162 * a null mUids field for requests mean "no requirements" rather than what the general rule
1163 * would suggest ("must apply to all UIDs") : this is because this has shown to be what users
1164 * of this API expect in practice. A network that must match all UIDs can still be
1165 * expressed with a set ranging the entire set of possible UIDs.
1166 * <p>
1167 * mUids is typically (and at this time, only) used by VPN. This network is only available to
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001168 * the UIDs in this list, and it is their default network. Apps in this list that wish to
1169 * bypass the VPN can do so iff the VPN app allows them to or if they are privileged. If this
1170 * member is null, then the network is not restricted by app UID. If it's an empty list, then
1171 * it means nobody can use it.
Chalard Jeanf474fc32018-01-17 15:10:05 +09001172 * As a special exception, the app managing this network (as identified by its UID stored in
Qingxi Li7cf06622020-01-17 17:54:27 -08001173 * mOwnerUid) can always see this network. This is embodied by a special check in
Chalard Jeanf474fc32018-01-17 15:10:05 +09001174 * satisfiedByUids. That still does not mean the network necessarily <strong>applies</strong>
1175 * to the app that manages it as determined by #appliesToUid.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001176 * <p>
1177 * Please note that in principle a single app can be associated with multiple UIDs because
1178 * each app will have a different UID when it's run as a different (macro-)user. A single
1179 * macro user can only have a single active VPN app at any given time however.
1180 * <p>
1181 * Also please be aware this class does not try to enforce any normalization on this. Callers
1182 * can only alter the UIDs by setting them wholesale : this class does not provide any utility
1183 * to add or remove individual UIDs or ranges. If callers have any normalization needs on
1184 * their own (like requiring sortedness or no overlap) they need to enforce it
1185 * themselves. Some of the internal methods also assume this is normalized as in no adjacent
1186 * or overlapping ranges are present.
1187 *
1188 * @hide
1189 */
Chalard Jean477e36c2018-01-25 09:41:51 +09001190 private ArraySet<UidRange> mUids = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001191
1192 /**
Chalard Jeandda156a2018-01-10 21:19:32 +09001193 * Convenience method to set the UIDs this network applies to to a single UID.
1194 * @hide
1195 */
paulhud9736de2019-03-08 16:35:20 +08001196 public @NonNull NetworkCapabilities setSingleUid(int uid) {
Chalard Jeandda156a2018-01-10 21:19:32 +09001197 final ArraySet<UidRange> identity = new ArraySet<>(1);
1198 identity.add(new UidRange(uid, uid));
1199 setUids(identity);
1200 return this;
1201 }
1202
1203 /**
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001204 * Set the list of UIDs this network applies to.
1205 * This makes a copy of the set so that callers can't modify it after the call.
1206 * @hide
1207 */
paulhud9736de2019-03-08 16:35:20 +08001208 public @NonNull NetworkCapabilities setUids(Set<UidRange> uids) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001209 if (null == uids) {
1210 mUids = null;
1211 } else {
1212 mUids = new ArraySet<>(uids);
1213 }
1214 return this;
1215 }
1216
1217 /**
1218 * Get the list of UIDs this network applies to.
1219 * This returns a copy of the set so that callers can't modify the original object.
1220 * @hide
1221 */
paulhud9736de2019-03-08 16:35:20 +08001222 public @Nullable Set<UidRange> getUids() {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001223 return null == mUids ? null : new ArraySet<>(mUids);
1224 }
1225
1226 /**
1227 * Test whether this network applies to this UID.
1228 * @hide
1229 */
1230 public boolean appliesToUid(int uid) {
1231 if (null == mUids) return true;
1232 for (UidRange range : mUids) {
1233 if (range.contains(uid)) {
1234 return true;
1235 }
1236 }
1237 return false;
1238 }
1239
1240 /**
Chalard Jeanb03a6222018-04-11 21:09:10 +09001241 * Tests if the set of UIDs that this network applies to is the same as the passed network.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001242 * <p>
1243 * This test only checks whether equal range objects are in both sets. It will
1244 * return false if the ranges are not exactly the same, even if the covered UIDs
1245 * are for an equivalent result.
1246 * <p>
1247 * Note that this method is not very optimized, which is fine as long as it's not used very
1248 * often.
1249 * <p>
1250 * nc is assumed nonnull.
1251 *
1252 * @hide
1253 */
1254 @VisibleForTesting
paulhud9736de2019-03-08 16:35:20 +08001255 public boolean equalsUids(@NonNull NetworkCapabilities nc) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001256 Set<UidRange> comparedUids = nc.mUids;
1257 if (null == comparedUids) return null == mUids;
1258 if (null == mUids) return false;
1259 // Make a copy so it can be mutated to check that all ranges in mUids
1260 // also are in uids.
1261 final Set<UidRange> uids = new ArraySet<>(mUids);
1262 for (UidRange range : comparedUids) {
1263 if (!uids.contains(range)) {
1264 return false;
1265 }
1266 uids.remove(range);
1267 }
1268 return uids.isEmpty();
1269 }
1270
1271 /**
1272 * Test whether the passed NetworkCapabilities satisfies the UIDs this capabilities require.
1273 *
Chalard Jeanf474fc32018-01-17 15:10:05 +09001274 * This method is called on the NetworkCapabilities embedded in a request with the
1275 * capabilities of an available network. It checks whether all the UIDs from this listen
1276 * (representing the UIDs that must have access to the network) are satisfied by the UIDs
1277 * in the passed nc (representing the UIDs that this network is available to).
1278 * <p>
1279 * As a special exception, the UID that created the passed network (as represented by its
Qingxi Li7cf06622020-01-17 17:54:27 -08001280 * mOwnerUid field) always satisfies a NetworkRequest requiring it (of LISTEN
Chalard Jeanf474fc32018-01-17 15:10:05 +09001281 * or REQUEST types alike), even if the network does not apply to it. That is so a VPN app
1282 * can see its own network when it listens for it.
1283 * <p>
1284 * nc is assumed nonnull. Else, NPE.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001285 * @see #appliesToUid
1286 * @hide
1287 */
paulhud9736de2019-03-08 16:35:20 +08001288 public boolean satisfiedByUids(@NonNull NetworkCapabilities nc) {
Chalard Jeanb552c462018-02-21 18:43:54 +09001289 if (null == nc.mUids || null == mUids) return true; // The network satisfies everything.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001290 for (UidRange requiredRange : mUids) {
Qingxi Li7cf06622020-01-17 17:54:27 -08001291 if (requiredRange.contains(nc.mOwnerUid)) return true;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001292 if (!nc.appliesToUidRange(requiredRange)) {
1293 return false;
1294 }
1295 }
1296 return true;
1297 }
1298
1299 /**
1300 * Returns whether this network applies to the passed ranges.
1301 * This assumes that to apply, the passed range has to be entirely contained
1302 * within one of the ranges this network applies to. If the ranges are not normalized,
1303 * this method may return false even though all required UIDs are covered because no
1304 * single range contained them all.
1305 * @hide
1306 */
1307 @VisibleForTesting
paulhud9736de2019-03-08 16:35:20 +08001308 public boolean appliesToUidRange(@Nullable UidRange requiredRange) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001309 if (null == mUids) return true;
1310 for (UidRange uidRange : mUids) {
1311 if (uidRange.containsRange(requiredRange)) {
1312 return true;
1313 }
1314 }
1315 return false;
1316 }
1317
1318 /**
1319 * Combine the UIDs this network currently applies to with the UIDs the passed
1320 * NetworkCapabilities apply to.
1321 * nc is assumed nonnull.
1322 */
paulhud9736de2019-03-08 16:35:20 +08001323 private void combineUids(@NonNull NetworkCapabilities nc) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001324 if (null == nc.mUids || null == mUids) {
1325 mUids = null;
1326 return;
1327 }
1328 mUids.addAll(nc.mUids);
1329 }
1330
Chalard Jeanb03a6222018-04-11 21:09:10 +09001331
1332 /**
1333 * The SSID of the network, or null if not applicable or unknown.
1334 * <p>
1335 * This is filled in by wifi code.
1336 * @hide
1337 */
1338 private String mSSID;
1339
1340 /**
1341 * Sets the SSID of this network.
1342 * @hide
1343 */
Aaron Huange6b62392019-09-20 22:52:54 +08001344 @SystemApi
paulhud9736de2019-03-08 16:35:20 +08001345 public @NonNull NetworkCapabilities setSSID(@Nullable String ssid) {
Chalard Jeanb03a6222018-04-11 21:09:10 +09001346 mSSID = ssid;
1347 return this;
1348 }
1349
1350 /**
1351 * Gets the SSID of this network, or null if none or unknown.
1352 * @hide
1353 */
Remi NGUYEN VANaa4c5112020-01-22 22:52:53 +09001354 @SystemApi
paulhud9736de2019-03-08 16:35:20 +08001355 public @Nullable String getSSID() {
Chalard Jeanb03a6222018-04-11 21:09:10 +09001356 return mSSID;
1357 }
1358
1359 /**
1360 * Tests if the SSID of this network is the same as the SSID of the passed network.
1361 * @hide
1362 */
paulhud9736de2019-03-08 16:35:20 +08001363 public boolean equalsSSID(@NonNull NetworkCapabilities nc) {
Chalard Jeanb03a6222018-04-11 21:09:10 +09001364 return Objects.equals(mSSID, nc.mSSID);
1365 }
1366
1367 /**
1368 * Check if the SSID requirements of this object are matched by the passed object.
1369 * @hide
1370 */
paulhud9736de2019-03-08 16:35:20 +08001371 public boolean satisfiedBySSID(@NonNull NetworkCapabilities nc) {
Chalard Jeanb03a6222018-04-11 21:09:10 +09001372 return mSSID == null || mSSID.equals(nc.mSSID);
1373 }
1374
1375 /**
1376 * Combine SSIDs of the capabilities.
1377 * <p>
1378 * This is only legal if either the SSID of this object is null, or both SSIDs are
1379 * equal.
1380 * @hide
1381 */
paulhud9736de2019-03-08 16:35:20 +08001382 private void combineSSIDs(@NonNull NetworkCapabilities nc) {
Chalard Jeanb03a6222018-04-11 21:09:10 +09001383 if (mSSID != null && !mSSID.equals(nc.mSSID)) {
1384 throw new IllegalStateException("Can't combine two SSIDs");
1385 }
1386 setSSID(nc.mSSID);
1387 }
1388
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001389 /**
Pavel Maltseve18ef262018-03-07 11:13:04 -08001390 * Combine a set of Capabilities to this one. Useful for coming up with the complete set.
1391 * <p>
1392 * Note that this method may break an invariant of having a particular capability in either
1393 * wanted or unwanted lists but never in both. Requests that have the same capability in
1394 * both lists will never be satisfied.
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001395 * @hide
Robert Greenwalt1448f052014-04-08 13:41:39 -07001396 */
paulhud9736de2019-03-08 16:35:20 +08001397 public void combineCapabilities(@NonNull NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -07001398 combineNetCapabilities(nc);
1399 combineTransportTypes(nc);
1400 combineLinkBandwidths(nc);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001401 combineSpecifiers(nc);
Etan Cohenca9fb562018-11-27 07:32:39 -08001402 combineTransportInfos(nc);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001403 combineSignalStrength(nc);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001404 combineUids(nc);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001405 combineSSIDs(nc);
Roshan Piusef628d32020-01-16 12:17:17 -08001406 combineRequestor(nc);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001407 }
1408
1409 /**
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001410 * Check if our requirements are satisfied by the given {@code NetworkCapabilities}.
1411 *
1412 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1413 * @param onlyImmutable if {@code true}, do not consider mutable requirements such as link
1414 * bandwidth, signal strength, or validation / captive portal status.
1415 *
1416 * @hide
1417 */
1418 private boolean satisfiedByNetworkCapabilities(NetworkCapabilities nc, boolean onlyImmutable) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001419 return (nc != null
1420 && satisfiedByNetCapabilities(nc, onlyImmutable)
1421 && satisfiedByTransportTypes(nc)
1422 && (onlyImmutable || satisfiedByLinkBandwidths(nc))
1423 && satisfiedBySpecifier(nc)
1424 && (onlyImmutable || satisfiedBySignalStrength(nc))
Chalard Jeanb03a6222018-04-11 21:09:10 +09001425 && (onlyImmutable || satisfiedByUids(nc))
Roshan Piusef628d32020-01-16 12:17:17 -08001426 && (onlyImmutable || satisfiedBySSID(nc)))
1427 && (onlyImmutable || satisfiedByRequestor(nc));
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001428 }
1429
1430 /**
1431 * Check if our requirements are satisfied by the given {@code NetworkCapabilities}.
1432 *
1433 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1434 *
1435 * @hide
Robert Greenwalt1448f052014-04-08 13:41:39 -07001436 */
Remi NGUYEN VAN94a05572019-01-20 12:38:10 +09001437 @TestApi
1438 @SystemApi
paulhud9736de2019-03-08 16:35:20 +08001439 public boolean satisfiedByNetworkCapabilities(@Nullable NetworkCapabilities nc) {
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001440 return satisfiedByNetworkCapabilities(nc, false);
1441 }
1442
1443 /**
1444 * Check if our immutable requirements are satisfied by the given {@code NetworkCapabilities}.
1445 *
1446 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1447 *
1448 * @hide
1449 */
paulhud9736de2019-03-08 16:35:20 +08001450 public boolean satisfiedByImmutableNetworkCapabilities(@Nullable NetworkCapabilities nc) {
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001451 return satisfiedByNetworkCapabilities(nc, true);
1452 }
1453
1454 /**
1455 * Checks that our immutable capabilities are the same as those of the given
Hugo Benichieae7a222017-07-25 11:40:56 +09001456 * {@code NetworkCapabilities} and return a String describing any difference.
1457 * The returned String is empty if there is no difference.
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001458 *
1459 * @hide
1460 */
paulhud9736de2019-03-08 16:35:20 +08001461 public String describeImmutableDifferences(@Nullable NetworkCapabilities that) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001462 if (that == null) {
1463 return "other NetworkCapabilities was null";
1464 }
1465
1466 StringJoiner joiner = new StringJoiner(", ");
1467
Hugo Benichieae7a222017-07-25 11:40:56 +09001468 // Ignore NOT_METERED being added or removed as it is effectively dynamic. http://b/63326103
1469 // TODO: properly support NOT_METERED as a mutable and requestable capability.
Hugo Benichi2ecb9402017-08-04 13:18:40 +09001470 final long mask = ~MUTABLE_CAPABILITIES & ~(1 << NET_CAPABILITY_NOT_METERED);
Hugo Benichieae7a222017-07-25 11:40:56 +09001471 long oldImmutableCapabilities = this.mNetworkCapabilities & mask;
1472 long newImmutableCapabilities = that.mNetworkCapabilities & mask;
1473 if (oldImmutableCapabilities != newImmutableCapabilities) {
1474 String before = capabilityNamesOf(BitUtils.unpackBits(oldImmutableCapabilities));
1475 String after = capabilityNamesOf(BitUtils.unpackBits(newImmutableCapabilities));
1476 joiner.add(String.format("immutable capabilities changed: %s -> %s", before, after));
1477 }
1478
1479 if (!equalsSpecifier(that)) {
1480 NetworkSpecifier before = this.getNetworkSpecifier();
1481 NetworkSpecifier after = that.getNetworkSpecifier();
1482 joiner.add(String.format("specifier changed: %s -> %s", before, after));
1483 }
1484
1485 if (!equalsTransportTypes(that)) {
1486 String before = transportNamesOf(this.getTransportTypes());
1487 String after = transportNamesOf(that.getTransportTypes());
1488 joiner.add(String.format("transports changed: %s -> %s", before, after));
1489 }
1490
1491 return joiner.toString();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001492 }
1493
Lorenzo Colittif0e9a332016-07-18 18:40:42 +09001494 /**
1495 * Checks that our requestable capabilities are the same as those of the given
1496 * {@code NetworkCapabilities}.
1497 *
1498 * @hide
1499 */
paulhud9736de2019-03-08 16:35:20 +08001500 public boolean equalRequestableCapabilities(@Nullable NetworkCapabilities nc) {
Lorenzo Colittif0e9a332016-07-18 18:40:42 +09001501 if (nc == null) return false;
1502 return (equalsNetCapabilitiesRequestable(nc) &&
1503 equalsTransportTypes(nc) &&
1504 equalsSpecifier(nc));
1505 }
1506
Robert Greenwalt1448f052014-04-08 13:41:39 -07001507 @Override
paulhud9736de2019-03-08 16:35:20 +08001508 public boolean equals(@Nullable Object obj) {
Robert Greenwalt1448f052014-04-08 13:41:39 -07001509 if (obj == null || (obj instanceof NetworkCapabilities == false)) return false;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001510 NetworkCapabilities that = (NetworkCapabilities) obj;
Roshan Piusef628d32020-01-16 12:17:17 -08001511 return equalsNetCapabilities(that)
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001512 && equalsTransportTypes(that)
1513 && equalsLinkBandwidths(that)
1514 && equalsSignalStrength(that)
1515 && equalsSpecifier(that)
Etan Cohenca9fb562018-11-27 07:32:39 -08001516 && equalsTransportInfo(that)
Chalard Jeanb03a6222018-04-11 21:09:10 +09001517 && equalsUids(that)
lucaslin783f2212019-10-22 18:27:33 +08001518 && equalsSSID(that)
Roshan Piusef628d32020-01-16 12:17:17 -08001519 && equalsPrivateDnsBroken(that)
1520 && equalsRequestor(that);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001521 }
1522
1523 @Override
1524 public int hashCode() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001525 return (int) (mNetworkCapabilities & 0xFFFFFFFF)
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001526 + ((int) (mNetworkCapabilities >> 32) * 3)
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001527 + ((int) (mUnwantedNetworkCapabilities & 0xFFFFFFFF) * 5)
1528 + ((int) (mUnwantedNetworkCapabilities >> 32) * 7)
1529 + ((int) (mTransportTypes & 0xFFFFFFFF) * 11)
1530 + ((int) (mTransportTypes >> 32) * 13)
1531 + (mLinkUpBandwidthKbps * 17)
1532 + (mLinkDownBandwidthKbps * 19)
1533 + Objects.hashCode(mNetworkSpecifier) * 23
1534 + (mSignalStrength * 29)
Chalard Jeanb03a6222018-04-11 21:09:10 +09001535 + Objects.hashCode(mUids) * 31
Etan Cohenca9fb562018-11-27 07:32:39 -08001536 + Objects.hashCode(mSSID) * 37
lucaslin783f2212019-10-22 18:27:33 +08001537 + Objects.hashCode(mTransportInfo) * 41
Roshan Piusef628d32020-01-16 12:17:17 -08001538 + Objects.hashCode(mPrivateDnsBroken) * 43
1539 + Objects.hashCode(mRequestorUid) * 47
1540 + Objects.hashCode(mRequestorPackageName) * 53;
Robert Greenwalt1448f052014-04-08 13:41:39 -07001541 }
1542
Wink Saville4e2dea72014-09-20 11:04:03 -07001543 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001544 public int describeContents() {
1545 return 0;
1546 }
Cody Kesting201fc132020-01-17 11:58:36 -08001547
Wink Saville4e2dea72014-09-20 11:04:03 -07001548 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001549 public void writeToParcel(Parcel dest, int flags) {
1550 dest.writeLong(mNetworkCapabilities);
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001551 dest.writeLong(mUnwantedNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001552 dest.writeLong(mTransportTypes);
1553 dest.writeInt(mLinkUpBandwidthKbps);
1554 dest.writeInt(mLinkDownBandwidthKbps);
Etan Cohena7434272017-04-03 12:17:51 -07001555 dest.writeParcelable((Parcelable) mNetworkSpecifier, flags);
Etan Cohenca9fb562018-11-27 07:32:39 -08001556 dest.writeParcelable((Parcelable) mTransportInfo, flags);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001557 dest.writeInt(mSignalStrength);
Chalard Jean477e36c2018-01-25 09:41:51 +09001558 dest.writeArraySet(mUids);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001559 dest.writeString(mSSID);
lucaslin783f2212019-10-22 18:27:33 +08001560 dest.writeBoolean(mPrivateDnsBroken);
Cody Kesting201fc132020-01-17 11:58:36 -08001561 dest.writeList(mAdministratorUids);
Qingxi Li7cf06622020-01-17 17:54:27 -08001562 dest.writeInt(mOwnerUid);
Roshan Piusef628d32020-01-16 12:17:17 -08001563 dest.writeInt(mRequestorUid);
1564 dest.writeString(mRequestorPackageName);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001565 }
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001566
Jeff Sharkey9e8f83d2019-02-28 12:06:45 -07001567 public static final @android.annotation.NonNull Creator<NetworkCapabilities> CREATOR =
Robert Greenwalt1448f052014-04-08 13:41:39 -07001568 new Creator<NetworkCapabilities>() {
Wink Saville4e2dea72014-09-20 11:04:03 -07001569 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001570 public NetworkCapabilities createFromParcel(Parcel in) {
1571 NetworkCapabilities netCap = new NetworkCapabilities();
1572
1573 netCap.mNetworkCapabilities = in.readLong();
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001574 netCap.mUnwantedNetworkCapabilities = in.readLong();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001575 netCap.mTransportTypes = in.readLong();
1576 netCap.mLinkUpBandwidthKbps = in.readInt();
1577 netCap.mLinkDownBandwidthKbps = in.readInt();
Etan Cohena7434272017-04-03 12:17:51 -07001578 netCap.mNetworkSpecifier = in.readParcelable(null);
Etan Cohenca9fb562018-11-27 07:32:39 -08001579 netCap.mTransportInfo = in.readParcelable(null);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001580 netCap.mSignalStrength = in.readInt();
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001581 netCap.mUids = (ArraySet<UidRange>) in.readArraySet(
1582 null /* ClassLoader, null for default */);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001583 netCap.mSSID = in.readString();
lucaslin783f2212019-10-22 18:27:33 +08001584 netCap.mPrivateDnsBroken = in.readBoolean();
Cody Kesting201fc132020-01-17 11:58:36 -08001585 netCap.setAdministratorUids(in.readArrayList(null));
Qingxi Li7cf06622020-01-17 17:54:27 -08001586 netCap.mOwnerUid = in.readInt();
Roshan Piusef628d32020-01-16 12:17:17 -08001587 netCap.mRequestorUid = in.readInt();
1588 netCap.mRequestorPackageName = in.readString();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001589 return netCap;
1590 }
Wink Saville4e2dea72014-09-20 11:04:03 -07001591 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001592 public NetworkCapabilities[] newArray(int size) {
1593 return new NetworkCapabilities[size];
1594 }
1595 };
1596
Wink Saville4e2dea72014-09-20 11:04:03 -07001597 @Override
paulhud9736de2019-03-08 16:35:20 +08001598 public @NonNull String toString() {
Chalard Jean07ace0f2018-02-26 19:00:45 +09001599 final StringBuilder sb = new StringBuilder("[");
1600 if (0 != mTransportTypes) {
1601 sb.append(" Transports: ");
1602 appendStringRepresentationOfBitMaskToStringBuilder(sb, mTransportTypes,
1603 NetworkCapabilities::transportNameOf, "|");
1604 }
1605 if (0 != mNetworkCapabilities) {
1606 sb.append(" Capabilities: ");
1607 appendStringRepresentationOfBitMaskToStringBuilder(sb, mNetworkCapabilities,
1608 NetworkCapabilities::capabilityNameOf, "&");
1609 }
jiayanhonge20a4fe2018-11-23 14:23:04 +08001610 if (0 != mUnwantedNetworkCapabilities) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001611 sb.append(" Unwanted: ");
1612 appendStringRepresentationOfBitMaskToStringBuilder(sb, mUnwantedNetworkCapabilities,
1613 NetworkCapabilities::capabilityNameOf, "&");
1614 }
Chalard Jean07ace0f2018-02-26 19:00:45 +09001615 if (mLinkUpBandwidthKbps > 0) {
1616 sb.append(" LinkUpBandwidth>=").append(mLinkUpBandwidthKbps).append("Kbps");
1617 }
1618 if (mLinkDownBandwidthKbps > 0) {
1619 sb.append(" LinkDnBandwidth>=").append(mLinkDownBandwidthKbps).append("Kbps");
1620 }
1621 if (mNetworkSpecifier != null) {
1622 sb.append(" Specifier: <").append(mNetworkSpecifier).append(">");
1623 }
Etan Cohenca9fb562018-11-27 07:32:39 -08001624 if (mTransportInfo != null) {
1625 sb.append(" TransportInfo: <").append(mTransportInfo).append(">");
1626 }
Chalard Jean07ace0f2018-02-26 19:00:45 +09001627 if (hasSignalStrength()) {
1628 sb.append(" SignalStrength: ").append(mSignalStrength);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001629 }
1630
Chalard Jean07ace0f2018-02-26 19:00:45 +09001631 if (null != mUids) {
1632 if ((1 == mUids.size()) && (mUids.valueAt(0).count() == 1)) {
1633 sb.append(" Uid: ").append(mUids.valueAt(0).start);
1634 } else {
1635 sb.append(" Uids: <").append(mUids).append(">");
1636 }
1637 }
Qingxi Li7cf06622020-01-17 17:54:27 -08001638 if (mOwnerUid != Process.INVALID_UID) {
1639 sb.append(" OwnerUid: ").append(mOwnerUid);
Chalard Jean07ace0f2018-02-26 19:00:45 +09001640 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001641
Cody Kesting201fc132020-01-17 11:58:36 -08001642 if (!mAdministratorUids.isEmpty()) {
1643 sb.append(" AdministratorUids: ").append(mAdministratorUids);
1644 }
1645
Chalard Jeanb03a6222018-04-11 21:09:10 +09001646 if (null != mSSID) {
1647 sb.append(" SSID: ").append(mSSID);
1648 }
1649
lucaslin783f2212019-10-22 18:27:33 +08001650 if (mPrivateDnsBroken) {
1651 sb.append(" Private DNS is broken");
1652 }
1653
Roshan Piusef628d32020-01-16 12:17:17 -08001654 sb.append(" RequestorUid: ").append(mRequestorUid);
1655 sb.append(" RequestorPackageName: ").append(mRequestorPackageName);
1656
Chalard Jean07ace0f2018-02-26 19:00:45 +09001657 sb.append("]");
1658 return sb.toString();
1659 }
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001660
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001661
Chalard Jean07ace0f2018-02-26 19:00:45 +09001662 private interface NameOf {
1663 String nameOf(int value);
1664 }
Roshan Piusef628d32020-01-16 12:17:17 -08001665
Chalard Jean07ace0f2018-02-26 19:00:45 +09001666 /**
1667 * @hide
1668 */
paulhud9736de2019-03-08 16:35:20 +08001669 public static void appendStringRepresentationOfBitMaskToStringBuilder(@NonNull StringBuilder sb,
1670 long bitMask, @NonNull NameOf nameFetcher, @NonNull String separator) {
Chalard Jean07ace0f2018-02-26 19:00:45 +09001671 int bitPos = 0;
1672 boolean firstElementAdded = false;
1673 while (bitMask != 0) {
1674 if ((bitMask & 1) != 0) {
1675 if (firstElementAdded) {
1676 sb.append(separator);
1677 } else {
1678 firstElementAdded = true;
1679 }
1680 sb.append(nameFetcher.nameOf(bitPos));
1681 }
1682 bitMask >>= 1;
1683 ++bitPos;
1684 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001685 }
Hugo Benichi5df9d722016-04-25 17:16:35 +09001686
Kweku Adams85f2fbc2017-12-18 12:04:12 -08001687 /** @hide */
paulhud9736de2019-03-08 16:35:20 +08001688 public void writeToProto(@NonNull ProtoOutputStream proto, long fieldId) {
Kweku Adams85f2fbc2017-12-18 12:04:12 -08001689 final long token = proto.start(fieldId);
1690
1691 for (int transport : getTransportTypes()) {
1692 proto.write(NetworkCapabilitiesProto.TRANSPORTS, transport);
1693 }
1694
1695 for (int capability : getCapabilities()) {
1696 proto.write(NetworkCapabilitiesProto.CAPABILITIES, capability);
1697 }
1698
1699 proto.write(NetworkCapabilitiesProto.LINK_UP_BANDWIDTH_KBPS, mLinkUpBandwidthKbps);
1700 proto.write(NetworkCapabilitiesProto.LINK_DOWN_BANDWIDTH_KBPS, mLinkDownBandwidthKbps);
1701
1702 if (mNetworkSpecifier != null) {
1703 proto.write(NetworkCapabilitiesProto.NETWORK_SPECIFIER, mNetworkSpecifier.toString());
1704 }
Etan Cohenca9fb562018-11-27 07:32:39 -08001705 if (mTransportInfo != null) {
1706 // TODO b/120653863: write transport-specific info to proto?
1707 }
Kweku Adams85f2fbc2017-12-18 12:04:12 -08001708
1709 proto.write(NetworkCapabilitiesProto.CAN_REPORT_SIGNAL_STRENGTH, hasSignalStrength());
1710 proto.write(NetworkCapabilitiesProto.SIGNAL_STRENGTH, mSignalStrength);
1711
1712 proto.end(token);
1713 }
1714
Hugo Benichi5df9d722016-04-25 17:16:35 +09001715 /**
1716 * @hide
1717 */
paulhud9736de2019-03-08 16:35:20 +08001718 public static @NonNull String capabilityNamesOf(@Nullable @NetCapability int[] capabilities) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001719 StringJoiner joiner = new StringJoiner("|");
1720 if (capabilities != null) {
1721 for (int c : capabilities) {
1722 joiner.add(capabilityNameOf(c));
1723 }
1724 }
1725 return joiner.toString();
1726 }
1727
1728 /**
1729 * @hide
1730 */
paulhud9736de2019-03-08 16:35:20 +08001731 public static @NonNull String capabilityNameOf(@NetCapability int capability) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001732 switch (capability) {
lucasline252a742019-03-12 13:08:03 +08001733 case NET_CAPABILITY_MMS: return "MMS";
1734 case NET_CAPABILITY_SUPL: return "SUPL";
1735 case NET_CAPABILITY_DUN: return "DUN";
1736 case NET_CAPABILITY_FOTA: return "FOTA";
1737 case NET_CAPABILITY_IMS: return "IMS";
1738 case NET_CAPABILITY_CBS: return "CBS";
1739 case NET_CAPABILITY_WIFI_P2P: return "WIFI_P2P";
1740 case NET_CAPABILITY_IA: return "IA";
1741 case NET_CAPABILITY_RCS: return "RCS";
1742 case NET_CAPABILITY_XCAP: return "XCAP";
1743 case NET_CAPABILITY_EIMS: return "EIMS";
1744 case NET_CAPABILITY_NOT_METERED: return "NOT_METERED";
1745 case NET_CAPABILITY_INTERNET: return "INTERNET";
1746 case NET_CAPABILITY_NOT_RESTRICTED: return "NOT_RESTRICTED";
1747 case NET_CAPABILITY_TRUSTED: return "TRUSTED";
1748 case NET_CAPABILITY_NOT_VPN: return "NOT_VPN";
1749 case NET_CAPABILITY_VALIDATED: return "VALIDATED";
1750 case NET_CAPABILITY_CAPTIVE_PORTAL: return "CAPTIVE_PORTAL";
1751 case NET_CAPABILITY_NOT_ROAMING: return "NOT_ROAMING";
1752 case NET_CAPABILITY_FOREGROUND: return "FOREGROUND";
1753 case NET_CAPABILITY_NOT_CONGESTED: return "NOT_CONGESTED";
1754 case NET_CAPABILITY_NOT_SUSPENDED: return "NOT_SUSPENDED";
1755 case NET_CAPABILITY_OEM_PAID: return "OEM_PAID";
1756 case NET_CAPABILITY_MCX: return "MCX";
1757 case NET_CAPABILITY_PARTIAL_CONNECTIVITY: return "PARTIAL_CONNECTIVITY";
1758 default: return Integer.toString(capability);
Hugo Benichieae7a222017-07-25 11:40:56 +09001759 }
1760 }
1761
1762 /**
1763 * @hide
1764 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +01001765 @UnsupportedAppUsage
paulhud9736de2019-03-08 16:35:20 +08001766 public static @NonNull String transportNamesOf(@Nullable @Transport int[] types) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001767 StringJoiner joiner = new StringJoiner("|");
1768 if (types != null) {
1769 for (int t : types) {
1770 joiner.add(transportNameOf(t));
1771 }
Hugo Benichi5df9d722016-04-25 17:16:35 +09001772 }
Hugo Benichieae7a222017-07-25 11:40:56 +09001773 return joiner.toString();
Hugo Benichi9910dbc2017-03-22 18:29:58 +09001774 }
1775
1776 /**
1777 * @hide
1778 */
paulhud9736de2019-03-08 16:35:20 +08001779 public static @NonNull String transportNameOf(@Transport int transport) {
Hugo Benichi16f0a942017-06-20 14:07:59 +09001780 if (!isValidTransport(transport)) {
Hugo Benichi9910dbc2017-03-22 18:29:58 +09001781 return "UNKNOWN";
1782 }
1783 return TRANSPORT_NAMES[transport];
Hugo Benichi5df9d722016-04-25 17:16:35 +09001784 }
Hugo Benichi16f0a942017-06-20 14:07:59 +09001785
Jeff Sharkeyde570312017-10-24 21:25:50 -06001786 private static void checkValidTransportType(@Transport int transport) {
Hugo Benichi16f0a942017-06-20 14:07:59 +09001787 Preconditions.checkArgument(
1788 isValidTransport(transport), "Invalid TransportType " + transport);
1789 }
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001790
1791 private static boolean isValidCapability(@NetworkCapabilities.NetCapability int capability) {
1792 return capability >= MIN_NET_CAPABILITY && capability <= MAX_NET_CAPABILITY;
1793 }
1794
1795 private static void checkValidCapability(@NetworkCapabilities.NetCapability int capability) {
1796 Preconditions.checkArgument(isValidCapability(capability),
1797 "NetworkCapability " + capability + "out of range");
1798 }
junyulai05986c62018-08-07 19:50:45 +08001799
1800 /**
1801 * Check if this {@code NetworkCapability} instance is metered.
1802 *
1803 * @return {@code true} if {@code NET_CAPABILITY_NOT_METERED} is not set on this instance.
1804 * @hide
1805 */
1806 public boolean isMetered() {
1807 return !hasCapability(NET_CAPABILITY_NOT_METERED);
1808 }
lucaslin783f2212019-10-22 18:27:33 +08001809
1810 /**
1811 * Check if private dns is broken.
1812 *
1813 * @return {@code true} if {@code mPrivateDnsBroken} is set when private DNS is broken.
1814 * @hide
1815 */
1816 public boolean isPrivateDnsBroken() {
1817 return mPrivateDnsBroken;
1818 }
1819
1820 /**
1821 * Set mPrivateDnsBroken to true when private dns is broken.
1822 *
1823 * @param broken the status of private DNS to be set.
1824 * @hide
1825 */
1826 public void setPrivateDnsBroken(boolean broken) {
1827 mPrivateDnsBroken = broken;
1828 }
1829
1830 private boolean equalsPrivateDnsBroken(NetworkCapabilities nc) {
1831 return mPrivateDnsBroken == nc.mPrivateDnsBroken;
1832 }
Roshan Piusef628d32020-01-16 12:17:17 -08001833
1834 /**
1835 * Set the uid of the app making the request.
1836 *
1837 * Note: This works only for {@link NetworkAgent} instances. Any capabilities passed in
1838 * via the public {@link ConnectivityManager} API's will have this field overwritten.
1839 *
1840 * @param uid UID of the app.
1841 * @hide
1842 */
1843 @SystemApi
1844 public @NonNull NetworkCapabilities setRequestorUid(int uid) {
1845 mRequestorUid = uid;
1846 return this;
1847 }
1848
1849 /**
1850 * @return the uid of the app making the request.
1851 *
1852 * Note: This could return {@link Process#INVALID_UID} if the {@link NetworkRequest}
1853 * object was not obtained from {@link ConnectivityManager}.
1854 * @hide
1855 */
1856 public int getRequestorUid() {
1857 return mRequestorUid;
1858 }
1859
1860 /**
1861 * Set the package name of the app making the request.
1862 *
1863 * Note: This works only for {@link NetworkAgent} instances. Any capabilities passed in
1864 * via the public {@link ConnectivityManager} API's will have this field overwritten.
1865 *
1866 * @param packageName package name of the app.
1867 * @hide
1868 */
1869 @SystemApi
1870 public @NonNull NetworkCapabilities setRequestorPackageName(@NonNull String packageName) {
1871 mRequestorPackageName = packageName;
1872 return this;
1873 }
1874
1875 /**
1876 * @return the package name of the app making the request.
1877 *
1878 * Note: This could return {@code null} if the {@link NetworkRequest} object was not obtained
1879 * from {@link ConnectivityManager}.
1880 * @hide
1881 */
1882 @Nullable
1883 public String getRequestorPackageName() {
1884 return mRequestorPackageName;
1885 }
1886
1887 /**
1888 * Set the uid and package name of the app making the request.
1889 *
1890 * Note: This is intended to be only invoked from within connectivitiy service.
1891 *
1892 * @param uid UID of the app.
1893 * @param packageName package name of the app.
1894 * @hide
1895 */
1896 public @NonNull NetworkCapabilities setRequestorUidAndPackageName(
1897 int uid, @NonNull String packageName) {
1898 return setRequestorUid(uid).setRequestorPackageName(packageName);
1899 }
1900
1901 /**
1902 * Test whether the passed NetworkCapabilities satisfies the requestor restrictions of this
1903 * capabilities.
1904 *
1905 * This method is called on the NetworkCapabilities embedded in a request with the
1906 * capabilities of an available network. If the available network, sets a specific
1907 * requestor (by uid and optionally package name), then this will only match a request from the
1908 * same app. If either of the capabilities have an unset uid or package name, then it matches
1909 * everything.
1910 * <p>
1911 * nc is assumed nonnull. Else, NPE.
1912 */
1913 private boolean satisfiedByRequestor(NetworkCapabilities nc) {
1914 // No uid set, matches everything.
1915 if (mRequestorUid == Process.INVALID_UID || nc.mRequestorUid == Process.INVALID_UID) {
1916 return true;
1917 }
1918 // uids don't match.
1919 if (mRequestorUid != nc.mRequestorUid) return false;
1920 // No package names set, matches everything
1921 if (null == nc.mRequestorPackageName || null == mRequestorPackageName) return true;
1922 // check for package name match.
1923 return TextUtils.equals(mRequestorPackageName, nc.mRequestorPackageName);
1924 }
1925
1926 /**
1927 * Combine requestor info of the capabilities.
1928 * <p>
1929 * This is only legal if either the requestor info of this object is reset, or both info are
1930 * equal.
1931 * nc is assumed nonnull.
1932 */
1933 private void combineRequestor(@NonNull NetworkCapabilities nc) {
1934 if (mRequestorUid != Process.INVALID_UID && mRequestorUid != nc.mOwnerUid) {
1935 throw new IllegalStateException("Can't combine two uids");
1936 }
1937 if (mRequestorPackageName != null
1938 && !mRequestorPackageName.equals(nc.mRequestorPackageName)) {
1939 throw new IllegalStateException("Can't combine two package names");
1940 }
1941 setRequestorUid(nc.mRequestorUid);
1942 setRequestorPackageName(nc.mRequestorPackageName);
1943 }
1944
1945 private boolean equalsRequestor(NetworkCapabilities nc) {
1946 return mRequestorUid == nc.mRequestorUid
1947 && TextUtils.equals(mRequestorPackageName, nc.mRequestorPackageName);
1948 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001949}