diff options
author | Chris Kuiper <ckuiper@google.com> | 2019-08-20 23:27:29 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-08-20 23:28:52 -0700 |
commit | 7e79ca02251d0e085e2f1fc05b3811291e85fc0b (patch) | |
tree | 4f01f206bf693e4cb0f386214a6649b9b5db9ad2 /pkg/tcpip | |
parent | 7609da6cb937f1152206dc0fe7294982ea7160e1 (diff) |
Add tcpip.Route.String and tcpip.AddressMask.Prefix
PiperOrigin-RevId: 264544163
Diffstat (limited to 'pkg/tcpip')
-rw-r--r-- | pkg/tcpip/tcpip.go | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index 29a6025d9..3600a1349 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -31,6 +31,7 @@ package tcpip import ( "errors" "fmt" + "math/bits" "reflect" "strconv" "strings" @@ -145,8 +146,17 @@ type Address string type AddressMask string // String implements Stringer. -func (a AddressMask) String() string { - return Address(a).String() +func (m AddressMask) String() string { + return Address(m).String() +} + +// Prefix returns the number of bits before the first host bit. +func (m AddressMask) Prefix() int { + p := 0 + for _, b := range []byte(m) { + p += bits.LeadingZeros8(^b) + } + return p } // Subnet is a subnet defined by its address and mask. @@ -209,14 +219,7 @@ func (s *Subnet) Bits() (ones int, zeros int) { // Prefix returns the number of bits before the first host bit. func (s *Subnet) Prefix() int { - for i, b := range []byte(s.mask) { - for j := 7; j >= 0; j-- { - if b&(1<<uint(j)) == 0 { - return i*8 + 7 - j - } - } - } - return len(s.mask) * 8 + return s.mask.Prefix() } // Mask returns the subnet mask. @@ -590,6 +593,17 @@ type Route struct { NIC NICID } +// String implements the fmt.Stringer interface. +func (r *Route) String() string { + var out strings.Builder + fmt.Fprintf(&out, "%s/%d", r.Destination, r.Mask.Prefix()) + if len(r.Gateway) > 0 { + fmt.Fprintf(&out, " via %s", r.Gateway) + } + fmt.Fprintf(&out, " nic %d", r.NIC) + return out.String() +} + // Match determines if r is viable for the given destination address. func (r *Route) Match(addr Address) bool { if len(addr) != len(r.Destination) { |