-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSimApi.py
executable file
·236 lines (201 loc) · 9.04 KB
/
SimApi.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
# Copyright (c) 2015, Arista Networks, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# Neither the name of Arista Networks nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ARISTA NETWORKS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# pylint: disable=C0103
# pylint: disable=F0401
# pylint: disable=R0912
import cjson
import imp
import re
import time
import traceback
import jsonrpclib
import CapiAaa
import CapiConstants
import CapiRequestContext
EAPI_SOCKET = 'unix:/var/run/command-api.sock'
SIM_API_CONFIG_FILE = '/persist/sys/simAPI/simApi.json'
SIM_API_PLUGINS_DIR = '/persist/sys/simAPI/plugins'
# Regular expression for comments
COMMENT_RE = re.compile(
r'(^)?[^\S\n]*/(?:\*(.*?)\*/[^\S\n]*|/[^\n]*)($)?',
re.DOTALL | re.MULTILINE
)
class PluginError(Exception):
pass
class MissingConfigError(Exception):
pass
class InvalidDelayError(Exception):
pass
def load_config():
with open(SIM_API_CONFIG_FILE) as config:
content = config.read()
match = COMMENT_RE.search(content)
while match:
content = content[:match.start()] + content[match.end():]
match = COMMENT_RE.search(content)
# JSON only accepts double quotes
content = content.replace("'", '"')
return cjson.decode(content)
class SimApiApplication(object):
def __init__(self):
self.aaa_manager = CapiAaa.AaaManager('ar')
self.server = jsonrpclib.Server(EAPI_SOCKET)
def __call__(self, request, start_response):
(code, content_type,
headers, body) = self.processRequest(request)
headers = headers if headers else []
headers.append(('Content-type', content_type))
if body:
headers.append(('Content-length', str(len(body))))
start_response(code,
CapiConstants.ServerConstants.DEFAULT_HEADERS +
headers)
return [body]
def processCommand(self, cmd, config, params):
if type(cmd) != str:
return None
if 'cmds' in config:
for command, value in config['cmds'].iteritems():
if cmd == command:
if 'result' not in value and 'plugin' not in value:
raise MissingConfigError(
'"%s" matched "%s", but result/plugin is missing '
'from config' % (cmd, command))
result = None
if 'plugin' in value:
try:
plugin = imp.load_source(
value['plugin'],
'%s/%s' % (SIM_API_PLUGINS_DIR,
value['plugin']))
result = plugin.main(self.server, cmd, params)
except Exception as exc:
raise PluginError(
'Failed to load plugin %s: %s' %
(value['plugin'], exc))
elif 'result' in value:
result = value['result']
try:
time.sleep(int(value.get('delay', 0)))
except TypeError:
raise InvalidDelayError(
'Invalid delay value for "%s": %s' %
(command, value['delay']))
if result is None:
return {}
else:
return result
if 'regexes' in config:
for regex, value in config['regexes'].iteritems():
match = re.match(regex, cmd)
if match:
if 'result' not in value and 'plugin' not in value:
raise MissingConfigError(
'"%s" matched "%s", but result is missing '
'from config' % (cmd, regex))
result = None
if 'plugin' in value:
try:
plugin = imp.load_source(
value['plugin'],
'%s/%s' % (SIM_API_PLUGINS_DIR,
value['plugin']))
result = plugin.main(self.server, cmd, params)
except Exception as exc:
raise PluginError(
'Failed to load plugin %s: %s' %
(value['plugin'], exc))
elif 'result' in value:
result = value['result']
try:
time.sleep(int(value.get('delay', 0)))
except TypeError:
raise InvalidDelayError(
'Invalid delay value for "%s": %s' %
(regex, value['delay']))
if result is None:
return {}
for index, group in enumerate(match.groups()):
result = eval(str(result).replace('$%d' % (index + 1),
group))
return result
return None
def processRequest(self, request):
'''Common implementation of all HTTP requests.'''
try:
config = load_config()
with CapiRequestContext.RequestContext(
request,
self.aaa_manager) as request:
request = cjson.decode(request.getRequestContent())
assert request['method'] == 'runCmds', \
'Only runCmds is mocked'
result = []
req_format = 'json'
params = request['params']
if isinstance(params, list):
cmds = params[1]
if len(params) == 3:
req_format = params[2]
else:
cmds = params['cmds']
if 'format' in params:
req_format = params['format']
elif len(params) == 3:
req_format = params[-1]
for index, cmd in enumerate(cmds):
cmd_result = self.processCommand(cmd, config, params)
if cmd_result is not None:
result.append(cmd_result)
else:
try:
output = self.server.runCmds(
1, cmds[:index+1], req_format)[-1]
result.append(output)
except jsonrpclib.ProtocolError as exc:
result = cjson.encode({
'jsonrpc': '2.0',
'error': {'code': exc.message[0],
'message': exc.message[1]},
'id': request['id']})
return ('1002 invalid command', 'application/json',
None, result)
result = cjson.encode({'jsonrpc': '2.0',
'result': result,
'id': request['id']})
return ('200 OK', 'application/json', None, result)
except CapiRequestContext.HttpException as exc:
return ('%s %s' % (exc.code, exc.name), exc.content_type,
exc.additionalHeaders,
exc.message)
except Exception as exc:
traceback.print_exc()
return ('500 Internal Server Error', 'text/html', None,
exc.message)