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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
pub mod models;

use core::convert::Infallible;

use crate::{CowStr, Error, Id, Method, Request, Response, Status};
use minicbor::encode::Write;
use minicbor::{Decoder, Encode};
use models::*;
use ockam_core::vault::{
    AsymmetricVault, Hasher, KeyId, SecretVault, Signature, Signer, SymmetricVault, Verifier,
};
use ockam_core::{Result, Routed, Worker};
use ockam_node::Context;
use ockam_vault::Vault;
use tracing::trace;

/// Vault Service Worker
pub struct VaultService {
    vault: Vault,
}

impl VaultService {
    /// Constructor
    pub fn new(vault: Vault) -> Self {
        Self { vault }
    }
}

impl VaultService {
    fn response_for_bad_request<W>(req: &Request, msg: &str, enc: W) -> Result<()>
    where
        W: Write<Error = Infallible>,
    {
        let error = Error::new(req.path()).with_message(msg);

        let error = if let Some(m) = req.method() {
            error.with_method(m)
        } else {
            error
        };

        Response::bad_request(req.id()).body(error).encode(enc)?;

        Ok(())
    }

    fn ok_response<W, B>(req: &Request, body: Option<B>, enc: W) -> Result<()>
    where
        W: Write<Error = Infallible>,
        B: Encode<()>,
    {
        Response::ok(req.id()).body(body).encode(enc)?;

        Ok(())
    }

    fn response_with_error<W>(
        req: Option<&Request>,
        status: Status,
        error: &str,
        enc: W,
    ) -> Result<()>
    where
        W: Write<Error = Infallible>,
    {
        let (path, req_id) = match req {
            None => ("", Id::fresh()),
            Some(req) => (req.path(), req.id()),
        };

        let error = Error::new(path).with_message(error);

        Response::builder(req_id, status).body(error).encode(enc)?;

        Ok(())
    }

    async fn handle_request<W>(
        &mut self,
        req: &Request<'_>,
        dec: &mut Decoder<'_>,
        enc: W,
    ) -> Result<()>
    where
        W: Write<Error = Infallible>,
    {
        trace! {
            target: "ockam_vault::service",
            id     = %req.id(),
            method = ?req.method(),
            path   = %req.path(),
            body   = %req.has_body(),
            "request"
        }

        let method = match req.method() {
            Some(m) => m,
            None => return Self::response_for_bad_request(req, "empty method", enc),
        };

        use Method::*;

        match method {
            Get => match req.path_segments::<3>().as_slice() {
                ["secrets", key_id] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<GetSecretRequest>()?;

                    let key_id: KeyId = key_id.to_string();

                    match args.operation() {
                        GetSecretRequestOperation::GetAttributes => {
                            let resp = self.vault.secret_attributes_get(&key_id).await?;
                            let body = GetSecretAttributesResponse::new(resp);

                            Self::ok_response(req, Some(body), enc)
                        }
                        GetSecretRequestOperation::GetSecretBytes => {
                            let resp = self.vault.secret_export(&key_id).await?;
                            let body = ExportSecretResponse::new(resp.as_ref());

                            Self::ok_response(req, Some(body), enc)
                        }
                    }
                }
                ["secrets", key_id, "public_key"] => {
                    let key_id: KeyId = key_id.to_string();

                    let public_key = self.vault.secret_public_key_get(&key_id).await?;
                    let body = PublicKeyResponse::new(public_key);

                    Self::ok_response(req, Some(body), enc)
                }
                _ => Self::response_for_bad_request(req, "unknown path", enc),
            },
            Post => match req.path_segments::<3>().as_slice() {
                ["secrets"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<CreateSecretRequest>()?;

                    let attributes = *args.attributes();

                    let key_id = match args.secret() {
                        Some(secret) => {
                            self.vault
                                .secret_import(secret.as_ref(), attributes)
                                .await?
                        }
                        None => self.vault.secret_generate(attributes).await?,
                    };

                    let body = CreateSecretResponse::new(key_id);

                    Self::ok_response(req, Some(body), enc)
                }
                ["ecdh"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<EcdhRequest>()?;

                    let (secret_key_id, public_key) = args.into_parts();
                    let secret_key_id: KeyId = secret_key_id.into_owned();

                    let dh = self
                        .vault
                        .ec_diffie_hellman(&secret_key_id, &public_key)
                        .await?;

                    Self::ok_response(req, Some(EcdhResponse::new(dh)), enc)
                }
                ["compute_key_id"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<ComputeKeyIdRequest>()?;

                    let key_id = self
                        .vault
                        .compute_key_id_for_public_key(args.public_key())
                        .await?;

                    Self::ok_response(req, Some(ComputeKeyIdResponse::new(key_id)), enc)
                }
                ["sha256"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<Sha256Request>()?;

                    let hash = self.vault.sha256(args.data()).await?;

                    Self::ok_response(req, Some(Sha256Response::new(hash)), enc)
                }
                ["hkdf"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<HkdfSha256Request>()?;

                    let salt: KeyId = args.salt().to_string();
                    let ikm = args.ikm().map(|i| i.to_string());

                    let output = self
                        .vault
                        .hkdf_sha256(
                            &salt,
                            args.info(),
                            ikm.as_ref(),
                            args.output_attributes().to_vec(),
                        )
                        .await?;

                    Self::ok_response(
                        req,
                        Some(HkdfSha256Response::new(
                            output.into_iter().map(CowStr::from).collect(),
                        )),
                        enc,
                    )
                }
                ["sign"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<SignRequest>()?;

                    let key_id: KeyId = args.key_id().to_string();

                    let output = self.vault.sign(&key_id, args.data()).await?;

                    Self::ok_response(req, Some(SignResponse::new(output.as_ref())), enc)
                }
                ["verify"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<VerifyRequest>()?;

                    // TODO: Optimize?
                    let signature = Signature::new(args.signature().to_vec());

                    let output = self
                        .vault
                        .verify(&signature, args.public_key(), args.data())
                        .await?;

                    Self::ok_response(req, Some(VerifyResponse::new(output)), enc)
                }
                ["encrypt"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<EncryptRequest>()?;

                    let key_id: KeyId = args.key_id().to_string();

                    let output = self
                        .vault
                        .aead_aes_gcm_encrypt(&key_id, args.plaintext(), args.nonce(), args.aad())
                        .await?;

                    Self::ok_response(req, Some(EncryptResponse::new(output)), enc)
                }
                ["decrypt"] => {
                    if !req.has_body() {
                        return Self::response_for_bad_request(req, "empty body", enc);
                    }

                    let args = dec.decode::<DecryptRequest>()?;

                    let key_id: KeyId = args.key_id().to_string();

                    let output = self
                        .vault
                        .aead_aes_gcm_decrypt(&key_id, args.ciphertext(), args.nonce(), args.aad())
                        .await?;

                    Self::ok_response(req, Some(DecryptResponse::new(output)), enc)
                }
                _ => Self::response_for_bad_request(req, "unknown path", enc),
            },
            Delete => match req.path_segments::<2>().as_slice() {
                ["secrets", key_id] => {
                    let key_id: KeyId = key_id.to_string();

                    self.vault.secret_destroy(key_id).await?;

                    #[allow(unused_qualifications)]
                    Self::ok_response(req, Option::<()>::None, enc)
                }
                _ => Self::response_for_bad_request(req, "unknown path", enc),
            },
            Put | Patch => Self::response_for_bad_request(req, "unknown method", enc),
        }
    }

    async fn on_request(&mut self, data: &[u8]) -> Result<Vec<u8>> {
        let mut buf = Vec::new();

        let mut dec = Decoder::new(data);
        let req: Request = match dec.decode() {
            Ok(r) => r,
            Err(_) => {
                Self::response_with_error(
                    None,
                    Status::BadRequest,
                    "invalid Request structure",
                    &mut buf,
                )?;

                return Ok(buf);
            }
        };

        match self.handle_request(&req, &mut dec, &mut buf).await {
            Ok(_) => {}
            Err(err) => Self::response_with_error(
                Some(&req),
                Status::InternalServerError,
                &err.to_string(),
                &mut buf,
            )?,
        };

        Ok(buf)
    }
}

#[ockam_core::worker]
impl Worker for VaultService {
    type Message = Vec<u8>;
    type Context = Context;

    async fn handle_message(
        &mut self,
        ctx: &mut Self::Context,
        msg: Routed<Self::Message>,
    ) -> Result<()> {
        let buf = self.on_request(msg.as_body()).await?;
        ctx.send(msg.return_route(), buf).await
    }
}