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
103
104
105
106
107
108
109
110
111
112
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
import re
from discover.find_links import FindLinks
from utils.util import decode_aci_dn
class FindLinksForPnics(FindLinks):
def __init__(self):
super().__init__()
def add_links(self):
pnics = self.inv.find_items({
"environment": self.get_env(),
"type": "host_pnic"
})
self.log.info("adding links of type: host_pnic-network, "
"host_pnic-switch_pnic")
for pnic in pnics:
self.add_pnic_network_links(pnic)
self.add_host_pnic_to_switch_pnic_link(pnic)
pnics = self.inv.find_items({
"environment": self.get_env(),
"type": "switch_pnic",
"role": "uplink"
})
self.log.info("adding links of type: switch_pnic-switch_pnic")
for pnic in pnics:
self.add_switch_to_switch_link(pnic)
def add_pnic_network_links(self, pnic):
host = pnic["host"]
# find ports for that host, and fetch just the network ID
ports = self.inv.find_items({
"environment": self.get_env(),
"type": "port",
"binding:host_id": host
}, {"network_id": 1, "id": 1})
networks = {}
for port in ports:
networks[port["network_id"]] = 1
for network_id in networks.keys():
network = self.inv.get_by_id(self.get_env(), network_id)
if not network:
return
source = pnic["_id"]
source_id = pnic["id"]
target = network["_id"]
target_id = network["id"]
link_type = "host_pnic-network"
link_name = "Segment-" + str(network["provider:segmentation_id"]) \
if "provider:segmentation_id" in network \
else "Segment-None"
state = "up" if pnic["Link detected"] == "yes" else "down"
link_weight = 0 # TBD
attributes = {"network": target_id}
if "port_id" in pnic:
attributes['source_label'] = "port-" + pnic["port_id"]
self.create_link(self.get_env(),
source, source_id, target, target_id,
link_type, link_name, state, link_weight,
host=host,
extra_attributes=attributes)
def add_host_pnic_to_switch_pnic_link(self, host_pnic):
switch_pnic = self.inv.find_items({
"environment": self.get_env(),
"type": "switch_pnic",
"mac_address": host_pnic["mac_address"]},
get_single=True)
if not switch_pnic:
return
source = host_pnic["_id"]
source_id = host_pnic["id"]
target = switch_pnic["_id"]
target_id = switch_pnic["id"]
link_type = "host_pnic-switch_pnic"
link_name = "{}-{}".format(host_pnic['host'],
switch_pnic['parent_id'])
state = "up" if host_pnic["Link detected"] == "yes" else "down"
link_weight = 0 # TBD
self.create_link(self.get_env(),
source, source_id, target, target_id,
link_type, link_name, state, link_weight,
host=host_pnic['host'])
def add_switch_to_switch_link(self, leaf_pnic):
spine_pnic = self.inv.get_by_id(self.get_env(),
leaf_pnic['connected_to'])
if not spine_pnic:
return
source = leaf_pnic["_id"]
source_id = leaf_pnic["id"]
target = spine_pnic["_id"]
target_id = spine_pnic["id"]
link_type = "switch_pnic-switch_pnic"
if_id_matches = re.search("(eth.*)$", source_id)
link_name = decode_aci_dn(if_id_matches.group(1))
state = "up" # TBD
link_weight = 0 # TBD
self.create_link(self.get_env(),
source, source_id, target, target_id,
link_type, link_name, state, link_weight,
switch=leaf_pnic['switch'])
|