-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use default ip for advertise URL #6170
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright 2016 The etcd Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build !linux !386,!amd64 | ||
|
||
package netutil | ||
|
||
import ( | ||
"fmt" | ||
"runtime" | ||
) | ||
|
||
// GetDefaultHost fetches the a resolvable name that corresponds | ||
// to the machine's default routable interface | ||
func GetDefaultHost() (string, error) { | ||
return "", fmt.Errorf("default host not supported on %s_%s", runtime.GOOS, runtime.GOARCH) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
// Copyright 2016 The etcd Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +build linux | ||
// +build 386 amd64 | ||
|
||
// TODO support native endian but without using "unsafe" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where do we use unsafe currently? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we don't afaik, but the only way to get the native endian I'm aware of uses There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh... ok. |
||
|
||
package netutil | ||
|
||
import ( | ||
"bytes" | ||
"encoding/binary" | ||
"fmt" | ||
"net" | ||
"syscall" | ||
) | ||
|
||
var errNoDefaultRoute = fmt.Errorf("could not find default route") | ||
|
||
func GetDefaultHost() (string, error) { | ||
rmsg, rerr := getDefaultRoute() | ||
if rerr != nil { | ||
return "", rerr | ||
} | ||
|
||
attrs, aerr := syscall.ParseNetlinkRouteAttr(rmsg) | ||
if aerr != nil { | ||
return "", aerr | ||
} | ||
|
||
oif := uint32(0) | ||
for _, attr := range attrs { | ||
if attr.Attr.Type == syscall.RTA_PREFSRC { | ||
return net.IP(attr.Value).String(), nil | ||
} | ||
if attr.Attr.Type == syscall.RTA_OIF { | ||
oif = binary.LittleEndian.Uint32(attr.Value) | ||
} | ||
} | ||
|
||
if oif == 0 { | ||
return "", errNoDefaultRoute | ||
} | ||
|
||
// prefsrc not detected, fall back to getting address from iface | ||
|
||
ifmsg, ierr := getIface(oif) | ||
if ierr != nil { | ||
return "", ierr | ||
} | ||
|
||
attrs, aerr = syscall.ParseNetlinkRouteAttr(ifmsg) | ||
if aerr != nil { | ||
return "", aerr | ||
} | ||
|
||
for _, attr := range attrs { | ||
if attr.Attr.Type == syscall.RTA_SRC { | ||
return net.IP(attr.Value).String(), nil | ||
} | ||
} | ||
|
||
return "", errNoDefaultRoute | ||
} | ||
|
||
func getDefaultRoute() (*syscall.NetlinkMessage, error) { | ||
dat, err := syscall.NetlinkRIB(syscall.RTM_GETROUTE, syscall.AF_UNSPEC) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
msgs, msgErr := syscall.ParseNetlinkMessage(dat) | ||
if msgErr != nil { | ||
return nil, msgErr | ||
} | ||
|
||
rtmsg := syscall.RtMsg{} | ||
for _, m := range msgs { | ||
if m.Header.Type != syscall.RTM_NEWROUTE { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this doced somewhere? the response type is the same to the request type (create a new route)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's just the netlink protocol, I don't think it needs documentation? |
||
continue | ||
} | ||
buf := bytes.NewBuffer(m.Data[:syscall.SizeofRtMsg]) | ||
if rerr := binary.Read(buf, binary.LittleEndian, &rtmsg); rerr != nil { | ||
continue | ||
} | ||
if rtmsg.Dst_len == 0 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add comments? // For RTM_GETROUTE, setting rtm_dst_len and rtm_src_len to 0 means you get all probably also check src_len? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm... ignore previous comment. that is for request... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok, added comment about dst_len == 0 meaning default route |
||
// zero-length Dst_len implies default route | ||
return &m, nil | ||
} | ||
} | ||
|
||
return nil, errNoDefaultRoute | ||
} | ||
|
||
func getIface(idx uint32) (*syscall.NetlinkMessage, error) { | ||
dat, err := syscall.NetlinkRIB(syscall.RTM_GETADDR, syscall.AF_UNSPEC) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
msgs, msgErr := syscall.ParseNetlinkMessage(dat) | ||
if msgErr != nil { | ||
return nil, msgErr | ||
} | ||
|
||
ifaddrmsg := syscall.IfAddrmsg{} | ||
for _, m := range msgs { | ||
if m.Header.Type != syscall.RTM_NEWADDR { | ||
continue | ||
} | ||
buf := bytes.NewBuffer(m.Data[:syscall.SizeofIfAddrmsg]) | ||
if rerr := binary.Read(buf, binary.LittleEndian, &ifaddrmsg); rerr != nil { | ||
continue | ||
} | ||
if ifaddrmsg.Index == idx { | ||
return &m, nil | ||
} | ||
} | ||
|
||
return nil, errNoDefaultRoute | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
print out error if err is equal to errNoDefaultRoute?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added error reporting to
etcdmain