forked from PostHog/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpermission-handlers.ts
More file actions
740 lines (664 loc) · 21 KB
/
permission-handlers.ts
File metadata and controls
740 lines (664 loc) · 21 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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
import type {
AgentSideConnection,
RequestPermissionResponse,
} from "@agentclientprotocol/sdk";
import type {
PermissionRuleValue,
PermissionUpdate,
} from "@anthropic-ai/claude-agent-sdk";
import { text } from "../../../utils/acp-content";
import type { Logger } from "../../../utils/logger";
import { toolInfoFromToolUse } from "../conversion/tool-use-to-acp";
import {
getMcpToolApprovalState,
getMcpToolMetadata,
} from "../mcp/tool-metadata";
import {
getClaudePlansDir,
getLatestAssistantText,
isClaudePlanFilePath,
isPlanReady,
} from "../plan/utils";
import {
type AskUserQuestionInput,
normalizeAskUserQuestionInput,
OPTION_PREFIX,
type QuestionItem,
} from "../questions/utils";
import { isToolAllowedForMode, WRITE_TOOLS } from "../tools";
import type { Session } from "../types";
import {
buildExitPlanModePermissionOptions,
buildPermissionOptions,
} from "./permission-options";
import {
extractPostHogSubTool,
isPostHogDestructiveSubTool,
isPostHogExecTool,
} from "./posthog-exec-gate";
export type ToolPermissionResult =
| {
behavior: "allow";
updatedInput: Record<string, unknown>;
updatedPermissions?: PermissionUpdate[];
}
| {
behavior: "deny";
message: string;
interrupt?: boolean;
};
interface ToolHandlerContext {
session: Session;
toolName: string;
toolInput: Record<string, unknown>;
toolUseID: string;
suggestions?: PermissionUpdate[];
signal?: AbortSignal;
client: AgentSideConnection;
sessionId: string;
fileContentCache: { [key: string]: string };
logger: Logger;
updateConfigOption: (configId: string, value: string) => Promise<void>;
applySessionMode: (modeId: string) => Promise<void>;
allowedDomains?: string[];
}
async function emitToolDenial(
context: ToolHandlerContext,
message: string,
): Promise<void> {
context.logger.info(`[canUseTool] Tool denied: ${context.toolName}`, {
message,
});
await context.client.sessionUpdate({
sessionId: context.sessionId,
update: {
sessionUpdate: "tool_call_update",
toolCallId: context.toolUseID,
status: "failed",
content: [{ type: "content", content: text(message) }],
},
});
}
async function buildDenialResult(
context: ToolHandlerContext,
response: RequestPermissionResponse,
): Promise<ToolPermissionResult> {
const feedback = (response._meta?.customInput as string | undefined)?.trim();
const message = feedback
? `User refused permission to run tool with feedback: ${feedback}`
: "User refused permission to run tool";
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: !feedback };
}
function getPlanFromFile(
session: Session,
fileContentCache: { [key: string]: string },
): string | undefined {
return (
session.lastPlanContent ||
(session.lastPlanFilePath
? fileContentCache[session.lastPlanFilePath]
: undefined)
);
}
function ensurePlanInInput(
toolInput: Record<string, unknown>,
fallbackPlan: string | undefined,
): Record<string, unknown> {
const hasPlan = typeof (toolInput as { plan?: unknown })?.plan === "string";
if (hasPlan || !fallbackPlan) {
return toolInput;
}
return { ...toolInput, plan: fallbackPlan };
}
function extractPlanText(input: Record<string, unknown>): string | undefined {
const plan = (input as { plan?: unknown })?.plan;
return typeof plan === "string" ? plan : undefined;
}
async function createPlanValidationError(
message: string,
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: false };
}
async function validatePlanContent(
planText: string | undefined,
context: ToolHandlerContext,
): Promise<{ valid: true } | { valid: false; error: ToolPermissionResult }> {
if (!planText) {
const message = `Plan not ready. Provide the full markdown plan in ExitPlanMode or write it to ${getClaudePlansDir()} before requesting approval.`;
return {
valid: false,
error: await createPlanValidationError(message, context),
};
}
if (!isPlanReady(planText)) {
const message =
"Plan not ready. Provide the full markdown plan in ExitPlanMode before requesting approval.";
return {
valid: false,
error: await createPlanValidationError(message, context),
};
}
return { valid: true };
}
async function requestPlanApproval(
context: ToolHandlerContext,
updatedInput: Record<string, unknown>,
): Promise<RequestPermissionResponse> {
const { client, sessionId, toolUseID, session } = context;
const toolInfo = toolInfoFromToolUse({
name: context.toolName,
input: updatedInput,
});
return await client.requestPermission({
options: buildExitPlanModePermissionOptions(session.modeBeforePlan),
sessionId,
toolCall: {
toolCallId: toolUseID,
title: toolInfo.title,
kind: toolInfo.kind,
content: toolInfo.content,
locations: toolInfo.locations,
rawInput: { ...updatedInput, toolName: context.toolName },
},
});
}
async function applyPlanApproval(
response: RequestPermissionResponse,
context: ToolHandlerContext,
updatedInput: Record<string, unknown>,
): Promise<ToolPermissionResult> {
if (
response.outcome?.outcome === "selected" &&
(response.outcome.optionId === "auto" ||
response.outcome.optionId === "default" ||
response.outcome.optionId === "acceptEdits" ||
response.outcome.optionId === "bypassPermissions")
) {
await context.applySessionMode(response.outcome.optionId);
await context.updateConfigOption("mode", response.outcome.optionId);
return {
behavior: "allow",
updatedInput,
updatedPermissions: context.suggestions ?? [
{
type: "setMode",
mode: response.outcome.optionId,
destination: "localSettings",
},
],
};
}
const customInput = (response._meta as Record<string, unknown> | undefined)
?.customInput as string | undefined;
const feedback = customInput?.trim();
const message = feedback
? `User rejected the plan with feedback: ${feedback}`
: "User rejected the plan. Wait for the user to provide direction.";
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: !feedback };
}
async function handleEnterPlanModeTool(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const { toolInput } = context;
await context.applySessionMode("plan");
await context.updateConfigOption("mode", "plan");
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
async function handleExitPlanModeTool(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const { session, toolInput, fileContentCache } = context;
const planFromFile = getPlanFromFile(session, fileContentCache);
const latestText = getLatestAssistantText(session.notificationHistory);
const fallbackPlan = planFromFile || (latestText ?? undefined);
const updatedInput = ensurePlanInInput(toolInput, fallbackPlan);
const planText = extractPlanText(updatedInput);
const validationResult = await validatePlanContent(planText, context);
if (!validationResult.valid) {
return validationResult.error;
}
const response = await requestPlanApproval(context, updatedInput);
if (context.signal?.aborted || response.outcome?.outcome === "cancelled") {
throw new Error("Tool use aborted");
}
return await applyPlanApproval(response, context, updatedInput);
}
function buildQuestionOptions(question: QuestionItem) {
return (question.options || []).map((opt, idx) => ({
kind: "allow_once" as const,
name: opt.label,
optionId: `${OPTION_PREFIX}${idx}`,
_meta: opt.description ? { description: opt.description } : undefined,
}));
}
async function handleAskUserQuestionTool(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const input = context.toolInput as AskUserQuestionInput;
context.logger.info("[AskUserQuestion] Received input", { input });
const questions = normalizeAskUserQuestionInput(input);
context.logger.info("[AskUserQuestion] Normalized questions", { questions });
if (!questions || questions.length === 0) {
context.logger.warn("[AskUserQuestion] No questions found in input");
return {
behavior: "deny",
message: "No questions provided",
};
}
const { client, sessionId, toolUseID, toolInput } = context;
const firstQuestion = questions[0];
const options = buildQuestionOptions(firstQuestion);
const toolInfo = toolInfoFromToolUse({
name: context.toolName,
input: toolInput,
});
const response = await client.requestPermission({
options,
sessionId,
toolCall: {
toolCallId: toolUseID,
title: firstQuestion.question,
kind: "other",
content: toolInfo.content,
_meta: {
codeToolKind: "question",
questions,
},
},
});
if (context.signal?.aborted || response.outcome?.outcome === "cancelled") {
throw new Error("Tool use aborted");
}
if (response.outcome?.outcome !== "selected") {
const customMessage = (
response._meta as Record<string, unknown> | undefined
)?.message;
return {
behavior: "deny",
message:
typeof customMessage === "string"
? customMessage
: "User cancelled the questions",
};
}
const answers = response._meta?.answers as Record<string, string> | undefined;
if (!answers || Object.keys(answers).length === 0) {
return {
behavior: "deny",
message: "User did not provide answers",
};
}
return {
behavior: "allow",
updatedInput: {
...(context.toolInput as Record<string, unknown>),
answers,
},
};
}
async function handleDefaultPermissionFlow(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const {
session,
toolName,
toolInput,
toolUseID,
client,
sessionId,
suggestions,
} = context;
const toolInfo = toolInfoFromToolUse(
{ name: toolName, input: toolInput },
{ cachedFileContent: context.fileContentCache, cwd: session?.cwd },
);
const options = buildPermissionOptions(
toolName,
toolInput as Record<string, unknown>,
session.settingsManager.getRepoRoot(),
suggestions,
);
const response = await client.requestPermission({
options,
sessionId,
toolCall: {
toolCallId: toolUseID,
title: toolInfo.title,
kind: toolInfo.kind,
content: toolInfo.content,
locations: toolInfo.locations,
rawInput: { ...(toolInput as Record<string, unknown>), toolName },
},
});
if (context.signal?.aborted || response.outcome?.outcome === "cancelled") {
throw new Error("Tool use aborted");
}
if (
response.outcome?.outcome === "selected" &&
(response.outcome.optionId === "allow" ||
response.outcome.optionId === "allow_always")
) {
if (response.outcome.optionId === "allow_always") {
const rules = extractAllowRules(suggestions, toolName);
try {
await session.settingsManager.addAllowRules(rules);
} catch (error) {
context.logger.warn(
"[canUseTool] Failed to persist allow rules to repository settings",
{ error: error instanceof Error ? error.message : String(error) },
);
}
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
updatedPermissions: buildSessionPermissions(suggestions, rules),
};
}
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
return buildDenialResult(context, response);
}
function parseMcpToolName(toolName: string): {
serverName: string;
tool: string;
} {
const parts = toolName.split("__");
return {
serverName: parts[1] ?? toolName,
tool: parts.slice(2).join("__") || toolName,
};
}
async function handleMcpApprovalFlow(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const { toolName, toolInput, toolUseID, client, sessionId } = context;
const { serverName, tool: displayTool } = parseMcpToolName(toolName);
const metadata = getMcpToolMetadata(toolName);
const description = metadata?.description
? `\n\n${metadata.description}`
: "";
const response = await client.requestPermission({
options: [
{ kind: "allow_once", name: "Yes", optionId: "allow" },
{
kind: "allow_always",
name: "Yes, always allow",
optionId: "allow_always",
},
{
kind: "reject_once",
name: "Type here to tell the agent what to do differently",
optionId: "reject",
_meta: { customInput: true },
},
],
sessionId,
toolCall: {
toolCallId: toolUseID,
title: `The agent wants to call ${displayTool} (${serverName})`,
kind: "other",
content: description
? [{ type: "content" as const, content: text(description) }]
: [],
rawInput: { ...(toolInput as Record<string, unknown>), toolName },
_meta: { claudeCode: { toolName } },
},
});
if (context.signal?.aborted || response.outcome?.outcome === "cancelled") {
throw new Error("Tool use aborted");
}
if (
response.outcome?.outcome === "selected" &&
(response.outcome.optionId === "allow" ||
response.outcome.optionId === "allow_always")
) {
if (response.outcome.optionId === "allow_always") {
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
updatedPermissions: [
{
type: "addRules",
rules: [{ toolName }],
behavior: "allow",
destination: "localSettings",
},
],
};
}
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
return buildDenialResult(context, response);
}
async function handlePostHogExecApprovalFlow(
context: ToolHandlerContext,
subTool: string,
): Promise<ToolPermissionResult> {
const { toolName, toolInput, toolUseID, client, sessionId, session } =
context;
const response = await client.requestPermission({
options: [
{ kind: "allow_once", name: "Yes", optionId: "allow" },
{
kind: "allow_always",
name: "Yes, always allow",
optionId: "allow_always",
},
{
kind: "reject_once",
name: "Type here to tell the agent what to do differently",
optionId: "reject",
_meta: { customInput: true },
},
],
sessionId,
toolCall: {
toolCallId: toolUseID,
title: `The agent wants to run \`${subTool}\` on PostHog`,
kind: "other",
content: [
{
type: "content" as const,
content: text(
"This will modify live PostHog data. Approve to run this sub-tool.",
),
},
],
rawInput: { ...(toolInput as Record<string, unknown>), toolName },
_meta: { claudeCode: { toolName } },
},
});
if (context.signal?.aborted || response.outcome?.outcome === "cancelled") {
throw new Error("Tool use aborted");
}
if (
response.outcome?.outcome === "selected" &&
(response.outcome.optionId === "allow" ||
response.outcome.optionId === "allow_always")
) {
if (response.outcome.optionId === "allow_always") {
try {
await session.settingsManager.addPostHogExecApproval(subTool);
} catch (error) {
context.logger.warn(
"[canUseTool] Failed to persist PostHog exec approval",
{ error: error instanceof Error ? error.message : String(error) },
);
}
}
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
return buildDenialResult(context, response);
}
function handlePlanFileException(
context: ToolHandlerContext,
): ToolPermissionResult | null {
const { session, toolName, toolInput } = context;
if (session.permissionMode !== "plan" || !WRITE_TOOLS.has(toolName)) {
return null;
}
const filePath = (toolInput as { file_path?: string })?.file_path;
if (!isClaudePlanFilePath(filePath)) {
return null;
}
session.lastPlanFilePath = filePath;
const content = (toolInput as { content?: string })?.content;
if (typeof content === "string") {
session.lastPlanContent = content;
}
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
function extractAllowRules(
suggestions: PermissionUpdate[] | undefined,
toolName: string,
): PermissionRuleValue[] {
if (!suggestions || suggestions.length === 0) {
return [{ toolName }];
}
return suggestions
.filter(
(update) => update.type === "addRules" && update.behavior === "allow",
)
.flatMap((update) => ("rules" in update ? update.rules : []));
}
/**
* Forwards any non-addRules suggestions from the SDK (e.g. addDirectories)
* with their destination remapped to `session`. Our own allow rules are
* persisted via `settingsManager.addAllowRules`, so the SDK must not write
* them to its default per-cwd location.
*/
function buildSessionPermissions(
suggestions: PermissionUpdate[] | undefined,
rules: PermissionRuleValue[],
): PermissionUpdate[] {
const passthrough = (suggestions ?? [])
.filter(
(update) => !(update.type === "addRules" && update.behavior === "allow"),
)
.map((update) => ({ ...update, destination: "session" as const }));
if (rules.length === 0) {
return passthrough;
}
return [
{ type: "addRules", rules, behavior: "allow", destination: "session" },
...passthrough,
];
}
function extractDomainFromUrl(url: string): string | null {
try {
return new URL(url).hostname;
} catch {
return null;
}
}
function isDomainAllowed(hostname: string, allowedDomains: string[]): boolean {
return allowedDomains.some((pattern) => {
if (pattern.startsWith("*.")) {
const suffix = pattern.slice(1); // ".example.com"
return hostname === pattern.slice(2) || hostname.endsWith(suffix);
}
return hostname === pattern;
});
}
export async function canUseTool(
context: ToolHandlerContext,
): Promise<ToolPermissionResult> {
const { toolName, toolInput, session, allowedDomains } = context;
// Enforce domain allowlist for web tools
if (allowedDomains && allowedDomains.length > 0) {
if (toolName === "WebFetch" || toolName === "WebSearch") {
const url = toolInput.url as string | undefined;
if (url) {
const hostname = extractDomainFromUrl(url);
if (hostname && !isDomainAllowed(hostname, allowedDomains)) {
const message = `Domain "${hostname}" is not in the allowed list: ${allowedDomains.join(", ")}`;
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: false };
}
}
}
}
if (toolName.startsWith("mcp__")) {
const approvalState = getMcpToolApprovalState(toolName);
if (approvalState === "do_not_use") {
const message =
"This tool has been blocked. To re-enable it, go to Settings > MCP Servers in PostHog Code.";
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: false };
}
if (approvalState === "needs_approval") {
return handleMcpApprovalFlow(context);
}
if (isPostHogExecTool(toolName)) {
const subTool = extractPostHogSubTool(toolInput);
if (subTool && isPostHogDestructiveSubTool(subTool)) {
if (
session.permissionMode === "auto" ||
session.permissionMode === "bypassPermissions"
) {
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
if (session.settingsManager.hasPostHogExecApproval(subTool)) {
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
return handlePostHogExecApprovalFlow(context, subTool);
}
}
}
if (isToolAllowedForMode(toolName, session.permissionMode)) {
return {
behavior: "allow",
updatedInput: toolInput as Record<string, unknown>,
};
}
if (toolName === "EnterPlanMode") {
return handleEnterPlanModeTool(context);
}
if (toolName === "ExitPlanMode") {
return handleExitPlanModeTool(context);
}
if (toolName === "AskUserQuestion") {
return handleAskUserQuestionTool(context);
}
const planFileResult = handlePlanFileException(context);
if (planFileResult) {
return planFileResult;
}
// In plan mode, deny tools that aren't in the allowed set. The agent must
// write its plan to ~/.claude/plans/ and call ExitPlanMode before it can
// use write or bash tools. Without this guard, cloud runs auto-approve
// restricted tools and the agent skips planning entirely.
if (session.permissionMode === "plan") {
const message =
"This tool is not available in plan mode. Write your plan " +
`to a file in ${getClaudePlansDir()} and call ExitPlanMode when ready.`;
await emitToolDenial(context, message);
return { behavior: "deny", message, interrupt: false };
}
return handleDefaultPermissionFlow(context);
}