// This file is part of Substrate. // Copyright (C) 2017-2021 Parity Technologies (UK) Ltd. // SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 // This program 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. // This program 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 this program. If not, see . //! Substrate RPC servers. #![warn(missing_docs)] mod middleware; use jsonrpc_core::{IoHandlerExtension, MetaIoHandler}; use log::error; use pubsub::PubSubMetadata; use std::io; const MEGABYTE: usize = 1024 * 1024; /// Maximal payload accepted by RPC servers. pub const RPC_MAX_PAYLOAD_DEFAULT: usize = 15 * MEGABYTE; /// Default maximum number of connections for WS RPC servers. const WS_MAX_CONNECTIONS: usize = 100; /// Default thread pool size for RPC HTTP servers. const HTTP_THREADS: usize = 4; /// The RPC IoHandler containing all requested APIs. pub type RpcHandler = pubsub::PubSubHandler; pub use self::inner::*; pub use middleware::{RpcMetrics, RpcMiddleware}; /// Construct rpc `IoHandler` pub fn rpc_handler( extension: impl IoHandlerExtension, rpc_middleware: RpcMiddleware, ) -> RpcHandler { let io_handler = MetaIoHandler::with_middleware(rpc_middleware); let mut io = pubsub::PubSubHandler::new(io_handler); extension.augment(&mut io); // add an endpoint to list all available methods. let mut methods = io.iter().map(|x| x.0.clone()).collect::>(); io.add_method("rpc_methods", { methods.sort(); let methods = serde_json::to_value(&methods) .expect("Serialization of Vec is infallible; qed"); move |_| { Ok(serde_json::json!({ "version": 1, "methods": methods.clone(), })) } }); io } #[cfg(not(target_os = "unknown"))] mod inner { use super::*; /// Type alias for ipc server pub type IpcServer = ipc::Server; /// Type alias for http server pub type HttpServer = http::Server; /// Type alias for ws server pub type WsServer = ws::Server; /// Start HTTP server listening on given address. /// /// **Note**: Only available if `not(target_os = "unknown")`. pub fn start_http( addr: &std::net::SocketAddr, thread_pool_size: Option, cors: Option<&Vec>, io: RpcHandler, maybe_max_payload_mb: Option, ) -> io::Result { let max_request_body_size = maybe_max_payload_mb .map(|mb| mb.saturating_mul(MEGABYTE)) .unwrap_or(RPC_MAX_PAYLOAD_DEFAULT); http::ServerBuilder::new(io) .threads(thread_pool_size.unwrap_or(HTTP_THREADS)) .health_api(("/health", "system_health")) .allowed_hosts(hosts_filtering(cors.is_some())) .rest_api(if cors.is_some() { http::RestApi::Secure } else { http::RestApi::Unsecure }) .cors(map_cors::(cors)) .max_request_body_size(max_request_body_size) .start_http(addr) } /// Start IPC server listening on given path. /// /// **Note**: Only available if `not(target_os = "unknown")`. pub fn start_ipc( addr: &str, io: RpcHandler, ) -> io::Result { let builder = ipc::ServerBuilder::new(io); #[cfg(target_os = "unix")] builder.set_security_attributes({ let security_attributes = ipc::SecurityAttributes::empty(); security_attributes.set_mode(0o600)?; security_attributes }); builder.start(addr) } /// Start WS server listening on given address. /// /// **Note**: Only available if `not(target_os = "unknown")`. pub fn start_ws< M: pubsub::PubSubMetadata + From>, >( addr: &std::net::SocketAddr, max_connections: Option, cors: Option<&Vec>, io: RpcHandler, maybe_max_payload_mb: Option, ) -> io::Result { let rpc_max_payload = maybe_max_payload_mb .map(|mb| mb.saturating_mul(MEGABYTE)) .unwrap_or(RPC_MAX_PAYLOAD_DEFAULT); ws::ServerBuilder::with_meta_extractor(io, |context: &ws::RequestContext| { context.sender().into() }) .max_payload(rpc_max_payload) .max_connections(max_connections.unwrap_or(WS_MAX_CONNECTIONS)) .allowed_origins(map_cors(cors)) .allowed_hosts(hosts_filtering(cors.is_some())) .start(addr) .map_err(|err| match err { ws::Error::Io(io) => io, ws::Error::ConnectionClosed => io::ErrorKind::BrokenPipe.into(), e => { error!("{}", e); io::ErrorKind::Other.into() }, }) } fn map_cors From<&'a str>>( cors: Option<&Vec>, ) -> http::DomainsValidation { cors.map(|x| x.iter().map(AsRef::as_ref).map(Into::into).collect::>()) .into() } fn hosts_filtering(enable: bool) -> http::DomainsValidation { if enable { // NOTE The listening address is whitelisted by default. // Setting an empty vector here enables the validation // and allows only the listening address. http::DomainsValidation::AllowOnly(vec![]) } else { http::DomainsValidation::Disabled } } } #[cfg(target_os = "unknown")] mod inner {}