blob: 4f35a22b45b6639300340c91a250ba8e76b01170 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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
19import java.net.InetAddress;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070020import java.net.Inet4Address;
21import java.net.Inet6Address;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import java.net.UnknownHostException;
Robert Greenwalta10b7fd2011-07-25 16:06:25 -070023import java.util.Collection;
Jeff Sharkeyfea17de2013-06-11 14:13:09 -070024import java.util.Locale;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
Lorenzo Colitti0a82e802014-07-31 00:48:01 +090026import android.os.Parcel;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070027import android.util.Log;
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +090028import android.util.Pair;
29
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070030
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031/**
32 * Native methods for managing network interfaces.
33 *
34 * {@hide}
35 */
36public class NetworkUtils {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070037
38 private static final String TAG = "NetworkUtils";
39
Wink Saville8171e6f2011-07-07 16:17:06 -070040 /** Setting bit 0 indicates reseting of IPv4 addresses required */
41 public static final int RESET_IPV4_ADDRESSES = 0x01;
42
43 /** Setting bit 1 indicates reseting of IPv4 addresses required */
44 public static final int RESET_IPV6_ADDRESSES = 0x02;
45
46 /** Reset all addresses */
47 public static final int RESET_ALL_ADDRESSES = RESET_IPV4_ADDRESSES | RESET_IPV6_ADDRESSES;
48
49 /**
50 * Reset IPv6 or IPv4 sockets that are connected via the named interface.
51 *
52 * @param interfaceName is the interface to reset
53 * @param mask {@see #RESET_IPV4_ADDRESSES} and {@see #RESET_IPV6_ADDRESSES}
54 */
55 public native static int resetConnections(String interfaceName, int mask);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056
57 /**
58 * Start the DHCP client daemon, in order to have it request addresses
Erik Kline3c3ce172015-02-19 19:51:15 +090059 * for the named interface. This returns {@code true} if the DHCPv4 daemon
60 * starts, {@code false} otherwise. This call blocks until such time as a
61 * result is available or the default discovery timeout has been reached.
62 * Callers should check {@link #getDhcpResults} to determine whether DHCP
63 * succeeded or failed, and if it succeeded, to fetch the {@link DhcpResults}.
64 * @param interfaceName the name of the interface to configure
65 * @return {@code true} for success, {@code false} for failure
66 */
67 public native static boolean startDhcp(String interfaceName);
68
69 /**
70 * Initiate renewal on the DHCP client daemon for the named interface. This
71 * returns {@code true} if the DHCPv4 daemon has been notified, {@code false}
72 * otherwise. This call blocks until such time as a result is available or
73 * the default renew timeout has been reached. Callers should check
74 * {@link #getDhcpResults} to determine whether DHCP succeeded or failed,
75 * and if it succeeded, to fetch the {@link DhcpResults}.
76 * @param interfaceName the name of the interface to configure
77 * @return {@code true} for success, {@code false} for failure
78 */
79 public native static boolean startDhcpRenew(String interfaceName);
80
81 /**
82 * Start the DHCP client daemon, in order to have it request addresses
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 * for the named interface, and then configure the interface with those
84 * addresses. This call blocks until it obtains a result (either success
85 * or failure) from the daemon.
86 * @param interfaceName the name of the interface to configure
Robert Greenwalt4717c262012-10-31 14:32:53 -070087 * @param dhcpResults if the request succeeds, this object is filled in with
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 * the IP address information.
89 * @return {@code true} for success, {@code false} for failure
90 */
Erik Kline3c3ce172015-02-19 19:51:15 +090091 public static boolean runDhcp(String interfaceName, DhcpResults dhcpResults) {
92 return startDhcp(interfaceName) && getDhcpResults(interfaceName, dhcpResults);
93 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094
95 /**
Erik Kline3c3ce172015-02-19 19:51:15 +090096 * Initiate renewal on the DHCP client daemon. This call blocks until it obtains
Irfan Sheriff914ed902011-06-21 14:26:37 -070097 * a result (either success or failure) from the daemon.
98 * @param interfaceName the name of the interface to configure
Robert Greenwalt4717c262012-10-31 14:32:53 -070099 * @param dhcpResults if the request succeeds, this object is filled in with
Irfan Sheriff914ed902011-06-21 14:26:37 -0700100 * the IP address information.
101 * @return {@code true} for success, {@code false} for failure
102 */
Erik Kline3c3ce172015-02-19 19:51:15 +0900103 public static boolean runDhcpRenew(String interfaceName, DhcpResults dhcpResults) {
104 return startDhcpRenew(interfaceName) && getDhcpResults(interfaceName, dhcpResults);
105 }
106
107 /**
108 * Fetch results from the DHCP client daemon. This call returns {@code true} if
109 * if there are results available to be read, {@code false} otherwise.
110 * @param interfaceName the name of the interface to configure
111 * @param dhcpResults if the request succeeds, this object is filled in with
112 * the IP address information.
113 * @return {@code true} for success, {@code false} for failure
114 */
115 public native static boolean getDhcpResults(String interfaceName, DhcpResults dhcpResults);
Irfan Sheriff914ed902011-06-21 14:26:37 -0700116
117 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 * Shut down the DHCP client daemon.
119 * @param interfaceName the name of the interface for which the daemon
120 * should be stopped
121 * @return {@code true} for success, {@code false} for failure
122 */
123 public native static boolean stopDhcp(String interfaceName);
124
125 /**
126 * Release the current DHCP lease.
127 * @param interfaceName the name of the interface for which the lease should
128 * be released
129 * @return {@code true} for success, {@code false} for failure
130 */
131 public native static boolean releaseDhcpLease(String interfaceName);
132
133 /**
134 * Return the last DHCP-related error message that was recorded.
135 * <p/>NOTE: This string is not localized, but currently it is only
136 * used in logging.
137 * @return the most recent error message, if any
138 */
139 public native static String getDhcpError();
140
141 /**
Paul Jensen38764952014-05-20 11:25:35 -0400142 * Binds the current process to the network designated by {@code netId}. All sockets created
143 * in the future (and not explicitly bound via a bound {@link SocketFactory} (see
Paul Jensen6d3ff9e2014-05-29 10:12:39 -0400144 * {@link Network#getSocketFactory}) will be bound to this network. Note that if this
Paul Jensen38764952014-05-20 11:25:35 -0400145 * {@code Network} ever disconnects all sockets created in this way will cease to work. This
146 * is by design so an application doesn't accidentally use sockets it thinks are still bound to
Paul Jensenbcc76d32014-07-11 08:17:29 -0400147 * a particular {@code Network}. Passing NETID_UNSET clears the binding.
Paul Jensen38764952014-05-20 11:25:35 -0400148 */
Paul Jensen32a58f02014-06-20 13:58:14 -0400149 public native static boolean bindProcessToNetwork(int netId);
Paul Jensen38764952014-05-20 11:25:35 -0400150
151 /**
Paul Jensen38764952014-05-20 11:25:35 -0400152 * Return the netId last passed to {@link #bindProcessToNetwork}, or NETID_UNSET if
153 * {@link #unbindProcessToNetwork} has been called since {@link #bindProcessToNetwork}.
154 */
155 public native static int getNetworkBoundToProcess();
156
157 /**
158 * Binds host resolutions performed by this process to the network designated by {@code netId}.
Paul Jensenbcc76d32014-07-11 08:17:29 -0400159 * {@link #bindProcessToNetwork} takes precedence over this setting. Passing NETID_UNSET clears
160 * the binding.
Paul Jensen38764952014-05-20 11:25:35 -0400161 *
162 * @deprecated This is strictly for legacy usage to support startUsingNetworkFeature().
163 */
Paul Jensen32a58f02014-06-20 13:58:14 -0400164 public native static boolean bindProcessToNetworkForHostResolution(int netId);
Paul Jensen38764952014-05-20 11:25:35 -0400165
166 /**
Paul Jensen38764952014-05-20 11:25:35 -0400167 * Explicitly binds {@code socketfd} to the network designated by {@code netId}. This
168 * overrides any binding via {@link #bindProcessToNetwork}.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700169 * @return 0 on success or negative errno on failure.
Paul Jensen38764952014-05-20 11:25:35 -0400170 */
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700171 public native static int bindSocketToNetwork(int socketfd, int netId);
Paul Jensen38764952014-05-20 11:25:35 -0400172
173 /**
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400174 * Protect {@code socketfd} from VPN connections. After protecting, data sent through
175 * this socket will go directly to the underlying network, so its traffic will not be
176 * forwarded through the VPN.
177 */
178 public native static boolean protectFromVpn(int socketfd);
179
180 /**
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700181 * Convert a IPv4 address from an integer to an InetAddress.
Jesse Wilson07481cc2011-01-06 17:18:23 -0800182 * @param hostAddress an int corresponding to the IPv4 address in network byte order
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700183 */
184 public static InetAddress intToInetAddress(int hostAddress) {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700185 byte[] addressBytes = { (byte)(0xff & hostAddress),
186 (byte)(0xff & (hostAddress >> 8)),
187 (byte)(0xff & (hostAddress >> 16)),
188 (byte)(0xff & (hostAddress >> 24)) };
189
190 try {
Jesse Wilson07481cc2011-01-06 17:18:23 -0800191 return InetAddress.getByAddress(addressBytes);
192 } catch (UnknownHostException e) {
193 throw new AssertionError();
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700194 }
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700195 }
196
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700197 /**
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700198 * Convert a IPv4 address from an InetAddress to an integer
199 * @param inetAddr is an InetAddress corresponding to the IPv4 address
200 * @return the IP address as an integer in network byte order
201 */
Robert Greenwalt4717c262012-10-31 14:32:53 -0700202 public static int inetAddressToInt(Inet4Address inetAddr)
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700203 throws IllegalArgumentException {
204 byte [] addr = inetAddr.getAddress();
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700205 return ((addr[3] & 0xff) << 24) | ((addr[2] & 0xff) << 16) |
206 ((addr[1] & 0xff) << 8) | (addr[0] & 0xff);
207 }
208
209 /**
210 * Convert a network prefix length to an IPv4 netmask integer
211 * @param prefixLength
212 * @return the IPv4 netmask as an integer in network byte order
213 */
214 public static int prefixLengthToNetmaskInt(int prefixLength)
215 throws IllegalArgumentException {
216 if (prefixLength < 0 || prefixLength > 32) {
217 throw new IllegalArgumentException("Invalid prefix length (0 <= prefix <= 32)");
218 }
219 int value = 0xffffffff << (32 - prefixLength);
220 return Integer.reverseBytes(value);
221 }
222
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700223 /**
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700224 * Convert a IPv4 netmask integer to a prefix length
225 * @param netmask as an integer in network byte order
226 * @return the network prefix length
227 */
228 public static int netmaskIntToPrefixLength(int netmask) {
229 return Integer.bitCount(netmask);
230 }
231
232 /**
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900233 * Convert an IPv4 netmask to a prefix length, checking that the netmask is contiguous.
234 * @param netmask as a {@code Inet4Address}.
235 * @return the network prefix length
236 * @throws IllegalArgumentException the specified netmask was not contiguous.
237 * @hide
238 */
239 public static int netmaskToPrefixLength(Inet4Address netmask) {
240 // inetAddressToInt returns an int in *network* byte order.
241 int i = Integer.reverseBytes(inetAddressToInt(netmask));
242 int prefixLength = Integer.bitCount(i);
243 int trailingZeros = Integer.numberOfTrailingZeros(i);
244 if (trailingZeros != 32 - prefixLength) {
245 throw new IllegalArgumentException("Non-contiguous netmask: " + Integer.toHexString(i));
246 }
247 return prefixLength;
248 }
249
250
251 /**
Robert Greenwalt0216e612011-01-14 16:29:58 -0800252 * Create an InetAddress from a string where the string must be a standard
253 * representation of a V4 or V6 address. Avoids doing a DNS lookup on failure
254 * but it will throw an IllegalArgumentException in that case.
255 * @param addrString
256 * @return the InetAddress
257 * @hide
258 */
259 public static InetAddress numericToInetAddress(String addrString)
260 throws IllegalArgumentException {
Elliott Hughesf5bbb572011-02-15 17:11:29 -0800261 return InetAddress.parseNumericAddress(addrString);
Robert Greenwalt0216e612011-01-14 16:29:58 -0800262 }
263
264 /**
Lorenzo Colitti0a82e802014-07-31 00:48:01 +0900265 * Writes an InetAddress to a parcel. The address may be null. This is likely faster than
266 * calling writeSerializable.
267 */
268 protected static void parcelInetAddress(Parcel parcel, InetAddress address, int flags) {
269 byte[] addressArray = (address != null) ? address.getAddress() : null;
270 parcel.writeByteArray(addressArray);
271 }
272
273 /**
274 * Reads an InetAddress from a parcel. Returns null if the address that was written was null
275 * or if the data is invalid.
276 */
277 protected static InetAddress unparcelInetAddress(Parcel in) {
278 byte[] addressArray = in.createByteArray();
279 if (addressArray == null) {
280 return null;
281 }
282 try {
283 return InetAddress.getByAddress(addressArray);
284 } catch (UnknownHostException e) {
285 return null;
286 }
287 }
288
289
290 /**
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900291 * Masks a raw IP address byte array with the specified prefix length.
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700292 */
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900293 public static void maskRawAddress(byte[] array, int prefixLength) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700294 if (prefixLength < 0 || prefixLength > array.length * 8) {
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900295 throw new RuntimeException("IP address with " + array.length +
296 " bytes has invalid prefix length " + prefixLength);
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700297 }
298
299 int offset = prefixLength / 8;
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900300 int remainder = prefixLength % 8;
301 byte mask = (byte)(0xFF << (8 - remainder));
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700302
303 if (offset < array.length) array[offset] = (byte)(array[offset] & mask);
304
305 offset++;
306
307 for (; offset < array.length; offset++) {
308 array[offset] = 0;
309 }
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900310 }
311
312 /**
313 * Get InetAddress masked with prefixLength. Will never return null.
314 * @param address the IP address to mask with
315 * @param prefixLength the prefixLength used to mask the IP
316 */
317 public static InetAddress getNetworkPart(InetAddress address, int prefixLength) {
318 byte[] array = address.getAddress();
319 maskRawAddress(array, prefixLength);
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700320
321 InetAddress netPart = null;
322 try {
323 netPart = InetAddress.getByAddress(array);
324 } catch (UnknownHostException e) {
325 throw new RuntimeException("getNetworkPart error - " + e.toString());
326 }
327 return netPart;
328 }
329
330 /**
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900331 * Returns the implicit netmask of an IPv4 address, as was the custom before 1993.
332 */
333 public static int getImplicitNetmask(Inet4Address address) {
334 int firstByte = address.getAddress()[0] & 0xff; // Convert to an unsigned value.
335 if (firstByte < 128) {
336 return 8;
337 } else if (firstByte < 192) {
338 return 16;
339 } else if (firstByte < 224) {
340 return 24;
341 } else {
342 return 32; // Will likely not end well for other reasons.
343 }
344 }
345
346 /**
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900347 * Utility method to parse strings such as "192.0.2.5/24" or "2001:db8::cafe:d00d/64".
348 * @hide
349 */
350 public static Pair<InetAddress, Integer> parseIpAndMask(String ipAndMaskString) {
351 InetAddress address = null;
352 int prefixLength = -1;
353 try {
354 String[] pieces = ipAndMaskString.split("/", 2);
355 prefixLength = Integer.parseInt(pieces[1]);
356 address = InetAddress.parseNumericAddress(pieces[0]);
357 } catch (NullPointerException e) { // Null string.
358 } catch (ArrayIndexOutOfBoundsException e) { // No prefix length.
359 } catch (NumberFormatException e) { // Non-numeric prefix.
360 } catch (IllegalArgumentException e) { // Invalid IP address.
361 }
362
363 if (address == null || prefixLength == -1) {
364 throw new IllegalArgumentException("Invalid IP address and mask " + ipAndMaskString);
365 }
366
367 return new Pair<InetAddress, Integer>(address, prefixLength);
368 }
369
370 /**
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700371 * Check if IP address type is consistent between two InetAddress.
372 * @return true if both are the same type. False otherwise.
373 */
374 public static boolean addressTypeMatches(InetAddress left, InetAddress right) {
375 return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) ||
376 ((left instanceof Inet6Address) && (right instanceof Inet6Address)));
377 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700378
379 /**
380 * Convert a 32 char hex string into a Inet6Address.
381 * throws a runtime exception if the string isn't 32 chars, isn't hex or can't be
382 * made into an Inet6Address
383 * @param addrHexString a 32 character hex string representing an IPv6 addr
384 * @return addr an InetAddress representation for the string
385 */
386 public static InetAddress hexToInet6Address(String addrHexString)
387 throws IllegalArgumentException {
388 try {
Jeff Sharkeyfea17de2013-06-11 14:13:09 -0700389 return numericToInetAddress(String.format(Locale.US, "%s:%s:%s:%s:%s:%s:%s:%s",
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700390 addrHexString.substring(0,4), addrHexString.substring(4,8),
391 addrHexString.substring(8,12), addrHexString.substring(12,16),
392 addrHexString.substring(16,20), addrHexString.substring(20,24),
393 addrHexString.substring(24,28), addrHexString.substring(28,32)));
394 } catch (Exception e) {
395 Log.e("NetworkUtils", "error in hexToInet6Address(" + addrHexString + "): " + e);
396 throw new IllegalArgumentException(e);
397 }
398 }
Robert Greenwalta10b7fd2011-07-25 16:06:25 -0700399
400 /**
401 * Create a string array of host addresses from a collection of InetAddresses
402 * @param addrs a Collection of InetAddresses
403 * @return an array of Strings containing their host addresses
404 */
405 public static String[] makeStrings(Collection<InetAddress> addrs) {
406 String[] result = new String[addrs.size()];
407 int i = 0;
408 for (InetAddress addr : addrs) {
409 result[i++] = addr.getHostAddress();
410 }
411 return result;
412 }
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800413
414 /**
415 * Trim leading zeros from IPv4 address strings
416 * Our base libraries will interpret that as octel..
417 * Must leave non v4 addresses and host names alone.
418 * For example, 192.168.000.010 -> 192.168.0.10
419 * TODO - fix base libraries and remove this function
420 * @param addr a string representing an ip addr
421 * @return a string propertly trimmed
422 */
423 public static String trimV4AddrZeros(String addr) {
Robert Greenwalt0faacf02011-12-07 16:43:59 -0800424 if (addr == null) return null;
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800425 String[] octets = addr.split("\\.");
426 if (octets.length != 4) return addr;
427 StringBuilder builder = new StringBuilder(16);
428 String result = null;
429 for (int i = 0; i < 4; i++) {
430 try {
Robert Greenwalt3957b5f2011-12-07 13:10:59 -0800431 if (octets[i].length() > 3) return addr;
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800432 builder.append(Integer.parseInt(octets[i]));
433 } catch (NumberFormatException e) {
434 return addr;
435 }
436 if (i < 3) builder.append('.');
437 }
438 result = builder.toString();
439 return result;
440 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441}