blob: 3f56def6d7d588546914ab2d12cb4a5f3ed41a31 [file] [log] [blame]
Robert Greenwalt9ba9c582014-03-19 17:56:12 -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
paulhud9736de2019-03-08 16:35:20 +080019import android.annotation.NonNull;
Remi NGUYEN VAN31f1d0c2019-01-20 12:52:43 +090020import android.annotation.SystemApi;
21import android.annotation.TestApi;
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010022import android.annotation.UnsupportedAppUsage;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070023import android.os.Parcel;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010024import android.os.Parcelable;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070025import android.system.ErrnoException;
Erik Klined8959992015-06-05 17:37:45 +090026import android.system.Os;
27import android.system.OsConstants;
Kweku Adams85f2fbc2017-12-18 12:04:12 -080028import android.util.proto.ProtoOutputStream;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070029
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010030import com.android.okhttp.internalandroidapi.Dns;
31import com.android.okhttp.internalandroidapi.HttpURLConnectionFactory;
Tobias Thierer69b8b292017-04-11 22:16:53 +010032
Paul Jensen89bb9932018-03-29 07:41:43 -040033import libcore.io.IoUtils;
34
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070035import java.io.FileDescriptor;
Paul Jensen2d6f2652014-05-20 11:25:35 -040036import java.io.IOException;
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070037import java.net.DatagramSocket;
Paul Jensen3e32a4b2014-05-13 19:05:13 -040038import java.net.InetAddress;
Paul Jensen2d6f2652014-05-20 11:25:35 -040039import java.net.InetSocketAddress;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090040import java.net.MalformedURLException;
Robert Greenwalt85956262014-05-18 20:29:39 -070041import java.net.Socket;
Lorenzo Colittif0382892014-07-30 17:17:13 +090042import java.net.SocketAddress;
Paul Jensen32a58f02014-06-20 13:58:14 -040043import java.net.SocketException;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090044import java.net.URL;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070045import java.net.URLConnection;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010046import java.net.UnknownHostException;
Tobias Thierer851d8062016-06-01 20:51:45 +010047import java.util.Arrays;
Tobias Thierer851d8062016-06-01 20:51:45 +010048import java.util.concurrent.TimeUnit;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010049
Robert Greenwalt85956262014-05-18 20:29:39 -070050import javax.net.SocketFactory;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070051
52/**
Robert Greenwalt85956262014-05-18 20:29:39 -070053 * Identifies a {@code Network}. This is supplied to applications via
Robert Greenwalt6078b502014-06-11 16:05:07 -070054 * {@link ConnectivityManager.NetworkCallback} in response to the active
55 * {@link ConnectivityManager#requestNetwork} or passive
56 * {@link ConnectivityManager#registerNetworkCallback} calls.
Robert Greenwalt85956262014-05-18 20:29:39 -070057 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
Paul Jensen0a363a32014-05-29 10:12:39 -040058 * through a targeted {@link SocketFactory} or process-wide via
Paul Jensen72db88e2015-03-10 10:54:12 -040059 * {@link ConnectivityManager#bindProcessToNetwork}.
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070060 */
61public class Network implements Parcelable {
62
Robert Greenwalt85956262014-05-18 20:29:39 -070063 /**
64 * @hide
65 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010066 @UnsupportedAppUsage
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070067 public final int netId;
68
Lorenzo Colittic473dc42014-07-18 01:34:19 +090069 // Objects used to perform per-network operations such as getSocketFactory
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070070 // and openConnection, and a lock to protect access to them.
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +090071 private volatile NetworkBoundSocketFactory mNetworkBoundSocketFactory = null;
Tobias Thierer69b8b292017-04-11 22:16:53 +010072 // mLock should be used to control write access to mUrlConnectionFactory.
73 // maybeInitUrlConnectionFactory() must be called prior to reading this field.
74 private volatile HttpURLConnectionFactory mUrlConnectionFactory;
Erik Klined8959992015-06-05 17:37:45 +090075 private final Object mLock = new Object();
Paul Jensen2d6f2652014-05-20 11:25:35 -040076
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070077 // Default connection pool values. These are evaluated at startup, just
78 // like the OkHttp code. Also like the OkHttp code, we will throw parse
79 // exceptions at class loading time if the properties are set but are not
80 // valid integers.
81 private static final boolean httpKeepAlive =
82 Boolean.parseBoolean(System.getProperty("http.keepAlive", "true"));
83 private static final int httpMaxConnections =
84 httpKeepAlive ? Integer.parseInt(System.getProperty("http.maxConnections", "5")) : 0;
85 private static final long httpKeepAliveDurationMs =
86 Long.parseLong(System.getProperty("http.keepAliveDuration", "300000")); // 5 minutes.
Paul Jensen4af17812018-03-28 09:19:58 -040087 // Value used to obfuscate network handle longs.
88 // The HANDLE_MAGIC value MUST be kept in sync with the corresponding
89 // value in the native/android/net.c NDK implementation.
90 private static final long HANDLE_MAGIC = 0xcafed00dL;
91 private static final int HANDLE_MAGIC_SIZE = 32;
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070092
Erik Kline7eccfeb2018-05-22 21:15:49 +090093 // A boolean to control how getAllByName()/getByName() behaves in the face
94 // of Private DNS.
95 //
96 // When true, these calls will request that DNS resolution bypass any
97 // Private DNS that might otherwise apply. Use of this feature is restricted
98 // and permission checks are made by netd (attempts to bypass Private DNS
99 // without appropriate permission are silently turned into vanilla DNS
100 // requests). This only affects DNS queries made using this network object.
101 //
102 // It it not parceled to receivers because (a) it can be set or cleared at
103 // anytime and (b) receivers should be explicit about attempts to bypass
104 // Private DNS so that the intent of the code is easily determined and
105 // code search audits are possible.
Erik Klinef4fa9822018-04-27 22:48:33 +0900106 private final transient boolean mPrivateDnsBypass;
Erik Kline7eccfeb2018-05-22 21:15:49 +0900107
Robert Greenwalt85956262014-05-18 20:29:39 -0700108 /**
109 * @hide
110 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100111 @UnsupportedAppUsage
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700112 public Network(int netId) {
Erik Klinef4fa9822018-04-27 22:48:33 +0900113 this(netId, false);
114 }
115
116 /**
117 * @hide
118 */
119 public Network(int netId, boolean privateDnsBypass) {
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700120 this.netId = netId;
Erik Klinef4fa9822018-04-27 22:48:33 +0900121 this.mPrivateDnsBypass = privateDnsBypass;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700122 }
123
Robert Greenwalt85956262014-05-18 20:29:39 -0700124 /**
125 * @hide
126 */
Remi NGUYEN VAN5c5f1ba2019-01-29 12:08:43 +0900127 @SystemApi
128 @TestApi
paulhud9736de2019-03-08 16:35:20 +0800129 public Network(@NonNull Network that) {
Erik Klinef4fa9822018-04-27 22:48:33 +0900130 this(that.netId, that.mPrivateDnsBypass);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700131 }
132
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400133 /**
134 * Operates the same as {@code InetAddress.getAllByName} except that host
135 * resolution is done on this network.
136 *
137 * @param host the hostname or literal IP string to be resolved.
138 * @return the array of addresses associated with the specified host.
139 * @throws UnknownHostException if the address lookup fails.
140 */
141 public InetAddress[] getAllByName(String host) throws UnknownHostException {
Erik Kline7eccfeb2018-05-22 21:15:49 +0900142 return InetAddress.getAllByNameOnNet(host, getNetIdForResolv());
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400143 }
144
145 /**
146 * Operates the same as {@code InetAddress.getByName} except that host
147 * resolution is done on this network.
148 *
Erik Klinef4fa9822018-04-27 22:48:33 +0900149 * @param host the hostname to be resolved to an address or {@code null}.
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400150 * @return the {@code InetAddress} instance representing the host.
151 * @throws UnknownHostException
152 * if the address lookup fails.
153 */
154 public InetAddress getByName(String host) throws UnknownHostException {
Erik Kline7eccfeb2018-05-22 21:15:49 +0900155 return InetAddress.getByNameOnNet(host, getNetIdForResolv());
156 }
157
158 /**
Erik Klinef4fa9822018-04-27 22:48:33 +0900159 * Obtain a Network object for which Private DNS is to be bypassed when attempting
Chalard Jean68237442018-06-07 13:46:52 +0900160 * to use {@link #getAllByName(String)}/{@link #getByName(String)} methods on the given
Erik Kline7eccfeb2018-05-22 21:15:49 +0900161 * instance for hostname resolution.
162 *
163 * @hide
164 */
Remi NGUYEN VAN31f1d0c2019-01-20 12:52:43 +0900165 @TestApi
166 @SystemApi
paulhud9736de2019-03-08 16:35:20 +0800167 public @NonNull Network getPrivateDnsBypassingCopy() {
Erik Klinef4fa9822018-04-27 22:48:33 +0900168 return new Network(netId, true);
Erik Kline7eccfeb2018-05-22 21:15:49 +0900169 }
170
171 /**
172 * Returns a netid marked with the Private DNS bypass flag.
173 *
174 * This flag must be kept in sync with the NETID_USE_LOCAL_NAMESERVERS flag
175 * in system/netd/include/NetdClient.h.
176 *
177 * @hide
178 */
179 public int getNetIdForResolv() {
180 return mPrivateDnsBypass
181 ? (int) (0x80000000L | (long) netId) // Non-portable DNS resolution flag.
182 : netId;
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400183 }
184
Robert Greenwalt85956262014-05-18 20:29:39 -0700185 /**
Paul Jensen2d6f2652014-05-20 11:25:35 -0400186 * A {@code SocketFactory} that produces {@code Socket}'s bound to this network.
187 */
188 private class NetworkBoundSocketFactory extends SocketFactory {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900189 private Socket connectToHost(String host, int port, SocketAddress localAddress)
190 throws IOException {
Paul Jensen8ef34012014-05-27 10:19:39 -0400191 // Lookup addresses only on this Network.
192 InetAddress[] hostAddresses = getAllByName(host);
Lorenzo Colittif0382892014-07-30 17:17:13 +0900193 // Try all addresses.
194 for (int i = 0; i < hostAddresses.length; i++) {
Paul Jensen8ef34012014-05-27 10:19:39 -0400195 try {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900196 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400197 boolean failed = true;
198 try {
199 if (localAddress != null) socket.bind(localAddress);
200 socket.connect(new InetSocketAddress(hostAddresses[i], port));
201 failed = false;
202 return socket;
203 } finally {
204 if (failed) IoUtils.closeQuietly(socket);
205 }
Paul Jensen8ef34012014-05-27 10:19:39 -0400206 } catch (IOException e) {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900207 if (i == (hostAddresses.length - 1)) throw e;
Paul Jensen8ef34012014-05-27 10:19:39 -0400208 }
209 }
Lorenzo Colittif0382892014-07-30 17:17:13 +0900210 throw new UnknownHostException(host);
Paul Jensen8ef34012014-05-27 10:19:39 -0400211 }
212
Paul Jensen2d6f2652014-05-20 11:25:35 -0400213 @Override
Chalard Jean68237442018-06-07 13:46:52 +0900214 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
215 throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900216 return connectToHost(host, port, new InetSocketAddress(localHost, localPort));
Paul Jensen2d6f2652014-05-20 11:25:35 -0400217 }
218
219 @Override
220 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
221 int localPort) throws IOException {
222 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400223 boolean failed = true;
224 try {
225 socket.bind(new InetSocketAddress(localAddress, localPort));
226 socket.connect(new InetSocketAddress(address, port));
227 failed = false;
228 } finally {
229 if (failed) IoUtils.closeQuietly(socket);
230 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400231 return socket;
232 }
233
234 @Override
235 public Socket createSocket(InetAddress host, int port) throws IOException {
236 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400237 boolean failed = true;
238 try {
239 socket.connect(new InetSocketAddress(host, port));
240 failed = false;
241 } finally {
242 if (failed) IoUtils.closeQuietly(socket);
243 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400244 return socket;
245 }
246
247 @Override
248 public Socket createSocket(String host, int port) throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900249 return connectToHost(host, port, null);
Paul Jensen2d6f2652014-05-20 11:25:35 -0400250 }
251
252 @Override
253 public Socket createSocket() throws IOException {
254 Socket socket = new Socket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400255 boolean failed = true;
256 try {
257 bindSocket(socket);
258 failed = false;
259 } finally {
260 if (failed) IoUtils.closeQuietly(socket);
261 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400262 return socket;
263 }
264 }
265
266 /**
Robert Greenwalt85956262014-05-18 20:29:39 -0700267 * Returns a {@link SocketFactory} bound to this network. Any {@link Socket} created by
268 * this factory will have its traffic sent over this {@code Network}. Note that if this
269 * {@code Network} ever disconnects, this factory and any {@link Socket} it produced in the
270 * past or future will cease to work.
271 *
272 * @return a {@link SocketFactory} which produces {@link Socket} instances bound to this
273 * {@code Network}.
274 */
Paul Jensen0a363a32014-05-29 10:12:39 -0400275 public SocketFactory getSocketFactory() {
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900276 if (mNetworkBoundSocketFactory == null) {
277 synchronized (mLock) {
278 if (mNetworkBoundSocketFactory == null) {
Chalard Jean68237442018-06-07 13:46:52 +0900279 mNetworkBoundSocketFactory = new NetworkBoundSocketFactory();
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900280 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900281 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400282 }
283 return mNetworkBoundSocketFactory;
Robert Greenwalt85956262014-05-18 20:29:39 -0700284 }
285
Paul Jensen07ed0742014-09-08 14:59:09 -0400286 // TODO: This creates a connection pool and host resolver for
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -0700287 // every Network object, instead of one for every NetId. This is
288 // suboptimal, because an app could potentially have more than one
289 // Network object for the same NetId, causing increased memory footprint
290 // and performance penalties due to lack of connection reuse (connection
291 // setup time, congestion window growth time, etc.).
292 //
Paul Jensen07ed0742014-09-08 14:59:09 -0400293 // Instead, investigate only having one connection pool and host resolver
294 // for every NetId, perhaps by using a static HashMap of NetIds to
295 // connection pools and host resolvers. The tricky part is deciding when
296 // to remove a map entry; a WeakHashMap shouldn't be used because whether
297 // a Network is referenced doesn't correlate with whether a new Network
298 // will be instantiated in the near future with the same NetID. A good
299 // solution would involve purging empty (or when all connections are timed
300 // out) ConnectionPools.
Tobias Thierer69b8b292017-04-11 22:16:53 +0100301 private void maybeInitUrlConnectionFactory() {
Paul Jensen07ed0742014-09-08 14:59:09 -0400302 synchronized (mLock) {
Tobias Thierer69b8b292017-04-11 22:16:53 +0100303 if (mUrlConnectionFactory == null) {
304 // Set configuration on the HttpURLConnectionFactory that will be good for all
305 // connections created by this Network. Configuration that might vary is left
306 // until openConnection() and passed as arguments.
307 Dns dnsLookup = hostname -> Arrays.asList(Network.this.getAllByName(hostname));
308 HttpURLConnectionFactory urlConnectionFactory = new HttpURLConnectionFactory();
309 urlConnectionFactory.setDns(dnsLookup); // Let traffic go via dnsLookup
310 // A private connection pool just for this Network.
311 urlConnectionFactory.setNewConnectionPool(httpMaxConnections,
Tobias Thierer851d8062016-06-01 20:51:45 +0100312 httpKeepAliveDurationMs, TimeUnit.MILLISECONDS);
Tobias Thierer69b8b292017-04-11 22:16:53 +0100313 mUrlConnectionFactory = urlConnectionFactory;
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900314 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900315 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900316 }
317
318 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700319 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
320 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
321 *
322 * @return a {@code URLConnection} to the resource referred to by this URL.
323 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
324 * @throws IOException if an error occurs while opening the connection.
325 * @see java.net.URL#openConnection()
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900326 */
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700327 public URLConnection openConnection(URL url) throws IOException {
Paul Jensen72db88e2015-03-10 10:54:12 -0400328 final ConnectivityManager cm = ConnectivityManager.getInstanceOrNull();
329 if (cm == null) {
330 throw new IOException("No ConnectivityManager yet constructed, please construct one");
331 }
Paul Jensene0bef712014-12-10 15:12:18 -0500332 // TODO: Should this be optimized to avoid fetching the global proxy for every request?
Paul Jensencee9b512015-05-06 07:32:40 -0400333 final ProxyInfo proxyInfo = cm.getProxyForNetwork(this);
Tobias Thierer69b8b292017-04-11 22:16:53 +0100334 final java.net.Proxy proxy;
Paul Jensene0bef712014-12-10 15:12:18 -0500335 if (proxyInfo != null) {
336 proxy = proxyInfo.makeProxy();
337 } else {
338 proxy = java.net.Proxy.NO_PROXY;
339 }
340 return openConnection(url, proxy);
341 }
342
343 /**
344 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
345 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
346 *
347 * @param proxy the proxy through which the connection will be established.
348 * @return a {@code URLConnection} to the resource referred to by this URL.
349 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
350 * @throws IllegalArgumentException if the argument proxy is null.
351 * @throws IOException if an error occurs while opening the connection.
352 * @see java.net.URL#openConnection()
Paul Jensene0bef712014-12-10 15:12:18 -0500353 */
354 public URLConnection openConnection(URL url, java.net.Proxy proxy) throws IOException {
355 if (proxy == null) throw new IllegalArgumentException("proxy is null");
Tobias Thierer69b8b292017-04-11 22:16:53 +0100356 maybeInitUrlConnectionFactory();
357 SocketFactory socketFactory = getSocketFactory();
358 return mUrlConnectionFactory.openConnection(url, socketFactory, proxy);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700359 }
360
361 /**
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700362 * Binds the specified {@link DatagramSocket} to this {@code Network}. All data traffic on the
363 * socket will be sent on this {@code Network}, irrespective of any process-wide network binding
Paul Jensen72db88e2015-03-10 10:54:12 -0400364 * set by {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700365 * connected.
366 */
367 public void bindSocket(DatagramSocket socket) throws IOException {
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700368 // Query a property of the underlying socket to ensure that the socket's file descriptor
369 // exists, is available to bind to a network and is not closed.
370 socket.getReuseAddress();
Erik Klined8959992015-06-05 17:37:45 +0900371 bindSocket(socket.getFileDescriptor$());
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700372 }
373
374 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700375 * Binds the specified {@link Socket} to this {@code Network}. All data traffic on the socket
376 * will be sent on this {@code Network}, irrespective of any process-wide network binding set by
Paul Jensen72db88e2015-03-10 10:54:12 -0400377 * {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be connected.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700378 */
379 public void bindSocket(Socket socket) throws IOException {
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700380 // Query a property of the underlying socket to ensure that the socket's file descriptor
381 // exists, is available to bind to a network and is not closed.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700382 socket.getReuseAddress();
Erik Klined8959992015-06-05 17:37:45 +0900383 bindSocket(socket.getFileDescriptor$());
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700384 }
385
Erik Klined8959992015-06-05 17:37:45 +0900386 /**
387 * Binds the specified {@link FileDescriptor} to this {@code Network}. All data traffic on the
388 * socket represented by this file descriptor will be sent on this {@code Network},
389 * irrespective of any process-wide network binding set by
390 * {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be connected.
391 */
392 public void bindSocket(FileDescriptor fd) throws IOException {
393 try {
394 final SocketAddress peer = Os.getpeername(fd);
395 final InetAddress inetPeer = ((InetSocketAddress) peer).getAddress();
396 if (!inetPeer.isAnyLocalAddress()) {
397 // Apparently, the kernel doesn't update a connected UDP socket's
398 // routing upon mark changes.
399 throw new SocketException("Socket is connected");
400 }
401 } catch (ErrnoException e) {
402 // getpeername() failed.
403 if (e.errno != OsConstants.ENOTCONN) {
404 throw e.rethrowAsSocketException();
405 }
406 } catch (ClassCastException e) {
407 // Wasn't an InetSocketAddress.
408 throw new SocketException("Only AF_INET/AF_INET6 sockets supported");
409 }
410
411 final int err = NetworkUtils.bindSocketToNetwork(fd.getInt$(), netId);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700412 if (err != 0) {
413 // bindSocketToNetwork returns negative errno.
414 throw new ErrnoException("Binding socket to network " + netId, -err)
415 .rethrowAsSocketException();
416 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900417 }
418
Erik Kline25f3b7b2015-03-05 15:13:37 +0900419 /**
Paul Jensen4af17812018-03-28 09:19:58 -0400420 * Returns a {@link Network} object given a handle returned from {@link #getNetworkHandle}.
421 *
422 * @param networkHandle a handle returned from {@link #getNetworkHandle}.
423 * @return A {@link Network} object derived from {@code networkHandle}.
424 */
425 public static Network fromNetworkHandle(long networkHandle) {
426 if (networkHandle == 0) {
427 throw new IllegalArgumentException(
428 "Network.fromNetworkHandle refusing to instantiate NETID_UNSET Network.");
429 }
430 if ((networkHandle & ((1L << HANDLE_MAGIC_SIZE) - 1)) != HANDLE_MAGIC
431 || networkHandle < 0) {
432 throw new IllegalArgumentException(
433 "Value passed to fromNetworkHandle() is not a network handle.");
434 }
435 return new Network((int) (networkHandle >> HANDLE_MAGIC_SIZE));
436 }
437
438 /**
Erik Kline25f3b7b2015-03-05 15:13:37 +0900439 * Returns a handle representing this {@code Network}, for use with the NDK API.
440 */
441 public long getNetworkHandle() {
442 // The network handle is explicitly not the same as the netId.
443 //
444 // The netId is an implementation detail which might be changed in the
445 // future, or which alone (i.e. in the absence of some additional
446 // context) might not be sufficient to fully identify a Network.
447 //
448 // As such, the intention is to prevent accidental misuse of the API
449 // that might result if a developer assumed that handles and netIds
450 // were identical and passing a netId to a call expecting a handle
451 // "just worked". Such accidental misuse, if widely deployed, might
452 // prevent future changes to the semantics of the netId field or
453 // inhibit the expansion of state required for Network objects.
454 //
455 // This extra layer of indirection might be seen as paranoia, and might
456 // never end up being necessary, but the added complexity is trivial.
457 // At some future date it may be desirable to realign the handle with
458 // Multiple Provisioning Domains API recommendations, as made by the
459 // IETF mif working group.
Erik Klinee1a6cf22015-05-14 15:40:07 +0900460 if (netId == 0) {
461 return 0L; // make this zero condition obvious for debugging
462 }
Paul Jensen4af17812018-03-28 09:19:58 -0400463 return (((long) netId) << HANDLE_MAGIC_SIZE) | HANDLE_MAGIC;
Erik Kline25f3b7b2015-03-05 15:13:37 +0900464 }
465
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700466 // implement the Parcelable interface
467 public int describeContents() {
468 return 0;
469 }
470 public void writeToParcel(Parcel dest, int flags) {
471 dest.writeInt(netId);
472 }
473
Jeff Sharkey9e8f83d2019-02-28 12:06:45 -0700474 public static final @android.annotation.NonNull Creator<Network> CREATOR =
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700475 new Creator<Network>() {
476 public Network createFromParcel(Parcel in) {
477 int netId = in.readInt();
478
479 return new Network(netId);
480 }
481
482 public Network[] newArray(int size) {
483 return new Network[size];
484 }
485 };
Robert Greenwalt85956262014-05-18 20:29:39 -0700486
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700487 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700488 public boolean equals(Object obj) {
Chalard Jean68237442018-06-07 13:46:52 +0900489 if (!(obj instanceof Network)) return false;
Robert Greenwalt85956262014-05-18 20:29:39 -0700490 Network other = (Network)obj;
491 return this.netId == other.netId;
492 }
493
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700494 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700495 public int hashCode() {
496 return netId * 11;
497 }
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700498
499 @Override
500 public String toString() {
501 return Integer.toString(netId);
502 }
Kweku Adams85f2fbc2017-12-18 12:04:12 -0800503
504 /** @hide */
505 public void writeToProto(ProtoOutputStream proto, long fieldId) {
506 final long token = proto.start(fieldId);
507 proto.write(NetworkProto.NET_ID, netId);
508 proto.end(token);
509 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700510}