1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
* 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.catalina.util;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Arrays;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import org.apache.tomcat.util.res.StringManager;
/**
* A class representing a CIDR netmask.
* <p>
* The constructor takes a string as an argument which represents a netmask, as per the CIDR notation -- whether this
* netmask be IPv4 or IPv6. It then extracts the network address (before the /) and the CIDR prefix (after the /), and
* tells through the #matches() method whether a candidate {@link InetAddress} object fits in the recorded range.
* </p>
* <p>
* As byte arrays as returned by <code>InetAddress.getByName()</code> are always in network byte order, finding a match
* is therefore as simple as testing whether the n first bits (where n is the CIDR) are the same in both byte arrays
* (the one of the network address and the one of the candidate address). We do that by first doing byte comparisons,
* then testing the last bits if any (that is, if the remainder of the integer division of the CIDR by 8 is not 0).
* </p>
* <p>
* As a bonus, if no '/' is found in the input, it is assumed that an exact address match is required.
* </p>
*/
public final class NetMask {
private static final StringManager sm = StringManager.getManager(NetMask.class);
/**
* The argument to the constructor, used for .toString()
*/
private final String expression;
/**
* The byte array representing the address extracted from the expression
*/
private final byte[] netaddr;
/**
* The number of bytes to test for equality (CIDR / 8)
*/
private final int nrBytes;
/**
* The right shift to apply to the last byte if CIDR % 8 is not 0; if it is 0, this variable is set to 0
*/
private final int lastByteShift;
/**
* Should we use the port pattern when matching
*/
private final boolean foundPort;
/**
* The regular expression used to test for the server port (optional).
*/
private final Pattern portPattern;
/**
* Constructor
*
* @param input the CIDR netmask
*
* @throws IllegalArgumentException if the netmask is not correct (invalid address specification, malformed CIDR
* prefix, etc)
*/
public NetMask(final String input) {
expression = input;
final int portIdx = input.indexOf(';');
final String nonPortPart;
if (portIdx == -1) {
foundPort = false;
nonPortPart = input;
portPattern = null;
} else {
foundPort = true;
nonPortPart = input.substring(0, portIdx);
try {
portPattern = Pattern.compile(input.substring(portIdx + 1));
} catch (PatternSyntaxException e) {
/*
* In case of error never match any non-empty port given
*/
throw new IllegalArgumentException(sm.getString("netmask.invalidPort", input), e);
}
}
final int idx = nonPortPart.indexOf('/');
/*
* Handle the "IP only" case first
*/
if (idx == -1) {
try {
netaddr = InetAddress.getByName(nonPortPart).getAddress();
} catch (UnknownHostException e) {
throw new IllegalArgumentException(sm.getString("netmask.invalidAddress", nonPortPart));
}
nrBytes = netaddr.length;
lastByteShift = 0;
return;
}
/*
* OK, we do have a netmask specified, so let's extract both the address and the CIDR.
*/
final String addressPart = nonPortPart.substring(0, idx), cidrPart = nonPortPart.substring(idx + 1);
try {
/*
* The address first...
*/
netaddr = InetAddress.getByName(addressPart).getAddress();
} catch (UnknownHostException e) {
throw new IllegalArgumentException(sm.getString("netmask.invalidAddress", addressPart));
}
final int addrlen = netaddr.length * 8;
final int cidr;
try {
/*
* And then the CIDR.
*/
cidr = Integer.parseInt(cidrPart);
} catch (NumberFormatException e) {
throw new IllegalArgumentException(sm.getString("netmask.cidrNotNumeric", cidrPart));
}
/*
* We don't want a negative CIDR, nor do we want a CIDR which is greater than the address length (consider
* 0.0.0.0/33, or ::/129)
*/
if (cidr < 0) {
throw new IllegalArgumentException(sm.getString("netmask.cidrNegative", cidrPart));
}
if (cidr > addrlen) {
throw new IllegalArgumentException(sm.getString("netmask.cidrTooBig", cidrPart, Integer.valueOf(addrlen)));
}
nrBytes = cidr / 8;
/*
* These last two lines could be shortened to:
*
* lastByteShift = (8 - (cidr % 8)) & 7;
*
* But... It's not worth it. In fact, explaining why it could work would be too long to be worth the trouble, so
* let's do it the simple way...
*/
final int remainder = cidr % 8;
lastByteShift = (remainder == 0) ? 0 : 8 - remainder;
}
/**
* Test if a given address and port matches this netmask.
*
* @param addr The {@link java.net.InetAddress} to test
* @param port The port to test
*
* @return true on match, false otherwise
*/
public boolean matches(final InetAddress addr, int port) {
if (!foundPort) {
return false;
}
final String portString = Integer.toString(port);
if (!portPattern.matcher(portString).matches()) {
return false;
}
return matches(addr, true);
}
/**
* Test if a given address matches this netmask.
*
* @param addr The {@link java.net.InetAddress} to test
*
* @return true on match, false otherwise
*/
public boolean matches(final InetAddress addr) {
return matches(addr, false);
}
/**
* Test if a given address matches this netmask.
*
* @param addr The {@link java.net.InetAddress} to test
* @param checkedPort Indicates, whether we already checked the port
*
* @return true on match, false otherwise
*/
public boolean matches(final InetAddress addr, boolean checkedPort) {
if (!checkedPort && foundPort) {
return false;
}
final byte[] candidate = addr.getAddress();
/*
* OK, remember that a CIDR prefix tells the number of BITS which should be equal between this NetMask's
* recorded address (netaddr) and the candidate address. One byte is 8 bits, no matter what, and IP addresses,
* whether they be IPv4 or IPv6, are big endian, aka MSB, Most Significant Byte (first).
*
* We therefore need to get the byte array of the candidate address, compare as many bytes of the candidate
* address with the recorded address as the CIDR prefix tells us to (that is, CIDR / 8), and then deal with the
* remaining bits -- if any.
*
* But prior to that, a simple test can be done: we deal with IP addresses here, which means IPv4 and IPv6. IPv4
* addresses are encoded on 4 bytes, IPv6 addresses are encoded on 16 bytes. If the candidate address length is
* different from this NetMask's address, we don't have a match.
*/
if (candidate.length != netaddr.length) {
return false;
}
/*
* Now do the byte-compare. The constructor has recorded the number of bytes to compare in nrBytes, use that. If
* any of the byte we have to compare is different from what we expect, we don't have a match.
*
* If, on the opposite, after this loop, all bytes have been deemed equal, then the loop variable i will point
* to the byte right after that -- which we will need...
*/
int i = 0;
for (; i < nrBytes; i++) {
if (netaddr[i] != candidate[i]) {
return false;
}
}
/*
* ... if there are bits left to test. There aren't any if lastByteShift is set to 0.
*/
if (lastByteShift == 0) {
return true;
}
/*
* If it is not 0, however, we must test for the relevant bits in the next byte (whatever is in the bytes after
* that doesn't matter). We do it this way (remember that lastByteShift contains the amount of bits we should
* _right_ shift the last byte):
*
* - grab both bytes at index i, both from the netmask address and the candidate address; - xor them both.
*
* After the xor, it means that all the remaining bits of the CIDR should be set to 0...
*/
final int lastByte = netaddr[i] ^ candidate[i];
/*
* ... Which means that right shifting by lastByteShift should be 0.
*/
return lastByte >> lastByteShift == 0;
}
@Override
public String toString() {
return expression;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NetMask other = (NetMask) o;
return nrBytes == other.nrBytes && lastByteShift == other.lastByteShift &&
Arrays.equals(netaddr, other.netaddr);
}
@Override
public int hashCode() {
return 31 * Arrays.hashCode(netaddr) + lastByteShift;
}
}
|