use core::ops::Deref; use zeroize::{Zeroize, Zeroizing}; use rand_core::OsRng; use ciphersuite::{ group::ff::{Field, PrimeField}, Ciphersuite, Ristretto, }; use schnorr_signatures::SchnorrSignature; use serde::{Serialize, Deserialize}; use reqwest::Client; use serai_env as env; use crate::{Service, Metadata, QueuedMessage, message_challenge, ack_challenge}; pub struct MessageQueue { pub service: Service, priv_key: Zeroizing<::F>, pub_key: ::G, client: Client, url: String, } impl MessageQueue { pub fn new( service: Service, mut url: String, priv_key: Zeroizing<::F>, ) -> MessageQueue { // Allow MESSAGE_QUEUE_RPC to either be a full URL or just a hostname // While we could stitch together multiple variables, our control over this service makes this // fine if !url.contains(':') { url += ":2287"; } if !url.starts_with("http://") { url = "http://".to_string() + &url; } MessageQueue { service, pub_key: Ristretto::generator() * priv_key.deref(), priv_key, client: Client::new(), url, } } pub fn from_env(service: Service) -> MessageQueue { let url = env::var("MESSAGE_QUEUE_RPC").expect("message-queue RPC wasn't specified"); let priv_key: Zeroizing<::F> = { let key_str = Zeroizing::new(env::var("MESSAGE_QUEUE_KEY").expect("message-queue key wasn't specified")); let key_bytes = Zeroizing::new( hex::decode(&key_str).expect("invalid message-queue key specified (wasn't hex)"), ); let mut bytes = <::F as PrimeField>::Repr::default(); bytes.copy_from_slice(&key_bytes); let key = Zeroizing::new( Option::from(<::F as PrimeField>::from_repr(bytes)) .expect("invalid message-queue key specified"), ); bytes.zeroize(); key }; Self::new(service, url, priv_key) } async fn json_call(&self, method: &'static str, params: serde_json::Value) -> serde_json::Value { #[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)] struct JsonRpcRequest { jsonrpc: &'static str, method: &'static str, params: serde_json::Value, id: u64, } let res = loop { // Make the request match self .client .post(&self.url) .json(&JsonRpcRequest { jsonrpc: "2.0", method, params: params.clone(), id: 0 }) .send() .await { Ok(req) => { // Get the response match req.text().await { Ok(res) => break res, Err(e) => { dbg!(e); } } } Err(e) => { dbg!(e); } } // Sleep for a second before trying again tokio::time::sleep(core::time::Duration::from_secs(1)).await; }; let json = serde_json::from_str::(&res).expect("message-queue returned invalid JSON"); if json.get("result").is_none() { panic!("call failed: {json}"); } json } pub async fn queue(&self, metadata: Metadata, msg: Vec) { // TODO: Should this use OsRng? Deterministic or deterministic + random may be better. let nonce = Zeroizing::new(::F::random(&mut OsRng)); let nonce_pub = Ristretto::generator() * nonce.deref(); let sig = SchnorrSignature::::sign( &self.priv_key, nonce, message_challenge( metadata.from, self.pub_key, metadata.to, &metadata.intent, &msg, nonce_pub, ), ) .serialize(); let json = self.json_call("queue", serde_json::json!([metadata, msg, sig])).await; if json.get("result") != Some(&serde_json::Value::Bool(true)) { panic!("failed to queue message: {json}"); } } pub async fn next(&self, expected: u64) -> QueuedMessage { loop { let json = self.json_call("next", serde_json::json!([self.service, expected])).await; // Convert from a Value to a type via reserialization let msg: Option = serde_json::from_str( &serde_json::to_string( &json.get("result").expect("successful JSON RPC call didn't have result"), ) .unwrap(), ) .expect("next didn't return an Option"); // If there wasn't a message, check again in 1s let Some(msg) = msg else { tokio::time::sleep(core::time::Duration::from_secs(1)).await; continue; }; // Verify the message // Verify the sender is sane if matches!(self.service, Service::Processor(_)) { assert_eq!(msg.from, Service::Coordinator, "non-coordinator sent processor message"); } else { assert!( matches!(msg.from, Service::Processor(_)), "non-processor sent coordinator message" ); } // TODO: Verify the sender's signature // TODO: Check the ID is sane return msg; } } pub async fn ack(&self, id: u64) { // TODO: Should this use OsRng? Deterministic or deterministic + random may be better. let nonce = Zeroizing::new(::F::random(&mut OsRng)); let nonce_pub = Ristretto::generator() * nonce.deref(); let sig = SchnorrSignature::::sign( &self.priv_key, nonce, ack_challenge(self.service, self.pub_key, id, nonce_pub), ) .serialize(); let json = self.json_call("ack", serde_json::json!([self.service, id, sig])).await; if json.get("result") != Some(&serde_json::Value::Bool(true)) { panic!("failed to ack message {id}: {json}"); } } }