-
Notifications
You must be signed in to change notification settings - Fork 2
/
console.py
224 lines (174 loc) · 5.43 KB
/
console.py
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# -*- coding: utf-8 -*-
#
# Scimitar: Ye Distributed Debugger
#
# Copyright (c) 2016 Parsa Amini
# Copyright (c) 2016 Hartmut Kaiser
# Copyright (c) 2016 Thomas Heller
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
import re
import errors
import pexpect
class SessionDiedError(errors.ScimitarError):
"Raised when attempting to modify hops while there are active sessions."
pass
class NoHopsError(errors.ScimitarError):
"Rased when there are no more hops to remove."
pass
class HopManager(object):
def __init__(self):
self._hops = None
def add(self, hop):
if not self._hops:
self._hops = []
self._hops.append(hop)
def list_hops(self):
return self._hops or []
def remove_last(self):
if not self._hops:
raise NoHopsError
return self._hops.pop()
def is_empty(self):
return not self._hops
class SessionManager(object):
def __init__(self):
self._session_dict = None
self._order = None
def add(self, session):
if not self._session_dict:
self._session_dict = {}
self._order = []
self._order.append(session)
self._session_dict[session.tag] = session
def remove(self, session_tags):
for tag in session_tags:
session = self._session_dict.pop(tag)
self._order.remove(session)
def list_sessions(self):
if not self._session_dict:
return []
return self._session_dict.values()
def list_session_tags(self):
if not self._session_dict:
return []
return self._session_dict.keys()
def exists(self, tag):
if self._session_dict and self._session_dict.has_key(tag):
return True
return False
def get(self, tag):
return self._session_dict[tag]
def is_empty(self):
return not self._session_dict
def kill_all(self):
if self._session_dict:
for s in self._session_dict.itervalues():
s.close()
self._session_dict = None
self._order = None
def get_oldest(self):
if not self._order:
return None
return self._order[0]
def get_newest(self):
if not self._order:
return None
return self._order[-1]
class Terminal(object):
ps1_export_cmd = r"export PS1='SCIMITAR_PS\n$ '"
ps1_re = r'SCIMITAR_PS\s+\$ '
def __init__(
self,
hops,
target_host = None,
meta = None,
tag = None,
exit_re = None,
prompt_re = None,
):
self.con = None
self.hops = hops
self.hostname = 'localhost'
self.target_host = target_host
self.meta = meta
self.tag = tag
self.exit_re = exit_re
self.prompt_re = prompt_re
def __enter__(self):
return self.connect()
def connect(self):
self.con = pexpect.spawn('/usr/bin/env bash')
for hop in self.hops:
self.con.sendline('ssh -tt {host}'.format(host = hop))
self.hostname = hop
if self.target_host:
self.con.sendline('ssh -tt {host}'.format(host = self.target_host))
self.hostname = self.target_host
self.con.sendline(self.ps1_export_cmd)
self.con.expect(self.ps1_re)
#all_sessions.append(self)
return self
def __exit__(self, exc_type, exc_value, traceback):
self.close()
def close(self):
try:
cntr = 5
while self.con.isalive() and cntr > 0:
self.query('quit')
cntr -= 1
finally:
self.con.close()
#all_sessions.remove(self)
def query(self, cmd):
if not self.con.isalive():
raise errors.DeadConsoleError
self.con.sendline(cmd)
try:
p_re = [self.ps1_re]
if self.exit_re:
p_re.insert(0, self.exit_re)
if self.prompt_re:
p_re.insert(0, self.prompt_re)
pattern_index = self.con.expect(p_re)
if pattern_index == 0:
return self.con.before
elif pattern_index == 1:
self.close()
return '^exit'
elif pattern_index == 2:
self.con.close()
return '^kill'
except (pexpect.TIMEOUT, pexpect.EOF):
## Connection's probably dead, close the socket
self.close()
raise errors.ConsoleSessionError
raise errors.UnexpectedResponseError
def test_query(self, cmd):
if re.match(
'^.*aye[\r\n]*$',
self.query(
'{cmd} >/dev/null 2>&1 && echo aye || echo nay'.
format(cmd = cmd)
),
re.DOTALL
):
return True
return False
def is_pid_alive(self, process_id):
"""Checks if a PID is still valid
:pid: The Process ID
:returns: bool
"""
return self.test_query(
'ps -p {pid}'.format(pid = process_id), re.DOTALL
)
def is_alive(self):
return self.con.isalive()
def __repr__(self):
return '<Terminal {0} @{1}:{2}>'.format(
self.tag, self.hostname, self.meta
)
# vim: :ai:sw=4:ts=4:sts=4:et:ft=python:fo=corqj2:sm:tw=79: