2

我有一个处理程序来启动密码重置。它总是返回成功的 200 状态码,因此攻击者无法使用它来找出数据库中存储了哪些电子邮件地址。问题是,如果数据库中有一封电子邮件,则需要一段时间才能完成请求(阻止用户查找并发送带有重置令牌的实际电子邮件)。如果用户不在数据库中,请求会很快返回,因此被攻击者会知道电子邮件不存在。

在后台处理请求时,我将如何立即返回 HTTP 响应?

pub async fn forgot_password_handler(
    email_from_path: web::Path<String>,
    pool: web::Data<Pool>,
    redis_client: web::Data<redis::Client>,
) -> HttpResponse {
    let conn: &PgConnection = &pool.get().unwrap();
    let email_address = &email_from_path.into_inner();
    // search for user with email address in users table
    match users.filter(email.eq(email_address)).first::<User>(conn) {
        Ok(user) => {
            // some stuff omitted.. this is what happens:
            // create random token for user and store a hash of it in redis (it'll expire after some time)
            // send email with password reset link and token (not hashed) to client
            // then return with 
            HttpResponse::Ok().finish(),
        }
        _ => HttpResponse::Ok().finish(),
    }   
}
4

1 回答 1

3

您可以使用 ActixArbiter来安排异步任务:

use actix::Arbiter;

async fn do_the_database_stuff(
    email: String,
    pool: web::Data<Pool>,
    redis_client: web::Data<redis::Client>)
{
    // async database code here
}

pub async fn forgot_password_handler(
    email_from_path: web::Path<String>,
    pool: web::Data<Pool>,
    redis_client: web::Data<redis::Client>,
) -> HttpResponse {

    let email = email_from_path.clone();
    Arbiter::spawn(async {
        do_the_database_stuff(
            email,
            pool,
            redis_client
        );
    });

    HttpResponse::Ok().finish()
}

如果您的数据库代码被阻塞,为了防止占用长期存在的 Actix 工作线程,您可以创建一个新的Arbiter,具有自己的线程:

fn do_the_database_stuff(email: String) {
    // blocking database code here
}

pub async fn forgot_password_handler(email_from_path: String) -> HttpResponse {
    let email = email_from_path.clone();
    Arbiter::new().exec_fn(move || { 
        async move {               
            do_the_database_stuff(email).await; 
        };
    });

    HttpResponse::Ok().finish()
}

这可能需要更多的工作,因为在线程Pool之间redis::Client共享不太可能是安全的,所以你也必须解决这个问题。这就是为什么我没有将它们包含在示例代码中。

使用Arbiters 比使用 . 生成一个新的本地线程要好std::thread。如果将两者混为一谈,最终可能会意外地包含使工作人员混乱的代码。例如std::thread::sleep,在async上下文中使用会暂停恰好安排在同一个工作人员上的不相关任务,甚至可能对您想要的任务没有任何影响。


最后,您还可以考虑架构更改。如果您将数据库繁重的任务纳入他们自己的微服务中,您将自动解决此问题。然后,Web 处理程序可以只发送一条消息(Kafka、RabbitMQ、ZMQ、HTTP 或您选择的任何内容)并立即返回。这将使您能够独立于 Web 服务器扩展微服务 - 如果您只需要一个用于密码重置服务的实例,那么 10 个 Web 服务器实例并不一定意味着 10 个数据库连接。

于 2020-05-07T09:35:01.530 回答