2022-03-08 16:41:38 +01:00
|
|
|
use capnp::capability::Promise;
|
|
|
|
use capnp::Error;
|
|
|
|
use capnp_rpc::pry;
|
2022-06-24 14:35:19 +02:00
|
|
|
use rsasl::mechname::Mechname;
|
2022-03-12 17:31:53 +01:00
|
|
|
use rsasl::property::AuthId;
|
2022-06-24 13:57:47 +02:00
|
|
|
use std::fmt;
|
|
|
|
use std::fmt::{Formatter, Write};
|
2022-03-12 17:31:53 +01:00
|
|
|
use std::io::Cursor;
|
2022-10-05 17:28:47 +02:00
|
|
|
use rsasl::prelude::{MessageSent, Session};
|
|
|
|
use rsasl::prelude::State as SaslState;
|
2022-06-24 13:57:47 +02:00
|
|
|
use tracing::Span;
|
2022-03-08 16:41:38 +01:00
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
use crate::capnp::session::APISession;
|
|
|
|
use crate::session::SessionManager;
|
2022-03-12 02:00:55 +01:00
|
|
|
use api::authenticationsystem_capnp::authentication::{
|
2022-03-12 17:31:53 +01:00
|
|
|
AbortParams, AbortResults, Server as AuthenticationSystem, StepParams, StepResults,
|
2022-03-08 16:41:38 +01:00
|
|
|
};
|
2022-03-12 17:31:53 +01:00
|
|
|
use api::authenticationsystem_capnp::{response, response::Error as ErrorCode};
|
2022-03-08 16:41:38 +01:00
|
|
|
|
2022-06-24 13:57:47 +02:00
|
|
|
const TARGET: &str = "bffh::api::authenticationsystem";
|
|
|
|
|
2022-03-08 16:41:38 +01:00
|
|
|
pub struct Authentication {
|
2022-06-24 13:57:47 +02:00
|
|
|
span: Span,
|
2022-03-08 16:41:38 +01:00
|
|
|
state: State,
|
|
|
|
}
|
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
impl Authentication {
|
2022-06-24 14:35:19 +02:00
|
|
|
pub fn new(
|
|
|
|
parent: &Span,
|
|
|
|
mechanism: &Mechname, /* TODO: this is stored in session as well, get it out of there. */
|
|
|
|
session: Session,
|
|
|
|
sessionmanager: SessionManager,
|
|
|
|
) -> Self {
|
|
|
|
let span = tracing::info_span!(
|
|
|
|
target: TARGET,
|
|
|
|
parent: parent,
|
|
|
|
"Authentication",
|
|
|
|
mechanism = mechanism.as_str()
|
|
|
|
);
|
2022-06-24 13:57:47 +02:00
|
|
|
tracing::trace!(
|
|
|
|
target: TARGET,
|
|
|
|
parent: &span,
|
|
|
|
"constructing valid authentication system"
|
|
|
|
);
|
2022-03-12 17:31:53 +01:00
|
|
|
Self {
|
2022-06-24 13:57:47 +02:00
|
|
|
span,
|
2022-03-12 17:31:53 +01:00
|
|
|
state: State::Running(session, sessionmanager),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn invalid_mechanism() -> Self {
|
2022-06-24 13:57:47 +02:00
|
|
|
let span = tracing::info_span!(target: TARGET, "Authentication",);
|
|
|
|
tracing::trace!(
|
|
|
|
target: TARGET,
|
|
|
|
parent: &span,
|
|
|
|
"constructing invalid mechanism authentication system"
|
|
|
|
);
|
2022-03-12 17:31:53 +01:00
|
|
|
Self {
|
2022-06-24 13:57:47 +02:00
|
|
|
span,
|
2022-03-12 17:31:53 +01:00
|
|
|
state: State::InvalidMechanism,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_error(&self, response: response::Builder) {
|
|
|
|
if let State::Running(_, _) = self.state {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut builder = response.init_failed();
|
|
|
|
match self.state {
|
|
|
|
State::InvalidMechanism => builder.set_code(ErrorCode::BadMechanism),
|
|
|
|
State::Finished => builder.set_code(ErrorCode::Aborted),
|
|
|
|
State::Aborted => builder.set_code(ErrorCode::Aborted),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-24 13:57:47 +02:00
|
|
|
impl fmt::Display for Authentication {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
|
|
|
f.write_str("Authentication(")?;
|
|
|
|
match &self.state {
|
|
|
|
State::InvalidMechanism => f.write_str("invalid mechanism")?,
|
|
|
|
State::Finished => f.write_str("finished")?,
|
|
|
|
State::Aborted => f.write_str("aborted")?,
|
|
|
|
State::Running(_, _) => f.write_str("running")?,
|
|
|
|
}
|
|
|
|
f.write_char(')')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-08 16:41:38 +01:00
|
|
|
enum State {
|
|
|
|
InvalidMechanism,
|
|
|
|
Finished,
|
|
|
|
Aborted,
|
2022-03-12 17:31:53 +01:00
|
|
|
Running(Session, SessionManager),
|
2022-03-08 16:41:38 +01:00
|
|
|
}
|
|
|
|
|
2022-03-11 22:13:54 +01:00
|
|
|
impl AuthenticationSystem for Authentication {
|
2022-03-08 16:41:38 +01:00
|
|
|
fn step(&mut self, params: StepParams, mut results: StepResults) -> Promise<(), Error> {
|
2022-06-24 13:57:47 +02:00
|
|
|
let _guard = self.span.enter();
|
|
|
|
let _span = tracing::trace_span!(target: TARGET, "step",).entered();
|
|
|
|
|
|
|
|
tracing::trace!(params.data = "<authentication data>", "method call");
|
|
|
|
|
|
|
|
#[repr(transparent)]
|
|
|
|
struct Response {
|
|
|
|
union_field: &'static str,
|
|
|
|
}
|
|
|
|
impl fmt::Display for Response {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
|
|
|
f.write_str("Response(")?;
|
|
|
|
f.write_str(self.union_field)?;
|
|
|
|
f.write_char(')')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let mut response;
|
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
let mut builder = results.get();
|
|
|
|
if let State::Running(mut session, manager) =
|
|
|
|
std::mem::replace(&mut self.state, State::Aborted)
|
|
|
|
{
|
|
|
|
let data: &[u8] = pry!(pry!(params.get()).get_data());
|
2022-06-24 13:57:47 +02:00
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
let mut out = Cursor::new(Vec::new());
|
|
|
|
match session.step(Some(data), &mut out) {
|
2022-10-05 17:28:47 +02:00
|
|
|
Ok(SaslState::Finished(sent)) => {
|
2022-03-12 17:31:53 +01:00
|
|
|
self.state = State::Finished;
|
|
|
|
|
2022-05-18 17:11:00 +02:00
|
|
|
let uid = pry!(session.get_property::<AuthId>().ok_or_else(|| {
|
|
|
|
tracing::warn!("Authentication didn't provide an authid as required.");
|
|
|
|
capnp::Error::failed(
|
|
|
|
"Authentication didn't provide an authid as required".to_string(),
|
|
|
|
)
|
|
|
|
}));
|
2022-06-24 14:35:19 +02:00
|
|
|
let session = pry!(manager.open(&self.span, uid.as_ref()).ok_or_else(|| {
|
2022-05-18 17:11:00 +02:00
|
|
|
tracing::warn!(uid = uid.as_str(), "Failed to lookup the given user");
|
|
|
|
capnp::Error::failed("Failed to lookup the given user".to_string())
|
|
|
|
}));
|
2022-03-12 17:31:53 +01:00
|
|
|
|
2022-06-24 13:57:47 +02:00
|
|
|
response = Response {
|
|
|
|
union_field: "successful",
|
|
|
|
};
|
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
let mut builder = builder.init_successful();
|
2022-10-05 17:28:47 +02:00
|
|
|
if sent == MessageSent::Yes {
|
2022-03-12 17:31:53 +01:00
|
|
|
builder.set_additional_data(out.into_inner().as_slice());
|
|
|
|
}
|
|
|
|
|
|
|
|
APISession::build(session, builder)
|
|
|
|
}
|
2022-10-05 17:28:47 +02:00
|
|
|
Ok(SaslState::Running) => {
|
2022-03-12 17:31:53 +01:00
|
|
|
self.state = State::Running(session, manager);
|
|
|
|
builder.set_challenge(out.into_inner().as_slice());
|
2022-06-24 13:57:47 +02:00
|
|
|
|
|
|
|
response = Response {
|
|
|
|
union_field: "challenge",
|
|
|
|
};
|
2022-03-12 17:31:53 +01:00
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
self.state = State::Aborted;
|
|
|
|
self.build_error(builder);
|
2022-06-24 13:57:47 +02:00
|
|
|
|
|
|
|
response = Response {
|
|
|
|
union_field: "error",
|
|
|
|
};
|
2022-03-12 17:31:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.build_error(builder);
|
2022-06-24 13:57:47 +02:00
|
|
|
response = Response {
|
|
|
|
union_field: "error",
|
|
|
|
};
|
2022-03-12 17:31:53 +01:00
|
|
|
}
|
|
|
|
|
2022-06-24 13:57:47 +02:00
|
|
|
tracing::trace!(
|
|
|
|
results = %response,
|
|
|
|
"method return"
|
|
|
|
);
|
|
|
|
|
2022-03-12 17:31:53 +01:00
|
|
|
Promise::ok(())
|
2022-03-08 16:41:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn abort(&mut self, _: AbortParams, _: AbortResults) -> Promise<(), Error> {
|
2022-06-24 13:57:47 +02:00
|
|
|
let _guard = self.span.enter();
|
|
|
|
let _span = tracing::trace_span!(
|
|
|
|
target: TARGET,
|
|
|
|
parent: &self.span,
|
|
|
|
"abort",
|
|
|
|
)
|
|
|
|
.entered();
|
|
|
|
|
|
|
|
tracing::trace!("method call");
|
|
|
|
|
2022-03-12 01:27:58 +01:00
|
|
|
self.state = State::Aborted;
|
2022-06-24 13:57:47 +02:00
|
|
|
|
|
|
|
tracing::trace!("method return");
|
2022-03-08 16:41:38 +01:00
|
|
|
Promise::ok(())
|
|
|
|
}
|
2022-03-12 17:31:53 +01:00
|
|
|
}
|