2017-02-28 12:05:17 +00:00
|
|
|
#![deny(missing_docs)]
|
|
|
|
|
|
|
|
//! This crate provides a framework for SASL authentication and a few authentication mechanisms.
|
|
|
|
//!
|
|
|
|
//! # Examples
|
|
|
|
//!
|
|
|
|
//! ```rust
|
2017-03-07 14:02:38 +00:00
|
|
|
//! use sasl::{SaslCredentials, SaslMechanism, Error};
|
2017-02-28 12:05:17 +00:00
|
|
|
//! use sasl::mechanisms::Plain;
|
|
|
|
//!
|
2017-03-07 14:02:38 +00:00
|
|
|
//! let creds = SaslCredentials::default()
|
|
|
|
//! .with_username("user")
|
|
|
|
//! .with_password("pencil");
|
2017-02-28 12:05:17 +00:00
|
|
|
//!
|
|
|
|
//! let mut mechanism = Plain::from_credentials(creds).unwrap();
|
|
|
|
//!
|
|
|
|
//! let initial_data = mechanism.initial().unwrap();
|
|
|
|
//!
|
|
|
|
//! assert_eq!(initial_data, b"\0user\0pencil");
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! You may look at the tests of `mechanisms/scram.rs` for examples of more advanced usage.
|
|
|
|
//!
|
|
|
|
//! # Usage
|
|
|
|
//!
|
|
|
|
//! You can use this in your crate by adding this under `dependencies` in your `Cargo.toml`:
|
|
|
|
//!
|
|
|
|
//! ```toml,ignore
|
|
|
|
//! sasl = "*"
|
|
|
|
//! ```
|
2017-02-27 15:08:09 +00:00
|
|
|
|
|
|
|
extern crate openssl;
|
|
|
|
extern crate base64;
|
|
|
|
|
2017-02-28 12:05:17 +00:00
|
|
|
mod error;
|
|
|
|
|
|
|
|
pub use error::Error;
|
2017-02-27 15:08:09 +00:00
|
|
|
|
|
|
|
/// A struct containing SASL credentials.
|
2017-03-07 14:02:38 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2017-02-27 15:08:09 +00:00
|
|
|
pub struct SaslCredentials {
|
2017-02-28 12:05:17 +00:00
|
|
|
/// The requested username.
|
2017-03-07 14:02:38 +00:00
|
|
|
pub username: Option<String>,
|
2017-02-28 12:05:17 +00:00
|
|
|
/// The secret used to authenticate.
|
2017-02-27 15:08:09 +00:00
|
|
|
pub secret: SaslSecret,
|
2017-03-07 14:02:38 +00:00
|
|
|
/// Channel binding data, for *-PLUS mechanisms.
|
|
|
|
pub channel_binding: ChannelBinding,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for SaslCredentials {
|
|
|
|
fn default() -> SaslCredentials {
|
|
|
|
SaslCredentials {
|
|
|
|
username: None,
|
|
|
|
secret: SaslSecret::None,
|
|
|
|
channel_binding: ChannelBinding::None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SaslCredentials {
|
|
|
|
/// Creates a new SaslCredentials with the specified username.
|
|
|
|
pub fn with_username<N: Into<String>>(mut self, username: N) -> SaslCredentials {
|
|
|
|
self.username = Some(username.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new SaslCredentials with the specified password.
|
|
|
|
pub fn with_password<P: Into<String>>(mut self, password: P) -> SaslCredentials {
|
|
|
|
self.secret = SaslSecret::Password(password.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a new SaslCredentials with the specified chanel binding.
|
|
|
|
pub fn with_channel_binding(mut self, channel_binding: ChannelBinding) -> SaslCredentials {
|
|
|
|
self.channel_binding = channel_binding;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Channel binding configuration.
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
|
|
pub enum ChannelBinding {
|
|
|
|
/// No channel binding data.
|
|
|
|
None,
|
|
|
|
/// p=tls-unique channel binding data.
|
|
|
|
TlsUnique(Vec<u8>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ChannelBinding {
|
|
|
|
/// Return the gs2 header for this channel binding mechanism.
|
|
|
|
pub fn header(&self) -> &[u8] {
|
|
|
|
match *self {
|
|
|
|
ChannelBinding::None => b"n,,",
|
|
|
|
ChannelBinding::TlsUnique(_) => b"p=tls-unique,,",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the channel binding data for this channel binding mechanism.
|
|
|
|
pub fn data(&self) -> &[u8] {
|
|
|
|
match *self {
|
|
|
|
ChannelBinding::None => &[],
|
|
|
|
ChannelBinding::TlsUnique(ref data) => data,
|
|
|
|
}
|
|
|
|
}
|
2017-02-27 15:08:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a SASL secret, like a password.
|
2017-03-07 14:02:38 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
2017-02-27 15:08:09 +00:00
|
|
|
pub enum SaslSecret {
|
|
|
|
/// No extra data needed.
|
|
|
|
None,
|
|
|
|
/// Password required.
|
|
|
|
Password(String),
|
|
|
|
}
|
|
|
|
|
2017-02-28 12:05:17 +00:00
|
|
|
/// A trait which defines SASL mechanisms.
|
2017-02-27 15:08:09 +00:00
|
|
|
pub trait SaslMechanism {
|
|
|
|
/// The name of the mechanism.
|
|
|
|
fn name(&self) -> &str;
|
|
|
|
|
|
|
|
/// Creates this mechanism from `SaslCredentials`.
|
|
|
|
fn from_credentials(credentials: SaslCredentials) -> Result<Self, String> where Self: Sized;
|
|
|
|
|
|
|
|
/// Provides initial payload of the SASL mechanism.
|
|
|
|
fn initial(&mut self) -> Result<Vec<u8>, String> {
|
|
|
|
Ok(Vec::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a response to the SASL challenge.
|
|
|
|
fn response(&mut self, _challenge: &[u8]) -> Result<Vec<u8>, String> {
|
|
|
|
Ok(Vec::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verifies the server success response, if there is one.
|
|
|
|
fn success(&mut self, _data: &[u8]) -> Result<(), String> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub mod mechanisms;
|