2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2012-03-04 15:42:07 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package net
|
|
|
|
|
2012-03-05 12:43:28 -07:00
|
|
|
const hexDigit = "0123456789abcdef"
|
2012-03-04 15:42:07 -07:00
|
|
|
|
|
|
|
// A HardwareAddr represents a physical hardware address.
|
|
|
|
type HardwareAddr []byte
|
|
|
|
|
|
|
|
func (a HardwareAddr) String() string {
|
2012-03-05 12:43:28 -07:00
|
|
|
if len(a) == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
buf := make([]byte, 0, len(a)*3-1)
|
2012-03-04 15:42:07 -07:00
|
|
|
for i, b := range a {
|
|
|
|
if i > 0 {
|
2012-03-05 12:43:28 -07:00
|
|
|
buf = append(buf, ':')
|
2012-03-04 15:42:07 -07:00
|
|
|
}
|
2012-03-05 12:43:28 -07:00
|
|
|
buf = append(buf, hexDigit[b>>4])
|
|
|
|
buf = append(buf, hexDigit[b&0xF])
|
2012-03-04 15:42:07 -07:00
|
|
|
}
|
2012-03-05 12:43:28 -07:00
|
|
|
return string(buf)
|
2012-03-04 15:42:07 -07:00
|
|
|
}
|
|
|
|
|
2015-07-17 15:28:42 -06:00
|
|
|
// ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
|
|
|
|
// IP over InfiniBand link-layer address using one of the following formats:
|
2012-03-04 15:42:07 -07:00
|
|
|
// 01:23:45:67:89:ab
|
|
|
|
// 01:23:45:67:89:ab:cd:ef
|
2015-07-17 15:28:42 -06:00
|
|
|
// 01:23:45:67:89:ab:cd:ef:00:00:01:23:45:67:89:ab:cd:ef:00:00
|
2012-03-04 15:42:07 -07:00
|
|
|
// 01-23-45-67-89-ab
|
|
|
|
// 01-23-45-67-89-ab-cd-ef
|
2015-07-17 15:28:42 -06:00
|
|
|
// 01-23-45-67-89-ab-cd-ef-00-00-01-23-45-67-89-ab-cd-ef-00-00
|
2012-03-04 15:42:07 -07:00
|
|
|
// 0123.4567.89ab
|
|
|
|
// 0123.4567.89ab.cdef
|
2015-07-17 15:28:42 -06:00
|
|
|
// 0123.4567.89ab.cdef.0000.0123.4567.89ab.cdef.0000
|
2012-03-04 15:42:07 -07:00
|
|
|
func ParseMAC(s string) (hw HardwareAddr, err error) {
|
|
|
|
if len(s) < 14 {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
|
|
|
|
if s[2] == ':' || s[2] == '-' {
|
|
|
|
if (len(s)+1)%3 != 0 {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
n := (len(s) + 1) / 3
|
2015-07-17 15:28:42 -06:00
|
|
|
if n != 6 && n != 8 && n != 20 {
|
2012-03-04 15:42:07 -07:00
|
|
|
goto error
|
|
|
|
}
|
|
|
|
hw = make(HardwareAddr, n)
|
|
|
|
for x, i := 0, 0; i < n; i++ {
|
|
|
|
var ok bool
|
|
|
|
if hw[i], ok = xtoi2(s[x:], s[2]); !ok {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
x += 3
|
|
|
|
}
|
|
|
|
} else if s[4] == '.' {
|
|
|
|
if (len(s)+1)%5 != 0 {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
n := 2 * (len(s) + 1) / 5
|
2015-07-17 15:28:42 -06:00
|
|
|
if n != 6 && n != 8 && n != 20 {
|
2012-03-04 15:42:07 -07:00
|
|
|
goto error
|
|
|
|
}
|
|
|
|
hw = make(HardwareAddr, n)
|
|
|
|
for x, i := 0, 0; i < n; i += 2 {
|
|
|
|
var ok bool
|
|
|
|
if hw[i], ok = xtoi2(s[x:x+2], 0); !ok {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
if hw[i+1], ok = xtoi2(s[x+2:], s[4]); !ok {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
x += 5
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
goto error
|
|
|
|
}
|
|
|
|
return hw, nil
|
|
|
|
|
|
|
|
error:
|
net: fix inconsistent errors
These a series of changes fix inconsistent errors on the package net
APIs. Now almost all the APIs return OpError as a common error type
except Lookup, Resolve and Parse APIs. The Lookup, Resolve and Parse
APIs return more specific errors such as DNSError, AddrError or
ParseError.
An OpError may contain nested error information. For example, Dial may
return an OpError containing a DNSError, AddrError, unexposed type/value
or other package's type/value like the following:
OpError{/* dial info */, Err: &DNSError{}}
OpError{/* dial info */, Err: &AddrError{}}
OpError{/* dial info */, Err: <unexposed type or value>}
OpError{/* dial info */, Err: <other package's type or value>}
and Read and Write may return an OpError containing other OpError when
an application uses io.Copy or similar:
OpError{/* for io.Reader */, Err: &OpError{/* for io.Writer */}}
When an endpoint is created for connection-oriented byte-stream
protocols, Read may return an io.EOF when the connection is closed by
remote endpoint.
Fixes #4856.
A series of changes:
- net: fix inconsistent error values on Dial, Listen partially
https://go.googlesource.com/go/+/89b7c66d0d14462fd7893be4290bdfe5f9063ae1
- net: fix inconsistent error values on Read
https://go.googlesource.com/go/+/ec1144423f45e010c72363fe59291d43214b6e31
- net: fix inconsistent error values on Write
https://go.googlesource.com/go/+/11b5f98bf0d5eb8854f735cc332c912725070214
- net: fix inconsistent error values on Close
https://go.googlesource.com/go/+/310db63c5bc121e7bfccb494c01a6b91a257e7fc
- net: fix inconsistent error values on Accept
https://go.googlesource.com/go/+/4540e162b1aefda8157372764ad3d290a414ef1d
- net: fix inconsistent error values on File
https://go.googlesource.com/go/+/885111365ba0a74421059bfbd18f4c57c1e70332
- net: fix inconsistent error values on setters
https://go.googlesource.com/go/+/2173a27903897c481b0a0daf3ca3e0a0685701db
- net: fix inconsistent error values on Interface
https://go.googlesource.com/go/+/456cf0f22c93e1a6654980f4a48a564555f6c8a2
- net: fix inconsistent error values on Lookup
https://go.googlesource.com/go/+/0fc582e87942b2e52bed751b6c56660ba99e9a7d
- net: add Source field to OpError
https://go.googlesource.com/go/+/afd2d2b6df3ebfe99faf347030f15adfdf422fa0
Change-Id: Id678e369088dc9fbe9073cfe7ff8a8754a57d61f
Reviewed-on: https://go-review.googlesource.com/9236
Reviewed-by: Ian Lance Taylor <iant@golang.org>
2015-04-21 06:20:15 -06:00
|
|
|
return nil, &AddrError{Err: "invalid MAC address", Addr: s}
|
2012-03-04 15:42:07 -07:00
|
|
|
}
|