2021-03-08 17:02:36 +05:30
|
|
|
/*
|
|
|
|
* mCaptcha - A proof of work based DoS protection system
|
|
|
|
* Copyright © 2021 Aravinth Manivannan <realravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-03-08 19:43:26 +05:30
|
|
|
//! Cache is used to save proofof work details and nonces to prevent replay attacks
|
|
|
|
//! and rainbow/dictionary attacks
|
2021-06-09 20:09:54 +05:30
|
|
|
use serde::{Deserialize, Serialize};
|
2021-03-07 11:49:52 +05:30
|
|
|
|
2021-06-09 20:09:54 +05:30
|
|
|
#[cfg(feature = "full")]
|
2021-03-07 11:49:52 +05:30
|
|
|
pub mod hashcache;
|
2021-06-09 21:00:29 +05:30
|
|
|
//#[cfg(feature = "full")]
|
|
|
|
//pub mod redis;
|
2021-03-07 11:49:52 +05:30
|
|
|
|
2021-06-09 20:09:54 +05:30
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct AddChallenge {
|
2021-06-09 21:00:29 +05:30
|
|
|
pub difficulty: u32,
|
2021-06-09 20:09:54 +05:30
|
|
|
pub duration: u64,
|
|
|
|
pub challenge: String,
|
|
|
|
}
|
|
|
|
|
2021-03-08 19:43:26 +05:30
|
|
|
/// Describes actor handler trait impls that are required by a cache implementation
|
2021-06-09 20:09:54 +05:30
|
|
|
#[cfg(feature = "full")]
|
2021-03-09 12:17:19 +05:30
|
|
|
pub trait Save:
|
2021-04-09 18:16:54 +05:30
|
|
|
actix::Actor
|
2021-06-09 20:09:54 +05:30
|
|
|
+ actix::Handler<messages::RetrivePoW>
|
|
|
|
+ actix::Handler<messages::CachePoW>
|
|
|
|
+ actix::Handler<messages::DeletePoW>
|
|
|
|
+ actix::Handler<messages::CacheResult>
|
|
|
|
+ actix::Handler<messages::VerifyCaptchaResult>
|
|
|
|
+ actix::Handler<messages::DeleteCaptchaResult>
|
2021-03-09 12:17:19 +05:30
|
|
|
{
|
|
|
|
}
|
2021-06-09 20:09:54 +05:30
|
|
|
|
|
|
|
#[cfg(feature = "full")]
|
2021-03-07 11:49:52 +05:30
|
|
|
pub mod messages {
|
2021-03-08 19:43:26 +05:30
|
|
|
//! Messages that can be sent to cache data structures implementing [Save][super::Save]
|
2021-03-07 11:49:52 +05:30
|
|
|
use actix::dev::*;
|
2021-03-09 12:17:19 +05:30
|
|
|
use derive_builder::Builder;
|
2021-03-12 13:52:49 +05:30
|
|
|
use serde::{Deserialize, Serialize};
|
2021-03-07 11:49:52 +05:30
|
|
|
|
|
|
|
use crate::errors::*;
|
|
|
|
|
2021-03-09 12:17:19 +05:30
|
|
|
/// Message to cache PoW difficulty factor and string
|
2021-04-10 13:14:48 +05:30
|
|
|
#[derive(Message, Serialize, Deserialize, Builder, Clone)]
|
2021-03-07 11:49:52 +05:30
|
|
|
#[rtype(result = "CaptchaResult<()>")]
|
2021-04-09 17:28:04 +05:30
|
|
|
pub struct CachePoW {
|
2021-06-09 20:09:54 +05:30
|
|
|
/// challenge string
|
2021-03-09 12:17:19 +05:30
|
|
|
pub string: String,
|
2021-06-09 20:09:54 +05:30
|
|
|
/// Difficulty factor of mCaptcha at the time of minting this config
|
2021-03-09 12:17:19 +05:30
|
|
|
pub difficulty_factor: u32,
|
2021-06-09 20:09:54 +05:30
|
|
|
/// mCaptcha TTL
|
2021-03-09 12:17:19 +05:30
|
|
|
pub duration: u64,
|
2021-06-09 20:09:54 +05:30
|
|
|
/// Key is mCaptcha name
|
2021-04-09 23:20:14 +05:30
|
|
|
pub key: String,
|
2021-03-09 12:17:19 +05:30
|
|
|
}
|
2021-03-07 11:49:52 +05:30
|
|
|
|
2021-03-09 12:17:19 +05:30
|
|
|
/// Message to retrive the the difficulty factor for the specified
|
|
|
|
/// string from the cache
|
2021-03-07 11:49:52 +05:30
|
|
|
#[derive(Message)]
|
2021-04-09 23:20:14 +05:30
|
|
|
#[rtype(result = "CaptchaResult<Option<CachedPoWConfig>>")]
|
2021-04-09 17:28:04 +05:30
|
|
|
pub struct RetrivePoW(pub String);
|
2021-03-09 12:17:19 +05:30
|
|
|
|
2021-04-10 13:14:48 +05:30
|
|
|
#[derive(Clone, PartialEq, Debug, Default, Deserialize, Serialize)]
|
2021-04-09 23:20:14 +05:30
|
|
|
pub struct CachedPoWConfig {
|
2021-06-09 20:09:54 +05:30
|
|
|
/// mCaptcha name
|
2021-04-09 23:20:14 +05:30
|
|
|
pub key: String,
|
|
|
|
pub difficulty_factor: u32,
|
2021-04-10 11:40:59 +05:30
|
|
|
pub duration: u64,
|
2021-04-09 23:20:14 +05:30
|
|
|
}
|
|
|
|
|
2021-03-09 12:17:19 +05:30
|
|
|
/// Message to delete cached PoW difficulty factor and string
|
|
|
|
/// when they expire
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "CaptchaResult<()>")]
|
2021-04-09 17:28:04 +05:30
|
|
|
pub struct DeletePoW(pub String);
|
2021-04-09 18:16:54 +05:30
|
|
|
|
|
|
|
/// Message to cache captcha result and the captcha key for which
|
|
|
|
/// it was generated
|
|
|
|
#[derive(Message, Serialize, Deserialize, Builder)]
|
|
|
|
#[rtype(result = "CaptchaResult<()>")]
|
|
|
|
pub struct CacheResult {
|
2021-04-10 13:14:48 +05:30
|
|
|
pub token: String,
|
2021-06-09 20:09:54 +05:30
|
|
|
/// key is mCaptcha identifier
|
2021-04-09 18:16:54 +05:30
|
|
|
pub key: String,
|
|
|
|
pub duration: u64,
|
|
|
|
}
|
|
|
|
|
2021-04-10 11:40:59 +05:30
|
|
|
impl From<CachedPoWConfig> for CacheResult {
|
|
|
|
fn from(c: CachedPoWConfig) -> Self {
|
|
|
|
use crate::utils::get_random;
|
|
|
|
|
|
|
|
CacheResultBuilder::default()
|
|
|
|
.key(c.key)
|
|
|
|
.duration(c.duration)
|
2021-04-10 13:14:48 +05:30
|
|
|
.token(get_random(32))
|
2021-04-10 11:40:59 +05:30
|
|
|
.build()
|
|
|
|
.unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 18:16:54 +05:30
|
|
|
/// Message to verify captcha result against
|
|
|
|
/// the stored captcha key
|
2021-04-10 13:14:48 +05:30
|
|
|
#[derive(Message, Clone, Deserialize, Serialize)]
|
2021-04-09 18:16:54 +05:30
|
|
|
#[rtype(result = "CaptchaResult<bool>")]
|
|
|
|
pub struct VerifyCaptchaResult {
|
2021-04-10 13:14:48 +05:30
|
|
|
pub token: String,
|
2021-04-09 18:16:54 +05:30
|
|
|
pub key: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Message to delete cached capthca result when it expires
|
|
|
|
#[derive(Message)]
|
|
|
|
#[rtype(result = "CaptchaResult<()>")]
|
|
|
|
pub struct DeleteCaptchaResult {
|
2021-04-10 13:14:48 +05:30
|
|
|
pub token: String,
|
2021-04-09 18:16:54 +05:30
|
|
|
}
|
2021-03-07 11:49:52 +05:30
|
|
|
}
|