73 lines
2.5 KiB
Java
73 lines
2.5 KiB
Java
package fr.xephi.authme.util;
|
|
|
|
import java.net.InetAddress;
|
|
import java.net.UnknownHostException;
|
|
|
|
/**
|
|
* Utility class about the InternetProtocol
|
|
*/
|
|
public final class InternetProtocolUtils {
|
|
|
|
// Utility class
|
|
private InternetProtocolUtils() {
|
|
}
|
|
|
|
/**
|
|
* Checks if the specified address is a private or loopback address
|
|
*
|
|
* @param address address to check
|
|
* @return true if the address is a local (site and link) or loopback address, false otherwise
|
|
*/
|
|
public static boolean isLocalAddress(String address) {
|
|
try {
|
|
InetAddress inetAddress = InetAddress.getByName(address);
|
|
|
|
// Examples: 127.0.0.1, localhost or [::1]
|
|
return isLoopbackAddress(address)
|
|
// Example: 10.0.0.0, 172.16.0.0, 192.168.0.0, fec0::/10 (deprecated)
|
|
// Ref: https://en.wikipedia.org/wiki/IP_address#Private_addresses
|
|
|| inetAddress.isSiteLocalAddress()
|
|
// Example: 169.254.0.0/16, fe80::/10
|
|
// Ref: https://en.wikipedia.org/wiki/IP_address#Address_autoconfiguration
|
|
|| inetAddress.isLinkLocalAddress()
|
|
// non deprecated unique site-local that java doesn't check yet -> fc00::/7
|
|
|| isIPv6UniqueSiteLocal(inetAddress);
|
|
} catch (UnknownHostException e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks if the specified address is a loopback address. This can be one of the following:
|
|
* <ul>
|
|
* <li>127.0.0.1</li>
|
|
* <li>localhost</li>
|
|
* <li>[::1]</li>
|
|
* </ul>
|
|
*
|
|
* @param address address to check
|
|
* @return true if the address is a loopback one
|
|
*/
|
|
public static boolean isLoopbackAddress(String address) {
|
|
try {
|
|
InetAddress inetAddress = InetAddress.getByName(address);
|
|
return inetAddress.isLoopbackAddress();
|
|
} catch (UnknownHostException e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private static boolean isLoopbackAddress(InetAddress address) {
|
|
return address.isLoopbackAddress();
|
|
}
|
|
|
|
private static boolean isIPv6UniqueSiteLocal(InetAddress address) {
|
|
// ref: https://en.wikipedia.org/wiki/Unique_local_address
|
|
|
|
// currently undefined but could be used in the near future fc00::/8
|
|
return (address.getAddress()[0] & 0xFF) == 0xFC
|
|
// in use for unique site-local fd00::/8
|
|
|| (address.getAddress()[0] & 0xFF) == 0xFD;
|
|
}
|
|
}
|