2021-11-08 18:31:27 +01:00
|
|
|
use std::borrow::Cow;
|
2021-12-06 15:45:41 +01:00
|
|
|
use std::cmp::Reverse;
|
2021-11-08 18:31:27 +01:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
use std::convert::TryInto;
|
|
|
|
use std::fs::create_dir_all;
|
2022-06-06 12:45:52 +02:00
|
|
|
use std::ops::Deref;
|
2021-11-08 18:31:27 +01:00
|
|
|
use std::path::Path;
|
|
|
|
use std::str;
|
2021-12-15 17:55:39 +01:00
|
|
|
use std::sync::Arc;
|
2021-11-08 18:31:27 +01:00
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
use enum_iterator::IntoEnumIterator;
|
2022-06-08 14:04:45 +02:00
|
|
|
use hmac::{Hmac, Mac};
|
2022-06-06 12:45:52 +02:00
|
|
|
use meilisearch_types::star_or::StarOr;
|
2022-03-16 13:45:58 +01:00
|
|
|
use milli::heed::types::{ByteSlice, DecodeIgnore, SerdeJson};
|
|
|
|
use milli::heed::{Database, Env, EnvOpenOptions, RwTxn};
|
2022-06-08 14:14:30 +02:00
|
|
|
use sha2::{Digest, Sha256};
|
2022-02-14 15:32:41 +01:00
|
|
|
use time::OffsetDateTime;
|
2022-05-25 10:32:47 +02:00
|
|
|
use uuid::Uuid;
|
2021-11-08 18:31:27 +01:00
|
|
|
|
|
|
|
use super::error::Result;
|
|
|
|
use super::{Action, Key};
|
|
|
|
|
|
|
|
const AUTH_STORE_SIZE: usize = 1_073_741_824; //1GiB
|
|
|
|
const AUTH_DB_PATH: &str = "auth";
|
|
|
|
const KEY_DB_NAME: &str = "api-keys";
|
|
|
|
const KEY_ID_ACTION_INDEX_EXPIRATION_DB_NAME: &str = "keyid-action-index-expiration";
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
pub type KeyId = Uuid;
|
2021-11-08 18:31:27 +01:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct HeedAuthStore {
|
2021-12-15 17:55:39 +01:00
|
|
|
env: Arc<Env>,
|
2021-11-08 18:31:27 +01:00
|
|
|
keys: Database<ByteSlice, SerdeJson<Key>>,
|
2022-02-14 15:32:41 +01:00
|
|
|
action_keyid_index_expiration: Database<KeyIdActionCodec, SerdeJson<Option<OffsetDateTime>>>,
|
2022-02-09 13:55:36 +01:00
|
|
|
should_close_on_drop: bool,
|
2021-11-08 18:31:27 +01:00
|
|
|
}
|
|
|
|
|
2021-12-15 17:55:39 +01:00
|
|
|
impl Drop for HeedAuthStore {
|
|
|
|
fn drop(&mut self) {
|
2022-02-09 13:55:36 +01:00
|
|
|
if self.should_close_on_drop && Arc::strong_count(&self.env) == 1 {
|
2021-12-15 17:55:39 +01:00
|
|
|
self.env.as_ref().clone().prepare_for_closing();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-16 13:45:58 +01:00
|
|
|
pub fn open_auth_store_env(path: &Path) -> milli::heed::Result<milli::heed::Env> {
|
2022-02-22 18:16:02 +01:00
|
|
|
let mut options = EnvOpenOptions::new();
|
|
|
|
options.map_size(AUTH_STORE_SIZE); // 1GB
|
|
|
|
options.max_dbs(2);
|
|
|
|
options.open(path)
|
|
|
|
}
|
|
|
|
|
2021-11-08 18:31:27 +01:00
|
|
|
impl HeedAuthStore {
|
|
|
|
pub fn new(path: impl AsRef<Path>) -> Result<Self> {
|
|
|
|
let path = path.as_ref().join(AUTH_DB_PATH);
|
|
|
|
create_dir_all(&path)?;
|
2022-02-22 18:16:02 +01:00
|
|
|
let env = Arc::new(open_auth_store_env(path.as_ref())?);
|
2021-11-08 18:31:27 +01:00
|
|
|
let keys = env.create_database(Some(KEY_DB_NAME))?;
|
|
|
|
let action_keyid_index_expiration =
|
|
|
|
env.create_database(Some(KEY_ID_ACTION_INDEX_EXPIRATION_DB_NAME))?;
|
|
|
|
Ok(Self {
|
|
|
|
env,
|
|
|
|
keys,
|
|
|
|
action_keyid_index_expiration,
|
2022-02-09 13:55:36 +01:00
|
|
|
should_close_on_drop: true,
|
2021-11-08 18:31:27 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-02-09 13:55:36 +01:00
|
|
|
pub fn set_drop_on_close(&mut self, v: bool) {
|
|
|
|
self.should_close_on_drop = v;
|
|
|
|
}
|
|
|
|
|
2021-11-08 18:31:27 +01:00
|
|
|
pub fn is_empty(&self) -> Result<bool> {
|
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
|
|
|
|
Ok(self.keys.len(&rtxn)? == 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn put_api_key(&self, key: Key) -> Result<Key> {
|
2022-05-25 10:32:47 +02:00
|
|
|
let uid = key.uid;
|
2021-11-08 18:31:27 +01:00
|
|
|
let mut wtxn = self.env.write_txn()?;
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
self.keys.put(&mut wtxn, uid.as_bytes(), &key)?;
|
|
|
|
|
2021-11-08 18:31:27 +01:00
|
|
|
// delete key from inverted database before refilling it.
|
2022-05-25 10:32:47 +02:00
|
|
|
self.delete_key_from_inverted_db(&mut wtxn, &uid)?;
|
2021-11-08 18:31:27 +01:00
|
|
|
// create inverted database.
|
|
|
|
let db = self.action_keyid_index_expiration;
|
|
|
|
|
|
|
|
let actions = if key.actions.contains(&Action::All) {
|
|
|
|
// if key.actions contains All, we iterate over all actions.
|
|
|
|
Action::into_enum_iter().collect()
|
|
|
|
} else {
|
|
|
|
key.actions.clone()
|
|
|
|
};
|
|
|
|
|
2022-06-06 12:45:52 +02:00
|
|
|
let no_index_restriction = key.indexes.contains(&StarOr::Star);
|
2021-11-08 18:31:27 +01:00
|
|
|
for action in actions {
|
|
|
|
if no_index_restriction {
|
|
|
|
// If there is no index restriction we put None.
|
2022-05-25 10:32:47 +02:00
|
|
|
db.put(&mut wtxn, &(&uid, &action, None), &key.expires_at)?;
|
2021-11-08 18:31:27 +01:00
|
|
|
} else {
|
|
|
|
// else we create a key for each index.
|
|
|
|
for index in key.indexes.iter() {
|
|
|
|
db.put(
|
|
|
|
&mut wtxn,
|
2022-06-06 12:45:52 +02:00
|
|
|
&(&uid, &action, Some(index.deref().as_bytes())),
|
2021-11-08 18:31:27 +01:00
|
|
|
&key.expires_at,
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wtxn.commit()?;
|
|
|
|
|
|
|
|
Ok(key)
|
|
|
|
}
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
pub fn get_api_key(&self, uid: Uuid) -> Result<Option<Key>> {
|
2021-11-08 18:31:27 +01:00
|
|
|
let rtxn = self.env.read_txn()?;
|
2022-05-25 10:32:47 +02:00
|
|
|
self.keys.get(&rtxn, uid.as_bytes()).map_err(|e| e.into())
|
|
|
|
}
|
|
|
|
|
2022-06-01 18:06:20 +02:00
|
|
|
pub fn get_uid_from_encoded_key(
|
|
|
|
&self,
|
|
|
|
encoded_key: &[u8],
|
|
|
|
master_key: &[u8],
|
|
|
|
) -> Result<Option<Uuid>> {
|
2022-05-25 10:32:47 +02:00
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
let uid = self
|
|
|
|
.keys
|
|
|
|
.remap_data_type::<DecodeIgnore>()
|
|
|
|
.iter(&rtxn)?
|
|
|
|
.filter_map(|res| match res {
|
2022-06-01 18:06:20 +02:00
|
|
|
Ok((uid, _))
|
|
|
|
if generate_key_as_base64(uid, master_key).as_bytes() == encoded_key =>
|
|
|
|
{
|
2022-05-25 10:32:47 +02:00
|
|
|
let (uid, _) = try_split_array_at(uid)?;
|
|
|
|
Some(Uuid::from_bytes(*uid))
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.next();
|
|
|
|
|
|
|
|
Ok(uid)
|
2021-11-08 18:31:27 +01:00
|
|
|
}
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
pub fn delete_api_key(&self, uid: Uuid) -> Result<bool> {
|
2021-11-08 18:31:27 +01:00
|
|
|
let mut wtxn = self.env.write_txn()?;
|
2022-05-25 10:32:47 +02:00
|
|
|
let existing = self.keys.delete(&mut wtxn, uid.as_bytes())?;
|
|
|
|
self.delete_key_from_inverted_db(&mut wtxn, &uid)?;
|
2021-11-08 18:31:27 +01:00
|
|
|
wtxn.commit()?;
|
|
|
|
|
|
|
|
Ok(existing)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list_api_keys(&self) -> Result<Vec<Key>> {
|
|
|
|
let mut list = Vec::new();
|
|
|
|
let rtxn = self.env.read_txn()?;
|
|
|
|
for result in self.keys.remap_key_type::<DecodeIgnore>().iter(&rtxn)? {
|
|
|
|
let (_, content) = result?;
|
|
|
|
list.push(content);
|
|
|
|
}
|
2021-12-06 15:45:41 +01:00
|
|
|
list.sort_unstable_by_key(|k| Reverse(k.created_at));
|
2021-11-08 18:31:27 +01:00
|
|
|
Ok(list)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_expiration_date(
|
|
|
|
&self,
|
2022-05-25 10:32:47 +02:00
|
|
|
uid: Uuid,
|
2021-11-08 18:31:27 +01:00
|
|
|
action: Action,
|
|
|
|
index: Option<&[u8]>,
|
2022-02-14 15:32:41 +01:00
|
|
|
) -> Result<Option<Option<OffsetDateTime>>> {
|
2021-11-08 18:31:27 +01:00
|
|
|
let rtxn = self.env.read_txn()?;
|
2022-05-25 10:32:47 +02:00
|
|
|
let tuple = (&uid, &action, index);
|
|
|
|
Ok(self.action_keyid_index_expiration.get(&rtxn, &tuple)?)
|
2021-11-08 18:31:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn prefix_first_expiration_date(
|
|
|
|
&self,
|
2022-05-25 10:32:47 +02:00
|
|
|
uid: Uuid,
|
2021-11-08 18:31:27 +01:00
|
|
|
action: Action,
|
2022-02-14 15:32:41 +01:00
|
|
|
) -> Result<Option<Option<OffsetDateTime>>> {
|
2021-11-08 18:31:27 +01:00
|
|
|
let rtxn = self.env.read_txn()?;
|
2022-05-25 10:32:47 +02:00
|
|
|
let tuple = (&uid, &action, None);
|
|
|
|
let exp = self
|
|
|
|
.action_keyid_index_expiration
|
|
|
|
.prefix_iter(&rtxn, &tuple)?
|
|
|
|
.next()
|
|
|
|
.transpose()?
|
|
|
|
.map(|(_, expiration)| expiration);
|
2021-11-08 18:31:27 +01:00
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
Ok(exp)
|
2022-01-12 15:35:33 +01:00
|
|
|
}
|
|
|
|
|
2021-11-08 18:31:27 +01:00
|
|
|
fn delete_key_from_inverted_db(&self, wtxn: &mut RwTxn, key: &KeyId) -> Result<()> {
|
|
|
|
let mut iter = self
|
|
|
|
.action_keyid_index_expiration
|
|
|
|
.remap_types::<ByteSlice, DecodeIgnore>()
|
2022-05-25 10:32:47 +02:00
|
|
|
.prefix_iter_mut(wtxn, key.as_bytes())?;
|
2021-11-08 18:31:27 +01:00
|
|
|
while iter.next().transpose()?.is_some() {
|
|
|
|
// safety: we don't keep references from inside the LMDB database.
|
|
|
|
unsafe { iter.del_current()? };
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Codec allowing to retrieve the expiration date of an action,
|
2022-06-05 03:42:53 +02:00
|
|
|
/// optionally on a specific index, for a given key.
|
2021-11-08 18:31:27 +01:00
|
|
|
pub struct KeyIdActionCodec;
|
|
|
|
|
2022-03-16 13:45:58 +01:00
|
|
|
impl<'a> milli::heed::BytesDecode<'a> for KeyIdActionCodec {
|
2021-11-08 18:31:27 +01:00
|
|
|
type DItem = (KeyId, Action, Option<&'a [u8]>);
|
|
|
|
|
|
|
|
fn bytes_decode(bytes: &'a [u8]) -> Option<Self::DItem> {
|
2022-05-25 10:32:47 +02:00
|
|
|
let (key_id_bytes, action_bytes) = try_split_array_at(bytes)?;
|
2021-11-08 18:31:27 +01:00
|
|
|
let (action_bytes, index) = match try_split_array_at(action_bytes)? {
|
|
|
|
(action, []) => (action, None),
|
|
|
|
(action, index) => (action, Some(index)),
|
|
|
|
};
|
2022-05-25 10:32:47 +02:00
|
|
|
let key_id = Uuid::from_bytes(*key_id_bytes);
|
2021-11-08 18:31:27 +01:00
|
|
|
let action = Action::from_repr(u8::from_be_bytes(*action_bytes))?;
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
Some((key_id, action, index))
|
2021-11-08 18:31:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-16 13:45:58 +01:00
|
|
|
impl<'a> milli::heed::BytesEncode<'a> for KeyIdActionCodec {
|
2021-11-08 18:31:27 +01:00
|
|
|
type EItem = (&'a KeyId, &'a Action, Option<&'a [u8]>);
|
|
|
|
|
|
|
|
fn bytes_encode((key_id, action, index): &Self::EItem) -> Option<Cow<[u8]>> {
|
|
|
|
let mut bytes = Vec::new();
|
|
|
|
|
2022-05-25 10:32:47 +02:00
|
|
|
bytes.extend_from_slice(key_id.as_bytes());
|
2021-11-08 18:31:27 +01:00
|
|
|
let action_bytes = u8::to_be_bytes(action.repr());
|
|
|
|
bytes.extend_from_slice(&action_bytes);
|
|
|
|
if let Some(index) = index {
|
|
|
|
bytes.extend_from_slice(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(Cow::Owned(bytes))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 18:06:20 +02:00
|
|
|
pub fn generate_key_as_base64(uid: &[u8], master_key: &[u8]) -> String {
|
2022-06-08 14:14:30 +02:00
|
|
|
let master_key_sha = Sha256::digest(master_key);
|
|
|
|
let mut mac = Hmac::<Sha256>::new_from_slice(master_key_sha.as_slice()).unwrap();
|
2022-06-08 14:04:45 +02:00
|
|
|
mac.update(uid);
|
|
|
|
|
|
|
|
let result = mac.finalize();
|
|
|
|
base64::encode_config(result.into_bytes(), base64::URL_SAFE_NO_PAD)
|
2022-05-25 10:32:47 +02:00
|
|
|
}
|
|
|
|
|
2021-11-08 18:31:27 +01:00
|
|
|
/// Divides one slice into two at an index, returns `None` if mid is out of bounds.
|
|
|
|
pub fn try_split_at<T>(slice: &[T], mid: usize) -> Option<(&[T], &[T])> {
|
|
|
|
if mid <= slice.len() {
|
|
|
|
Some(slice.split_at(mid))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Divides one slice into an array and the tail at an index,
|
|
|
|
/// returns `None` if `N` is out of bounds.
|
|
|
|
pub fn try_split_array_at<T, const N: usize>(slice: &[T]) -> Option<(&[T; N], &[T])>
|
|
|
|
where
|
|
|
|
[T; N]: for<'a> TryFrom<&'a [T]>,
|
|
|
|
{
|
|
|
|
let (head, tail) = try_split_at(slice, N)?;
|
|
|
|
let head = head.try_into().ok()?;
|
|
|
|
Some((head, tail))
|
|
|
|
}
|