org.apache.openejb.server.auth.NetmaskIPv6AddressPermission Maven / Gradle / Ivy
The newest version!
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.server.auth;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import java.util.StringTokenizer;
import java.net.InetAddress;
import java.net.Inet6Address;
/**
* @version $Revision$ $Date$
*/
public class NetmaskIPv6AddressPermission implements IPAddressPermission {
private static final Pattern MASK_VALIDATOR = Pattern.compile("^(([a-fA-F0-9]{1,4}:){7}[a-fA-F0-9]{1,4})/((\\d{1,3})|(([a-fA-F0-9]{1,4}:){7}[a-fA-F0-9]{1,4}))$");
public static boolean canSupport(final String mask) {
final Matcher matcher = MASK_VALIDATOR.matcher(mask);
return matcher.matches();
}
private final byte[] networkAddressBytes;
private final byte[] netmaskBytes;
public NetmaskIPv6AddressPermission(final String mask) {
final Matcher matcher = MASK_VALIDATOR.matcher(mask);
if (false == matcher.matches()) {
throw new IllegalArgumentException("Mask " + mask + " does not match pattern " + MASK_VALIDATOR.pattern());
}
networkAddressBytes = new byte[16];
int pos = 0;
StringTokenizer tokenizer = new StringTokenizer(matcher.group(1), ":");
while (tokenizer.hasMoreTokens()) {
final String token = tokenizer.nextToken();
final int value = Integer.parseInt(token, 16);
networkAddressBytes[pos++] = (byte) ((value & 0xff00) >> 8);
networkAddressBytes[pos++] = (byte) value;
}
netmaskBytes = new byte[16];
final String netmask = matcher.group(4);
if (null != netmask) {
final int value = Integer.parseInt(netmask);
pos = value / 8;
final int shift = 8 - value % 8;
for (int i = 0; i < pos; i++) {
netmaskBytes[i] = (byte) 0xff;
}
netmaskBytes[pos] = (byte) (0xff << shift);
} else {
pos = 0;
tokenizer = new StringTokenizer(matcher.group(5), ":");
while (tokenizer.hasMoreTokens()) {
final String token = tokenizer.nextToken();
final int value = Integer.parseInt(token, 16);
netmaskBytes[pos++] = (byte) ((value & 0xff00) >> 8);
netmaskBytes[pos++] = (byte) value;
}
}
}
public boolean implies(final InetAddress address) {
if (false == address instanceof Inet6Address) {
return false;
}
final byte[] byteAddress = address.getAddress();
for (int i = 0; i < 16; i++) {
if ((netmaskBytes[i] & byteAddress[i]) != networkAddressBytes[i]) {
return false;
}
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy