blob: 7abf12ac33c883ee2037d386924c477ac1dd66f4 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
alshabibc4901cd2014-09-05 16:50:40 -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
alshabibc4901cd2014-09-05 16:50:40 -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 */
alshabibc4901cd2014-09-05 16:50:40 -070016package org.onlab.packet;
17
Yuta HIGUCHIbfc2e922017-06-07 21:46:05 -070018import com.google.common.collect.ImmutableSet;
alshabibc4901cd2014-09-05 16:50:40 -070019import java.util.Arrays;
Charles Chan928ff8b2017-05-04 12:22:54 -070020import java.util.Set;
Dominika Molenda52cc3a92017-06-19 17:08:35 +020021import java.util.regex.Matcher;
22import java.util.regex.Pattern;
alshabibc4901cd2014-09-05 16:50:40 -070023
24/**
25 * The class representing MAC address.
alshabibc4901cd2014-09-05 16:50:40 -070026 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070027public class MacAddress {
Jonathan Hart8f6f1ea2014-10-03 16:05:19 -070028
Dominika Molenda52cc3a92017-06-19 17:08:35 +020029 private static final Pattern MAC_PATTERN = Pattern.compile("^([0-9A-Fa-f]{2}[:]){5}([0-9A-Fa-f]{2})$");
Charles Chanba138712016-04-06 22:19:13 -070030 /**
Charles Chan928ff8b2017-05-04 12:22:54 -070031 * First MAC address in ONOS OUI range.
32 */
33 public static final MacAddress ONOS = valueOf("a4:23:05:00:00:00");
34 /**
Charles Chan79cddb12017-05-12 18:07:16 -070035 * Dummy MAC address. We use the first MAC address in ONOS OUI range as the dummy MAC address.
36 */
37 public static final MacAddress NONE = ONOS;
38 /**
jaegonkim47b1b4a2017-12-04 14:08:26 +090039 * ONOS LLDP MAC address with slow protocol destination address.
Charles Chan928ff8b2017-05-04 12:22:54 -070040 */
jaegonkim47b1b4a2017-12-04 14:08:26 +090041 public static final MacAddress ONOS_LLDP = valueOf("01:80:C2:00:00:0E");
Charles Chanba138712016-04-06 22:19:13 -070042 /**
43 * All-zero MAC address.
44 */
tom545708e2014-10-09 17:10:02 -070045 public static final MacAddress ZERO = valueOf("00:00:00:00:00:00");
Charles Chanba138712016-04-06 22:19:13 -070046 /**
47 * Broadcast MAC address.
48 */
tom545708e2014-10-09 17:10:02 -070049 public static final MacAddress BROADCAST = valueOf("ff:ff:ff:ff:ff:ff");
Charles Chanba138712016-04-06 22:19:13 -070050 /**
Charles Chan384aea22018-08-23 22:08:02 -070051 * Mask that indicates exact match on the MacAddress.
52 */
53 public static final MacAddress EXACT_MASK = valueOf("ff:ff:ff:ff:ff:ff");
54 /**
Charles Chanba138712016-04-06 22:19:13 -070055 * IPv4 multicast MAC address.
56 */
57 public static final MacAddress IPV4_MULTICAST = valueOf("01:00:5e:00:00:00");
58 /**
59 * IPv4 multicast MAC mask.
60 */
61 public static final MacAddress IPV4_MULTICAST_MASK = valueOf("ff:ff:ff:80:00:00");
Charles Chan928ff8b2017-05-04 12:22:54 -070062 /**
Julia Ferguson65428c32017-08-10 18:15:24 +000063 * IPv6 multicast MAC address.
64 */
65 public static final MacAddress IPV6_MULTICAST = valueOf("33:33:00:00:00:00");
66 /**
67 * IPv6 multicast MAC mask.
68 */
69 public static final MacAddress IPV6_MULTICAST_MASK = valueOf("FF:FF:00:00:00:00");
70 /**
Charles Chan928ff8b2017-05-04 12:22:54 -070071 * A set of LLDP MAC addresses.
72 */
Yuta HIGUCHIbfc2e922017-06-07 21:46:05 -070073 public static final Set<MacAddress> LLDP = ImmutableSet.of(
Charles Chan928ff8b2017-05-04 12:22:54 -070074 MacAddress.valueOf("01:80:c2:00:00:00"),
75 MacAddress.valueOf("01:80:c2:00:00:03"),
76 MacAddress.valueOf("01:80:c2:00:00:0e"));
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070077
alshabibc4901cd2014-09-05 16:50:40 -070078 public static final int MAC_ADDRESS_LENGTH = 6;
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070079 private byte[] address = new byte[MacAddress.MAC_ADDRESS_LENGTH];
alshabibc4901cd2014-09-05 16:50:40 -070080
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070081 public MacAddress(final byte[] address) {
82 this.address = Arrays.copyOf(address, MacAddress.MAC_ADDRESS_LENGTH);
alshabibc4901cd2014-09-05 16:50:40 -070083 }
84
85 /**
86 * Returns a MAC address instance representing the value of the specified
87 * {@code String}.
88 *
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070089 * @param address the String representation of the MAC Address to be parsed.
alshabibc4901cd2014-09-05 16:50:40 -070090 * @return a MAC Address instance representing the value of the specified
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -070091 * {@code String}.
92 * @throws IllegalArgumentException if the string cannot be parsed as a MAC address.
alshabibc4901cd2014-09-05 16:50:40 -070093 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070094 public static MacAddress valueOf(final String address) {
Dominika Molenda52cc3a92017-06-19 17:08:35 +020095 if (!isValid(address)) {
alshabibc4901cd2014-09-05 16:50:40 -070096 throw new IllegalArgumentException(
97 "Specified MAC Address must contain 12 hex digits"
98 + " separated pairwise by :'s.");
99 }
Dominika Molenda52cc3a92017-06-19 17:08:35 +0200100 final String[] elements = address.split(":");
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700101 final byte[] addressInBytes = new byte[MacAddress.MAC_ADDRESS_LENGTH];
102 for (int i = 0; i < MacAddress.MAC_ADDRESS_LENGTH; i++) {
alshabibc4901cd2014-09-05 16:50:40 -0700103 final String element = elements[i];
104 addressInBytes[i] = (byte) Integer.parseInt(element, 16);
105 }
106
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700107 return new MacAddress(addressInBytes);
alshabibc4901cd2014-09-05 16:50:40 -0700108 }
109
110 /**
111 * Returns a MAC address instance representing the specified {@code byte}
112 * array.
113 *
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700114 * @param address the byte array to be parsed.
alshabibc4901cd2014-09-05 16:50:40 -0700115 * @return a MAC address instance representing the specified {@code byte}
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700116 * array.
117 * @throws IllegalArgumentException if the byte array cannot be parsed as a MAC address.
alshabibc4901cd2014-09-05 16:50:40 -0700118 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700119 public static MacAddress valueOf(final byte[] address) {
120 if (address.length != MacAddress.MAC_ADDRESS_LENGTH) {
alshabibc4901cd2014-09-05 16:50:40 -0700121 throw new IllegalArgumentException("the length is not "
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700122 + MacAddress.MAC_ADDRESS_LENGTH);
alshabibc4901cd2014-09-05 16:50:40 -0700123 }
124
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700125 return new MacAddress(address);
alshabibc4901cd2014-09-05 16:50:40 -0700126 }
127
128 /**
129 * Returns a MAC address instance representing the specified {@code long}
130 * value. The lower 48 bits of the long value are used to parse as a MAC
131 * address.
132 *
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700133 * @param address the long value to be parsed. The lower 48 bits are used for a
134 * MAC address.
alshabibc4901cd2014-09-05 16:50:40 -0700135 * @return a MAC address instance representing the specified {@code long}
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700136 * value.
137 * @throws IllegalArgumentException if the long value cannot be parsed as a MAC address.
alshabibc4901cd2014-09-05 16:50:40 -0700138 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700139 public static MacAddress valueOf(final long address) {
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700140 final byte[] addressInBytes = new byte[]{
alshabibc4901cd2014-09-05 16:50:40 -0700141 (byte) (address >> 40 & 0xff), (byte) (address >> 32 & 0xff),
142 (byte) (address >> 24 & 0xff), (byte) (address >> 16 & 0xff),
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700143 (byte) (address >> 8 & 0xff), (byte) (address >> 0 & 0xff)};
alshabibc4901cd2014-09-05 16:50:40 -0700144
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700145 return new MacAddress(addressInBytes);
alshabibc4901cd2014-09-05 16:50:40 -0700146 }
147
148 /**
149 * Returns the length of the {@code MACAddress}.
150 *
151 * @return the length of the {@code MACAddress}.
152 */
153 public int length() {
154 return this.address.length;
155 }
156
157 /**
158 * Returns the value of the {@code MACAddress} as a {@code byte} array.
159 *
160 * @return the numeric value represented by this object after conversion to
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700161 * type {@code byte} array.
alshabibc4901cd2014-09-05 16:50:40 -0700162 */
163 public byte[] toBytes() {
164 return Arrays.copyOf(this.address, this.address.length);
165 }
166
167 /**
168 * Returns the value of the {@code MACAddress} as a {@code long}.
169 *
170 * @return the numeric value represented by this object after conversion to
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700171 * type {@code long}.
alshabibc4901cd2014-09-05 16:50:40 -0700172 */
173 public long toLong() {
174 long mac = 0;
175 for (int i = 0; i < 6; i++) {
176 final long t = (this.address[i] & 0xffL) << (5 - i) * 8;
177 mac |= t;
178 }
179 return mac;
180 }
181
182 /**
183 * Returns {@code true} if the MAC address is the broadcast address.
184 *
185 * @return {@code true} if the MAC address is the broadcast address.
186 */
187 public boolean isBroadcast() {
188 for (final byte b : this.address) {
189 if (b != -1) {
190 return false;
191 }
192 }
193 return true;
194 }
195
196 /**
197 * Returns {@code true} if the MAC address is the multicast address.
198 *
199 * @return {@code true} if the MAC address is the multicast address.
200 */
201 public boolean isMulticast() {
202 if (this.isBroadcast()) {
203 return false;
204 }
205 return (this.address[0] & 0x01) != 0;
206 }
207
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700208 /**
209 * Returns true if this MAC address is link local.
210 *
211 * @return true if link local
Charles Chan928ff8b2017-05-04 12:22:54 -0700212 * @deprecated in Kingfisher release. Link local is not a correct description for
213 * this MAC address. Replaced with {@link #isLldp()}
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700214 */
Charles Chan928ff8b2017-05-04 12:22:54 -0700215 @Deprecated
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700216 public boolean isLinkLocal() {
Charles Chan928ff8b2017-05-04 12:22:54 -0700217 return isLldp();
218 }
219
220 /**
221 * Returns true if this MAC address is used by link layer discovery protocol.
222 *
223 * @return true if this MAC is LLDP MAC.
224 */
225 public boolean isLldp() {
226 return LLDP.contains(this);
227 }
228
229 /**
230 * Returns true if the Organizationally Unique Identifier (OUI) of this MAC
231 * address matches ONOS OUI.
232 *
233 * @return true if the OUI of this MAC address matches ONOS OUI.
234 */
235 public boolean isOnos() {
236 return Arrays.equals(this.oui(), ONOS.oui());
237 }
238
239 /**
240 * Returns the Organizationally Unique Identifier (OUI) of this MAC address.
241 *
242 * @return the OUI of this MAC address.
243 */
244 public byte[] oui() {
245 return Arrays.copyOfRange(this.address, 0, 3);
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700246 }
247
alshabibc4901cd2014-09-05 16:50:40 -0700248 @Override
249 public boolean equals(final Object o) {
250 if (o == this) {
251 return true;
252 }
253
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700254 if (!(o instanceof MacAddress)) {
alshabibc4901cd2014-09-05 16:50:40 -0700255 return false;
256 }
257
Ayaka Koshibea9c199f2014-09-16 16:21:40 -0700258 final MacAddress other = (MacAddress) o;
alshabibc4901cd2014-09-05 16:50:40 -0700259 return Arrays.equals(this.address, other.address);
260 }
261
262 @Override
263 public int hashCode() {
Brian O'Connor8576c2a2014-11-19 16:49:26 -0800264 return Long.hashCode(toLong());
alshabibc4901cd2014-09-05 16:50:40 -0700265 }
266
267 @Override
268 public String toString() {
Yuta HIGUCHIed1ef3a2017-05-15 18:10:01 -0700269 final StringBuilder builder = new StringBuilder(2 * 6 + 5);
alshabibc4901cd2014-09-05 16:50:40 -0700270 for (final byte b : this.address) {
271 if (builder.length() > 0) {
Yuta HIGUCHIed1ef3a2017-05-15 18:10:01 -0700272 builder.append(':');
alshabibc4901cd2014-09-05 16:50:40 -0700273 }
274 builder.append(String.format("%02X", b & 0xFF));
275 }
276 return builder.toString();
277 }
278
279 /**
280 * @return MAC address in string representation without colons (useful for
Thomas Vachuskae1bcb0b2014-10-27 17:45:10 -0700281 * radix tree storage)
alshabibc4901cd2014-09-05 16:50:40 -0700282 */
283 public String toStringNoColon() {
284 final StringBuilder builder = new StringBuilder();
285 for (final byte b : this.address) {
286 builder.append(String.format("%02X", b & 0xFF));
287 }
288 return builder.toString();
289 }
Dominika Molenda52cc3a92017-06-19 17:08:35 +0200290
291 private static boolean isValid(final String mac) {
292 Matcher matcher = MAC_PATTERN.matcher(mac);
293 return matcher.matches();
294 }
alshabibc4901cd2014-09-05 16:50:40 -0700295}