blob: 34e9476b3e08fc85092f932fe7c257bac9bd08c3 [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
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010019import android.annotation.UnsupportedAppUsage;
Lorenzo Colitti0a82e802014-07-31 00:48:01 +090020import android.os.Parcel;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070021import android.util.Log;
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +090022import android.util.Pair;
23
Chalard Jeanadbf1d02018-02-26 11:52:46 +090024import java.io.FileDescriptor;
Remi NGUYEN VAN12da4a52018-07-04 11:15:56 +090025import java.io.IOException;
Chalard Jeanadbf1d02018-02-26 11:52:46 +090026import java.math.BigInteger;
27import java.net.Inet4Address;
28import java.net.Inet6Address;
29import java.net.InetAddress;
30import java.net.SocketException;
31import java.net.UnknownHostException;
32import java.util.Collection;
33import java.util.Locale;
34import java.util.TreeSet;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070035
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036/**
37 * Native methods for managing network interfaces.
38 *
39 * {@hide}
40 */
41public class NetworkUtils {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070042
43 private static final String TAG = "NetworkUtils";
44
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045 /**
Lorenzo Colitti566e0cb2015-03-06 19:57:39 +090046 * Attaches a socket filter that accepts DHCP packets to the given socket.
47 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010048 @UnsupportedAppUsage
Lorenzo Colitti566e0cb2015-03-06 19:57:39 +090049 public native static void attachDhcpFilter(FileDescriptor fd) throws SocketException;
50
51 /**
Erik Klinea3ca6bd2016-05-24 20:12:08 +090052 * Attaches a socket filter that accepts ICMPv6 router advertisements to the given socket.
Paul Jensen578a76e2016-01-14 14:54:39 -050053 * @param fd the socket's {@link FileDescriptor}.
54 * @param packetType the hardware address type, one of ARPHRD_*.
55 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010056 @UnsupportedAppUsage
Paul Jensen578a76e2016-01-14 14:54:39 -050057 public native static void attachRaFilter(FileDescriptor fd, int packetType) throws SocketException;
58
59 /**
Erik Kline473355f2016-10-19 17:42:01 +090060 * Attaches a socket filter that accepts L2-L4 signaling traffic required for IP connectivity.
61 *
62 * This includes: all ARP, ICMPv6 RS/RA/NS/NA messages, and DHCPv4 exchanges.
63 *
64 * @param fd the socket's {@link FileDescriptor}.
65 * @param packetType the hardware address type, one of ARPHRD_*.
66 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +010067 @UnsupportedAppUsage
Erik Kline473355f2016-10-19 17:42:01 +090068 public native static void attachControlPacketFilter(FileDescriptor fd, int packetType)
69 throws SocketException;
70
71 /**
Erik Klinea3ca6bd2016-05-24 20:12:08 +090072 * Configures a socket for receiving ICMPv6 router solicitations and sending advertisements.
73 * @param fd the socket's {@link FileDescriptor}.
74 * @param ifIndex the interface index.
75 */
76 public native static void setupRaSocket(FileDescriptor fd, int ifIndex) throws SocketException;
77
78 /**
Paul Jensen38764952014-05-20 11:25:35 -040079 * Binds the current process to the network designated by {@code netId}. All sockets created
80 * in the future (and not explicitly bound via a bound {@link SocketFactory} (see
Paul Jensen6d3ff9e2014-05-29 10:12:39 -040081 * {@link Network#getSocketFactory}) will be bound to this network. Note that if this
Paul Jensen38764952014-05-20 11:25:35 -040082 * {@code Network} ever disconnects all sockets created in this way will cease to work. This
83 * is by design so an application doesn't accidentally use sockets it thinks are still bound to
Paul Jensenbcc76d32014-07-11 08:17:29 -040084 * a particular {@code Network}. Passing NETID_UNSET clears the binding.
Paul Jensen38764952014-05-20 11:25:35 -040085 */
Paul Jensen32a58f02014-06-20 13:58:14 -040086 public native static boolean bindProcessToNetwork(int netId);
Paul Jensen38764952014-05-20 11:25:35 -040087
88 /**
Paul Jensen38764952014-05-20 11:25:35 -040089 * Return the netId last passed to {@link #bindProcessToNetwork}, or NETID_UNSET if
90 * {@link #unbindProcessToNetwork} has been called since {@link #bindProcessToNetwork}.
91 */
Paul Jensen72db88e2015-03-10 10:54:12 -040092 public native static int getBoundNetworkForProcess();
Paul Jensen38764952014-05-20 11:25:35 -040093
94 /**
95 * Binds host resolutions performed by this process to the network designated by {@code netId}.
Paul Jensenbcc76d32014-07-11 08:17:29 -040096 * {@link #bindProcessToNetwork} takes precedence over this setting. Passing NETID_UNSET clears
97 * the binding.
Paul Jensen38764952014-05-20 11:25:35 -040098 *
99 * @deprecated This is strictly for legacy usage to support startUsingNetworkFeature().
100 */
Aurimas Liutikas514c5ef2016-05-24 15:22:55 -0700101 @Deprecated
Paul Jensen32a58f02014-06-20 13:58:14 -0400102 public native static boolean bindProcessToNetworkForHostResolution(int netId);
Paul Jensen38764952014-05-20 11:25:35 -0400103
104 /**
Paul Jensen38764952014-05-20 11:25:35 -0400105 * Explicitly binds {@code socketfd} to the network designated by {@code netId}. This
106 * overrides any binding via {@link #bindProcessToNetwork}.
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700107 * @return 0 on success or negative errno on failure.
Paul Jensen38764952014-05-20 11:25:35 -0400108 */
Lorenzo Colitti9f1274b2014-08-21 11:45:54 -0700109 public native static int bindSocketToNetwork(int socketfd, int netId);
Paul Jensen38764952014-05-20 11:25:35 -0400110
111 /**
Lorenzo Colitti4ff9f0f2015-03-17 17:56:10 +0900112 * Protect {@code fd} from VPN connections. After protecting, data sent through
113 * this socket will go directly to the underlying network, so its traffic will not be
114 * forwarded through the VPN.
115 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100116 @UnsupportedAppUsage
Lorenzo Colitti4ff9f0f2015-03-17 17:56:10 +0900117 public static boolean protectFromVpn(FileDescriptor fd) {
118 return protectFromVpn(fd.getInt$());
119 }
120
121 /**
Paul Jensen6bc2c2c2014-05-07 15:27:40 -0400122 * Protect {@code socketfd} from VPN connections. After protecting, data sent through
123 * this socket will go directly to the underlying network, so its traffic will not be
124 * forwarded through the VPN.
125 */
126 public native static boolean protectFromVpn(int socketfd);
127
128 /**
Paul Jensencee9b512015-05-06 07:32:40 -0400129 * Determine if {@code uid} can access network designated by {@code netId}.
130 * @return {@code true} if {@code uid} can access network, {@code false} otherwise.
131 */
132 public native static boolean queryUserAccess(int uid, int netId);
133
134 /**
Remi NGUYEN VAN12da4a52018-07-04 11:15:56 +0900135 * Add an entry into the ARP cache.
136 */
137 public static void addArpEntry(Inet4Address ipv4Addr, MacAddress ethAddr, String ifname,
138 FileDescriptor fd) throws IOException {
139 addArpEntry(ethAddr.toByteArray(), ipv4Addr.getAddress(), ifname, fd);
140 }
141
142 private static native void addArpEntry(byte[] ethAddr, byte[] netAddr, String ifname,
143 FileDescriptor fd) throws IOException;
144
145 /**
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900146 * @see #intToInet4AddressHTL(int)
147 * @deprecated Use either {@link #intToInet4AddressHTH(int)}
148 * or {@link #intToInet4AddressHTL(int)}
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700149 */
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900150 @Deprecated
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100151 @UnsupportedAppUsage
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700152 public static InetAddress intToInetAddress(int hostAddress) {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900153 return intToInet4AddressHTL(hostAddress);
154 }
155
156 /**
157 * Convert a IPv4 address from an integer to an InetAddress (0x04030201 -> 1.2.3.4)
158 *
159 * <p>This method uses the higher-order int bytes as the lower-order IPv4 address bytes,
160 * which is an unusual convention. Consider {@link #intToInet4AddressHTH(int)} instead.
161 * @param hostAddress an int coding for an IPv4 address, where higher-order int byte is
162 * lower-order IPv4 address byte
163 */
Remi NGUYEN VANa420b572018-07-04 15:09:42 +0900164 public static Inet4Address intToInet4AddressHTL(int hostAddress) {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900165 return intToInet4AddressHTH(Integer.reverseBytes(hostAddress));
166 }
167
168 /**
169 * Convert a IPv4 address from an integer to an InetAddress (0x01020304 -> 1.2.3.4)
170 * @param hostAddress an int coding for an IPv4 address
171 */
Remi NGUYEN VANa420b572018-07-04 15:09:42 +0900172 public static Inet4Address intToInet4AddressHTH(int hostAddress) {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900173 byte[] addressBytes = { (byte) (0xff & (hostAddress >> 24)),
174 (byte) (0xff & (hostAddress >> 16)),
175 (byte) (0xff & (hostAddress >> 8)),
176 (byte) (0xff & hostAddress) };
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700177
178 try {
Remi NGUYEN VANa420b572018-07-04 15:09:42 +0900179 return (Inet4Address) InetAddress.getByAddress(addressBytes);
Jesse Wilson07481cc2011-01-06 17:18:23 -0800180 } catch (UnknownHostException e) {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900181 throw new AssertionError();
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700182 }
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700183 }
184
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700185 /**
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900186 * @see #inet4AddressToIntHTL(Inet4Address)
187 * @deprecated Use either {@link #inet4AddressToIntHTH(Inet4Address)}
188 * or {@link #inet4AddressToIntHTL(Inet4Address)}
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700189 */
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900190 @Deprecated
Robert Greenwalt4717c262012-10-31 14:32:53 -0700191 public static int inetAddressToInt(Inet4Address inetAddr)
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700192 throws IllegalArgumentException {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900193 return inet4AddressToIntHTL(inetAddr);
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700194 }
195
196 /**
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900197 * Convert an IPv4 address from an InetAddress to an integer (1.2.3.4 -> 0x01020304)
198 *
199 * <p>This conversion can help order IP addresses: considering the ordering
200 * 192.0.2.1 < 192.0.2.2 < ..., resulting ints will follow that ordering if read as unsigned
201 * integers with {@link Integer#toUnsignedLong}.
202 * @param inetAddr is an InetAddress corresponding to the IPv4 address
203 * @return the IP address as integer
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700204 */
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900205 public static int inet4AddressToIntHTH(Inet4Address inetAddr)
206 throws IllegalArgumentException {
207 byte [] addr = inetAddr.getAddress();
208 return ((addr[0] & 0xff) << 24) | ((addr[1] & 0xff) << 16)
209 | ((addr[2] & 0xff) << 8) | (addr[3] & 0xff);
210 }
211
212 /**
213 * Convert a IPv4 address from an InetAddress to an integer (1.2.3.4 -> 0x04030201)
214 *
215 * <p>This method stores the higher-order IPv4 address bytes in the lower-order int bytes,
216 * which is an unusual convention. Consider {@link #inet4AddressToIntHTH(Inet4Address)} instead.
217 * @param inetAddr is an InetAddress corresponding to the IPv4 address
218 * @return the IP address as integer
219 */
220 public static int inet4AddressToIntHTL(Inet4Address inetAddr) {
221 return Integer.reverseBytes(inet4AddressToIntHTH(inetAddr));
222 }
223
224 /**
225 * @see #prefixLengthToV4NetmaskIntHTL(int)
226 * @deprecated Use either {@link #prefixLengthToV4NetmaskIntHTH(int)}
227 * or {@link #prefixLengthToV4NetmaskIntHTL(int)}
228 */
229 @Deprecated
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100230 @UnsupportedAppUsage
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700231 public static int prefixLengthToNetmaskInt(int prefixLength)
232 throws IllegalArgumentException {
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900233 return prefixLengthToV4NetmaskIntHTL(prefixLength);
234 }
235
236 /**
237 * Convert a network prefix length to an IPv4 netmask integer (prefixLength 17 -> 0xffff8000)
238 * @return the IPv4 netmask as an integer
239 */
240 public static int prefixLengthToV4NetmaskIntHTH(int prefixLength)
241 throws IllegalArgumentException {
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700242 if (prefixLength < 0 || prefixLength > 32) {
243 throw new IllegalArgumentException("Invalid prefix length (0 <= prefix <= 32)");
244 }
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900245 // (int)a << b is equivalent to a << (b & 0x1f): can't shift by 32 (-1 << 32 == -1)
246 return prefixLength == 0 ? 0 : 0xffffffff << (32 - prefixLength);
247 }
248
249 /**
250 * Convert a network prefix length to an IPv4 netmask integer (prefixLength 17 -> 0x0080ffff).
251 *
252 * <p>This method stores the higher-order IPv4 address bytes in the lower-order int bytes,
253 * which is an unusual convention. Consider {@link #prefixLengthToV4NetmaskIntHTH(int)} instead.
254 * @return the IPv4 netmask as an integer
255 */
256 public static int prefixLengthToV4NetmaskIntHTL(int prefixLength)
257 throws IllegalArgumentException {
258 return Integer.reverseBytes(prefixLengthToV4NetmaskIntHTH(prefixLength));
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700259 }
260
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700261 /**
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700262 * Convert a IPv4 netmask integer to a prefix length
Remi NGUYEN VAN0066bda2018-07-09 10:40:40 +0900263 * @param netmask as an integer (0xff000000 for a /8 subnet)
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700264 * @return the network prefix length
265 */
266 public static int netmaskIntToPrefixLength(int netmask) {
267 return Integer.bitCount(netmask);
268 }
269
270 /**
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900271 * Convert an IPv4 netmask to a prefix length, checking that the netmask is contiguous.
272 * @param netmask as a {@code Inet4Address}.
273 * @return the network prefix length
274 * @throws IllegalArgumentException the specified netmask was not contiguous.
275 * @hide
276 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100277 @UnsupportedAppUsage
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900278 public static int netmaskToPrefixLength(Inet4Address netmask) {
279 // inetAddressToInt returns an int in *network* byte order.
280 int i = Integer.reverseBytes(inetAddressToInt(netmask));
281 int prefixLength = Integer.bitCount(i);
282 int trailingZeros = Integer.numberOfTrailingZeros(i);
283 if (trailingZeros != 32 - prefixLength) {
284 throw new IllegalArgumentException("Non-contiguous netmask: " + Integer.toHexString(i));
285 }
286 return prefixLength;
287 }
288
289
290 /**
Robert Greenwalt0216e612011-01-14 16:29:58 -0800291 * Create an InetAddress from a string where the string must be a standard
292 * representation of a V4 or V6 address. Avoids doing a DNS lookup on failure
293 * but it will throw an IllegalArgumentException in that case.
294 * @param addrString
295 * @return the InetAddress
296 * @hide
297 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100298 @UnsupportedAppUsage
Robert Greenwalt0216e612011-01-14 16:29:58 -0800299 public static InetAddress numericToInetAddress(String addrString)
300 throws IllegalArgumentException {
Elliott Hughesf5bbb572011-02-15 17:11:29 -0800301 return InetAddress.parseNumericAddress(addrString);
Robert Greenwalt0216e612011-01-14 16:29:58 -0800302 }
303
304 /**
Lorenzo Colitti0a82e802014-07-31 00:48:01 +0900305 * Writes an InetAddress to a parcel. The address may be null. This is likely faster than
306 * calling writeSerializable.
307 */
308 protected static void parcelInetAddress(Parcel parcel, InetAddress address, int flags) {
309 byte[] addressArray = (address != null) ? address.getAddress() : null;
310 parcel.writeByteArray(addressArray);
311 }
312
313 /**
314 * Reads an InetAddress from a parcel. Returns null if the address that was written was null
315 * or if the data is invalid.
316 */
317 protected static InetAddress unparcelInetAddress(Parcel in) {
318 byte[] addressArray = in.createByteArray();
319 if (addressArray == null) {
320 return null;
321 }
322 try {
323 return InetAddress.getByAddress(addressArray);
324 } catch (UnknownHostException e) {
325 return null;
326 }
327 }
328
329
330 /**
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900331 * Masks a raw IP address byte array with the specified prefix length.
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700332 */
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900333 public static void maskRawAddress(byte[] array, int prefixLength) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700334 if (prefixLength < 0 || prefixLength > array.length * 8) {
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900335 throw new RuntimeException("IP address with " + array.length +
336 " bytes has invalid prefix length " + prefixLength);
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700337 }
338
339 int offset = prefixLength / 8;
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900340 int remainder = prefixLength % 8;
341 byte mask = (byte)(0xFF << (8 - remainder));
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700342
343 if (offset < array.length) array[offset] = (byte)(array[offset] & mask);
344
345 offset++;
346
347 for (; offset < array.length; offset++) {
348 array[offset] = 0;
349 }
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900350 }
351
352 /**
353 * Get InetAddress masked with prefixLength. Will never return null.
354 * @param address the IP address to mask with
355 * @param prefixLength the prefixLength used to mask the IP
356 */
357 public static InetAddress getNetworkPart(InetAddress address, int prefixLength) {
358 byte[] array = address.getAddress();
359 maskRawAddress(array, prefixLength);
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700360
361 InetAddress netPart = null;
362 try {
363 netPart = InetAddress.getByAddress(array);
364 } catch (UnknownHostException e) {
365 throw new RuntimeException("getNetworkPart error - " + e.toString());
366 }
367 return netPart;
368 }
369
370 /**
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900371 * Returns the implicit netmask of an IPv4 address, as was the custom before 1993.
372 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100373 @UnsupportedAppUsage
Lorenzo Colitti475085b2015-03-10 01:32:40 +0900374 public static int getImplicitNetmask(Inet4Address address) {
375 int firstByte = address.getAddress()[0] & 0xff; // Convert to an unsigned value.
376 if (firstByte < 128) {
377 return 8;
378 } else if (firstByte < 192) {
379 return 16;
380 } else if (firstByte < 224) {
381 return 24;
382 } else {
383 return 32; // Will likely not end well for other reasons.
384 }
385 }
386
387 /**
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900388 * Utility method to parse strings such as "192.0.2.5/24" or "2001:db8::cafe:d00d/64".
389 * @hide
390 */
391 public static Pair<InetAddress, Integer> parseIpAndMask(String ipAndMaskString) {
392 InetAddress address = null;
393 int prefixLength = -1;
394 try {
395 String[] pieces = ipAndMaskString.split("/", 2);
396 prefixLength = Integer.parseInt(pieces[1]);
397 address = InetAddress.parseNumericAddress(pieces[0]);
398 } catch (NullPointerException e) { // Null string.
399 } catch (ArrayIndexOutOfBoundsException e) { // No prefix length.
400 } catch (NumberFormatException e) { // Non-numeric prefix.
401 } catch (IllegalArgumentException e) { // Invalid IP address.
402 }
403
404 if (address == null || prefixLength == -1) {
405 throw new IllegalArgumentException("Invalid IP address and mask " + ipAndMaskString);
406 }
407
408 return new Pair<InetAddress, Integer>(address, prefixLength);
409 }
410
411 /**
Remi NGUYEN VANa420b572018-07-04 15:09:42 +0900412 * Get a prefix mask as Inet4Address for a given prefix length.
413 *
414 * <p>For example 20 -> 255.255.240.0
415 */
416 public static Inet4Address getPrefixMaskAsInet4Address(int prefixLength)
417 throws IllegalArgumentException {
418 return intToInet4AddressHTH(prefixLengthToV4NetmaskIntHTH(prefixLength));
419 }
420
421 /**
422 * Get the broadcast address for a given prefix.
423 *
424 * <p>For example 192.168.0.1/24 -> 192.168.0.255
425 */
426 public static Inet4Address getBroadcastAddress(Inet4Address addr, int prefixLength)
427 throws IllegalArgumentException {
428 final int intBroadcastAddr = inet4AddressToIntHTH(addr)
429 | ~prefixLengthToV4NetmaskIntHTH(prefixLength);
430 return intToInet4AddressHTH(intBroadcastAddr);
431 }
432
433 /**
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700434 * Check if IP address type is consistent between two InetAddress.
435 * @return true if both are the same type. False otherwise.
436 */
437 public static boolean addressTypeMatches(InetAddress left, InetAddress right) {
438 return (((left instanceof Inet4Address) && (right instanceof Inet4Address)) ||
439 ((left instanceof Inet6Address) && (right instanceof Inet6Address)));
440 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700441
442 /**
443 * Convert a 32 char hex string into a Inet6Address.
444 * throws a runtime exception if the string isn't 32 chars, isn't hex or can't be
445 * made into an Inet6Address
446 * @param addrHexString a 32 character hex string representing an IPv6 addr
447 * @return addr an InetAddress representation for the string
448 */
449 public static InetAddress hexToInet6Address(String addrHexString)
450 throws IllegalArgumentException {
451 try {
Jeff Sharkeyfea17de2013-06-11 14:13:09 -0700452 return numericToInetAddress(String.format(Locale.US, "%s:%s:%s:%s:%s:%s:%s:%s",
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700453 addrHexString.substring(0,4), addrHexString.substring(4,8),
454 addrHexString.substring(8,12), addrHexString.substring(12,16),
455 addrHexString.substring(16,20), addrHexString.substring(20,24),
456 addrHexString.substring(24,28), addrHexString.substring(28,32)));
457 } catch (Exception e) {
458 Log.e("NetworkUtils", "error in hexToInet6Address(" + addrHexString + "): " + e);
459 throw new IllegalArgumentException(e);
460 }
461 }
Robert Greenwalta10b7fd2011-07-25 16:06:25 -0700462
463 /**
464 * Create a string array of host addresses from a collection of InetAddresses
465 * @param addrs a Collection of InetAddresses
466 * @return an array of Strings containing their host addresses
467 */
468 public static String[] makeStrings(Collection<InetAddress> addrs) {
469 String[] result = new String[addrs.size()];
470 int i = 0;
471 for (InetAddress addr : addrs) {
472 result[i++] = addr.getHostAddress();
473 }
474 return result;
475 }
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800476
477 /**
478 * Trim leading zeros from IPv4 address strings
479 * Our base libraries will interpret that as octel..
480 * Must leave non v4 addresses and host names alone.
481 * For example, 192.168.000.010 -> 192.168.0.10
482 * TODO - fix base libraries and remove this function
483 * @param addr a string representing an ip addr
484 * @return a string propertly trimmed
485 */
Mathew Inwoodfa3a7462018-08-08 14:52:47 +0100486 @UnsupportedAppUsage
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800487 public static String trimV4AddrZeros(String addr) {
Robert Greenwalt0faacf02011-12-07 16:43:59 -0800488 if (addr == null) return null;
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800489 String[] octets = addr.split("\\.");
490 if (octets.length != 4) return addr;
491 StringBuilder builder = new StringBuilder(16);
492 String result = null;
493 for (int i = 0; i < 4; i++) {
494 try {
Robert Greenwalt3957b5f2011-12-07 13:10:59 -0800495 if (octets[i].length() > 3) return addr;
Robert Greenwaltd4420ab2011-12-07 09:58:48 -0800496 builder.append(Integer.parseInt(octets[i]));
497 } catch (NumberFormatException e) {
498 return addr;
499 }
500 if (i < 3) builder.append('.');
501 }
502 result = builder.toString();
503 return result;
504 }
Chalard Jeanadbf1d02018-02-26 11:52:46 +0900505
506 /**
507 * Returns a prefix set without overlaps.
508 *
509 * This expects the src set to be sorted from shorter to longer. Results are undefined
510 * failing this condition. The returned prefix set is sorted in the same order as the
511 * passed set, with the same comparator.
512 */
513 private static TreeSet<IpPrefix> deduplicatePrefixSet(final TreeSet<IpPrefix> src) {
514 final TreeSet<IpPrefix> dst = new TreeSet<>(src.comparator());
515 // Prefixes match addresses that share their upper part up to their length, therefore
516 // the only kind of possible overlap in two prefixes is strict inclusion of the longer
517 // (more restrictive) in the shorter (including equivalence if they have the same
518 // length).
519 // Because prefixes in the src set are sorted from shorter to longer, deduplicating
520 // is done by simply iterating in order, and not adding any longer prefix that is
521 // already covered by a shorter one.
522 newPrefixes:
523 for (IpPrefix newPrefix : src) {
524 for (IpPrefix existingPrefix : dst) {
525 if (existingPrefix.containsPrefix(newPrefix)) {
526 continue newPrefixes;
527 }
528 }
529 dst.add(newPrefix);
530 }
531 return dst;
532 }
533
534 /**
535 * Returns how many IPv4 addresses match any of the prefixes in the passed ordered set.
536 *
537 * Obviously this returns an integral value between 0 and 2**32.
538 * The behavior is undefined if any of the prefixes is not an IPv4 prefix or if the
539 * set is not ordered smallest prefix to longer prefix.
540 *
541 * @param prefixes the set of prefixes, ordered by length
542 */
543 public static long routedIPv4AddressCount(final TreeSet<IpPrefix> prefixes) {
544 long routedIPCount = 0;
545 for (final IpPrefix prefix : deduplicatePrefixSet(prefixes)) {
546 if (!prefix.isIPv4()) {
547 Log.wtf(TAG, "Non-IPv4 prefix in routedIPv4AddressCount");
548 }
549 int rank = 32 - prefix.getPrefixLength();
550 routedIPCount += 1L << rank;
551 }
552 return routedIPCount;
553 }
554
555 /**
556 * Returns how many IPv6 addresses match any of the prefixes in the passed ordered set.
557 *
558 * This returns a BigInteger between 0 and 2**128.
559 * The behavior is undefined if any of the prefixes is not an IPv6 prefix or if the
560 * set is not ordered smallest prefix to longer prefix.
561 */
562 public static BigInteger routedIPv6AddressCount(final TreeSet<IpPrefix> prefixes) {
563 BigInteger routedIPCount = BigInteger.ZERO;
564 for (final IpPrefix prefix : deduplicatePrefixSet(prefixes)) {
565 if (!prefix.isIPv6()) {
566 Log.wtf(TAG, "Non-IPv6 prefix in routedIPv6AddressCount");
567 }
568 int rank = 128 - prefix.getPrefixLength();
569 routedIPCount = routedIPCount.add(BigInteger.ONE.shiftLeft(rank));
570 }
571 return routedIPCount;
572 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800573}