-
Notifications
You must be signed in to change notification settings - Fork 668
/
IPAddressUtil.java
320 lines (284 loc) · 10.8 KB
/
IPAddressUtil.java
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
309
310
311
312
313
314
315
316
317
318
319
320
/*
* Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.net.util;
// IP地址转换工具
public class IPAddressUtil {
private static final int INADDR4SZ = 4; // IP4地址字节数
private static final int INADDR16SZ = 16; // IP6地址字节数
private static final int INT16SZ = 2;
/**
* Converts IPv4 address in its textual presentation form
* into its numeric binary form.
*
* @param src a String representing an IPv4 address in standard format
*
* @return a byte array representing the IPv4 numeric address
*/
// 将文本形式的IP4地址转换为二进制形式
@SuppressWarnings("fallthrough")
public static byte[] textToNumericFormatV4(String ip4) {
byte[] res = new byte[INADDR4SZ];
long tmpValue = 0;
int currByte = 0;
boolean newOctet = true;
int len = ip4.length();
if(len == 0 || len>15) {
return null;
}
/*
* When only one part is given, the value is stored directly in
* the network address without any byte rearrangement.
*
* When a two part address is supplied, the last part is
* interpreted as a 24-bit quantity and placed in the right
* most three bytes of the network address. This makes the
* two part address format convenient for specifying Class A
* network addresses as net.host.
*
* When a three part address is specified, the last part is
* interpreted as a 16-bit quantity and placed in the right
* most two bytes of the network address. This makes the
* three part address format convenient for specifying
* Class B net- work addresses as 128.net.host.
*
* When four parts are specified, each is interpreted as a
* byte of data and assigned, from left to right, to the
* four bytes of an IPv4 address.
*
* We determine and parse the leading parts, if any, as single
* byte values in one pass directly into the resulting byte[],
* then the remainder is treated as a 8-to-32-bit entity and
* translated into the remaining bytes in the array.
*/
for(int i = 0; i<len; i++) {
char c = ip4.charAt(i);
if(c == '.') {
if(newOctet || tmpValue<0 || tmpValue>0xff || currByte == 3) {
return null;
}
res[currByte++] = (byte) (tmpValue & 0xff);
tmpValue = 0;
newOctet = true;
} else {
int digit = Character.digit(c, 10);
if(digit<0) {
return null;
}
tmpValue *= 10;
tmpValue += digit;
newOctet = false;
}
}
if(newOctet || tmpValue<0 || tmpValue >= (1L << ((4 - currByte) * 8))) {
return null;
}
switch(currByte) {
case 0:
res[0] = (byte) ((tmpValue >> 24) & 0xff);
case 1:
res[1] = (byte) ((tmpValue >> 16) & 0xff);
case 2:
res[2] = (byte) ((tmpValue >> 8) & 0xff);
case 3:
res[3] = (byte) ((tmpValue >> 0) & 0xff);
}
return res;
}
/**
* Convert IPv6 presentation level address to network order binary form.
* credit:
* Converted from C code from Solaris 8 (inet_pton)
*
* Any component of the string following a per-cent % is ignored.
*
* @param src a String representing an IPv6 address in textual format
*
* @return a byte array representing the IPv6 numeric address
*/
// 将文本形式的IP6地址转换为二进制形式
public static byte[] textToNumericFormatV6(String ip6) {
// Shortest valid string is "::", hence at least 2 chars
if(ip6.length()<2) {
return null;
}
int colonp;
char ch;
boolean saw_xdigit;
int val;
char[] srcb = ip6.toCharArray();
byte[] dst = new byte[INADDR16SZ];
int srcb_length = srcb.length;
int pc = ip6.indexOf('%');
if(pc == srcb_length - 1) {
return null;
}
if(pc != -1) {
srcb_length = pc;
}
colonp = -1;
int i = 0, j = 0;
/* Leading :: requires some special handling. */
if(srcb[i] == ':') {
if(srcb[++i] != ':') {
return null;
}
}
int curtok = i;
saw_xdigit = false;
val = 0;
while(i<srcb_length) {
ch = srcb[i++];
int chval = Character.digit(ch, 16);
if(chval != -1) {
val <<= 4;
val |= chval;
if(val>0xffff)
return null;
saw_xdigit = true;
continue;
}
if(ch == ':') {
curtok = i;
if(!saw_xdigit) {
if(colonp != -1) {
return null;
}
colonp = j;
continue;
} else if(i == srcb_length) {
return null;
}
if(j + INT16SZ>INADDR16SZ) {
return null;
}
dst[j++] = (byte) ((val >> 8) & 0xff);
dst[j++] = (byte) (val & 0xff);
saw_xdigit = false;
val = 0;
continue;
}
if(ch == '.' && ((j + INADDR4SZ)<=INADDR16SZ)) {
String ia4 = ip6.substring(curtok, srcb_length);
/* check this IPv4 address has 3 dots, ie. A.B.C.D */
int dot_count = 0, index = 0;
while((index = ia4.indexOf('.', index)) != -1) {
dot_count++;
index++;
}
if(dot_count != 3) {
return null;
}
byte[] v4addr = textToNumericFormatV4(ia4);
if(v4addr == null) {
return null;
}
for(int k = 0; k<INADDR4SZ; k++) {
dst[j++] = v4addr[k];
}
saw_xdigit = false;
break; /* '\0' was seen by inet_pton4(). */
}
return null;
}
if(saw_xdigit) {
if(j + INT16SZ>INADDR16SZ)
return null;
dst[j++] = (byte) ((val >> 8) & 0xff);
dst[j++] = (byte) (val & 0xff);
}
if(colonp != -1) {
int n = j - colonp;
if(j == INADDR16SZ)
return null;
for(i = 1; i<=n; i++) {
dst[INADDR16SZ - i] = dst[colonp + n - i];
dst[colonp + n - i] = 0;
}
j = INADDR16SZ;
}
if(j != INADDR16SZ) {
return null;
}
// 将IP6地址转换为IP4地址,转换失败则返回null
byte[] newdst = convertFromIPv4MappedAddress(dst);
return newdst != null ? newdst : dst;
}
/**
* @param src a String representing an IPv4 address in textual format
*
* @return a boolean indicating whether src is an IPv4 literal address
*/
// 判断指定的地址是否为IP4地址
public static boolean isIPv4LiteralAddress(String ip4) {
return textToNumericFormatV4(ip4) != null;
}
/**
* @param src a String representing an IPv6 address in textual format
*
* @return a boolean indicating whether src is an IPv6 literal address
*/
// 判断指定的地址是否为IP6地址
public static boolean isIPv6LiteralAddress(String ip6) {
return textToNumericFormatV6(ip6) != null;
}
/**
* Convert IPv4-Mapped address to IPv4 address. Both input and
* returned value are in network order binary form.
*
* @param addr a String representing an IPv4-Mapped address in textual format
*
* @return a byte array representing the IPv4 numeric address
*/
// 将IP6地址转换为IP4地址,转换失败则返回null
public static byte[] convertFromIPv4MappedAddress(byte[] addr) {
// 指定的IP地址是IP4地址映射成的IP6地址
if(isIPv4MappedAddress(addr)) {
// 将IP6地址转换为IP4地址
byte[] newAddr = new byte[INADDR4SZ];
System.arraycopy(addr, 12, newAddr, 0, INADDR4SZ);
return newAddr;
}
return null;
}
/**
* Utility routine to check if the InetAddress is an
* IPv4 mapped IPv6 address.
*
* @return a <code>boolean</code> indicating if the InetAddress is
* an IPv4 mapped IPv6 address; or false if address is IPv4 address.
*/
/*
* 判断指定的IP地址是否为IP4地址映射成的IP6地址
*
* 格式为0000:0000:0000:0000:0000:FFFF:XXXX:XXXX
* 其中,后4个字节XXXX:XXXX是映射前的IP4地址
*/
private static boolean isIPv4MappedAddress(byte[] addr) {
if(addr.length<INADDR16SZ) {
return false;
}
return (addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00) && (addr[4] == 0x00) && (addr[5] == 0x00) && (addr[6] == 0x00) && (addr[7] == 0x00) && (addr[8] == 0x00) && (addr[9] == 0x00) && (addr[10] == (byte) 0xff) && (addr[11] == (byte) 0xff);
}
}