Files
continuwuity/src/service/admin/mod.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

379 lines
11 KiB
Rust
Raw Normal View History

2024-06-10 06:02:17 +00:00
pub mod console;
mod create;
mod grant;
mod startup;
2024-06-10 06:02:17 +00:00
2024-07-05 07:52:05 +00:00
use std::{
future::Future,
pin::Pin,
2024-07-28 09:03:17 +00:00
sync::{Arc, RwLock as StdRwLock, Weak},
2024-07-05 07:52:05 +00:00
};
2024-06-10 06:02:17 +00:00
2024-07-04 03:26:19 +00:00
use async_trait::async_trait;
2024-08-28 04:09:46 +00:00
use conduit::{debug, err, error, error::default_log, pdu::PduBuilder, Error, PduEvent, Result, Server};
2024-06-10 06:02:17 +00:00
pub use create::create_admin_room;
2024-08-08 17:18:30 +00:00
use futures::{FutureExt, TryFutureExt};
use loole::{Receiver, Sender};
2024-06-10 06:02:17 +00:00
use ruma::{
events::room::message::{Relation, RoomMessageEventContent},
OwnedEventId, OwnedRoomId, RoomId, UserId,
2024-06-10 06:02:17 +00:00
};
use tokio::sync::{Mutex, RwLock};
2024-06-10 06:02:17 +00:00
2024-08-28 07:05:13 +00:00
use crate::{account_data, globals, rooms, rooms::state::RoomMutexGuard, Dep};
2024-06-10 06:02:17 +00:00
pub struct Service {
2024-07-18 06:37:47 +00:00
services: Services,
2024-07-25 22:13:22 +00:00
sender: Sender<CommandInput>,
receiver: Mutex<Receiver<CommandInput>>,
2024-08-28 01:33:58 +00:00
pub handle: RwLock<Option<Processor>>,
2024-07-05 07:52:05 +00:00
pub complete: StdRwLock<Option<Completer>>,
2024-06-10 06:02:17 +00:00
#[cfg(feature = "console")]
pub console: Arc<console::Console>,
}
2024-07-18 06:37:47 +00:00
struct Services {
server: Arc<Server>,
globals: Dep<globals::Service>,
alias: Dep<rooms::alias::Service>,
timeline: Dep<rooms::timeline::Service>,
state: Dep<rooms::state::Service>,
state_cache: Dep<rooms::state_cache::Service>,
2024-08-28 07:05:13 +00:00
account_data: Dep<account_data::Service>,
2024-07-28 09:03:17 +00:00
services: StdRwLock<Option<Weak<crate::Services>>>,
2024-07-18 06:37:47 +00:00
}
2024-08-28 04:09:46 +00:00
/// Inputs to a command are a multi-line string and optional reply_id.
2024-06-10 06:02:17 +00:00
#[derive(Debug)]
2024-07-25 22:13:22 +00:00
pub struct CommandInput {
pub command: String,
pub reply_id: Option<OwnedEventId>,
2024-06-10 06:02:17 +00:00
}
2024-08-28 04:09:46 +00:00
/// Prototype of the tab-completer. The input is buffered text when tab
/// asserted; the output will fully replace the input buffer.
pub type Completer = fn(&str) -> String;
2024-08-28 04:09:46 +00:00
/// Prototype of the command processor. This is a callback supplied by the
/// reloadable admin module.
2024-08-28 01:33:58 +00:00
pub type Processor = fn(Arc<crate::Services>, CommandInput) -> ProcessorFuture;
2024-08-28 04:09:46 +00:00
/// Return type of the processor
2024-08-28 01:33:58 +00:00
pub type ProcessorFuture = Pin<Box<dyn Future<Output = ProcessorResult> + Send>>;
2024-08-28 04:09:46 +00:00
/// Result wrapping of a command's handling. Both variants are complete message
/// events which have digested any prior errors. The wrapping preserves whether
/// the command failed without interpreting the text. Ok(None) outputs are
/// dropped to produce no response.
pub type ProcessorResult = Result<Option<CommandOutput>, CommandOutput>;
/// Alias for the output structure.
pub type CommandOutput = RoomMessageEventContent;
/// Maximum number of commands which can be queued for dispatch.
const COMMAND_QUEUE_LIMIT: usize = 512;
2024-07-04 03:26:19 +00:00
#[async_trait]
impl crate::Service for Service {
2024-07-20 23:38:20 +00:00
fn build(args: crate::Args<'_>) -> Result<Arc<Self>> {
let (sender, receiver) = loole::bounded(COMMAND_QUEUE_LIMIT);
2024-05-27 03:17:20 +00:00
Ok(Arc::new(Self {
2024-07-18 06:37:47 +00:00
services: Services {
server: args.server.clone(),
globals: args.depend::<globals::Service>("globals"),
alias: args.depend::<rooms::alias::Service>("rooms::alias"),
timeline: args.depend::<rooms::timeline::Service>("rooms::timeline"),
state: args.depend::<rooms::state::Service>("rooms::state"),
state_cache: args.depend::<rooms::state_cache::Service>("rooms::state_cache"),
2024-08-28 07:05:13 +00:00
account_data: args.depend::<account_data::Service>("account_data"),
2024-07-27 07:17:07 +00:00
services: None.into(),
2024-07-18 06:37:47 +00:00
},
2024-06-10 06:02:17 +00:00
sender,
receiver: Mutex::new(receiver),
2024-07-05 08:39:37 +00:00
handle: RwLock::new(None),
2024-07-05 07:52:05 +00:00
complete: StdRwLock::new(None),
2024-06-10 06:02:17 +00:00
#[cfg(feature = "console")]
2024-07-20 23:38:20 +00:00
console: console::Console::new(&args),
2024-05-27 03:17:20 +00:00
}))
2024-06-10 06:02:17 +00:00
}
async fn worker(self: Arc<Self>) -> Result<()> {
let receiver = self.receiver.lock().await;
2024-07-18 06:37:47 +00:00
let mut signals = self.services.server.signal.subscribe();
2024-08-28 04:09:46 +00:00
self.startup_execute().await?;
self.console_auto_start().await;
loop {
tokio::select! {
command = receiver.recv_async() => match command {
Ok(command) => self.handle_command(command).await,
Err(_) => break,
},
sig = signals.recv() => match sig {
Ok(sig) => self.handle_signal(sig).await,
Err(_) => continue,
},
}
}
self.console_auto_stop().await; //TODO: not unwind safe
2024-07-04 03:26:19 +00:00
Ok(())
}
2024-07-04 03:26:19 +00:00
fn interrupt(&self) {
2024-06-10 06:02:17 +00:00
#[cfg(feature = "console")]
self.console.interrupt();
if !self.sender.is_closed() {
self.sender.close();
}
}
2024-07-04 03:26:19 +00:00
fn name(&self) -> &str { crate::service::make_name(std::module_path!()) }
}
impl Service {
2024-08-28 04:09:46 +00:00
/// Sends markdown message (not an m.notice for notification reasons) to the
/// admin room as the admin user.
pub async fn send_text(&self, body: &str) {
2024-06-16 02:10:47 +00:00
self.send_message(RoomMessageEventContent::text_markdown(body))
2024-08-08 17:18:30 +00:00
.await
.ok();
}
2024-06-10 06:02:17 +00:00
2024-08-28 04:09:46 +00:00
/// Sends a message to the admin room as the admin user (see send_text() for
/// convenience).
2024-08-08 17:18:30 +00:00
pub async fn send_message(&self, message_content: RoomMessageEventContent) -> Result<()> {
let user_id = &self.services.globals.server_user;
let room_id = self.get_admin_room().await?;
self.respond_to_room(message_content, &room_id, user_id)
.boxed()
.await
}
2024-08-28 04:09:46 +00:00
/// Posts a command to the command processor queue and returns. Processing
/// will take place on the service worker's task asynchronously. Errors if
/// the queue is full.
pub fn command(&self, command: String, reply_id: Option<OwnedEventId>) -> Result<()> {
self.sender
.send(CommandInput {
command,
reply_id,
})
.map_err(|e| err!("Failed to enqueue admin command: {e:?}"))
}
2024-08-28 04:09:46 +00:00
/// Dispatches a comamnd to the processor on the current task and waits for
/// completion.
2024-08-28 01:33:58 +00:00
pub async fn command_in_place(&self, command: String, reply_id: Option<OwnedEventId>) -> ProcessorResult {
2024-07-25 22:13:22 +00:00
self.process_command(CommandInput {
command,
reply_id,
})
.await
}
2024-08-28 04:09:46 +00:00
/// Invokes the tab-completer to complete the command. When unavailable,
/// None is returned.
2024-07-05 07:52:05 +00:00
pub fn complete_command(&self, command: &str) -> Option<String> {
self.complete
.read()
.expect("locked for reading")
.map(|complete| complete(command))
}
async fn handle_signal(&self, #[allow(unused_variables)] sig: &'static str) {
#[cfg(feature = "console")]
2024-06-16 19:42:16 +00:00
self.console.handle_signal(sig).await;
2024-06-10 06:02:17 +00:00
}
2024-07-25 22:13:22 +00:00
async fn handle_command(&self, command: CommandInput) {
match self.process_command(command).await {
Ok(None) => debug!("Command successful with no response"),
2024-08-08 17:18:30 +00:00
Ok(Some(output)) | Err(output) => self
.handle_response(output)
.await
.unwrap_or_else(default_log),
2024-06-10 06:02:17 +00:00
}
}
2024-08-28 01:33:58 +00:00
async fn process_command(&self, command: CommandInput) -> ProcessorResult {
2024-08-28 04:09:46 +00:00
let handle = &self
.handle
.read()
.await
.expect("Admin module is not loaded");
let services = self
2024-07-28 09:03:17 +00:00
.services
.services
.read()
.expect("locked")
.as_ref()
.and_then(Weak::upgrade)
2024-08-28 04:09:46 +00:00
.expect("Services self-reference not initialized.");
2024-07-27 07:17:07 +00:00
2024-08-28 04:09:46 +00:00
handle(services, command).await
2024-06-10 06:02:17 +00:00
}
/// Checks whether a given user is an admin of this server
2024-08-08 17:18:30 +00:00
pub async fn user_is_admin(&self, user_id: &UserId) -> bool {
let Ok(admin_room) = self.get_admin_room().await else {
return false;
};
self.services
.state_cache
.is_joined(user_id, &admin_room)
.await
2024-06-10 06:02:17 +00:00
}
/// Gets the room ID of the admin room
///
/// Errors are propagated from the database, and will have None if there is
/// no admin room
2024-08-08 17:18:30 +00:00
pub async fn get_admin_room(&self) -> Result<OwnedRoomId> {
let room_id = self
2024-07-18 06:37:47 +00:00
.services
.alias
2024-08-08 17:18:30 +00:00
.resolve_local_alias(&self.services.globals.admin_alias)
.await?;
2024-08-08 17:18:30 +00:00
self.services
.state_cache
.is_joined(&self.services.globals.server_user, &room_id)
.await
.then_some(room_id)
.ok_or_else(|| err!(Request(NotFound("Admin user not joined to admin room"))))
2024-06-10 06:02:17 +00:00
}
2024-08-08 17:18:30 +00:00
async fn handle_response(&self, content: RoomMessageEventContent) -> Result<()> {
2024-07-20 23:38:20 +00:00
let Some(Relation::Reply {
in_reply_to,
}) = content.relates_to.as_ref()
else {
2024-08-08 17:18:30 +00:00
return Ok(());
2024-07-20 23:38:20 +00:00
};
2024-06-10 06:02:17 +00:00
2024-08-08 17:18:30 +00:00
let Ok(pdu) = self.services.timeline.get_pdu(&in_reply_to.event_id).await else {
2024-08-28 04:09:46 +00:00
error!(
event_id = ?in_reply_to.event_id,
"Missing admin command in_reply_to event"
);
2024-08-08 17:18:30 +00:00
return Ok(());
2024-07-20 23:38:20 +00:00
};
2024-08-08 17:18:30 +00:00
let response_sender = if self.is_admin_room(&pdu.room_id).await {
2024-07-18 06:37:47 +00:00
&self.services.globals.server_user
2024-07-20 23:38:20 +00:00
} else {
&pdu.sender
};
self.respond_to_room(content, &pdu.room_id, response_sender)
2024-10-03 10:03:31 +00:00
.boxed()
2024-08-08 17:18:30 +00:00
.await
2024-07-20 23:38:20 +00:00
}
2024-08-08 17:18:30 +00:00
async fn respond_to_room(
&self, content: RoomMessageEventContent, room_id: &RoomId, user_id: &UserId,
) -> Result<()> {
assert!(self.user_is_admin(user_id).await, "sender is not admin");
2024-07-20 23:38:20 +00:00
2024-08-08 17:18:30 +00:00
let state_lock = self.services.state.mutex.lock(room_id).await;
2024-07-20 23:38:20 +00:00
if let Err(e) = self
2024-07-18 06:37:47 +00:00
.services
2024-07-20 23:38:20 +00:00
.timeline
.build_and_append_pdu(PduBuilder::timeline(&content), user_id, room_id, &state_lock)
2024-07-15 04:19:43 +00:00
.await
2024-07-20 23:38:20 +00:00
{
self.handle_response_error(e, room_id, user_id, &state_lock)
.await
.unwrap_or_else(default_log);
}
2024-08-08 17:18:30 +00:00
Ok(())
2024-06-10 06:02:17 +00:00
}
2024-07-20 23:38:20 +00:00
async fn handle_response_error(
&self, e: Error, room_id: &RoomId, user_id: &UserId, state_lock: &RoomMutexGuard,
) -> Result<()> {
error!("Failed to build and append admin room response PDU: \"{e}\"");
let content = RoomMessageEventContent::text_plain(format!(
2024-07-20 23:38:20 +00:00
"Failed to build and append admin room PDU: \"{e}\"\n\nThe original admin command may have finished \
successfully, but we could not return the output."
));
2024-07-18 06:37:47 +00:00
self.services
.timeline
.build_and_append_pdu(PduBuilder::timeline(&content), user_id, room_id, state_lock)
2024-07-20 23:38:20 +00:00
.await?;
2024-07-20 23:38:20 +00:00
Ok(())
}
2024-07-20 23:38:20 +00:00
pub async fn is_admin_command(&self, pdu: &PduEvent, body: &str) -> bool {
// Server-side command-escape with public echo
let is_escape = body.starts_with('\\');
let is_public_escape = is_escape && body.trim_start_matches('\\').starts_with("!admin");
2024-07-20 23:38:20 +00:00
// Admin command with public echo (in admin room)
2024-07-18 06:37:47 +00:00
let server_user = &self.services.globals.server_user;
2024-07-20 23:38:20 +00:00
let is_public_prefix = body.starts_with("!admin") || body.starts_with(server_user.as_str());
2024-07-20 23:38:20 +00:00
// Expected backward branch
if !is_public_escape && !is_public_prefix {
return false;
}
2024-07-20 23:38:20 +00:00
// only allow public escaped commands by local admins
2024-07-22 07:43:51 +00:00
if is_public_escape && !self.services.globals.user_is_local(&pdu.sender) {
2024-07-20 23:38:20 +00:00
return false;
}
2024-07-20 23:38:20 +00:00
// Check if server-side command-escape is disabled by configuration
2024-07-18 06:37:47 +00:00
if is_public_escape && !self.services.globals.config.admin_escape_commands {
2024-07-20 23:38:20 +00:00
return false;
}
2024-07-20 23:38:20 +00:00
// Prevent unescaped !admin from being used outside of the admin room
2024-08-08 17:18:30 +00:00
if is_public_prefix && !self.is_admin_room(&pdu.room_id).await {
2024-07-20 23:38:20 +00:00
return false;
}
2024-07-20 23:38:20 +00:00
// Only senders who are admin can proceed
2024-08-08 17:18:30 +00:00
if !self.user_is_admin(&pdu.sender).await {
2024-07-20 23:38:20 +00:00
return false;
}
2024-07-20 23:38:20 +00:00
// This will evaluate to false if the emergency password is set up so that
// the administrator can execute commands as conduit
2024-07-18 06:37:47 +00:00
let emergency_password_set = self.services.globals.emergency_password().is_some();
2024-07-20 23:38:20 +00:00
let from_server = pdu.sender == *server_user && !emergency_password_set;
2024-08-08 17:18:30 +00:00
if from_server && self.is_admin_room(&pdu.room_id).await {
2024-07-20 23:38:20 +00:00
return false;
}
2024-07-20 23:38:20 +00:00
// Authentic admin command
true
}
#[must_use]
2024-08-08 17:18:30 +00:00
pub async fn is_admin_room(&self, room_id_: &RoomId) -> bool {
self.get_admin_room()
.map_ok(|room_id| room_id == room_id_)
.await
.unwrap_or(false)
}
2024-07-27 07:17:07 +00:00
/// Sets the self-reference to crate::Services which will provide context to
/// the admin commands.
2024-07-28 09:03:17 +00:00
pub(super) fn set_services(&self, services: &Option<Arc<crate::Services>>) {
let receiver = &mut *self.services.services.write().expect("locked for writing");
let weak = services.as_ref().map(Arc::downgrade);
*receiver = weak;
2024-07-27 07:17:07 +00:00
}
}