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
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2023 PANTHEON.tech s.r.o.
"""SSH remote session."""
import socket
import traceback
from pathlib import Path, PurePath
from fabric import Connection # type: ignore[import-untyped]
from invoke.exceptions import ( # type: ignore[import-untyped]
CommandTimedOut,
ThreadException,
UnexpectedExit,
)
from paramiko.ssh_exception import ( # type: ignore[import-untyped]
AuthenticationException,
BadHostKeyException,
NoValidConnectionsError,
SSHException,
)
from framework.exception import SSHConnectionError, SSHSessionDeadError, SSHTimeoutError
from .remote_session import CommandResult, RemoteSession
class SSHSession(RemoteSession):
"""A persistent SSH connection to a remote Node.
The connection is implemented with
`the Fabric Python library <https://docs.fabfile.org/en/latest/>`_.
Attributes:
session: The underlying Fabric SSH connection.
Raises:
SSHConnectionError: The connection cannot be established.
"""
session: Connection
def _connect(self) -> None:
errors = []
retry_attempts = 10
login_timeout = 20 if self.port else 10
for retry_attempt in range(retry_attempts):
try:
self.session = Connection(
self.ip,
user=self.username,
port=self.port,
connect_kwargs={"password": self.password},
connect_timeout=login_timeout,
)
self.session.open()
except (ValueError, BadHostKeyException, AuthenticationException) as e:
self._logger.exception(e)
raise SSHConnectionError(self.hostname) from e
except (NoValidConnectionsError, socket.error, SSHException) as e:
self._logger.debug(traceback.format_exc())
self._logger.warning(e)
error = repr(e)
if error not in errors:
errors.append(error)
self._logger.info(f"Retrying connection: retry number {retry_attempt + 1}.")
else:
break
else:
raise SSHConnectionError(self.hostname, errors)
def _send_command(self, command: str, timeout: float, env: dict | None) -> CommandResult:
"""Send a command and return the result of the execution.
Args:
command: The command to execute.
timeout: Wait at most this long in seconds for the command execution to complete.
env: Extra environment variables that will be used in command execution.
Raises:
SSHSessionDeadError: The session died while executing the command.
SSHTimeoutError: The command execution timed out.
"""
try:
output = self.session.run(command, env=env, warn=True, hide=True, timeout=timeout)
except (UnexpectedExit, ThreadException) as e:
self._logger.exception(e)
raise SSHSessionDeadError(self.hostname) from e
except CommandTimedOut as e:
self._logger.exception(e)
raise SSHTimeoutError(command) from e
return CommandResult(self.name, command, output.stdout, output.stderr, output.return_code)
def is_alive(self) -> bool:
"""Overrides :meth:`~.remote_session.RemoteSession.is_alive`."""
return self.session.is_connected
def copy_from(self, source_file: str | PurePath, destination_dir: str | Path) -> None:
"""Overrides :meth:`~.remote_session.RemoteSession.copy_from`."""
self.session.get(str(source_file), str(destination_dir))
def copy_to(self, source_file: str | Path, destination_dir: str | PurePath) -> None:
"""Overrides :meth:`~.remote_session.RemoteSession.copy_to`."""
self.session.put(str(source_file), str(destination_dir))
def close(self) -> None:
"""Overrides :meth:`~.remote_session.RemoteSession.close`."""
self.session.close()
|