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
use anyhow::Result;
use tracing::{Level, info, instrument};
use crate::cli::HooksCmd;
use crate::hooks::{HookOutput, HookSpecificOutput, ToolUseHookInput, is_interactive_tool};
use crate::permissions::check_permission;
use crate::policy::Effect;
use crate::session_policy;
use crate::settings::{ClashSettings, HookContext};
use crate::trace;
use claude_settings::PermissionRule;
impl HooksCmd {
/// Handle hook when clash is disabled — drain stdin and return pass-through.
fn run_disabled(&self) -> Result<()> {
info!("Clash is disabled (CLASH_DISABLE), returning pass-through");
let output = match self {
Self::SessionStart => {
// Still read stdin to avoid broken pipe.
let _ = crate::hooks::SessionStartHookInput::from_reader(std::io::stdin().lock());
HookOutput::session_start(Some(
"Clash is disabled (CLASH_DISABLE is set). \
All hooks are pass-through — no policy enforcement is active. \
Unset CLASH_DISABLE to re-enable."
.into(),
))
}
_ => {
// Drain stdin to avoid broken pipe, but skip parsing.
let _ = std::io::copy(&mut std::io::stdin().lock(), &mut std::io::sink());
HookOutput::continue_execution()
}
};
output.write_stdout()?;
Ok(())
}
#[instrument(level = Level::TRACE, skip(self))]
pub fn run(&self) -> Result<()> {
if crate::settings::is_disabled() {
return self.run_disabled();
}
let passthrough = crate::settings::is_passthrough();
let output = match self {
Self::PreToolUse => {
let input = ToolUseHookInput::from_reader(std::io::stdin().lock())?;
if passthrough {
info!(
tool = %input.tool_name,
"CLASH_PASSTHROUGH: deferring to native permissions"
);
if let Err(e) = trace::sync_trace(&input.session_id, None) {
tracing::warn!(error = %e, "Failed to sync trace (PreToolUse/passthrough)");
}
HookOutput::continue_execution()
} else {
let hook_ctx = HookContext::from_transcript_path(&input.transcript_path);
let settings = ClashSettings::load_or_create_with_session(
Some(&input.session_id),
Some(&hook_ctx),
)?;
let output = check_permission(&input, &settings)?;
// Interactive tools (e.g., AskUserQuestion) require user input
// via Claude Code's native UI. Returning "allow" would skip that
// UI entirely, so we pass through for any non-deny decision.
if is_interactive_tool(&input.tool_name) && !is_deny_decision(&output) {
info!(tool = %input.tool_name, "Passthrough: interactive tool deferred to Claude Code");
HookOutput::continue_execution()
} else {
// Update session stats for the status line (only here, not in
// log_decision, to avoid double-counting PermissionRequest).
if let Some(effect) = extract_effect(&output) {
crate::audit::update_session_stats(
&input.session_id,
&input.tool_name,
&input.tool_input,
effect,
&input.cwd,
);
}
// If the decision is Ask, record it so PostToolUse can detect
// user approval and suggest a session policy rule.
if is_ask_decision(&output)
&& let Some(ref tool_use_id) = input.tool_use_id
{
session_policy::record_pending_ask(
&input.session_id,
tool_use_id,
&input.tool_name,
&input.tool_input,
&input.cwd,
);
}
// Sync trace with the policy decision for this tool use.
let decision = input.tool_use_id.as_ref().map(|id| {
let effect_str = match extract_effect(&output) {
Some(Effect::Allow) => "allow",
Some(Effect::Deny) => "deny",
Some(Effect::Ask) => "ask",
None => "unknown",
};
trace::PolicyDecision {
tool_use_id: id.clone(),
tool_name: Some(input.tool_name.clone()),
effect: effect_str.to_string(),
reason: None,
}
});
if let Err(e) = trace::sync_trace(&input.session_id, decision) {
tracing::warn!(error = %e, "Failed to sync trace (PreToolUse)");
}
output
}
}
}
Self::PostToolUse => {
let input = ToolUseHookInput::from_reader(std::io::stdin().lock())?;
// Check if this tool use was previously "ask"ed and the user
// accepted. If so, return advisory context suggesting a session
// rule for Claude to offer the user.
let session_context = input.tool_use_id.as_deref().and_then(|tool_use_id| {
let advice = session_policy::process_post_tool_use(
tool_use_id,
&input.session_id,
&input.tool_name,
&input.tool_input,
&input.cwd,
)?;
info!(
rule = %advice.suggested_rule,
"Suggesting session rule for user approval"
);
Some(advice.as_context())
});
// Check if a sandboxed Bash command failed with network or
// filesystem errors, and provide hints about sandbox restrictions.
let (network_context, fs_context) = {
let hook_ctx = HookContext::from_transcript_path(&input.transcript_path);
let settings = ClashSettings::load_or_create_with_session(
Some(&input.session_id),
Some(&hook_ctx),
)
.ok();
let net = settings.as_ref().and_then(|s| {
crate::network_hints::check_for_sandbox_network_hint(&input, s)
});
let fs = settings.as_ref().and_then(|s| {
crate::sandbox_fs_hints::check_for_sandbox_fs_hint(&input, s)
});
(net, fs)
};
// Combine contexts (session policy advice + sandbox hints).
let context = [session_context, network_context, fs_context]
.into_iter()
.flatten()
.collect::<Vec<_>>();
let context = if context.is_empty() {
None
} else {
Some(context.join("\n\n"))
};
// Sync trace to pick up tool responses.
if let Err(e) = trace::sync_trace(&input.session_id, None) {
tracing::warn!(error = %e, "Failed to sync trace (PostToolUse)");
}
HookOutput::post_tool_use(context)
}
Self::PermissionRequest => {
let input = ToolUseHookInput::from_reader(std::io::stdin().lock())?;
if passthrough {
info!(
tool = %input.tool_name,
"CLASH_PASSTHROUGH: deferring permission request to native UI"
);
HookOutput::continue_execution()
} else {
let hook_ctx = HookContext::from_transcript_path(&input.transcript_path);
let settings = ClashSettings::load_or_create_with_session(
Some(&input.session_id),
Some(&hook_ctx),
)?;
crate::handlers::handle_permission_request(&input, &settings)?
}
}
Self::SessionStart => {
let input =
crate::hooks::SessionStartHookInput::from_reader(std::io::stdin().lock())?;
crate::handlers::handle_session_start(&input)?
}
Self::Stop => {
// Read stdin to avoid broken pipe, extract session_id.
let input = crate::hooks::StopHookInput::from_reader(std::io::stdin().lock())?;
// Final catch-up sync for non-tool conversation turns.
if let Err(e) = trace::sync_trace(&input.session_id, None) {
tracing::warn!(error = %e, "Failed to sync trace (Stop)");
}
HookOutput::continue_execution()
}
};
output.write_stdout()?;
Ok(())
}
}
fn extract_effect(output: &HookOutput) -> Option<Effect> {
match &output.hook_specific_output {
Some(HookSpecificOutput::PreToolUse(pre)) => match pre.permission_decision {
Some(PermissionRule::Allow) => Some(Effect::Allow),
Some(PermissionRule::Deny) => Some(Effect::Deny),
Some(PermissionRule::Ask) => Some(Effect::Ask),
Some(PermissionRule::Unset) | None => None,
},
_ => None,
}
}
fn is_ask_decision(output: &HookOutput) -> bool {
matches!(extract_effect(output), Some(Effect::Ask))
}
fn is_deny_decision(output: &HookOutput) -> bool {
matches!(extract_effect(output), Some(Effect::Deny))
}