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
|
package ztpv4
import (
"fmt"
"regexp"
"github.com/insomniacslk/dhcp/dhcpv4"
)
// CircuitID represents the structure of network vendor interface formats
type CircuitID struct {
Slot string
Module string
Port string
SubPort string
Vlan string
}
var circuitRegexs = []*regexp.Regexp{
// Juniper QFX et-0/0/0:0.0 and xe-0/0/0:0.0
regexp.MustCompile("^(et|xe)-(?P<slot>[0-9]+)/(?P<mod>[0-9]+)/(?P<port>[0-9]+):(?P<subport>[0-9]+).*$"),
// Juniper PTX et-0/0/0.0
regexp.MustCompile("^et-(?P<slot>[0-9]+)/(?P<mod>[0-9]+)/(?P<port>[0-9]+).(?P<subport>[0-9]+)$"),
// Juniper EX ge-0/0/0.0
regexp.MustCompile("^ge-(?P<slot>[0-9]+)/(?P<mod>[0-9]+)/(?P<port>[0-9]+).(?P<subport>[0-9]+).*"),
// Arista Ethernet3/17/1
// Sometimes Arista prepend circuit id type(1 byte) and length(1 byte) not using ^
regexp.MustCompile("Ethernet(?P<slot>[0-9]+)/(?P<mod>[0-9]+)/(?P<port>[0-9]+)$"),
// Juniper QFX et-1/0/61
regexp.MustCompile("^et-(?P<slot>[0-9]+)/(?P<mod>[0-9]+)/(?P<port>[0-9]+)$"),
// Arista Ethernet14:Vlan2001
// Arista Ethernet10:2020
regexp.MustCompile("Ethernet(?P<port>[0-9]+):(?P<vlan>.*)$"),
// Cisco Gi1/10:2020
regexp.MustCompile("^Gi(?P<slot>[0-9]+)/(?P<port>[0-9]+):(?P<vlan>.*)$"),
// Nexus Ethernet1/3
regexp.MustCompile("^Ethernet(?P<slot>[0-9]+)/(?P<port>[0-9]+)$"),
// Juniper bundle interface ae52.0
regexp.MustCompile("^ae(?P<port>[0-9]+).(?P<subport>[0-9])$"),
// Ciena interface format
regexp.MustCompile(`\.OSC(-[0-9]+)?-(?P<slot>[0-9]+)-(?P<port>[0-9]+)$`),
}
// ParseCircuitID will parse dhcpv4 packet and return CircuitID info
func ParseCircuitID(packet *dhcpv4.DHCPv4) (*CircuitID, error) {
// CircuitId info is stored as sub-option field in RelayAgentInformationOption
relayOptions := packet.RelayAgentInfo()
if relayOptions == nil {
return nil, fmt.Errorf("No relay agent information option found in the dhcpv4 pkt")
}
// As per RFC 3046 sub-Option 1 is circuit-id. Look at 2.0 section in that RFC
// https://tools.ietf.org/html/rfc3046
circuitIdStr := string(relayOptions.Options.Get(dhcpv4.AgentCircuitIDSubOption))
if circuitIdStr == "" {
return nil, fmt.Errorf("no circuit-id suboption found in dhcpv4 packet")
}
circuitId, err := matchCircuitID(circuitIdStr)
if err != nil {
return nil, err
}
return circuitId, nil
}
func matchCircuitID(circuitIdStr string) (*CircuitID, error) {
for _, re := range circuitRegexs {
match := re.FindStringSubmatch(circuitIdStr)
if len(match) == 0 {
continue
}
c := CircuitID{}
for i, k := range re.SubexpNames() {
switch k {
case "slot":
c.Slot = match[i]
case "mod":
c.Module = match[i]
case "port":
c.Port = match[i]
case "subport":
c.SubPort = match[i]
case "vlan":
c.Vlan = match[i]
}
}
return &c, nil
}
return nil, fmt.Errorf("Unable to match circuit id : %s with listed regexes of interface types", circuitIdStr)
}
// FormatCircuitID is the CircuitID format we send in our Bootfile URL for ZTP devices
func (c *CircuitID) FormatCircuitID() string {
return fmt.Sprintf("%v,%v,%v,%v,%v", c.Slot, c.Module, c.Port, c.SubPort, c.Vlan)
}
|