blob: 9d774b33e17331701c12bd73f6014c3c5d5b2d88 [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:
194 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
admin0583f572014-06-17 15:33:20 -0700195 print("response 2"+ response)
196 self.handle.sendline(host+" ifconfig")
197 self.handle.expect(["mininet>",pexpect.TIMEOUT])
198 response = self.handle.before + self.handle.after
admin2a9548d2014-06-17 14:08:07 -0700199 print(response)
Jon Hall6094a362014-04-11 14:46:56 -0700200 except pexpect.EOF:
201 main.log.error(self.name + ": EOF exception found")
202 main.log.error(self.name + ": " + self.handle.before)
203 main.cleanup()
204 main.exit()
adminbae64d82013-08-01 10:50:15 -0700205
206 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 -0700207 #pattern = "inet addr:10.0.0.6"
Jon Hallf2942ce2014-04-10 16:00:16 -0700208 #if utilities.assert_matches(expect=pattern,actual=response,onpass="Host Ip configured properly",onfail="Host IP not found") :
209 if re.search(pattern,response):
210 main.log.info(self.name+": Host Ip configured properly")
adminbae64d82013-08-01 10:50:15 -0700211 return main.TRUE
212 else:
Jon Hallf2942ce2014-04-10 16:00:16 -0700213 main.log.error(self.name+": Host IP not found")
adminbae64d82013-08-01 10:50:15 -0700214 return main.FALSE
215 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700216 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700217
218 def verifySSH(self,**connectargs):
Jon Hall6094a362014-04-11 14:46:56 -0700219 try:
220 response = self.execute(cmd="h1 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10)
221 response = self.execute(cmd="h4 /usr/sbin/sshd -D&",prompt="mininet>",timeout=10)
222 for key in connectargs:
223 vars(self)[key] = connectargs[key]
224 response = self.execute(cmd="xterm h1 h4 ",prompt="mininet>",timeout=10)
225 except pexpect.EOF:
226 main.log.error(self.name + ": EOF exception found")
227 main.log.error(self.name + ": " + self.handle.before)
228 main.cleanup()
229 main.exit()
adminbae64d82013-08-01 10:50:15 -0700230 import time
231 time.sleep(20)
232 if self.flag == 0:
233 self.flag = 1
234 return main.FALSE
235 else :
236 return main.TRUE
237
238 def getMacAddress(self,host):
239 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700240 Verifies the host's ip configured or not.
adminbae64d82013-08-01 10:50:15 -0700241 '''
242 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700243 try:
244 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
245 except pexpect.EOF:
246 main.log.error(self.name + ": EOF exception found")
247 main.log.error(self.name + ": " + self.handle.before)
248 main.cleanup()
249 main.exit()
adminbae64d82013-08-01 10:50:15 -0700250
Ahmed El-Hassanyf720e202014-04-04 16:11:36 -0700251 pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})'
252 mac_address_search = re.search(pattern, response, re.I)
253 mac_address = mac_address_search.group().split(" ")[1]
Jon Hallf2942ce2014-04-10 16:00:16 -0700254 main.log.info(self.name+": Mac-Address of Host "+ host + " is " + mac_address)
Ahmed El-Hassanyf720e202014-04-04 16:11:36 -0700255 return mac_address
adminbae64d82013-08-01 10:50:15 -0700256 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700257 main.log.error(self.name+": Connection failed to the host")
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700258
259 def getInterfaceMACAddress(self,host, interface):
260 '''
261 Return the IP address of the interface on the given host
262 '''
263 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700264 try:
265 response = self.execute(cmd=host+" ifconfig " + interface,
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700266 prompt="mininet>",timeout=10)
Jon Hall6094a362014-04-11 14:46:56 -0700267 except pexpect.EOF:
268 main.log.error(self.name + ": EOF exception found")
269 main.log.error(self.name + ": " + self.handle.before)
270 main.cleanup()
271 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700272
273 pattern = r'HWaddr\s([0-9A-F]{2}[:-]){5}([0-9A-F]{2})'
274 mac_address_search = re.search(pattern, response, re.I)
275 if mac_address_search is None:
276 main.log.info("No mac address found in %s" % response)
277 return main.FALSE
278 mac_address = mac_address_search.group().split(" ")[1]
279 main.log.info("Mac-Address of "+ host + ":"+ interface + " is " + mac_address)
280 return mac_address
281 else:
282 main.log.error("Connection failed to the host")
283
adminbae64d82013-08-01 10:50:15 -0700284 def getIPAddress(self,host):
285 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700286 Verifies the host's ip configured or not.
adminbae64d82013-08-01 10:50:15 -0700287 '''
288 if self.handle :
Jon Hall6094a362014-04-11 14:46:56 -0700289 try:
290 response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
291 except pexpect.EOF:
292 main.log.error(self.name + ": EOF exception found")
293 main.log.error(self.name + ": " + self.handle.before)
294 main.cleanup()
295 main.exit()
adminbae64d82013-08-01 10:50:15 -0700296
297 pattern = "inet\saddr:(\d+\.\d+\.\d+\.\d+)"
298 ip_address_search = re.search(pattern, response)
Jon Hallf2942ce2014-04-10 16:00:16 -0700299 main.log.info(self.name+": IP-Address of Host "+host +" is "+ip_address_search.group(1))
adminbae64d82013-08-01 10:50:15 -0700300 return ip_address_search.group(1)
301 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700302 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700303
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700304 def getSwitchDPID(self,switch):
305 '''
306 return the datapath ID of the switch
307 '''
308 if self.handle :
309 cmd = "py %s.dpid" % switch
Jon Hall6094a362014-04-11 14:46:56 -0700310 try:
311 response = self.execute(cmd=cmd,prompt="mininet>",timeout=10)
312 except pexpect.EOF:
313 main.log.error(self.name + ": EOF exception found")
314 main.log.error(self.name + ": " + self.handle.before)
315 main.cleanup()
316 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700317 pattern = r'^(?P<dpid>\d)+'
318 result = re.search(pattern, response, re.MULTILINE)
319 if result is None:
320 main.log.info("Couldn't find DPID for switch '', found: %s" % (switch, response))
321 return main.FALSE
322 return int(result.group('dpid'))
323 else:
324 main.log.error("Connection failed to the host")
325
326 def getInterfaces(self, node):
327 '''
328 return information dict about interfaces connected to the node
329 '''
330 if self.handle :
331 cmd = 'py "\\n".join(["name=%s,mac=%s,ip=%s,isUp=%s" % (i.name, i.MAC(), i.IP(), i.isUp())'
332 cmd += ' for i in %s.intfs.values()])' % node
Jon Hall6094a362014-04-11 14:46:56 -0700333 try:
334 response = self.execute(cmd=cmd,prompt="mininet>",timeout=10)
335 except pexpect.EOF:
336 main.log.error(self.name + ": EOF exception found")
337 main.log.error(self.name + ": " + self.handle.before)
338 main.cleanup()
339 main.exit()
Ahmed El-Hassanyfd329182014-04-10 11:38:16 -0700340 return response
341 else:
342 main.log.error("Connection failed to the node")
343
adminbae64d82013-08-01 10:50:15 -0700344 def dump(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700345 main.log.info(self.name+": Dump node info")
Jon Hall6094a362014-04-11 14:46:56 -0700346 try:
347 response = self.execute(cmd = 'dump',prompt = 'mininet>',timeout = 10)
348 except pexpect.EOF:
349 main.log.error(self.name + ": EOF exception found")
350 main.log.error(self.name + ": " + self.handle.before)
351 main.cleanup()
352 main.exit()
Ahmed El-Hassanyd1f71702014-04-04 16:12:45 -0700353 return response
adminbae64d82013-08-01 10:50:15 -0700354
355 def intfs(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700356 main.log.info(self.name+": List interfaces")
Jon Hall6094a362014-04-11 14:46:56 -0700357 try:
358 response = self.execute(cmd = 'intfs',prompt = 'mininet>',timeout = 10)
359 except pexpect.EOF:
360 main.log.error(self.name + ": EOF exception found")
361 main.log.error(self.name + ": " + self.handle.before)
362 main.cleanup()
363 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700364 return response
adminbae64d82013-08-01 10:50:15 -0700365
366 def net(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700367 main.log.info(self.name+": List network connections")
Jon Hall6094a362014-04-11 14:46:56 -0700368 try:
369 response = self.execute(cmd = 'net',prompt = 'mininet>',timeout = 10)
370 except pexpect.EOF:
371 main.log.error(self.name + ": EOF exception found")
372 main.log.error(self.name + ": " + self.handle.before)
373 main.cleanup()
374 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700375 return response
adminbae64d82013-08-01 10:50:15 -0700376
377 def iperf(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700378 main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700379 try:
380 response = self.execute(cmd = 'iperf',prompt = 'mininet>',timeout = 10)
381 except pexpect.EOF:
382 main.log.error(self.name + ": EOF exception found")
383 main.log.error(self.name + ": " + self.handle.before)
384 main.cleanup()
385 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700386 return response
adminbae64d82013-08-01 10:50:15 -0700387
388 def iperfudp(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700389 main.log.info(self.name+": Simple iperf TCP test between two (optionally specified) hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700390 try:
391 response = self.execute(cmd = 'iperfudp',prompt = 'mininet>',timeout = 10)
392 except pexpect.EOF:
393 main.log.error(self.name + ": EOF exception found")
394 main.log.error(self.name + ": " + self.handle.before)
395 main.cleanup()
396 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700397 return response
adminbae64d82013-08-01 10:50:15 -0700398
399 def nodes(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700400 main.log.info(self.name+": List all nodes.")
Jon Hall6094a362014-04-11 14:46:56 -0700401 try:
402 response = self.execute(cmd = 'nodes',prompt = 'mininet>',timeout = 10)
403 except pexpect.EOF:
404 main.log.error(self.name + ": EOF exception found")
405 main.log.error(self.name + ": " + self.handle.before)
406 main.cleanup()
407 main.exit()
Jon Hall668ed802014-04-08 17:17:59 -0700408 return response
adminbae64d82013-08-01 10:50:15 -0700409
410 def pingpair(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700411 main.log.info(self.name+": Ping between first two hosts")
Jon Hall6094a362014-04-11 14:46:56 -0700412 try:
413 response = self.execute(cmd = 'pingpair',prompt = 'mininet>',timeout = 20)
414 except pexpect.EOF:
415 main.log.error(self.name + ": EOF exception found")
416 main.log.error(self.name + ": " + self.handle.before)
417 main.cleanup()
418 main.exit()
adminbae64d82013-08-01 10:50:15 -0700419
Jon Hallf2942ce2014-04-10 16:00:16 -0700420 #if utilities.assert_matches(expect='0% packet loss',actual=response,onpass="No Packet loss",onfail="Hosts not reachable"):
421 if re.search(',\s0\%\spacket\sloss',response):
422 main.log.info(self.name+": Ping between two hosts SUCCESSFUL")
adminbae64d82013-08-01 10:50:15 -0700423 main.last_result = main.TRUE
424 return main.TRUE
425 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700426 main.log.error(self.name+": PACKET LOST, HOSTS NOT REACHABLE")
adminbae64d82013-08-01 10:50:15 -0700427 main.last_result = main.FALSE
428 return main.FALSE
429
430 def link(self,**linkargs):
431 '''
432 Bring link(s) between two nodes up or down
433 '''
434 main.log.info('Bring link(s) between two nodes up or down')
435 args = utilities.parse_args(["END1","END2","OPTION"],**linkargs)
436 end1 = args["END1"] if args["END1"] != None else ""
437 end2 = args["END2"] if args["END2"] != None else ""
438 option = args["OPTION"] if args["OPTION"] != None else ""
439 command = "link "+str(end1) + " " + str(end2)+ " " + str(option)
Jon Hall6094a362014-04-11 14:46:56 -0700440 try:
Jon Halle80ef8c2014-04-29 15:29:13 -0700441 #response = self.execute(cmd=command,prompt="mininet>",timeout=10)
442 self.handle.sendline(command)
443 self.handle.expect("mininet>")
Jon Hall6094a362014-04-11 14:46:56 -0700444 except pexpect.EOF:
445 main.log.error(self.name + ": EOF exception found")
446 main.log.error(self.name + ": " + self.handle.before)
447 main.cleanup()
448 main.exit()
adminbae64d82013-08-01 10:50:15 -0700449 return main.TRUE
450
451
admin530b4c92013-08-14 16:54:35 -0700452 def yank(self,**yankargs):
adminaeedddd2013-08-02 15:14:15 -0700453 '''
admin530b4c92013-08-14 16:54:35 -0700454 yank a mininet switch interface to a host
adminaeedddd2013-08-02 15:14:15 -0700455 '''
admin530b4c92013-08-14 16:54:35 -0700456 main.log.info('Yank the switch interface attached to a host')
457 args = utilities.parse_args(["SW","INTF"],**yankargs)
adminaeedddd2013-08-02 15:14:15 -0700458 sw = args["SW"] if args["SW"] !=None else ""
459 intf = args["INTF"] if args["INTF"] != None else ""
460 command = "py "+ str(sw) + '.detach("' + str(intf) + '")'
Jon Hall6094a362014-04-11 14:46:56 -0700461 try:
462 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
463 except pexpect.EOF:
464 main.log.error(self.name + ": EOF exception found")
465 main.log.error(self.name + ": " + self.handle.before)
466 main.cleanup()
467 main.exit()
adminaeedddd2013-08-02 15:14:15 -0700468 return main.TRUE
469
470 def plug(self, **plugargs):
471 '''
472 plug the yanked mininet switch interface to a switch
473 '''
474 main.log.info('Plug the switch interface attached to a switch')
admin530b4c92013-08-14 16:54:35 -0700475 args = utilities.parse_args(["SW","INTF"],**plugargs)
adminaeedddd2013-08-02 15:14:15 -0700476 sw = args["SW"] if args["SW"] !=None else ""
477 intf = args["INTF"] if args["INTF"] != None else ""
478 command = "py "+ str(sw) + '.attach("' + str(intf) + '")'
Jon Hall6094a362014-04-11 14:46:56 -0700479 try:
480 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
481 except pexpect.EOF:
482 main.log.error(self.name + ": EOF exception found")
483 main.log.error(self.name + ": " + self.handle.before)
484 main.cleanup()
485 main.exit()
adminaeedddd2013-08-02 15:14:15 -0700486 return main.TRUE
487
488
489
adminbae64d82013-08-01 10:50:15 -0700490 def dpctl(self,**dpctlargs):
491 '''
Jon Hall41f40e82014-04-08 16:43:17 -0700492 Run dpctl command on all switches.
adminbae64d82013-08-01 10:50:15 -0700493 '''
494 main.log.info('Run dpctl command on all switches')
495 args = utilities.parse_args(["CMD","ARGS"],**dpctlargs)
496 cmd = args["CMD"] if args["CMD"] != None else ""
497 cmdargs = args["ARGS"] if args["ARGS"] != None else ""
498 command = "dpctl "+cmd + " " + str(cmdargs)
Jon Hall6094a362014-04-11 14:46:56 -0700499 try:
500 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
501 except pexpect.EOF:
502 main.log.error(self.name + ": EOF exception found")
503 main.log.error(self.name + ": " + self.handle.before)
504 main.cleanup()
505 main.exit()
adminbae64d82013-08-01 10:50:15 -0700506 return main.TRUE
507
508
509 def get_version(self):
510 file_input = path+'/lib/Mininet/INSTALL'
511 version = super(Mininet, self).get_version()
512 pattern = 'Mininet\s\w\.\w\.\w\w*'
513 for line in open(file_input,'r').readlines():
514 result = re.match(pattern, line)
515 if result:
516 version = result.group(0)
517 return version
518
admin2a9548d2014-06-17 14:08:07 -0700519 def get_sw_controller_sanity(self, sw):
520 command = "sh ovs-vsctl get-controller "+str(sw)
521 try:
522 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
523 if response:
524 return main.TRUE
525 else:
526 return main.FALSE
527 except pexpect.EOF:
528 main.log.error(self.name + ": EOF exception found")
529 main.log.error(self.name + ": " + self.handle.before)
530 main.cleanup()
531 main.exit()
532 else:
533 main.log.info(response)
534
adminbae64d82013-08-01 10:50:15 -0700535 def get_sw_controller(self,sw):
536 command = "sh ovs-vsctl get-controller "+str(sw)
Jon Hall6094a362014-04-11 14:46:56 -0700537 try:
538 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
admin2a9548d2014-06-17 14:08:07 -0700539 print(response)
540 if response:
541 return response
542 else:
543 return main.FALSE
Jon Hall6094a362014-04-11 14:46:56 -0700544 except pexpect.EOF:
545 main.log.error(self.name + ": EOF exception found")
546 main.log.error(self.name + ": " + self.handle.before)
547 main.cleanup()
548 main.exit()
549 else:
550 main.log.info(response)
adminbae64d82013-08-01 10:50:15 -0700551
552 def assign_sw_controller(self,**kwargs):
Jon Hallf89c8552014-04-02 13:14:06 -0700553 '''
554 count is only needed if there is more than 1 controller
555 '''
556 args = utilities.parse_args(["COUNT"],**kwargs)
557 count = args["COUNT"] if args!={} else 1
558
559 argstring = "SW"
560 for j in range(count):
561 argstring = argstring + ",IP" + str(j+1) + ",PORT" + str(j+1)
562 args = utilities.parse_args(argstring.split(","),**kwargs)
563
adminbae64d82013-08-01 10:50:15 -0700564 sw = args["SW"] if args["SW"] != None else ""
admin530b4c92013-08-14 16:54:35 -0700565 ptcpA = int(args["PORT1"])+int(sw) if args["PORT1"] != None else ""
Jon Hallf89c8552014-04-02 13:14:06 -0700566 ptcpB = "ptcp:"+str(ptcpA) if ptcpA != "" else ""
567
568 command = "sh ovs-vsctl set-controller s" + str(sw) + " " + ptcpB + " "
569 for j in range(count):
570 i=j+1
571 args = utilities.parse_args(["IP"+str(i),"PORT"+str(i)],**kwargs)
572 ip = args["IP"+str(i)] if args["IP"+str(i)] != None else ""
573 port = args["PORT" + str(i)] if args["PORT" + str(i)] != None else ""
574 tcp = "tcp:" + str(ip) + ":" + str(port) + " " if ip != "" else ""
575 command = command + tcp
Jon Hall6094a362014-04-11 14:46:56 -0700576 try:
577 self.execute(cmd=command,prompt="mininet>",timeout=5)
578 except pexpect.EOF:
579 main.log.error(self.name + ": EOF exception found")
580 main.log.error(self.name + ": " + self.handle.before)
581 main.cleanup()
582 main.exit()
583 except:
584 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
585 main.log.error( traceback.print_exc() )
586 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
587 main.cleanup()
588 main.exit()
adminbae64d82013-08-01 10:50:15 -0700589
Jon Hall0819fd92014-05-23 12:08:13 -0700590 def delete_sw_controller(self,sw):
591 '''
592 Removes the controller target from sw
593 '''
594
595 command = "sh ovs-vsctl del-controller "+str(sw)
596 try:
597 response = self.execute(cmd=command,prompt="mininet>",timeout=10)
598 except pexpect.EOF:
599 main.log.error(self.name + ": EOF exception found")
600 main.log.error(self.name + ": " + self.handle.before)
601 main.cleanup()
602 main.exit()
603 else:
604 main.log.info(response)
605
606
adminbae64d82013-08-01 10:50:15 -0700607 def disconnect(self):
Jon Hallf2942ce2014-04-10 16:00:16 -0700608 main.log.info(self.name+": Disconnecting mininet...")
adminbae64d82013-08-01 10:50:15 -0700609 response = ''
610 if self.handle:
Jon Hall6094a362014-04-11 14:46:56 -0700611 try:
612 response = self.execute(cmd="exit",prompt="(.*)",timeout=120)
613 response = self.execute(cmd="exit",prompt="(.*)",timeout=120)
Jon Halle80ef8c2014-04-29 15:29:13 -0700614 self.handle.sendline("sudo mn -c")
Jon Hall6094a362014-04-11 14:46:56 -0700615 except pexpect.EOF:
616 main.log.error(self.name + ": EOF exception found")
617 main.log.error(self.name + ": " + self.handle.before)
618 main.cleanup()
619 main.exit()
adminbae64d82013-08-01 10:50:15 -0700620 else :
Jon Hallf2942ce2014-04-10 16:00:16 -0700621 main.log.error(self.name+": Connection failed to the host")
adminbae64d82013-08-01 10:50:15 -0700622 response = main.FALSE
623 return response
admin07529932013-11-22 14:58:28 -0800624
625 def arping(self, src, dest, destmac):
626 self.handle.sendline('')
Jon Hall333fa8c2014-04-11 11:24:58 -0700627 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800628
629 self.handle.sendline(src + ' arping ' + dest)
630 try:
Jon Hall333fa8c2014-04-11 11:24:58 -0700631 self.handle.expect([destmac,pexpect.EOF,pexpect.TIMEOUT])
Jon Hallf2942ce2014-04-10 16:00:16 -0700632 main.log.info(self.name+": ARP successful")
Jon Hall333fa8c2014-04-11 11:24:58 -0700633 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800634 return main.TRUE
635 except:
Jon Hallf2942ce2014-04-10 16:00:16 -0700636 main.log.warn(self.name+": ARP FAILURE")
Jon Hall333fa8c2014-04-11 11:24:58 -0700637 self.handle.expect(["mininet",pexpect.EOF,pexpect.TIMEOUT])
admin07529932013-11-22 14:58:28 -0800638 return main.FALSE
639
640 def decToHex(num):
641 return hex(num).split('x')[1]
admin2a9548d2014-06-17 14:08:07 -0700642
643 def getSwitchFlowCount(self, switch):
644 '''
645 return the Flow Count of the switch
646 '''
647 if self.handle:
648 cmd = "sh ovs-ofctl dump-aggregate %s" % switch
649 try:
650 response = self.execute(cmd=cmd, prompt="mininet>", timeout=10)
651 except pexpect.EOF:
652 main.log.error(self.name + ": EOF exception found")
653 main.log.error(self.name + " " + self.handle.before)
654 main.cleanup()
655 main.exit()
656 pattern = "flow_count=(\d+)"
657 result = re.search(pattern, response, re.MULTILINE)
658 if result is None:
659 print "no flow on switch print test"
660 main.log.info("Couldn't find flows on switch '', found: %s" % (switch, response))
661 return main.FALSE
662 return result.group(1)
663 else:
664 main.log.error("Connection failed to the Mininet host")
665
666 def check_flows(self, sw):
667 command = "sh ovs-ofctl dump-flows "+str(sw)
668 try:
669 response=self.execute(cmd=command,prompt="mininet>",timeout=10)
670 return response
671 except pexpect.EOF:
672 main.log.error(self.name + ": EOF exception found")
673 main.log.error(self.name + ": " + self.handle.before)
674 main.cleanup()
675 main.exit()
676 else:
677 main.log.info(response)
678
679 def start_tcpdump(self, filename, intf = "eth0", port = "port 6633"):
680 '''
681 Runs tpdump on an intferface and saves the file
682 intf can be specified, or the default eth0 is used
683 '''
684 try:
685 self.handle.sendline("")
686 self.handle.expect("mininet>")
687 self.handle.sendline("sh sudo tcpdump -n -i "+ intf + " " + port + " -w " + filename.strip() + " &")
688 self.handle.sendline("")
689 self.handle.sendline("")
690 i=self.handle.expect(['No\ssuch\device','listening\son',pexpect.TIMEOUT,"mininet>"],timeout=10)
691 main.log.warn(self.handle.before + self.handle.after)
692 if i == 0:
693 main.log.error(self.name + ": tcpdump - No such device exists. tcpdump attempted on: " + intf)
694 return main.FALSE
695 elif i == 1:
696 main.log.info(self.name + ": tcpdump started on " + intf)
697 return main.TRUE
698 elif i == 2:
699 main.log.error(self.name + ": tcpdump command timed out! Check interface name, given interface was: " + intf)
700 return main.FALSE
701 elif i ==3:
702 main.log.info(self.name +": " + self.handle.before)
703 return main.TRUE
704 else:
705 main.log.error(self.name + ": tcpdump - unexpected response")
706 return main.FALSE
707 except pexpect.EOF:
708 main.log.error(self.name + ": EOF exception found")
709 main.log.error(self.name + ": " + self.handle.before)
710 main.cleanup()
711 main.exit()
712 except:
713 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
714 main.log.error( traceback.print_exc() )
715 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
716 main.cleanup()
717 main.exit()
718
719 def stop_tcpdump(self):
720 "pkills tcpdump"
721 try:
722 self.handle.sendline("sh sudo pkill tcpdump")
723 self.handle.sendline("")
724 self.handle.sendline("")
725 self.handle.expect("mininet>")
726 except pexpect.EOF:
727 main.log.error(self.name + ": EOF exception found")
728 main.log.error(self.name + ": " + self.handle.before)
729 main.cleanup()
730 main.exit()
731 except:
732 main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
733 main.log.error( traceback.print_exc() )
734 main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::")
735 main.cleanup()
736 main.exit()
737
738
739
740
741
742
adminbae64d82013-08-01 10:50:15 -0700743
744if __name__ != "__main__":
745 import sys
746 sys.modules[__name__] = MininetCliDriver()
admin2a9548d2014-06-17 14:08:07 -0700747