mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-13 10:47:56 +01:00
79 lines
2.6 KiB
Rust
79 lines
2.6 KiB
Rust
use std::sync::Arc;
|
|
use std::path::Path;
|
|
use std::fs;
|
|
use std::collections::HashMap;
|
|
|
|
use argon2;
|
|
use lmdb::{Environment, Transaction, RwTransaction};
|
|
use slog::Logger;
|
|
|
|
use crate::error::Result;
|
|
|
|
pub struct PassDB {
|
|
log: Logger,
|
|
env: Arc<Environment>,
|
|
db: lmdb::Database,
|
|
}
|
|
|
|
impl PassDB {
|
|
pub fn new(log: Logger, env: Arc<Environment>, db: lmdb::Database) -> Self {
|
|
Self { log, env, db }
|
|
}
|
|
|
|
pub fn init(log: Logger, env: Arc<Environment>) -> Result<Self> {
|
|
let mut flags = lmdb::DatabaseFlags::empty();
|
|
flags.set(lmdb::DatabaseFlags::INTEGER_KEY, true);
|
|
let db = env.create_db(Some("pass"), flags)?;
|
|
|
|
Ok(Self::new(log, env, db))
|
|
}
|
|
|
|
/// Check a password for a given authcid.
|
|
///
|
|
/// `Ok(None)` means the given authcid is not stored in the database
|
|
pub fn check_with_txn<T: Transaction>(&self, txn: &T, authcid: &str, password: &[u8]) -> Result<Option<bool>> {
|
|
match txn.get(self.db, &authcid.as_bytes()) {
|
|
Ok(bytes) => {
|
|
let encoded = unsafe { std::str::from_utf8_unchecked(bytes) };
|
|
let res = argon2::verify_encoded(encoded, password)?;
|
|
Ok(Some(res))
|
|
},
|
|
Err(lmdb::Error::NotFound) => { Ok(None) },
|
|
Err(e) => { Err(e.into()) },
|
|
}
|
|
}
|
|
pub fn check(&self, authcid: &str, password: &[u8]) -> Result<Option<bool>> {
|
|
let txn = self.env.begin_ro_txn()?;
|
|
self.check_with_txn(&txn, authcid, password)
|
|
}
|
|
|
|
/// Store a password for a given authcid, potentially overwriting an existing password
|
|
pub fn store_with_txn(&self, txn: &mut RwTransaction, authcid: &str, password: &[u8]) -> Result<()> {
|
|
let config = argon2::Config::default();
|
|
let salt: [u8; 16] = rand::random();
|
|
let hash = argon2::hash_encoded(password, &salt, &config)?;
|
|
txn.put(self.db, &authcid.as_bytes(), &hash.as_bytes(), lmdb::WriteFlags::empty())
|
|
.map_err(Into::into)
|
|
}
|
|
|
|
pub fn insert_multiple(&self, vec: Vec<(String, String)>) -> Result<()> {
|
|
let mut txn = self.env.begin_rw_txn()?;
|
|
for (authcid, password) in vec.iter() {
|
|
self.store_with_txn(&mut txn, authcid.as_ref(), password.as_bytes())?;
|
|
}
|
|
txn.commit()?;
|
|
|
|
let v: Vec<&String> = vec.iter().map(|(a,_)| a).collect();
|
|
debug!(self.log, "Loaded passwords for: {:?}", v);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn load_file<P: AsRef<Path>>(&self, path: P) -> Result<()> {
|
|
let f = fs::read(path)?;
|
|
let mut map: HashMap<String, String> = toml::from_slice(&f)?;
|
|
|
|
self.insert_multiple(map.drain().collect())
|
|
}
|
|
}
|