admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 2 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 3 | Created on 12-Feb-2013 |
| 4 | |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 5 | author:: Anil Kumar ( anilkumar.s@paxterrasolutions.com ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 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 |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 11 | ( at your option ) any later version. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 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 |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 20 | |
| 21 | |
| 22 | RemoteVMDriver is the basic driver which will handle the Mininet functions |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 23 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 24 | import pexpect |
| 25 | import struct |
| 26 | import fcntl |
| 27 | import os |
| 28 | import signal |
| 29 | import re |
| 30 | import sys |
| 31 | import time |
| 32 | |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 33 | sys.path.append( "../" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 34 | |
| 35 | from drivers.common.cli.remotetestbeddriver import RemoteTestBedDriver |
| 36 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 37 | |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 38 | class RemoteVMDriver( RemoteTestBedDriver ): |
| 39 | |
| 40 | """ |
| 41 | RemoteVMDriver is the basic driver which will handle the Mininet functions |
| 42 | """ |
| 43 | def __init__( self ): |
| 44 | super( RemoteTestBedDriver, self ).__init__() |
| 45 | |
| 46 | def connect( self, **connectargs ): |
| 47 | for key in connectargs: |
| 48 | vars( self )[ key ] = connectargs[ key ] |
| 49 | |
| 50 | self.name = self.options[ 'name' ] |
| 51 | |
| 52 | self.handle = super( |
| 53 | RemoteVMDriver, |
| 54 | self ).connect( |
| 55 | user_name=self.user_name, |
| 56 | ip_address=self.ip_address, |
| 57 | port=self.port, |
| 58 | pwd=self.pwd ) |
| 59 | if self.handle: |
| 60 | main.log.info( self.name + " connected successfully " ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 61 | return self.handle |
| 62 | return main.TRUE |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 63 | |
| 64 | def SSH( self, **connectargs ): |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 65 | for key in connectargs: |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 66 | vars( self )[ key ] = connectargs[ key ] |
| 67 | |
| 68 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 69 | Connection will establish to the remote host using ssh. |
| 70 | It will take user_name ,ip_address and password as arguments<br> |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 71 | and will return the handle. |
| 72 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 73 | for key in connectargs: |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 74 | vars( self )[ key ] = connectargs[ key ] |
| 75 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 76 | ssh_newkey = 'Are you sure you want to continue connecting' |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 77 | refused = "ssh: connect to host " + \ |
| 78 | self.ip_address + " port 22: Connection refused" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 79 | if self.port: |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 80 | self.handle.sendline( |
| 81 | 'ssh -p ' + |
| 82 | self.port + |
| 83 | ' ' + |
| 84 | self.user_name + |
| 85 | '@' + |
| 86 | self.ip_address ) |
| 87 | else: |
| 88 | self.handle.sendline( |
| 89 | 'ssh ' + |
| 90 | self.user_name + |
| 91 | '@' + |
| 92 | self.ip_address ) |
| 93 | self.handle.sendline( "\r" ) |
| 94 | |
| 95 | i = self.handle.expect( [ ssh_newkey, |
| 96 | 'password:', |
| 97 | pexpect.EOF, |
| 98 | pexpect.TIMEOUT, |
| 99 | refused ], |
| 100 | 120 ) |
| 101 | |
| 102 | if i == 0: |
| 103 | main.log.info( "ssh key confirmation received, send yes" ) |
| 104 | self.handle.sendline( 'yes' ) |
| 105 | i = self.handle.expect( [ ssh_newkey, 'password:', pexpect.EOF ] ) |
| 106 | if i == 1: |
| 107 | main.log.info( "ssh connection asked for password, gave password" ) |
| 108 | self.handle.sendline( self.pwd ) |
| 109 | self.handle.expect( '>|#|$' ) |
| 110 | |
| 111 | elif i == 2: |
| 112 | main.log.error( "Connection timeout" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 113 | return main.FALSE |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 114 | elif i == 3: # timeout |
| 115 | main.log.error( |
| 116 | "No route to the Host " + |
| 117 | self.user_name + |
| 118 | "@" + |
| 119 | self.ip_address ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 120 | return main.FALSE |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 121 | elif i == 4: |
| 122 | main.log.error( |
| 123 | "ssh: connect to host " + |
| 124 | self.ip_address + |
| 125 | " port 22: Connection refused" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 126 | return main.FALSE |
| 127 | |
kelvin-onlab | 66bccb7 | 2015-01-16 14:52:12 -0800 | [diff] [blame] | 128 | self.handle.sendline( "\r" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 129 | return main.TRUE |