File size: 15,282 Bytes
6d69a4c
 
 
 
51280c3
6d69a4c
 
 
 
 
 
 
af99c56
6d69a4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66919e5
 
 
 
 
 
 
 
 
 
 
 
 
2f14308
66919e5
 
 
 
 
 
 
 
 
 
 
 
af99c56
 
 
 
 
 
 
 
 
 
 
 
 
66919e5
af99c56
 
 
 
6d69a4c
af99c56
 
66919e5
af99c56
 
66919e5
 
af99c56
 
66919e5
af99c56
 
6d69a4c
 
 
 
af99c56
6d69a4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8a699bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6d69a4c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af99c56
 
 
 
 
 
cb10dda
af99c56
 
 
 
 
 
cb10dda
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af99c56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb10dda
af99c56
 
 
 
 
 
cb10dda
af99c56
 
 
 
 
cb10dda
af99c56
 
 
 
 
 
cb10dda
 
 
af99c56
 
 
cb10dda
af99c56
cb10dda
af99c56
 
 
 
 
 
6d69a4c
 
af99c56
 
 
 
 
6d69a4c
 
af99c56
6d69a4c
 
cb10dda
 
af99c56
 
6d69a4c
af99c56
 
 
 
 
 
 
 
 
 
 
6d69a4c
af99c56
 
 
cb10dda
6d69a4c
 
af99c56
 
 
cb10dda
af99c56
 
 
 
75bf83f
af99c56
 
6d69a4c
af99c56
 
cb10dda
6d69a4c
af99c56
6d69a4c
 
 
 
 
 
 
 
 
 
 
af99c56
6d69a4c
 
af99c56
6d69a4c
0cdcb6f
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
357
358
359
360
361
362
363
364
import initWasm, {
    decrypt_serialized_u64_radix_flat_wasm
} from './concrete-ml-extensions-wasm/concrete_ml_extensions_wasm.js';

const SERVER = 'https://api.zama.ai';

let clientKey, serverKey;
let encTokens;
let encServerResult;
let keygenWorker;
let encryptWorker;
let sessionUid;
let taskId;

// Memory-efficient base64 encoding for large Uint8Array
function uint8ToBase64(uint8) {
    return new Promise((resolve, reject) => {
        const blob = new Blob([uint8]);
        const reader = new FileReader();
        reader.onload = function () {
            const base64 = reader.result.split(',')[1];
            resolve(base64);
        };
        reader.onerror = reject;
        reader.readAsDataURL(blob);
    });
}

const $ = id => document.getElementById(id);
const enable = (id, ok=true) => $(id).disabled = !ok;
const show = (id, visible=true) => $(id).hidden = !visible;

// Hide all spinners immediately
show('keygenSpin', false);
show('spin', false);
show('encIcon', false);
show('tokenizerSpin', false);

// Initialize WASM
(async () => {
    try {
        console.log('[Main] Initializing WASM module...');
        await initWasm();
        console.log('[Main] WASM module initialized successfully');

        // Initialize the keygen worker
        keygenWorker = new Worker(new URL('./keygen-worker.js', import.meta.url), { type: 'module' });
        keygenWorker.onmessage = async function(e) {
            if (e.data.type === 'success') {
                const res = e.data.result;
                console.log('[Main] Key generation successful');
                console.log(`[Main] Client key size: ${res.clientKey.length} bytes`);
                console.log(`[Main] Server key size: ${res.serverKey.length} bytes`);
                clientKey = res.clientKey; serverKey = res.serverKey;
                
                try {
                    // Initialize encryption worker
                    encryptWorker = new Worker(new URL('./encrypt-worker.js', import.meta.url), { type: 'module' });
                    encryptWorker.onmessage = function(e) {
                        if (e.data.type === 'ready') {
                            console.log('[Main] Encryption worker ready');
                        } else if (e.data.type === 'success') {
                            encTokens = e.data.result;
                            console.log(`[Main] Encryption completed: ${encTokens.length} bytes`);
                            show('encryptSpin', false);
                            show('encIcon', true);
                            enable('btnEncrypt', true);
                            enable('btnSend');
                            $('encStatus').textContent = 'Your text is encrypted 🔒';
                        } else if (e.data.type === 'error') {
                            console.error('[Main] Encryption error:', e.data.error);
                            show('encryptSpin', false);
                            enable('btnEncrypt', true);
                            $('encStatus').textContent = `Encryption failed: ${e.data.error}`;
                            alert(`Encryption failed: ${e.data.error}`);
                        }
                    };
                    
                    // Initialize the worker with the client key
                    encryptWorker.postMessage({ type: 'init', clientKey });
                    
                    console.log('[Main] Sending server key to server...');
                    $('keygenStatus').textContent = 'Keys generated, sending server key...';
                    show('keygenSpin', true);

                    const formData = new FormData();
                    const serverKeyBlob = new Blob([serverKey], { type: 'application/octet-stream' });
                    const serverKeyFile = new File([serverKeyBlob], "server.key");
                    formData.append('key', serverKeyFile);
                    formData.append('task_name', 'synthid');

                    const addKeyResponse = await fetch(`${SERVER}/add_key`, {
                        method: 'POST',
                        body: formData
                    });

                    if (!addKeyResponse.ok) {
                        const errorText = await addKeyResponse.text();
                        throw new Error(`Server /add_key failed: ${addKeyResponse.status} ${errorText}`);
                    }

                    const { uid } = await addKeyResponse.json();
                    sessionUid = uid;
                    console.log('[Main] Server key sent and UID received:', sessionUid);
                    $('keygenStatus').textContent = 'Keys generated & UID received ✓';
                    enable('btnEncrypt');
                } catch (error) {
                    console.error('[Main] Server key submission error:', error);
                    $('keygenStatus').textContent = `Server key submission failed: ${error.message}`;
                    enable('btnEncrypt', false);
                } finally {
                    show('keygenSpin', false);
                }
            } else {
                console.error('[Main] Key generation error:', e.data.error);
                $('keygenStatus').textContent = `Error generating keys: ${e.data.error}`;
                show('keygenSpin', false);
            }
        };
    } catch (e) {
        console.error('[Main] Failed to initialize WASM module:', e);
        $('keygenStatus').textContent = `Initialization Error: ${e.message}`;
        throw e;
    }
})();

$('btnKeygen').onclick = async () => {
    if ($('keygenSpin').hidden === false) {
        console.log('[Main] Keygen already in progress, ignoring click');
        return;
    }
    show('keygenSpin', true);
    $('keygenStatus').textContent = 'generating…';
    try {
        keygenWorker.postMessage({});
    } catch (e) {
        console.error('[Main] Key generation error:', e);
        $('keygenStatus').textContent = `Error generating keys: ${e.message}`;
        show('keygenSpin', false);
    }
};

// Add token counter functionality
$('tokenInput').addEventListener('input', () => {
    const text = $('tokenInput').value.trim();
    if (text && typeof llama3Tokenizer !== 'undefined') {
        try {
            const tokenIds = llama3Tokenizer.encode(text);
            const tokenCount = tokenIds.length;
            const TOKEN_LIMIT = 16;
            
            if (tokenCount > TOKEN_LIMIT) {
                $('encStatus').textContent = `⚠️ ${tokenCount}/${TOKEN_LIMIT} tokens - text too long`;
                $('encStatus').style.color = '#d32f2f';
            } else if (tokenCount > TOKEN_LIMIT * 0.8) {
                $('encStatus').textContent = `${tokenCount}/${TOKEN_LIMIT} tokens`;
                $('encStatus').style.color = '#f57c00';
            } else {
                $('encStatus').textContent = `${tokenCount}/${TOKEN_LIMIT} tokens`;
                $('encStatus').style.color = '';
            }
        } catch (e) {
            // Tokenizer might not be ready yet
            $('encStatus').textContent = '';
        }
    } else {
        $('encStatus').textContent = '';
        $('encStatus').style.color = '';
    }
});

$('btnEncrypt').onclick = async () => {
    const text = $('tokenInput').value.trim();
    if (!text) {
        console.error('[Main] No text provided for tokenization/encryption');
        alert('Please enter text to encrypt.');
        return;
    }
    if (!encryptWorker) {
        console.error('[Main] Encryption worker not initialized');
        alert('Encryption worker is not ready. Please generate keys first.');
        return;
    }

    show('encryptSpin', true);
    show('encIcon', false);
    enable('btnEncrypt', false);

    try {
        console.log('[Main] Tokenizing text:', text);
        const tokenIds = llama3Tokenizer.encode(text);
        console.log('[Main] Token IDs:', tokenIds);

        encryptWorker.postMessage({ type: 'encrypt', tokenIds });
    } catch (error) {
        console.error('[Main] Tokenization or encryption initiation error:', error);
        show('encryptSpin', false);
        enable('btnEncrypt', true);
        alert(`Error during tokenization/encryption: ${error.message}`);
    }
};

async function pollTaskStatus(currentTaskId, currentUid) {
    try {
        const statusResponse = await fetch(`${SERVER}/get_task_status?task_id=${currentTaskId}&uid=${currentUid}`);
        if (!statusResponse.ok) {
            const errorText = await statusResponse.text();
            console.error(`[Poll] Error fetching status: ${statusResponse.status} ${errorText}`);
            $('srvStatus').textContent = `Error checking status`;
            show('spin', false);
            return null;
        }

        const statusData = await statusResponse.json();
        console.log('[Poll] Task status:', statusData);
        
        // Parse and display user-friendly status messages
        let userMessage = '';
        let showComputing = false;
        
        if (statusData.status === 'queued') {
            // Extract position from details if available
            const positionMatch = statusData.details?.match(/Position:\s*(\d+)\/(\d+)/);
            if (positionMatch) {
                const [, position, total] = positionMatch;
                userMessage = `Waiting in queue (${position} of ${total})`;
            } else {
                userMessage = 'Waiting in queue...';
            }
        } else if (statusData.status === 'processing' || statusData.status === 'running') {
            userMessage = 'Processing your request...';
            showComputing = true;
        } else if (statusData.status === 'success' || statusData.status === 'completed') {
            userMessage = 'Processing complete!';
        } else if (['failure', 'revoked', 'unknown', 'error'].includes(statusData.status.toLowerCase())) {
            userMessage = 'Task failed. Please try again.';
        } else {
            // Fallback for any other status
            userMessage = `Status: ${statusData.status}`;
        }
        
        $('srvStatus').textContent = userMessage;
        $('srvComputing').hidden = !showComputing;

        if (statusData.status === 'success' || statusData.status === 'completed') {
            return statusData;
        } else if (['failure', 'revoked', 'unknown', 'error'].includes(statusData.status.toLowerCase())) {
            console.error('[Poll] Task failed or unrecoverable:', statusData);
            show('spin', false);
            return null;
        } else {
            setTimeout(() => pollTaskStatus(currentTaskId, currentUid).then(finalStatus => {
                if (finalStatus && (finalStatus.status === 'success' || finalStatus.status === 'completed')) {
                    getTaskResult(currentTaskId, currentUid, 'synthid');
                }
            }), 5000);
            return null;
        }
    } catch (e) {
        console.error('[Poll] Polling exception:', e);
        $('srvStatus').textContent = 'Connection error. Please check your network.';
        show('spin', false);
        return null;
    }
}

async function getTaskResult(currentTaskId, currentUid, taskName) {
    $('srvStatus').textContent = 'Retrieving results...';
    try {
        const resultResponse = await fetch(`${SERVER}/get_task_result?task_name=${taskName}&task_id=${currentTaskId}&uid=${currentUid}`);

        if (!resultResponse.ok) {
            const errorText = await resultResponse.text();
            throw new Error(`Failed to get results`);
        }

        const resultArrayBuffer = await resultResponse.arrayBuffer();
        encServerResult = new Uint8Array(resultArrayBuffer);

        console.log(`[Main] Received encrypted result: ${encServerResult.length} bytes`);
        $('encResult').value = `Encrypted result (${encServerResult.length} bytes)`;
        const duration = ((performance.now() - window.taskStartTime) / 1000).toFixed(1);
        $('srvStatus').textContent = `✓ Complete! (${duration}s)`;
        enable('btnDecrypt');

    } catch (e) {
        const duration = window.taskStartTime ? ((performance.now() - window.taskStartTime) / 1000).toFixed(1) : 'N/A';
        console.error(`[Main] /get_task_result failed after ${duration}s:`, e);
        $('srvStatus').textContent = 'Failed to retrieve results. Please try again.';
    } finally {
        show('spin', false);
        $('srvComputing').hidden = true;
    }
}

$('btnSend').onclick = async () => {
    if ($('spin').hidden === false) {
        console.log('[Main] Task submission/polling already in progress, ignoring click');
        return;
    }
    if (!sessionUid || !encTokens) {
        alert('Please generate keys and encrypt text first.');
        return;
    }

    show('encIcon', false);
    show('spin', true);
    $('srvStatus').textContent = 'Sending encrypted data...';
    $('srvComputing').hidden = true;  // Ensure it's hidden initially
    window.taskStartTime = performance.now();

    try {
        const formData = new FormData();
        formData.append('uid', sessionUid);
        formData.append('task_name', 'synthid');

        const encryptedInputBlob = new Blob([encTokens], { type: 'application/octet-stream' });
        const encryptedInputFile = new File([encryptedInputBlob], "input.fheencrypted");
        formData.append('encrypted_input', encryptedInputFile);

        const startTaskResponse = await fetch(`${SERVER}/start_task`, {
            method: 'POST',
            body: formData
        });

        if (!startTaskResponse.ok) {
            const errorText = await startTaskResponse.text();
            throw new Error(`Server error: ${startTaskResponse.status}`);
        }

        const { task_id: newTaskId } = await startTaskResponse.json();
        taskId = newTaskId;
        console.log('[Main] Task submitted to server. Task ID:', taskId);
        $('srvStatus').textContent = 'Request submitted. Checking status...';

        pollTaskStatus(taskId, sessionUid).then(finalStatus => {
            if (finalStatus && (finalStatus.status === 'success' || finalStatus.status === 'completed')) {
                getTaskResult(taskId, sessionUid, 'synthid');
            }
        });

    } catch (e) {
        const duration = ((performance.now() - window.taskStartTime) / 1000).toFixed(2);
        console.error(`[Main] Task submission failed after ${duration}s:`, e);
        $('srvStatus').textContent = 'Failed to submit request. Please try again.';
        show('spin', false);
        $('srvComputing').hidden = true;
    }
};

$('btnDecrypt').onclick = () => {
    try {
        console.log('[Main] Starting decryption...');
        const dec = decrypt_serialized_u64_radix_flat_wasm(encServerResult, clientKey);
        const [flag, score_scaled, total_g] = Array.from(dec);
        const score = (Number(score_scaled) / 1e6).toFixed(6);
        console.log('[Main] Decryption successful');
        console.log(`[Main] Result - flag: ${flag}, score: ${score}, total_g: ${total_g}`);
        $('decResult').textContent = `Flag: ${flag}, Score: ${score}, Total G: ${total_g}`;
    } catch (e) {
        console.error('[Main] Decryption error:', e);
        $('decResult').textContent = `Decryption failed: ${e.message}`;
    }
};