blob: 0c44a566b48abb54ea2b4b9e44fbdc619c9ee84b [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;
Etan Cohenca9fb562018-11-27 07:32:39 -080020import android.annotation.Nullable;
Pavel Maltsevd9c9fff2018-03-22 11:41:32 -070021import android.annotation.SystemApi;
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -060022import android.annotation.TestApi;
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010023import android.annotation.UnsupportedAppUsage;
Jeff Sharkey72f9c422017-10-27 17:22:59 -060024import android.net.ConnectivityManager.NetworkCallback;
Mathew Inwood45d2c252018-09-14 12:35:36 +010025import android.os.Build;
Robert Greenwalt1448f052014-04-08 13:41:39 -070026import android.os.Parcel;
27import android.os.Parcelable;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090028import android.util.ArraySet;
Kweku Adams85f2fbc2017-12-18 12:04:12 -080029import android.util.proto.ProtoOutputStream;
Robert Greenwalta7e148a2017-04-10 14:32:23 -070030
31import com.android.internal.annotations.VisibleForTesting;
Hugo Benichi9910dbc2017-03-22 18:29:58 +090032import com.android.internal.util.BitUtils;
Hugo Benichi16f0a942017-06-20 14:07:59 +090033import com.android.internal.util.Preconditions;
Etan Cohena7434272017-04-03 12:17:51 -070034
Jeff Sharkeyde570312017-10-24 21:25:50 -060035import java.lang.annotation.Retention;
36import java.lang.annotation.RetentionPolicy;
Etan Cohena7434272017-04-03 12:17:51 -070037import java.util.Objects;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090038import java.util.Set;
Hugo Benichieae7a222017-07-25 11:40:56 +090039import java.util.StringJoiner;
Robert Greenwalt1448f052014-04-08 13:41:39 -070040
41/**
Jeff Sharkey49bcd602017-11-09 13:11:50 -070042 * Representation of the capabilities of an active network. Instances are
43 * typically obtained through
Jeff Sharkey72f9c422017-10-27 17:22:59 -060044 * {@link NetworkCallback#onCapabilitiesChanged(Network, NetworkCapabilities)}
45 * or {@link ConnectivityManager#getNetworkCapabilities(Network)}.
Jeff Sharkey72f9c422017-10-27 17:22:59 -060046 * <p>
47 * This replaces the old {@link ConnectivityManager#TYPE_MOBILE} method of
48 * network selection. Rather than indicate a need for Wi-Fi because an
49 * application needs high bandwidth and risk obsolescence when a new, fast
50 * network appears (like LTE), the application should specify it needs high
51 * bandwidth. Similarly if an application needs an unmetered network for a bulk
52 * transfer it can specify that rather than assuming all cellular based
53 * connections are metered and all Wi-Fi based connections are not.
Robert Greenwalt1448f052014-04-08 13:41:39 -070054 */
55public final class NetworkCapabilities implements Parcelable {
Etan Cohena7434272017-04-03 12:17:51 -070056 private static final String TAG = "NetworkCapabilities";
Chalard Jeanf474fc32018-01-17 15:10:05 +090057 private static final int INVALID_UID = -1;
Etan Cohena7434272017-04-03 12:17:51 -070058
Robert Greenwalt7569f182014-06-08 16:42:59 -070059 /**
60 * @hide
61 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010062 @UnsupportedAppUsage
Robert Greenwalt01d004e2014-05-18 15:24:21 -070063 public NetworkCapabilities() {
Lorenzo Colittif7058f52015-04-27 11:31:55 +090064 clearAll();
Lorenzo Colitti260a36d2015-07-08 12:49:04 +090065 mNetworkCapabilities = DEFAULT_CAPABILITIES;
Robert Greenwalt01d004e2014-05-18 15:24:21 -070066 }
67
68 public NetworkCapabilities(NetworkCapabilities nc) {
69 if (nc != null) {
Chalard Jean4c4bc932018-05-18 23:48:49 +090070 set(nc);
Robert Greenwalt01d004e2014-05-18 15:24:21 -070071 }
72 }
Robert Greenwalt1448f052014-04-08 13:41:39 -070073
74 /**
Lorenzo Colittif7058f52015-04-27 11:31:55 +090075 * Completely clears the contents of this object, removing even the capabilities that are set
76 * by default when the object is constructed.
77 * @hide
78 */
79 public void clearAll() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -080080 mNetworkCapabilities = mTransportTypes = mUnwantedNetworkCapabilities = 0;
Jeff Sharkey49bcd602017-11-09 13:11:50 -070081 mLinkUpBandwidthKbps = mLinkDownBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
Lorenzo Colittif7058f52015-04-27 11:31:55 +090082 mNetworkSpecifier = null;
Etan Cohenca9fb562018-11-27 07:32:39 -080083 mTransportInfo = null;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +090084 mSignalStrength = SIGNAL_STRENGTH_UNSPECIFIED;
Chalard Jeanecacd5e2017-12-27 14:23:31 +090085 mUids = null;
Chalard Jeanf474fc32018-01-17 15:10:05 +090086 mEstablishingVpnAppUid = INVALID_UID;
Chalard Jeanb03a6222018-04-11 21:09:10 +090087 mSSID = null;
Lorenzo Colittif7058f52015-04-27 11:31:55 +090088 }
89
90 /**
Chalard Jean4c4bc932018-05-18 23:48:49 +090091 * Set all contents of this object to the contents of a NetworkCapabilities.
92 * @hide
93 */
94 public void set(NetworkCapabilities nc) {
95 mNetworkCapabilities = nc.mNetworkCapabilities;
96 mTransportTypes = nc.mTransportTypes;
97 mLinkUpBandwidthKbps = nc.mLinkUpBandwidthKbps;
98 mLinkDownBandwidthKbps = nc.mLinkDownBandwidthKbps;
99 mNetworkSpecifier = nc.mNetworkSpecifier;
Etan Cohenca9fb562018-11-27 07:32:39 -0800100 mTransportInfo = nc.mTransportInfo;
Chalard Jean4c4bc932018-05-18 23:48:49 +0900101 mSignalStrength = nc.mSignalStrength;
102 setUids(nc.mUids); // Will make the defensive copy
103 mEstablishingVpnAppUid = nc.mEstablishingVpnAppUid;
104 mUnwantedNetworkCapabilities = nc.mUnwantedNetworkCapabilities;
105 mSSID = nc.mSSID;
106 }
107
108 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700109 * Represents the network's capabilities. If any are specified they will be satisfied
110 * by any Network that matches all of them.
111 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100112 @UnsupportedAppUsage
Lorenzo Colittif7058f52015-04-27 11:31:55 +0900113 private long mNetworkCapabilities;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700114
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800115 /**
116 * If any capabilities specified here they must not exist in the matching Network.
117 */
118 private long mUnwantedNetworkCapabilities;
119
Jeff Sharkeyde570312017-10-24 21:25:50 -0600120 /** @hide */
121 @Retention(RetentionPolicy.SOURCE)
122 @IntDef(prefix = { "NET_CAPABILITY_" }, value = {
123 NET_CAPABILITY_MMS,
124 NET_CAPABILITY_SUPL,
125 NET_CAPABILITY_DUN,
126 NET_CAPABILITY_FOTA,
127 NET_CAPABILITY_IMS,
128 NET_CAPABILITY_CBS,
129 NET_CAPABILITY_WIFI_P2P,
130 NET_CAPABILITY_IA,
131 NET_CAPABILITY_RCS,
132 NET_CAPABILITY_XCAP,
133 NET_CAPABILITY_EIMS,
134 NET_CAPABILITY_NOT_METERED,
135 NET_CAPABILITY_INTERNET,
136 NET_CAPABILITY_NOT_RESTRICTED,
137 NET_CAPABILITY_TRUSTED,
138 NET_CAPABILITY_NOT_VPN,
139 NET_CAPABILITY_VALIDATED,
140 NET_CAPABILITY_CAPTIVE_PORTAL,
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600141 NET_CAPABILITY_NOT_ROAMING,
Jeff Sharkeyde570312017-10-24 21:25:50 -0600142 NET_CAPABILITY_FOREGROUND,
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900143 NET_CAPABILITY_NOT_CONGESTED,
Chalard Jean804b8fb2018-01-30 22:41:41 +0900144 NET_CAPABILITY_NOT_SUSPENDED,
Pavel Maltsev43403202018-01-30 17:19:44 -0800145 NET_CAPABILITY_OEM_PAID,
Jeff Sharkeyde570312017-10-24 21:25:50 -0600146 })
147 public @interface NetCapability { }
148
Robert Greenwalt1448f052014-04-08 13:41:39 -0700149 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700150 * Indicates this is a network that has the ability to reach the
151 * carrier's MMSC for sending and receiving MMS messages.
Robert Greenwalt1448f052014-04-08 13:41:39 -0700152 */
153 public static final int NET_CAPABILITY_MMS = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700154
155 /**
156 * Indicates this is a network that has the ability to reach the carrier's
157 * SUPL server, used to retrieve GPS information.
158 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700159 public static final int NET_CAPABILITY_SUPL = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700160
161 /**
162 * Indicates this is a network that has the ability to reach the carrier's
163 * DUN or tethering gateway.
164 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700165 public static final int NET_CAPABILITY_DUN = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700166
167 /**
168 * Indicates this is a network that has the ability to reach the carrier's
169 * FOTA portal, used for over the air updates.
170 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700171 public static final int NET_CAPABILITY_FOTA = 3;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700172
173 /**
174 * Indicates this is a network that has the ability to reach the carrier's
175 * IMS servers, used for network registration and signaling.
176 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700177 public static final int NET_CAPABILITY_IMS = 4;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700178
179 /**
180 * Indicates this is a network that has the ability to reach the carrier's
181 * CBS servers, used for carrier specific services.
182 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700183 public static final int NET_CAPABILITY_CBS = 5;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700184
185 /**
186 * Indicates this is a network that has the ability to reach a Wi-Fi direct
187 * peer.
188 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700189 public static final int NET_CAPABILITY_WIFI_P2P = 6;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700190
191 /**
192 * Indicates this is a network that has the ability to reach a carrier's
193 * Initial Attach servers.
194 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700195 public static final int NET_CAPABILITY_IA = 7;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700196
197 /**
198 * Indicates this is a network that has the ability to reach a carrier's
199 * RCS servers, used for Rich Communication Services.
200 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700201 public static final int NET_CAPABILITY_RCS = 8;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700202
203 /**
204 * Indicates this is a network that has the ability to reach a carrier's
205 * XCAP servers, used for configuration and control.
206 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700207 public static final int NET_CAPABILITY_XCAP = 9;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700208
209 /**
210 * Indicates this is a network that has the ability to reach a carrier's
Robert Greenwalt4bd43892015-07-09 14:49:35 -0700211 * Emergency IMS servers or other services, used for network signaling
212 * during emergency calls.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700213 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700214 public static final int NET_CAPABILITY_EIMS = 10;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700215
216 /**
217 * Indicates that this network is unmetered.
218 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700219 public static final int NET_CAPABILITY_NOT_METERED = 11;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700220
221 /**
222 * Indicates that this network should be able to reach the internet.
223 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700224 public static final int NET_CAPABILITY_INTERNET = 12;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700225
226 /**
227 * Indicates that this network is available for general use. If this is not set
228 * applications should not attempt to communicate on this network. Note that this
229 * is simply informative and not enforcement - enforcement is handled via other means.
230 * Set by default.
231 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700232 public static final int NET_CAPABILITY_NOT_RESTRICTED = 13;
233
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700234 /**
235 * Indicates that the user has indicated implicit trust of this network. This
236 * generally means it's a sim-selected carrier, a plugged in ethernet, a paired
237 * BT device or a wifi the user asked to connect to. Untrusted networks
238 * are probably limited to unknown wifi AP. Set by default.
239 */
240 public static final int NET_CAPABILITY_TRUSTED = 14;
241
Paul Jensen76b610a2015-03-18 09:33:07 -0400242 /**
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400243 * Indicates that this network is not a VPN. This capability is set by default and should be
Paul Jensen76b610a2015-03-18 09:33:07 -0400244 * explicitly cleared for VPN networks.
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400245 */
246 public static final int NET_CAPABILITY_NOT_VPN = 15;
247
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900248 /**
249 * Indicates that connectivity on this network was successfully validated. For example, for a
250 * network with NET_CAPABILITY_INTERNET, it means that Internet connectivity was successfully
251 * detected.
Lorenzo Colitti403aa262014-11-28 11:21:30 +0900252 */
253 public static final int NET_CAPABILITY_VALIDATED = 16;
Robert Greenwalt16e12ab2014-07-08 15:31:37 -0700254
Paul Jensen3d194ea2015-06-16 14:27:36 -0400255 /**
256 * Indicates that this network was found to have a captive portal in place last time it was
257 * probed.
258 */
259 public static final int NET_CAPABILITY_CAPTIVE_PORTAL = 17;
260
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900261 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600262 * Indicates that this network is not roaming.
263 */
264 public static final int NET_CAPABILITY_NOT_ROAMING = 18;
265
266 /**
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900267 * Indicates that this network is available for use by apps, and not a network that is being
268 * kept up in the background to facilitate fast network switching.
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900269 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600270 public static final int NET_CAPABILITY_FOREGROUND = 19;
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900271
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900272 /**
273 * Indicates that this network is not congested.
274 * <p>
Jeff Sharkey0a5570d2018-04-10 12:38:29 -0600275 * When a network is congested, applications should defer network traffic
276 * that can be done at a later time, such as uploading analytics.
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900277 */
278 public static final int NET_CAPABILITY_NOT_CONGESTED = 20;
279
Chalard Jean804b8fb2018-01-30 22:41:41 +0900280 /**
281 * Indicates that this network is not currently suspended.
282 * <p>
283 * When a network is suspended, the network's IP addresses and any connections
284 * established on the network remain valid, but the network is temporarily unable
285 * to transfer data. This can happen, for example, if a cellular network experiences
286 * a temporary loss of signal, such as when driving through a tunnel, etc.
287 * A network with this capability is not suspended, so is expected to be able to
288 * transfer data.
289 */
290 public static final int NET_CAPABILITY_NOT_SUSPENDED = 21;
291
Pavel Maltsev43403202018-01-30 17:19:44 -0800292 /**
293 * Indicates that traffic that goes through this network is paid by oem. For example,
294 * this network can be used by system apps to upload telemetry data.
295 * @hide
296 */
Pavel Maltsevd9c9fff2018-03-22 11:41:32 -0700297 @SystemApi
Pavel Maltsev43403202018-01-30 17:19:44 -0800298 public static final int NET_CAPABILITY_OEM_PAID = 22;
299
Robert Greenwalt1448f052014-04-08 13:41:39 -0700300 private static final int MIN_NET_CAPABILITY = NET_CAPABILITY_MMS;
Pavel Maltsev43403202018-01-30 17:19:44 -0800301 private static final int MAX_NET_CAPABILITY = NET_CAPABILITY_OEM_PAID;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700302
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700303 /**
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900304 * Network capabilities that are expected to be mutable, i.e., can change while a particular
305 * network is connected.
306 */
307 private static final long MUTABLE_CAPABILITIES =
308 // TRUSTED can change when user explicitly connects to an untrusted network in Settings.
309 // http://b/18206275
Chalard Jean804b8fb2018-01-30 22:41:41 +0900310 (1 << NET_CAPABILITY_TRUSTED)
311 | (1 << NET_CAPABILITY_VALIDATED)
312 | (1 << NET_CAPABILITY_CAPTIVE_PORTAL)
313 | (1 << NET_CAPABILITY_NOT_ROAMING)
314 | (1 << NET_CAPABILITY_FOREGROUND)
315 | (1 << NET_CAPABILITY_NOT_CONGESTED)
316 | (1 << NET_CAPABILITY_NOT_SUSPENDED);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900317
318 /**
319 * Network capabilities that are not allowed in NetworkRequests. This exists because the
320 * NetworkFactory / NetworkAgent model does not deal well with the situation where a
321 * capability's presence cannot be known in advance. If such a capability is requested, then we
322 * can get into a cycle where the NetworkFactory endlessly churns out NetworkAgents that then
323 * get immediately torn down because they do not have the requested capability.
324 */
325 private static final long NON_REQUESTABLE_CAPABILITIES =
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900326 MUTABLE_CAPABILITIES & ~(1 << NET_CAPABILITY_TRUSTED);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900327
328 /**
329 * Capabilities that are set by default when the object is constructed.
330 */
331 private static final long DEFAULT_CAPABILITIES =
332 (1 << NET_CAPABILITY_NOT_RESTRICTED) |
333 (1 << NET_CAPABILITY_TRUSTED) |
334 (1 << NET_CAPABILITY_NOT_VPN);
335
336 /**
Paul Jensen487ffe72015-07-24 15:57:11 -0400337 * Capabilities that suggest that a network is restricted.
Pavel Maltsev4af91072018-03-07 14:33:22 -0800338 * {@see #maybeMarkCapabilitiesRestricted}, {@see #FORCE_RESTRICTED_CAPABILITIES}
Paul Jensen487ffe72015-07-24 15:57:11 -0400339 */
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700340 @VisibleForTesting
341 /* package */ static final long RESTRICTED_CAPABILITIES =
Paul Jensen487ffe72015-07-24 15:57:11 -0400342 (1 << NET_CAPABILITY_CBS) |
343 (1 << NET_CAPABILITY_DUN) |
344 (1 << NET_CAPABILITY_EIMS) |
345 (1 << NET_CAPABILITY_FOTA) |
346 (1 << NET_CAPABILITY_IA) |
347 (1 << NET_CAPABILITY_IMS) |
348 (1 << NET_CAPABILITY_RCS) |
Pavel Maltsev4af91072018-03-07 14:33:22 -0800349 (1 << NET_CAPABILITY_XCAP);
350
351 /**
352 * Capabilities that force network to be restricted.
353 * {@see #maybeMarkCapabilitiesRestricted}.
354 */
355 private static final long FORCE_RESTRICTED_CAPABILITIES =
Pavel Maltsev43403202018-01-30 17:19:44 -0800356 (1 << NET_CAPABILITY_OEM_PAID);
Paul Jensen487ffe72015-07-24 15:57:11 -0400357
358 /**
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700359 * Capabilities that suggest that a network is unrestricted.
360 * {@see #maybeMarkCapabilitiesRestricted}.
361 */
362 @VisibleForTesting
363 /* package */ static final long UNRESTRICTED_CAPABILITIES =
364 (1 << NET_CAPABILITY_INTERNET) |
365 (1 << NET_CAPABILITY_MMS) |
366 (1 << NET_CAPABILITY_SUPL) |
367 (1 << NET_CAPABILITY_WIFI_P2P);
368
369 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700370 * Adds the given capability to this {@code NetworkCapability} instance.
371 * Multiple capabilities may be applied sequentially. Note that when searching
372 * for a network to satisfy a request, all capabilities requested must be satisfied.
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800373 * <p>
374 * If the given capability was previously added to the list of unwanted capabilities
375 * then the capability will also be removed from the list of unwanted capabilities.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700376 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600377 * @param capability the capability to be added.
Pierre Imaic8419a82016-03-22 17:54:54 +0900378 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700379 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700380 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100381 @UnsupportedAppUsage
Jeff Sharkeyde570312017-10-24 21:25:50 -0600382 public NetworkCapabilities addCapability(@NetCapability int capability) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800383 checkValidCapability(capability);
Robert Greenwalt7569f182014-06-08 16:42:59 -0700384 mNetworkCapabilities |= 1 << capability;
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800385 mUnwantedNetworkCapabilities &= ~(1 << capability); // remove from unwanted capability list
Robert Greenwalt7569f182014-06-08 16:42:59 -0700386 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700387 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700388
389 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800390 * Adds the given capability to the list of unwanted capabilities of this
391 * {@code NetworkCapability} instance. Multiple unwanted capabilities may be applied
392 * sequentially. Note that when searching for a network to satisfy a request, the network
393 * must not contain any capability from unwanted capability list.
394 * <p>
395 * If the capability was previously added to the list of required capabilities (for
396 * example, it was there by default or added using {@link #addCapability(int)} method), then
397 * it will be removed from the list of required capabilities as well.
398 *
399 * @see #addCapability(int)
400 * @hide
401 */
402 public void addUnwantedCapability(@NetCapability int capability) {
403 checkValidCapability(capability);
404 mUnwantedNetworkCapabilities |= 1 << capability;
405 mNetworkCapabilities &= ~(1 << capability); // remove from requested capabilities
406 }
407
408 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700409 * Removes (if found) the given capability from this {@code NetworkCapability} instance.
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800410 * <p>
Pavel Maltseve18ef262018-03-07 11:13:04 -0800411 * Note that this method removes capabilities that were added via {@link #addCapability(int)},
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800412 * {@link #addUnwantedCapability(int)} or {@link #setCapabilities(int[], int[])} .
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700413 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600414 * @param capability the capability to be removed.
Pierre Imaic8419a82016-03-22 17:54:54 +0900415 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700416 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700417 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100418 @UnsupportedAppUsage
Jeff Sharkeyde570312017-10-24 21:25:50 -0600419 public NetworkCapabilities removeCapability(@NetCapability int capability) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800420 checkValidCapability(capability);
421 final long mask = ~(1 << capability);
422 mNetworkCapabilities &= mask;
423 mUnwantedNetworkCapabilities &= mask;
Robert Greenwalt7569f182014-06-08 16:42:59 -0700424 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700425 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700426
427 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600428 * Sets (or clears) the given capability on this {@link NetworkCapabilities}
429 * instance.
430 *
431 * @hide
432 */
433 public NetworkCapabilities setCapability(@NetCapability int capability, boolean value) {
434 if (value) {
435 addCapability(capability);
436 } else {
437 removeCapability(capability);
438 }
439 return this;
440 }
441
442 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700443 * Gets all the capabilities set on this {@code NetworkCapability} instance.
444 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600445 * @return an array of capability values for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700446 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700447 */
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -0600448 @TestApi
Jeff Sharkeyde570312017-10-24 21:25:50 -0600449 public @NetCapability int[] getCapabilities() {
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900450 return BitUtils.unpackBits(mNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700451 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700452
453 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800454 * Gets all the unwanted capabilities set on this {@code NetworkCapability} instance.
455 *
456 * @return an array of unwanted capability values for this instance.
457 * @hide
458 */
459 public @NetCapability int[] getUnwantedCapabilities() {
460 return BitUtils.unpackBits(mUnwantedNetworkCapabilities);
461 }
462
463
464 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600465 * Sets all the capabilities set on this {@code NetworkCapability} instance.
Jeff Sharkey49bcd602017-11-09 13:11:50 -0700466 * This overwrites any existing capabilities.
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600467 *
468 * @hide
469 */
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800470 public void setCapabilities(@NetCapability int[] capabilities,
471 @NetCapability int[] unwantedCapabilities) {
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600472 mNetworkCapabilities = BitUtils.packBits(capabilities);
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800473 mUnwantedNetworkCapabilities = BitUtils.packBits(unwantedCapabilities);
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600474 }
475
476 /**
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800477 * @deprecated use {@link #setCapabilities(int[], int[])}
478 * @hide
479 */
480 @Deprecated
481 public void setCapabilities(@NetCapability int[] capabilities) {
482 setCapabilities(capabilities, new int[] {});
483 }
484
485 /**
486 * Tests for the presence of a capability on this instance.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700487 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600488 * @param capability the capabilities to be tested for.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700489 * @return {@code true} if set on this instance.
490 */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600491 public boolean hasCapability(@NetCapability int capability) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800492 return isValidCapability(capability)
493 && ((mNetworkCapabilities & (1 << capability)) != 0);
494 }
495
496 /** @hide */
497 public boolean hasUnwantedCapability(@NetCapability int capability) {
498 return isValidCapability(capability)
499 && ((mUnwantedNetworkCapabilities & (1 << capability)) != 0);
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700500 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700501
Pavel Maltseve18ef262018-03-07 11:13:04 -0800502 /** Note this method may result in having the same capability in wanted and unwanted lists. */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700503 private void combineNetCapabilities(NetworkCapabilities nc) {
504 this.mNetworkCapabilities |= nc.mNetworkCapabilities;
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800505 this.mUnwantedNetworkCapabilities |= nc.mUnwantedNetworkCapabilities;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700506 }
507
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900508 /**
509 * Convenience function that returns a human-readable description of the first mutable
510 * capability we find. Used to present an error message to apps that request mutable
511 * capabilities.
512 *
513 * @hide
514 */
515 public String describeFirstNonRequestableCapability() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800516 final long nonRequestable = (mNetworkCapabilities | mUnwantedNetworkCapabilities)
517 & NON_REQUESTABLE_CAPABILITIES;
518
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +0900519 if (nonRequestable != 0) {
520 return capabilityNameOf(BitUtils.unpackBits(nonRequestable)[0]);
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900521 }
522 if (mLinkUpBandwidthKbps != 0 || mLinkDownBandwidthKbps != 0) return "link bandwidth";
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900523 if (hasSignalStrength()) return "signalStrength";
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900524 return null;
525 }
526
527 private boolean satisfiedByNetCapabilities(NetworkCapabilities nc, boolean onlyImmutable) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800528 long requestedCapabilities = mNetworkCapabilities;
529 long requestedUnwantedCapabilities = mUnwantedNetworkCapabilities;
530 long providedCapabilities = nc.mNetworkCapabilities;
531
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900532 if (onlyImmutable) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800533 requestedCapabilities &= ~MUTABLE_CAPABILITIES;
534 requestedUnwantedCapabilities &= ~MUTABLE_CAPABILITIES;
Lorenzo Colitti260a36d2015-07-08 12:49:04 +0900535 }
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800536 return ((providedCapabilities & requestedCapabilities) == requestedCapabilities)
537 && ((requestedUnwantedCapabilities & providedCapabilities) == 0);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700538 }
539
Robert Greenwalt06314e42014-10-29 14:04:06 -0700540 /** @hide */
541 public boolean equalsNetCapabilities(NetworkCapabilities nc) {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800542 return (nc.mNetworkCapabilities == this.mNetworkCapabilities)
543 && (nc.mUnwantedNetworkCapabilities == this.mUnwantedNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700544 }
545
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900546 private boolean equalsNetCapabilitiesRequestable(NetworkCapabilities that) {
547 return ((this.mNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES) ==
Pavel Maltsev1cd48da2018-02-01 11:16:02 -0800548 (that.mNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES))
549 && ((this.mUnwantedNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES) ==
550 (that.mUnwantedNetworkCapabilities & ~NON_REQUESTABLE_CAPABILITIES));
Lorenzo Colittif0e9a332016-07-18 18:40:42 +0900551 }
552
Robert Greenwalt1448f052014-04-08 13:41:39 -0700553 /**
Paul Jensen487ffe72015-07-24 15:57:11 -0400554 * Removes the NET_CAPABILITY_NOT_RESTRICTED capability if all the capabilities it provides are
555 * typically provided by restricted networks.
556 *
557 * TODO: consider:
558 * - Renaming it to guessRestrictedCapability and make it set the
559 * restricted capability bit in addition to clearing it.
560 * @hide
561 */
562 public void maybeMarkCapabilitiesRestricted() {
Pavel Maltsev4af91072018-03-07 14:33:22 -0800563 // Check if we have any capability that forces the network to be restricted.
564 final boolean forceRestrictedCapability =
565 (mNetworkCapabilities & FORCE_RESTRICTED_CAPABILITIES) != 0;
566
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700567 // Verify there aren't any unrestricted capabilities. If there are we say
Pavel Maltsev4af91072018-03-07 14:33:22 -0800568 // the whole thing is unrestricted unless it is forced to be restricted.
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700569 final boolean hasUnrestrictedCapabilities =
Pavel Maltsev4af91072018-03-07 14:33:22 -0800570 (mNetworkCapabilities & UNRESTRICTED_CAPABILITIES) != 0;
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700571
572 // Must have at least some restricted capabilities.
573 final boolean hasRestrictedCapabilities =
Pavel Maltsev4af91072018-03-07 14:33:22 -0800574 (mNetworkCapabilities & RESTRICTED_CAPABILITIES) != 0;
Robert Greenwalta7e148a2017-04-10 14:32:23 -0700575
Pavel Maltsev4af91072018-03-07 14:33:22 -0800576 if (forceRestrictedCapability
577 || (hasRestrictedCapabilities && !hasUnrestrictedCapabilities)) {
Paul Jensen487ffe72015-07-24 15:57:11 -0400578 removeCapability(NET_CAPABILITY_NOT_RESTRICTED);
Paul Jensenaae613d2015-08-19 11:06:15 -0400579 }
Paul Jensen487ffe72015-07-24 15:57:11 -0400580 }
581
582 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700583 * Representing the transport type. Apps should generally not care about transport. A
584 * request for a fast internet connection could be satisfied by a number of different
585 * transports. If any are specified here it will be satisfied a Network that matches
586 * any of them. If a caller doesn't care about the transport it should not specify any.
587 */
588 private long mTransportTypes;
589
Jeff Sharkeyde570312017-10-24 21:25:50 -0600590 /** @hide */
591 @Retention(RetentionPolicy.SOURCE)
592 @IntDef(prefix = { "TRANSPORT_" }, value = {
593 TRANSPORT_CELLULAR,
594 TRANSPORT_WIFI,
595 TRANSPORT_BLUETOOTH,
596 TRANSPORT_ETHERNET,
597 TRANSPORT_VPN,
598 TRANSPORT_WIFI_AWARE,
599 TRANSPORT_LOWPAN,
600 })
601 public @interface Transport { }
602
Robert Greenwalt1448f052014-04-08 13:41:39 -0700603 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700604 * Indicates this network uses a Cellular transport.
Robert Greenwalt1448f052014-04-08 13:41:39 -0700605 */
606 public static final int TRANSPORT_CELLULAR = 0;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700607
608 /**
609 * Indicates this network uses a Wi-Fi transport.
610 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700611 public static final int TRANSPORT_WIFI = 1;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700612
613 /**
614 * Indicates this network uses a Bluetooth transport.
615 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700616 public static final int TRANSPORT_BLUETOOTH = 2;
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700617
618 /**
619 * Indicates this network uses an Ethernet transport.
620 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700621 public static final int TRANSPORT_ETHERNET = 3;
622
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400623 /**
624 * Indicates this network uses a VPN transport.
625 */
626 public static final int TRANSPORT_VPN = 4;
627
Etan Cohen305ea282016-06-20 09:27:12 -0700628 /**
Etan Cohen0849ded2016-10-26 11:22:06 -0700629 * Indicates this network uses a Wi-Fi Aware transport.
Etan Cohen305ea282016-06-20 09:27:12 -0700630 */
Etan Cohen0849ded2016-10-26 11:22:06 -0700631 public static final int TRANSPORT_WIFI_AWARE = 5;
Etan Cohen305ea282016-06-20 09:27:12 -0700632
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700633 /**
634 * Indicates this network uses a LoWPAN transport.
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700635 */
636 public static final int TRANSPORT_LOWPAN = 6;
637
Hugo Benichi6a9bb8e2017-03-15 23:05:01 +0900638 /** @hide */
639 public static final int MIN_TRANSPORT = TRANSPORT_CELLULAR;
640 /** @hide */
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700641 public static final int MAX_TRANSPORT = TRANSPORT_LOWPAN;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700642
Hugo Benichi16f0a942017-06-20 14:07:59 +0900643 /** @hide */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600644 public static boolean isValidTransport(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900645 return (MIN_TRANSPORT <= transportType) && (transportType <= MAX_TRANSPORT);
646 }
647
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900648 private static final String[] TRANSPORT_NAMES = {
649 "CELLULAR",
650 "WIFI",
651 "BLUETOOTH",
652 "ETHERNET",
653 "VPN",
Robert Quattlebaum5f915762017-05-15 15:53:29 -0700654 "WIFI_AWARE",
655 "LOWPAN"
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900656 };
657
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700658 /**
659 * Adds the given transport type to this {@code NetworkCapability} instance.
660 * Multiple transports may be applied sequentially. Note that when searching
661 * for a network to satisfy a request, any listed in the request will satisfy the request.
662 * For example {@code TRANSPORT_WIFI} and {@code TRANSPORT_ETHERNET} added to a
663 * {@code NetworkCapabilities} would cause either a Wi-Fi network or an Ethernet network
664 * to be selected. This is logically different than
665 * {@code NetworkCapabilities.NET_CAPABILITY_*} listed above.
666 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600667 * @param transportType the transport type to be added.
Pierre Imaic8419a82016-03-22 17:54:54 +0900668 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700669 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700670 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100671 @UnsupportedAppUsage
Jeff Sharkeyde570312017-10-24 21:25:50 -0600672 public NetworkCapabilities addTransportType(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900673 checkValidTransportType(transportType);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700674 mTransportTypes |= 1 << transportType;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700675 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700676 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700677 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700678
679 /**
680 * Removes (if found) the given transport from this {@code NetworkCapability} instance.
681 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600682 * @param transportType the transport type to be removed.
Pierre Imaic8419a82016-03-22 17:54:54 +0900683 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700684 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700685 */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600686 public NetworkCapabilities removeTransportType(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900687 checkValidTransportType(transportType);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700688 mTransportTypes &= ~(1 << transportType);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700689 setNetworkSpecifier(mNetworkSpecifier); // used for exception checking
Robert Greenwalt7569f182014-06-08 16:42:59 -0700690 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700691 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700692
693 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600694 * Sets (or clears) the given transport on this {@link NetworkCapabilities}
695 * instance.
696 *
697 * @hide
698 */
699 public NetworkCapabilities setTransportType(@Transport int transportType, boolean value) {
700 if (value) {
701 addTransportType(transportType);
702 } else {
703 removeTransportType(transportType);
704 }
705 return this;
706 }
707
708 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700709 * Gets all the transports set on this {@code NetworkCapability} instance.
710 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600711 * @return an array of transport type values for this instance.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700712 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700713 */
Jeff Sharkeya5ee62f2018-05-14 13:49:07 -0600714 @TestApi
Jeff Sharkeyde570312017-10-24 21:25:50 -0600715 public @Transport int[] getTransportTypes() {
Hugo Benichi9910dbc2017-03-22 18:29:58 +0900716 return BitUtils.unpackBits(mTransportTypes);
Robert Greenwalt1448f052014-04-08 13:41:39 -0700717 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700718
719 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600720 * Sets all the transports set on this {@code NetworkCapability} instance.
Jeff Sharkey49bcd602017-11-09 13:11:50 -0700721 * This overwrites any existing transports.
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600722 *
723 * @hide
724 */
725 public void setTransportTypes(@Transport int[] transportTypes) {
726 mTransportTypes = BitUtils.packBits(transportTypes);
727 }
728
729 /**
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700730 * Tests for the presence of a transport on this instance.
731 *
Jeff Sharkeyde570312017-10-24 21:25:50 -0600732 * @param transportType the transport type to be tested for.
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700733 * @return {@code true} if set on this instance.
734 */
Jeff Sharkeyde570312017-10-24 21:25:50 -0600735 public boolean hasTransport(@Transport int transportType) {
Hugo Benichi16f0a942017-06-20 14:07:59 +0900736 return isValidTransport(transportType) && ((mTransportTypes & (1 << transportType)) != 0);
Robert Greenwalt5c55e332014-05-08 00:02:04 -0700737 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700738
739 private void combineTransportTypes(NetworkCapabilities nc) {
740 this.mTransportTypes |= nc.mTransportTypes;
741 }
Hugo Benichieae7a222017-07-25 11:40:56 +0900742
Robert Greenwalt1448f052014-04-08 13:41:39 -0700743 private boolean satisfiedByTransportTypes(NetworkCapabilities nc) {
744 return ((this.mTransportTypes == 0) ||
745 ((this.mTransportTypes & nc.mTransportTypes) != 0));
746 }
Hugo Benichieae7a222017-07-25 11:40:56 +0900747
Robert Greenwalt06314e42014-10-29 14:04:06 -0700748 /** @hide */
749 public boolean equalsTransportTypes(NetworkCapabilities nc) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700750 return (nc.mTransportTypes == this.mTransportTypes);
751 }
752
753 /**
Chalard Jeanf474fc32018-01-17 15:10:05 +0900754 * UID of the app that manages this network, or INVALID_UID if none/unknown.
755 *
756 * This field keeps track of the UID of the app that created this network and is in charge
757 * of managing it. In the practice, it is used to store the UID of VPN apps so it is named
758 * accordingly, but it may be renamed if other mechanisms are offered for third party apps
759 * to create networks.
760 *
761 * Because this field is only used in the services side (and to avoid apps being able to
762 * set this to whatever they want), this field is not parcelled and will not be conserved
763 * across the IPC boundary.
764 * @hide
765 */
766 private int mEstablishingVpnAppUid = INVALID_UID;
767
768 /**
769 * Set the UID of the managing app.
770 * @hide
771 */
772 public void setEstablishingVpnAppUid(final int uid) {
773 mEstablishingVpnAppUid = uid;
774 }
775
776 /**
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600777 * Value indicating that link bandwidth is unspecified.
778 * @hide
779 */
780 public static final int LINK_BANDWIDTH_UNSPECIFIED = 0;
781
782 /**
Robert Greenwalt1448f052014-04-08 13:41:39 -0700783 * Passive link bandwidth. This is a rough guide of the expected peak bandwidth
784 * for the first hop on the given transport. It is not measured, but may take into account
785 * link parameters (Radio technology, allocated channels, etc).
786 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600787 private int mLinkUpBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
788 private int mLinkDownBandwidthKbps = LINK_BANDWIDTH_UNSPECIFIED;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700789
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700790 /**
791 * Sets the upstream bandwidth for this network in Kbps. This always only refers to
792 * the estimated first hop transport bandwidth.
793 * <p>
794 * Note that when used to request a network, this specifies the minimum acceptable.
795 * When received as the state of an existing network this specifies the typical
796 * first hop bandwidth expected. This is never measured, but rather is inferred
797 * from technology type and other link parameters. It could be used to differentiate
798 * between very slow 1xRTT cellular links and other faster networks or even between
799 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
800 * fast backhauls and slow backhauls.
801 *
802 * @param upKbps the estimated first hop upstream (device to network) bandwidth.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700803 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700804 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600805 public NetworkCapabilities setLinkUpstreamBandwidthKbps(int upKbps) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700806 mLinkUpBandwidthKbps = upKbps;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600807 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700808 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700809
810 /**
811 * Retrieves the upstream bandwidth for this network in Kbps. This always only refers to
812 * the estimated first hop transport bandwidth.
813 *
814 * @return The estimated first hop upstream (device to network) bandwidth.
815 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700816 public int getLinkUpstreamBandwidthKbps() {
817 return mLinkUpBandwidthKbps;
818 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700819
820 /**
821 * Sets the downstream bandwidth for this network in Kbps. This always only refers to
822 * the estimated first hop transport bandwidth.
823 * <p>
824 * Note that when used to request a network, this specifies the minimum acceptable.
825 * When received as the state of an existing network this specifies the typical
826 * first hop bandwidth expected. This is never measured, but rather is inferred
827 * from technology type and other link parameters. It could be used to differentiate
828 * between very slow 1xRTT cellular links and other faster networks or even between
829 * 802.11b vs 802.11AC wifi technologies. It should not be used to differentiate between
830 * fast backhauls and slow backhauls.
831 *
832 * @param downKbps the estimated first hop downstream (network to device) bandwidth.
Robert Greenwalt7569f182014-06-08 16:42:59 -0700833 * @hide
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700834 */
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600835 public NetworkCapabilities setLinkDownstreamBandwidthKbps(int downKbps) {
Robert Greenwalt1448f052014-04-08 13:41:39 -0700836 mLinkDownBandwidthKbps = downKbps;
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600837 return this;
Robert Greenwalt1448f052014-04-08 13:41:39 -0700838 }
Robert Greenwalt01d004e2014-05-18 15:24:21 -0700839
840 /**
841 * Retrieves the downstream bandwidth for this network in Kbps. This always only refers to
842 * the estimated first hop transport bandwidth.
843 *
844 * @return The estimated first hop downstream (network to device) bandwidth.
845 */
Robert Greenwalt1448f052014-04-08 13:41:39 -0700846 public int getLinkDownstreamBandwidthKbps() {
847 return mLinkDownBandwidthKbps;
848 }
849
850 private void combineLinkBandwidths(NetworkCapabilities nc) {
851 this.mLinkUpBandwidthKbps =
852 Math.max(this.mLinkUpBandwidthKbps, nc.mLinkUpBandwidthKbps);
853 this.mLinkDownBandwidthKbps =
854 Math.max(this.mLinkDownBandwidthKbps, nc.mLinkDownBandwidthKbps);
855 }
856 private boolean satisfiedByLinkBandwidths(NetworkCapabilities nc) {
857 return !(this.mLinkUpBandwidthKbps > nc.mLinkUpBandwidthKbps ||
858 this.mLinkDownBandwidthKbps > nc.mLinkDownBandwidthKbps);
859 }
860 private boolean equalsLinkBandwidths(NetworkCapabilities nc) {
861 return (this.mLinkUpBandwidthKbps == nc.mLinkUpBandwidthKbps &&
862 this.mLinkDownBandwidthKbps == nc.mLinkDownBandwidthKbps);
863 }
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600864 /** @hide */
865 public static int minBandwidth(int a, int b) {
866 if (a == LINK_BANDWIDTH_UNSPECIFIED) {
867 return b;
868 } else if (b == LINK_BANDWIDTH_UNSPECIFIED) {
869 return a;
870 } else {
871 return Math.min(a, b);
872 }
873 }
874 /** @hide */
875 public static int maxBandwidth(int a, int b) {
876 return Math.max(a, b);
877 }
Robert Greenwalt1448f052014-04-08 13:41:39 -0700878
Etan Cohena7434272017-04-03 12:17:51 -0700879 private NetworkSpecifier mNetworkSpecifier = null;
Etan Cohenca9fb562018-11-27 07:32:39 -0800880 private TransportInfo mTransportInfo = null;
Etan Cohena7434272017-04-03 12:17:51 -0700881
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700882 /**
883 * Sets the optional bearer specific network specifier.
884 * This has no meaning if a single transport is also not specified, so calling
885 * this without a single transport set will generate an exception, as will
886 * subsequently adding or removing transports after this is set.
887 * </p>
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700888 *
Etan Cohena7434272017-04-03 12:17:51 -0700889 * @param networkSpecifier A concrete, parcelable framework class that extends
890 * NetworkSpecifier.
Pierre Imaic8419a82016-03-22 17:54:54 +0900891 * @return This NetworkCapabilities instance, to facilitate chaining.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700892 * @hide
893 */
Etan Cohena7434272017-04-03 12:17:51 -0700894 public NetworkCapabilities setNetworkSpecifier(NetworkSpecifier networkSpecifier) {
895 if (networkSpecifier != null && Long.bitCount(mTransportTypes) != 1) {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700896 throw new IllegalStateException("Must have a single transport specified to use " +
897 "setNetworkSpecifier");
898 }
Etan Cohena7434272017-04-03 12:17:51 -0700899
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700900 mNetworkSpecifier = networkSpecifier;
Etan Cohena7434272017-04-03 12:17:51 -0700901
Pierre Imaic8419a82016-03-22 17:54:54 +0900902 return this;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700903 }
904
905 /**
Etan Cohenca9fb562018-11-27 07:32:39 -0800906 * Sets the optional transport specific information.
907 *
908 * @param transportInfo A concrete, parcelable framework class that extends
909 * {@link TransportInfo}.
910 * @return This NetworkCapabilities instance, to facilitate chaining.
911 * @hide
912 */
913 public NetworkCapabilities setTransportInfo(TransportInfo transportInfo) {
914 mTransportInfo = transportInfo;
915 return this;
916 }
917
918 /**
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700919 * Gets the optional bearer specific network specifier.
920 *
Etan Cohena7434272017-04-03 12:17:51 -0700921 * @return The optional {@link NetworkSpecifier} specifying the bearer specific network
922 * specifier. See {@link #setNetworkSpecifier}.
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700923 * @hide
924 */
Mathew Inwood45d2c252018-09-14 12:35:36 +0100925 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)
Etan Cohena7434272017-04-03 12:17:51 -0700926 public NetworkSpecifier getNetworkSpecifier() {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700927 return mNetworkSpecifier;
928 }
929
Etan Cohenca9fb562018-11-27 07:32:39 -0800930 /**
931 * Returns a transport-specific information container. The application may cast this
932 * container to a concrete sub-class based on its knowledge of the network request. The
933 * application should be able to deal with a {@code null} return value or an invalid case,
934 * e.g. use {@code instanceof} operation to verify expected type.
935 *
936 * @return A concrete implementation of the {@link TransportInfo} class or null if not
937 * available for the network.
938 */
939 @Nullable public TransportInfo getTransportInfo() {
940 return mTransportInfo;
941 }
942
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700943 private void combineSpecifiers(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -0700944 if (mNetworkSpecifier != null && !mNetworkSpecifier.equals(nc.mNetworkSpecifier)) {
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700945 throw new IllegalStateException("Can't combine two networkSpecifiers");
946 }
Etan Cohena7434272017-04-03 12:17:51 -0700947 setNetworkSpecifier(nc.mNetworkSpecifier);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700948 }
Etan Cohena7434272017-04-03 12:17:51 -0700949
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700950 private boolean satisfiedBySpecifier(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -0700951 return mNetworkSpecifier == null || mNetworkSpecifier.satisfiedBy(nc.mNetworkSpecifier)
952 || nc.mNetworkSpecifier instanceof MatchAllNetworkSpecifier;
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700953 }
Etan Cohena7434272017-04-03 12:17:51 -0700954
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700955 private boolean equalsSpecifier(NetworkCapabilities nc) {
Etan Cohena7434272017-04-03 12:17:51 -0700956 return Objects.equals(mNetworkSpecifier, nc.mNetworkSpecifier);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -0700957 }
958
Etan Cohenca9fb562018-11-27 07:32:39 -0800959 private void combineTransportInfos(NetworkCapabilities nc) {
960 if (mTransportInfo != null && !mTransportInfo.equals(nc.mTransportInfo)) {
961 throw new IllegalStateException("Can't combine two TransportInfos");
962 }
963 setTransportInfo(nc.mTransportInfo);
964 }
965
966 private boolean equalsTransportInfo(NetworkCapabilities nc) {
967 return Objects.equals(mTransportInfo, nc.mTransportInfo);
968 }
969
Robert Greenwalt1448f052014-04-08 13:41:39 -0700970 /**
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900971 * Magic value that indicates no signal strength provided. A request specifying this value is
972 * always satisfied.
973 *
974 * @hide
975 */
976 public static final int SIGNAL_STRENGTH_UNSPECIFIED = Integer.MIN_VALUE;
977
978 /**
979 * Signal strength. This is a signed integer, and higher values indicate better signal.
980 * The exact units are bearer-dependent. For example, Wi-Fi uses RSSI.
981 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100982 @UnsupportedAppUsage
Jeff Sharkey49bcd602017-11-09 13:11:50 -0700983 private int mSignalStrength = SIGNAL_STRENGTH_UNSPECIFIED;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900984
985 /**
986 * Sets the signal strength. This is a signed integer, with higher values indicating a stronger
987 * signal. The exact units are bearer-dependent. For example, Wi-Fi uses the same RSSI units
Chalard Jeanb03a6222018-04-11 21:09:10 +0900988 * reported by wifi code.
Lorenzo Colittic3f21f32015-07-06 23:50:27 +0900989 * <p>
990 * Note that when used to register a network callback, this specifies the minimum acceptable
991 * signal strength. When received as the state of an existing network it specifies the current
992 * value. A value of code SIGNAL_STRENGTH_UNSPECIFIED} means no value when received and has no
993 * effect when requesting a callback.
994 *
995 * @param signalStrength the bearer-specific signal strength.
996 * @hide
997 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100998 @UnsupportedAppUsage
Jeff Sharkey72f9c422017-10-27 17:22:59 -0600999 public NetworkCapabilities setSignalStrength(int signalStrength) {
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001000 mSignalStrength = signalStrength;
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001001 return this;
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001002 }
1003
1004 /**
1005 * Returns {@code true} if this object specifies a signal strength.
1006 *
1007 * @hide
1008 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +01001009 @UnsupportedAppUsage
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001010 public boolean hasSignalStrength() {
1011 return mSignalStrength > SIGNAL_STRENGTH_UNSPECIFIED;
1012 }
1013
1014 /**
1015 * Retrieves the signal strength.
1016 *
1017 * @return The bearer-specific signal strength.
1018 * @hide
1019 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +01001020 @UnsupportedAppUsage
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001021 public int getSignalStrength() {
1022 return mSignalStrength;
1023 }
1024
1025 private void combineSignalStrength(NetworkCapabilities nc) {
1026 this.mSignalStrength = Math.max(this.mSignalStrength, nc.mSignalStrength);
1027 }
1028
1029 private boolean satisfiedBySignalStrength(NetworkCapabilities nc) {
1030 return this.mSignalStrength <= nc.mSignalStrength;
1031 }
1032
1033 private boolean equalsSignalStrength(NetworkCapabilities nc) {
1034 return this.mSignalStrength == nc.mSignalStrength;
1035 }
1036
1037 /**
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001038 * List of UIDs this network applies to. No restriction if null.
1039 * <p>
Chalard Jeanb552c462018-02-21 18:43:54 +09001040 * For networks, mUids represent the list of network this applies to, and null means this
1041 * network applies to all UIDs.
1042 * For requests, mUids is the list of UIDs this network MUST apply to to match ; ALL UIDs
1043 * must be included in a network so that they match. As an exception to the general rule,
1044 * a null mUids field for requests mean "no requirements" rather than what the general rule
1045 * would suggest ("must apply to all UIDs") : this is because this has shown to be what users
1046 * of this API expect in practice. A network that must match all UIDs can still be
1047 * expressed with a set ranging the entire set of possible UIDs.
1048 * <p>
1049 * mUids is typically (and at this time, only) used by VPN. This network is only available to
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001050 * the UIDs in this list, and it is their default network. Apps in this list that wish to
1051 * bypass the VPN can do so iff the VPN app allows them to or if they are privileged. If this
1052 * member is null, then the network is not restricted by app UID. If it's an empty list, then
1053 * it means nobody can use it.
Chalard Jeanf474fc32018-01-17 15:10:05 +09001054 * As a special exception, the app managing this network (as identified by its UID stored in
1055 * mEstablishingVpnAppUid) can always see this network. This is embodied by a special check in
1056 * satisfiedByUids. That still does not mean the network necessarily <strong>applies</strong>
1057 * to the app that manages it as determined by #appliesToUid.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001058 * <p>
1059 * Please note that in principle a single app can be associated with multiple UIDs because
1060 * each app will have a different UID when it's run as a different (macro-)user. A single
1061 * macro user can only have a single active VPN app at any given time however.
1062 * <p>
1063 * Also please be aware this class does not try to enforce any normalization on this. Callers
1064 * can only alter the UIDs by setting them wholesale : this class does not provide any utility
1065 * to add or remove individual UIDs or ranges. If callers have any normalization needs on
1066 * their own (like requiring sortedness or no overlap) they need to enforce it
1067 * themselves. Some of the internal methods also assume this is normalized as in no adjacent
1068 * or overlapping ranges are present.
1069 *
1070 * @hide
1071 */
Chalard Jean477e36c2018-01-25 09:41:51 +09001072 private ArraySet<UidRange> mUids = null;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001073
1074 /**
Chalard Jeandda156a2018-01-10 21:19:32 +09001075 * Convenience method to set the UIDs this network applies to to a single UID.
1076 * @hide
1077 */
1078 public NetworkCapabilities setSingleUid(int uid) {
1079 final ArraySet<UidRange> identity = new ArraySet<>(1);
1080 identity.add(new UidRange(uid, uid));
1081 setUids(identity);
1082 return this;
1083 }
1084
1085 /**
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001086 * Set the list of UIDs this network applies to.
1087 * This makes a copy of the set so that callers can't modify it after the call.
1088 * @hide
1089 */
1090 public NetworkCapabilities setUids(Set<UidRange> uids) {
1091 if (null == uids) {
1092 mUids = null;
1093 } else {
1094 mUids = new ArraySet<>(uids);
1095 }
1096 return this;
1097 }
1098
1099 /**
1100 * Get the list of UIDs this network applies to.
1101 * This returns a copy of the set so that callers can't modify the original object.
1102 * @hide
1103 */
1104 public Set<UidRange> getUids() {
1105 return null == mUids ? null : new ArraySet<>(mUids);
1106 }
1107
1108 /**
1109 * Test whether this network applies to this UID.
1110 * @hide
1111 */
1112 public boolean appliesToUid(int uid) {
1113 if (null == mUids) return true;
1114 for (UidRange range : mUids) {
1115 if (range.contains(uid)) {
1116 return true;
1117 }
1118 }
1119 return false;
1120 }
1121
1122 /**
Chalard Jeanb03a6222018-04-11 21:09:10 +09001123 * 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 +09001124 * <p>
1125 * This test only checks whether equal range objects are in both sets. It will
1126 * return false if the ranges are not exactly the same, even if the covered UIDs
1127 * are for an equivalent result.
1128 * <p>
1129 * Note that this method is not very optimized, which is fine as long as it's not used very
1130 * often.
1131 * <p>
1132 * nc is assumed nonnull.
1133 *
1134 * @hide
1135 */
1136 @VisibleForTesting
1137 public boolean equalsUids(NetworkCapabilities nc) {
1138 Set<UidRange> comparedUids = nc.mUids;
1139 if (null == comparedUids) return null == mUids;
1140 if (null == mUids) return false;
1141 // Make a copy so it can be mutated to check that all ranges in mUids
1142 // also are in uids.
1143 final Set<UidRange> uids = new ArraySet<>(mUids);
1144 for (UidRange range : comparedUids) {
1145 if (!uids.contains(range)) {
1146 return false;
1147 }
1148 uids.remove(range);
1149 }
1150 return uids.isEmpty();
1151 }
1152
1153 /**
1154 * Test whether the passed NetworkCapabilities satisfies the UIDs this capabilities require.
1155 *
Chalard Jeanf474fc32018-01-17 15:10:05 +09001156 * This method is called on the NetworkCapabilities embedded in a request with the
1157 * capabilities of an available network. It checks whether all the UIDs from this listen
1158 * (representing the UIDs that must have access to the network) are satisfied by the UIDs
1159 * in the passed nc (representing the UIDs that this network is available to).
1160 * <p>
1161 * As a special exception, the UID that created the passed network (as represented by its
1162 * mEstablishingVpnAppUid field) always satisfies a NetworkRequest requiring it (of LISTEN
1163 * or REQUEST types alike), even if the network does not apply to it. That is so a VPN app
1164 * can see its own network when it listens for it.
1165 * <p>
1166 * nc is assumed nonnull. Else, NPE.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001167 * @see #appliesToUid
1168 * @hide
1169 */
1170 public boolean satisfiedByUids(NetworkCapabilities nc) {
Chalard Jeanb552c462018-02-21 18:43:54 +09001171 if (null == nc.mUids || null == mUids) return true; // The network satisfies everything.
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001172 for (UidRange requiredRange : mUids) {
Chalard Jeanf474fc32018-01-17 15:10:05 +09001173 if (requiredRange.contains(nc.mEstablishingVpnAppUid)) return true;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001174 if (!nc.appliesToUidRange(requiredRange)) {
1175 return false;
1176 }
1177 }
1178 return true;
1179 }
1180
1181 /**
1182 * Returns whether this network applies to the passed ranges.
1183 * This assumes that to apply, the passed range has to be entirely contained
1184 * within one of the ranges this network applies to. If the ranges are not normalized,
1185 * this method may return false even though all required UIDs are covered because no
1186 * single range contained them all.
1187 * @hide
1188 */
1189 @VisibleForTesting
1190 public boolean appliesToUidRange(UidRange requiredRange) {
1191 if (null == mUids) return true;
1192 for (UidRange uidRange : mUids) {
1193 if (uidRange.containsRange(requiredRange)) {
1194 return true;
1195 }
1196 }
1197 return false;
1198 }
1199
1200 /**
1201 * Combine the UIDs this network currently applies to with the UIDs the passed
1202 * NetworkCapabilities apply to.
1203 * nc is assumed nonnull.
1204 */
1205 private void combineUids(NetworkCapabilities nc) {
1206 if (null == nc.mUids || null == mUids) {
1207 mUids = null;
1208 return;
1209 }
1210 mUids.addAll(nc.mUids);
1211 }
1212
Chalard Jeanb03a6222018-04-11 21:09:10 +09001213
1214 /**
1215 * The SSID of the network, or null if not applicable or unknown.
1216 * <p>
1217 * This is filled in by wifi code.
1218 * @hide
1219 */
1220 private String mSSID;
1221
1222 /**
1223 * Sets the SSID of this network.
1224 * @hide
1225 */
1226 public NetworkCapabilities setSSID(String ssid) {
1227 mSSID = ssid;
1228 return this;
1229 }
1230
1231 /**
1232 * Gets the SSID of this network, or null if none or unknown.
1233 * @hide
1234 */
1235 public String getSSID() {
1236 return mSSID;
1237 }
1238
1239 /**
1240 * Tests if the SSID of this network is the same as the SSID of the passed network.
1241 * @hide
1242 */
1243 public boolean equalsSSID(NetworkCapabilities nc) {
1244 return Objects.equals(mSSID, nc.mSSID);
1245 }
1246
1247 /**
1248 * Check if the SSID requirements of this object are matched by the passed object.
1249 * @hide
1250 */
1251 public boolean satisfiedBySSID(NetworkCapabilities nc) {
1252 return mSSID == null || mSSID.equals(nc.mSSID);
1253 }
1254
1255 /**
1256 * Combine SSIDs of the capabilities.
1257 * <p>
1258 * This is only legal if either the SSID of this object is null, or both SSIDs are
1259 * equal.
1260 * @hide
1261 */
1262 private void combineSSIDs(NetworkCapabilities nc) {
1263 if (mSSID != null && !mSSID.equals(nc.mSSID)) {
1264 throw new IllegalStateException("Can't combine two SSIDs");
1265 }
1266 setSSID(nc.mSSID);
1267 }
1268
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001269 /**
Pavel Maltseve18ef262018-03-07 11:13:04 -08001270 * Combine a set of Capabilities to this one. Useful for coming up with the complete set.
1271 * <p>
1272 * Note that this method may break an invariant of having a particular capability in either
1273 * wanted or unwanted lists but never in both. Requests that have the same capability in
1274 * both lists will never be satisfied.
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001275 * @hide
Robert Greenwalt1448f052014-04-08 13:41:39 -07001276 */
1277 public void combineCapabilities(NetworkCapabilities nc) {
1278 combineNetCapabilities(nc);
1279 combineTransportTypes(nc);
1280 combineLinkBandwidths(nc);
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001281 combineSpecifiers(nc);
Etan Cohenca9fb562018-11-27 07:32:39 -08001282 combineTransportInfos(nc);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001283 combineSignalStrength(nc);
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001284 combineUids(nc);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001285 combineSSIDs(nc);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001286 }
1287
1288 /**
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001289 * Check if our requirements are satisfied by the given {@code NetworkCapabilities}.
1290 *
1291 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1292 * @param onlyImmutable if {@code true}, do not consider mutable requirements such as link
1293 * bandwidth, signal strength, or validation / captive portal status.
1294 *
1295 * @hide
1296 */
1297 private boolean satisfiedByNetworkCapabilities(NetworkCapabilities nc, boolean onlyImmutable) {
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001298 return (nc != null
1299 && satisfiedByNetCapabilities(nc, onlyImmutable)
1300 && satisfiedByTransportTypes(nc)
1301 && (onlyImmutable || satisfiedByLinkBandwidths(nc))
1302 && satisfiedBySpecifier(nc)
1303 && (onlyImmutable || satisfiedBySignalStrength(nc))
Chalard Jeanb03a6222018-04-11 21:09:10 +09001304 && (onlyImmutable || satisfiedByUids(nc))
1305 && (onlyImmutable || satisfiedBySSID(nc)));
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001306 }
1307
1308 /**
1309 * Check if our requirements are satisfied by the given {@code NetworkCapabilities}.
1310 *
1311 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1312 *
1313 * @hide
Robert Greenwalt1448f052014-04-08 13:41:39 -07001314 */
1315 public boolean satisfiedByNetworkCapabilities(NetworkCapabilities nc) {
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001316 return satisfiedByNetworkCapabilities(nc, false);
1317 }
1318
1319 /**
1320 * Check if our immutable requirements are satisfied by the given {@code NetworkCapabilities}.
1321 *
1322 * @param nc the {@code NetworkCapabilities} that may or may not satisfy our requirements.
1323 *
1324 * @hide
1325 */
1326 public boolean satisfiedByImmutableNetworkCapabilities(NetworkCapabilities nc) {
1327 return satisfiedByNetworkCapabilities(nc, true);
1328 }
1329
1330 /**
1331 * Checks that our immutable capabilities are the same as those of the given
Hugo Benichieae7a222017-07-25 11:40:56 +09001332 * {@code NetworkCapabilities} and return a String describing any difference.
1333 * The returned String is empty if there is no difference.
Lorenzo Colitti260a36d2015-07-08 12:49:04 +09001334 *
1335 * @hide
1336 */
Hugo Benichieae7a222017-07-25 11:40:56 +09001337 public String describeImmutableDifferences(NetworkCapabilities that) {
1338 if (that == null) {
1339 return "other NetworkCapabilities was null";
1340 }
1341
1342 StringJoiner joiner = new StringJoiner(", ");
1343
Hugo Benichieae7a222017-07-25 11:40:56 +09001344 // Ignore NOT_METERED being added or removed as it is effectively dynamic. http://b/63326103
1345 // TODO: properly support NOT_METERED as a mutable and requestable capability.
Hugo Benichi2ecb9402017-08-04 13:18:40 +09001346 final long mask = ~MUTABLE_CAPABILITIES & ~(1 << NET_CAPABILITY_NOT_METERED);
Hugo Benichieae7a222017-07-25 11:40:56 +09001347 long oldImmutableCapabilities = this.mNetworkCapabilities & mask;
1348 long newImmutableCapabilities = that.mNetworkCapabilities & mask;
1349 if (oldImmutableCapabilities != newImmutableCapabilities) {
1350 String before = capabilityNamesOf(BitUtils.unpackBits(oldImmutableCapabilities));
1351 String after = capabilityNamesOf(BitUtils.unpackBits(newImmutableCapabilities));
1352 joiner.add(String.format("immutable capabilities changed: %s -> %s", before, after));
1353 }
1354
1355 if (!equalsSpecifier(that)) {
1356 NetworkSpecifier before = this.getNetworkSpecifier();
1357 NetworkSpecifier after = that.getNetworkSpecifier();
1358 joiner.add(String.format("specifier changed: %s -> %s", before, after));
1359 }
1360
1361 if (!equalsTransportTypes(that)) {
1362 String before = transportNamesOf(this.getTransportTypes());
1363 String after = transportNamesOf(that.getTransportTypes());
1364 joiner.add(String.format("transports changed: %s -> %s", before, after));
1365 }
1366
1367 return joiner.toString();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001368 }
1369
Lorenzo Colittif0e9a332016-07-18 18:40:42 +09001370 /**
1371 * Checks that our requestable capabilities are the same as those of the given
1372 * {@code NetworkCapabilities}.
1373 *
1374 * @hide
1375 */
1376 public boolean equalRequestableCapabilities(NetworkCapabilities nc) {
1377 if (nc == null) return false;
1378 return (equalsNetCapabilitiesRequestable(nc) &&
1379 equalsTransportTypes(nc) &&
1380 equalsSpecifier(nc));
1381 }
1382
Robert Greenwalt1448f052014-04-08 13:41:39 -07001383 @Override
1384 public boolean equals(Object obj) {
1385 if (obj == null || (obj instanceof NetworkCapabilities == false)) return false;
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001386 NetworkCapabilities that = (NetworkCapabilities) obj;
1387 return (equalsNetCapabilities(that)
1388 && equalsTransportTypes(that)
1389 && equalsLinkBandwidths(that)
1390 && equalsSignalStrength(that)
1391 && equalsSpecifier(that)
Etan Cohenca9fb562018-11-27 07:32:39 -08001392 && equalsTransportInfo(that)
Chalard Jeanb03a6222018-04-11 21:09:10 +09001393 && equalsUids(that)
1394 && equalsSSID(that));
Robert Greenwalt1448f052014-04-08 13:41:39 -07001395 }
1396
1397 @Override
1398 public int hashCode() {
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001399 return (int) (mNetworkCapabilities & 0xFFFFFFFF)
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001400 + ((int) (mNetworkCapabilities >> 32) * 3)
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001401 + ((int) (mUnwantedNetworkCapabilities & 0xFFFFFFFF) * 5)
1402 + ((int) (mUnwantedNetworkCapabilities >> 32) * 7)
1403 + ((int) (mTransportTypes & 0xFFFFFFFF) * 11)
1404 + ((int) (mTransportTypes >> 32) * 13)
1405 + (mLinkUpBandwidthKbps * 17)
1406 + (mLinkDownBandwidthKbps * 19)
1407 + Objects.hashCode(mNetworkSpecifier) * 23
1408 + (mSignalStrength * 29)
Chalard Jeanb03a6222018-04-11 21:09:10 +09001409 + Objects.hashCode(mUids) * 31
Etan Cohenca9fb562018-11-27 07:32:39 -08001410 + Objects.hashCode(mSSID) * 37
1411 + Objects.hashCode(mTransportInfo) * 41;
Robert Greenwalt1448f052014-04-08 13:41:39 -07001412 }
1413
Wink Saville4e2dea72014-09-20 11:04:03 -07001414 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001415 public int describeContents() {
1416 return 0;
1417 }
Wink Saville4e2dea72014-09-20 11:04:03 -07001418 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001419 public void writeToParcel(Parcel dest, int flags) {
1420 dest.writeLong(mNetworkCapabilities);
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001421 dest.writeLong(mUnwantedNetworkCapabilities);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001422 dest.writeLong(mTransportTypes);
1423 dest.writeInt(mLinkUpBandwidthKbps);
1424 dest.writeInt(mLinkDownBandwidthKbps);
Etan Cohena7434272017-04-03 12:17:51 -07001425 dest.writeParcelable((Parcelable) mNetworkSpecifier, flags);
Etan Cohenca9fb562018-11-27 07:32:39 -08001426 dest.writeParcelable((Parcelable) mTransportInfo, flags);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001427 dest.writeInt(mSignalStrength);
Chalard Jean477e36c2018-01-25 09:41:51 +09001428 dest.writeArraySet(mUids);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001429 dest.writeString(mSSID);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001430 }
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001431
Robert Greenwalt1448f052014-04-08 13:41:39 -07001432 public static final Creator<NetworkCapabilities> CREATOR =
1433 new Creator<NetworkCapabilities>() {
Wink Saville4e2dea72014-09-20 11:04:03 -07001434 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001435 public NetworkCapabilities createFromParcel(Parcel in) {
1436 NetworkCapabilities netCap = new NetworkCapabilities();
1437
1438 netCap.mNetworkCapabilities = in.readLong();
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001439 netCap.mUnwantedNetworkCapabilities = in.readLong();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001440 netCap.mTransportTypes = in.readLong();
1441 netCap.mLinkUpBandwidthKbps = in.readInt();
1442 netCap.mLinkDownBandwidthKbps = in.readInt();
Etan Cohena7434272017-04-03 12:17:51 -07001443 netCap.mNetworkSpecifier = in.readParcelable(null);
Etan Cohenca9fb562018-11-27 07:32:39 -08001444 netCap.mTransportInfo = in.readParcelable(null);
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001445 netCap.mSignalStrength = in.readInt();
Chalard Jeanecacd5e2017-12-27 14:23:31 +09001446 netCap.mUids = (ArraySet<UidRange>) in.readArraySet(
1447 null /* ClassLoader, null for default */);
Chalard Jeanb03a6222018-04-11 21:09:10 +09001448 netCap.mSSID = in.readString();
Robert Greenwalt1448f052014-04-08 13:41:39 -07001449 return netCap;
1450 }
Wink Saville4e2dea72014-09-20 11:04:03 -07001451 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001452 public NetworkCapabilities[] newArray(int size) {
1453 return new NetworkCapabilities[size];
1454 }
1455 };
1456
Wink Saville4e2dea72014-09-20 11:04:03 -07001457 @Override
Robert Greenwalt1448f052014-04-08 13:41:39 -07001458 public String toString() {
Chalard Jean07ace0f2018-02-26 19:00:45 +09001459 final StringBuilder sb = new StringBuilder("[");
1460 if (0 != mTransportTypes) {
1461 sb.append(" Transports: ");
1462 appendStringRepresentationOfBitMaskToStringBuilder(sb, mTransportTypes,
1463 NetworkCapabilities::transportNameOf, "|");
1464 }
1465 if (0 != mNetworkCapabilities) {
1466 sb.append(" Capabilities: ");
1467 appendStringRepresentationOfBitMaskToStringBuilder(sb, mNetworkCapabilities,
1468 NetworkCapabilities::capabilityNameOf, "&");
1469 }
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001470 if (0 != mNetworkCapabilities) {
1471 sb.append(" Unwanted: ");
1472 appendStringRepresentationOfBitMaskToStringBuilder(sb, mUnwantedNetworkCapabilities,
1473 NetworkCapabilities::capabilityNameOf, "&");
1474 }
Chalard Jean07ace0f2018-02-26 19:00:45 +09001475 if (mLinkUpBandwidthKbps > 0) {
1476 sb.append(" LinkUpBandwidth>=").append(mLinkUpBandwidthKbps).append("Kbps");
1477 }
1478 if (mLinkDownBandwidthKbps > 0) {
1479 sb.append(" LinkDnBandwidth>=").append(mLinkDownBandwidthKbps).append("Kbps");
1480 }
1481 if (mNetworkSpecifier != null) {
1482 sb.append(" Specifier: <").append(mNetworkSpecifier).append(">");
1483 }
Etan Cohenca9fb562018-11-27 07:32:39 -08001484 if (mTransportInfo != null) {
1485 sb.append(" TransportInfo: <").append(mTransportInfo).append(">");
1486 }
Chalard Jean07ace0f2018-02-26 19:00:45 +09001487 if (hasSignalStrength()) {
1488 sb.append(" SignalStrength: ").append(mSignalStrength);
Robert Greenwalt1448f052014-04-08 13:41:39 -07001489 }
1490
Chalard Jean07ace0f2018-02-26 19:00:45 +09001491 if (null != mUids) {
1492 if ((1 == mUids.size()) && (mUids.valueAt(0).count() == 1)) {
1493 sb.append(" Uid: ").append(mUids.valueAt(0).start);
1494 } else {
1495 sb.append(" Uids: <").append(mUids).append(">");
1496 }
1497 }
1498 if (mEstablishingVpnAppUid != INVALID_UID) {
1499 sb.append(" EstablishingAppUid: ").append(mEstablishingVpnAppUid);
1500 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001501
Chalard Jeanb03a6222018-04-11 21:09:10 +09001502 if (null != mSSID) {
1503 sb.append(" SSID: ").append(mSSID);
1504 }
1505
Chalard Jean07ace0f2018-02-26 19:00:45 +09001506 sb.append("]");
1507 return sb.toString();
1508 }
Robert Greenwalt5f90bcc2014-07-09 17:25:41 -07001509
Lorenzo Colittic3f21f32015-07-06 23:50:27 +09001510
Chalard Jean07ace0f2018-02-26 19:00:45 +09001511 private interface NameOf {
1512 String nameOf(int value);
1513 }
1514 /**
1515 * @hide
1516 */
1517 public static void appendStringRepresentationOfBitMaskToStringBuilder(StringBuilder sb,
1518 long bitMask, NameOf nameFetcher, String separator) {
1519 int bitPos = 0;
1520 boolean firstElementAdded = false;
1521 while (bitMask != 0) {
1522 if ((bitMask & 1) != 0) {
1523 if (firstElementAdded) {
1524 sb.append(separator);
1525 } else {
1526 firstElementAdded = true;
1527 }
1528 sb.append(nameFetcher.nameOf(bitPos));
1529 }
1530 bitMask >>= 1;
1531 ++bitPos;
1532 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001533 }
Hugo Benichi5df9d722016-04-25 17:16:35 +09001534
Kweku Adams85f2fbc2017-12-18 12:04:12 -08001535 /** @hide */
1536 public void writeToProto(ProtoOutputStream proto, long fieldId) {
1537 final long token = proto.start(fieldId);
1538
1539 for (int transport : getTransportTypes()) {
1540 proto.write(NetworkCapabilitiesProto.TRANSPORTS, transport);
1541 }
1542
1543 for (int capability : getCapabilities()) {
1544 proto.write(NetworkCapabilitiesProto.CAPABILITIES, capability);
1545 }
1546
1547 proto.write(NetworkCapabilitiesProto.LINK_UP_BANDWIDTH_KBPS, mLinkUpBandwidthKbps);
1548 proto.write(NetworkCapabilitiesProto.LINK_DOWN_BANDWIDTH_KBPS, mLinkDownBandwidthKbps);
1549
1550 if (mNetworkSpecifier != null) {
1551 proto.write(NetworkCapabilitiesProto.NETWORK_SPECIFIER, mNetworkSpecifier.toString());
1552 }
Etan Cohenca9fb562018-11-27 07:32:39 -08001553 if (mTransportInfo != null) {
1554 // TODO b/120653863: write transport-specific info to proto?
1555 }
Kweku Adams85f2fbc2017-12-18 12:04:12 -08001556
1557 proto.write(NetworkCapabilitiesProto.CAN_REPORT_SIGNAL_STRENGTH, hasSignalStrength());
1558 proto.write(NetworkCapabilitiesProto.SIGNAL_STRENGTH, mSignalStrength);
1559
1560 proto.end(token);
1561 }
1562
Hugo Benichi5df9d722016-04-25 17:16:35 +09001563 /**
1564 * @hide
1565 */
Jeff Sharkeyde570312017-10-24 21:25:50 -06001566 public static String capabilityNamesOf(@NetCapability int[] capabilities) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001567 StringJoiner joiner = new StringJoiner("|");
1568 if (capabilities != null) {
1569 for (int c : capabilities) {
1570 joiner.add(capabilityNameOf(c));
1571 }
1572 }
1573 return joiner.toString();
1574 }
1575
1576 /**
1577 * @hide
1578 */
Jeff Sharkeyde570312017-10-24 21:25:50 -06001579 public static String capabilityNameOf(@NetCapability int capability) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001580 switch (capability) {
1581 case NET_CAPABILITY_MMS: return "MMS";
1582 case NET_CAPABILITY_SUPL: return "SUPL";
1583 case NET_CAPABILITY_DUN: return "DUN";
1584 case NET_CAPABILITY_FOTA: return "FOTA";
1585 case NET_CAPABILITY_IMS: return "IMS";
1586 case NET_CAPABILITY_CBS: return "CBS";
1587 case NET_CAPABILITY_WIFI_P2P: return "WIFI_P2P";
1588 case NET_CAPABILITY_IA: return "IA";
1589 case NET_CAPABILITY_RCS: return "RCS";
1590 case NET_CAPABILITY_XCAP: return "XCAP";
1591 case NET_CAPABILITY_EIMS: return "EIMS";
1592 case NET_CAPABILITY_NOT_METERED: return "NOT_METERED";
1593 case NET_CAPABILITY_INTERNET: return "INTERNET";
1594 case NET_CAPABILITY_NOT_RESTRICTED: return "NOT_RESTRICTED";
1595 case NET_CAPABILITY_TRUSTED: return "TRUSTED";
1596 case NET_CAPABILITY_NOT_VPN: return "NOT_VPN";
1597 case NET_CAPABILITY_VALIDATED: return "VALIDATED";
1598 case NET_CAPABILITY_CAPTIVE_PORTAL: return "CAPTIVE_PORTAL";
Jeff Sharkey72f9c422017-10-27 17:22:59 -06001599 case NET_CAPABILITY_NOT_ROAMING: return "NOT_ROAMING";
Hugo Benichieae7a222017-07-25 11:40:56 +09001600 case NET_CAPABILITY_FOREGROUND: return "FOREGROUND";
Jeff Sharkey9b2a10f2018-01-17 13:27:03 +09001601 case NET_CAPABILITY_NOT_CONGESTED: return "NOT_CONGESTED";
Chalard Jean804b8fb2018-01-30 22:41:41 +09001602 case NET_CAPABILITY_NOT_SUSPENDED: return "NOT_SUSPENDED";
Pavel Maltsev43403202018-01-30 17:19:44 -08001603 case NET_CAPABILITY_OEM_PAID: return "OEM_PAID";
Hugo Benichieae7a222017-07-25 11:40:56 +09001604 default: return Integer.toString(capability);
1605 }
1606 }
1607
1608 /**
1609 * @hide
1610 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +01001611 @UnsupportedAppUsage
Jeff Sharkeyde570312017-10-24 21:25:50 -06001612 public static String transportNamesOf(@Transport int[] types) {
Hugo Benichieae7a222017-07-25 11:40:56 +09001613 StringJoiner joiner = new StringJoiner("|");
1614 if (types != null) {
1615 for (int t : types) {
1616 joiner.add(transportNameOf(t));
1617 }
Hugo Benichi5df9d722016-04-25 17:16:35 +09001618 }
Hugo Benichieae7a222017-07-25 11:40:56 +09001619 return joiner.toString();
Hugo Benichi9910dbc2017-03-22 18:29:58 +09001620 }
1621
1622 /**
1623 * @hide
1624 */
Jeff Sharkeyde570312017-10-24 21:25:50 -06001625 public static String transportNameOf(@Transport int transport) {
Hugo Benichi16f0a942017-06-20 14:07:59 +09001626 if (!isValidTransport(transport)) {
Hugo Benichi9910dbc2017-03-22 18:29:58 +09001627 return "UNKNOWN";
1628 }
1629 return TRANSPORT_NAMES[transport];
Hugo Benichi5df9d722016-04-25 17:16:35 +09001630 }
Hugo Benichi16f0a942017-06-20 14:07:59 +09001631
Jeff Sharkeyde570312017-10-24 21:25:50 -06001632 private static void checkValidTransportType(@Transport int transport) {
Hugo Benichi16f0a942017-06-20 14:07:59 +09001633 Preconditions.checkArgument(
1634 isValidTransport(transport), "Invalid TransportType " + transport);
1635 }
Pavel Maltsev1cd48da2018-02-01 11:16:02 -08001636
1637 private static boolean isValidCapability(@NetworkCapabilities.NetCapability int capability) {
1638 return capability >= MIN_NET_CAPABILITY && capability <= MAX_NET_CAPABILITY;
1639 }
1640
1641 private static void checkValidCapability(@NetworkCapabilities.NetCapability int capability) {
1642 Preconditions.checkArgument(isValidCapability(capability),
1643 "NetworkCapability " + capability + "out of range");
1644 }
junyulai05986c62018-08-07 19:50:45 +08001645
1646 /**
1647 * Check if this {@code NetworkCapability} instance is metered.
1648 *
1649 * @return {@code true} if {@code NET_CAPABILITY_NOT_METERED} is not set on this instance.
1650 * @hide
1651 */
1652 public boolean isMetered() {
1653 return !hasCapability(NET_CAPABILITY_NOT_METERED);
1654 }
Robert Greenwalt1448f052014-04-08 13:41:39 -07001655}