blob: e04b5fc5f9cf55cc125fad8b942d1a9c53d53ee6 [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
Remi NGUYEN VAN31f1d0c2019-01-20 12:52:43 +090019import android.annotation.SystemApi;
20import android.annotation.TestApi;
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010021import android.annotation.UnsupportedAppUsage;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070022import android.os.Parcel;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010023import android.os.Parcelable;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070024import android.system.ErrnoException;
Erik Klined8959992015-06-05 17:37:45 +090025import android.system.Os;
26import android.system.OsConstants;
Kweku Adams85f2fbc2017-12-18 12:04:12 -080027import android.util.proto.ProtoOutputStream;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070028
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010029import com.android.okhttp.internalandroidapi.Dns;
30import com.android.okhttp.internalandroidapi.HttpURLConnectionFactory;
Tobias Thierer69b8b292017-04-11 22:16:53 +010031
Paul Jensen89bb9932018-03-29 07:41:43 -040032import libcore.io.IoUtils;
33
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070034import java.io.FileDescriptor;
Paul Jensen2d6f2652014-05-20 11:25:35 -040035import java.io.IOException;
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070036import java.net.DatagramSocket;
Paul Jensen3e32a4b2014-05-13 19:05:13 -040037import java.net.InetAddress;
Paul Jensen2d6f2652014-05-20 11:25:35 -040038import java.net.InetSocketAddress;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090039import java.net.MalformedURLException;
Robert Greenwalt85956262014-05-18 20:29:39 -070040import java.net.Socket;
Lorenzo Colittif0382892014-07-30 17:17:13 +090041import java.net.SocketAddress;
Paul Jensen32a58f02014-06-20 13:58:14 -040042import java.net.SocketException;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090043import java.net.URL;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070044import java.net.URLConnection;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010045import java.net.UnknownHostException;
Tobias Thierer851d8062016-06-01 20:51:45 +010046import java.util.Arrays;
Tobias Thierer851d8062016-06-01 20:51:45 +010047import java.util.concurrent.TimeUnit;
Tobias Thierer4c6d2ec2017-10-25 00:58:29 +010048
Robert Greenwalt85956262014-05-18 20:29:39 -070049import javax.net.SocketFactory;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070050
51/**
Robert Greenwalt85956262014-05-18 20:29:39 -070052 * Identifies a {@code Network}. This is supplied to applications via
Robert Greenwalt6078b502014-06-11 16:05:07 -070053 * {@link ConnectivityManager.NetworkCallback} in response to the active
54 * {@link ConnectivityManager#requestNetwork} or passive
55 * {@link ConnectivityManager#registerNetworkCallback} calls.
Robert Greenwalt85956262014-05-18 20:29:39 -070056 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
Paul Jensen0a363a32014-05-29 10:12:39 -040057 * through a targeted {@link SocketFactory} or process-wide via
Paul Jensen72db88e2015-03-10 10:54:12 -040058 * {@link ConnectivityManager#bindProcessToNetwork}.
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070059 */
60public class Network implements Parcelable {
61
Robert Greenwalt85956262014-05-18 20:29:39 -070062 /**
63 * @hide
64 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010065 @UnsupportedAppUsage
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070066 public final int netId;
67
Lorenzo Colittic473dc42014-07-18 01:34:19 +090068 // Objects used to perform per-network operations such as getSocketFactory
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070069 // and openConnection, and a lock to protect access to them.
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +090070 private volatile NetworkBoundSocketFactory mNetworkBoundSocketFactory = null;
Tobias Thierer69b8b292017-04-11 22:16:53 +010071 // mLock should be used to control write access to mUrlConnectionFactory.
72 // maybeInitUrlConnectionFactory() must be called prior to reading this field.
73 private volatile HttpURLConnectionFactory mUrlConnectionFactory;
Erik Klined8959992015-06-05 17:37:45 +090074 private final Object mLock = new Object();
Paul Jensen2d6f2652014-05-20 11:25:35 -040075
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070076 // Default connection pool values. These are evaluated at startup, just
77 // like the OkHttp code. Also like the OkHttp code, we will throw parse
78 // exceptions at class loading time if the properties are set but are not
79 // valid integers.
80 private static final boolean httpKeepAlive =
81 Boolean.parseBoolean(System.getProperty("http.keepAlive", "true"));
82 private static final int httpMaxConnections =
83 httpKeepAlive ? Integer.parseInt(System.getProperty("http.maxConnections", "5")) : 0;
84 private static final long httpKeepAliveDurationMs =
85 Long.parseLong(System.getProperty("http.keepAliveDuration", "300000")); // 5 minutes.
Paul Jensen4af17812018-03-28 09:19:58 -040086 // Value used to obfuscate network handle longs.
87 // The HANDLE_MAGIC value MUST be kept in sync with the corresponding
88 // value in the native/android/net.c NDK implementation.
89 private static final long HANDLE_MAGIC = 0xcafed00dL;
90 private static final int HANDLE_MAGIC_SIZE = 32;
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070091
Erik Kline7eccfeb2018-05-22 21:15:49 +090092 // A boolean to control how getAllByName()/getByName() behaves in the face
93 // of Private DNS.
94 //
95 // When true, these calls will request that DNS resolution bypass any
96 // Private DNS that might otherwise apply. Use of this feature is restricted
97 // and permission checks are made by netd (attempts to bypass Private DNS
98 // without appropriate permission are silently turned into vanilla DNS
99 // requests). This only affects DNS queries made using this network object.
100 //
101 // It it not parceled to receivers because (a) it can be set or cleared at
102 // anytime and (b) receivers should be explicit about attempts to bypass
103 // Private DNS so that the intent of the code is easily determined and
104 // code search audits are possible.
Erik Klinef4fa9822018-04-27 22:48:33 +0900105 private final transient boolean mPrivateDnsBypass;
Erik Kline7eccfeb2018-05-22 21:15:49 +0900106
Robert Greenwalt85956262014-05-18 20:29:39 -0700107 /**
108 * @hide
109 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100110 @UnsupportedAppUsage
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700111 public Network(int netId) {
Erik Klinef4fa9822018-04-27 22:48:33 +0900112 this(netId, false);
113 }
114
115 /**
116 * @hide
117 */
118 public Network(int netId, boolean privateDnsBypass) {
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700119 this.netId = netId;
Erik Klinef4fa9822018-04-27 22:48:33 +0900120 this.mPrivateDnsBypass = privateDnsBypass;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700121 }
122
Robert Greenwalt85956262014-05-18 20:29:39 -0700123 /**
124 * @hide
125 */
Remi NGUYEN VAN5c5f1ba2019-01-29 12:08:43 +0900126 @SystemApi
127 @TestApi
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700128 public Network(Network that) {
Erik Klinef4fa9822018-04-27 22:48:33 +0900129 this(that.netId, that.mPrivateDnsBypass);
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700130 }
131
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400132 /**
133 * Operates the same as {@code InetAddress.getAllByName} except that host
134 * resolution is done on this network.
135 *
136 * @param host the hostname or literal IP string to be resolved.
137 * @return the array of addresses associated with the specified host.
138 * @throws UnknownHostException if the address lookup fails.
139 */
140 public InetAddress[] getAllByName(String host) throws UnknownHostException {
Erik Kline7eccfeb2018-05-22 21:15:49 +0900141 return InetAddress.getAllByNameOnNet(host, getNetIdForResolv());
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400142 }
143
144 /**
145 * Operates the same as {@code InetAddress.getByName} except that host
146 * resolution is done on this network.
147 *
Erik Klinef4fa9822018-04-27 22:48:33 +0900148 * @param host the hostname to be resolved to an address or {@code null}.
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400149 * @return the {@code InetAddress} instance representing the host.
150 * @throws UnknownHostException
151 * if the address lookup fails.
152 */
153 public InetAddress getByName(String host) throws UnknownHostException {
Erik Kline7eccfeb2018-05-22 21:15:49 +0900154 return InetAddress.getByNameOnNet(host, getNetIdForResolv());
155 }
156
157 /**
Erik Klinef4fa9822018-04-27 22:48:33 +0900158 * Obtain a Network object for which Private DNS is to be bypassed when attempting
Chalard Jean68237442018-06-07 13:46:52 +0900159 * to use {@link #getAllByName(String)}/{@link #getByName(String)} methods on the given
Erik Kline7eccfeb2018-05-22 21:15:49 +0900160 * instance for hostname resolution.
161 *
162 * @hide
163 */
Remi NGUYEN VAN31f1d0c2019-01-20 12:52:43 +0900164 @TestApi
165 @SystemApi
Erik Klinef4fa9822018-04-27 22:48:33 +0900166 public Network getPrivateDnsBypassingCopy() {
167 return new Network(netId, true);
Erik Kline7eccfeb2018-05-22 21:15:49 +0900168 }
169
170 /**
171 * Returns a netid marked with the Private DNS bypass flag.
172 *
173 * This flag must be kept in sync with the NETID_USE_LOCAL_NAMESERVERS flag
174 * in system/netd/include/NetdClient.h.
175 *
176 * @hide
177 */
178 public int getNetIdForResolv() {
179 return mPrivateDnsBypass
180 ? (int) (0x80000000L | (long) netId) // Non-portable DNS resolution flag.
181 : netId;
Paul Jensen3e32a4b2014-05-13 19:05:13 -0400182 }
183
Robert Greenwalt85956262014-05-18 20:29:39 -0700184 /**
Paul Jensen2d6f2652014-05-20 11:25:35 -0400185 * A {@code SocketFactory} that produces {@code Socket}'s bound to this network.
186 */
187 private class NetworkBoundSocketFactory extends SocketFactory {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900188 private Socket connectToHost(String host, int port, SocketAddress localAddress)
189 throws IOException {
Paul Jensen8ef34012014-05-27 10:19:39 -0400190 // Lookup addresses only on this Network.
191 InetAddress[] hostAddresses = getAllByName(host);
Lorenzo Colittif0382892014-07-30 17:17:13 +0900192 // Try all addresses.
193 for (int i = 0; i < hostAddresses.length; i++) {
Paul Jensen8ef34012014-05-27 10:19:39 -0400194 try {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900195 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400196 boolean failed = true;
197 try {
198 if (localAddress != null) socket.bind(localAddress);
199 socket.connect(new InetSocketAddress(hostAddresses[i], port));
200 failed = false;
201 return socket;
202 } finally {
203 if (failed) IoUtils.closeQuietly(socket);
204 }
Paul Jensen8ef34012014-05-27 10:19:39 -0400205 } catch (IOException e) {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900206 if (i == (hostAddresses.length - 1)) throw e;
Paul Jensen8ef34012014-05-27 10:19:39 -0400207 }
208 }
Lorenzo Colittif0382892014-07-30 17:17:13 +0900209 throw new UnknownHostException(host);
Paul Jensen8ef34012014-05-27 10:19:39 -0400210 }
211
Paul Jensen2d6f2652014-05-20 11:25:35 -0400212 @Override
Chalard Jean68237442018-06-07 13:46:52 +0900213 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
214 throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900215 return connectToHost(host, port, new InetSocketAddress(localHost, localPort));
Paul Jensen2d6f2652014-05-20 11:25:35 -0400216 }
217
218 @Override
219 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
220 int localPort) throws IOException {
221 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400222 boolean failed = true;
223 try {
224 socket.bind(new InetSocketAddress(localAddress, localPort));
225 socket.connect(new InetSocketAddress(address, port));
226 failed = false;
227 } finally {
228 if (failed) IoUtils.closeQuietly(socket);
229 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400230 return socket;
231 }
232
233 @Override
234 public Socket createSocket(InetAddress host, int port) throws IOException {
235 Socket socket = createSocket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400236 boolean failed = true;
237 try {
238 socket.connect(new InetSocketAddress(host, port));
239 failed = false;
240 } finally {
241 if (failed) IoUtils.closeQuietly(socket);
242 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400243 return socket;
244 }
245
246 @Override
247 public Socket createSocket(String host, int port) throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900248 return connectToHost(host, port, null);
Paul Jensen2d6f2652014-05-20 11:25:35 -0400249 }
250
251 @Override
252 public Socket createSocket() throws IOException {
253 Socket socket = new Socket();
Paul Jensen89bb9932018-03-29 07:41:43 -0400254 boolean failed = true;
255 try {
256 bindSocket(socket);
257 failed = false;
258 } finally {
259 if (failed) IoUtils.closeQuietly(socket);
260 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400261 return socket;
262 }
263 }
264
265 /**
Robert Greenwalt85956262014-05-18 20:29:39 -0700266 * Returns a {@link SocketFactory} bound to this network. Any {@link Socket} created by
267 * this factory will have its traffic sent over this {@code Network}. Note that if this
268 * {@code Network} ever disconnects, this factory and any {@link Socket} it produced in the
269 * past or future will cease to work.
270 *
271 * @return a {@link SocketFactory} which produces {@link Socket} instances bound to this
272 * {@code Network}.
273 */
Paul Jensen0a363a32014-05-29 10:12:39 -0400274 public SocketFactory getSocketFactory() {
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900275 if (mNetworkBoundSocketFactory == null) {
276 synchronized (mLock) {
277 if (mNetworkBoundSocketFactory == null) {
Chalard Jean68237442018-06-07 13:46:52 +0900278 mNetworkBoundSocketFactory = new NetworkBoundSocketFactory();
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900279 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900280 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400281 }
282 return mNetworkBoundSocketFactory;
Robert Greenwalt85956262014-05-18 20:29:39 -0700283 }
284
Paul Jensen07ed0742014-09-08 14:59:09 -0400285 // TODO: This creates a connection pool and host resolver for
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -0700286 // every Network object, instead of one for every NetId. This is
287 // suboptimal, because an app could potentially have more than one
288 // Network object for the same NetId, causing increased memory footprint
289 // and performance penalties due to lack of connection reuse (connection
290 // setup time, congestion window growth time, etc.).
291 //
Paul Jensen07ed0742014-09-08 14:59:09 -0400292 // Instead, investigate only having one connection pool and host resolver
293 // for every NetId, perhaps by using a static HashMap of NetIds to
294 // connection pools and host resolvers. The tricky part is deciding when
295 // to remove a map entry; a WeakHashMap shouldn't be used because whether
296 // a Network is referenced doesn't correlate with whether a new Network
297 // will be instantiated in the near future with the same NetID. A good
298 // solution would involve purging empty (or when all connections are timed
299 // out) ConnectionPools.
Tobias Thierer69b8b292017-04-11 22:16:53 +0100300 private void maybeInitUrlConnectionFactory() {
Paul Jensen07ed0742014-09-08 14:59:09 -0400301 synchronized (mLock) {
Tobias Thierer69b8b292017-04-11 22:16:53 +0100302 if (mUrlConnectionFactory == null) {
303 // Set configuration on the HttpURLConnectionFactory that will be good for all
304 // connections created by this Network. Configuration that might vary is left
305 // until openConnection() and passed as arguments.
306 Dns dnsLookup = hostname -> Arrays.asList(Network.this.getAllByName(hostname));
307 HttpURLConnectionFactory urlConnectionFactory = new HttpURLConnectionFactory();
308 urlConnectionFactory.setDns(dnsLookup); // Let traffic go via dnsLookup
309 // A private connection pool just for this Network.
310 urlConnectionFactory.setNewConnectionPool(httpMaxConnections,
Tobias Thierer851d8062016-06-01 20:51:45 +0100311 httpKeepAliveDurationMs, TimeUnit.MILLISECONDS);
Tobias Thierer69b8b292017-04-11 22:16:53 +0100312 mUrlConnectionFactory = urlConnectionFactory;
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900313 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900314 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900315 }
316
317 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700318 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
319 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
320 *
321 * @return a {@code URLConnection} to the resource referred to by this URL.
322 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
323 * @throws IOException if an error occurs while opening the connection.
324 * @see java.net.URL#openConnection()
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900325 */
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700326 public URLConnection openConnection(URL url) throws IOException {
Paul Jensen72db88e2015-03-10 10:54:12 -0400327 final ConnectivityManager cm = ConnectivityManager.getInstanceOrNull();
328 if (cm == null) {
329 throw new IOException("No ConnectivityManager yet constructed, please construct one");
330 }
Paul Jensene0bef712014-12-10 15:12:18 -0500331 // TODO: Should this be optimized to avoid fetching the global proxy for every request?
Paul Jensencee9b512015-05-06 07:32:40 -0400332 final ProxyInfo proxyInfo = cm.getProxyForNetwork(this);
Tobias Thierer69b8b292017-04-11 22:16:53 +0100333 final java.net.Proxy proxy;
Paul Jensene0bef712014-12-10 15:12:18 -0500334 if (proxyInfo != null) {
335 proxy = proxyInfo.makeProxy();
336 } else {
337 proxy = java.net.Proxy.NO_PROXY;
338 }
339 return openConnection(url, proxy);
340 }
341
342 /**
343 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
344 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
345 *
346 * @param proxy the proxy through which the connection will be established.
347 * @return a {@code URLConnection} to the resource referred to by this URL.
348 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
349 * @throws IllegalArgumentException if the argument proxy is null.
350 * @throws IOException if an error occurs while opening the connection.
351 * @see java.net.URL#openConnection()
Paul Jensene0bef712014-12-10 15:12:18 -0500352 */
353 public URLConnection openConnection(URL url, java.net.Proxy proxy) throws IOException {
354 if (proxy == null) throw new IllegalArgumentException("proxy is null");
Tobias Thierer69b8b292017-04-11 22:16:53 +0100355 maybeInitUrlConnectionFactory();
356 SocketFactory socketFactory = getSocketFactory();
357 return mUrlConnectionFactory.openConnection(url, socketFactory, proxy);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700358 }
359
360 /**
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700361 * Binds the specified {@link DatagramSocket} to this {@code Network}. All data traffic on the
362 * socket will be sent on this {@code Network}, irrespective of any process-wide network binding
Paul Jensen72db88e2015-03-10 10:54:12 -0400363 * set by {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700364 * connected.
365 */
366 public void bindSocket(DatagramSocket socket) throws IOException {
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700367 // Query a property of the underlying socket to ensure that the socket's file descriptor
368 // exists, is available to bind to a network and is not closed.
369 socket.getReuseAddress();
Erik Klined8959992015-06-05 17:37:45 +0900370 bindSocket(socket.getFileDescriptor$());
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700371 }
372
373 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700374 * Binds the specified {@link Socket} to this {@code Network}. All data traffic on the socket
375 * will be sent on this {@code Network}, irrespective of any process-wide network binding set by
Paul Jensen72db88e2015-03-10 10:54:12 -0400376 * {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be connected.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700377 */
378 public void bindSocket(Socket socket) throws IOException {
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700379 // Query a property of the underlying socket to ensure that the socket's file descriptor
380 // exists, is available to bind to a network and is not closed.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700381 socket.getReuseAddress();
Erik Klined8959992015-06-05 17:37:45 +0900382 bindSocket(socket.getFileDescriptor$());
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700383 }
384
Erik Klined8959992015-06-05 17:37:45 +0900385 /**
386 * Binds the specified {@link FileDescriptor} to this {@code Network}. All data traffic on the
387 * socket represented by this file descriptor will be sent on this {@code Network},
388 * irrespective of any process-wide network binding set by
389 * {@link ConnectivityManager#bindProcessToNetwork}. The socket must not be connected.
390 */
391 public void bindSocket(FileDescriptor fd) throws IOException {
392 try {
393 final SocketAddress peer = Os.getpeername(fd);
394 final InetAddress inetPeer = ((InetSocketAddress) peer).getAddress();
395 if (!inetPeer.isAnyLocalAddress()) {
396 // Apparently, the kernel doesn't update a connected UDP socket's
397 // routing upon mark changes.
398 throw new SocketException("Socket is connected");
399 }
400 } catch (ErrnoException e) {
401 // getpeername() failed.
402 if (e.errno != OsConstants.ENOTCONN) {
403 throw e.rethrowAsSocketException();
404 }
405 } catch (ClassCastException e) {
406 // Wasn't an InetSocketAddress.
407 throw new SocketException("Only AF_INET/AF_INET6 sockets supported");
408 }
409
410 final int err = NetworkUtils.bindSocketToNetwork(fd.getInt$(), netId);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700411 if (err != 0) {
412 // bindSocketToNetwork returns negative errno.
413 throw new ErrnoException("Binding socket to network " + netId, -err)
414 .rethrowAsSocketException();
415 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900416 }
417
Erik Kline25f3b7b2015-03-05 15:13:37 +0900418 /**
Paul Jensen4af17812018-03-28 09:19:58 -0400419 * Returns a {@link Network} object given a handle returned from {@link #getNetworkHandle}.
420 *
421 * @param networkHandle a handle returned from {@link #getNetworkHandle}.
422 * @return A {@link Network} object derived from {@code networkHandle}.
423 */
424 public static Network fromNetworkHandle(long networkHandle) {
425 if (networkHandle == 0) {
426 throw new IllegalArgumentException(
427 "Network.fromNetworkHandle refusing to instantiate NETID_UNSET Network.");
428 }
429 if ((networkHandle & ((1L << HANDLE_MAGIC_SIZE) - 1)) != HANDLE_MAGIC
430 || networkHandle < 0) {
431 throw new IllegalArgumentException(
432 "Value passed to fromNetworkHandle() is not a network handle.");
433 }
434 return new Network((int) (networkHandle >> HANDLE_MAGIC_SIZE));
435 }
436
437 /**
Erik Kline25f3b7b2015-03-05 15:13:37 +0900438 * Returns a handle representing this {@code Network}, for use with the NDK API.
439 */
440 public long getNetworkHandle() {
441 // The network handle is explicitly not the same as the netId.
442 //
443 // The netId is an implementation detail which might be changed in the
444 // future, or which alone (i.e. in the absence of some additional
445 // context) might not be sufficient to fully identify a Network.
446 //
447 // As such, the intention is to prevent accidental misuse of the API
448 // that might result if a developer assumed that handles and netIds
449 // were identical and passing a netId to a call expecting a handle
450 // "just worked". Such accidental misuse, if widely deployed, might
451 // prevent future changes to the semantics of the netId field or
452 // inhibit the expansion of state required for Network objects.
453 //
454 // This extra layer of indirection might be seen as paranoia, and might
455 // never end up being necessary, but the added complexity is trivial.
456 // At some future date it may be desirable to realign the handle with
457 // Multiple Provisioning Domains API recommendations, as made by the
458 // IETF mif working group.
Erik Klinee1a6cf22015-05-14 15:40:07 +0900459 if (netId == 0) {
460 return 0L; // make this zero condition obvious for debugging
461 }
Paul Jensen4af17812018-03-28 09:19:58 -0400462 return (((long) netId) << HANDLE_MAGIC_SIZE) | HANDLE_MAGIC;
Erik Kline25f3b7b2015-03-05 15:13:37 +0900463 }
464
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700465 // implement the Parcelable interface
466 public int describeContents() {
467 return 0;
468 }
469 public void writeToParcel(Parcel dest, int flags) {
470 dest.writeInt(netId);
471 }
472
473 public static final Creator<Network> CREATOR =
474 new Creator<Network>() {
475 public Network createFromParcel(Parcel in) {
476 int netId = in.readInt();
477
478 return new Network(netId);
479 }
480
481 public Network[] newArray(int size) {
482 return new Network[size];
483 }
484 };
Robert Greenwalt85956262014-05-18 20:29:39 -0700485
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700486 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700487 public boolean equals(Object obj) {
Chalard Jean68237442018-06-07 13:46:52 +0900488 if (!(obj instanceof Network)) return false;
Robert Greenwalt85956262014-05-18 20:29:39 -0700489 Network other = (Network)obj;
490 return this.netId == other.netId;
491 }
492
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700493 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700494 public int hashCode() {
495 return netId * 11;
496 }
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700497
498 @Override
499 public String toString() {
500 return Integer.toString(netId);
501 }
Kweku Adams85f2fbc2017-12-18 12:04:12 -0800502
503 /** @hide */
504 public void writeToProto(ProtoOutputStream proto, long fieldId) {
505 final long token = proto.start(fieldId);
506 proto.write(NetworkProto.NET_ID, netId);
507 proto.end(token);
508 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700509}