File size: 12,772 Bytes
1de5011 0cd6bdd 1de5011 0cd6bdd 1de5011 0cd6bdd 1de5011 a144947 1de5011 042a09a 1de5011 | 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 | /* ============================================================
CyberSOC Dashboard β WebSocket API Client
Maintains a persistent WebSocket connection to /ws/{session_id}.
Each browser tab gets its own session_id (UUID in sessionStorage),
giving every tab an isolated CyberSOCEnvironment on the server.
Public surface (unchanged from the old fetch-based API):
API.reset(taskId) β Promise<observation>
API.step(action) β Promise<observation>
API.getState() β { active, session_id }
API.checkConnection() β Promise<boolean>
Internal protocol (client β server):
{ type: "reset", task_id: "hard" }
{ type: "step", ...action fields }
{ type: "ping" }
Internal protocol (server β client):
{ type: "reset_ok", observation: {...}, reward, done }
{ type: "step_ok", observation: {...}, reward, done }
{ type: "error", message: "..." }
{ type: "pong" }
============================================================ */
const API = (() => {
// ββ Session ID βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UUIDs are stored in sessionStorage so each tab has its own session but
// the same tab survives a page refresh.
function _uuid() {
if (typeof crypto !== 'undefined' && crypto.randomUUID) {
return crypto.randomUUID();
}
// Fallback for older browsers
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
const r = (Math.random() * 16) | 0;
return (c === 'x' ? r : (r & 0x3) | 0x8).toString(16);
});
}
const _sessionId = (() => {
try {
let id = sessionStorage.getItem('soc_session_id');
if (!id) { id = _uuid(); sessionStorage.setItem('soc_session_id', id); }
return id;
} catch {
return _uuid(); // sessionStorage blocked (e.g. private mode with strict settings)
}
})();
// ββ External backend override (set by dashboard/js/config.js in Demo mode) β
// config.js sets window.CYBERSOC_BACKEND_URL to the trainer Space URL.
// Empty string β auto-detect from page origin (default for full-stack mode).
const _backendOverride = (
typeof window !== 'undefined' &&
typeof window.CYBERSOC_BACKEND_URL === 'string' &&
window.CYBERSOC_BACKEND_URL.trim()
) ? window.CYBERSOC_BACKEND_URL.trim().replace(/\/$/, '') : '';
// ββ WebSocket URL ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function _wsUrl() {
if (_backendOverride) {
const wsProto = _backendOverride.startsWith('https') ? 'wss:' : 'ws:';
const host = _backendOverride.replace(/^https?:\/\//, '');
return `${wsProto}//${host}/ws/${_sessionId}`;
}
if (typeof window === 'undefined') {
return `ws://localhost:8000/ws/${_sessionId}`;
}
const { protocol, hostname, port } = window.location;
if (protocol === 'file:') return `ws://localhost:8000/ws/${_sessionId}`;
const wsProto = protocol === 'https:' ? 'wss:' : 'ws:';
const host = port ? `${hostname}:${port}` : hostname;
return `${wsProto}//${host}/ws/${_sessionId}`;
}
// HTTP base URL β used only by checkConnection() which pings /health over HTTP
function _httpBase() {
if (_backendOverride) return _backendOverride;
if (typeof window === 'undefined') return 'http://localhost:8000';
const { protocol, hostname, port } = window.location;
if (protocol === 'file:') return 'http://localhost:8000';
return port ? `${protocol}//${hostname}:${port}` : `${protocol}//${hostname}`;
}
// ββ StateStore reference (injected by app.js via setStore) ββββββββββββββββββ
let _store = null;
// ββ WebSocket state ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
let _ws = null;
let _connected = false;
let _reconnectAttempts = 0;
let _reconnectTimer = null;
let _pingInterval = null;
// At most one request is in-flight at a time; the dashboard actions are sequential.
// _pending holds the callbacks and a timeout handle for the current in-flight request.
let _pending = null; // { resolve, reject, timeoutId } | null
const MAX_RECONNECT = 8;
const BACKOFF_MS = [500, 1000, 2000, 4000, 8000, 16000, 30000, 60000];
const REQUEST_TIMEOUT_MS = 30_000;
const PING_INTERVAL_MS = 25_000; // keep connection alive through proxies/HF Spaces
// ββ Pending promise helpers ββββββββββββββββββββββββββββββββββββββββββββββββ
function _resolvePending(data) {
if (!_pending) return;
clearTimeout(_pending.timeoutId);
_pending.resolve(data);
_pending = null;
}
function _rejectPending(reason) {
if (!_pending) return;
clearTimeout(_pending.timeoutId);
_pending.reject(new Error(reason));
_pending = null;
}
// ββ Ping keepalive βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function _startPing() {
_stopPing();
_pingInterval = setInterval(() => {
if (_ws && _ws.readyState === WebSocket.OPEN && !_pending) {
_ws.send(JSON.stringify({ type: 'ping' }));
}
}, PING_INTERVAL_MS);
}
function _stopPing() {
if (_pingInterval !== null) { clearInterval(_pingInterval); _pingInterval = null; }
}
// ββ Connection βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function _connect() {
if (_ws && (_ws.readyState === WebSocket.CONNECTING ||
_ws.readyState === WebSocket.OPEN)) return;
const url = _wsUrl();
_ws = new WebSocket(url);
_ws.onopen = () => {
_connected = true;
_reconnectAttempts = 0;
_reconnectTimer = null;
console.log('[WS] connected β', url);
_startPing();
};
_ws.onmessage = (event) => {
let msg;
try { msg = JSON.parse(event.data); } catch { return; }
switch (msg.type) {
case 'reset_ok':
case 'step_ok':
_resolvePending(msg);
break;
case 'error':
_rejectPending(msg.message || 'Server error');
break;
case 'pong':
break; // keepalive reply β nothing to do
default:
console.warn('[WS] unknown message type:', msg.type);
}
};
_ws.onclose = (ev) => {
_connected = false;
_stopPing();
_rejectPending('WebSocket disconnected');
console.warn(`[WS] closed (code ${ev.code}) β scheduling reconnect`);
_scheduleReconnect();
};
_ws.onerror = () => {
// onclose always fires after onerror; handle everything there
console.warn('[WS] connection error');
};
}
function _scheduleReconnect() {
if (_reconnectTimer !== null) return; // already pending
if (_reconnectAttempts >= MAX_RECONNECT) {
console.error('[WS] max reconnect attempts reached β giving up');
return;
}
const delay = BACKOFF_MS[Math.min(_reconnectAttempts, BACKOFF_MS.length - 1)];
_reconnectAttempts++;
console.log(`[WS] reconnect attempt ${_reconnectAttempts}/${MAX_RECONNECT} in ${delay}ms`);
_reconnectTimer = setTimeout(() => { _reconnectTimer = null; _connect(); }, delay);
}
// ββ Send helper ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Returns a Promise that resolves with the server's response message,
// or rejects on error / timeout / disconnect.
function _send(msg) {
return new Promise((resolve, reject) => {
if (_pending) {
reject(new Error('Another request is already in-flight β try again'));
return;
}
const timeoutId = setTimeout(() => {
_pending = null;
reject(new Error(`Request timed out after ${REQUEST_TIMEOUT_MS / 1000}s`));
}, REQUEST_TIMEOUT_MS);
_pending = { resolve, reject, timeoutId };
const payload = JSON.stringify(msg);
if (_ws && _ws.readyState === WebSocket.OPEN) {
_ws.send(payload);
return;
}
// Not open yet β ensure we're connecting, then poll until open or failed
if (!_ws || _ws.readyState === WebSocket.CLOSED ||
_ws.readyState === WebSocket.CLOSING) {
_connect();
}
const poll = setInterval(() => {
if (!_pending) { clearInterval(poll); return; } // timed out or rejected already
if (_ws && _ws.readyState === WebSocket.OPEN) {
clearInterval(poll);
_ws.send(payload);
} else if (!_ws || _ws.readyState === WebSocket.CLOSED) {
clearInterval(poll);
_rejectPending('WebSocket closed before message could be sent');
}
}, 100);
});
}
// ββ Response parser (same shape as the old fetch-based version) ββββββββββββ
function _parseResponse(msg) {
if (!msg) return null;
const obs = msg.observation || msg;
return {
episode_id: obs.episode_id || '',
alert_queue: obs.alert_queue || [],
network_topology: obs.network_topology || { total_hosts: 0, subnets: {}, compromised_count: 0, isolated_count: 0, online_count: 0 },
host_forensics: obs.host_forensics || null,
timeline: obs.timeline || [],
business_impact_score: obs.business_impact_score ?? 0,
step_count: obs.step_count ?? 0,
active_threats: obs.active_threats || [],
max_steps: obs.max_steps || 30,
task_id: obs.task_id || 'hard',
total_reward: obs.total_reward ?? 0,
final_score: obs.final_score ?? null,
grade_breakdown: obs.grade_breakdown || null,
correlation_results: obs.correlation_results || null,
ioc_enrichment: obs.ioc_enrichment || null,
vulnerability_results: obs.vulnerability_results || null,
playbook_result: obs.playbook_result || null,
threat_graph_summary: obs.threat_graph_summary || null,
available_playbooks: obs.available_playbooks || [],
done: msg.done ?? obs.done ?? false,
reward: msg.reward ?? obs.reward ?? 0,
active_turn: obs.active_turn || null,
};
}
// Eagerly open the WebSocket so it's ready before the user clicks Start
_connect();
// ββ Public API βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
return {
// Inject the StateStore so every parsed response is pushed into it.
// Called once from CyberSOCDashboard.init() before any episode starts.
setStore(store) {
_store = store;
},
// Send a reset message, push parsed observation into the store, return it.
async reset(taskId = 'hard') {
const msg = await _send({ type: 'reset', task_id: taskId });
const parsed = _parseResponse(msg);
_store?.applyObservation(parsed, null);
return parsed;
},
// Send a step message, push parsed observation into the store, return it.
async step(action) {
const msg = await _send({ type: 'step', action: action });
const parsed = _parseResponse(msg);
_store?.applyObservation(parsed, action);
return parsed;
},
// Local state β no server round-trip needed
getState() {
return { active: _connected, session_id: _sessionId };
},
// HTTP /health ping β used by the connection overlay on page load.
// Deliberately stays on HTTP so it never races with the WS handshake.
async checkConnection() {
try {
const r = await fetch(`${_httpBase()}/health`, {
signal: AbortSignal.timeout(3000),
});
return r.ok;
} catch {
return false;
}
},
};
})();
|