blob: 83592aa1ffc9722f6d0f5898a50924ede3a1a5c2 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 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 {
Pavlin Radoslavov52307e62014-10-29 15:07:37 -070030 // Maximum network mask length
31 public static final int MAX_INET_MASK_LENGTH = IpAddress.INET_BIT_LENGTH;
32 public static final int MAX_INET6_MASK_LENGTH = IpAddress.INET6_BIT_LENGTH;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070033
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070034 private final IpAddress address;
35 private final short prefixLength;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070036
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -070037 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070038 * Constructor for given IP address, and a prefix length.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070039 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070040 * @param address the IP address
41 * @param prefixLength the prefix length
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070042 * @throws IllegalArgumentException if the prefix length value is invalid
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -070043 */
Pavlin Radoslavovf182f012014-11-04 15:03:18 -080044 protected IpPrefix(IpAddress address, int prefixLength) {
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -080045 checkPrefixLength(address.version(), prefixLength);
46 this.address = IpAddress.makeMaskedAddress(address, prefixLength);
47 this.prefixLength = (short) prefixLength;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070048 }
49
50 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070051 * Returns the IP version of the prefix.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070052 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070053 * @return the IP version of the prefix
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070054 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070055 public IpAddress.Version version() {
56 return address.version();
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070057 }
58
59 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070060 * Returns the IP address value of the prefix.
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070061 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070062 * @return the IP address value of the prefix
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070063 */
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070064 public IpAddress address() {
65 return address;
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070066 }
67
Ayaka Koshibe16698a32014-09-13 22:19:02 -070068 /**
Yuta HIGUCHI10681f62014-09-21 17:49:46 -070069 * Returns the IP address prefix length.
70 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070071 * @return the IP address prefix length
Yuta HIGUCHI10681f62014-09-21 17:49:46 -070072 */
73 public int prefixLength() {
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -070074 return prefixLength;
Yuta HIGUCHI10681f62014-09-21 17:49:46 -070075 }
76
77 /**
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -080078 * Converts an integer and a prefix length into an IPv4 prefix.
79 *
80 * @param address an integer representing the IPv4 address
81 * @param prefixLength the prefix length
82 * @return an IP prefix
83 * @throws IllegalArgumentException if the prefix length value is invalid
84 */
85 public static IpPrefix valueOf(int address, int prefixLength) {
86 return new IpPrefix(IpAddress.valueOf(address), prefixLength);
87 }
88
89 /**
90 * Converts a byte array and a prefix length into an IP prefix.
91 *
92 * @param version the IP address version
93 * @param address the IP address value stored in network byte order
94 * @param prefixLength the prefix length
95 * @return an IP prefix
96 * @throws IllegalArgumentException if the prefix length value is invalid
97 */
98 public static IpPrefix valueOf(IpAddress.Version version, byte[] address,
99 int prefixLength) {
100 return new IpPrefix(IpAddress.valueOf(version, address), prefixLength);
101 }
102
103 /**
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800104 * Converts an IP address and a prefix length into an IP prefix.
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800105 *
106 * @param address the IP address
107 * @param prefixLength the prefix length
108 * @return an IP prefix
109 * @throws IllegalArgumentException if the prefix length value is invalid
110 */
111 public static IpPrefix valueOf(IpAddress address, int prefixLength) {
112 return new IpPrefix(address, prefixLength);
113 }
114
115 /**
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800116 * Converts a CIDR (slash) notation string (e.g., "10.1.0.0/16" or
117 * "1111:2222::/64") into an IP prefix.
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800118 *
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800119 * @param address an IP prefix in string form (e.g. "10.1.0.0/16" or
120 * "1111:2222::/64")
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800121 * @return an IP prefix
122 * @throws IllegalArgumentException if the arguments are invalid
123 */
124 public static IpPrefix valueOf(String address) {
125 final String[] parts = address.split("/");
126 if (parts.length != 2) {
127 String msg = "Malformed IP prefix string: " + address + "." +
Pavlin Radoslavovf182f012014-11-04 15:03:18 -0800128 "Address must take form \"x.x.x.x/y\" or " +
129 "\"xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/y\"";
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800130 throw new IllegalArgumentException(msg);
131 }
132 IpAddress ipAddress = IpAddress.valueOf(parts[0]);
133 int prefixLength = Integer.parseInt(parts[1]);
134
135 return new IpPrefix(ipAddress, prefixLength);
136 }
137
138 /**
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700139 * Determines whether a given IP prefix is contained within this prefix.
Ayaka Koshibe16698a32014-09-13 22:19:02 -0700140 *
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700141 * @param other the IP prefix to test
142 * @return true if the other IP prefix is contained in this prefix,
143 * otherwise false
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700144 */
Ayaka Koshibe1d56fe42014-09-19 16:51:58 -0700145 public boolean contains(IpPrefix other) {
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700146 if (this.prefixLength > other.prefixLength) {
147 return false; // This prefix has smaller prefix size
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700148 }
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700149
150 //
151 // Mask the other address with my prefix length.
152 // If the other prefix is within this prefix, the masked address must
153 // be same as the address of this prefix.
154 //
155 IpAddress maskedAddr =
156 IpAddress.makeMaskedAddress(other.address, this.prefixLength);
157 return this.address.equals(maskedAddr);
Jonathan Hartb7a2ac32014-09-19 10:42:27 -0700158 }
159
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700160 /**
161 * Determines whether a given IP address is contained within this prefix.
162 *
163 * @param other the IP address to test
164 * @return true if the IP address is contained in this prefix, otherwise
165 * false
166 */
167 public boolean contains(IpAddress other) {
168 //
169 // Mask the other address with my prefix length.
170 // If the other prefix is within this prefix, the masked address must
171 // be same as the address of this prefix.
172 //
173 IpAddress maskedAddr =
174 IpAddress.makeMaskedAddress(other, this.prefixLength);
175 return this.address.equals(maskedAddr);
Jonathan Hart70da5122014-10-01 16:37:42 -0700176 }
177
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700178 @Override
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700179 public int hashCode() {
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700180 return Objects.hash(address, prefixLength);
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700181 }
182
183 @Override
184 public boolean equals(Object obj) {
185 if (this == obj) {
186 return true;
187 }
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700188 if ((obj == null) || (getClass() != obj.getClass())) {
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700189 return false;
190 }
Ayaka Koshibe1d56fe42014-09-19 16:51:58 -0700191 IpPrefix other = (IpPrefix) obj;
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700192 return ((prefixLength == other.prefixLength) &&
193 address.equals(other.address));
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700194 }
195
196 @Override
197 /*
198 * (non-Javadoc)
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700199 * The format is "x.x.x.x/y" for IPv4 prefixes.
Ayaka Koshibe40e7fec2014-09-16 22:32:19 -0700200 *
201 * @see java.lang.Object#toString()
202 */
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700203 public String toString() {
204 final StringBuilder builder = new StringBuilder();
Pavlin Radoslavov855ea2d2014-10-30 15:32:39 -0700205 builder.append(address.toString());
206 builder.append("/");
207 builder.append(String.format("%d", prefixLength));
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700208 return builder.toString();
209 }
Pavlin Radoslavov34c921a2014-11-03 15:41:22 -0800210
211 /**
212 * Checks whether the prefix length is valid.
213 *
214 * @param version the IP address version
215 * @param prefixLength the prefix length value to check
216 * @throws IllegalArgumentException if the prefix length value is invalid
217 */
218 private static void checkPrefixLength(IpAddress.Version version,
219 int prefixLength) {
220 int maxPrefixLen = 0;
221
222 switch (version) {
223 case INET:
224 maxPrefixLen = MAX_INET_MASK_LENGTH;
225 break;
226 case INET6:
227 maxPrefixLen = MAX_INET6_MASK_LENGTH;
228 break;
229 default:
230 String msg = "Invalid IP version " + version;
231 throw new IllegalArgumentException(msg);
232 }
233
234 if ((prefixLength < 0) || (prefixLength > maxPrefixLen)) {
235 String msg = "Invalid prefix length " + prefixLength + ". " +
236 "The value must be in the interval [0, " +
237 maxPrefixLen + "]";
238 throw new IllegalArgumentException(msg);
239 }
240 }
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -0700241}