openethereum/signer/src/ws_server/session.rs

126 lines
3.5 KiB
Rust
Raw Normal View History

2016-05-27 17:46:15 +02:00
// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
//! Session handlers factory.
use ws;
2016-05-31 20:12:47 +02:00
use sysui;
2016-05-27 17:46:15 +02:00
use std::sync::Arc;
use jsonrpc_core::IoHandler;
fn origin_is_allowed(self_origin: &str, header: Option<&Vec<u8>>) -> bool {
match header {
None => false,
Some(h) => {
let v = String::from_utf8(h.clone()).ok();
match v {
Some(ref origin) if origin.starts_with("chrome-extension://") => true,
Some(ref origin) if origin.starts_with(self_origin) => true,
Some(ref origin) if origin.starts_with(&format!("http://{}", self_origin)) => true,
_ => false
}
}
}
}
fn auth_is_valid(_header: Option<&Vec<u8>>) -> bool {
true
}
2016-05-27 17:46:15 +02:00
pub struct Session {
out: ws::Sender,
self_origin: String,
2016-05-27 17:46:15 +02:00
handler: Arc<IoHandler>,
}
impl ws::Handler for Session {
2016-05-31 20:12:47 +02:00
fn on_request(&mut self, req: &ws::Request) -> ws::Result<(ws::Response)> {
let origin = req.header("origin").or_else(|| req.header("Origin"));
let host = req.header("host").or_else(|| req.header("Host"));
// Check request origin and host header.
if !origin_is_allowed(&self.self_origin, origin) && !origin_is_allowed(&self.self_origin, host) {
return Ok(ws::Response::forbidden("You are not allowed to access system ui.".into()));
}
// Check authorization
if !auth_is_valid(req.header("authorization")) {
return Ok(ws::Response::forbidden("You are not authorized.".into()));
}
2016-05-31 20:12:47 +02:00
// Detect if it's a websocket request.
if req.header("sec-websocket-key").is_some() {
return ws::Response::from_request(req);
}
// Otherwise try to serve a page.
sysui::handle(req.resource())
2016-05-31 20:21:46 +02:00
.map_or_else(
// return error
|| Ok(ws::Response::not_found("Page not found".into())),
2016-05-31 20:21:46 +02:00
// or serve the file
|f| {
let content_len = format!("{}", f.content.as_bytes().len());
let mut res = ws::Response::ok(f.content.into());
{
let mut headers = res.headers_mut();
headers.push(("Server".into(), b"Parity/SystemUI".to_vec()));
headers.push(("Connection".into(), b"Closed".to_vec()));
headers.push(("Content-Length".into(), content_len.as_bytes().to_vec()));
headers.push(("Content-Type".into(), f.mime.as_bytes().to_vec()));
2016-06-02 17:14:15 +02:00
if !f.safe_to_embed {
headers.push(("X-Frame-Options".into(), b"SAMEORIGIN".to_vec()));
}
2016-05-31 20:21:46 +02:00
}
Ok(res)
})
2016-05-31 20:12:47 +02:00
}
2016-05-27 17:46:15 +02:00
fn on_message(&mut self, msg: ws::Message) -> ws::Result<()> {
let req = try!(msg.as_text());
match self.handler.handle_request(req) {
Some(res) => self.out.send(res),
None => Ok(()),
}
}
}
pub struct Factory {
handler: Arc<IoHandler>,
self_origin: String,
2016-05-27 17:46:15 +02:00
}
impl Factory {
pub fn new(handler: Arc<IoHandler>, self_origin: String) -> Self {
2016-05-27 17:46:15 +02:00
Factory {
handler: handler,
self_origin: self_origin,
2016-05-27 17:46:15 +02:00
}
}
}
impl ws::Factory for Factory {
type Handler = Session;
fn connection_made(&mut self, sender: ws::Sender) -> Self::Handler {
Session {
out: sender,
self_origin: self.self_origin.clone(),
2016-05-27 17:46:15 +02:00
handler: self.handler.clone(),
}
}
}