Java tutorial
package org.jasig.cas.adaptors.generic.remote; import org.apache.commons.lang3.StringUtils; import org.jasig.cas.authentication.AbstractAuthenticationHandler; import org.jasig.cas.authentication.Credential; import org.jasig.cas.authentication.DefaultHandlerResult; import org.jasig.cas.authentication.HandlerResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import javax.security.auth.login.FailedLoginException; import java.net.InetAddress; import java.net.UnknownHostException; import java.security.GeneralSecurityException; /** * Checks if the remote address is in the range of allowed addresses. * * @author David Harrison * @author Scott Battaglia * @since 3.2.1 * */ @Component("remoteAddressAuthenticationHandler") public final class RemoteAddressAuthenticationHandler extends AbstractAuthenticationHandler { private static final int HEX_RIGHT_SHIFT_COEFFICIENT = 0xff; private final Logger logger = LoggerFactory.getLogger(getClass()); /** The network netmask. */ private InetAddress inetNetmask; /** The network base address. */ private InetAddress inetNetwork; @Override public HandlerResult authenticate(final Credential credential) throws GeneralSecurityException { final RemoteAddressCredential c = (RemoteAddressCredential) credential; if (this.inetNetmask != null && this.inetNetwork != null) { try { final InetAddress inetAddress = InetAddress.getByName(c.getRemoteAddress().trim()); if (containsAddress(this.inetNetwork, this.inetNetmask, inetAddress)) { return new DefaultHandlerResult(this, c, this.principalFactory.createPrincipal(c.getId())); } } catch (final UnknownHostException e) { logger.debug("Unknown host {}", c.getRemoteAddress()); } } throw new FailedLoginException(c.getRemoteAddress() + " not in allowed range."); } @Override public boolean supports(final Credential credential) { return credential instanceof RemoteAddressCredential; } /** * The following code is from the Apache Software Foundations's Lenya project * See InetAddressUtil.java * Distributed under the Apache 2.0 software license */ /** * Checks if a subnet contains a specific IP address. * * @param network The network address. * @param netmask The subnet mask. * @param ip The IP address to check. * @return A boolean value. */ private boolean containsAddress(final InetAddress network, final InetAddress netmask, final InetAddress ip) { logger.debug("Checking IP address: {} in {} by {}", ip, network, netmask); final byte[] networkBytes = network.getAddress(); final byte[] netmaskBytes = netmask.getAddress(); final byte[] ipBytes = ip.getAddress(); /* check IPv4/v6-compatibility or parameters: */ if (networkBytes.length != netmaskBytes.length || netmaskBytes.length != ipBytes.length) { logger.debug("Network address {}, subnet mask {} and/or host address {}" + " have different sizes! (return false ...)", network, netmask, ip); return false; } /* Check if the masked network and ip addresses match: */ for (int i = 0; i < netmaskBytes.length; i++) { final int mask = netmaskBytes[i] & HEX_RIGHT_SHIFT_COEFFICIENT; if ((networkBytes[i] & mask) != (ipBytes[i] & mask)) { logger.debug("{} is not in {}/{}", ip, network, netmask); return false; } } logger.debug("{} is in {}/{}", ip, network, netmask); return true; } /** * Sets ip network range. * * @param ipAddressRange the IP address range that should be allowed trusted logins */ @Autowired public void setIpNetworkRange(@Value("${ip.address.range:}") final String ipAddressRange) { if (StringUtils.isNotBlank(ipAddressRange)) { final String[] splitAddress = ipAddressRange.split("/"); if (splitAddress.length == 2) { // A valid ip address/netmask was supplied parse values final String network = splitAddress[0].trim(); final String netmask = splitAddress[1].trim(); try { this.inetNetwork = InetAddress.getByName(network); logger.debug("InetAddress network: {}", this.inetNetwork.toString()); } catch (final UnknownHostException e) { logger.error("The network address was not valid: {}", e.getMessage()); } try { this.inetNetmask = InetAddress.getByName(netmask); logger.debug("InetAddress netmask: {}", this.inetNetmask.toString()); } catch (final UnknownHostException e) { logger.error("The network netmask was not valid: {}", e.getMessage()); } } } } }