onos.py
15 KB
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
#!/usr/bin/python
"""
onos.py: ONOS cluster and control network in Mininet
With onos.py, you can use Mininet to create a complete
ONOS network, including an ONOS cluster with a modeled
control network as well as the usual data nework.
This is intended to be useful for distributed ONOS
development and testing in the case that you require
a modeled control network.
Invocation (using OVS as default switch):
mn --custom onos.py --controller onos,3 --topo torus,4,4
Or with the user switch (or CPqD if installed):
mn --custom onos.py --controller onos,3 \
--switch onosuser --topo torus,4,4
Currently you meed to use a custom switch class
because Mininet's Switch() class does't (yet?) handle
controllers with multiple IP addresses directly.
The classes may also be imported and used via Mininet's
python API.
Bugs/Gripes:
- We need --switch onosuser for the user switch because
Switch() doesn't currently handle Controller objects
with multiple IP addresses.
- ONOS startup and configuration is painful/undocumented.
- Too many ONOS environment vars - do we need them all?
- ONOS cluster startup is very, very slow. If Linux can
boot in 4 seconds, why can't ONOS?
- It's a pain to mess with the control network from the
CLI
- Setting a default controller for Mininet should be easier
"""
from mininet.node import Controller, OVSSwitch, UserSwitch
from mininet.nodelib import LinuxBridge
from mininet.net import Mininet
from mininet.topo import SingleSwitchTopo, Topo
from mininet.log import setLogLevel, info
from mininet.cli import CLI
from mininet.util import quietRun, waitListening
from mininet.clean import killprocs
from mininet.examples.controlnet import MininetFacade
from os import environ
from os.path import dirname, join, isfile
from sys import argv
from glob import glob
import time
### ONOS Environment
KarafPort = 8101 # ssh port indicating karaf is running
GUIPort = 8181 # GUI/REST port
OpenFlowPort = 6653 # OpenFlow port
def defaultUser():
"Return a reasonable default user"
if 'SUDO_USER' in environ:
return environ[ 'SUDO_USER' ]
try:
user = quietRun( 'who am i' ).split()[ 0 ]
except:
user = 'nobody'
return user
# Module vars, initialized below
HOME = ONOS_ROOT = KARAF_ROOT = ONOS_HOME = ONOS_USER = None
ONOS_APPS = ONOS_WEB_USER = ONOS_WEB_PASS = ONOS_TAR = None
def initONOSEnv():
"""Initialize ONOS environment (and module) variables
This is ugly and painful, but they have to be set correctly
in order for the onos-setup-karaf script to work.
nodes: list of ONOS nodes
returns: ONOS environment variable dict"""
# pylint: disable=global-statement
global HOME, ONOS_ROOT, KARAF_ROOT, ONOS_HOME, ONOS_USER
global ONOS_APPS, ONOS_WEB_USER, ONOS_WEB_PASS
env = {}
def sd( var, val ):
"Set default value for environment variable"
env[ var ] = environ.setdefault( var, val )
return env[ var ]
HOME = sd( 'HOME', environ[ 'HOME' ] )
assert HOME
ONOS_ROOT = sd( 'ONOS_ROOT', join( HOME, 'onos' ) )
KARAF_ROOT = sd( 'KARAF_ROOT',
glob( join( HOME,
'Applications/apache-karaf-*' ) )[ -1 ] )
ONOS_HOME = sd( 'ONOS_HOME', dirname( KARAF_ROOT ) )
environ[ 'ONOS_USER' ] = defaultUser()
ONOS_USER = sd( 'ONOS_USER', defaultUser() )
ONOS_APPS = sd( 'ONOS_APPS',
'drivers,openflow,fwd,proxyarp,mobility' )
# ONOS_WEB_{USER,PASS} isn't respected by onos-karaf:
environ.update( ONOS_WEB_USER='karaf', ONOS_WEB_PASS='karaf' )
ONOS_WEB_USER = sd( 'ONOS_WEB_USER', 'karaf' )
ONOS_WEB_PASS = sd( 'ONOS_WEB_PASS', 'karaf' )
return env
def updateNodeIPs( env, nodes ):
"Update env dict and environ with node IPs"
# Get rid of stale junk
for var in 'ONOS_NIC', 'ONOS_CELL', 'ONOS_INSTANCES':
env[ var ] = ''
for var in environ.keys():
if var.startswith( 'OC' ):
env[ var ] = ''
for index, node in enumerate( nodes, 1 ):
var = 'OC%d' % index
env[ var ] = node.IP()
env[ 'OCI' ] = env[ 'OCN' ] = env[ 'OC1' ]
env[ 'ONOS_INSTANCES' ] = '\n'.join(
node.IP() for node in nodes )
environ.update( env )
return env
tarDefaultPath = 'buck-out/gen/tools/package/onos-package/onos.tar.gz'
def unpackONOS( destDir='/tmp', run=quietRun ):
"Unpack ONOS and return its location"
global ONOS_TAR
environ.setdefault( 'ONOS_TAR', join( ONOS_ROOT, tarDefaultPath ) )
ONOS_TAR = environ[ 'ONOS_TAR' ]
tarPath = ONOS_TAR
if not isfile( tarPath ):
raise Exception( 'Missing ONOS tarball %s - run buck build onos?'
% tarPath )
info( '(unpacking %s)' % destDir)
cmds = ( 'mkdir -p "%s" && cd "%s" && tar xzf "%s"'
% ( destDir, destDir, tarPath) )
run( cmds, shell=True, verbose=True )
# We can use quietRun for this usually
tarOutput = quietRun( 'tar tzf "%s" | head -1' % tarPath, shell=True)
tarOutput = tarOutput.split()[ 0 ].strip()
assert '/' in tarOutput
onosDir = join( destDir, dirname( tarOutput ) )
# Add symlink to log file
run( 'cd %s; ln -s onos*/apache* karaf;'
'ln -s karaf/data/log/karaf.log log' % destDir,
shell=True )
return onosDir
### Mininet classes
def RenamedTopo( topo, *args, **kwargs ):
"""Return specialized topo with renamed hosts
topo: topo class/class name to specialize
args, kwargs: topo args
sold: old switch name prefix (default 's')
snew: new switch name prefix
hold: old host name prefix (default 'h')
hnew: new host name prefix
This may be used from the mn command, e.g.
mn --topo renamed,single,spref=sw,hpref=host"""
sold = kwargs.pop( 'sold', 's' )
hold = kwargs.pop( 'hold', 'h' )
snew = kwargs.pop( 'snew', 'cs' )
hnew = kwargs.pop( 'hnew' ,'ch' )
topos = {} # TODO: use global TOPOS dict
if isinstance( topo, str ):
# Look up in topo directory - this allows us to
# use RenamedTopo from the command line!
if topo in topos:
topo = topos.get( topo )
else:
raise Exception( 'Unknown topo name: %s' % topo )
# pylint: disable=no-init
class RenamedTopoCls( topo ):
"Topo subclass with renamed nodes"
def addNode( self, name, *args, **kwargs ):
"Add a node, renaming if necessary"
if name.startswith( sold ):
name = snew + name[ len( sold ): ]
elif name.startswith( hold ):
name = hnew + name[ len( hold ): ]
return topo.addNode( self, name, *args, **kwargs )
return RenamedTopoCls( *args, **kwargs )
class ONOSNode( Controller ):
"ONOS cluster node"
# Default karaf client location
client = '/tmp/onos1/karaf/bin/client'
def __init__( self, name, **kwargs ):
kwargs.update( inNamespace=True )
Controller.__init__( self, name, **kwargs )
self.dir = '/tmp/%s' % self.name
# Satisfy pylint
self.ONOS_HOME = '/tmp'
# pylint: disable=arguments-differ
def start( self, env ):
"""Start ONOS on node
env: environment var dict"""
env = dict( env )
self.cmd( 'rm -rf', self.dir )
self.ONOS_HOME = unpackONOS( self.dir, run=self.ucmd )
env.update( ONOS_HOME=self.ONOS_HOME )
self.updateEnv( env )
karafbin = glob( '%s/apache*/bin' % self.ONOS_HOME )[ 0 ]
onosbin = join( ONOS_ROOT, 'tools/test/bin' )
self.cmd( 'export PATH=%s:%s:$PATH' % ( onosbin, karafbin ) )
self.cmd( 'cd', self.ONOS_HOME )
self.ucmd( 'mkdir -p config && '
'onos-gen-partitions config/cluster.json' )
info( '(starting %s)' % self )
service = join( self.ONOS_HOME, 'bin/onos-service' )
self.ucmd( service, 'server 1>../onos.log 2>../onos.log'
' & echo $! > onos.pid; ln -s `pwd`/onos.pid ..' )
# pylint: enable=arguments-differ
def stop( self ):
# XXX This will kill all karafs - too bad!
self.cmd( 'pkill -HUP -f karaf.jar && wait' )
self.cmd( 'rm -rf', self.dir )
def waitStarted( self ):
"Wait until we've really started"
info( '(checking: karaf' )
while True:
status = self.ucmd( 'karaf status' ).lower()
if 'running' in status and 'not running' not in status:
break
info( '.' )
time.sleep( 1 )
info( ' ssh-port' )
waitListening( server=self, port=KarafPort )
info( ' openflow-port' )
waitListening( server=self, port=OpenFlowPort )
info( ' client' )
while True:
result = quietRun( 'echo apps -a | %s -h %s' %
( self.client, self.IP() ), shell=True )
if 'openflow' in result:
break
info( '.' )
time.sleep( 1 )
info( ')\n' )
def updateEnv( self, envDict ):
"Update environment variables"
cmd = ';'.join( 'export %s="%s"' % ( var, val )
for var, val in envDict.iteritems() )
self.cmd( cmd )
def ucmd( self, *args, **_kwargs ):
"Run command as $ONOS_USER using sudo -E -u"
if ONOS_USER != 'root': # don't bother with sudo
args = [ "sudo -E -u $ONOS_USER PATH=$PATH "
"bash -c '%s'" % ' '.join( args ) ]
return self.cmd( *args )
class ONOSCluster( Controller ):
"ONOS Cluster"
def __init__( self, *args, **kwargs ):
"""name: (first parameter)
*args: topology class parameters
ipBase: IP range for ONOS nodes
forward: default port forwarding list,
topo: topology class or instance
**kwargs: additional topology parameters"""
args = list( args )
name = args.pop( 0 )
topo = kwargs.pop( 'topo', None )
# Default: single switch with 1 ONOS node
if not topo:
topo = SingleSwitchTopo
if not args:
args = ( 1, )
if not isinstance( topo, Topo ):
topo = RenamedTopo( topo, *args, hnew='onos', **kwargs )
self.ipBase = kwargs.pop( 'ipBase', '192.168.123.0/24' )
self.forward = kwargs.pop( 'forward',
[ KarafPort, GUIPort, OpenFlowPort ] )
super( ONOSCluster, self ).__init__( name, inNamespace=False )
fixIPTables()
self.env = initONOSEnv()
self.net = Mininet( topo=topo, ipBase=self.ipBase,
host=ONOSNode, switch=LinuxBridge,
controller=None )
self.net.addNAT().configDefault()
updateNodeIPs( self.env, self.nodes() )
self._remoteControllers = []
def start( self ):
"Start up ONOS cluster"
killprocs( 'karaf.jar' )
info( '*** ONOS_APPS = %s\n' % ONOS_APPS )
self.net.start()
for node in self.nodes():
node.start( self.env )
info( '\n' )
self.configPortForwarding( ports=self.forward, action='A' )
self.waitStarted()
return
def waitStarted( self ):
"Wait until all nodes have started"
startTime = time.time()
for node in self.nodes():
info( node )
node.waitStarted()
info( '*** Waited %.2f seconds for ONOS startup' %
( time.time() - startTime ) )
def stop( self ):
"Shut down ONOS cluster"
self.configPortForwarding( ports=self.forward, action='D' )
for node in self.nodes():
node.stop()
self.net.stop()
def nodes( self ):
"Return list of ONOS nodes"
return [ h for h in self.net.hosts if isinstance( h, ONOSNode ) ]
def configPortForwarding( self, ports=[], intf='eth0', action='A' ):
"""Start or stop ports on intf to all nodes
action: A=add/start, D=delete/stop (default: A)"""
for port in ports:
for index, node in enumerate( self.nodes() ):
ip, inport = node.IP(), port + index
# Configure a destination NAT rule
cmd = ( 'iptables -t nat -{action} PREROUTING -t nat '
'-i {intf} -p tcp --dport {inport} '
'-j DNAT --to-destination {ip}:{port}' )
self.cmd( cmd.format( **locals() ) )
class ONOSSwitchMixin( object ):
"Mixin for switches that connect to an ONOSCluster"
def start( self, controllers ):
"Connect to ONOSCluster"
self.controllers = controllers
assert ( len( controllers ) is 1 and
isinstance( controllers[ 0 ], ONOSCluster ) )
clist = controllers[ 0 ].nodes()
return super( ONOSSwitchMixin, self ).start( clist )
class ONOSOVSSwitch( ONOSSwitchMixin, OVSSwitch ):
"OVSSwitch that can connect to an ONOSCluster"
pass
class ONOSUserSwitch( ONOSSwitchMixin, UserSwitch):
"UserSwitch that can connect to an ONOSCluster"
pass
### Ugly utility routines
def fixIPTables():
"Fix LinuxBridge warning"
for s in 'arp', 'ip', 'ip6':
quietRun( 'sysctl net.bridge.bridge-nf-call-%stables=0' % s )
### Test code
def test( serverCount ):
"Test this setup"
setLogLevel( 'info' )
net = Mininet( topo=SingleSwitchTopo( 3 ),
controller=[ ONOSCluster( 'c0', serverCount ) ],
switch=ONOSOVSSwitch )
net.start()
net.waitConnected()
CLI( net )
net.stop()
### CLI Extensions
OldCLI = CLI
class ONOSCLI( OldCLI ):
"CLI Extensions for ONOS"
prompt = 'mininet-onos> '
def __init__( self, net, **kwargs ):
c0 = net.controllers[ 0 ]
if isinstance( c0, ONOSCluster ):
net = MininetFacade( net, cnet=c0.net )
OldCLI.__init__( self, net, **kwargs )
def do_onos( self, line ):
"Send command to ONOS CLI"
c0 = self.mn.controllers[ 0 ]
if isinstance( c0, ONOSCluster ):
# cmdLoop strips off command name 'onos'
if line.startswith( ':' ):
line = 'onos' + line
cmd = 'onos1 client -h onos1 ' + line
quietRun( 'stty -echo' )
self.default( cmd )
quietRun( 'stty echo' )
def do_wait( self, line ):
"Wait for switches to connect"
self.mn.waitConnected()
def do_balance( self, line ):
"Balance switch mastership"
self.do_onos( ':balance-masters' )
def do_log( self, line ):
"Run tail -f /tmp/onos1/log on onos1; press control-C to stop"
self.default( 'onos1 tail -f /tmp/onos1/log' )
### Exports for bin/mn
CLI = ONOSCLI
controllers = { 'onos': ONOSCluster, 'default': ONOSCluster }
# XXX Hack to change default controller as above doesn't work
findController = lambda: ONOSCluster
switches = { 'onos': ONOSOVSSwitch,
'onosovs': ONOSOVSSwitch,
'onosuser': ONOSUserSwitch,
'default': ONOSOVSSwitch }
# Null topology so we can control an external/hardware network
topos = { 'none': Topo }
if __name__ == '__main__':
if len( argv ) != 2:
test( 3 )
else:
test( int( argv[ 1 ] ) )