forked from ultraworkers/claw-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchromeNativeHost.ts
More file actions
527 lines (452 loc) · 13.6 KB
/
Copy pathchromeNativeHost.ts
File metadata and controls
527 lines (452 loc) · 13.6 KB
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
// biome-ignore-all lint/suspicious/noConsole: file uses console intentionally
/**
* Chrome Native Host - Pure TypeScript Implementation
*
* This module provides the Chrome native messaging host functionality,
* previously implemented as a Rust NAPI binding but now in pure TypeScript.
*/
import {
appendFile,
chmod,
mkdir,
readdir,
rmdir,
stat,
unlink,
} from 'fs/promises'
import { createServer, type Server, type Socket } from 'net'
import { homedir, platform } from 'os'
import { join } from 'path'
import { z } from 'zod'
import { lazySchema } from '../lazySchema.js'
import { jsonParse, jsonStringify } from '../slowOperations.js'
import { getSecureSocketPath, getSocketDir } from './common.js'
const VERSION = '1.0.0'
const MAX_MESSAGE_SIZE = 1024 * 1024 // 1MB - Max message size that can be sent to Chrome
const LOG_FILE =
process.env.USER_TYPE === 'ant'
? join(homedir(), '.claude', 'debug', 'chrome-native-host.txt')
: undefined
function log(message: string, ...args: unknown[]): void {
if (LOG_FILE) {
const timestamp = new Date().toISOString()
const formattedArgs = args.length > 0 ? ' ' + jsonStringify(args) : ''
const logLine = `[${timestamp}] [Claude Chrome Native Host] ${message}${formattedArgs}\n`
// Fire-and-forget: logging is best-effort and callers (including event
// handlers) don't await
void appendFile(LOG_FILE, logLine).catch(() => {
// Ignore file write errors
})
}
console.error(`[Claude Chrome Native Host] ${message}`, ...args)
}
/**
* Send a message to stdout (Chrome native messaging protocol)
*/
export function sendChromeMessage(message: string): void {
const jsonBytes = Buffer.from(message, 'utf-8')
const lengthBuffer = Buffer.alloc(4)
lengthBuffer.writeUInt32LE(jsonBytes.length, 0)
process.stdout.write(lengthBuffer)
process.stdout.write(jsonBytes)
}
export async function runChromeNativeHost(): Promise<void> {
log('Initializing...')
const host = new ChromeNativeHost()
const messageReader = new ChromeMessageReader()
// Start the native host server
await host.start()
// Process messages from Chrome until stdin closes
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
while (true) {
const message = await messageReader.read()
if (message === null) {
// stdin closed, Chrome disconnected
break
}
await host.handleMessage(message)
}
// Stop the server
await host.stop()
}
const messageSchema = lazySchema(() =>
z
.object({
type: z.string(),
})
.passthrough(),
)
type ToolRequest = {
method: string
params?: unknown
}
type McpClient = {
id: number
socket: Socket
buffer: Buffer
}
class ChromeNativeHost {
private mcpClients = new Map<number, McpClient>()
private nextClientId = 1
private server: Server | null = null
private running = false
private socketPath: string | null = null
async start(): Promise<void> {
if (this.running) {
return
}
this.socketPath = getSecureSocketPath()
if (platform() !== 'win32') {
const socketDir = getSocketDir()
// Migrate legacy socket: if socket dir path exists as a file/socket, remove it
try {
const dirStats = await stat(socketDir)
if (!dirStats.isDirectory()) {
await unlink(socketDir)
}
} catch {
// Doesn't exist, that's fine
}
// Create socket directory with secure permissions
await mkdir(socketDir, { recursive: true, mode: 0o700 })
// Fix perms if directory already existed
await chmod(socketDir, 0o700).catch(() => {
// Ignore
})
// Clean up stale sockets
try {
const files = await readdir(socketDir)
for (const file of files) {
if (!file.endsWith('.sock')) {
continue
}
const pid = parseInt(file.replace('.sock', ''), 10)
if (isNaN(pid)) {
continue
}
try {
process.kill(pid, 0)
// Process is alive, leave it
} catch {
// Process is dead, remove stale socket
await unlink(join(socketDir, file)).catch(() => {
// Ignore
})
log(`Removed stale socket for PID ${pid}`)
}
}
} catch {
// Ignore errors scanning directory
}
}
log(`Creating socket listener: ${this.socketPath}`)
this.server = createServer(socket => this.handleMcpClient(socket))
await new Promise<void>((resolve, reject) => {
this.server!.listen(this.socketPath!, () => {
log('Socket server listening for connections')
this.running = true
resolve()
})
this.server!.on('error', err => {
log('Socket server error:', err)
reject(err)
})
})
// Set permissions on Unix (after listen resolves so socket file exists)
if (platform() !== 'win32') {
try {
await chmod(this.socketPath!, 0o600)
log('Socket permissions set to 0600')
} catch (e) {
log('Failed to set socket permissions:', e)
}
}
}
async stop(): Promise<void> {
if (!this.running) {
return
}
// Close all MCP clients
for (const [, client] of this.mcpClients) {
client.socket.destroy()
}
this.mcpClients.clear()
// Close server
if (this.server) {
await new Promise<void>(resolve => {
this.server!.close(() => resolve())
})
this.server = null
}
// Cleanup socket file
if (platform() !== 'win32' && this.socketPath) {
try {
await unlink(this.socketPath)
log('Cleaned up socket file')
} catch {
// ENOENT is fine, ignore
}
// Remove directory if empty
try {
const socketDir = getSocketDir()
const remaining = await readdir(socketDir)
if (remaining.length === 0) {
await rmdir(socketDir)
log('Removed empty socket directory')
}
} catch {
// Ignore
}
}
this.running = false
}
async isRunning(): Promise<boolean> {
return this.running
}
async getClientCount(): Promise<number> {
return this.mcpClients.size
}
async handleMessage(messageJson: string): Promise<void> {
let rawMessage: unknown
try {
rawMessage = jsonParse(messageJson)
} catch (e) {
log('Invalid JSON from Chrome:', (e as Error).message)
sendChromeMessage(
jsonStringify({
type: 'error',
error: 'Invalid message format',
}),
)
return
}
const parsed = messageSchema().safeParse(rawMessage)
if (!parsed.success) {
log('Invalid message from Chrome:', parsed.error.message)
sendChromeMessage(
jsonStringify({
type: 'error',
error: 'Invalid message format',
}),
)
return
}
const message = parsed.data
log(`Handling Chrome message type: ${message.type}`)
switch (message.type) {
case 'ping':
log('Responding to ping')
sendChromeMessage(
jsonStringify({
type: 'pong',
timestamp: Date.now(),
}),
)
break
case 'get_status':
sendChromeMessage(
jsonStringify({
type: 'status_response',
native_host_version: VERSION,
}),
)
break
case 'tool_response': {
if (this.mcpClients.size > 0) {
log(`Forwarding tool response to ${this.mcpClients.size} MCP clients`)
// Extract the data portion (everything except 'type')
const { type: _, ...data } = message
const responseData = Buffer.from(jsonStringify(data), 'utf-8')
const lengthBuffer = Buffer.alloc(4)
lengthBuffer.writeUInt32LE(responseData.length, 0)
const responseMsg = Buffer.concat([lengthBuffer, responseData])
for (const [id, client] of this.mcpClients) {
try {
client.socket.write(responseMsg)
} catch (e) {
log(`Failed to send to MCP client ${id}:`, e)
}
}
}
break
}
case 'notification': {
if (this.mcpClients.size > 0) {
log(`Forwarding notification to ${this.mcpClients.size} MCP clients`)
// Extract the data portion (everything except 'type')
const { type: _, ...data } = message
const notificationData = Buffer.from(jsonStringify(data), 'utf-8')
const lengthBuffer = Buffer.alloc(4)
lengthBuffer.writeUInt32LE(notificationData.length, 0)
const notificationMsg = Buffer.concat([
lengthBuffer,
notificationData,
])
for (const [id, client] of this.mcpClients) {
try {
client.socket.write(notificationMsg)
} catch (e) {
log(`Failed to send notification to MCP client ${id}:`, e)
}
}
}
break
}
default:
log(`Unknown message type: ${message.type}`)
sendChromeMessage(
jsonStringify({
type: 'error',
error: `Unknown message type: ${message.type}`,
}),
)
}
}
private handleMcpClient(socket: Socket): void {
const clientId = this.nextClientId++
const client: McpClient = {
id: clientId,
socket,
buffer: Buffer.alloc(0),
}
this.mcpClients.set(clientId, client)
log(
`MCP client ${clientId} connected. Total clients: ${this.mcpClients.size}`,
)
// Notify Chrome of connection
sendChromeMessage(
jsonStringify({
type: 'mcp_connected',
}),
)
socket.on('data', (data: Buffer) => {
client.buffer = Buffer.concat([client.buffer, data])
// Process complete messages
while (client.buffer.length >= 4) {
const length = client.buffer.readUInt32LE(0)
if (length === 0 || length > MAX_MESSAGE_SIZE) {
log(`Invalid message length from MCP client ${clientId}: ${length}`)
socket.destroy()
return
}
if (client.buffer.length < 4 + length) {
break // Wait for more data
}
const messageBytes = client.buffer.slice(4, 4 + length)
client.buffer = client.buffer.slice(4 + length)
try {
const request = jsonParse(
messageBytes.toString('utf-8'),
) as ToolRequest
log(
`Forwarding tool request from MCP client ${clientId}: ${request.method}`,
)
// Forward to Chrome
sendChromeMessage(
jsonStringify({
type: 'tool_request',
method: request.method,
params: request.params,
}),
)
} catch (e) {
log(`Failed to parse tool request from MCP client ${clientId}:`, e)
}
}
})
socket.on('error', err => {
log(`MCP client ${clientId} error: ${err}`)
})
socket.on('close', () => {
log(
`MCP client ${clientId} disconnected. Remaining clients: ${this.mcpClients.size - 1}`,
)
this.mcpClients.delete(clientId)
// Notify Chrome of disconnection
sendChromeMessage(
jsonStringify({
type: 'mcp_disconnected',
}),
)
})
}
}
/**
* Chrome message reader using async stdin. Synchronous reads can crash Bun, so we use
* async reads with a buffer.
*/
class ChromeMessageReader {
private buffer = Buffer.alloc(0)
private pendingResolve: ((value: string | null) => void) | null = null
private closed = false
constructor() {
process.stdin.on('data', (chunk: Buffer) => {
this.buffer = Buffer.concat([this.buffer, chunk])
this.tryProcessMessage()
})
process.stdin.on('end', () => {
this.closed = true
if (this.pendingResolve) {
this.pendingResolve(null)
this.pendingResolve = null
}
})
process.stdin.on('error', () => {
this.closed = true
if (this.pendingResolve) {
this.pendingResolve(null)
this.pendingResolve = null
}
})
}
private tryProcessMessage(): void {
if (!this.pendingResolve) {
return
}
// Need at least 4 bytes for length prefix
if (this.buffer.length < 4) {
return
}
const length = this.buffer.readUInt32LE(0)
if (length === 0 || length > MAX_MESSAGE_SIZE) {
log(`Invalid message length: ${length}`)
this.pendingResolve(null)
this.pendingResolve = null
return
}
// Check if we have the full message
if (this.buffer.length < 4 + length) {
return // Wait for more data
}
// Extract the message
const messageBytes = this.buffer.subarray(4, 4 + length)
this.buffer = this.buffer.subarray(4 + length)
const message = messageBytes.toString('utf-8')
this.pendingResolve(message)
this.pendingResolve = null
}
async read(): Promise<string | null> {
if (this.closed) {
return null
}
// Check if we already have a complete message buffered
if (this.buffer.length >= 4) {
const length = this.buffer.readUInt32LE(0)
if (
length > 0 &&
length <= MAX_MESSAGE_SIZE &&
this.buffer.length >= 4 + length
) {
const messageBytes = this.buffer.subarray(4, 4 + length)
this.buffer = this.buffer.subarray(4 + length)
return messageBytes.toString('utf-8')
}
}
// Wait for more data
return new Promise(resolve => {
this.pendingResolve = resolve
// In case data arrived between check and setting pendingResolve
this.tryProcessMessage()
})
}
}