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
use std::io::{Read, Write};
use crate::channel::Channel;
use crate::constant::{ssh_msg_code, ssh_str};
use crate::data::Data;
use crate::error::SshResult;
pub struct ChannelExec<S: Read + Write>(pub(crate) Channel<S>);
impl<S> ChannelExec<S>
where
S: Read + Write,
{
pub(crate) fn open(channel: Channel<S>) -> Self {
ChannelExec(channel)
}
fn exec_command(&self, command: &str) -> SshResult<()> {
let mut data = Data::new();
data.put_u8(ssh_msg_code::SSH_MSG_CHANNEL_REQUEST)
.put_u32(self.0.server_channel_no)
.put_str(ssh_str::EXEC)
.put_u8(true as u8)
.put_str(command);
self.0
.get_session_mut()
.client
.as_mut()
.unwrap()
.write(data)
}
fn get_data(&mut self, v: &mut Vec<u8>) -> SshResult<()> {
let session = unsafe { &mut *self.0.session };
let results = session
.client
.as_mut()
.unwrap()
.read_data(Some(&mut self.0.window_size))?;
for mut result in results {
if result.is_empty() {
continue;
}
let message_code = result.get_u8();
match message_code {
ssh_msg_code::SSH_MSG_CHANNEL_DATA => {
let cc = result.get_u32();
if cc == self.0.client_channel_no {
v.append(&mut result.get_u8s());
}
}
ssh_msg_code::SSH_MSG_CHANNEL_CLOSE => {
let cc = result.get_u32();
if cc == self.0.client_channel_no {
self.0.remote_close = true;
self.0.close()?;
}
}
_ => self.0.other(message_code, result)?,
}
}
Ok(())
}
pub fn send_command(mut self, command: &str) -> SshResult<Vec<u8>> {
self.exec_command(command)?;
let mut r = vec![];
loop {
self.get_data(&mut r)?;
if self.0.remote_close && self.0.local_close {
break;
}
}
Ok(r)
}
}