/** * * 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.net.InetAddress; import java.net.Inet4Address; /** * @version $Revision$ $Date$ */ public class StartWithIPAddressPermission implements IPAddressPermission { private static final Pattern MASK_VALIDATOR = Pattern.compile("^(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.0$"); public static boolean canSupport(String mask) { Matcher matcher = MASK_VALIDATOR.matcher(mask); return matcher.matches(); } private final byte[] bytes; public StartWithIPAddressPermission(String mask) { Matcher matcher = MASK_VALIDATOR.matcher(mask); if (false == matcher.matches()) { throw new IllegalArgumentException("Mask " + mask + " does not match pattern " + MASK_VALIDATOR.pattern()); } Byte[] tmpBytes = new Byte[4]; boolean isWildCard = false; int size = 0; for (int i = 0; i < 3; i++) { String group = matcher.group(i + 1); if (group.equals("0")) { isWildCard = true; } else if (isWildCard) { throw new IllegalArgumentException("0 at position " + size + " in mask"); } else { int value = Integer.parseInt(group); if (value < 0 || 255 < value) { throw new IllegalArgumentException("byte #" + i + " is not valid."); } tmpBytes[i] = new Byte((byte) value); size++; } } bytes = new byte[size]; for (int i = 0; i < bytes.length; i++) { bytes[i] = tmpBytes[i].byteValue(); } } public boolean implies(InetAddress address) { if (false == address instanceof Inet4Address) { return false; } byte[] byteAddress = address.getAddress(); for (int i = 0; i < bytes.length; i++) { if (byteAddress[i] != bytes[i]) { return false; } } return true; } }