Commit 9d907160 authored by Mikio Hara's avatar Mikio Hara

vendor: update golang_org/x/net/route from upstream

Updates the route package to git rev 146acd2 for:
- 146acd2 don't run NET_RT_IFLIST vs. NET_RT_IFLISTL test in 386 emulation (again)

Change-Id: I24de1eb31b2ca0e24cb9ab1648f7a71b5067cf97
Reviewed-on: https://go-review.googlesource.com/c/139937Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent dc6eb200
...@@ -4,10 +4,7 @@ ...@@ -4,10 +4,7 @@
package route package route
import ( import "testing"
"testing"
"unsafe"
)
func TestFetchAndParseRIBOnFreeBSD(t *testing.T) { func TestFetchAndParseRIBOnFreeBSD(t *testing.T) {
for _, typ := range []RIBType{sysNET_RT_IFMALIST} { for _, typ := range []RIBType{sysNET_RT_IFMALIST} {
...@@ -40,8 +37,7 @@ func TestFetchAndParseRIBOnFreeBSD10AndAbove(t *testing.T) { ...@@ -40,8 +37,7 @@ func TestFetchAndParseRIBOnFreeBSD10AndAbove(t *testing.T) {
if _, err := FetchRIB(sysAF_UNSPEC, sysNET_RT_IFLISTL, 0); err != nil { if _, err := FetchRIB(sysAF_UNSPEC, sysNET_RT_IFLISTL, 0); err != nil {
t.Skip("NET_RT_IFLISTL not supported") t.Skip("NET_RT_IFLISTL not supported")
} }
var p uintptr if compatFreeBSD32 {
if kernelAlign != int(unsafe.Sizeof(p)) {
t.Skip("NET_RT_IFLIST vs. NET_RT_IFLISTL doesn't work for 386 emulation on amd64") t.Skip("NET_RT_IFLIST vs. NET_RT_IFLISTL doesn't work for 386 emulation on amd64")
} }
......
...@@ -54,6 +54,8 @@ func (m *InterfaceMessage) Sys() []Sys { ...@@ -54,6 +54,8 @@ func (m *InterfaceMessage) Sys() []Sys {
} }
} }
var compatFreeBSD32 bool // 386 emulation on amd64
func probeRoutingStack() (int, map[int]*wireFormat) { func probeRoutingStack() (int, map[int]*wireFormat) {
var p uintptr var p uintptr
wordSize := int(unsafe.Sizeof(p)) wordSize := int(unsafe.Sizeof(p))
...@@ -83,8 +85,11 @@ func probeRoutingStack() (int, map[int]*wireFormat) { ...@@ -83,8 +85,11 @@ func probeRoutingStack() (int, map[int]*wireFormat) {
break break
} }
} }
if align != wordSize {
compatFreeBSD32 = true // 386 emulation on amd64
}
var rtm, ifm, ifam, ifmam, ifanm *wireFormat var rtm, ifm, ifam, ifmam, ifanm *wireFormat
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
rtm = &wireFormat{extOff: sizeofRtMsghdrFreeBSD10Emu - sizeofRtMetricsFreeBSD10Emu, bodyOff: sizeofRtMsghdrFreeBSD10Emu} rtm = &wireFormat{extOff: sizeofRtMsghdrFreeBSD10Emu - sizeofRtMetricsFreeBSD10Emu, bodyOff: sizeofRtMsghdrFreeBSD10Emu}
ifm = &wireFormat{extOff: 16} ifm = &wireFormat{extOff: 16}
ifam = &wireFormat{extOff: sizeofIfaMsghdrFreeBSD10Emu, bodyOff: sizeofIfaMsghdrFreeBSD10Emu} ifam = &wireFormat{extOff: sizeofIfaMsghdrFreeBSD10Emu, bodyOff: sizeofIfaMsghdrFreeBSD10Emu}
...@@ -100,31 +105,31 @@ func probeRoutingStack() (int, map[int]*wireFormat) { ...@@ -100,31 +105,31 @@ func probeRoutingStack() (int, map[int]*wireFormat) {
rel, _ := syscall.SysctlUint32("kern.osreldate") rel, _ := syscall.SysctlUint32("kern.osreldate")
switch { switch {
case rel < 800000: case rel < 800000:
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
ifm.bodyOff = sizeofIfMsghdrFreeBSD7Emu ifm.bodyOff = sizeofIfMsghdrFreeBSD7Emu
} else { } else {
ifm.bodyOff = sizeofIfMsghdrFreeBSD7 ifm.bodyOff = sizeofIfMsghdrFreeBSD7
} }
case 800000 <= rel && rel < 900000: case 800000 <= rel && rel < 900000:
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
ifm.bodyOff = sizeofIfMsghdrFreeBSD8Emu ifm.bodyOff = sizeofIfMsghdrFreeBSD8Emu
} else { } else {
ifm.bodyOff = sizeofIfMsghdrFreeBSD8 ifm.bodyOff = sizeofIfMsghdrFreeBSD8
} }
case 900000 <= rel && rel < 1000000: case 900000 <= rel && rel < 1000000:
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
ifm.bodyOff = sizeofIfMsghdrFreeBSD9Emu ifm.bodyOff = sizeofIfMsghdrFreeBSD9Emu
} else { } else {
ifm.bodyOff = sizeofIfMsghdrFreeBSD9 ifm.bodyOff = sizeofIfMsghdrFreeBSD9
} }
case 1000000 <= rel && rel < 1100000: case 1000000 <= rel && rel < 1100000:
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
ifm.bodyOff = sizeofIfMsghdrFreeBSD10Emu ifm.bodyOff = sizeofIfMsghdrFreeBSD10Emu
} else { } else {
ifm.bodyOff = sizeofIfMsghdrFreeBSD10 ifm.bodyOff = sizeofIfMsghdrFreeBSD10
} }
default: default:
if align != wordSize { // 386 emulation on amd64 if compatFreeBSD32 {
ifm.bodyOff = sizeofIfMsghdrFreeBSD11Emu ifm.bodyOff = sizeofIfMsghdrFreeBSD11Emu
} else { } else {
ifm.bodyOff = sizeofIfMsghdrFreeBSD11 ifm.bodyOff = sizeofIfMsghdrFreeBSD11
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment