blob: 4fa0593c5e139811a1382cc7c45992f603cea862 [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
Paul Jensen2d6f2652014-05-20 11:25:35 -040019import android.net.NetworkUtils;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070020import android.os.Parcelable;
21import android.os.Parcel;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070022import android.system.ErrnoException;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070023
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070024import java.io.FileDescriptor;
Paul Jensen2d6f2652014-05-20 11:25:35 -040025import java.io.IOException;
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -070026import java.net.DatagramSocket;
Paul Jensen3e32a4b2014-05-13 19:05:13 -040027import java.net.InetAddress;
Paul Jensen2d6f2652014-05-20 11:25:35 -040028import java.net.InetSocketAddress;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090029import java.net.MalformedURLException;
Robert Greenwalt85956262014-05-18 20:29:39 -070030import java.net.Socket;
Lorenzo Colittif0382892014-07-30 17:17:13 +090031import java.net.SocketAddress;
Paul Jensen32a58f02014-06-20 13:58:14 -040032import java.net.SocketException;
Paul Jensen3e32a4b2014-05-13 19:05:13 -040033import java.net.UnknownHostException;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090034import java.net.URL;
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070035import java.net.URLConnection;
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +090036import java.net.URLStreamHandler;
37import java.util.concurrent.atomic.AtomicReference;
Robert Greenwalt85956262014-05-18 20:29:39 -070038import javax.net.SocketFactory;
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070039
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070040import com.android.okhttp.ConnectionPool;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090041import com.android.okhttp.HostResolver;
Paul Jensen07ed0742014-09-08 14:59:09 -040042import com.android.okhttp.HttpHandler;
43import com.android.okhttp.HttpsHandler;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090044import com.android.okhttp.OkHttpClient;
45
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070046/**
Robert Greenwalt85956262014-05-18 20:29:39 -070047 * Identifies a {@code Network}. This is supplied to applications via
Robert Greenwalt6078b502014-06-11 16:05:07 -070048 * {@link ConnectivityManager.NetworkCallback} in response to the active
49 * {@link ConnectivityManager#requestNetwork} or passive
50 * {@link ConnectivityManager#registerNetworkCallback} calls.
Robert Greenwalt85956262014-05-18 20:29:39 -070051 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
Paul Jensen0a363a32014-05-29 10:12:39 -040052 * through a targeted {@link SocketFactory} or process-wide via
53 * {@link ConnectivityManager#setProcessDefaultNetwork}.
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070054 */
55public class Network implements Parcelable {
56
Robert Greenwalt85956262014-05-18 20:29:39 -070057 /**
58 * @hide
59 */
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070060 public final int netId;
61
Lorenzo Colittic473dc42014-07-18 01:34:19 +090062 // Objects used to perform per-network operations such as getSocketFactory
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -070063 // and openConnection, and a lock to protect access to them.
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +090064 private volatile NetworkBoundSocketFactory mNetworkBoundSocketFactory = null;
Paul Jensen07ed0742014-09-08 14:59:09 -040065 // mLock should be used to control write access to mConnectionPool and mHostResolver.
66 // maybeInitHttpClient() must be called prior to reading either variable.
67 private volatile ConnectionPool mConnectionPool = null;
68 private volatile HostResolver mHostResolver = null;
Lorenzo Colittic473dc42014-07-18 01:34:19 +090069 private Object mLock = new Object();
Paul Jensen2d6f2652014-05-20 11:25:35 -040070
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -070071 // Default connection pool values. These are evaluated at startup, just
72 // like the OkHttp code. Also like the OkHttp code, we will throw parse
73 // exceptions at class loading time if the properties are set but are not
74 // valid integers.
75 private static final boolean httpKeepAlive =
76 Boolean.parseBoolean(System.getProperty("http.keepAlive", "true"));
77 private static final int httpMaxConnections =
78 httpKeepAlive ? Integer.parseInt(System.getProperty("http.maxConnections", "5")) : 0;
79 private static final long httpKeepAliveDurationMs =
80 Long.parseLong(System.getProperty("http.keepAliveDuration", "300000")); // 5 minutes.
81
Robert Greenwalt85956262014-05-18 20:29:39 -070082 /**
83 * @hide
84 */
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070085 public Network(int netId) {
86 this.netId = netId;
87 }
88
Robert Greenwalt85956262014-05-18 20:29:39 -070089 /**
90 * @hide
91 */
Robert Greenwalt9ba9c582014-03-19 17:56:12 -070092 public Network(Network that) {
93 this.netId = that.netId;
94 }
95
Paul Jensen3e32a4b2014-05-13 19:05:13 -040096 /**
97 * Operates the same as {@code InetAddress.getAllByName} except that host
98 * resolution is done on this network.
99 *
100 * @param host the hostname or literal IP string to be resolved.
101 * @return the array of addresses associated with the specified host.
102 * @throws UnknownHostException if the address lookup fails.
103 */
104 public InetAddress[] getAllByName(String host) throws UnknownHostException {
105 return InetAddress.getAllByNameOnNet(host, netId);
106 }
107
108 /**
109 * Operates the same as {@code InetAddress.getByName} except that host
110 * resolution is done on this network.
111 *
112 * @param host
113 * the hostName to be resolved to an address or {@code null}.
114 * @return the {@code InetAddress} instance representing the host.
115 * @throws UnknownHostException
116 * if the address lookup fails.
117 */
118 public InetAddress getByName(String host) throws UnknownHostException {
119 return InetAddress.getByNameOnNet(host, netId);
120 }
121
Robert Greenwalt85956262014-05-18 20:29:39 -0700122 /**
Paul Jensen2d6f2652014-05-20 11:25:35 -0400123 * A {@code SocketFactory} that produces {@code Socket}'s bound to this network.
124 */
125 private class NetworkBoundSocketFactory extends SocketFactory {
126 private final int mNetId;
127
128 public NetworkBoundSocketFactory(int netId) {
129 super();
130 mNetId = netId;
131 }
132
Lorenzo Colittif0382892014-07-30 17:17:13 +0900133 private Socket connectToHost(String host, int port, SocketAddress localAddress)
134 throws IOException {
Paul Jensen8ef34012014-05-27 10:19:39 -0400135 // Lookup addresses only on this Network.
136 InetAddress[] hostAddresses = getAllByName(host);
Lorenzo Colittif0382892014-07-30 17:17:13 +0900137 // Try all addresses.
138 for (int i = 0; i < hostAddresses.length; i++) {
Paul Jensen8ef34012014-05-27 10:19:39 -0400139 try {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900140 Socket socket = createSocket();
141 if (localAddress != null) socket.bind(localAddress);
Paul Jensen8ef34012014-05-27 10:19:39 -0400142 socket.connect(new InetSocketAddress(hostAddresses[i], port));
Lorenzo Colittif0382892014-07-30 17:17:13 +0900143 return socket;
Paul Jensen8ef34012014-05-27 10:19:39 -0400144 } catch (IOException e) {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900145 if (i == (hostAddresses.length - 1)) throw e;
Paul Jensen8ef34012014-05-27 10:19:39 -0400146 }
147 }
Lorenzo Colittif0382892014-07-30 17:17:13 +0900148 throw new UnknownHostException(host);
Paul Jensen8ef34012014-05-27 10:19:39 -0400149 }
150
Paul Jensen2d6f2652014-05-20 11:25:35 -0400151 @Override
152 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900153 return connectToHost(host, port, new InetSocketAddress(localHost, localPort));
Paul Jensen2d6f2652014-05-20 11:25:35 -0400154 }
155
156 @Override
157 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
158 int localPort) throws IOException {
159 Socket socket = createSocket();
160 socket.bind(new InetSocketAddress(localAddress, localPort));
161 socket.connect(new InetSocketAddress(address, port));
162 return socket;
163 }
164
165 @Override
166 public Socket createSocket(InetAddress host, int port) throws IOException {
167 Socket socket = createSocket();
168 socket.connect(new InetSocketAddress(host, port));
169 return socket;
170 }
171
172 @Override
173 public Socket createSocket(String host, int port) throws IOException {
Lorenzo Colittif0382892014-07-30 17:17:13 +0900174 return connectToHost(host, port, null);
Paul Jensen2d6f2652014-05-20 11:25:35 -0400175 }
176
177 @Override
178 public Socket createSocket() throws IOException {
179 Socket socket = new Socket();
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700180 bindSocket(socket);
Paul Jensen2d6f2652014-05-20 11:25:35 -0400181 return socket;
182 }
183 }
184
185 /**
Robert Greenwalt85956262014-05-18 20:29:39 -0700186 * Returns a {@link SocketFactory} bound to this network. Any {@link Socket} created by
187 * this factory will have its traffic sent over this {@code Network}. Note that if this
188 * {@code Network} ever disconnects, this factory and any {@link Socket} it produced in the
189 * past or future will cease to work.
190 *
191 * @return a {@link SocketFactory} which produces {@link Socket} instances bound to this
192 * {@code Network}.
193 */
Paul Jensen0a363a32014-05-29 10:12:39 -0400194 public SocketFactory getSocketFactory() {
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900195 if (mNetworkBoundSocketFactory == null) {
196 synchronized (mLock) {
197 if (mNetworkBoundSocketFactory == null) {
198 mNetworkBoundSocketFactory = new NetworkBoundSocketFactory(netId);
199 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900200 }
Paul Jensen2d6f2652014-05-20 11:25:35 -0400201 }
202 return mNetworkBoundSocketFactory;
Robert Greenwalt85956262014-05-18 20:29:39 -0700203 }
204
Paul Jensen07ed0742014-09-08 14:59:09 -0400205 // TODO: This creates a connection pool and host resolver for
Lorenzo Colitti0ed0a282014-08-28 17:15:40 -0700206 // every Network object, instead of one for every NetId. This is
207 // suboptimal, because an app could potentially have more than one
208 // Network object for the same NetId, causing increased memory footprint
209 // and performance penalties due to lack of connection reuse (connection
210 // setup time, congestion window growth time, etc.).
211 //
Paul Jensen07ed0742014-09-08 14:59:09 -0400212 // Instead, investigate only having one connection pool and host resolver
213 // for every NetId, perhaps by using a static HashMap of NetIds to
214 // connection pools and host resolvers. The tricky part is deciding when
215 // to remove a map entry; a WeakHashMap shouldn't be used because whether
216 // a Network is referenced doesn't correlate with whether a new Network
217 // will be instantiated in the near future with the same NetID. A good
218 // solution would involve purging empty (or when all connections are timed
219 // out) ConnectionPools.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700220 private void maybeInitHttpClient() {
Paul Jensen07ed0742014-09-08 14:59:09 -0400221 synchronized (mLock) {
222 if (mHostResolver == null) {
223 mHostResolver = new HostResolver() {
224 @Override
225 public InetAddress[] getAllByName(String host) throws UnknownHostException {
226 return Network.this.getAllByName(host);
227 }
228 };
229 }
230 if (mConnectionPool == null) {
231 mConnectionPool = new ConnectionPool(httpMaxConnections,
232 httpKeepAliveDurationMs);
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900233 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900234 }
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900235 }
236
237 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700238 * Opens the specified {@link URL} on this {@code Network}, such that all traffic will be sent
239 * on this Network. The URL protocol must be {@code HTTP} or {@code HTTPS}.
240 *
241 * @return a {@code URLConnection} to the resource referred to by this URL.
242 * @throws MalformedURLException if the URL protocol is not HTTP or HTTPS.
243 * @throws IOException if an error occurs while opening the connection.
244 * @see java.net.URL#openConnection()
Lorenzo Colitti5b37fa22014-07-29 22:51:27 +0900245 */
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700246 public URLConnection openConnection(URL url) throws IOException {
247 maybeInitHttpClient();
248 String protocol = url.getProtocol();
Paul Jensen07ed0742014-09-08 14:59:09 -0400249 OkHttpClient client;
250 // TODO: HttpHandler creates OkHttpClients that share the default ResponseCache.
251 // Could this cause unexpected behavior?
252 // TODO: Should the network's proxy be specified?
253 if (protocol.equals("http")) {
254 client = HttpHandler.createHttpOkHttpClient(null /* proxy */);
255 } else if (protocol.equals("https")) {
256 client = HttpsHandler.createHttpsOkHttpClient(null /* proxy */);
257 } else {
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700258 // OkHttpClient only supports HTTP and HTTPS and returns a null URLStreamHandler if
259 // passed another protocol.
260 throw new MalformedURLException("Invalid URL or unrecognized protocol " + protocol);
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900261 }
Paul Jensen07ed0742014-09-08 14:59:09 -0400262 return client.setSocketFactory(getSocketFactory())
263 .setHostResolver(mHostResolver)
264 .setConnectionPool(mConnectionPool)
265 .open(url);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700266 }
267
268 /**
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700269 * Binds the specified {@link DatagramSocket} to this {@code Network}. All data traffic on the
270 * socket will be sent on this {@code Network}, irrespective of any process-wide network binding
271 * set by {@link ConnectivityManager#setProcessDefaultNetwork}. The socket must not be
272 * connected.
273 */
274 public void bindSocket(DatagramSocket socket) throws IOException {
275 // Apparently, the kernel doesn't update a connected UDP socket's routing upon mark changes.
276 if (socket.isConnected()) {
277 throw new SocketException("Socket is connected");
278 }
279 // Query a property of the underlying socket to ensure that the socket's file descriptor
280 // exists, is available to bind to a network and is not closed.
281 socket.getReuseAddress();
282 bindSocketFd(socket.getFileDescriptor$());
283 }
284
285 /**
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700286 * Binds the specified {@link Socket} to this {@code Network}. All data traffic on the socket
287 * will be sent on this {@code Network}, irrespective of any process-wide network binding set by
288 * {@link ConnectivityManager#setProcessDefaultNetwork}. The socket must not be connected.
289 */
290 public void bindSocket(Socket socket) throws IOException {
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700291 // Apparently, the kernel doesn't update a connected TCP socket's routing upon mark changes.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700292 if (socket.isConnected()) {
293 throw new SocketException("Socket is connected");
294 }
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700295 // Query a property of the underlying socket to ensure that the socket's file descriptor
296 // exists, is available to bind to a network and is not closed.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700297 socket.getReuseAddress();
Sreeram Ramachandrane15db7c2014-10-22 11:10:20 -0700298 bindSocketFd(socket.getFileDescriptor$());
299 }
300
301 private void bindSocketFd(FileDescriptor fd) throws IOException {
302 int err = NetworkUtils.bindSocketToNetwork(fd.getInt$(), netId);
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700303 if (err != 0) {
304 // bindSocketToNetwork returns negative errno.
305 throw new ErrnoException("Binding socket to network " + netId, -err)
306 .rethrowAsSocketException();
307 }
Lorenzo Colittic473dc42014-07-18 01:34:19 +0900308 }
309
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700310 // implement the Parcelable interface
311 public int describeContents() {
312 return 0;
313 }
314 public void writeToParcel(Parcel dest, int flags) {
315 dest.writeInt(netId);
316 }
317
318 public static final Creator<Network> CREATOR =
319 new Creator<Network>() {
320 public Network createFromParcel(Parcel in) {
321 int netId = in.readInt();
322
323 return new Network(netId);
324 }
325
326 public Network[] newArray(int size) {
327 return new Network[size];
328 }
329 };
Robert Greenwalt85956262014-05-18 20:29:39 -0700330
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700331 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700332 public boolean equals(Object obj) {
333 if (obj instanceof Network == false) return false;
334 Network other = (Network)obj;
335 return this.netId == other.netId;
336 }
337
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700338 @Override
Robert Greenwalt85956262014-05-18 20:29:39 -0700339 public int hashCode() {
340 return netId * 11;
341 }
Robert Greenwalt2c7bf2c2014-06-23 16:07:43 -0700342
343 @Override
344 public String toString() {
345 return Integer.toString(netId);
346 }
Robert Greenwalt9ba9c582014-03-19 17:56:12 -0700347}