forked from noxrepo/pox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pox.py
executable file
·379 lines (327 loc) · 10.3 KB
/
pox.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
#!/bin/bash -
# Copyright 2011 James McCauley
#
# This file is part of POX.
#
# POX is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# POX is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with POX. If not, see <http://www.gnu.org/licenses/>.
# If you have PyPy 1.6+ in a directory called pypy alongside pox.py, we
# use it.
# Otherwise, we try to use a Python interpreter called python2.7, which
# is a good idea if you're using Python from MacPorts, for example.
# We fall back to just "python" and hope that works.
''''echo -n
export OPT="-O"
export FLG=""
if [[ "$(basename $0)" == "debug-pox.py" ]]; then
export OPT=""
export FLG="--debug"
fi
if [ -x pypy/bin/pypy ]; then
exec pypy/bin/pypy $OPT "$0" $FLG "$@"
fi
if [ "$(type -P python2.7)" != "" ]; then
exec python2.7 $OPT "$0" $FLG "$@"
fi
exec python $OPT "$0" $FLG "$@"
'''
import logging
from pox.core import core
import pox.openflow
import pox.openflow.of_01
# Turn on extra info for event exceptions
import pox.lib.revent as revent
import logging
import logging.config
import os
import sys
options = None
def doImport (name):
if name in sys.modules:
return name
def showFail ():
import traceback
traceback.print_exc()
print "Could not import module:",name
try:
__import__(name, globals(), locals())
return name
except ImportError:
# This can be because the one we tried to import wasn't found OR
# because one IT tried to import wasn't found. Try to sort this...
s = str(sys.exc_info()[1]).rsplit(" ", 1)[1]
if name.endswith(s):
# It was the one we tried to import itself.
#print s,"|",name
return True
else:
showFail()
return False
except:
showFail()
return False
def doLaunch ():
import sys, os
# Add pox directory to path
sys.path.append(os.path.abspath(os.path.join(sys.path[0], 'pox')))
sys.path.append(os.path.abspath(os.path.join(sys.path[0], 'ext')))
component_order = []
components = {}
#curargs = None
curargs = {}
global options
options = curargs
for arg in sys.argv[1:]:
if not arg.startswith("--"):
pre_startup()
if arg not in components:
components[arg] = []
curargs = {}
components[arg].append(curargs)
component_order.append(arg)
else:
arg = arg[2:].split("=", 1)
if len(arg) == 1: arg.append(True)
curargs[arg[0]] = arg[1]
if options.get("verbose"):
logging.getLogger().setLevel(logging.DEBUG)
inst = {}
for name in component_order:
cname = name
inst[name] = inst.get(name, -1) + 1
params = components[name][inst[name]]
name = name.split(":", 1)
launch = name[1] if len(name) == 2 else "launch"
name = name[0]
r = doImport("pox." + name)
if r is False: return False
if r is True:
r = doImport(name)
if r is False: return False
if r is True:
print "Module", name, "not found"
return False
name = r
#print ">>",name
if launch in sys.modules[name].__dict__:
f = sys.modules[name].__dict__[launch]
if f.__class__ is not doLaunch.__class__:
print launch, "in", name, "isn't a function!"
return False
multi = False
if f.func_code.co_argcount > 0:
if f.func_code.co_varnames[f.func_code.co_argcount-1] == '__INSTANCE__':
multi = True
params['__INSTANCE__'] = (inst[cname], len(components[cname]),
inst[cname] + 1 == len(components[cname]))
if multi == False and len(components[cname]) != 1:
print name, "does not accept multiple instances"
return False
try:
f(**params)
except TypeError as exc:
instText = ''
if inst[cname] > 0:
instText = "instance {0} of ".format(inst[cname] + 1)
print "Error executing {2}{0}.{1}:".format(name,launch,instText)
import inspect
if inspect.currentframe() is sys.exc_info()[2].tb_frame:
# Error is with calling the function
# Try to give some useful feedback
import traceback
if options.get("verbose"):
traceback.print_exc()
else:
exc = sys.exc_info()[0:2]
print ''.join(traceback.format_exception_only(*exc)),
print
EMPTY = "<Unspecified>"
code = f.__code__
argcount = code.co_argcount
argnames = code.co_varnames[:argcount]
defaults = list((f.func_defaults) or [])
defaults = [EMPTY] * (argcount - len(defaults)) + defaults
args = {}
for n, a in enumerate(argnames):
args[a] = [EMPTY,EMPTY]
if n < len(defaults):
args[a][0] = defaults[n]
if a in params:
args[a][1] = params[a]
del params[a]
if '__INSTANCE__' in args:
del args['__INSTANCE__']
if f.__doc__ is not None:
print "Documentation for {0}:".format(name)
doc = f.__doc__.split("\n")
#TODO: only strip the same leading space as was on the first
# line
doc = map(str.strip, doc)
print '',("\n ".join(doc)).strip()
#print params
#print args
print "Parameters for {0}:".format(name)
if len(args) == 0:
print " None."
else:
print " {0:25} {1:25} {2:25}".format("Name", "Default",
"Active")
print " {0:25} {0:25} {0:25}".format("-" * 15)
for k,v in args.iteritems():
print " {0:25} {1:25} {2:25}".format(k,v[0],
v[1] if v[1] is not EMPTY else v[0])
if len(params):
print "This component does not have a parameter named " + \
"'{0}'.".format(params.keys()[0])
return False
missing = [k for k,x in args.iteritems()
if x[1] is EMPTY and x[0] is EMPTY]
if len(missing):
print "You must specify a value for the '{0}' parameter.".format(
missing[0])
return False
return False
else:
# Error is inside the function
raise
elif len(params) > 0 or launch is not "launch":
print ("Module %s has no %s(), but it was specified or passed arguments"
% (name, launch))
return False
# If no options, might not have done pre_startup yet.
pre_startup()
return True
cli = True
verbose = False
enable_openflow = True
debug = False
custom_log_config = None
def _opt_no_openflow (v):
global enable_openflow
enable_openflow = str(v).lower() != "true"
def _opt_debug (v):
global debug
debug = str(v).lower() == "true"
def _opt_no_cli (v):
if str(v).lower() == "true":
global cli
cli = False
def _opt_verbose (v):
global verbose
verbose = str(v).lower() == "true"
def _opt_log_config (v):
global custom_log_config
custom_log_config = str(v)
def process_options ():
for k,v in options.iteritems():
rk = '_opt_' + k.replace("-", "_")
if rk in globals():
globals()[rk](v)
else:
print "Unknown option:", k
import sys
sys.exit(1)
_done_pre_startup = False
def pre_startup ():
global _done_pre_startup
if _done_pre_startup: return True
_done_pre_startup = True
process_options()
core.debug = debug
if enable_openflow:
pox.openflow.connection_arbiter.launch() # Default OpenFlow launch
if custom_log_config:
setup_logging(custom_log_config, True)
return True
def post_startup ():
if enable_openflow:
pox.openflow.of_01.launch() # Usually, we launch of_01
def _monkeypatch_console ():
"""
The readline in pypy (which is the readline from pyrepl) turns off output
postprocessing, which disables normal NL->CRLF translation. An effect of
this is that output *from other threads* (like log messages) which try to
print newlines end up just getting linefeeds and the output is all stair-
stepped. We monkeypatch the function in pyrepl which disables OPOST to turn
OPOST back on again. This doesn't immediately seem to break anything in the
simple cases, and makes the console reasonable to use in pypy.
"""
try:
import termios
import sys
import pyrepl.unix_console
uc = pyrepl.unix_console.UnixConsole
old = uc.prepare
def prep (self):
old(self)
f = sys.stdin.fileno()
a = termios.tcgetattr(f)
a[1] |= 1 # Turn on postprocessing (OPOST)
termios.tcsetattr(f, termios.TCSANOW, a)
uc.prepare = prep
except:
pass
def setup_logging(log_config="logging.cfg", fail_if_non_existent=False):
if os.path.exists(log_config):
logging.config.fileConfig(log_config)
else:
if fail_if_non_existent:
raise IOError("Could not find logging config file: %s" % log_config)
_default_log_handler = logging.StreamHandler()
_default_log_handler.setFormatter(logging.Formatter(logging.BASIC_FORMAT))
logging.getLogger().addHandler(_default_log_handler)
logging.getLogger().setLevel(logging.DEBUG)
def main ():
setup_logging()
_monkeypatch_console()
try:
if doLaunch():
post_startup()
core.goUp()
else:
return
except SystemExit:
return
except:
import traceback
traceback.print_exc()
return
if cli:
print "This program comes with ABSOLUTELY NO WARRANTY. This program is " \
"free software,"
print "and you are welcome to redistribute it under certain conditions."
print "Type 'help(pox.license)' for details."
import pox.license
import time
time.sleep(1)
import code
import sys
sys.ps1 = "POX> "
sys.ps2 = " ... "
l = dict(locals())
l['core'] = core
code.interact('Ready.', local=l)
else:
try:
import time
while True:
time.sleep(5)
except:
pass
#core.scheduler._thread.join() # Sleazy
try:
core.quit()
except:
pass
if __name__ == '__main__':
main()