blob: da8dca588e5c80209a080f7ef750ec1050d7940b [file] [log] [blame]
Colin Cross7bb052a2015-02-03 12:59:37 -08001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// IP address manipulations
6//
7// IPv4 addresses are 4 bytes; IPv6 addresses are 16 bytes.
8// An IPv4 address can be converted to an IPv6 address by
9// adding a canonical prefix (10 zeros, 2 0xFFs).
10// This library accepts either size of byte slice but always
11// returns 16-byte addresses.
12
13package net
14
Dan Willemsenc78f7142017-07-26 13:08:14 -070015import _ "unsafe" // for go:linkname
16
Colin Cross7bb052a2015-02-03 12:59:37 -080017// IP address lengths (bytes).
18const (
19 IPv4len = 4
20 IPv6len = 16
21)
22
23// An IP is a single IP address, a slice of bytes.
24// Functions in this package accept either 4-byte (IPv4)
25// or 16-byte (IPv6) slices as input.
26//
27// Note that in this documentation, referring to an
28// IP address as an IPv4 address or an IPv6 address
29// is a semantic property of the address, not just the
30// length of the byte slice: a 16-byte slice can still
31// be an IPv4 address.
32type IP []byte
33
34// An IP mask is an IP address.
35type IPMask []byte
36
37// An IPNet represents an IP network.
38type IPNet struct {
39 IP IP // network number
40 Mask IPMask // network mask
41}
42
43// IPv4 returns the IP address (in 16-byte form) of the
44// IPv4 address a.b.c.d.
45func IPv4(a, b, c, d byte) IP {
46 p := make(IP, IPv6len)
47 copy(p, v4InV6Prefix)
48 p[12] = a
49 p[13] = b
50 p[14] = c
51 p[15] = d
52 return p
53}
54
55var v4InV6Prefix = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff}
56
57// IPv4Mask returns the IP mask (in 4-byte form) of the
58// IPv4 mask a.b.c.d.
59func IPv4Mask(a, b, c, d byte) IPMask {
60 p := make(IPMask, IPv4len)
61 p[0] = a
62 p[1] = b
63 p[2] = c
64 p[3] = d
65 return p
66}
67
68// CIDRMask returns an IPMask consisting of `ones' 1 bits
69// followed by 0s up to a total length of `bits' bits.
70// For a mask of this form, CIDRMask is the inverse of IPMask.Size.
71func CIDRMask(ones, bits int) IPMask {
72 if bits != 8*IPv4len && bits != 8*IPv6len {
73 return nil
74 }
75 if ones < 0 || ones > bits {
76 return nil
77 }
78 l := bits / 8
79 m := make(IPMask, l)
80 n := uint(ones)
81 for i := 0; i < l; i++ {
82 if n >= 8 {
83 m[i] = 0xff
84 n -= 8
85 continue
86 }
87 m[i] = ^byte(0xff >> n)
88 n = 0
89 }
90 return m
91}
92
93// Well-known IPv4 addresses
94var (
Dan Willemsenbbdf6642017-01-13 22:57:23 -080095 IPv4bcast = IPv4(255, 255, 255, 255) // limited broadcast
Colin Cross7bb052a2015-02-03 12:59:37 -080096 IPv4allsys = IPv4(224, 0, 0, 1) // all systems
97 IPv4allrouter = IPv4(224, 0, 0, 2) // all routers
98 IPv4zero = IPv4(0, 0, 0, 0) // all zeros
99)
100
101// Well-known IPv6 addresses
102var (
103 IPv6zero = IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
104 IPv6unspecified = IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
105 IPv6loopback = IP{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
106 IPv6interfacelocalallnodes = IP{0xff, 0x01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
107 IPv6linklocalallnodes = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
108 IPv6linklocalallrouters = IP{0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x02}
109)
110
Dan Willemsenc78f7142017-07-26 13:08:14 -0700111// IsUnspecified reports whether ip is an unspecified address, either
112// the IPv4 address "0.0.0.0" or the IPv6 address "::".
Colin Cross7bb052a2015-02-03 12:59:37 -0800113func (ip IP) IsUnspecified() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700114 return ip.Equal(IPv4zero) || ip.Equal(IPv6unspecified)
Colin Cross7bb052a2015-02-03 12:59:37 -0800115}
116
Dan Willemsen6ff23252015-09-15 13:49:18 -0700117// IsLoopback reports whether ip is a loopback address.
Colin Cross7bb052a2015-02-03 12:59:37 -0800118func (ip IP) IsLoopback() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700119 if ip4 := ip.To4(); ip4 != nil {
120 return ip4[0] == 127
Colin Cross7bb052a2015-02-03 12:59:37 -0800121 }
122 return ip.Equal(IPv6loopback)
123}
124
Dan Willemsen6ff23252015-09-15 13:49:18 -0700125// IsMulticast reports whether ip is a multicast address.
Colin Cross7bb052a2015-02-03 12:59:37 -0800126func (ip IP) IsMulticast() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700127 if ip4 := ip.To4(); ip4 != nil {
128 return ip4[0]&0xf0 == 0xe0
Colin Cross7bb052a2015-02-03 12:59:37 -0800129 }
Dan Willemsen6ff23252015-09-15 13:49:18 -0700130 return len(ip) == IPv6len && ip[0] == 0xff
Colin Cross7bb052a2015-02-03 12:59:37 -0800131}
132
Dan Willemsen6ff23252015-09-15 13:49:18 -0700133// IsInterfaceLocalMulticast reports whether ip is
Colin Cross7bb052a2015-02-03 12:59:37 -0800134// an interface-local multicast address.
135func (ip IP) IsInterfaceLocalMulticast() bool {
136 return len(ip) == IPv6len && ip[0] == 0xff && ip[1]&0x0f == 0x01
137}
138
Dan Willemsen6ff23252015-09-15 13:49:18 -0700139// IsLinkLocalMulticast reports whether ip is a link-local
Colin Cross7bb052a2015-02-03 12:59:37 -0800140// multicast address.
141func (ip IP) IsLinkLocalMulticast() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700142 if ip4 := ip.To4(); ip4 != nil {
143 return ip4[0] == 224 && ip4[1] == 0 && ip4[2] == 0
Colin Cross7bb052a2015-02-03 12:59:37 -0800144 }
Dan Willemsen6ff23252015-09-15 13:49:18 -0700145 return len(ip) == IPv6len && ip[0] == 0xff && ip[1]&0x0f == 0x02
Colin Cross7bb052a2015-02-03 12:59:37 -0800146}
147
Dan Willemsen6ff23252015-09-15 13:49:18 -0700148// IsLinkLocalUnicast reports whether ip is a link-local
Colin Cross7bb052a2015-02-03 12:59:37 -0800149// unicast address.
150func (ip IP) IsLinkLocalUnicast() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700151 if ip4 := ip.To4(); ip4 != nil {
152 return ip4[0] == 169 && ip4[1] == 254
Colin Cross7bb052a2015-02-03 12:59:37 -0800153 }
Dan Willemsen6ff23252015-09-15 13:49:18 -0700154 return len(ip) == IPv6len && ip[0] == 0xfe && ip[1]&0xc0 == 0x80
Colin Cross7bb052a2015-02-03 12:59:37 -0800155}
156
Dan Willemsen6ff23252015-09-15 13:49:18 -0700157// IsGlobalUnicast reports whether ip is a global unicast
Colin Cross7bb052a2015-02-03 12:59:37 -0800158// address.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800159//
160// The identification of global unicast addresses uses address type
161// identification as defined in RFC 1122, RFC 4632 and RFC 4291 with
162// the exception of IPv4 directed broadcast addresses.
163// It returns true even if ip is in IPv4 private address space or
164// local IPv6 unicast address space.
Colin Cross7bb052a2015-02-03 12:59:37 -0800165func (ip IP) IsGlobalUnicast() bool {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700166 return (len(ip) == IPv4len || len(ip) == IPv6len) &&
167 !ip.Equal(IPv4bcast) &&
168 !ip.IsUnspecified() &&
Colin Cross7bb052a2015-02-03 12:59:37 -0800169 !ip.IsLoopback() &&
170 !ip.IsMulticast() &&
171 !ip.IsLinkLocalUnicast()
172}
173
174// Is p all zeros?
175func isZeros(p IP) bool {
176 for i := 0; i < len(p); i++ {
177 if p[i] != 0 {
178 return false
179 }
180 }
181 return true
182}
183
184// To4 converts the IPv4 address ip to a 4-byte representation.
185// If ip is not an IPv4 address, To4 returns nil.
186func (ip IP) To4() IP {
187 if len(ip) == IPv4len {
188 return ip
189 }
190 if len(ip) == IPv6len &&
191 isZeros(ip[0:10]) &&
192 ip[10] == 0xff &&
193 ip[11] == 0xff {
194 return ip[12:16]
195 }
196 return nil
197}
198
199// To16 converts the IP address ip to a 16-byte representation.
200// If ip is not an IP address (it is the wrong length), To16 returns nil.
201func (ip IP) To16() IP {
202 if len(ip) == IPv4len {
203 return IPv4(ip[0], ip[1], ip[2], ip[3])
204 }
205 if len(ip) == IPv6len {
206 return ip
207 }
208 return nil
209}
210
211// Default route masks for IPv4.
212var (
213 classAMask = IPv4Mask(0xff, 0, 0, 0)
214 classBMask = IPv4Mask(0xff, 0xff, 0, 0)
215 classCMask = IPv4Mask(0xff, 0xff, 0xff, 0)
216)
217
218// DefaultMask returns the default IP mask for the IP address ip.
219// Only IPv4 addresses have default masks; DefaultMask returns
220// nil if ip is not a valid IPv4 address.
221func (ip IP) DefaultMask() IPMask {
222 if ip = ip.To4(); ip == nil {
223 return nil
224 }
225 switch true {
226 case ip[0] < 0x80:
227 return classAMask
228 case ip[0] < 0xC0:
229 return classBMask
230 default:
231 return classCMask
232 }
233}
234
235func allFF(b []byte) bool {
236 for _, c := range b {
237 if c != 0xff {
238 return false
239 }
240 }
241 return true
242}
243
244// Mask returns the result of masking the IP address ip with mask.
245func (ip IP) Mask(mask IPMask) IP {
246 if len(mask) == IPv6len && len(ip) == IPv4len && allFF(mask[:12]) {
247 mask = mask[12:]
248 }
249 if len(mask) == IPv4len && len(ip) == IPv6len && bytesEqual(ip[:12], v4InV6Prefix) {
250 ip = ip[12:]
251 }
252 n := len(ip)
253 if n != len(mask) {
254 return nil
255 }
256 out := make(IP, n)
257 for i := 0; i < n; i++ {
258 out[i] = ip[i] & mask[i]
259 }
260 return out
261}
262
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700263// ubtoa encodes the string form of the integer v to dst[start:] and
264// returns the number of bytes written to dst. The caller must ensure
265// that dst has sufficient length.
266func ubtoa(dst []byte, start int, v byte) int {
267 if v < 10 {
268 dst[start] = v + '0'
269 return 1
270 } else if v < 100 {
271 dst[start+1] = v%10 + '0'
272 dst[start] = v/10 + '0'
273 return 2
274 }
275
276 dst[start+2] = v%10 + '0'
277 dst[start+1] = (v/10)%10 + '0'
278 dst[start] = v/100 + '0'
279 return 3
280}
281
Colin Cross7bb052a2015-02-03 12:59:37 -0800282// String returns the string form of the IP address ip.
Dan Willemsen0c157092016-07-08 13:57:52 -0700283// It returns one of 4 forms:
284// - "<nil>", if ip has length 0
285// - dotted decimal ("192.0.2.1"), if ip is an IPv4 or IP4-mapped IPv6 address
286// - IPv6 ("2001:db8::1"), if ip is a valid IPv6 address
287// - the hexadecimal form of ip, without punctuation, if no other cases apply
Colin Cross7bb052a2015-02-03 12:59:37 -0800288func (ip IP) String() string {
289 p := ip
290
291 if len(ip) == 0 {
292 return "<nil>"
293 }
294
295 // If IPv4, use dotted notation.
296 if p4 := p.To4(); len(p4) == IPv4len {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700297 const maxIPv4StringLen = len("255.255.255.255")
298 b := make([]byte, maxIPv4StringLen)
299
300 n := ubtoa(b, 0, p4[0])
301 b[n] = '.'
302 n++
303
304 n += ubtoa(b, n, p4[1])
305 b[n] = '.'
306 n++
307
308 n += ubtoa(b, n, p4[2])
309 b[n] = '.'
310 n++
311
312 n += ubtoa(b, n, p4[3])
313 return string(b[:n])
Colin Cross7bb052a2015-02-03 12:59:37 -0800314 }
315 if len(p) != IPv6len {
Dan Willemsen0c157092016-07-08 13:57:52 -0700316 return "?" + hexString(ip)
Colin Cross7bb052a2015-02-03 12:59:37 -0800317 }
318
319 // Find longest run of zeros.
320 e0 := -1
321 e1 := -1
322 for i := 0; i < IPv6len; i += 2 {
323 j := i
324 for j < IPv6len && p[j] == 0 && p[j+1] == 0 {
325 j += 2
326 }
327 if j > i && j-i > e1-e0 {
328 e0 = i
329 e1 = j
330 i = j
331 }
332 }
333 // The symbol "::" MUST NOT be used to shorten just one 16 bit 0 field.
334 if e1-e0 <= 2 {
335 e0 = -1
336 e1 = -1
337 }
338
339 const maxLen = len("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff")
340 b := make([]byte, 0, maxLen)
341
342 // Print with possible :: in place of run of zeros
343 for i := 0; i < IPv6len; i += 2 {
344 if i == e0 {
345 b = append(b, ':', ':')
346 i = e1
347 if i >= IPv6len {
348 break
349 }
350 } else if i > 0 {
351 b = append(b, ':')
352 }
353 b = appendHex(b, (uint32(p[i])<<8)|uint32(p[i+1]))
354 }
355 return string(b)
356}
357
Dan Willemsen0c157092016-07-08 13:57:52 -0700358func hexString(b []byte) string {
359 s := make([]byte, len(b)*2)
360 for i, tn := range b {
361 s[i*2], s[i*2+1] = hexDigit[tn>>4], hexDigit[tn&0xf]
362 }
363 return string(s)
364}
365
Colin Cross7bb052a2015-02-03 12:59:37 -0800366// ipEmptyString is like ip.String except that it returns
367// an empty string when ip is unset.
368func ipEmptyString(ip IP) string {
369 if len(ip) == 0 {
370 return ""
371 }
372 return ip.String()
373}
374
375// MarshalText implements the encoding.TextMarshaler interface.
Dan Willemsenc78f7142017-07-26 13:08:14 -0700376// The encoding is the same as returned by String, with one exception:
377// When len(ip) is zero, it returns an empty slice.
Colin Cross7bb052a2015-02-03 12:59:37 -0800378func (ip IP) MarshalText() ([]byte, error) {
379 if len(ip) == 0 {
380 return []byte(""), nil
381 }
382 if len(ip) != IPv4len && len(ip) != IPv6len {
Dan Willemsen0c157092016-07-08 13:57:52 -0700383 return nil, &AddrError{Err: "invalid IP address", Addr: hexString(ip)}
Colin Cross7bb052a2015-02-03 12:59:37 -0800384 }
385 return []byte(ip.String()), nil
386}
387
388// UnmarshalText implements the encoding.TextUnmarshaler interface.
389// The IP address is expected in a form accepted by ParseIP.
390func (ip *IP) UnmarshalText(text []byte) error {
391 if len(text) == 0 {
392 *ip = nil
393 return nil
394 }
395 s := string(text)
396 x := ParseIP(s)
397 if x == nil {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700398 return &ParseError{Type: "IP address", Text: s}
Colin Cross7bb052a2015-02-03 12:59:37 -0800399 }
400 *ip = x
401 return nil
402}
403
Dan Willemsen6ff23252015-09-15 13:49:18 -0700404// Equal reports whether ip and x are the same IP address.
Colin Cross7bb052a2015-02-03 12:59:37 -0800405// An IPv4 address and that same address in IPv6 form are
406// considered to be equal.
407func (ip IP) Equal(x IP) bool {
408 if len(ip) == len(x) {
409 return bytesEqual(ip, x)
410 }
411 if len(ip) == IPv4len && len(x) == IPv6len {
412 return bytesEqual(x[0:12], v4InV6Prefix) && bytesEqual(ip, x[12:])
413 }
414 if len(ip) == IPv6len && len(x) == IPv4len {
415 return bytesEqual(ip[0:12], v4InV6Prefix) && bytesEqual(ip[12:], x)
416 }
417 return false
418}
419
Dan Willemsenc78f7142017-07-26 13:08:14 -0700420// bytes.Equal is implemented in runtime/asm_$goarch.s
421//go:linkname bytesEqual bytes.Equal
422func bytesEqual(x, y []byte) bool
Colin Cross7bb052a2015-02-03 12:59:37 -0800423
Dan Willemsen0c157092016-07-08 13:57:52 -0700424func (ip IP) matchAddrFamily(x IP) bool {
425 return ip.To4() != nil && x.To4() != nil || ip.To16() != nil && ip.To4() == nil && x.To16() != nil && x.To4() == nil
426}
427
Colin Cross7bb052a2015-02-03 12:59:37 -0800428// If mask is a sequence of 1 bits followed by 0 bits,
429// return the number of 1 bits.
430func simpleMaskLength(mask IPMask) int {
431 var n int
432 for i, v := range mask {
433 if v == 0xff {
434 n += 8
435 continue
436 }
437 // found non-ff byte
438 // count 1 bits
439 for v&0x80 != 0 {
440 n++
441 v <<= 1
442 }
443 // rest must be 0 bits
444 if v != 0 {
445 return -1
446 }
447 for i++; i < len(mask); i++ {
448 if mask[i] != 0 {
449 return -1
450 }
451 }
452 break
453 }
454 return n
455}
456
457// Size returns the number of leading ones and total bits in the mask.
458// If the mask is not in the canonical form--ones followed by zeros--then
459// Size returns 0, 0.
460func (m IPMask) Size() (ones, bits int) {
461 ones, bits = simpleMaskLength(m), len(m)*8
462 if ones == -1 {
463 return 0, 0
464 }
465 return
466}
467
468// String returns the hexadecimal form of m, with no punctuation.
469func (m IPMask) String() string {
470 if len(m) == 0 {
471 return "<nil>"
472 }
Dan Willemsen0c157092016-07-08 13:57:52 -0700473 return hexString(m)
Colin Cross7bb052a2015-02-03 12:59:37 -0800474}
475
476func networkNumberAndMask(n *IPNet) (ip IP, m IPMask) {
477 if ip = n.IP.To4(); ip == nil {
478 ip = n.IP
479 if len(ip) != IPv6len {
480 return nil, nil
481 }
482 }
483 m = n.Mask
484 switch len(m) {
485 case IPv4len:
486 if len(ip) != IPv4len {
487 return nil, nil
488 }
489 case IPv6len:
490 if len(ip) == IPv4len {
491 m = m[12:]
492 }
493 default:
494 return nil, nil
495 }
496 return
497}
498
499// Contains reports whether the network includes ip.
500func (n *IPNet) Contains(ip IP) bool {
501 nn, m := networkNumberAndMask(n)
502 if x := ip.To4(); x != nil {
503 ip = x
504 }
505 l := len(ip)
506 if l != len(nn) {
507 return false
508 }
509 for i := 0; i < l; i++ {
510 if nn[i]&m[i] != ip[i]&m[i] {
511 return false
512 }
513 }
514 return true
515}
516
517// Network returns the address's network name, "ip+net".
518func (n *IPNet) Network() string { return "ip+net" }
519
Dan Willemsen0c157092016-07-08 13:57:52 -0700520// String returns the CIDR notation of n like "192.0.2.1/24"
521// or "2001:db8::/48" as defined in RFC 4632 and RFC 4291.
Colin Cross7bb052a2015-02-03 12:59:37 -0800522// If the mask is not in the canonical form, it returns the
523// string which consists of an IP address, followed by a slash
524// character and a mask expressed as hexadecimal form with no
Dan Willemsen0c157092016-07-08 13:57:52 -0700525// punctuation like "198.51.100.1/c000ff00".
Colin Cross7bb052a2015-02-03 12:59:37 -0800526func (n *IPNet) String() string {
527 nn, m := networkNumberAndMask(n)
528 if nn == nil || m == nil {
529 return "<nil>"
530 }
531 l := simpleMaskLength(m)
532 if l == -1 {
533 return nn.String() + "/" + m.String()
534 }
Dan Willemsen6ff23252015-09-15 13:49:18 -0700535 return nn.String() + "/" + uitoa(uint(l))
Colin Cross7bb052a2015-02-03 12:59:37 -0800536}
537
538// Parse IPv4 address (d.d.d.d).
539func parseIPv4(s string) IP {
540 var p [IPv4len]byte
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800541 for i := 0; i < IPv4len; i++ {
542 if len(s) == 0 {
Colin Cross7bb052a2015-02-03 12:59:37 -0800543 // Missing octets.
544 return nil
545 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800546 if i > 0 {
547 if s[0] != '.' {
Colin Cross7bb052a2015-02-03 12:59:37 -0800548 return nil
549 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800550 s = s[1:]
Colin Cross7bb052a2015-02-03 12:59:37 -0800551 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800552 n, c, ok := dtoi(s)
Colin Cross7bb052a2015-02-03 12:59:37 -0800553 if !ok || n > 0xFF {
554 return nil
555 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800556 s = s[c:]
557 p[i] = byte(n)
Colin Cross7bb052a2015-02-03 12:59:37 -0800558 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800559 if len(s) != 0 {
Colin Cross7bb052a2015-02-03 12:59:37 -0800560 return nil
561 }
562 return IPv4(p[0], p[1], p[2], p[3])
563}
564
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700565// parseIPv6Zone parses s as a literal IPv6 address and its associated zone
566// identifier which is described in RFC 4007.
567func parseIPv6Zone(s string) (IP, string) {
568 s, zone := splitHostZone(s)
569 return parseIPv6(s), zone
570}
571
572// parseIPv6Zone parses s as a literal IPv6 address described in RFC 4291
573// and RFC 5952.
574func parseIPv6(s string) (ip IP) {
Colin Cross7bb052a2015-02-03 12:59:37 -0800575 ip = make(IP, IPv6len)
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800576 ellipsis := -1 // position of ellipsis in ip
Colin Cross7bb052a2015-02-03 12:59:37 -0800577
Colin Cross7bb052a2015-02-03 12:59:37 -0800578 // Might have leading ellipsis
579 if len(s) >= 2 && s[0] == ':' && s[1] == ':' {
580 ellipsis = 0
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800581 s = s[2:]
Colin Cross7bb052a2015-02-03 12:59:37 -0800582 // Might be only ellipsis
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800583 if len(s) == 0 {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700584 return ip
Colin Cross7bb052a2015-02-03 12:59:37 -0800585 }
586 }
587
588 // Loop, parsing hex numbers followed by colon.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800589 i := 0
590 for i < IPv6len {
Colin Cross7bb052a2015-02-03 12:59:37 -0800591 // Hex number.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800592 n, c, ok := xtoi(s)
Colin Cross7bb052a2015-02-03 12:59:37 -0800593 if !ok || n > 0xFFFF {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700594 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800595 }
596
597 // If followed by dot, might be in trailing IPv4.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800598 if c < len(s) && s[c] == '.' {
599 if ellipsis < 0 && i != IPv6len-IPv4len {
Colin Cross7bb052a2015-02-03 12:59:37 -0800600 // Not the right place.
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700601 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800602 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800603 if i+IPv4len > IPv6len {
Colin Cross7bb052a2015-02-03 12:59:37 -0800604 // Not enough room.
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700605 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800606 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800607 ip4 := parseIPv4(s)
Colin Cross7bb052a2015-02-03 12:59:37 -0800608 if ip4 == nil {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700609 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800610 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800611 ip[i] = ip4[12]
612 ip[i+1] = ip4[13]
613 ip[i+2] = ip4[14]
614 ip[i+3] = ip4[15]
615 s = ""
616 i += IPv4len
Colin Cross7bb052a2015-02-03 12:59:37 -0800617 break
618 }
619
620 // Save this 16-bit chunk.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800621 ip[i] = byte(n >> 8)
622 ip[i+1] = byte(n)
623 i += 2
Colin Cross7bb052a2015-02-03 12:59:37 -0800624
625 // Stop at end of string.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800626 s = s[c:]
627 if len(s) == 0 {
Colin Cross7bb052a2015-02-03 12:59:37 -0800628 break
629 }
630
631 // Otherwise must be followed by colon and more.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800632 if s[0] != ':' || len(s) == 1 {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700633 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800634 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800635 s = s[1:]
Colin Cross7bb052a2015-02-03 12:59:37 -0800636
637 // Look for ellipsis.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800638 if s[0] == ':' {
Colin Cross7bb052a2015-02-03 12:59:37 -0800639 if ellipsis >= 0 { // already have one
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700640 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800641 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800642 ellipsis = i
643 s = s[1:]
644 if len(s) == 0 { // can be at end
Colin Cross7bb052a2015-02-03 12:59:37 -0800645 break
646 }
647 }
648 }
649
650 // Must have used entire string.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800651 if len(s) != 0 {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700652 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800653 }
654
655 // If didn't parse enough, expand ellipsis.
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800656 if i < IPv6len {
Colin Cross7bb052a2015-02-03 12:59:37 -0800657 if ellipsis < 0 {
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700658 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800659 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800660 n := IPv6len - i
661 for j := i - 1; j >= ellipsis; j-- {
662 ip[j+n] = ip[j]
Colin Cross7bb052a2015-02-03 12:59:37 -0800663 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800664 for j := ellipsis + n - 1; j >= ellipsis; j-- {
665 ip[j] = 0
Colin Cross7bb052a2015-02-03 12:59:37 -0800666 }
667 } else if ellipsis >= 0 {
668 // Ellipsis must represent at least one 0 group.
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700669 return nil
Colin Cross7bb052a2015-02-03 12:59:37 -0800670 }
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700671 return ip
Colin Cross7bb052a2015-02-03 12:59:37 -0800672}
673
Colin Cross7bb052a2015-02-03 12:59:37 -0800674// ParseIP parses s as an IP address, returning the result.
Dan Willemsen0c157092016-07-08 13:57:52 -0700675// The string s can be in dotted decimal ("192.0.2.1")
676// or IPv6 ("2001:db8::68") form.
Colin Cross7bb052a2015-02-03 12:59:37 -0800677// If s is not a valid textual representation of an IP address,
678// ParseIP returns nil.
679func ParseIP(s string) IP {
680 for i := 0; i < len(s); i++ {
681 switch s[i] {
682 case '.':
683 return parseIPv4(s)
684 case ':':
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700685 return parseIPv6(s)
Colin Cross7bb052a2015-02-03 12:59:37 -0800686 }
687 }
688 return nil
689}
690
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700691// parseIPZone parses s as an IP address, return it and its associated zone
692// identifier (IPv6 only).
693func parseIPZone(s string) (IP, string) {
694 for i := 0; i < len(s); i++ {
695 switch s[i] {
696 case '.':
697 return parseIPv4(s), ""
698 case ':':
699 return parseIPv6Zone(s)
700 }
701 }
702 return nil, ""
703}
704
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800705// ParseCIDR parses s as a CIDR notation IP address and prefix length,
Dan Willemsen0c157092016-07-08 13:57:52 -0700706// like "192.0.2.0/24" or "2001:db8::/32", as defined in
Colin Cross7bb052a2015-02-03 12:59:37 -0800707// RFC 4632 and RFC 4291.
708//
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800709// It returns the IP address and the network implied by the IP and
710// prefix length.
711// For example, ParseCIDR("192.0.2.1/24") returns the IP address
Dan Willemsenc78f7142017-07-26 13:08:14 -0700712// 192.0.2.1 and the network 192.0.2.0/24.
Colin Cross7bb052a2015-02-03 12:59:37 -0800713func ParseCIDR(s string) (IP, *IPNet, error) {
714 i := byteIndex(s, '/')
715 if i < 0 {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700716 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
Colin Cross7bb052a2015-02-03 12:59:37 -0800717 }
718 addr, mask := s[:i], s[i+1:]
719 iplen := IPv4len
720 ip := parseIPv4(addr)
721 if ip == nil {
722 iplen = IPv6len
Dan Willemsenf3f2eb62018-08-28 11:28:58 -0700723 ip = parseIPv6(addr)
Colin Cross7bb052a2015-02-03 12:59:37 -0800724 }
Dan Willemsenbbdf6642017-01-13 22:57:23 -0800725 n, i, ok := dtoi(mask)
Colin Cross7bb052a2015-02-03 12:59:37 -0800726 if ip == nil || !ok || i != len(mask) || n < 0 || n > 8*iplen {
Dan Willemsen6ff23252015-09-15 13:49:18 -0700727 return nil, nil, &ParseError{Type: "CIDR address", Text: s}
Colin Cross7bb052a2015-02-03 12:59:37 -0800728 }
729 m := CIDRMask(n, 8*iplen)
730 return ip, &IPNet{IP: ip.Mask(m), Mask: m}, nil
731}