Add ws-max-paxload (#155)

This commit is contained in:
rakita 2020-12-09 11:48:27 +01:00 committed by GitHub
parent 56131b6d92
commit 647ff31942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 0 deletions

View File

@ -466,6 +466,10 @@ usage! {
"--ws-max-connections=[CONN]", "--ws-max-connections=[CONN]",
"Maximum number of allowed concurrent WebSockets JSON-RPC connections.", "Maximum number of allowed concurrent WebSockets JSON-RPC connections.",
ARG arg_ws_max_payload: (usize) = 5usize, or |c: &Config| c.websockets.as_ref()?.max_payload,
"--ws-max-payload=[MB]",
"Specify maximum size for WS JSON-RPC requests in megabytes.",
["Metrics"] ["Metrics"]
FLAG flag_metrics: (bool) = false, or |c: &Config| c.metrics.as_ref()?.enable.clone(), FLAG flag_metrics: (bool) = false, or |c: &Config| c.metrics.as_ref()?.enable.clone(),
"--metrics", "--metrics",
@ -903,6 +907,7 @@ struct Ws {
origins: Option<Vec<String>>, origins: Option<Vec<String>>,
hosts: Option<Vec<String>>, hosts: Option<Vec<String>>,
max_connections: Option<usize>, max_connections: Option<usize>,
max_payload: Option<usize>,
} }
#[derive(Default, Debug, PartialEq, Deserialize)] #[derive(Default, Debug, PartialEq, Deserialize)]
@ -1323,6 +1328,7 @@ mod tests {
arg_ws_origins: "none".into(), arg_ws_origins: "none".into(),
arg_ws_hosts: "none".into(), arg_ws_hosts: "none".into(),
arg_ws_max_connections: 100, arg_ws_max_connections: 100,
arg_ws_max_payload: 5,
// IPC // IPC
flag_no_ipc: false, flag_no_ipc: false,
@ -1512,6 +1518,7 @@ mod tests {
origins: Some(vec!["none".into()]), origins: Some(vec!["none".into()]),
hosts: None, hosts: None,
max_connections: None, max_connections: None,
max_payload: None,
}), }),
rpc: Some(Rpc { rpc: Some(Rpc {
disable: Some(true), disable: Some(true),

View File

@ -951,6 +951,7 @@ impl Configuration {
signer_path: self.directories().signer.into(), signer_path: self.directories().signer.into(),
support_token_api, support_token_api,
max_connections: self.args.arg_ws_max_connections, max_connections: self.args.arg_ws_max_connections,
max_payload: self.args.arg_ws_max_payload,
}; };
Ok(conf) Ok(conf)
@ -1483,6 +1484,7 @@ mod tests {
signer_path: expected.into(), signer_path: expected.into(),
support_token_api: true, support_token_api: true,
max_connections: 100, max_connections: 100,
max_payload: 5,
}, },
LogConfig { LogConfig {
color: !cfg!(windows), color: !cfg!(windows),

View File

@ -97,6 +97,7 @@ pub struct WsConfiguration {
pub hosts: Option<Vec<String>>, pub hosts: Option<Vec<String>>,
pub signer_path: PathBuf, pub signer_path: PathBuf,
pub support_token_api: bool, pub support_token_api: bool,
pub max_payload: usize,
} }
impl Default for WsConfiguration { impl Default for WsConfiguration {
@ -116,6 +117,7 @@ impl Default for WsConfiguration {
hosts: Some(Vec::new()), hosts: Some(Vec::new()),
signer_path: replace_home(&data_dir, "$BASE/signer").into(), signer_path: replace_home(&data_dir, "$BASE/signer").into(),
support_token_api: true, support_token_api: true,
max_payload: 5,
} }
} }
} }
@ -194,6 +196,7 @@ pub fn new_ws<D: rpc_apis::Dependencies>(
rpc::WsExtractor::new(path.clone()), rpc::WsExtractor::new(path.clone()),
rpc::WsExtractor::new(path.clone()), rpc::WsExtractor::new(path.clone()),
rpc::WsStats::new(deps.stats.clone()), rpc::WsStats::new(deps.stats.clone()),
conf.max_payload,
); );
// match start_result { // match start_result {

View File

@ -223,6 +223,7 @@ pub fn start_ws<M, S, H, T, U, V>(
extractor: T, extractor: T,
middleware: V, middleware: V,
stats: U, stats: U,
max_payload: usize,
) -> Result<ws::Server, ws::Error> ) -> Result<ws::Server, ws::Error>
where where
M: jsonrpc_core::Metadata, M: jsonrpc_core::Metadata,
@ -237,6 +238,7 @@ where
.allowed_origins(allowed_origins) .allowed_origins(allowed_origins)
.allowed_hosts(allowed_hosts) .allowed_hosts(allowed_hosts)
.max_connections(max_connections) .max_connections(max_connections)
.max_payload(max_payload * 1024 * 1024)
.session_stats(stats) .session_stats(stats)
.start(addr) .start(addr)
} }

View File

@ -44,6 +44,7 @@ pub fn serve() -> (Server<ws::Server>, usize, GuardedAuthCodes) {
extractors::WsExtractor::new(Some(&authcodes.path)), extractors::WsExtractor::new(Some(&authcodes.path)),
extractors::WsExtractor::new(Some(&authcodes.path)), extractors::WsExtractor::new(Some(&authcodes.path)),
extractors::WsStats::new(stats), extractors::WsStats::new(stats),
5 * 1024 * 1024,
) )
.unwrap() .unwrap()
}); });