lin
2025-06-05 ed3dd9d3e7519a82bb871d5eedb24a2fa0c91f47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// 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.
 
package syscall
 
import "unsafe"
 
func init() {
   conf, _ := Sysctl("kern.conftxt")
   for i, j := 0, 0; j < len(conf); j++ {
       if conf[j] != '\n' {
           continue
       }
       s := conf[i:j]
       i = j + 1
       if len(s) > len("machine") && s[:len("machine")] == "machine" {
           s = s[len("machine"):]
           for k := 0; k < len(s); k++ {
               if s[k] == ' ' || s[k] == '\t' {
                   s = s[1:]
               }
               break
           }
           freebsdConfArch = s
           break
       }
   }
}
 
func (any *anyMessage) toRoutingMessage(b []byte) RoutingMessage {
   switch any.Type {
   case RTM_ADD, RTM_DELETE, RTM_CHANGE, RTM_GET, RTM_LOSING, RTM_REDIRECT, RTM_MISS, RTM_LOCK, RTM_RESOLVE:
       return any.parseRouteMessage(b)
   case RTM_IFINFO:
       return any.parseInterfaceMessage(b)
   case RTM_IFANNOUNCE:
       p := (*InterfaceAnnounceMessage)(unsafe.Pointer(any))
       return &InterfaceAnnounceMessage{Header: p.Header}
   case RTM_NEWADDR, RTM_DELADDR:
       p := (*InterfaceAddrMessage)(unsafe.Pointer(any))
       return &InterfaceAddrMessage{Header: p.Header, Data: b[SizeofIfaMsghdr:any.Msglen]}
   case RTM_NEWMADDR, RTM_DELMADDR:
       p := (*InterfaceMulticastAddrMessage)(unsafe.Pointer(any))
       return &InterfaceMulticastAddrMessage{Header: p.Header, Data: b[SizeofIfmaMsghdr:any.Msglen]}
   }
   return nil
}
 
// InterfaceAnnounceMessage represents a routing message containing
// network interface arrival and departure information.
//
// Deprecated: Use golang.org/x/net/route instead.
type InterfaceAnnounceMessage struct {
   Header IfAnnounceMsghdr
}
 
func (m *InterfaceAnnounceMessage) sockaddr() ([]Sockaddr, error) { return nil, nil }
 
// InterfaceMulticastAddrMessage represents a routing message
// containing network interface address entries.
//
// Deprecated: Use golang.org/x/net/route instead.
type InterfaceMulticastAddrMessage struct {
   Header IfmaMsghdr
   Data   []byte
}
 
func (m *InterfaceMulticastAddrMessage) sockaddr() ([]Sockaddr, error) {
   var sas [RTAX_MAX]Sockaddr
   b := m.Data[:]
   for i := uint(0); i < RTAX_MAX && len(b) >= minRoutingSockaddrLen; i++ {
       if m.Header.Addrs&(1<<i) == 0 {
           continue
       }
       rsa := (*RawSockaddr)(unsafe.Pointer(&b[0]))
       switch rsa.Family {
       case AF_LINK:
           sa, err := parseSockaddrLink(b)
           if err != nil {
               return nil, err
           }
           sas[i] = sa
           b = b[rsaAlignOf(int(rsa.Len)):]
       case AF_INET, AF_INET6:
           sa, err := parseSockaddrInet(b, rsa.Family)
           if err != nil {
               return nil, err
           }
           sas[i] = sa
           b = b[rsaAlignOf(int(rsa.Len)):]
       default:
           sa, l, err := parseLinkLayerAddr(b)
           if err != nil {
               return nil, err
           }
           sas[i] = sa
           b = b[l:]
       }
   }
   return sas[:], nil
}