blob: ef3fbe017d63ec452802b784631b675b889bed4c [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Charles Chanaedabfd2016-02-26 09:31:48 -08002 * Copyright 2014-2016 Open Networking Laboratory
Thomas Vachuska24c849c2014-10-27 09:53:05 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
Thomas Vachuska24c849c2014-10-27 09:53:05 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska24c849c2014-10-27 09:53:05 -070015 */
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070016package org.onlab.packet;
17
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070018import java.util.Objects;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070019
20/**
Thomas Vachuska4b420772014-10-30 16:46:17 -070021 * A class representing an IP prefix. A prefix consists of an IP address and
22 * a subnet mask.
Pavlin Radoslavovf182f012014-11-04 15:03:18 -080023 * This class is immutable.
Thomas Vachuska4b420772014-10-30 16:46:17 -070024 * <p>
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070025 * NOTE: The stored IP address in the result IP prefix is masked to
26 * contain zeroes in all bits after the prefix length.
Thomas Vachuska4b420772014-10-30 16:46:17 -070027 * </p>
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070028 */
Pavlin Radoslavovf182f012014-11-04 15:03:18 -080029public class IpPrefix {
Charles Chan4ca8e602016-02-25 18:05:59 -080030 /**
31 * Longest IPv4 network prefix.
32 */
Pavlin Radoslavov52307e62014-10-29 15:07:37 -070033 public static final int MAX_INET_MASK_LENGTH = IpAddress.INET_BIT_LENGTH;
Charles Chan4ca8e602016-02-25 18:05:59 -080034 /**
35 * Longest IPv6 network prefix.
36 */
Pavlin Radoslavov52307e62014-10-29 15:07:37 -070037 public static final int MAX_INET6_MASK_LENGTH = IpAddress.INET6_BIT_LENGTH;
Charles Chan4ca8e602016-02-25 18:05:59 -080038 /**
39 * An IpPrefix that contains all IPv4 multicast addresses.
40 */
41 @Deprecated
Jonathan Hart7f4bc522016-02-20 11:32:43 -080042 public static final IpPrefix MULTICAST_RANGE = IpPrefix.valueOf("224.0.0.0/4");
Charles Chan4ca8e602016-02-25 18:05:59 -080043 /**
44 * An IpPrefix that contains all IPv4 multicast addresses.
45 */
Charles Chanaedabfd2016-02-26 09:31:48 -080046 public static final IpPrefix IPV4_MULTICAST_PREFIX = IpPrefix.valueOf("224.0.0.0/4");
Charles Chan4ca8e602016-02-25 18:05:59 -080047 /**
48 * An IpPrefix that contains all IPv6 multicast addresses.
49 */
Charles Chanaedabfd2016-02-26 09:31:48 -080050 public static final IpPrefix IPV6_MULTICAST_PREFIX = IpPrefix.valueOf("ff00::/8");
Jonathan Hart7f4bc522016-02-20 11:32:43 -080051
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070052 private final IpAddress address;
53 private final short prefixLength;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070054
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -070055 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070056 * Constructor for given IP address, and a prefix length.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070057 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070058 * @param address the IP address
59 * @param prefixLength the prefix length
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070060 * @throws IllegalArgumentException if the prefix length value is invalid
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -070061 */
Pavlin Radoslavovf182f012014-11-04 15:03:18 -080062 protected IpPrefix(IpAddress address, int prefixLength) {
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -080063 checkPrefixLength(address.version(), prefixLength);
64 this.address = IpAddress.makeMaskedAddress(address, prefixLength);
65 this.prefixLength = (short) prefixLength;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070066 }
67
68 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070069 * Returns the IP version of the prefix.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070070 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070071 * @return the IP version of the prefix
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070072 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070073 public IpAddress.Version version() {
74 return address.version();
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070075 }
76
77 /**
Pavlin Radoslavov34ffe722015-03-10 12:48:55 -070078 * Tests whether the IP version of this prefix is IPv4.
79 *
80 * @return true if the IP version of this prefix is IPv4, otherwise false.
81 */
82 public boolean isIp4() {
83 return address.isIp4();
84 }
85
86 /**
87 * Tests whether the IP version of this prefix is IPv6.
88 *
89 * @return true if the IP version of this prefix is IPv6, otherwise false.
90 */
91 public boolean isIp6() {
92 return address.isIp6();
93 }
94
95 /**
Charles Chanaedabfd2016-02-26 09:31:48 -080096 * Check if this IP prefix is a multicast prefix.
97 *
98 * @return true if this prefix a multicast prefix
99 */
100 public boolean isMulticast() {
101 return isIp4() ?
102 IPV4_MULTICAST_PREFIX.contains(this.getIp4Prefix()) :
103 IPV6_MULTICAST_PREFIX.contains(this.getIp6Prefix());
104 }
105
106 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700107 * Returns the IP address value of the prefix.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700108 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700109 * @return the IP address value of the prefix
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700110 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700111 public IpAddress address() {
112 return address;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700113 }
114
Ayaka Koshibe16698a32014-09-13 22:19:02 -0700115 /**
Yuta HIGUCHI10681f62014-09-21 17:49:46 -0700116 * Returns the IP address prefix length.
117 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700118 * @return the IP address prefix length
Yuta HIGUCHI10681f62014-09-21 17:49:46 -0700119 */
120 public int prefixLength() {
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700121 return prefixLength;
Yuta HIGUCHI10681f62014-09-21 17:49:46 -0700122 }
123
124 /**
Pavlin Radoslavov34c81642014-11-04 16:21:38 -0800125 * Gets the {@link Ip4Prefix} view of the IP prefix.
126 *
127 * @return the {@link Ip4Prefix} view of the IP prefix if it is IPv4,
128 * otherwise null
129 */
130 public Ip4Prefix getIp4Prefix() {
Pavlin Radoslavov87dd9302015-03-10 13:53:24 -0700131 if (!isIp4()) {
Pavlin Radoslavov34c81642014-11-04 16:21:38 -0800132 return null;
133 }
134
135 // Return this object itself if it is already instance of Ip4Prefix
136 if (this instanceof Ip4Prefix) {
137 return (Ip4Prefix) this;
138 }
139 return Ip4Prefix.valueOf(address.getIp4Address(), prefixLength);
140 }
141
142 /**
143 * Gets the {@link Ip6Prefix} view of the IP prefix.
144 *
145 * @return the {@link Ip6Prefix} view of the IP prefix if it is IPv6,
146 * otherwise null
147 */
148 public Ip6Prefix getIp6Prefix() {
Pavlin Radoslavov87dd9302015-03-10 13:53:24 -0700149 if (!isIp6()) {
Pavlin Radoslavov34c81642014-11-04 16:21:38 -0800150 return null;
151 }
152
153 // Return this object itself if it is already instance of Ip6Prefix
154 if (this instanceof Ip6Prefix) {
155 return (Ip6Prefix) this;
156 }
157 return Ip6Prefix.valueOf(address.getIp6Address(), prefixLength);
158 }
159
160 /**
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800161 * Converts an integer and a prefix length into an IPv4 prefix.
162 *
163 * @param address an integer representing the IPv4 address
164 * @param prefixLength the prefix length
165 * @return an IP prefix
166 * @throws IllegalArgumentException if the prefix length value is invalid
167 */
168 public static IpPrefix valueOf(int address, int prefixLength) {
169 return new IpPrefix(IpAddress.valueOf(address), prefixLength);
170 }
171
172 /**
173 * Converts a byte array and a prefix length into an IP prefix.
174 *
175 * @param version the IP address version
176 * @param address the IP address value stored in network byte order
177 * @param prefixLength the prefix length
178 * @return an IP prefix
179 * @throws IllegalArgumentException if the prefix length value is invalid
180 */
181 public static IpPrefix valueOf(IpAddress.Version version, byte[] address,
182 int prefixLength) {
183 return new IpPrefix(IpAddress.valueOf(version, address), prefixLength);
184 }
185
186 /**
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800187 * Converts an IP address and a prefix length into an IP prefix.
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800188 *
189 * @param address the IP address
190 * @param prefixLength the prefix length
191 * @return an IP prefix
192 * @throws IllegalArgumentException if the prefix length value is invalid
193 */
194 public static IpPrefix valueOf(IpAddress address, int prefixLength) {
195 return new IpPrefix(address, prefixLength);
196 }
197
198 /**
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800199 * Converts a CIDR (slash) notation string (e.g., "10.1.0.0/16" or
200 * "1111:2222::/64") into an IP prefix.
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800201 *
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800202 * @param address an IP prefix in string form (e.g. "10.1.0.0/16" or
203 * "1111:2222::/64")
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800204 * @return an IP prefix
205 * @throws IllegalArgumentException if the arguments are invalid
206 */
207 public static IpPrefix valueOf(String address) {
208 final String[] parts = address.split("/");
209 if (parts.length != 2) {
Pavlin Radoslavovd7b45842015-03-20 15:40:59 -0700210 String msg = "Malformed IP prefix string: " + address + ". " +
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800211 "Address must take form \"x.x.x.x/y\" or " +
212 "\"xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/y\"";
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800213 throw new IllegalArgumentException(msg);
214 }
215 IpAddress ipAddress = IpAddress.valueOf(parts[0]);
216 int prefixLength = Integer.parseInt(parts[1]);
217
218 return new IpPrefix(ipAddress, prefixLength);
219 }
220
221 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700222 * Determines whether a given IP prefix is contained within this prefix.
Ayaka Koshibe16698a32014-09-13 22:19:02 -0700223 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700224 * @param other the IP prefix to test
225 * @return true if the other IP prefix is contained in this prefix,
226 * otherwise false
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700227 */
Ayaka Koshibe1d56fe42014-09-19 16:51:58 -0700228 public boolean contains(IpPrefix other) {
Pavlin Radoslavovdbeab4c2015-02-23 09:37:49 -0800229 if (version() != other.version()) {
230 return false;
231 }
232
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700233 if (this.prefixLength > other.prefixLength) {
234 return false; // This prefix has smaller prefix size
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700235 }
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700236
237 //
238 // Mask the other address with my prefix length.
239 // If the other prefix is within this prefix, the masked address must
240 // be same as the address of this prefix.
241 //
242 IpAddress maskedAddr =
243 IpAddress.makeMaskedAddress(other.address, this.prefixLength);
244 return this.address.equals(maskedAddr);
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700245 }
246
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700247 /**
248 * Determines whether a given IP address is contained within this prefix.
249 *
250 * @param other the IP address to test
251 * @return true if the IP address is contained in this prefix, otherwise
252 * false
253 */
254 public boolean contains(IpAddress other) {
Pavlin Radoslavovdbeab4c2015-02-23 09:37:49 -0800255 if (version() != other.version()) {
256 return false;
257 }
258
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700259 //
260 // Mask the other address with my prefix length.
261 // If the other prefix is within this prefix, the masked address must
262 // be same as the address of this prefix.
263 //
264 IpAddress maskedAddr =
265 IpAddress.makeMaskedAddress(other, this.prefixLength);
266 return this.address.equals(maskedAddr);
Jonathan Hart70da5122014-10-01 16:37:42 -0700267 }
268
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700269 @Override
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700270 public int hashCode() {
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700271 return Objects.hash(address, prefixLength);
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700272 }
273
274 @Override
275 public boolean equals(Object obj) {
276 if (this == obj) {
277 return true;
278 }
Pavlin Radoslavov50b70672014-11-05 11:22:25 -0800279 if ((obj == null) || (!(obj instanceof IpPrefix))) {
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700280 return false;
281 }
Ayaka Koshibe1d56fe42014-09-19 16:51:58 -0700282 IpPrefix other = (IpPrefix) obj;
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700283 return ((prefixLength == other.prefixLength) &&
284 address.equals(other.address));
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700285 }
286
287 @Override
288 /*
289 * (non-Javadoc)
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700290 * The format is "x.x.x.x/y" for IPv4 prefixes.
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700291 *
292 * @see java.lang.Object#toString()
293 */
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700294 public String toString() {
295 final StringBuilder builder = new StringBuilder();
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700296 builder.append(address.toString());
297 builder.append("/");
298 builder.append(String.format("%d", prefixLength));
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700299 return builder.toString();
300 }
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800301
302 /**
303 * Checks whether the prefix length is valid.
304 *
305 * @param version the IP address version
306 * @param prefixLength the prefix length value to check
307 * @throws IllegalArgumentException if the prefix length value is invalid
308 */
309 private static void checkPrefixLength(IpAddress.Version version,
310 int prefixLength) {
311 int maxPrefixLen = 0;
312
313 switch (version) {
314 case INET:
315 maxPrefixLen = MAX_INET_MASK_LENGTH;
316 break;
317 case INET6:
318 maxPrefixLen = MAX_INET6_MASK_LENGTH;
319 break;
320 default:
321 String msg = "Invalid IP version " + version;
322 throw new IllegalArgumentException(msg);
323 }
324
325 if ((prefixLength < 0) || (prefixLength > maxPrefixLen)) {
326 String msg = "Invalid prefix length " + prefixLength + ". " +
327 "The value must be in the interval [0, " +
328 maxPrefixLen + "]";
329 throw new IllegalArgumentException(msg);
330 }
331 }
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700332}