what-the-bank/sources/com/google/common/net/InetAddresses.java

663 lines
23 KiB
Java

package com.google.common.net;
import com.google.common.base.CharMatcher;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import com.google.common.hash.Hashing;
import com.google.common.io.ByteStreams;
import com.google.common.primitives.Ints;
import com.google.common.primitives.UnsignedBytes;
import java.math.BigInteger;
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Locale;
/* loaded from: classes2.dex */
public final class InetAddresses {
private static final int IPV4_PART_COUNT = 4;
private static final int IPV6_PART_COUNT = 8;
private static final char IPV4_DELIMITER = '.';
private static final CharMatcher IPV4_DELIMITER_MATCHER = CharMatcher.is(IPV4_DELIMITER);
private static final char IPV6_DELIMITER = ':';
private static final CharMatcher IPV6_DELIMITER_MATCHER = CharMatcher.is(IPV6_DELIMITER);
private static final Inet4Address LOOPBACK4 = (Inet4Address) forString("127.0.0.1");
private static final Inet4Address ANY4 = (Inet4Address) forString("0.0.0.0");
private InetAddresses() {
}
private static Inet4Address getInet4Address(byte[] bArr) {
Preconditions.checkArgument(bArr.length == 4, "Byte array has invalid length for an IPv4 address: %s != 4.", bArr.length);
return (Inet4Address) bytesToInetAddress(bArr);
}
public static InetAddress forString(String str) {
byte[] ipStringToBytes = ipStringToBytes(str);
if (ipStringToBytes == null) {
throw formatIllegalArgumentException("'%s' is not an IP string literal.", str);
}
return bytesToInetAddress(ipStringToBytes);
}
public static boolean isInetAddress(String str) {
return ipStringToBytes(str) != null;
}
/* JADX WARN: Code restructure failed: missing block: B:25:0x0031, code lost:
if (r3 == false) goto L29;
*/
/* JADX WARN: Code restructure failed: missing block: B:26:0x0033, code lost:
if (r2 == false) goto L25;
*/
/* JADX WARN: Code restructure failed: missing block: B:27:0x0035, code lost:
r9 = convertDottedQuadToHex(r9);
*/
/* JADX WARN: Code restructure failed: missing block: B:28:0x0039, code lost:
if (r9 != null) goto L25;
*/
/* JADX WARN: Code restructure failed: missing block: B:29:0x003b, code lost:
return null;
*/
/* JADX WARN: Code restructure failed: missing block: B:30:0x003c, code lost:
if (r1 == (-1)) goto L27;
*/
/* JADX WARN: Code restructure failed: missing block: B:31:0x003e, code lost:
r9 = r9.substring(0, r1);
*/
/* JADX WARN: Code restructure failed: missing block: B:33:0x0046, code lost:
return textToNumericFormatV6(r9);
*/
/* JADX WARN: Code restructure failed: missing block: B:34:0x0047, code lost:
if (r2 == false) goto L34;
*/
/* JADX WARN: Code restructure failed: missing block: B:35:0x0049, code lost:
if (r1 == (-1)) goto L32;
*/
/* JADX WARN: Code restructure failed: missing block: B:36:0x004b, code lost:
return null;
*/
/* JADX WARN: Code restructure failed: missing block: B:38:0x0050, code lost:
return textToNumericFormatV4(r9);
*/
/* JADX WARN: Code restructure failed: missing block: B:39:0x0051, code lost:
return null;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
private static byte[] ipStringToBytes(java.lang.String r9) {
/*
r0 = 0
r1 = r0
r2 = r1
r3 = r2
L4:
int r4 = r9.length()
r5 = -1
r6 = 0
if (r1 >= r4) goto L30
char r4 = r9.charAt(r1)
r7 = 46
r8 = 1
if (r4 != r7) goto L17
r2 = r8
goto L2d
L17:
r7 = 58
if (r4 != r7) goto L20
if (r2 == 0) goto L1e
return r6
L1e:
r3 = r8
goto L2d
L20:
r7 = 37
if (r4 == r7) goto L31
r7 = 16
int r4 = java.lang.Character.digit(r4, r7)
if (r4 != r5) goto L2d
return r6
L2d:
int r1 = r1 + 1
goto L4
L30:
r1 = r5
L31:
if (r3 == 0) goto L47
if (r2 == 0) goto L3c
java.lang.String r9 = convertDottedQuadToHex(r9)
if (r9 != 0) goto L3c
return r6
L3c:
if (r1 == r5) goto L42
java.lang.String r9 = r9.substring(r0, r1)
L42:
byte[] r9 = textToNumericFormatV6(r9)
return r9
L47:
if (r2 == 0) goto L51
if (r1 == r5) goto L4c
return r6
L4c:
byte[] r9 = textToNumericFormatV4(r9)
return r9
L51:
return r6
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.common.net.InetAddresses.ipStringToBytes(java.lang.String):byte[]");
}
private static byte[] textToNumericFormatV4(String str) {
if (IPV4_DELIMITER_MATCHER.countIn(str) + 1 != 4) {
return null;
}
byte[] bArr = new byte[4];
int i = 0;
for (int i2 = 0; i2 < 4; i2++) {
int indexOf = str.indexOf(46, i);
if (indexOf == -1) {
indexOf = str.length();
}
try {
bArr[i2] = parseOctet(str, i, indexOf);
i = indexOf + 1;
} catch (NumberFormatException unused) {
return null;
}
}
return bArr;
}
private static byte[] textToNumericFormatV6(String str) {
int countIn = IPV6_DELIMITER_MATCHER.countIn(str);
if (countIn >= 2 && countIn <= 8) {
int i = 1;
int i2 = countIn + 1;
int i3 = 8 - i2;
boolean z = false;
for (int i4 = 0; i4 < str.length() - 1; i4++) {
if (str.charAt(i4) == ':' && str.charAt(i4 + 1) == ':') {
if (z) {
return null;
}
int i5 = i3 + 1;
if (i4 == 0) {
i5 = i3 + 2;
}
if (i4 == str.length() - 2) {
i5++;
}
i3 = i5;
z = true;
}
}
if (str.charAt(0) == ':' && str.charAt(1) != ':') {
return null;
}
if (str.charAt(str.length() - 1) == ':' && str.charAt(str.length() - 2) != ':') {
return null;
}
if (z && i3 <= 0) {
return null;
}
if (!z && i2 != 8) {
return null;
}
ByteBuffer allocate = ByteBuffer.allocate(16);
try {
if (str.charAt(0) != ':') {
i = 0;
}
while (i < str.length()) {
int indexOf = str.indexOf(58, i);
if (indexOf == -1) {
indexOf = str.length();
}
if (str.charAt(i) == ':') {
for (int i6 = 0; i6 < i3; i6++) {
allocate.putShort((short) 0);
}
} else {
allocate.putShort(parseHextet(str, i, indexOf));
}
i = indexOf + 1;
}
return allocate.array();
} catch (NumberFormatException unused) {
}
}
return null;
}
private static String convertDottedQuadToHex(String str) {
int lastIndexOf = str.lastIndexOf(58) + 1;
String substring = str.substring(0, lastIndexOf);
byte[] textToNumericFormatV4 = textToNumericFormatV4(str.substring(lastIndexOf));
if (textToNumericFormatV4 == null) {
return null;
}
String hexString = Integer.toHexString(((textToNumericFormatV4[0] & UnsignedBytes.MAX_VALUE) << 8) | (textToNumericFormatV4[1] & UnsignedBytes.MAX_VALUE));
String hexString2 = Integer.toHexString((textToNumericFormatV4[3] & UnsignedBytes.MAX_VALUE) | ((textToNumericFormatV4[2] & UnsignedBytes.MAX_VALUE) << 8));
StringBuilder sb = new StringBuilder(String.valueOf(substring).length() + 1 + String.valueOf(hexString).length() + String.valueOf(hexString2).length());
sb.append(substring);
sb.append(hexString);
sb.append(":");
sb.append(hexString2);
return sb.toString();
}
private static byte parseOctet(String str, int i, int i2) {
int i3 = i2 - i;
if (i3 <= 0 || i3 > 3) {
throw new NumberFormatException();
}
if (i3 > 1 && str.charAt(i) == '0') {
throw new NumberFormatException();
}
int i4 = 0;
while (i < i2) {
int digit = Character.digit(str.charAt(i), 10);
if (digit < 0) {
throw new NumberFormatException();
}
i4 = (i4 * 10) + digit;
i++;
}
if (i4 <= 255) {
return (byte) i4;
}
throw new NumberFormatException();
}
private static short parseHextet(String str, int i, int i2) {
int i3 = i2 - i;
if (i3 <= 0 || i3 > 4) {
throw new NumberFormatException();
}
int i4 = 0;
while (i < i2) {
i4 = (i4 << 4) | Character.digit(str.charAt(i), 16);
i++;
}
return (short) i4;
}
private static InetAddress bytesToInetAddress(byte[] bArr) {
try {
return InetAddress.getByAddress(bArr);
} catch (UnknownHostException e) {
throw new AssertionError(e);
}
}
public static String toAddrString(InetAddress inetAddress) {
Preconditions.checkNotNull(inetAddress);
if (inetAddress instanceof Inet4Address) {
return inetAddress.getHostAddress();
}
Preconditions.checkArgument(inetAddress instanceof Inet6Address);
byte[] address = inetAddress.getAddress();
int[] iArr = new int[8];
for (int i = 0; i < 8; i++) {
int i2 = i << 1;
iArr[i] = Ints.fromBytes((byte) 0, (byte) 0, address[i2], address[i2 + 1]);
}
compressLongestRunOfZeroes(iArr);
return hextetsToIPv6String(iArr);
}
private static void compressLongestRunOfZeroes(int[] iArr) {
int i = -1;
int i2 = -1;
int i3 = -1;
for (int i4 = 0; i4 < iArr.length + 1; i4++) {
if (i4 >= iArr.length || iArr[i4] != 0) {
if (i3 >= 0) {
int i5 = i4 - i3;
if (i5 > i) {
i2 = i3;
i = i5;
}
i3 = -1;
}
} else if (i3 < 0) {
i3 = i4;
}
}
if (i >= 2) {
Arrays.fill(iArr, i2, i + i2, -1);
}
}
private static String hextetsToIPv6String(int[] iArr) {
StringBuilder sb = new StringBuilder(39);
int i = 0;
boolean z = false;
while (i < iArr.length) {
boolean z2 = iArr[i] >= 0;
if (z2) {
if (z) {
sb.append(IPV6_DELIMITER);
}
sb.append(Integer.toHexString(iArr[i]));
} else if (i == 0 || z) {
sb.append("::");
}
i++;
z = z2;
}
return sb.toString();
}
public static String toUriString(InetAddress inetAddress) {
if (inetAddress instanceof Inet6Address) {
String addrString = toAddrString(inetAddress);
StringBuilder sb = new StringBuilder(String.valueOf(addrString).length() + 2);
sb.append("[");
sb.append(addrString);
sb.append("]");
return sb.toString();
}
return toAddrString(inetAddress);
}
public static InetAddress forUriString(String str) {
InetAddress forUriStringNoThrow = forUriStringNoThrow(str);
if (forUriStringNoThrow != null) {
return forUriStringNoThrow;
}
throw formatIllegalArgumentException("Not a valid URI IP literal: '%s'", str);
}
private static InetAddress forUriStringNoThrow(String str) {
int i;
Preconditions.checkNotNull(str);
if (str.startsWith("[") && str.endsWith("]")) {
str = str.substring(1, str.length() - 1);
i = 16;
} else {
i = 4;
}
byte[] ipStringToBytes = ipStringToBytes(str);
if (ipStringToBytes == null || ipStringToBytes.length != i) {
return null;
}
return bytesToInetAddress(ipStringToBytes);
}
public static boolean isUriInetAddress(String str) {
return forUriStringNoThrow(str) != null;
}
public static boolean isCompatIPv4Address(Inet6Address inet6Address) {
byte b;
if (!inet6Address.isIPv4CompatibleAddress()) {
return false;
}
byte[] address = inet6Address.getAddress();
return (address[12] == 0 && address[13] == 0 && address[14] == 0 && ((b = address[15]) == 0 || b == 1)) ? false : true;
}
public static Inet4Address getCompatIPv4Address(Inet6Address inet6Address) {
Preconditions.checkArgument(isCompatIPv4Address(inet6Address), "Address '%s' is not IPv4-compatible.", toAddrString(inet6Address));
return getInet4Address(Arrays.copyOfRange(inet6Address.getAddress(), 12, 16));
}
public static boolean is6to4Address(Inet6Address inet6Address) {
byte[] address = inet6Address.getAddress();
return address[0] == 32 && address[1] == 2;
}
public static Inet4Address get6to4IPv4Address(Inet6Address inet6Address) {
Preconditions.checkArgument(is6to4Address(inet6Address), "Address '%s' is not a 6to4 address.", toAddrString(inet6Address));
return getInet4Address(Arrays.copyOfRange(inet6Address.getAddress(), 2, 6));
}
/* loaded from: classes2.dex */
public static final class TeredoInfo {
private final Inet4Address client;
private final int flags;
private final int port;
private final Inet4Address server;
public TeredoInfo(Inet4Address inet4Address, Inet4Address inet4Address2, int i, int i2) {
Preconditions.checkArgument(i >= 0 && i <= 65535, "port '%s' is out of range (0 <= port <= 0xffff)", i);
Preconditions.checkArgument(i2 >= 0 && i2 <= 65535, "flags '%s' is out of range (0 <= flags <= 0xffff)", i2);
this.server = (Inet4Address) MoreObjects.firstNonNull(inet4Address, InetAddresses.ANY4);
this.client = (Inet4Address) MoreObjects.firstNonNull(inet4Address2, InetAddresses.ANY4);
this.port = i;
this.flags = i2;
}
public final Inet4Address getServer() {
return this.server;
}
public final int getPort() {
return this.port;
}
public final int getFlags() {
return this.flags;
}
public final Inet4Address getClient() {
return this.client;
}
}
public static boolean isTeredoAddress(Inet6Address inet6Address) {
byte[] address = inet6Address.getAddress();
return address[0] == 32 && address[1] == 1 && address[2] == 0 && address[3] == 0;
}
public static TeredoInfo getTeredoInfo(Inet6Address inet6Address) {
Preconditions.checkArgument(isTeredoAddress(inet6Address), "Address '%s' is not a Teredo address.", toAddrString(inet6Address));
byte[] address = inet6Address.getAddress();
Inet4Address inet4Address = getInet4Address(Arrays.copyOfRange(address, 4, 8));
short readShort = ByteStreams.newDataInput(address, 8).readShort();
short readShort2 = ByteStreams.newDataInput(address, 10).readShort();
byte[] copyOfRange = Arrays.copyOfRange(address, 12, 16);
for (int i = 0; i < copyOfRange.length; i++) {
copyOfRange[i] = (byte) (~copyOfRange[i]);
}
return new TeredoInfo(inet4Address, getInet4Address(copyOfRange), (~readShort2) & 65535, readShort & 65535);
}
public static boolean isIsatapAddress(Inet6Address inet6Address) {
if (isTeredoAddress(inet6Address)) {
return false;
}
byte[] address = inet6Address.getAddress();
return (address[8] | 3) == 3 && address[9] == 0 && address[10] == 94 && address[11] == -2;
}
public static Inet4Address getIsatapIPv4Address(Inet6Address inet6Address) {
Preconditions.checkArgument(isIsatapAddress(inet6Address), "Address '%s' is not an ISATAP address.", toAddrString(inet6Address));
return getInet4Address(Arrays.copyOfRange(inet6Address.getAddress(), 12, 16));
}
public static boolean hasEmbeddedIPv4ClientAddress(Inet6Address inet6Address) {
return isCompatIPv4Address(inet6Address) || is6to4Address(inet6Address) || isTeredoAddress(inet6Address);
}
public static Inet4Address getEmbeddedIPv4ClientAddress(Inet6Address inet6Address) {
if (isCompatIPv4Address(inet6Address)) {
return getCompatIPv4Address(inet6Address);
}
if (is6to4Address(inet6Address)) {
return get6to4IPv4Address(inet6Address);
}
if (isTeredoAddress(inet6Address)) {
return getTeredoInfo(inet6Address).getClient();
}
throw formatIllegalArgumentException("'%s' has no embedded IPv4 address.", toAddrString(inet6Address));
}
public static boolean isMappedIPv4Address(String str) {
byte[] ipStringToBytes = ipStringToBytes(str);
if (ipStringToBytes == null || ipStringToBytes.length != 16) {
return false;
}
int i = 0;
while (true) {
if (i >= 10) {
for (int i2 = 10; i2 < 12; i2++) {
if (ipStringToBytes[i2] != -1) {
return false;
}
}
return true;
}
if (ipStringToBytes[i] != 0) {
return false;
}
i++;
}
}
public static Inet4Address getCoercedIPv4Address(InetAddress inetAddress) {
boolean z;
long j;
if (inetAddress instanceof Inet4Address) {
return (Inet4Address) inetAddress;
}
byte[] address = inetAddress.getAddress();
int i = 0;
while (true) {
if (i >= 15) {
z = true;
break;
}
if (address[i] != 0) {
z = false;
break;
}
i++;
}
if (z && address[15] == 1) {
return LOOPBACK4;
}
if (z && address[15] == 0) {
return ANY4;
}
Inet6Address inet6Address = (Inet6Address) inetAddress;
if (hasEmbeddedIPv4ClientAddress(inet6Address)) {
j = getEmbeddedIPv4ClientAddress(inet6Address).hashCode();
} else {
j = ByteBuffer.wrap(inet6Address.getAddress(), 0, 8).getLong();
}
int asInt = Hashing.murmur3_32().hashLong(j).asInt() | (-536870912);
if (asInt == -1) {
asInt = -2;
}
return getInet4Address(Ints.toByteArray(asInt));
}
public static int coerceToInteger(InetAddress inetAddress) {
return ByteStreams.newDataInput(getCoercedIPv4Address(inetAddress).getAddress()).readInt();
}
public static BigInteger toBigInteger(InetAddress inetAddress) {
return new BigInteger(1, inetAddress.getAddress());
}
public static Inet4Address fromInteger(int i) {
return getInet4Address(Ints.toByteArray(i));
}
public static Inet4Address fromIPv4BigInteger(BigInteger bigInteger) {
return (Inet4Address) fromBigInteger(bigInteger, false);
}
public static Inet6Address fromIPv6BigInteger(BigInteger bigInteger) {
return (Inet6Address) fromBigInteger(bigInteger, true);
}
private static InetAddress fromBigInteger(BigInteger bigInteger, boolean z) {
Preconditions.checkArgument(bigInteger.signum() >= 0, "BigInteger must be greater than or equal to 0");
int i = z ? 16 : 4;
byte[] byteArray = bigInteger.toByteArray();
byte[] bArr = new byte[i];
int max = Math.max(0, byteArray.length - i);
int length = byteArray.length - max;
for (int i2 = 0; i2 < max; i2++) {
if (byteArray[i2] != 0) {
throw formatIllegalArgumentException("BigInteger cannot be converted to InetAddress because it has more than %d bytes: %s", Integer.valueOf(i), bigInteger);
}
}
System.arraycopy(byteArray, max, bArr, i - length, length);
try {
return InetAddress.getByAddress(bArr);
} catch (UnknownHostException e) {
throw new AssertionError(e);
}
}
public static InetAddress fromLittleEndianByteArray(byte[] bArr) throws UnknownHostException {
byte[] bArr2 = new byte[bArr.length];
for (int i = 0; i < bArr.length; i++) {
bArr2[i] = bArr[(bArr.length - i) - 1];
}
return InetAddress.getByAddress(bArr2);
}
public static InetAddress decrement(InetAddress inetAddress) {
byte[] address = inetAddress.getAddress();
int length = address.length - 1;
while (length >= 0 && address[length] == 0) {
address[length] = -1;
length--;
}
Preconditions.checkArgument(length >= 0, "Decrementing %s would wrap.", inetAddress);
address[length] = (byte) (address[length] - 1);
return bytesToInetAddress(address);
}
public static InetAddress increment(InetAddress inetAddress) {
byte[] address = inetAddress.getAddress();
int length = address.length - 1;
while (true) {
if (length < 0 || address[length] != -1) {
break;
}
address[length] = 0;
length--;
}
Preconditions.checkArgument(length >= 0, "Incrementing %s would wrap.", inetAddress);
address[length] = (byte) (address[length] + 1);
return bytesToInetAddress(address);
}
public static boolean isMaximum(InetAddress inetAddress) {
for (byte b : inetAddress.getAddress()) {
if (b != -1) {
return false;
}
}
return true;
}
private static IllegalArgumentException formatIllegalArgumentException(String str, Object... objArr) {
return new IllegalArgumentException(String.format(Locale.ROOT, str, objArr));
}
}