blob: c06ce3b110b6420b07c0221bafee8cdf583d0811 [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
Jay Pipes051075a2012-04-28 17:39:37 -04002# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
Jay Pipes051075a2012-04-28 17:39:37 -040016
Monty Taylorb2ca5ca2013-04-28 18:00:21 -070017import cStringIO
Matthew Treinisha83a16e2012-12-07 13:44:02 -050018import select
19import socket
20import time
21import warnings
22
Matthew Treinish96e9e882014-06-09 18:37:19 -040023import six
24
Daryl Walleck6b9b2882012-04-08 21:43:39 -050025from tempest import exceptions
Attila Fazekasad7ef7d2013-11-20 10:12:53 +010026from tempest.openstack.common import log as logging
Daryl Walleck1465d612011-11-02 02:22:15 -050027
Jay Pipes051075a2012-04-28 17:39:37 -040028
Daryl Walleck1465d612011-11-02 02:22:15 -050029with warnings.catch_warnings():
30 warnings.simplefilter("ignore")
31 import paramiko
32
33
Attila Fazekasad7ef7d2013-11-20 10:12:53 +010034LOG = logging.getLogger(__name__)
35
36
Daryl Walleck1465d612011-11-02 02:22:15 -050037class Client(object):
38
Attila Fazekasa23f5002012-10-23 19:32:45 +020039 def __init__(self, host, username, password=None, timeout=300, pkey=None,
Jay Pipes051075a2012-04-28 17:39:37 -040040 channel_timeout=10, look_for_keys=False, key_filename=None):
Daryl Walleck1465d612011-11-02 02:22:15 -050041 self.host = host
42 self.username = username
43 self.password = password
llg821243b20502014-02-22 10:32:49 +080044 if isinstance(pkey, six.string_types):
Monty Taylorb2ca5ca2013-04-28 18:00:21 -070045 pkey = paramiko.RSAKey.from_private_key(
46 cStringIO.StringIO(str(pkey)))
Attila Fazekasa23f5002012-10-23 19:32:45 +020047 self.pkey = pkey
Jay Pipes051075a2012-04-28 17:39:37 -040048 self.look_for_keys = look_for_keys
49 self.key_filename = key_filename
Daryl Walleck1465d612011-11-02 02:22:15 -050050 self.timeout = int(timeout)
Jaroslav Hennerab327842012-09-11 15:44:29 +020051 self.channel_timeout = float(channel_timeout)
52 self.buf_size = 1024
Daryl Walleck1465d612011-11-02 02:22:15 -050053
Gary Kottonc3128c02014-01-12 06:59:45 -080054 def _get_ssh_connection(self, sleep=1.5, backoff=1):
Sean Daguef237ccb2013-01-04 15:19:14 -050055 """Returns an ssh connection to the specified host."""
Andrea Frittoli334f1fd2013-05-15 06:57:43 +010056 bsleep = sleep
Daryl Walleck1465d612011-11-02 02:22:15 -050057 ssh = paramiko.SSHClient()
58 ssh.set_missing_host_key_policy(
59 paramiko.AutoAddPolicy())
60 _start_time = time.time()
Attila Fazekasad7ef7d2013-11-20 10:12:53 +010061 if self.pkey is not None:
62 LOG.info("Creating ssh connection to '%s' as '%s'"
63 " with public key authentication",
64 self.host, self.username)
65 else:
66 LOG.info("Creating ssh connection to '%s' as '%s'"
67 " with password %s",
68 self.host, self.username, str(self.password))
69 attempts = 0
70 while True:
Daryl Walleck1465d612011-11-02 02:22:15 -050071 try:
72 ssh.connect(self.host, username=self.username,
Jay Pipes051075a2012-04-28 17:39:37 -040073 password=self.password,
74 look_for_keys=self.look_for_keys,
75 key_filename=self.key_filename,
Soren Hansenb20cf3a2013-11-27 14:39:28 +010076 timeout=self.channel_timeout, pkey=self.pkey)
Marc Solanasb15d8b62014-02-07 00:04:15 -080077 LOG.info("ssh connection to %s@%s successfuly created",
Attila Fazekasad7ef7d2013-11-20 10:12:53 +010078 self.username, self.host)
79 return ssh
Andrea Frittoli334f1fd2013-05-15 06:57:43 +010080 except (socket.error,
Gary Kottonc3128c02014-01-12 06:59:45 -080081 paramiko.SSHException) as e:
82 if self._is_timed_out(_start_time):
Attila Fazekasad7ef7d2013-11-20 10:12:53 +010083 LOG.exception("Failed to establish authenticated ssh"
84 " connection to %s@%s after %d attempts",
85 self.username, self.host, attempts)
86 raise exceptions.SSHTimeout(host=self.host,
87 user=self.username,
88 password=self.password)
Gary Kottonc3128c02014-01-12 06:59:45 -080089 bsleep += backoff
90 attempts += 1
91 LOG.warning("Failed to establish authenticated ssh"
92 " connection to %s@%s (%s). Number attempts: %s."
93 " Retry after %d seconds.",
94 self.username, self.host, e, attempts, bsleep)
95 time.sleep(bsleep)
Daryl Walleck1465d612011-11-02 02:22:15 -050096
Mate Lakatc3f8cd62013-08-23 12:00:42 +010097 def _is_timed_out(self, start_time):
98 return (time.time() - self.timeout) > start_time
Daryl Walleck1465d612011-11-02 02:22:15 -050099
Daryl Walleck1465d612011-11-02 02:22:15 -0500100 def exec_command(self, cmd):
Jaroslav Hennerab327842012-09-11 15:44:29 +0200101 """
102 Execute the specified command on the server.
Daryl Walleck1465d612011-11-02 02:22:15 -0500103
Jaroslav Hennerab327842012-09-11 15:44:29 +0200104 Note that this method is reading whole command outputs to memory, thus
105 shouldn't be used for large outputs.
Daryl Walleck1465d612011-11-02 02:22:15 -0500106
Jaroslav Hennerab327842012-09-11 15:44:29 +0200107 :returns: data read from standard output of the command.
108 :raises: SSHExecCommandFailed if command returns nonzero
109 status. The exception contains command status stderr content.
Daryl Walleck1465d612011-11-02 02:22:15 -0500110 """
111 ssh = self._get_ssh_connection()
Jaroslav Hennerab327842012-09-11 15:44:29 +0200112 transport = ssh.get_transport()
113 channel = transport.open_session()
Attila Fazekase14e5a42013-03-06 07:52:51 +0100114 channel.fileno() # Register event pipe
Jaroslav Hennerab327842012-09-11 15:44:29 +0200115 channel.exec_command(cmd)
116 channel.shutdown_write()
117 out_data = []
118 err_data = []
Matthew Treinishdcaa2b42013-08-12 19:16:16 +0000119 poll = select.poll()
120 poll.register(channel, select.POLLIN)
Mate Lakat99f16632013-08-23 08:50:32 +0100121 start_time = time.time()
122
Jaroslav Hennerab327842012-09-11 15:44:29 +0200123 while True:
Matthew Treinishdcaa2b42013-08-12 19:16:16 +0000124 ready = poll.poll(self.channel_timeout)
Jaroslav Hennerab327842012-09-11 15:44:29 +0200125 if not any(ready):
Mate Lakatc3f8cd62013-08-23 12:00:42 +0100126 if not self._is_timed_out(start_time):
Mate Lakat99f16632013-08-23 08:50:32 +0100127 continue
Jaroslav Hennerab327842012-09-11 15:44:29 +0200128 raise exceptions.TimeoutException(
Sean Dague14c68182013-04-14 15:34:30 -0400129 "Command: '{0}' executed on host '{1}'.".format(
130 cmd, self.host))
Jay Pipes8fe53922014-01-14 20:08:16 -0500131 if not ready[0]: # If there is nothing to read.
Jaroslav Hennerab327842012-09-11 15:44:29 +0200132 continue
133 out_chunk = err_chunk = None
134 if channel.recv_ready():
135 out_chunk = channel.recv(self.buf_size)
136 out_data += out_chunk,
137 if channel.recv_stderr_ready():
138 err_chunk = channel.recv_stderr(self.buf_size)
139 err_data += err_chunk,
140 if channel.closed and not err_chunk and not out_chunk:
141 break
142 exit_status = channel.recv_exit_status()
143 if 0 != exit_status:
144 raise exceptions.SSHExecCommandFailed(
Sean Dague14c68182013-04-14 15:34:30 -0400145 command=cmd, exit_status=exit_status,
146 strerror=''.join(err_data))
Jaroslav Hennerab327842012-09-11 15:44:29 +0200147 return ''.join(out_data)
Daryl Walleck1465d612011-11-02 02:22:15 -0500148
149 def test_connection_auth(self):
Attila Fazekasad7ef7d2013-11-20 10:12:53 +0100150 """Raises an exception when we can not connect to server via ssh."""
151 connection = self._get_ssh_connection()
152 connection.close()