2012-03-27 23:13:14 +00:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Routing sockets and messages for FreeBSD
|
|
|
|
|
|
|
|
package syscall
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
import "unsafe"
|
2012-03-27 23:13:14 +00:00
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
func (any *anyMessage) toRoutingMessage(b []byte) RoutingMessage {
|
2012-03-27 23:13:14 +00:00
|
|
|
switch any.Type {
|
|
|
|
case RTM_ADD, RTM_DELETE, RTM_CHANGE, RTM_GET, RTM_LOSING, RTM_REDIRECT, RTM_MISS, RTM_LOCK, RTM_RESOLVE:
|
|
|
|
p := (*RouteMessage)(unsafe.Pointer(any))
|
2014-09-21 17:33:12 +00:00
|
|
|
return &RouteMessage{Header: p.Header, Data: b[SizeofRtMsghdr:any.Msglen]}
|
2012-03-27 23:13:14 +00:00
|
|
|
case RTM_IFINFO:
|
|
|
|
p := (*InterfaceMessage)(unsafe.Pointer(any))
|
2014-09-21 17:33:12 +00:00
|
|
|
return &InterfaceMessage{Header: p.Header, Data: b[SizeofIfMsghdr:any.Msglen]}
|
|
|
|
case RTM_IFANNOUNCE:
|
|
|
|
p := (*InterfaceAnnounceMessage)(unsafe.Pointer(any))
|
|
|
|
return &InterfaceAnnounceMessage{Header: p.Header}
|
2012-03-27 23:13:14 +00:00
|
|
|
case RTM_NEWADDR, RTM_DELADDR:
|
|
|
|
p := (*InterfaceAddrMessage)(unsafe.Pointer(any))
|
2014-09-21 17:33:12 +00:00
|
|
|
return &InterfaceAddrMessage{Header: p.Header, Data: b[SizeofIfaMsghdr:any.Msglen]}
|
2012-03-27 23:13:14 +00:00
|
|
|
case RTM_NEWMADDR, RTM_DELMADDR:
|
|
|
|
p := (*InterfaceMulticastAddrMessage)(unsafe.Pointer(any))
|
2014-09-21 17:33:12 +00:00
|
|
|
return &InterfaceMulticastAddrMessage{Header: p.Header, Data: b[SizeofIfmaMsghdr:any.Msglen]}
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// InterfaceAnnounceMessage represents a routing message containing
|
|
|
|
// network interface arrival and depature information.
|
|
|
|
type InterfaceAnnounceMessage struct {
|
|
|
|
Header IfAnnounceMsghdr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *InterfaceAnnounceMessage) sockaddr() (sas []Sockaddr) { return nil }
|
|
|
|
|
2012-03-27 23:13:14 +00:00
|
|
|
// InterfaceMulticastAddrMessage represents a routing message
|
|
|
|
// containing network interface address entries.
|
|
|
|
type InterfaceMulticastAddrMessage struct {
|
|
|
|
Header IfmaMsghdr
|
|
|
|
Data []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
const rtaIfmaMask = RTA_GATEWAY | RTA_IFP | RTA_IFA
|
|
|
|
|
|
|
|
func (m *InterfaceMulticastAddrMessage) sockaddr() (sas []Sockaddr) {
|
|
|
|
if m.Header.Addrs&rtaIfmaMask == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
b := m.Data[:]
|
2012-03-27 23:13:14 +00:00
|
|
|
for i := uint(0); i < RTAX_MAX; i++ {
|
|
|
|
if m.Header.Addrs&rtaIfmaMask&(1<<i) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
rsa := (*RawSockaddr)(unsafe.Pointer(&b[0]))
|
2012-03-27 23:13:14 +00:00
|
|
|
switch i {
|
|
|
|
case RTAX_IFA:
|
|
|
|
sa, e := anyToSockaddr((*RawSockaddrAny)(unsafe.Pointer(rsa)))
|
|
|
|
if e != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
sas = append(sas, sa)
|
|
|
|
case RTAX_GATEWAY, RTAX_IFP:
|
|
|
|
// nothing to do
|
|
|
|
}
|
2014-09-21 17:33:12 +00:00
|
|
|
b = b[rsaAlignOf(int(rsa.Len)):]
|
2012-03-27 23:13:14 +00:00
|
|
|
}
|
|
|
|
return sas
|
|
|
|
}
|