2019-03-04 07:24:56 +00:00
|
|
|
// Copyright (c) 2019 Fabian Freyer <fabian.freyer@physik.tu-berlin.de>.
|
|
|
|
|
// All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
|
//
|
|
|
|
|
// 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
|
//
|
|
|
|
|
// 2: Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
|
//
|
|
|
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors
|
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
|
// without specific prior written permission.
|
|
|
|
|
//
|
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
extern crate actix;
|
|
|
|
|
extern crate actix_web;
|
|
|
|
|
extern crate futures;
|
2019-01-03 17:15:07 +00:00
|
|
|
extern crate libc;
|
|
|
|
|
extern crate serde;
|
|
|
|
|
extern crate serde_json;
|
|
|
|
|
extern crate tokio;
|
2019-01-03 17:15:07 +00:00
|
|
|
extern crate tokio_codec;
|
|
|
|
|
extern crate tokio_io;
|
|
|
|
|
extern crate tokio_pty_process;
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate log;
|
|
|
|
|
extern crate pretty_env_logger;
|
|
|
|
|
|
|
|
|
|
use actix::*;
|
2019-01-03 17:15:07 +00:00
|
|
|
use actix_web::{fs::NamedFile, fs::StaticFiles, server, ws, App, Binary, HttpRequest, Result};
|
2019-01-03 17:15:07 +00:00
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
use futures::prelude::*;
|
|
|
|
|
|
|
|
|
|
use libc::c_ushort;
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
use std::io::Write;
|
2019-01-03 17:15:07 +00:00
|
|
|
use std::process::Command;
|
|
|
|
|
use std::time::{Duration, Instant};
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
use tokio_codec::{BytesCodec, Decoder, FramedRead};
|
2019-01-03 17:15:07 +00:00
|
|
|
use tokio_pty_process::{AsyncPtyMaster, AsyncPtyMasterWriteHalf, Child, CommandExt, PtyMaster};
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(5);
|
|
|
|
|
const CLIENT_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
|
|
|
|
|
|
type BytesMut = <BytesCodec as Decoder>::Item;
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
mod terminado;
|
|
|
|
|
use crate::terminado::TerminadoMessage;
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq, Clone)]
|
|
|
|
|
pub struct IO(BytesMut);
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
impl Message for IO {
|
|
|
|
|
type Result = ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Into<Binary> for IO {
|
|
|
|
|
fn into(self) -> Binary {
|
|
|
|
|
self.0.into()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl AsRef<[u8]> for IO {
|
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
|
|
|
|
self.0.as_ref()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<Binary> for IO {
|
|
|
|
|
fn from(b: Binary) -> Self {
|
|
|
|
|
Self(b.as_ref().into())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<String> for IO {
|
|
|
|
|
fn from(s: String) -> Self {
|
2019-01-03 17:15:07 +00:00
|
|
|
Self(s.into())
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
impl From<&str> for IO {
|
|
|
|
|
fn from(s: &str) -> Self {
|
2019-01-03 17:15:07 +00:00
|
|
|
Self(s.into())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Ws {
|
|
|
|
|
cons: Option<Addr<Cons>>,
|
|
|
|
|
hb: Instant,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Actor for Ws {
|
|
|
|
|
type Context = ws::WebsocketContext<Self>;
|
|
|
|
|
|
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
|
// Start heartbeat
|
|
|
|
|
self.hb(ctx);
|
|
|
|
|
|
|
|
|
|
// Start PTY
|
|
|
|
|
self.cons = Some(Cons::new(ctx.address()).start());
|
|
|
|
|
|
|
|
|
|
trace!("Started WebSocket");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn stopping(&mut self, _ctx: &mut Self::Context) -> Running {
|
|
|
|
|
trace!("Stopping WebSocket");
|
|
|
|
|
|
|
|
|
|
Running::Stop
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn stopped(&mut self, _ctx: &mut Self::Context) {
|
|
|
|
|
trace!("Stopped WebSocket");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Handler<IO> for Ws {
|
|
|
|
|
type Result = ();
|
|
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: IO, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
|
trace!("Ws <- Cons : {:?}", msg);
|
|
|
|
|
ctx.binary(msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
impl Handler<TerminadoMessage> for Ws {
|
|
|
|
|
type Result = ();
|
|
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: TerminadoMessage, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
|
trace!("Ws <- Cons : {:?}", msg);
|
|
|
|
|
match msg {
|
|
|
|
|
TerminadoMessage::Stdout(_) => {
|
|
|
|
|
let json = serde_json::to_string(&msg);
|
|
|
|
|
|
|
|
|
|
if let Ok(json) = json {
|
|
|
|
|
ctx.text(json);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_ => error!(r#"Invalid TerminadoMessage to Websocket: only "stdout" supported"#),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
impl Ws {
|
|
|
|
|
pub fn new() -> Self {
|
2019-01-03 17:15:07 +00:00
|
|
|
Self {
|
|
|
|
|
hb: Instant::now(),
|
|
|
|
|
cons: None,
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn hb(&self, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
|
ctx.run_interval(HEARTBEAT_INTERVAL, |act, ctx| {
|
|
|
|
|
if Instant::now().duration_since(act.hb) > CLIENT_TIMEOUT {
|
|
|
|
|
warn!("Client heartbeat timeout, disconnecting.");
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ctx.ping("");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn index(_req: &HttpRequest) -> Result<NamedFile> {
|
|
|
|
|
Ok(NamedFile::open("static/term.html")?)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl StreamHandler<ws::Message, ws::ProtocolError> for Ws {
|
|
|
|
|
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
|
|
|
|
let cons: &mut Addr<Cons> = match self.cons {
|
|
|
|
|
Some(ref mut c) => c,
|
|
|
|
|
None => {
|
|
|
|
|
error!("Console died, closing websocket.");
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
match msg {
|
|
|
|
|
ws::Message::Ping(msg) => {
|
|
|
|
|
self.hb = Instant::now();
|
|
|
|
|
ctx.pong(&msg);
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
ws::Message::Pong(_) => self.hb = Instant::now(),
|
2019-01-03 17:15:07 +00:00
|
|
|
ws::Message::Text(t) => {
|
|
|
|
|
// Attempt to parse the message as JSON.
|
|
|
|
|
if let Ok(tmsg) = TerminadoMessage::from_json(&t) {
|
|
|
|
|
cons.do_send(tmsg);
|
|
|
|
|
} else {
|
|
|
|
|
// Otherwise, it's just byte data.
|
|
|
|
|
cons.do_send(IO::from(t));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ws::Message::Binary(b) => cons.do_send(IO::from(b)),
|
2019-01-03 17:15:07 +00:00
|
|
|
ws::Message::Close(_) => ctx.stop(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Cons {
|
2019-01-03 17:15:07 +00:00
|
|
|
pty_write: Option<AsyncPtyMasterWriteHalf>,
|
2019-01-03 17:15:07 +00:00
|
|
|
child: Option<Child>,
|
|
|
|
|
ws: Addr<Ws>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Cons {
|
|
|
|
|
pub fn new(ws: Addr<Ws>) -> Self {
|
2019-01-03 17:15:07 +00:00
|
|
|
Self {
|
|
|
|
|
pty_write: None,
|
|
|
|
|
child: None,
|
|
|
|
|
ws,
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl StreamHandler<<BytesCodec as Decoder>::Item, <BytesCodec as Decoder>::Error> for Cons {
|
|
|
|
|
fn handle(&mut self, msg: <BytesCodec as Decoder>::Item, _ctx: &mut Self::Context) {
|
2019-01-03 17:15:07 +00:00
|
|
|
self.ws.do_send(TerminadoMessage::Stdout(IO(msg)));
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Actor for Cons {
|
|
|
|
|
type Context = Context<Self>;
|
|
|
|
|
|
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
|
|
|
info!("Started Cons");
|
|
|
|
|
let pty = match AsyncPtyMaster::open() {
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("Unable to open PTY: {:?}", e);
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Ok(pty) => pty,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let child = match Command::new("/bin/sh").spawn_pty_async(&pty) {
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("Unable to spawn child: {:?}", e);
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Ok(child) => child,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
info!("Spawned new child process with PID {}", child.id());
|
|
|
|
|
|
|
|
|
|
let (pty_read, pty_write) = pty.split();
|
|
|
|
|
|
|
|
|
|
self.pty_write = Some(pty_write);
|
|
|
|
|
self.child = Some(child);
|
|
|
|
|
|
|
|
|
|
Self::add_stream(FramedRead::new(pty_read, BytesCodec::new()), ctx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn stopping(&mut self, _ctx: &mut Self::Context) -> Running {
|
|
|
|
|
info!("Stopping Cons");
|
|
|
|
|
|
|
|
|
|
let child = self.child.take();
|
|
|
|
|
|
|
|
|
|
if child.is_none() {
|
|
|
|
|
// Great, child is already dead!
|
|
|
|
|
return Running::Stop;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut child = child.unwrap();
|
|
|
|
|
|
|
|
|
|
match child.kill() {
|
|
|
|
|
Ok(()) => match child.wait() {
|
|
|
|
|
Ok(exit) => info!("Child died: {:?}", exit),
|
|
|
|
|
Err(e) => error!("Child wouldn't die: {}", e),
|
|
|
|
|
},
|
|
|
|
|
Err(e) => error!("Could not kill child with PID {}: {}", child.id(), e),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Running::Stop
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn stopped(&mut self, _ctx: &mut Self::Context) {
|
|
|
|
|
info!("Stopped Cons");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Handler<IO> for Cons {
|
|
|
|
|
type Result = ();
|
|
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: IO, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
|
let pty = match self.pty_write {
|
|
|
|
|
Some(ref mut p) => p,
|
|
|
|
|
None => {
|
|
|
|
|
error!("Write half of PTY died, stopping Cons.");
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-03-22 14:04:12 +00:00
|
|
|
if let Err(e) = pty.write(msg.as_ref()) {
|
|
|
|
|
error!("Could not write to PTY: {}", e);
|
|
|
|
|
ctx.stop();
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
|
|
|
|
|
trace!("Ws -> Cons : {:?}", msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
struct Resize<T: PtyMaster> {
|
|
|
|
|
pty: T,
|
|
|
|
|
rows: c_ushort,
|
|
|
|
|
cols: c_ushort,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: PtyMaster> Future for Resize<T> {
|
|
|
|
|
type Item = ();
|
|
|
|
|
type Error = std::io::Error;
|
|
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
|
self.pty.resize(self.rows, self.cols)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Handler<TerminadoMessage> for Cons {
|
|
|
|
|
type Result = ();
|
|
|
|
|
|
|
|
|
|
fn handle(&mut self, msg: TerminadoMessage, ctx: &mut <Self as Actor>::Context) {
|
|
|
|
|
let pty = match self.pty_write {
|
|
|
|
|
Some(ref mut p) => p,
|
|
|
|
|
None => {
|
|
|
|
|
error!("Write half of PTY died, stopping Cons.");
|
|
|
|
|
ctx.stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
trace!("Ws -> Cons : {:?}", msg);
|
|
|
|
|
match msg {
|
|
|
|
|
TerminadoMessage::Stdin(io) => {
|
2019-03-22 14:04:12 +00:00
|
|
|
if let Err(e) = pty.write(io.as_ref()) {
|
|
|
|
|
error!("Could not write to PTY: {}", e);
|
|
|
|
|
ctx.stop();
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
TerminadoMessage::Resize { cols, rows } => {
|
|
|
|
|
info!("Resize: cols = {}, rows = {}", cols, rows);
|
2019-03-22 14:04:12 +00:00
|
|
|
if let Err(e) = (Resize { pty, cols, rows }).wait() {
|
2019-01-03 17:15:07 +00:00
|
|
|
error!("Resize failed: {}", e);
|
2019-03-22 14:04:12 +00:00
|
|
|
ctx.stop();
|
|
|
|
|
}
|
2019-01-03 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
TerminadoMessage::Stdout(_) => {
|
|
|
|
|
error!("Invalid Terminado Message: Stdin cannot go to PTY")
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-03 17:15:07 +00:00
|
|
|
fn main() {
|
|
|
|
|
pretty_env_logger::init();
|
|
|
|
|
|
|
|
|
|
server::new(|| {
|
|
|
|
|
App::new()
|
|
|
|
|
.handler(
|
|
|
|
|
"/static",
|
|
|
|
|
StaticFiles::new("node_modules")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.show_files_listing(),
|
|
|
|
|
)
|
2019-01-03 17:15:07 +00:00
|
|
|
.resource("/websocket", |r| r.f(|req| ws::start(req, Ws::new())))
|
2019-01-03 17:15:07 +00:00
|
|
|
.resource("/", |r| r.f(index))
|
|
|
|
|
})
|
|
|
|
|
.bind("127.0.0.1:8080")
|
|
|
|
|
.unwrap()
|
|
|
|
|
.run();
|
|
|
|
|
}
|