summaryrefslogtreecommitdiff
path: root/src/modules/auth/cookie.rs
blob: ed8c8890bfcbd26ec5ef72963be682068d3beee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
use crate::{
    config::{return_true, DynNode},
    error::ServiceError,
    modules::{Node, NodeContext, NodeKind, NodeRequest, NodeResponse},
};
use aes_gcm_siv::{
    aead::{Aead, Payload},
    Nonce,
};
use base64::Engine;
use futures::Future;
use headers::{Cookie, HeaderMapExt};
use http_body_util::{combinators::BoxBody, BodyExt};
use hyper::{
    header::{HeaderValue, LOCATION, REFERER, SET_COOKIE},
    Method, Response, StatusCode,
};
use log::debug;
use percent_encoding::{percent_decode_str, percent_encode, NON_ALPHANUMERIC};
use rand::random;
use serde::Deserialize;
use serde_yaml::Value;
use std::fmt::Write;
use std::{pin::Pin, sync::Arc, time::SystemTime};

use super::Credentials;

pub struct CookieAuthKind;
impl NodeKind for CookieAuthKind {
    fn name(&self) -> &'static str {
        "cookie_auth"
    }
    fn instanciate(&self, config: Value) -> anyhow::Result<Arc<dyn Node>> {
        Ok(Arc::new(serde_yaml::from_value::<CookieAuth>(config)?))
    }
}

#[derive(Deserialize)]
pub struct CookieAuth {
    users: Credentials,
    expire: Option<u64>,
    #[serde(default = "return_true")]
    secure: bool,
    next: DynNode,
    fail: DynNode,
}

impl Node for CookieAuth {
    fn handle<'a>(
        &'a self,
        context: &'a mut NodeContext,
        request: NodeRequest,
    ) -> Pin<Box<dyn Future<Output = Result<NodeResponse, ServiceError>> + Send + Sync + 'a>> {
        Box::pin(async move {
            if request.method() == Method::POST && request.uri().path() == "/_gnix_login" {
                let referrer = request.headers().get(REFERER).cloned();
                let d = request
                    .into_body()
                    .collect()
                    .await
                    .map_err(|_| todo!())
                    .unwrap();
                let d = String::from_utf8(d.to_bytes().to_vec()).unwrap();

                // TODO proper parser
                let mut username = "user";
                let mut password = "";
                for kv in d.split("&") {
                    let (key, value) = kv.split_once("=").ok_or(ServiceError::BadAuth)?;
                    match key {
                        "username" => username = value,
                        "password" => password = value,
                        _ => (),
                    }
                }
                let mut r = Response::new(BoxBody::<_, ServiceError>::new(
                    String::new().clone().map_err(|_| unreachable!()),
                ));
                *r.status_mut() = StatusCode::FOUND;
                debug!("login attempt for {username:?}");
                if self.users.authentificate(username, password) {
                    debug!("login success");
                    let nonce = [(); 12].map(|_| random::<u8>());
                    let plaintext = unix_seconds().to_le_bytes();
                    let mut ciphertext = context
                        .state
                        .crypto_key
                        .encrypt(
                            Nonce::from_slice(&nonce),
                            Payload {
                                msg: &plaintext,
                                aad: username.as_bytes(),
                            },
                        )
                        .unwrap();

                    ciphertext.extend(nonce);
                    let auth = base64::engine::general_purpose::URL_SAFE.encode(ciphertext);

                    let mut cookie_opts = String::new();
                    if let Some(e) = self.expire {
                        write!(cookie_opts, "; Max-Age={e}").unwrap();
                    }
                    if self.secure {
                        write!(cookie_opts, "; Secure").unwrap();
                    }

                    r.headers_mut().append(
                        SET_COOKIE,
                        HeaderValue::from_str(&format!(
                            "gnix_username={}{}",
                            percent_encode(username.as_bytes(), NON_ALPHANUMERIC),
                            cookie_opts
                        ))
                        .unwrap(),
                    );
                    r.headers_mut().append(
                        SET_COOKIE,
                        HeaderValue::from_str(&format!("gnix_auth={}{}", auth, cookie_opts))
                            .unwrap(),
                    );
                } else {
                    debug!("login fail");
                }
                r.headers_mut()
                    .append(LOCATION, referrer.unwrap_or(HeaderValue::from_static("/")));

                Ok(r)
            } else {
                if let Some(cookie) = request.headers().typed_get::<Cookie>() {
                    if let Some(auth) = cookie.get("gnix_auth") {
                        let username =
                            percent_decode_str(cookie.get("gnix_username").unwrap_or("user"))
                                .decode_utf8()?;

                        let auth = base64::engine::general_purpose::URL_SAFE.decode(auth)?;
                        if auth.len() < 12 {
                            return Err(ServiceError::BadAuth);
                        }
                        let (msg, nonce) = auth.split_at(auth.len() - 12);
                        let plaintext = context.state.crypto_key.decrypt(
                            Nonce::from_slice(nonce),
                            Payload {
                                msg,
                                aad: username.as_bytes(),
                            },
                        );
                        if let Ok(plaintext) = plaintext {
                            let created = u64::from_le_bytes(plaintext[0..8].try_into().unwrap());

                            if self
                                .expire
                                .map(|e| created + e > unix_seconds())
                                .unwrap_or(true)
                            {
                                debug!("valid auth for {username:?}");
                                return self.next.handle(context, request).await;
                            } else {
                                debug!("auth expired");
                            }
                        } else {
                            debug!("aead invalid");
                        }
                    } else {
                        debug!("no auth cookie");
                    }
                }
                debug!("unauthorized");
                let mut r = self.fail.handle(context, request).await?;
                *r.status_mut() = StatusCode::UNAUTHORIZED;
                Ok(r)
            }
        })
    }
}

fn unix_seconds() -> u64 {
    SystemTime::now()
        .duration_since(SystemTime::UNIX_EPOCH)
        .unwrap()
        .as_secs()
}