interop/clients/cryptobox/
web.rs

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
// Wire
// Copyright (C) 2022 Wire Swiss GmbH

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU 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 General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program. If not, see http://www.gnu.org/licenses/.

use crate::clients::{EmulatedClient, EmulatedClientProtocol, EmulatedClientType, EmulatedProteusClient};
use color_eyre::eyre::Result;
use std::cell::Cell;
use std::net::SocketAddr;

#[derive(Debug)]
pub(crate) struct CryptoboxWebClient {
    browser: fantoccini::Client,
    client_id: uuid::Uuid,
    prekey_last_id: Cell<u16>,
}

impl CryptoboxWebClient {
    pub(crate) async fn new(driver_addr: &SocketAddr) -> Result<Self> {
        let client_id = uuid::Uuid::new_v4();
        let browser = crate::build::web::webdriver::setup_browser(driver_addr, "cryptobox").await?;

        Ok(Self {
            browser,
            client_id,
            #[cfg(feature = "proteus")]
            prekey_last_id: Cell::new(0),
        })
    }
}

#[async_trait::async_trait(?Send)]
impl EmulatedClient for CryptoboxWebClient {
    fn client_name(&self) -> &str {
        "Cryptobox::web"
    }

    fn client_type(&self) -> EmulatedClientType {
        EmulatedClientType::Web
    }

    fn client_id(&self) -> &[u8] {
        self.client_id.as_bytes().as_slice()
    }

    fn client_protocol(&self) -> EmulatedClientProtocol {
        EmulatedClientProtocol::PROTEUS
    }

    async fn wipe(mut self) -> Result<()> {
        let _ = self
            .browser
            .execute_async(
                r#"
const [callback] = arguments;
window.cbox.deleteData().then(callback);"#,
                vec![],
            )
            .await?;

        Ok(())
    }
}

#[async_trait::async_trait(?Send)]
impl EmulatedProteusClient for CryptoboxWebClient {
    async fn init(&mut self) -> Result<()> {
        self.browser
            .execute_async(
                r#"
const [clientId, callback] = arguments;
// const { createCryptobox } = await import("./cryptobox.js");
const storeName = `cryptobox-e2e-interop-${clientId}`;
const cryptobox = await window.createCryptobox(storeName);
window.cbox = cryptobox;
callback();"#,
                vec![self.client_id.as_hyphenated().to_string().into()],
            )
            .await?;

        Ok(())
    }

    async fn get_prekey(&self) -> Result<Vec<u8>> {
        self.prekey_last_id.replace(self.prekey_last_id.get() + 1);

        let json_response = self
            .browser
            .execute_async(
                r#"
const [prekeyId, callback] = arguments;
const [prekey] = await window.cbox.new_prekeys(prekeyId, 1);
const { key } = window.cbox.serialize_prekey(prekey);
callback(key);"#,
                vec![self.prekey_last_id.get().into()],
            )
            .await?;

        let key_b64 = json_response.as_str().unwrap();

        use base64::Engine as _;
        Ok(base64::prelude::BASE64_STANDARD.decode(key_b64)?)
    }

    async fn session_from_prekey(&self, session_id: &str, prekey: &[u8]) -> Result<()> {
        self.browser
            .execute_async(
                r#"
const [sessionId, prekey, callback] = arguments;
const prekeyBundle = Uint8Array.from(Object.values(prekey));
await window.cbox.session_from_prekey(sessionId, prekeyBundle.buffer);
callback();"#,
                vec![session_id.into(), prekey.into()],
            )
            .await?;

        Ok(())
    }

    async fn session_from_message(&self, session_id: &str, message: &[u8]) -> Result<Vec<u8>> {
        Ok(self
            .browser
            .execute_async(
                r#"
const [sessionId, message, callback] = arguments;
const envelope = Uint8Array.from(Object.values(message));
const cleartext = await window.cbox.decrypt(sessionId, envelope.buffer);
callback(cleartext);"#,
                vec![session_id.into(), message.into()],
            )
            .await
            .and_then(|value| Ok(serde_json::from_value(value)?))?)
    }

    async fn encrypt(&self, session_id: &str, plaintext: &[u8]) -> Result<Vec<u8>> {
        Ok(self
            .browser
            .execute_async(
                r#"
const [sessionId, plaintext, callback] = arguments;
const plaintextBuffer = Uint8Array.from(Object.values(plaintext));
const encrypted = await window.cbox.encrypt(sessionId, plaintextBuffer.buffer);
callback(new Uint8Array(encrypted));"#,
                vec![session_id.into(), plaintext.into()],
            )
            .await
            .and_then(|value| Ok(serde_json::from_value(value)?))?)
    }

    async fn decrypt(&self, session_id: &str, ciphertext: &[u8]) -> Result<Vec<u8>> {
        Ok(self
            .browser
            .execute_async(
                r#"
const [sessionId, ciphertext, callback] = arguments;
const ciphertextBuffer = Uint8Array.from(Object.values(ciphertext));
const plaintext = await window.cbox.decrypt(sessionId, ciphertextBuffer.buffer);
callback(new Uint8Array(plaintext));"#,
                vec![session_id.into(), ciphertext.into()],
            )
            .await
            .and_then(|value| Ok(serde_json::from_value(value)?))?)
    }

    async fn fingerprint(&self) -> Result<String> {
        Ok(self
            .browser
            .execute_async(
                r#"
const [callback] = arguments;
const identity = window.cbox.getIdentity();
callback(identity.public_key.fingerprint());"#,
                vec![],
            )
            .await
            .map(|value| value.as_str().unwrap().to_string())?)
    }
}