blob: 757ee4ca88345d539e0daa240fac1201d6c6243a [file] [log] [blame]
adminbae64d82013-08-01 10:50:15 -07001#!/usr/bin/env python
2'''
3Created on 26-Oct-2012
4
5@author: Anil Kumar (anilkumar.s@paxterrasolutions.com)
6
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20
21
22MininetCliDriver is the basic driver which will handle the Mininet functions
23'''
admin2a9548d2014-06-17 14:08:07 -070024import traceback
adminbae64d82013-08-01 10:50:15 -070025import pexpect
26import struct
27import fcntl
28import os
29import signal
30import re
31import sys
32import core.teston
33sys.path.append("../")
34from drivers.common.cli.emulatordriver import Emulator
35from drivers.common.clidriver import CLI
36
37class MininetCliDriver(Emulator):
38 '''
Jon Hall41f40e82014-04-08 16:43:17 -070039 MininetCliDriver is the basic driver which will handle the Mininet functions
adminbae64d82013-08-01 10:50:15 -070040 '''
41 def __init__(self):
42 super(Emulator, self).__init__()
43 self.handle = self
44 self.wrapped = sys.modules[__name__]
45 self.flag = 0
46
47 def connect(self, **connectargs):
Jon Hall41f40e82014-04-08 16:43:17 -070048 '''
49 Here the main is the TestON instance after creating all the log handles.
50 '''
adminbae64d82013-08-01 10:50:15 -070051 for key in connectargs:
52 vars(self)[key] = connectargs[key]
53
54 self.name = self.options['name']
55 self.handle = super(MininetCliDriver, self).connect(user_name = self.user_name, ip_address = self.ip_address,port = None, pwd = self.pwd)
56
57 self.ssh_handle = self.handle
58
adminbae64d82013-08-01 10:50:15 -070059 if self.handle :
Jon Hallf2942ce2014-04-10 16:00:16 -070060 main.log.info(self.name+": Clearing any residual state or processes")
adminbae64d82013-08-01 10:50:15 -070061 self.handle.sendline("sudo mn -c")
adminf939f8b2014-04-03 17:22:56 -070062 i=self.handle.expect(['password\sfor\s','Cleanup\scomplete',pexpect.EOF,pexpect.TIMEOUT],120)
adminbae64d82013-08-01 10:50:15 -070063 if i==0:
Jon Hallf2942ce2014-04-10 16:00:16 -070064 main.log.info(self.name+": Sending sudo password")
adminf939f8b2014-04-03 17:22:56 -070065 self.handle.sendline(self.pwd)
66 i=self.handle.expect(['%s:'%(self.user),'\$',pexpect.EOF,pexpect.TIMEOUT],120)
adminbae64d82013-08-01 10:50:15 -070067 if i==1:
Jon Hallf2942ce2014-04-10 16:00:16 -070068 main.log.info(self.name+": Clean")
adminbae64d82013-08-01 10:50:15 -070069 elif i==2:
Jon Hallf2942ce2014-04-10 16:00:16 -070070 main.log.error(self.name+": Connection terminated")
adminbae64d82013-08-01 10:50:15 -070071 elif i==3: #timeout
Jon Hallf2942ce2014-04-10 16:00:16 -070072 main.log.error(self.name+": Something while cleaning MN took too long... " )
adminbae64d82013-08-01 10:50:15 -070073
Jon Hallf2942ce2014-04-10 16:00:16 -070074 main.log.info(self.name+": building fresh mininet")
adminbeea0032014-01-23 14:54:13 -080075 #### for reactive/PARP enabled tests
admin07529932013-11-22 14:58:28 -080076 cmdString = "sudo mn " + self.options['arg1'] + " " + self.options['arg2'] + " --mac --controller " + self.options['controller']
adminbeea0032014-01-23 14:54:13 -080077 #### for proactive flow with static ARP entries
78 #cmdString = "sudo mn " + self.options['arg1'] + " " + self.options['arg2'] + " --mac --arp --controller " + self.options['controller']
adminbae64d82013-08-01 10:50:15 -070079 self.handle.sendline(cmdString)
Jon Hall333fa8c2014-04-11 11:24:58 -070080 self.handle.expect(["sudo mn",pexpect.EOF,pexpect.TIMEOUT])
adminbae64d82013-08-01 10:50:15 -070081 while 1:
82 i=self.handle.expect(['mininet>','\*\*\*','Exception',pexpect.EOF,pexpect.TIMEOUT],300)
83 if i==0:
Jon Hallf2942ce2014-04-10 16:00:16 -070084 main.log.info(self.name+": mininet built")
adminbae64d82013-08-01 10:50:15 -070085 return main.TRUE
86 if i==1:
Jon Hall333fa8c2014-04-11 11:24:58 -070087 self.handle.expect(["\n",pexpect.EOF,pexpect.TIMEOUT])
adminbae64d82013-08-01 10:50:15 -070088 main.log.info(self.handle.before)
89 elif i==2:
Jon Hallf2942ce2014-04-10 16:00:16 -070090 main.log.error(self.name+": Launching mininet failed...")
adminbae64d82013-08-01 10:50:15 -070091 return main.FALSE
92 elif i==3:
Jon Hallf2942ce2014-04-10 16:00:16 -070093 main.log.error(self.name+": Connection timeout")
adminbae64d82013-08-01 10:50:15 -070094 return main.FALSE
95 elif i==4: #timeout
Jon Hallf2942ce2014-04-10 16:00:16 -070096 main.log.error(self.name+": Something took too long... " )
adminbae64d82013-08-01 10:50:15 -070097 return main.FALSE
adminbae64d82013-08-01 10:50:15 -070098 #if utilities.assert_matches(expect=patterns,actual=resultCommand,onpass="Network is being launched",onfail="Network launching is being failed "):
99 return main.TRUE
Jon Hallf2942ce2014-04-10 16:00:16 -0700100 else:#if no handle
101 main.log.error(self.name+": Connection failed to the host "+self.user_name+"@"+self.ip_address)
102 main.log.error(self.name+": Failed to connect to the Mininet")
adminbae64d82013-08-01 10:50:15 -0700103 return main.FALSE
104
105 def pingall(self):
106 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700107 Verifies the reachability of the hosts using pingall command.
adminbae64d82013-08-01 10:50:15 -0700108 '''
109 if self.handle :
Jon Hallf2942ce2014-04-10 16:00:16 -0700110 main.log.info(self.name+": Checking reachabilty to the hosts using pingall")
Jon Hall6094a362014-04-11 14:46:56 -0700111 try:
Jon Hallefa4fa12014-04-14 11:40:21 -0700112 response = self.execute(cmd="pingall",prompt="mininet>",timeout=120)
Jon Hall6094a362014-04-11 14:46:56 -0700113 except pexpect.EOF:
114 main.log.error(self.name + ": EOF exception found")
115 main.log.error(self.name + ": " + self.handle.before)
116 main.cleanup()
117 main.exit()
adminbae64d82013-08-01 10:50:15 -0700118 pattern = 'Results\:\s0\%\sdropped\s\(0\/\d+\slost\)\s*$'
Jon Hallf2942ce2014-04-10 16:00:16 -0700119 #if utilities.assert_matches(expect=pattern,actual=response,onpass="All hosts are reaching",onfail="Unable to reach all the hosts"):
120 if re.search(pattern,response):
121 main.log.info(self.name+": All hosts are reachable")
adminbae64d82013-08-01 10:50:15 -0700122 return main.TRUE
123 else:
Jon Hallf2942ce2014-04-10 16:00:16 -0700124 main.log.error(self.name+": Unable to reach all the hosts")
adminbae64d82013-08-01 10:50:15 -0700125 return main.FALSE
126 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700127 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700128 return main.FALSE
adminaeedddd2013-08-02 15:14:15 -0700129
130 def fpingHost(self,**pingParams):
131 '''
132 Uses the fping package for faster pinging...
133 *requires fping to be installed on machine running mininet
134 '''
135 args = utilities.parse_args(["SRC","TARGET"],**pingParams)
admin530b4c92013-08-14 16:54:35 -0700136 command = args["SRC"] + " fping -i 100 -t 20 -C 1 -q "+args["TARGET"]
adminaeedddd2013-08-02 15:14:15 -0700137 self.handle.sendline(command)
Jon Hall333fa8c2014-04-11 11:24:58 -0700138 self.handle.expect([args["TARGET"],pexpect.EOF,pexpect.TIMEOUT])
139 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
adminaeedddd2013-08-02 15:14:15 -0700140 response = self.handle.before
141 if re.search(":\s-" ,response):
Jon Hallf2942ce2014-04-10 16:00:16 -0700142 main.log.info(self.name+": Ping fail")
adminaeedddd2013-08-02 15:14:15 -0700143 return main.FALSE
admin530b4c92013-08-14 16:54:35 -0700144 elif re.search(":\s\d{1,2}\.\d\d", response):
Jon Hallf2942ce2014-04-10 16:00:16 -0700145 main.log.info(self.name+": Ping good!")
adminaeedddd2013-08-02 15:14:15 -0700146 return main.TRUE
Jon Hallf2942ce2014-04-10 16:00:16 -0700147 main.log.info(self.name+": Install fping on mininet machine... ")
148 main.log.info(self.name+": \n---\n"+response)
adminaeedddd2013-08-02 15:14:15 -0700149 return main.FALSE
adminbae64d82013-08-01 10:50:15 -0700150
151 def pingHost(self,**pingParams):
Jon Hallf2942ce2014-04-10 16:00:16 -0700152 '''
153 Ping from one mininet host to another
154 Currently the only supported Params: SRC and TARGET
155 '''
adminbae64d82013-08-01 10:50:15 -0700156 args = utilities.parse_args(["SRC","TARGET"],**pingParams)
157 #command = args["SRC"] + " ping -" + args["CONTROLLER"] + " " +args ["TARGET"]
Jon Hall0819fd92014-05-23 12:08:13 -0700158 command = args["SRC"] + " ping "+args ["TARGET"]+" -c 1 -i 1 -W 8"
Jon Hall6094a362014-04-11 14:46:56 -0700159 try:
Jon Hall6e18c7b2014-04-23 16:26:33 -0700160 main.log.warn("Sending: " + command)
161 #response = self.execute(cmd=command,prompt="mininet",timeout=10 )
162 self.handle.sendline(command)
163 i = self.handle.expect([command,pexpect.TIMEOUT])
164 if i == 1:
165 main.log.error(self.name + ": timeout when waiting for response from mininet")
166 main.log.error("response: " + str(self.handle.before))
167 i = self.handle.expect(["mininet>",pexpect.TIMEOUT])
168 if i == 1:
169 main.log.error(self.name + ": timeout when waiting for response from mininet")
170 main.log.error("response: " + str(self.handle.before))
171 response = self.handle.before
Jon Hall6094a362014-04-11 14:46:56 -0700172 except pexpect.EOF:
173 main.log.error(self.name + ": EOF exception found")
174 main.log.error(self.name + ": " + self.handle.before)
175 main.cleanup()
176 main.exit()
Jon Hallf2942ce2014-04-10 16:00:16 -0700177 main.log.info(self.name+": Ping Response: "+ response )
178 #if utilities.assert_matches(expect=',\s0\%\spacket\sloss',actual=response,onpass="No Packet loss",onfail="Host is not reachable"):
179 if re.search(',\s0\%\spacket\sloss',response):
Jon Hall6e18c7b2014-04-23 16:26:33 -0700180 main.log.info(self.name+": no packets lost, host is reachable")
adminbae64d82013-08-01 10:50:15 -0700181 main.last_result = main.TRUE
182 return main.TRUE
183 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700184 main.log.error(self.name+": PACKET LOST, HOST IS NOT REACHABLE")
adminbae64d82013-08-01 10:50:15 -0700185 main.last_result = main.FALSE
186 return main.FALSE
adminbae64d82013-08-01 10:50:15 -0700187
188 def checkIP(self,host):
189 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700190 Verifies the host's ip configured or not.
adminbae64d82013-08-01 10:50:15 -0700191 '''
192 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700193 try:
admin2a9548d2014-06-17 14:08:07 -0700194 self.handle.sendline("")
Jon Hall6094a362014-04-11 14:46:56 -0700195 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
admin2a9548d2014-06-17 14:08:07 -0700196 print(str(self.handle.before))
197 print(str(self.handle.after))
198 print(response)
Jon Hall6094a362014-04-11 14:46:56 -0700199 except pexpect.EOF:
200 main.log.error(self.name + ": EOF exception found")
201 main.log.error(self.name + ": " + self.handle.before)
202 main.cleanup()
203 main.exit()
adminbae64d82013-08-01 10:50:15 -0700204
205 pattern = "inet\s(addr|Mask):([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2}).([0-1]{1}[0-9]{1,2}|2[0-4][0-9]|25[0-5]|[0-9]{1,2})"
admin2a9548d2014-06-17 14:08:07 -0700206 #pattern = "inet addr:10.0.0.6"
Jon Hallf2942ce2014-04-10 16:00:16 -0700207 #if utilities.assert_matches(expect=pattern,actual=response,onpass="Host Ip configured properly",onfail="Host IP not found") :
208 if re.search(pattern,response):
209 main.log.info(self.name+": Host Ip configured properly")
adminbae64d82013-08-01 10:50:15 -0700210 return main.TRUE
211 else:
Jon Hallf2942ce2014-04-10 16:00:16 -0700212 main.log.error(self.name+": Host IP not found")
adminbae64d82013-08-01 10:50:15 -0700213 return main.FALSE
214 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700215 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700216
217 def verifySSH(self,**connectargs):
Jon Hall6094a362014-04-11 14:46:56 -0700218 try:
219 response = self.execute(cmd="h1 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10)
220 response = self.execute(cmd="h4 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10)
221 for key in connectargs:
222 vars(self)[key] = connectargs[key]
223 response = self.execute(cmd="xterm h1 h4 ",prompt="mininet>",timeout=10)
224 except pexpect.EOF:
225 main.log.error(self.name + ": EOF exception found")
226 main.log.error(self.name + ": " + self.handle.before)
227 main.cleanup()
228 main.exit()
adminbae64d82013-08-01 10:50:15 -0700229 import time
230 time.sleep(20)
231 if self.flag == 0:
232 self.flag = 1
233 return main.FALSE
234 else :
235 return main.TRUE
236
237 def getMacAddress(self,host):
238 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700239 Verifies the host's ip configured or not.
adminbae64d82013-08-01 10:50:15 -0700240 '''
241 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700242 try:
243 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
244 except pexpect.EOF:
245 main.log.error(self.name + ": EOF exception found")
246 main.log.error(self.name + ": " + self.handle.before)
247 main.cleanup()
248 main.exit()
adminbae64d82013-08-01 10:50:15 -0700249
Ahmed El-Hassanyf720e202014-04-04 16:11:36 -0700250 pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})'
251 mac_address_search = re.search(pattern, response, re.I)
252 mac_address = mac_address_search.group().split(" ")[1]
Jon Hallf2942ce2014-04-10 16:00:16 -0700253 main.log.info(self.name+": Mac-Address of Host "+ host + " is " + mac_address)
Ahmed El-Hassanyf720e202014-04-04 16:11:36 -0700254 return mac_address
adminbae64d82013-08-01 10:50:15 -0700255 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700256 main.log.error(self.name+": Connection failed to the host")
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700257
258 def getInterfaceMACAddress(self,host, interface):
259 '''
260 Return the IP address of the interface on the given host
261 '''
262 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700263 try:
264 response = self.execute(cmd=host+" ifconfig " + interface,
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700265 prompt="mininet>",timeout=10)
Jon Hall6094a362014-04-11 14:46:56 -0700266 except pexpect.EOF:
267 main.log.error(self.name + ": EOF exception found")
268 main.log.error(self.name + ": " + self.handle.before)
269 main.cleanup()
270 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700271
272 pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})'
273 mac_address_search = re.search(pattern, response, re.I)
274 if mac_address_search is None:
275 main.log.info("No mac address found in %s" % response)
276 return main.FALSE
277 mac_address = mac_address_search.group().split(" ")[1]
278 main.log.info("Mac-Address of "+ host + ":"+ interface + " is " + mac_address)
279 return mac_address
280 else:
281 main.log.error("Connection failed to the host")
282
adminbae64d82013-08-01 10:50:15 -0700283 def getIPAddress(self,host):
284 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700285 Verifies the host's ip configured or not.
adminbae64d82013-08-01 10:50:15 -0700286 '''
287 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700288 try:
289 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
290 except pexpect.EOF:
291 main.log.error(self.name + ": EOF exception found")
292 main.log.error(self.name + ": " + self.handle.before)
293 main.cleanup()
294 main.exit()
adminbae64d82013-08-01 10:50:15 -0700295
296 pattern = "inet\saddr:(\d+\.\d+\.\d+\.\d+)"
297 ip_address_search = re.search(pattern, response)
Jon Hallf2942ce2014-04-10 16:00:16 -0700298 main.log.info(self.name+": IP-Address of Host "+host +" is "+ip_address_search.group(1))
adminbae64d82013-08-01 10:50:15 -0700299 return ip_address_search.group(1)
300 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700301 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700302
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700303 def getSwitchDPID(self,switch):
304 '''
305 return the datapath ID of the switch
306 '''
307 if self.handle :
308 cmd = "py %s.dpid" % switch
Jon Hall6094a362014-04-11 14:46:56 -0700309 try:
310 response = self.execute(cmd=cmd,prompt="mininet>",timeout=10)
311 except pexpect.EOF:
312 main.log.error(self.name + ": EOF exception found")
313 main.log.error(self.name + ": " + self.handle.before)
314 main.cleanup()
315 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700316 pattern = r'^(?P<dpid>\d)+'
317 result = re.search(pattern, response, re.MULTILINE)
318 if result is None:
319 main.log.info("Couldn't find DPID for switch '', found: %s" % (switch, response))
320 return main.FALSE
321 return int(result.group('dpid'))
322 else:
323 main.log.error("Connection failed to the host")
324
325 def getInterfaces(self, node):
326 '''
327 return information dict about interfaces connected to the node
328 '''
329 if self.handle :
330 cmd = 'py "\\n".join(["name=%s,mac=%s,ip=%s,isUp=%s" % (i.name, i.MAC(), i.IP(), i.isUp())'
331 cmd += ' for i in %s.intfs.values()])' % node
Jon Hall6094a362014-04-11 14:46:56 -0700332 try:
333 response = self.execute(cmd=cmd,prompt="mininet>",timeout=10)
334 except pexpect.EOF:
335 main.log.error(self.name + ": EOF exception found")
336 main.log.error(self.name + ": " + self.handle.before)
337 main.cleanup()
338 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700339 return response
340 else:
341 main.log.error("Connection failed to the node")
342
adminbae64d82013-08-01 10:50:15 -0700343 def dump(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700344 main.log.info(self.name+": Dump node info")
Jon Hall6094a362014-04-11 14:46:56 -0700345 try:
346 response = self.execute(cmd = 'dump',prompt = 'mininet>',timeout = 10)
347 except pexpect.EOF:
348 main.log.error(self.name + ": EOF exception found")
349 main.log.error(self.name + ": " + self.handle.before)
350 main.cleanup()
351 main.exit()
Ahmed El-Hassanyd1f71702014-04-04 16:12:45 -0700352 return response
adminbae64d82013-08-01 10:50:15 -0700353
354 def intfs(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700355 main.log.info(self.name+": List interfaces")
Jon Hall6094a362014-04-11 14:46:56 -0700356 try:
357 response = self.execute(cmd = 'intfs',prompt = 'mininet>',timeout = 10)
358 except pexpect.EOF:
359 main.log.error(self.name + ": EOF exception found")
360 main.log.error(self.name + ": " + self.handle.before)
361 main.cleanup()
362 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700363 return response
adminbae64d82013-08-01 10:50:15 -0700364
365 def net(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700366 main.log.info(self.name+": List network connections")
Jon Hall6094a362014-04-11 14:46:56 -0700367 try:
368 response = self.execute(cmd = 'net',prompt = 'mininet>',timeout = 10)
369 except pexpect.EOF:
370 main.log.error(self.name + ": EOF exception found")
371 main.log.error(self.name + ": " + self.handle.before)
372 main.cleanup()
373 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700374 return response
adminbae64d82013-08-01 10:50:15 -0700375
376 def iperf(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700377 main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700378 try:
379 response = self.execute(cmd = 'iperf',prompt = 'mininet>',timeout = 10)
380 except pexpect.EOF:
381 main.log.error(self.name + ": EOF exception found")
382 main.log.error(self.name + ": " + self.handle.before)
383 main.cleanup()
384 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700385 return response
adminbae64d82013-08-01 10:50:15 -0700386
387 def iperfudp(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700388 main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700389 try:
390 response = self.execute(cmd = 'iperfudp',prompt = 'mininet>',timeout = 10)
391 except pexpect.EOF:
392 main.log.error(self.name + ": EOF exception found")
393 main.log.error(self.name + ": " + self.handle.before)
394 main.cleanup()
395 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700396 return response
adminbae64d82013-08-01 10:50:15 -0700397
398 def nodes(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700399 main.log.info(self.name+": List all nodes.")
Jon Hall6094a362014-04-11 14:46:56 -0700400 try:
401 response = self.execute(cmd = 'nodes',prompt = 'mininet>',timeout = 10)
402 except pexpect.EOF:
403 main.log.error(self.name + ": EOF exception found")
404 main.log.error(self.name + ": " + self.handle.before)
405 main.cleanup()
406 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700407 return response
adminbae64d82013-08-01 10:50:15 -0700408
409 def pingpair(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700410 main.log.info(self.name+": Ping between first two hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700411 try:
412 response = self.execute(cmd = 'pingpair',prompt = 'mininet>',timeout = 20)
413 except pexpect.EOF:
414 main.log.error(self.name + ": EOF exception found")
415 main.log.error(self.name + ": " + self.handle.before)
416 main.cleanup()
417 main.exit()
adminbae64d82013-08-01 10:50:15 -0700418
Jon Hallf2942ce2014-04-10 16:00:16 -0700419 #if utilities.assert_matches(expect='0% packet loss',actual=response,onpass="No Packet loss",onfail="Hosts not reachable"):
420 if re.search(',\s0\%\spacket\sloss',response):
421 main.log.info(self.name+": Ping between two hosts SUCCESSFUL")
adminbae64d82013-08-01 10:50:15 -0700422 main.last_result = main.TRUE
423 return main.TRUE
424 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700425 main.log.error(self.name+": PACKET LOST, HOSTS NOT REACHABLE")
adminbae64d82013-08-01 10:50:15 -0700426 main.last_result = main.FALSE
427 return main.FALSE
428
429 def link(self,**linkargs):
430 '''
431 Bring link(s) between two nodes up or down
432 '''
433 main.log.info('Bring link(s) between two nodes up or down')
434 args = utilities.parse_args(["END1","END2","OPTION"],**linkargs)
435 end1 = args["END1"] if args["END1"] != None else ""
436 end2 = args["END2"] if args["END2"] != None else ""
437 option = args["OPTION"] if args["OPTION"] != None else ""
438 command = "link "+str(end1) + " " + str(end2)+ " " + str(option)
Jon Hall6094a362014-04-11 14:46:56 -0700439 try:
Jon Halle80ef8c2014-04-29 15:29:13 -0700440 #response = self.execute(cmd=command,prompt="mininet>",timeout=10)
441 self.handle.sendline(command)
442 self.handle.expect("mininet>")
Jon Hall6094a362014-04-11 14:46:56 -0700443 except pexpect.EOF:
444 main.log.error(self.name + ": EOF exception found")
445 main.log.error(self.name + ": " + self.handle.before)
446 main.cleanup()
447 main.exit()
adminbae64d82013-08-01 10:50:15 -0700448 return main.TRUE
449
450
admin530b4c92013-08-14 16:54:35 -0700451 def yank(self,**yankargs):
adminaeedddd2013-08-02 15:14:15 -0700452 '''
admin530b4c92013-08-14 16:54:35 -0700453 yank a mininet switch interface to a host
adminaeedddd2013-08-02 15:14:15 -0700454 '''
admin530b4c92013-08-14 16:54:35 -0700455 main.log.info('Yank the switch interface attached to a host')
456 args = utilities.parse_args(["SW","INTF"],**yankargs)
adminaeedddd2013-08-02 15:14:15 -0700457 sw = args["SW"] if args["SW"] !=None else ""
458 intf = args["INTF"] if args["INTF"] != None else ""
459 command = "py "+ str(sw) + '.detach("' + str(intf) + '")'
Jon Hall6094a362014-04-11 14:46:56 -0700460 try:
461 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
462 except pexpect.EOF:
463 main.log.error(self.name + ": EOF exception found")
464 main.log.error(self.name + ": " + self.handle.before)
465 main.cleanup()
466 main.exit()
adminaeedddd2013-08-02 15:14:15 -0700467 return main.TRUE
468
469 def plug(self, **plugargs):
470 '''
471 plug the yanked mininet switch interface to a switch
472 '''
473 main.log.info('Plug the switch interface attached to a switch')
admin530b4c92013-08-14 16:54:35 -0700474 args = utilities.parse_args(["SW","INTF"],**plugargs)
adminaeedddd2013-08-02 15:14:15 -0700475 sw = args["SW"] if args["SW"] !=None else ""
476 intf = args["INTF"] if args["INTF"] != None else ""
477 command = "py "+ str(sw) + '.attach("' + str(intf) + '")'
Jon Hall6094a362014-04-11 14:46:56 -0700478 try:
479 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
480 except pexpect.EOF:
481 main.log.error(self.name + ": EOF exception found")
482 main.log.error(self.name + ": " + self.handle.before)
483 main.cleanup()
484 main.exit()
adminaeedddd2013-08-02 15:14:15 -0700485 return main.TRUE
486
487
488
adminbae64d82013-08-01 10:50:15 -0700489 def dpctl(self,**dpctlargs):
490 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700491 Run dpctl command on all switches.
adminbae64d82013-08-01 10:50:15 -0700492 '''
493 main.log.info('Run dpctl command on all switches')
494 args = utilities.parse_args(["CMD","ARGS"],**dpctlargs)
495 cmd = args["CMD"] if args["CMD"] != None else ""
496 cmdargs = args["ARGS"] if args["ARGS"] != None else ""
497 command = "dpctl "+cmd + " " + str(cmdargs)
Jon Hall6094a362014-04-11 14:46:56 -0700498 try:
499 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
500 except pexpect.EOF:
501 main.log.error(self.name + ": EOF exception found")
502 main.log.error(self.name + ": " + self.handle.before)
503 main.cleanup()
504 main.exit()
adminbae64d82013-08-01 10:50:15 -0700505 return main.TRUE
506
507
508 def get_version(self):
509 file_input = path+'/lib/Mininet/INSTALL'
510 version = super(Mininet, self).get_version()
511 pattern = 'Mininet\s\w\.\w\.\w\w*'
512 for line in open(file_input,'r').readlines():
513 result = re.match(pattern, line)
514 if result:
515 version = result.group(0)
516 return version
517
admin2a9548d2014-06-17 14:08:07 -0700518 def get_sw_controller_sanity(self, sw):
519 command = "sh ovs-vsctl get-controller "+str(sw)
520 try:
521 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
522 if response:
523 return main.TRUE
524 else:
525 return main.FALSE
526 except pexpect.EOF:
527 main.log.error(self.name + ": EOF exception found")
528 main.log.error(self.name + ": " + self.handle.before)
529 main.cleanup()
530 main.exit()
531 else:
532 main.log.info(response)
533
adminbae64d82013-08-01 10:50:15 -0700534 def get_sw_controller(self,sw):
535 command = "sh ovs-vsctl get-controller "+str(sw)
Jon Hall6094a362014-04-11 14:46:56 -0700536 try:
537 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
admin2a9548d2014-06-17 14:08:07 -0700538 print(response)
539 if response:
540 return response
541 else:
542 return main.FALSE
Jon Hall6094a362014-04-11 14:46:56 -0700543 except pexpect.EOF:
544 main.log.error(self.name + ": EOF exception found")
545 main.log.error(self.name + ": " + self.handle.before)
546 main.cleanup()
547 main.exit()
548 else:
549 main.log.info(response)
adminbae64d82013-08-01 10:50:15 -0700550
551 def assign_sw_controller(self,**kwargs):
Jon Hallf89c8552014-04-02 13:14:06 -0700552 '''
553 count is only needed if there is more than 1 controller
554 '''
555 args = utilities.parse_args(["COUNT"],**kwargs)
556 count = args["COUNT"] if args!={} else 1
557
558 argstring = "SW"
559 for j in range(count):
560 argstring = argstring + ",IP" + str(j+1) + ",PORT" + str(j+1)
561 args = utilities.parse_args(argstring.split(","),**kwargs)
562
adminbae64d82013-08-01 10:50:15 -0700563 sw = args["SW"] if args["SW"] != None else ""
admin530b4c92013-08-14 16:54:35 -0700564 ptcpA = int(args["PORT1"])+int(sw) if args["PORT1"] != None else ""
Jon Hallf89c8552014-04-02 13:14:06 -0700565 ptcpB = "ptcp:"+str(ptcpA) if ptcpA != "" else ""
566
567 command = "sh ovs-vsctl set-controller s" + str(sw) + " " + ptcpB + " "
568 for j in range(count):
569 i=j+1
570 args = utilities.parse_args(["IP"+str(i),"PORT"+str(i)],**kwargs)
571 ip = args["IP"+str(i)] if args["IP"+str(i)] != None else ""
572 port = args["PORT" + str(i)] if args["PORT" + str(i)] != None else ""
573 tcp = "tcp:" + str(ip) + ":" + str(port) + " " if ip != "" else ""
574 command = command + tcp
Jon Hall6094a362014-04-11 14:46:56 -0700575 try:
576 self.execute(cmd=command,prompt="mininet>",timeout=5)
577 except pexpect.EOF:
578 main.log.error(self.name + ": EOF exception found")
579 main.log.error(self.name + ": " + self.handle.before)
580 main.cleanup()
581 main.exit()
582 except:
583 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
584 main.log.error( traceback.print_exc() )
585 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
586 main.cleanup()
587 main.exit()
adminbae64d82013-08-01 10:50:15 -0700588
Jon Hall0819fd92014-05-23 12:08:13 -0700589 def delete_sw_controller(self,sw):
590 '''
591 Removes the controller target from sw
592 '''
593
594 command = "sh ovs-vsctl del-controller "+str(sw)
595 try:
596 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
597 except pexpect.EOF:
598 main.log.error(self.name + ": EOF exception found")
599 main.log.error(self.name + ": " + self.handle.before)
600 main.cleanup()
601 main.exit()
602 else:
603 main.log.info(response)
604
605
adminbae64d82013-08-01 10:50:15 -0700606 def disconnect(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700607 main.log.info(self.name+": Disconnecting mininet...")
adminbae64d82013-08-01 10:50:15 -0700608 response = ''
609 if self.handle:
Jon Hall6094a362014-04-11 14:46:56 -0700610 try:
611 response = self.execute(cmd="exit",prompt="(.*)",timeout=120)
612 response = self.execute(cmd="exit",prompt="(.*)",timeout=120)
Jon Halle80ef8c2014-04-29 15:29:13 -0700613 self.handle.sendline("sudo mn -c")
Jon Hall6094a362014-04-11 14:46:56 -0700614 except pexpect.EOF:
615 main.log.error(self.name + ": EOF exception found")
616 main.log.error(self.name + ": " + self.handle.before)
617 main.cleanup()
618 main.exit()
adminbae64d82013-08-01 10:50:15 -0700619 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700620 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700621 response = main.FALSE
622 return response
admin07529932013-11-22 14:58:28 -0800623
624 def arping(self, src, dest, destmac):
625 self.handle.sendline('')
Jon Hall333fa8c2014-04-11 11:24:58 -0700626 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800627
628 self.handle.sendline(src + ' arping ' + dest)
629 try:
Jon Hall333fa8c2014-04-11 11:24:58 -0700630 self.handle.expect([destmac,pexpect.EOF,pexpect.TIMEOUT])
Jon Hallf2942ce2014-04-10 16:00:16 -0700631 main.log.info(self.name+": ARP successful")
Jon Hall333fa8c2014-04-11 11:24:58 -0700632 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800633 return main.TRUE
634 except:
Jon Hallf2942ce2014-04-10 16:00:16 -0700635 main.log.warn(self.name+": ARP FAILURE")
Jon Hall333fa8c2014-04-11 11:24:58 -0700636 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800637 return main.FALSE
638
639 def decToHex(num):
640 return hex(num).split('x')[1]
admin2a9548d2014-06-17 14:08:07 -0700641
642 def getSwitchFlowCount(self, switch):
643 '''
644 return the Flow Count of the switch
645 '''
646 if self.handle:
647 cmd = "sh ovs-ofctl dump-aggregate %s" % switch
648 try:
649 response = self.execute(cmd=cmd, prompt="mininet>", timeout=10)
650 except pexpect.EOF:
651 main.log.error(self.name + ": EOF exception found")
652 main.log.error(self.name + " " + self.handle.before)
653 main.cleanup()
654 main.exit()
655 pattern = "flow_count=(\d+)"
656 result = re.search(pattern, response, re.MULTILINE)
657 if result is None:
658 print "no flow on switch print test"
659 main.log.info("Couldn't find flows on switch '', found: %s" % (switch, response))
660 return main.FALSE
661 return result.group(1)
662 else:
663 main.log.error("Connection failed to the Mininet host")
664
665 def check_flows(self, sw):
666 command = "sh ovs-ofctl dump-flows "+str(sw)
667 try:
668 response=self.execute(cmd=command,prompt="mininet>",timeout=10)
669 return response
670 except pexpect.EOF:
671 main.log.error(self.name + ": EOF exception found")
672 main.log.error(self.name + ": " + self.handle.before)
673 main.cleanup()
674 main.exit()
675 else:
676 main.log.info(response)
677
678 def start_tcpdump(self, filename, intf = "eth0", port = "port 6633"):
679 '''
680 Runs tpdump on an intferface and saves the file
681 intf can be specified, or the default eth0 is used
682 '''
683 try:
684 self.handle.sendline("")
685 self.handle.expect("mininet>")
686 self.handle.sendline("sh sudo tcpdump -n -i "+ intf + " " + port + " -w " + filename.strip() + " &")
687 self.handle.sendline("")
688 self.handle.sendline("")
689 i=self.handle.expect(['No\ssuch\device','listening\son',pexpect.TIMEOUT,"mininet>"],timeout=10)
690 main.log.warn(self.handle.before + self.handle.after)
691 if i == 0:
692 main.log.error(self.name + ": tcpdump - No such device exists. tcpdump attempted on: " + intf)
693 return main.FALSE
694 elif i == 1:
695 main.log.info(self.name + ": tcpdump started on " + intf)
696 return main.TRUE
697 elif i == 2:
698 main.log.error(self.name + ": tcpdump command timed out! Check interface name, given interface was: " + intf)
699 return main.FALSE
700 elif i ==3:
701 main.log.info(self.name +": " + self.handle.before)
702 return main.TRUE
703 else:
704 main.log.error(self.name + ": tcpdump - unexpected response")
705 return main.FALSE
706 except pexpect.EOF:
707 main.log.error(self.name + ": EOF exception found")
708 main.log.error(self.name + ": " + self.handle.before)
709 main.cleanup()
710 main.exit()
711 except:
712 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
713 main.log.error( traceback.print_exc() )
714 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
715 main.cleanup()
716 main.exit()
717
718 def stop_tcpdump(self):
719 "pkills tcpdump"
720 try:
721 self.handle.sendline("sh sudo pkill tcpdump")
722 self.handle.sendline("")
723 self.handle.sendline("")
724 self.handle.expect("mininet>")
725 except pexpect.EOF:
726 main.log.error(self.name + ": EOF exception found")
727 main.log.error(self.name + ": " + self.handle.before)
728 main.cleanup()
729 main.exit()
730 except:
731 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
732 main.log.error( traceback.print_exc() )
733 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
734 main.cleanup()
735 main.exit()
736
737
738
739
740
741
adminbae64d82013-08-01 10:50:15 -0700742
743if __name__ != "__main__":
744 import sys
745 sys.modules[__name__] = MininetCliDriver()
admin2a9548d2014-06-17 14:08:07 -0700746