author | wenzelm |
Thu, 09 Jun 2022 00:01:34 +0200 | |
changeset 75545 | 218dd201e24d |
parent 75544 | 179a3b028b0a |
child 75546 | 18b77e4387f3 |
permissions | -rw-r--r-- |
64123 | 1 |
/* Title: Pure/General/ssh.scala |
2 |
Author: Makarius |
|
3 |
||
64124 | 4 |
SSH client based on JSch (see also http://www.jcraft.com/jsch/examples). |
64123 | 5 |
*/ |
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
73909 | 10 |
import java.util.{Map => JMap} |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
11 |
import java.io.{InputStream, OutputStream, ByteArrayOutputStream} |
64131 | 12 |
|
71358 | 13 |
import scala.collection.mutable |
71601 | 14 |
import scala.util.matching.Regex |
64131 | 15 |
|
64222 | 16 |
import com.jcraft.jsch.{JSch, Logger => JSch_Logger, Session => JSch_Session, SftpException, |
71780 | 17 |
OpenSSHConfig, UserInfo, Channel => JSch_Channel, ChannelExec, ChannelSftp, SftpATTRS, |
18 |
JSchException} |
|
64123 | 19 |
|
20 |
||
75393 | 21 |
object SSH { |
64185 | 22 |
/* target machine: user@host syntax */ |
64141 | 23 |
|
75393 | 24 |
object Target { |
71601 | 25 |
val User_Host: Regex = "^([^@]+)@(.+)$".r |
64141 | 26 |
|
27 |
def parse(s: String): (String, String) = |
|
28 |
s match { |
|
71307 | 29 |
case User_Host(user, host) => (user, host) |
64141 | 30 |
case _ => ("", s) |
31 |
} |
|
32 |
||
33 |
def unapplySeq(s: String): Option[List[String]] = |
|
64185 | 34 |
parse(s) match { |
35 |
case (_, "") => None |
|
36 |
case (user, host) => Some(List(user, host)) |
|
37 |
} |
|
64141 | 38 |
} |
39 |
||
64142 | 40 |
val default_port = 22 |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
41 |
def make_port(port: Int): Int = if (port > 0) port else default_port |
64142 | 42 |
|
75500 | 43 |
def port_suffix(port: Int): String = |
44 |
if (port == default_port) "" else ":" + port |
|
71549 | 45 |
|
46 |
def user_prefix(user: String): String = |
|
47 |
proper_string(user) match { |
|
48 |
case None => "" |
|
49 |
case Some(name) => name + "@" |
|
50 |
} |
|
51 |
||
64257 | 52 |
def connect_timeout(options: Options): Int = |
53 |
options.seconds("ssh_connect_timeout").ms.toInt |
|
64141 | 54 |
|
64325 | 55 |
def alive_interval(options: Options): Int = |
56 |
options.seconds("ssh_alive_interval").ms.toInt |
|
57 |
||
67273
c573cfb2c407
more robust connection: prefer ServerAliveCountMax=3 (ssh default) instead of 1 (jsch default);
wenzelm
parents:
67067
diff
changeset
|
58 |
def alive_count_max(options: Options): Int = |
c573cfb2c407
more robust connection: prefer ServerAliveCountMax=3 (ssh default) instead of 1 (jsch default);
wenzelm
parents:
67067
diff
changeset
|
59 |
options.int("ssh_alive_count_max") |
c573cfb2c407
more robust connection: prefer ServerAliveCountMax=3 (ssh default) instead of 1 (jsch default);
wenzelm
parents:
67067
diff
changeset
|
60 |
|
64123 | 61 |
|
64257 | 62 |
/* init context */ |
63 |
||
75393 | 64 |
def init_context(options: Options): Context = { |
64130 | 65 |
val config_dir = Path.explode(options.string("ssh_config_dir")) |
64123 | 66 |
if (!config_dir.is_dir) error("Bad ssh config directory: " + config_dir) |
67 |
||
68 |
val jsch = new JSch |
|
69 |
||
64130 | 70 |
val config_file = Path.explode(options.string("ssh_config_file")) |
64123 | 71 |
if (config_file.is_file) |
72 |
jsch.setConfigRepository(OpenSSHConfig.parseFile(File.platform_path(config_file))) |
|
73 |
||
74 |
val known_hosts = config_dir + Path.explode("known_hosts") |
|
75 |
if (!known_hosts.is_file) known_hosts.file.createNewFile |
|
76 |
jsch.setKnownHosts(File.platform_path(known_hosts)) |
|
77 |
||
64130 | 78 |
val identity_files = |
71601 | 79 |
space_explode(':', options.string("ssh_identity_files")).map(Path.explode) |
71780 | 80 |
for (identity_file <- identity_files if identity_file.is_file) { |
81 |
try { jsch.addIdentity(File.platform_path(identity_file)) } |
|
82 |
catch { |
|
83 |
case exn: JSchException => |
|
84 |
error("Error in ssh identity file " + identity_file + ": " + exn.getMessage) |
|
85 |
} |
|
86 |
} |
|
64123 | 87 |
|
64257 | 88 |
new Context(options, jsch) |
64123 | 89 |
} |
90 |
||
71564
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
91 |
def open_session(options: Options, |
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
92 |
host: String, user: String = "", port: Int = 0, actual_host: String = "", |
67771 | 93 |
proxy_host: String = "", proxy_user: String = "", proxy_port: Int = 0, |
94 |
permissive: Boolean = false): Session = |
|
71564
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
95 |
init_context(options).open_session( |
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
96 |
host = host, user = user, port = port, actual_host = actual_host, |
67771 | 97 |
proxy_host = proxy_host, proxy_user = proxy_user, proxy_port = proxy_port, |
98 |
permissive = permissive) |
|
67067 | 99 |
|
75393 | 100 |
class Context private[SSH](val options: Options, val jsch: JSch) { |
64257 | 101 |
def update_options(new_options: Options): Context = new Context(new_options, jsch) |
102 |
||
75393 | 103 |
private def connect_session( |
104 |
host: String, |
|
105 |
user: String = "", |
|
106 |
port: Int = 0, |
|
67770
25f3a278df3d
support for permissive connections, for odd situations where host keys are not accepted;
wenzelm
parents:
67745
diff
changeset
|
107 |
host_key_permissive: Boolean = false, |
71549 | 108 |
nominal_host: String = "", |
109 |
nominal_user: String = "", |
|
75545
218dd201e24d
clarified types -- proper default_port via make_port;
wenzelm
parents:
75544
diff
changeset
|
110 |
nominal_port: Option[Int] = None, |
75393 | 111 |
on_close: () => Unit = () => () |
112 |
): Session = { |
|
71383 | 113 |
val session = jsch.getSession(proper_string(user).orNull, host, make_port(port)) |
64257 | 114 |
|
115 |
session.setUserInfo(No_User_Info) |
|
64325 | 116 |
session.setServerAliveInterval(alive_interval(options)) |
67273
c573cfb2c407
more robust connection: prefer ServerAliveCountMax=3 (ssh default) instead of 1 (jsch default);
wenzelm
parents:
67067
diff
changeset
|
117 |
session.setServerAliveCountMax(alive_count_max(options)) |
64257 | 118 |
session.setConfig("MaxAuthTries", "3") |
67770
25f3a278df3d
support for permissive connections, for odd situations where host keys are not accepted;
wenzelm
parents:
67745
diff
changeset
|
119 |
if (host_key_permissive) session.setConfig("StrictHostKeyChecking", "no") |
71549 | 120 |
if (nominal_host != "") session.setHostKeyAlias(nominal_host) |
64257 | 121 |
|
122 |
if (options.bool("ssh_compression")) { |
|
123 |
session.setConfig("compression.s2c", "zlib@openssh.com,zlib,none") |
|
124 |
session.setConfig("compression.c2s", "zlib@openssh.com,zlib,none") |
|
125 |
session.setConfig("compression_level", "9") |
|
126 |
} |
|
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
127 |
session.connect(connect_timeout(options)) |
71549 | 128 |
new Session(options, session, on_close, |
129 |
proper_string(nominal_host) getOrElse host, |
|
75544
179a3b028b0a
proper nominal_port, notably for port forwarding;
wenzelm
parents:
75517
diff
changeset
|
130 |
proper_string(nominal_user) getOrElse user, |
75545
218dd201e24d
clarified types -- proper default_port via make_port;
wenzelm
parents:
75544
diff
changeset
|
131 |
nominal_port.getOrElse(port)) |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
132 |
} |
64257 | 133 |
|
71564
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
134 |
def open_session( |
75393 | 135 |
host: String, |
136 |
user: String = "", |
|
137 |
port: Int = 0, |
|
138 |
actual_host: String = "", |
|
139 |
proxy_host: String = "", |
|
140 |
proxy_user: String = "", |
|
141 |
proxy_port: Int = 0, |
|
142 |
permissive: Boolean = false |
|
143 |
): Session = { |
|
71564
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
144 |
val connect_host = proper_string(actual_host) getOrElse host |
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
145 |
if (proxy_host == "") connect_session(host = connect_host, user = user, port = port) |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
146 |
else { |
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
147 |
val proxy = connect_session(host = proxy_host, port = proxy_port, user = proxy_user) |
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
148 |
|
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
149 |
val fw = |
71564
03133befa33b
support actual_host for lrzcloud2: the proxy_host/sshd cannot resolve invented hostname (amending 1d8b6c2253e6);
wenzelm
parents:
71562
diff
changeset
|
150 |
try { proxy.port_forwarding(remote_host = connect_host, remote_port = make_port(port)) } |
73367 | 151 |
catch { case exn: Throwable => proxy.close(); throw exn } |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
152 |
|
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
153 |
try { |
67770
25f3a278df3d
support for permissive connections, for odd situations where host keys are not accepted;
wenzelm
parents:
67745
diff
changeset
|
154 |
connect_session(host = fw.local_host, port = fw.local_port, |
71549 | 155 |
host_key_permissive = permissive, |
75545
218dd201e24d
clarified types -- proper default_port via make_port;
wenzelm
parents:
75544
diff
changeset
|
156 |
nominal_host = host, |
218dd201e24d
clarified types -- proper default_port via make_port;
wenzelm
parents:
75544
diff
changeset
|
157 |
nominal_port = Some(make_port(port)), |
218dd201e24d
clarified types -- proper default_port via make_port;
wenzelm
parents:
75544
diff
changeset
|
158 |
nominal_user = user, user = user, |
75394 | 159 |
on_close = { () => fw.close(); proxy.close() }) |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
160 |
} |
73367 | 161 |
catch { case exn: Throwable => fw.close(); proxy.close(); throw exn } |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
162 |
} |
64257 | 163 |
} |
164 |
} |
|
64130 | 165 |
|
64123 | 166 |
|
167 |
/* logging */ |
|
168 |
||
75393 | 169 |
def logging(verbose: Boolean = true, debug: Boolean = false): Unit = { |
64123 | 170 |
JSch.setLogger(if (verbose) new Logger(debug) else null) |
171 |
} |
|
172 |
||
75393 | 173 |
private class Logger(debug: Boolean) extends JSch_Logger { |
64123 | 174 |
def isEnabled(level: Int): Boolean = level != JSch_Logger.DEBUG || debug |
175 |
||
75393 | 176 |
def log(level: Int, msg: String): Unit = { |
64123 | 177 |
level match { |
178 |
case JSch_Logger.ERROR | JSch_Logger.FATAL => Output.error_message(msg) |
|
179 |
case JSch_Logger.WARN => Output.warning(msg) |
|
180 |
case _ => Output.writeln(msg) |
|
181 |
} |
|
182 |
} |
|
183 |
} |
|
184 |
||
185 |
||
64128 | 186 |
/* user info */ |
187 |
||
75393 | 188 |
object No_User_Info extends UserInfo { |
64128 | 189 |
def getPassphrase: String = null |
190 |
def getPassword: String = null |
|
191 |
def promptPassword(msg: String): Boolean = false |
|
192 |
def promptPassphrase(msg: String): Boolean = false |
|
193 |
def promptYesNo(msg: String): Boolean = false |
|
194 |
def showMessage(msg: String): Unit = Output.writeln(msg) |
|
195 |
} |
|
196 |
||
197 |
||
65009 | 198 |
/* port forwarding */ |
199 |
||
75393 | 200 |
object Port_Forwarding { |
201 |
def open( |
|
202 |
ssh: Session, |
|
203 |
ssh_close: Boolean, |
|
204 |
local_host: String, |
|
205 |
local_port: Int, |
|
206 |
remote_host: String, |
|
207 |
remote_port: Int |
|
208 |
): Port_Forwarding = { |
|
65010 | 209 |
val port = ssh.session.setPortForwardingL(local_host, local_port, remote_host, remote_port) |
65636
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
210 |
new Port_Forwarding(ssh, ssh_close, local_host, port, remote_host, remote_port) |
65010 | 211 |
} |
212 |
} |
|
213 |
||
214 |
class Port_Forwarding private[SSH]( |
|
215 |
ssh: SSH.Session, |
|
65636
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
216 |
ssh_close: Boolean, |
65010 | 217 |
val local_host: String, |
218 |
val local_port: Int, |
|
219 |
val remote_host: String, |
|
75393 | 220 |
val remote_port: Int |
221 |
) extends AutoCloseable { |
|
65010 | 222 |
override def toString: String = |
223 |
local_host + ":" + local_port + ":" + remote_host + ":" + remote_port |
|
224 |
||
75393 | 225 |
def close(): Unit = { |
65636
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
226 |
ssh.session.delPortForwardingL(local_host, local_port) |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
227 |
if (ssh_close) ssh.close() |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
228 |
} |
65009 | 229 |
} |
230 |
||
231 |
||
64191 | 232 |
/* Sftp channel */ |
233 |
||
234 |
type Attrs = SftpATTRS |
|
235 |
||
75393 | 236 |
sealed case class Dir_Entry(name: String, is_dir: Boolean) { |
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
237 |
def is_file: Boolean = !is_dir |
64191 | 238 |
} |
239 |
||
240 |
||
64132 | 241 |
/* exec channel */ |
242 |
||
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
243 |
private val exec_wait_delay = Time.seconds(0.3) |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
244 |
|
75393 | 245 |
class Exec private[SSH](session: Session, channel: ChannelExec) extends AutoCloseable { |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
246 |
override def toString: String = "exec " + session.toString |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
247 |
|
73340 | 248 |
def close(): Unit = channel.disconnect |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
249 |
|
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
250 |
val exit_status: Future[Int] = |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
251 |
Future.thread("ssh_wait") { |
73702
7202e12cb324
tuned signature --- following hints by IntelliJ IDEA;
wenzelm
parents:
73634
diff
changeset
|
252 |
while (!channel.isClosed) exec_wait_delay.sleep() |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
253 |
channel.getExitStatus |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
254 |
} |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
255 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
256 |
val stdin: OutputStream = channel.getOutputStream |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
257 |
val stdout: InputStream = channel.getInputStream |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
258 |
val stderr: InputStream = channel.getErrStream |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
259 |
|
64166 | 260 |
// connect after preparing streams |
261 |
channel.connect(connect_timeout(session.options)) |
|
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
262 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
263 |
def result( |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
264 |
progress_stdout: String => Unit = (_: String) => (), |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
265 |
progress_stderr: String => Unit = (_: String) => (), |
75393 | 266 |
strict: Boolean = true |
267 |
): Process_Result = { |
|
73367 | 268 |
stdin.close() |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
269 |
|
75393 | 270 |
def read_lines(stream: InputStream, progress: String => Unit): List[String] = { |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
271 |
val result = new mutable.ListBuffer[String] |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
272 |
val line_buffer = new ByteArrayOutputStream(100) |
75393 | 273 |
def line_flush(): Unit = { |
64326 | 274 |
val line = Library.trim_line(line_buffer.toString(UTF8.charset_name)) |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
275 |
progress(line) |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
276 |
result += line |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
277 |
line_buffer.reset |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
278 |
} |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
279 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
280 |
var c = 0 |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
281 |
var finished = false |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
282 |
while (!finished) { |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
283 |
while ({ c = stream.read; c != -1 && c != 10 }) line_buffer.write(c) |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
284 |
if (c == 10) line_flush() |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
285 |
else if (channel.isClosed) { |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
286 |
if (line_buffer.size > 0) line_flush() |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
287 |
finished = true |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
288 |
} |
73702
7202e12cb324
tuned signature --- following hints by IntelliJ IDEA;
wenzelm
parents:
73634
diff
changeset
|
289 |
else exec_wait_delay.sleep() |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
290 |
} |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
291 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
292 |
result.toList |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
293 |
} |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
294 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
295 |
val out_lines = Future.thread("ssh_stdout") { read_lines(stdout, progress_stdout) } |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
296 |
val err_lines = Future.thread("ssh_stderr") { read_lines(stderr, progress_stderr) } |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
297 |
|
75393 | 298 |
def terminate(): Unit = { |
73367 | 299 |
close() |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
300 |
out_lines.join |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
301 |
err_lines.join |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
302 |
exit_status.join |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
303 |
} |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
304 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
305 |
val rc = |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
306 |
try { exit_status.join } |
74306 | 307 |
catch { case Exn.Interrupt() => terminate(); Process_Result.RC.interrupt } |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
308 |
|
73367 | 309 |
close() |
74306 | 310 |
if (strict && rc == Process_Result.RC.interrupt) throw Exn.Interrupt() |
64134
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
311 |
|
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
312 |
Process_Result(rc, out_lines.join, err_lines.join) |
57581e4026fe
proper support for exec channel (see also bash.scala);
wenzelm
parents:
64133
diff
changeset
|
313 |
} |
64131 | 314 |
} |
315 |
||
316 |
||
64123 | 317 |
/* session */ |
318 |
||
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
319 |
class Session private[SSH]( |
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
320 |
val options: Options, |
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
321 |
val session: JSch_Session, |
71549 | 322 |
on_close: () => Unit, |
323 |
val nominal_host: String, |
|
75544
179a3b028b0a
proper nominal_port, notably for port forwarding;
wenzelm
parents:
75517
diff
changeset
|
324 |
val nominal_user: String, |
179a3b028b0a
proper nominal_port, notably for port forwarding;
wenzelm
parents:
75517
diff
changeset
|
325 |
val nominal_port: Int |
75393 | 326 |
) extends System { |
67745
d83efbe52438
support for proxy connection, similar to ProxyCommand in ssh config;
wenzelm
parents:
67273
diff
changeset
|
327 |
def update_options(new_options: Options): Session = |
75544
179a3b028b0a
proper nominal_port, notably for port forwarding;
wenzelm
parents:
75517
diff
changeset
|
328 |
new Session(new_options, session, on_close, nominal_host, nominal_user, nominal_port) |
64166 | 329 |
|
64347 | 330 |
def host: String = if (session.getHost == null) "" else session.getHost |
71549 | 331 |
|
332 |
override def hg_url: String = |
|
333 |
"ssh://" + user_prefix(nominal_user) + nominal_host + "/" |
|
66570 | 334 |
|
75500 | 335 |
override def rsync_prefix: String = |
336 |
user_prefix(nominal_user) + nominal_host + ":" |
|
337 |
||
64123 | 338 |
override def toString: String = |
75544
179a3b028b0a
proper nominal_port, notably for port forwarding;
wenzelm
parents:
75517
diff
changeset
|
339 |
user_prefix(session.getUserName) + host + port_suffix(session.getPort) + |
71549 | 340 |
(if (session.isConnected) "" else " (disconnected)") |
64123 | 341 |
|
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
342 |
|
65009 | 343 |
/* port forwarding */ |
344 |
||
65636
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
345 |
def port_forwarding( |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
346 |
remote_port: Int, remote_host: String = "localhost", |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
347 |
local_port: Int = 0, local_host: String = "localhost", |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
348 |
ssh_close: Boolean = false): Port_Forwarding = |
df804cdba5f9
ssh_close for proper termination after use of database;
wenzelm
parents:
65594
diff
changeset
|
349 |
Port_Forwarding.open(this, ssh_close, local_host, local_port, remote_host, remote_port) |
65009 | 350 |
|
351 |
||
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
352 |
/* sftp channel */ |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
353 |
|
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
354 |
val sftp: ChannelSftp = session.openChannel("sftp").asInstanceOf[ChannelSftp] |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
355 |
sftp.connect(connect_timeout(options)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
356 |
|
73634 | 357 |
override def close(): Unit = { sftp.disconnect; session.disconnect; on_close() } |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
358 |
|
75393 | 359 |
val settings: JMap[String, String] = { |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
360 |
val home = sftp.getHome |
73897 | 361 |
JMap.of("HOME", home, "USER_HOME", home) |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
362 |
} |
66570 | 363 |
override def expand_path(path: Path): Path = path.expand_env(settings) |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
364 |
def remote_path(path: Path): String = expand_path(path).implode |
67066 | 365 |
override def bash_path(path: Path): String = Bash.string(remote_path(path)) |
64123 | 366 |
|
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
367 |
def chmod(permissions: Int, path: Path): Unit = sftp.chmod(permissions, remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
368 |
def mv(path1: Path, path2: Path): Unit = sftp.rename(remote_path(path1), remote_path(path2)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
369 |
def rm(path: Path): Unit = sftp.rm(remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
370 |
def mkdir(path: Path): Unit = sftp.mkdir(remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
371 |
def rmdir(path: Path): Unit = sftp.rmdir(remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
372 |
|
69302 | 373 |
private def test_entry(path: Path, as_dir: Boolean): Boolean = |
374 |
try { |
|
375 |
val is_dir = sftp.stat(remote_path(path)).isDir |
|
376 |
if (as_dir) is_dir else !is_dir |
|
377 |
} |
|
378 |
catch { case _: SftpException => false } |
|
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
379 |
|
69302 | 380 |
override def is_dir(path: Path): Boolean = test_entry(path, true) |
381 |
override def is_file(path: Path): Boolean = test_entry(path, false) |
|
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
382 |
|
69301 | 383 |
def is_link(path: Path): Boolean = |
384 |
try { sftp.lstat(remote_path(path)).isLink } |
|
385 |
catch { case _: SftpException => false } |
|
386 |
||
75393 | 387 |
override def make_directory(path: Path): Path = { |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
388 |
if (!is_dir(path)) { |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
389 |
execute( |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
390 |
"perl -e \"use File::Path make_path; make_path('" + remote_path(path) + "');\"") |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
391 |
if (!is_dir(path)) error("Failed to create directory: " + quote(remote_path(path))) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
392 |
} |
72376 | 393 |
path |
394 |
} |
|
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
395 |
|
75393 | 396 |
def read_dir(path: Path): List[Dir_Entry] = { |
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
397 |
if (!is_dir(path)) error("No such directory: " + path.toString) |
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
398 |
|
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
399 |
val dir_name = remote_path(path) |
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
400 |
val dir = sftp.ls(dir_name) |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
401 |
(for { |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
402 |
i <- (0 until dir.size).iterator |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
403 |
a = dir.get(i).asInstanceOf[AnyRef] |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
404 |
name = Untyped.get[String](a, "filename") |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
405 |
attrs = Untyped.get[Attrs](a, "attrs") |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
406 |
if name != "." && name != ".." |
69302 | 407 |
} |
408 |
yield { |
|
409 |
Dir_Entry(name, |
|
410 |
if (attrs.isLink) { |
|
411 |
try { sftp.stat(dir_name + "/" + name).isDir } |
|
412 |
catch { case _: SftpException => false } |
|
413 |
} |
|
414 |
else attrs.isDir) |
|
69427
ff2f39a221d4
clarified operations: uniform sorting of results;
wenzelm
parents:
69393
diff
changeset
|
415 |
}).toList.sortBy(_.name) |
64191 | 416 |
} |
64135
865dda40e1cc
provide execute operation, similar to Isabelle_System.bash;
wenzelm
parents:
64134
diff
changeset
|
417 |
|
69301 | 418 |
def find_files( |
419 |
start: Path, |
|
420 |
pred: Path => Boolean = _ => true, |
|
421 |
include_dirs: Boolean = false, |
|
75393 | 422 |
follow_links: Boolean = false |
423 |
): List[Path] = { |
|
69301 | 424 |
val result = new mutable.ListBuffer[Path] |
73340 | 425 |
def check(path: Path): Unit = { if (pred(path)) result += path } |
69301 | 426 |
|
75393 | 427 |
def find(dir: Path): Unit = { |
69303 | 428 |
if (include_dirs) check(dir) |
69301 | 429 |
if (follow_links || !is_link(dir)) { |
430 |
for (entry <- read_dir(dir)) { |
|
69302 | 431 |
val path = dir + Path.basic(entry.name) |
432 |
if (entry.is_file) check(path) else find(path) |
|
69301 | 433 |
} |
434 |
} |
|
435 |
} |
|
436 |
if (is_file(start)) check(start) else find(start) |
|
437 |
||
438 |
result.toList |
|
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
439 |
} |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
440 |
|
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
441 |
def open_input(path: Path): InputStream = sftp.get(remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
442 |
def open_output(path: Path): OutputStream = sftp.put(remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
443 |
|
73634 | 444 |
override def read_file(path: Path, local_path: Path): Unit = |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
445 |
sftp.get(remote_path(path), File.platform_path(local_path)) |
75513 | 446 |
override def read_bytes(path: Path): Bytes = using(open_input(path))(Bytes.read_stream(_)) |
447 |
override def read(path: Path): String = using(open_input(path))(File.read_stream) |
|
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
448 |
|
73634 | 449 |
override def write_file(path: Path, local_path: Path): Unit = |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
450 |
sftp.put(File.platform_path(local_path), remote_path(path)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
451 |
def write_bytes(path: Path, bytes: Bytes): Unit = |
71601 | 452 |
using(open_output(path))(bytes.write_stream) |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
453 |
def write(path: Path, text: String): Unit = |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
454 |
using(open_output(path))(stream => Bytes(text).write_stream(stream)) |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
455 |
|
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
456 |
|
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
457 |
/* exec channel */ |
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
458 |
|
75393 | 459 |
def exec(command: String): Exec = { |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
460 |
val channel = session.openChannel("exec").asInstanceOf[ChannelExec] |
64190
c62b99e3ec07
provide USER_HOME, such that symbolic Path.explode("~") can be used remotely;
wenzelm
parents:
64185
diff
changeset
|
461 |
channel.setCommand("export USER_HOME=\"$HOME\"\n" + command) |
64256
c3197aeae90b
simplified SSH.Session: sftp channel is always open and its operations provided by the main interface;
wenzelm
parents:
64254
diff
changeset
|
462 |
new Exec(this, channel) |
64129 | 463 |
} |
64123 | 464 |
|
66570 | 465 |
override def execute(command: String, |
64191 | 466 |
progress_stdout: String => Unit = (_: String) => (), |
467 |
progress_stderr: String => Unit = (_: String) => (), |
|
73634 | 468 |
settings: Boolean = true, |
64191 | 469 |
strict: Boolean = true): Process_Result = |
470 |
exec(command).result(progress_stdout, progress_stderr, strict) |
|
64137 | 471 |
|
72340 | 472 |
override def isabelle_platform: Isabelle_Platform = Isabelle_Platform(ssh = Some(this)) |
72338 | 473 |
|
64137 | 474 |
|
475 |
/* tmp dirs */ |
|
476 |
||
64306
7b6dc1b36f20
tuned signature, in accordance to Isabelle_System;
wenzelm
parents:
64304
diff
changeset
|
477 |
def rm_tree(dir: Path): Unit = rm_tree(remote_path(dir)) |
7b6dc1b36f20
tuned signature, in accordance to Isabelle_System;
wenzelm
parents:
64304
diff
changeset
|
478 |
|
64137 | 479 |
def rm_tree(remote_dir: String): Unit = |
64304 | 480 |
execute("rm -r -f " + Bash.string(remote_dir)).check |
64137 | 481 |
|
482 |
def tmp_dir(): String = |
|
483 |
execute("mktemp -d -t tmp.XXXXXXXXXX").check.out |
|
484 |
||
75393 | 485 |
override def with_tmp_dir[A](body: Path => A): A = { |
64137 | 486 |
val remote_dir = tmp_dir() |
64233 | 487 |
try { body(Path.explode(remote_dir)) } finally { rm_tree(remote_dir) } |
64137 | 488 |
} |
64123 | 489 |
} |
66570 | 490 |
|
491 |
||
492 |
/* system operations */ |
|
493 |
||
75393 | 494 |
trait System extends AutoCloseable { |
73634 | 495 |
def close(): Unit = () |
496 |
||
66570 | 497 |
def hg_url: String = "" |
498 |
||
75500 | 499 |
def rsync_prefix: String = "" |
75517 | 500 |
def rsync_path(path: Path): String = rsync_prefix + expand_path(path).implode |
75500 | 501 |
|
66570 | 502 |
def expand_path(path: Path): Path = path.expand |
67066 | 503 |
def bash_path(path: Path): String = File.bash_path(path) |
69300
8b6ab9989bcd
is_file/is_dir/read_dir: more uniform treatment of errors and boundary cases, notably for symlinks in ssh;
wenzelm
parents:
67771
diff
changeset
|
504 |
def is_dir(path: Path): Boolean = path.is_dir |
66570 | 505 |
def is_file(path: Path): Boolean = path.is_file |
72376 | 506 |
def make_directory(path: Path): Path = Isabelle_System.make_directory(path) |
73634 | 507 |
def with_tmp_dir[A](body: Path => A): A = Isabelle_System.with_tmp_dir("tmp")(body) |
508 |
def read_file(path1: Path, path2: Path): Unit = Isabelle_System.copy_file(path1, path2) |
|
509 |
def write_file(path1: Path, path2: Path): Unit = Isabelle_System.copy_file(path2, path1) |
|
75513 | 510 |
def read_bytes(path: Path): Bytes = Bytes.read(path) |
511 |
def read(path: Path): String = File.read(path) |
|
66570 | 512 |
|
513 |
def execute(command: String, |
|
514 |
progress_stdout: String => Unit = (_: String) => (), |
|
515 |
progress_stderr: String => Unit = (_: String) => (), |
|
73634 | 516 |
settings: Boolean = true, |
66570 | 517 |
strict: Boolean = true): Process_Result = |
73634 | 518 |
Isabelle_System.bash(command, |
519 |
progress_stdout = progress_stdout, |
|
520 |
progress_stderr = progress_stderr, |
|
521 |
env = if (settings) Isabelle_System.settings() else null, |
|
522 |
strict = strict) |
|
72338 | 523 |
|
72340 | 524 |
def isabelle_platform: Isabelle_Platform = Isabelle_Platform() |
66570 | 525 |
} |
526 |
||
527 |
object Local extends System |
|
64123 | 528 |
} |