-
Notifications
You must be signed in to change notification settings - Fork 18
/
birdagent.py
296 lines (267 loc) · 11 KB
/
birdagent.py
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#!/usr/bin/python
#
# Copyright (c) 2016 Travelping GmbH <copyright@travelping.com>
# by Tobias Hintze <tobias.hintze@travelping.com>
#
# This code is inspired and partially copied from
# https://r3blog.nl/index.php/archives/2011/02/24/bgp4-mib-support-for-bird/
# That original code does not clearly declare any license.
#
# This code also uses python-agentx library licensed under GPLv3
# (see agentx.py for details)
#
# So this code is licensed under the GPLv3 (see COPYING.GPLv3).
#
"""
birdagent - agentx code for the bird routing daemon
used by bird_bgp - for the bgp4-mib
used by bird_ospf - for the ospf-mib (not implemented)
"""
from adv_agentx import AgentX
from adv_agentx import SnmpGauge32,SnmpCounter32,SnmpIpAddress
import time,re,subprocess,glob
class BirdAgent:
def __init__(self, cfgfile, birdcli, netstatcmd="netstat -na"):
self.cfgfile = cfgfile
self.birdcli = birdcli
self.netstatcmd = netstatcmd
bgp_states = {
"idle": 1,
"connect": 2,
"active": 3,
"opensent": 4,
"openconfirm": 5,
"established": 6,
}
_re_config_include = re.compile("^include\s*\"(/[^\"]*)\".*$")
_re_config_bgp_proto_begin = re.compile("^protocol bgp ([a-zA-Z0-9_]+) .* \{$")
_re_config_local_as = re.compile("local ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+) as ([0-9]+);")
_re_config_bgp_holdtime = re.compile("hold time ([0-9]+);")
_re_config_bgp_keepalive = re.compile("keepalive time ([0-9]+);")
_re_config_remote_peer = re.compile("neighbor ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+) as ([0-9]+);")
_re_config_timeformat = re.compile("\s*timeformat\s+protocol\s*\"%s\"\s*;")
_re_config_proto_end = re.compile("^\}$")
_re_birdcli_bgp_begin = re.compile("([a-zA-Z0-9_]+) *BGP * [a-zA-Z0-9_]+ * [a-zA-Z0-9]+ * ([a-zA-Z0-9:]+) *")
_re_birdcli_bgp_peer = {
"bgpPeerIdentifier": re.compile("Neighbor ID:.* ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)"),
"bgpPeerState": re.compile("BGP state:.* ([a-zA-Z]+)"),
"bgpPeerLocalAddr": re.compile("Source address:.* ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)"),
"bgpPeerRemoteAddr": re.compile("Neighbor address:.* ([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)"),
"bgpPeerRemoteAs": re.compile("Neighbor AS:.* ([0-9]+)"),
"bgpPeerInUpdates": re.compile("Import updates:\ +([0-9]+) .*[0-9\-]+.*[0-9\-]+.*[0-9\-]+.*[0-9\-]+"),
"bgpPeerOutUpdates": re.compile("Export updates:\ +([0-9]+) .*[0-9\-]+.*[0-9\-]+.*[0-9\-]+.*[0-9\-]+"),
"bgpPeerHoldTime": re.compile("Hold timer:.* ([0-9]+)/[0-9]+"),
"bgpPeerHoldTimeConfigured": re.compile("Hold timer:.* [0-9]+/([0-9]+)"),
"bgpPeerKeepAlive": re.compile("Keepalive timer:.* ([0-9]+)/[0-9]+"),
"bgpPeerKeepAliveConfigured": re.compile("Keepalive timer:.* [0-9]+/([0-9]+)"),
"bgpPeerLastError": re.compile("Last error:\ +[a-zA-Z0-9-_\ ]+$")
}
_re_birdcli_bgp_end = re.compile("^$")
_re_birdcli_ospf_neighbor = re.compile("^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s+([0-9]+)\s+(\S+)\s+(\S+)\s+(\S+)\s+([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)")
_re_netstat = re.compile("^tcp\s+[0-9]+\s+[0-9]+\s+([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+):([0-9]+)\s+([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+):([0-9]+)\s+ESTABLISHED")
bgp_keys = [
'bgpPeerIdentifier',
'bgpPeerState',
'bgpPeerAdminStatus',
'bgpPeerNegotiatedVersion',
'bgpPeerLocalAddr',
'bgpPeerLocalPort',
'bgpPeerRemoteAddr',
'bgpPeerRemotePort',
'bgpPeerRemoteAs',
'bgpPeerInUpdates',
'bgpPeerOutUpdates',
'bgpPeerInTotalMessages',
'bgpPeerOutTotalMessages',
'bgpPeerLastError',
'bgpPeerFsmEstablishedTransitions',
'bgpPeerFsmEstablishedTime',
'bgpPeerConnectRetryInterval',
'bgpPeerHoldTime',
'bgpPeerKeepAlive',
'bgpPeerHoldTimeConfigured',
'bgpPeerKeepAliveConfigured',
'bgpPeerMinASOriginationInterval',
'bgpPeerMinRouteAdvertisementInterval',
'bgpPeerInUpdateElapsedTime',
]
bgp_defaults = {
'bgpPeerIdentifier': SnmpIpAddress("0.0.0.0"),
'bgpPeerLocalAddr': SnmpIpAddress("0.0.0.0"),
'bgpPeerHoldTime': 0,
'bgpPeerHoldTimeConfigured': 0,
'bgpPeerKeepAlive': 0,
'bgpPeerKeepAliveConfigured': 0,
'bgpPeerState': 1,
'bgpPeerInUpdates': SnmpCounter32(0),
'bgpPeerOutUpdates': SnmpCounter32(0),
'bgpPeerAdminStatus': 2,
'bgpPeerConnectRetryInterval': 0,
'bgpPeerFsmEstablishedTime': SnmpGauge32(0),
'bgpPeerFsmEstablishedTransitions': SnmpCounter32(0),
'bgpPeerInTotalMessages': SnmpCounter32(0),
'bgpPeerInUpdateElapsedTime': SnmpGauge32(0),
'bgpPeerLastError': '0',
'bgpPeerMinASOriginationInterval': 15,
'bgpPeerMinRouteAdvertisementInterval': 30,
'bgpPeerNegotiatedVersion': 0,
'bgpPeerOutTotalMessages': SnmpCounter32(0),
}
@staticmethod
def ipCompare(ip1, ip2):
lst1 = "%3s.%3s.%3s.%3s" % tuple(ip1.split("."))
lst2 = "%3s.%3s.%3s.%3s" % tuple(ip2.split("."))
return cmp(lst1, lst2)
@staticmethod
def combinedConfigLines(filename):
"""
yield the whole bird configuration file line by line;
all include-statements are resolved/unrolled
"""
with open(filename, "r") as bird_conf:
for line in bird_conf:
line = line.strip()
match = BirdAgent._re_config_include.search(line)
if not match:
yield line
else:
for subconf in glob.glob(match.group(1)):
yield "# subconf: %s (from %s)"%(subconf, line)
for subline in BirdAgent.combinedConfigLines(subconf):
yield subline
@staticmethod
def bgpKeys():
return BirdAgent.bgp_keys
def getOSPFState(self, ospf_instance):
"""
fetch OSPF-related state from:
* parsing `birdc show ospf neighbors $ospf` output
"""
# "with"-context-manager for Popen not available in python < 3.2
birdc = subprocess.Popen([self.birdcli, "show", "ospf", "neighbors", ospf_instance], \
stdout=subprocess.PIPE)
output = birdc.communicate()[0]
if birdc.returncode != 0:
print("ERROR: bird-CLI (querying ospf neighbors) %s failed: %i"%(self.birdcli, birdc.returncode))
neighbors = {}
for line in output.split("\n"):
match = self._re_birdcli_ospf_neighbor.search(line)
if match:
rtrid, pri, state, deadtime, iface, rtrip = match.groups()
neighbors[rtrid] = {}
neighbors[rtrid]["pri"] = int(pri)
neighbors[rtrid]["state"] = state
neighbors[rtrid]["deadtime"] = deadtime
neighbors[rtrid]["iface"] = iface
neighbors[rtrid]["rtrip"] = rtrip
return {"ospf-neighbors":neighbors}
def getBGPState(self):
"""
fetch BGP-related state from:
* parsing configuration file
* parsing `birdc show protocols all` output
* parsing `netstat` output
"""
current_time = int(time.time())
# fetch some data from the configuration:
cfg = {}
cfg["bgp-peers"] = {}
proto = None
for line in BirdAgent.combinedConfigLines(self.cfgfile):
if self._re_config_timeformat:
cfg["timeformat"] = True
match = self._re_config_bgp_proto_begin.search(line)
if match:
proto = match.group(1)
cfg["bgp-peers"][proto] = {}
if proto:
match = self._re_config_local_as.search(line)
if match:
cfg["bgp-peers"][proto]["bgpPeerLocalAddr"] = SnmpIpAddress(match.group(1))
cfg["bgp-peers"][proto]["bgpPeerLocalAs"] = int(match.group(2))
if not cfg.has_key("bgpLocalAs"):
cfg["bgpLocalAs"] = int(match.group(2))
elif cfg["bgpLocalAs"] != int(match.group(2)):
print("WARNING: multiple local AS: %i/%i"% \
(cfg["bgpLocalAs"],int(match.group(2))))
match = self._re_config_remote_peer.search(line)
if match:
cfg["bgp-peers"][proto]["bgpPeerRemoteAddr"] = SnmpIpAddress(match.group(1))
cfg["bgp-peers"][proto]["bgpPeerRemoteAs"] = int(match.group(2))
match = self._re_config_bgp_holdtime.search(line)
if match:
cfg["bgp-peers"][proto]["bgpPeerHoldTimeConfigured"] = int(match.group(1))
match = self._re_config_bgp_keepalive.search(line)
if match:
cfg["bgp-peers"][proto]["bgpPeerKeepAliveConfigured"] = int(match.group(1))
if self._re_config_proto_end.search(line):
proto = None
if not cfg.has_key("timeformat"):
print("WARNING: timeformat not configured for this agent's use.")
state = cfg.copy()
bgp_proto = None
ospf_proto = None
# "with"-context-manager for Popen not available in python < 3.2
birdc = subprocess.Popen([self.birdcli, "show", "protocols", "all"], \
stdout=subprocess.PIPE)
output = birdc.communicate()[0]
if birdc.returncode != 0:
print("ERROR: bird-CLI %s failed: %i"%(self.birdcli, birdc.returncode))
for line in output.split("\n"):
match = self._re_birdcli_bgp_begin.search(line)
if match:
bgp_proto = match.group(1)
state["bgp-peers"][bgp_proto] = {}
timestamp = int(match.group(2))
if not state["bgp-peers"].has_key(bgp_proto):
print("WARNING: proto \"%s\" not in config, skipping"%bgp_proto)
continue
state["bgp-peers"][bgp_proto]["bgpPeerFsmEstablishedTime"] = SnmpGauge32(current_time - timestamp)
if bgp_proto:
for peerprop_name, peerprop_re in self._re_birdcli_bgp_peer.items():
match = peerprop_re.search(line)
if match:
if peerprop_name == 'bgpPeerState':
state["bgp-peers"][bgp_proto][peerprop_name] = \
self.bgp_states[match.group(1).lower()]
elif peerprop_name in [
'bgpPeerIdentifier',
'bgpPeerLocalAddr',
'bgpPeerRemoteAddr']:
state["bgp-peers"][bgp_proto][peerprop_name] = SnmpIpAddress(match.group(1))
elif peerprop_name in [
'bgpPeerInUpdates',
'bgpPeerOutUpdates']:
state["bgp-peers"][bgp_proto][peerprop_name] = SnmpCounter32(match.group(1))
else:
state["bgp-peers"][bgp_proto][peerprop_name] = int(match.group(1))
if self._re_birdcli_bgp_end.search(line):
bgp_proto = None
# use netstat to query for tcp:179 connections
bgp_sessions = {}
netstat = subprocess.Popen( \
"%s | grep '^tcp.*:179.*ESTABLISHED'"%self.netstatcmd,
shell=True, stdout=subprocess.PIPE)
for line in netstat.communicate()[0].split("\n"):
match = self._re_netstat.search(line)
if not match:
continue
# key 4-tuples by remote ip: src-addr, src-port, dst-addr, dst-port
bgp_sessions[match.group(3)] = match.groups()
# now match the tcp:179 4-tuples with bgp-state,
# and enrich state by local+remote ports
for proto in state["bgp-peers"].keys():
state["bgp-peers"][proto]["bgpPeerLocalPort"] = 0
state["bgp-peers"][proto]["bgpPeerRemotePort"] = 0
if not bgp_sessions.has_key(state["bgp-peers"][proto]["bgpPeerRemoteAddr"]):
# print("INFO: proto %s has no bgp session."%proto)
continue
srcip,srcport,dstip,dstport = bgp_sessions[state["bgp-peers"][proto]["bgpPeerRemoteAddr"]]
if srcip != state["bgp-peers"][proto]["bgpPeerLocalAddr"] or \
dstip != state["bgp-peers"][proto]["bgpPeerRemoteAddr"]:
print("WARNING: proto %s has invalid BGP session (%s / %s)"%(proto, srcip, dstip))
continue
state["bgp-peers"][proto]["bgpPeerLocalPort"] = int(srcport)
state["bgp-peers"][proto]["bgpPeerRemotePort"] = int(dstport)
return state
# vim:ts=4:sw=4:noexpandtab