blob: f9a25f9ed26527d14a5538c81a5ffbf2d59d2e4c [file] [log] [blame]
Irfan Sheriffed5d7d12010-10-01 16:08:28 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * 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
7 *
8 * 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.
15 */
16
17package android.net;
18
19import android.os.Parcel;
20import android.os.Parcelable;
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +090021import android.util.Pair;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070022
Robert Greenwaltb979f792011-02-11 17:01:02 -080023import java.net.Inet4Address;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070024import java.net.InetAddress;
25import java.net.InterfaceAddress;
26import java.net.UnknownHostException;
27
Elliott Hughes34385d32014-04-28 11:11:32 -070028import static android.system.OsConstants.IFA_F_DADFAILED;
29import static android.system.OsConstants.IFA_F_DEPRECATED;
30import static android.system.OsConstants.IFA_F_TENTATIVE;
31import static android.system.OsConstants.RT_SCOPE_HOST;
32import static android.system.OsConstants.RT_SCOPE_LINK;
33import static android.system.OsConstants.RT_SCOPE_SITE;
34import static android.system.OsConstants.RT_SCOPE_UNIVERSE;
Lorenzo Colitti64483942013-11-15 18:43:52 +090035
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070036/**
Lorenzo Colittie1ad1842013-11-27 15:03:10 +090037 * Identifies an IP address on a network link.
Lorenzo Colitti64483942013-11-15 18:43:52 +090038 *
39 * A {@code LinkAddress} consists of:
40 * <ul>
41 * <li>An IP address and prefix length (e.g., {@code 2001:db8::1/64} or {@code 192.0.2.1/24}).
42 * The address must be unicast, as multicast addresses cannot be assigned to interfaces.
Lorenzo Colitti7dc78cf2014-06-09 22:58:46 +090043 * <li>Address flags: A bitmask of {@code OsConstants.IFA_F_*} values representing properties
44 * of the address (e.g., {@code android.system.OsConstants.IFA_F_OPTIMISTIC}).
45 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which
46 * the address is unique (e.g.,
47 * {@code android.system.OsConstants.RT_SCOPE_LINK} or
48 * {@code android.system.OsConstants.RT_SCOPE_UNIVERSE}).
49 * </ul>
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070050 */
51public class LinkAddress implements Parcelable {
52 /**
53 * IPv4 or IPv6 address.
54 */
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +090055 private InetAddress address;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070056
57 /**
Lorenzo Colittie1ad1842013-11-27 15:03:10 +090058 * Prefix length.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070059 */
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +090060 private int prefixLength;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -070061
Lorenzo Colitti64483942013-11-15 18:43:52 +090062 /**
63 * Address flags. A bitmask of IFA_F_* values.
64 */
65 private int flags;
66
67 /**
68 * Address scope. One of the RT_SCOPE_* constants.
69 */
70 private int scope;
71
72 /**
73 * Utility function to determines the scope of a unicast address. Per RFC 4291 section 2.5 and
74 * RFC 6724 section 3.2.
75 * @hide
76 */
77 static int scopeForUnicastAddress(InetAddress addr) {
78 if (addr.isAnyLocalAddress()) {
79 return RT_SCOPE_HOST;
80 }
81
82 if (addr.isLoopbackAddress() || addr.isLinkLocalAddress()) {
83 return RT_SCOPE_LINK;
84 }
85
86 // isSiteLocalAddress() returns true for private IPv4 addresses, but RFC 6724 section 3.2
87 // says that they are assigned global scope.
88 if (!(addr instanceof Inet4Address) && addr.isSiteLocalAddress()) {
89 return RT_SCOPE_SITE;
90 }
91
92 return RT_SCOPE_UNIVERSE;
93 }
94
95 /**
96 * Utility function for the constructors.
97 */
98 private void init(InetAddress address, int prefixLength, int flags, int scope) {
99 if (address == null ||
100 address.isMulticastAddress() ||
101 prefixLength < 0 ||
Robert Greenwaltb979f792011-02-11 17:01:02 -0800102 ((address instanceof Inet4Address) && prefixLength > 32) ||
103 (prefixLength > 128)) {
104 throw new IllegalArgumentException("Bad LinkAddress params " + address +
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900105 "/" + prefixLength);
Robert Greenwaltb979f792011-02-11 17:01:02 -0800106 }
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700107 this.address = address;
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700108 this.prefixLength = prefixLength;
Lorenzo Colitti64483942013-11-15 18:43:52 +0900109 this.flags = flags;
110 this.scope = scope;
111 }
112
113 /**
114 * Constructs a new {@code LinkAddress} from an {@code InetAddress} and prefix length, with
115 * the specified flags and scope. Flags and scope are not checked for validity.
116 * @param address The IP address.
117 * @param prefixLength The prefix length.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700118 * @param flags A bitmask of {@code IFA_F_*} values representing properties of the address.
119 * @param scope An integer defining the scope in which the address is unique (e.g.,
120 * {@link OsConstants#RT_SCOPE_LINK} or {@link OsConstants#RT_SCOPE_SITE}).
121 * @hide
Lorenzo Colitti64483942013-11-15 18:43:52 +0900122 */
123 public LinkAddress(InetAddress address, int prefixLength, int flags, int scope) {
124 init(address, prefixLength, flags, scope);
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700125 }
126
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900127 /**
128 * Constructs a new {@code LinkAddress} from an {@code InetAddress} and a prefix length.
Lorenzo Colitti64483942013-11-15 18:43:52 +0900129 * The flags are set to zero and the scope is determined from the address.
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900130 * @param address The IP address.
131 * @param prefixLength The prefix length.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700132 * @hide
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900133 */
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900134 public LinkAddress(InetAddress address, int prefixLength) {
Lorenzo Colitti64483942013-11-15 18:43:52 +0900135 this(address, prefixLength, 0, 0);
136 this.scope = scopeForUnicastAddress(address);
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900137 }
138
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900139 /**
140 * Constructs a new {@code LinkAddress} from an {@code InterfaceAddress}.
Lorenzo Colitti64483942013-11-15 18:43:52 +0900141 * The flags are set to zero and the scope is determined from the address.
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900142 * @param interfaceAddress The interface address.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700143 * @hide
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900144 */
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700145 public LinkAddress(InterfaceAddress interfaceAddress) {
Lorenzo Colitti64483942013-11-15 18:43:52 +0900146 this(interfaceAddress.getAddress(),
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900147 interfaceAddress.getNetworkPrefixLength());
148 }
149
150 /**
151 * Constructs a new {@code LinkAddress} from a string such as "192.0.2.5/24" or
Lorenzo Colitti64483942013-11-15 18:43:52 +0900152 * "2001:db8::1/64". The flags are set to zero and the scope is determined from the address.
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900153 * @param string The string to parse.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700154 * @hide
Lorenzo Colitti6eb8a622013-08-08 19:24:09 +0900155 */
156 public LinkAddress(String address) {
Lorenzo Colitti64483942013-11-15 18:43:52 +0900157 this(address, 0, 0);
158 this.scope = scopeForUnicastAddress(this.address);
159 }
160
161 /**
162 * Constructs a new {@code LinkAddress} from a string such as "192.0.2.5/24" or
163 * "2001:db8::1/64", with the specified flags and scope.
164 * @param string The string to parse.
165 * @param flags The address flags.
166 * @param scope The address scope.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700167 * @hide
Lorenzo Colitti64483942013-11-15 18:43:52 +0900168 */
169 public LinkAddress(String address, int flags, int scope) {
Lorenzo Colitti8c6c2c32014-06-12 13:41:17 +0900170 // This may throw an IllegalArgumentException; catching it is the caller's responsibility.
171 Pair<InetAddress, Integer> ipAndMask = NetworkUtils.parseIpAndMask(address);
172 init(ipAndMask.first, ipAndMask.second, flags, scope);
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700173 }
174
Lorenzo Colitti64483942013-11-15 18:43:52 +0900175 /**
176 * Returns a string representation of this address, such as "192.0.2.1/24" or "2001:db8::1/64".
177 * The string representation does not contain the flags and scope, just the address and prefix
178 * length.
179 */
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700180 @Override
181 public String toString() {
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900182 return address.getHostAddress() + "/" + prefixLength;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700183 }
184
185 /**
Lorenzo Colitti64483942013-11-15 18:43:52 +0900186 * Compares this {@code LinkAddress} instance against {@code obj}. Two addresses are equal if
Lorenzo Colitti7dc78cf2014-06-09 22:58:46 +0900187 * their address, prefix length, flags and scope are equal. Thus, for example, two addresses
188 * that have the same address and prefix length are not equal if one of them is deprecated and
189 * the other is not.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700190 *
191 * @param obj the object to be tested for equality.
192 * @return {@code true} if both objects are equal, {@code false} otherwise.
193 */
194 @Override
195 public boolean equals(Object obj) {
196 if (!(obj instanceof LinkAddress)) {
197 return false;
198 }
199 LinkAddress linkAddress = (LinkAddress) obj;
200 return this.address.equals(linkAddress.address) &&
Lorenzo Colitti64483942013-11-15 18:43:52 +0900201 this.prefixLength == linkAddress.prefixLength &&
202 this.flags == linkAddress.flags &&
203 this.scope == linkAddress.scope;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700204 }
205
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900206 /**
207 * Returns a hashcode for this address.
John Wang4e900092011-04-04 12:35:42 -0700208 */
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900209 @Override
John Wang4e900092011-04-04 12:35:42 -0700210 public int hashCode() {
Lorenzo Colitti64483942013-11-15 18:43:52 +0900211 return address.hashCode() + 11 * prefixLength + 19 * flags + 43 * scope;
212 }
213
214 /**
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700215 * Determines whether this {@code LinkAddress} and the provided {@code LinkAddress}
216 * represent the same address. Two {@code LinkAddresses} represent the same address
217 * if they have the same IP address and prefix length, even if their properties are
218 * different.
Lorenzo Colitti64483942013-11-15 18:43:52 +0900219 *
220 * @param other the {@code LinkAddress} to compare to.
221 * @return {@code true} if both objects have the same address and prefix length, {@code false}
222 * otherwise.
Lorenzo Colitti7dc78cf2014-06-09 22:58:46 +0900223 * @hide
Lorenzo Colitti64483942013-11-15 18:43:52 +0900224 */
225 public boolean isSameAddressAs(LinkAddress other) {
226 return address.equals(other.address) && prefixLength == other.prefixLength;
John Wang4e900092011-04-04 12:35:42 -0700227 }
228
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700229 /**
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700230 * Returns the {@link InetAddress} of this {@code LinkAddress}.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700231 */
232 public InetAddress getAddress() {
233 return address;
234 }
235
236 /**
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700237 * Returns the prefix length of this {@code LinkAddress}.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700238 */
Lorenzo Colitti7dc78cf2014-06-09 22:58:46 +0900239 public int getPrefixLength() {
Irfan Sheriff96ca9172010-10-05 16:12:25 -0700240 return prefixLength;
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700241 }
242
243 /**
Lorenzo Colitti7dc78cf2014-06-09 22:58:46 +0900244 * Returns the prefix length of this {@code LinkAddress}.
245 * TODO: Delete all callers and remove in favour of getPrefixLength().
246 * @hide
247 */
248 public int getNetworkPrefixLength() {
249 return getPrefixLength();
250 }
251
252 /**
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700253 * Returns the flags of this {@code LinkAddress}.
Lorenzo Colitti64483942013-11-15 18:43:52 +0900254 */
255 public int getFlags() {
256 return flags;
257 }
258
259 /**
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700260 * Returns the scope of this {@code LinkAddress}.
Lorenzo Colitti64483942013-11-15 18:43:52 +0900261 */
262 public int getScope() {
263 return scope;
264 }
265
266 /**
267 * Returns true if this {@code LinkAddress} is global scope and preferred.
Robert Greenwaltfd202e62014-05-18 09:39:18 -0700268 * @hide
Lorenzo Colitti64483942013-11-15 18:43:52 +0900269 */
270 public boolean isGlobalPreferred() {
271 return (scope == RT_SCOPE_UNIVERSE &&
272 (flags & (IFA_F_DADFAILED | IFA_F_DEPRECATED | IFA_F_TENTATIVE)) == 0L);
273 }
274
275 /**
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900276 * Implement the Parcelable interface.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700277 * @hide
278 */
279 public int describeContents() {
280 return 0;
281 }
282
283 /**
284 * Implement the Parcelable interface.
285 * @hide
286 */
287 public void writeToParcel(Parcel dest, int flags) {
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900288 dest.writeByteArray(address.getAddress());
289 dest.writeInt(prefixLength);
Lorenzo Colitti64483942013-11-15 18:43:52 +0900290 dest.writeInt(this.flags);
291 dest.writeInt(scope);
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700292 }
293
294 /**
295 * Implement the Parcelable interface.
296 * @hide
297 */
298 public static final Creator<LinkAddress> CREATOR =
299 new Creator<LinkAddress>() {
300 public LinkAddress createFromParcel(Parcel in) {
301 InetAddress address = null;
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900302 try {
303 address = InetAddress.getByAddress(in.createByteArray());
304 } catch (UnknownHostException e) {
305 // Nothing we can do here. When we call the constructor, we'll throw an
306 // IllegalArgumentException, because a LinkAddress can't have a null
307 // InetAddress.
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700308 }
Lorenzo Colittie1ad1842013-11-27 15:03:10 +0900309 int prefixLength = in.readInt();
Lorenzo Colitti64483942013-11-15 18:43:52 +0900310 int flags = in.readInt();
311 int scope = in.readInt();
312 return new LinkAddress(address, prefixLength, flags, scope);
Irfan Sheriffed5d7d12010-10-01 16:08:28 -0700313 }
314
315 public LinkAddress[] newArray(int size) {
316 return new LinkAddress[size];
317 }
318 };
319}