deer-flow/backend/packages/harness/deerflow/agents/middlewares/input_sanitization_middleware.py
Lee minjing e225ad57d7
feat(uploads): lazy-load historical files via list_uploaded_files tool (#4174)
* feat(uploads): lazy-load historical files via list_uploaded_files tool

Replace per-turn injection of all historical upload metadata with on-demand
discovery via a new `list_uploaded_files` built-in tool, following the same
deferred-discovery pattern used by skills.

- Rename <uploaded_files> block to <current_uploads> (current-run files only)
- Add list_uploaded_files tool with include_outline: bool|list[str]
- Extract outline helpers to shared deerflow/utils/file_outline.py
- Update system prompt to reflect lazy-loading behaviour
- Historical file scan removed from UploadsMiddleware.before_agent()

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(uploads): clear uploaded_files state when no new files in current turn

When before_agent() returns None on empty turns, the LastValue
uploaded_files field retains the previous turn's filenames.
list_uploaded_files then incorrectly excludes those files as
"current-run" files, making them invisible until the next upload.

Fix: return {"uploaded_files": []} instead of None to explicitly
clear state. Add two-turn regression test covering the exact
scenario from review feedback.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: resolve CI lint errors and stale test assertion from merge

- Split long prompt line to fit 240-char limit
- Add missing `Any` import in list_uploaded_files_tool
- Remove unused `re` import in file_conversion (outline code moved)
- Remove unused `os` import in middleware test
- Fix test assertion: <uploaded_files> → <current_uploads> after main merge

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: resolve CI lint errors and stale test assertion from merge

- Split long prompt line to fit 240-char limit
- Add missing `Any` import in list_uploaded_files_tool
- Remove unused `re` import in file_conversion (outline code moved)
- Remove unused `os` import in middleware test
- Fix test assertion: <uploaded_files> → <current_uploads> after main merge

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: add current_uploads to input sanitization exempt tags

The lazy-loading PR renamed <uploaded_files> to <current_uploads>.
The anti-drift guard scans all framework XML blocks and requires each
to be either blocked or explicitly exempted. current_uploads wraps
trusted server-generated file metadata, not user input, so it belongs
in the exempt set.

Co-Authored-By: Claude <noreply@anthropic.com>

* test: regenerate replay golden after uploaded_files state change

before_agent now returns {"uploaded_files": []} instead of None,
adding uploaded_files to SSE values events. Regenerated via
DEERFLOW_WRITE_GOLDEN=1.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: review feedback — memory pipeline, stale tags, state clearing, nits

- Match both tags in memory stripping pipeline (uploaded_files|current_uploads)
- Remove stale uploaded_files from _BLOCKED_TAG_NAMES
- Clear uploaded_files on all before_agent early-return paths
- Fix ponytail: stray word in file_conversion re-export comment
- Remove dead total_omitted branch in _format_omitted_summary
- ruff format fixes

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: block current_uploads, sanitize only original user content

Per review feedback: instead of exempting <current_uploads> (which
allows user forgery), move it to _BLOCKED_TAG_NAMES and change
InputSanitizationMiddleware._process_request to scan only the
original user content (ORIGINAL_USER_CONTENT_KEY) when available.
Server-injected trusted blocks are no longer checked against the
blocked-tag denylist.

Co-Authored-By: Claude <noreply@anthropic.com>

* docs: clarify fallback reason in input sanitization comment

Co-Authored-By: Claude <noreply@anthropic.com>

* @
fix: third-round review feedback — state visibility, sanitization, regex, nits

- list_uploaded_files_tool: logger.warning instead of silent try/except
  on runtime.state read failure (High)
- input_sanitization_middleware: _extract_text_from_content skips empty
  text blocks to match message_content_to_text behaviour; rfind fallback
  path logs warning for observability (Medium)
- memory pipeline regexes: backreference (?P<tag>)(?P=tag) in
  message_processing.py and prompt.py (Low)
- file_conversion.py: re-export moved to top of file (Low)
- Tests: middleware→tool state bridge test; integrated forged-tag +
  multimodal sanitization tests

PR #4174 — Follow-up issues: #4212, #4213, #4214

Co-Authored-By: Claude <noreply@anthropic.com>
@

* @
fix: 4th-round review — denylist, sanitization, scandir, nits

- Add "uploaded_files" back to _BLOCKED_TAG_NAMES (old tag still processed by
  deermem; user forgery must be escaped) (consistency)
- Fix inaccurate rfind-fallback comment: UploadsMiddleware keeps string as
  string, fallback is unreachable for strings (doc fix)
- Distinguish "empty string key" (upload without text) from "non-string key"
  (caller forgery) so empty-text uploads never escape the server block (edge)
- Merge dual os.scandir(uploads_dir) calls into one list re-use (minor)
- Add comment on .md sibling skip known limitation: user-uploaded .md files
  whose stem collides with a converted doc are hidden (boundary, no code change)

Co-Authored-By: Claude <noreply@anthropic.com>
@

* @
fix: tighten rfind-failure fallback — distinguish server blocks from user blocks

When _extract_text_from_content and message_content_to_text disagree on
multimodal list content and rfind fails, use content[0] (server-injected
<current_uploads> block) vs content[1:] (user blocks) to sanitize only
user blocks.  Raw strings and non-standard dict blocks that
_extract_text_from_content misses are now also sanitized.

Non-distinguishable paths (< 2 text blocks, non-list content) still
degrade to full sanitization (safe — server block may be escaped but
user forgery never leaks).  All fallback paths log via logger.warning.

Decision 18 / willem-bd 4th-round comment #3

Co-Authored-By: Claude <noreply@anthropic.com>
@

* @
fix: correct comments referencing text_blocks → content in rfind fallback

Co-Authored-By: Claude <noreply@anthropic.com>
@

* fix: 5th-round review — dead code, subagent gating, integration test, perf, consistency

- Delete unreachable ORIGINAL_USER_CONTENT_KEY guard in rfind fallback
  branch (original_user_content guaranteed non-empty str at that point)
- Remove list_uploaded_files from BUILTIN_TOOLS; add include_upload_tool
  param to get_available_tools(), default True; task_tool.py passes False
  so subagents no longer receive a tool whose state exclusion is broken
- Add integration test exercising real create_agent graph (not mocked
  runtime.state) to verify LangGraph propagates before_agent state writes
  into ToolRuntime.state during same-turn tool calls
- Cache DirEntry.stat() st_size in candidates tuple to avoid second
  per-file syscall in the rendering loop
- Make the upload-tag pre-check case-insensitive (content_str.lower())
  to match _UPLOAD_BLOCK_RE re.IGNORECASE

PR #4174 — willem-bd 5th-round review items #1-#5

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(channels): pass files metadata through _human_input_message() for IM uploads

_human_input_message() was not passing additional_kwargs.files to the
downstream message. UploadsMiddleware read no files, wrote
uploaded_files=[], and list_uploaded_files reported same-run IM
attachments as historical files (fancyboi999 repro).

Fix: add files parameter to _human_input_message(), call site passes
files=uploaded. Regression test locks the contract.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(channels): remove legacy <uploaded_files> manual prepend to fix double-injection regression

Commit 8d86dbf6 added files= pass-through to UploadsMiddleware but
left the manual _format_uploaded_files_block() prepend in place.
Every IM attachment reached the model twice — once via the legacy
<uploaded_files> block and once via <current_uploads>.

This commit removes the manual prepend and the now-dead
_format_uploaded_files_block() function. UploadsMiddleware is the
sole upload-context producer for both IM and web paths.

Reported-by: fancyboi999 (PR review)
Co-Authored-By: Claude <noreply@anthropic.com>

* docs: update #4212 issue body to reflect completed fixes and narrowed remaining scope

* chore: remove temporary scratch file

* fix(middleware): neutralize user-derived values inside <current_uploads> block

Upload-derived filenames, paths, outline titles, and preview text are
interpolated verbatim inside the trusted <current_uploads> wrapper,
which InputSanitizationMiddleware exempts from sanitization. A crafted
filename or document heading containing blocked authority tags would
bypass the guardrail and enter model context as trusted framework data.

Fix: call neutralize_untrusted_tags() on all four user-derived values
inside _format_file_entry(), preserving the outer <current_uploads>
wrapper untouched.

Reported-by: fancyboi999 (P1 security review)
Co-Authored-By: Claude <noreply@anthropic.com>

* fix(middleware): neutralize extension labels in omitted-file summary

Files exceeding the 10-item context cap bypass _format_file_entry().
Their extensions, derived from user-controlled filenames via
_extension_label(), were interpolated verbatim into the trusted
<current_uploads> wrapper — another path for blocked authority tags
to escape the guardrail.

Fix: neutralize extension values inside _extension_label(), the
single extraction point for all extension labels.

Reported-by: fancyboi999 (P1 security review)
Co-Authored-By: Claude <noreply@anthropic.com>

* fix(tools): neutralize user-derived values in list_uploaded_files tool result

Apply neutralize_untrusted_tags() to every model-visible user-derived value
returned by list_uploaded_files: filename, virtual path, extension, outline
titles, outline preview lines, and omitted-file extension summary.

This closes the last remaining injection bypass in the upload lazy-loading
path - the <current_uploads> block and its omitted summary were already
neutralized (previous commits), but the list_uploaded_files tool produced
a second exit for the same attacker-controlled metadata that
ToolResultSanitizationMiddleware did not cover.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix(tests): add missing include_upload_tool=False to task_tool mock assertions

PR #4174 added include_upload_tool parameter to get_available_tools().
task_tool.py correctly passes include_upload_tool=False for subagents
but 5 existing tests' assert_called_once_with expectations were not
updated, causing CI failures.

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-07-22 14:02:56 +08:00

451 lines
20 KiB
Python

"""Input guardrail middleware for prompt-injection defense (issue #3630).
Escapes blocked XML-like tags in the last genuine user message (e.g.
``<system>`` → ``&lt;system&gt;``) so they render as literal text instead
of structured-context markers. This preserves the user's intent ("how do
I use DeerFlow's <think> tag?") while neutralizing injection attempts —
the same de-identify-don't-reject strategy as AWS Bedrock's PII ANONYMIZE.
Blocked: system-reserved tags (memory, analysis, etc.) + common injection
tags (system, instruction, role, etc.). Normal HTML/XML tags (<div>,
<span>) are NOT escaped.
Clean input is wrapped in plain-text boundary markers as a secondary
semantic defense (OWASP structured-prompt guidance).
"""
from __future__ import annotations
import logging
import re
from collections.abc import Awaitable, Callable
from typing import override
from langchain.agents import AgentState
from langchain.agents.middleware import AgentMiddleware
from langchain.agents.middleware.types import (
ModelCallResult,
ModelRequest,
ModelResponse,
)
from langchain_core.messages import HumanMessage
from langgraph.errors import GraphBubbleUp
from deerflow.agents.human_input import read_human_input_response
from deerflow.utils.messages import ORIGINAL_USER_CONTENT_KEY, message_content_to_text
logger = logging.getLogger(__name__)
_SUMMARY_MESSAGE_NAME = "summary"
# Finite set of blocked tag names: system-reserved + common injection patterns.
#
# Maintenance: when adding a new framework block tag that the system emits into
# model input, you MUST also update the expected count in
# test_input_sanitization_middleware.py::test_denylist_covers_framework_authority_blocks.
# The test pins the exact number of blocked tags so a new framework tag cannot
# be added without the corresponding regression guard.
_BLOCKED_TAG_NAMES: frozenset[str] = frozenset(
{
# Framework-injected structured/authority blocks. The lead-agent system
# prompt's "System-Context Confidentiality" section (agents/lead_agent/
# prompt.py) declares *every* such tag trusted internal data — it names a
# few then says "and all other structured tags". So the denylist must
# cover the framework's authority blocks as a class, not a hand-picked
# subset: any one of them, forged in untrusted input, mimics trusted
# framework context. Enumerated from the block tags the framework actually
# emits into model input (system prompt + hidden-context/reminder
# middlewares) and pinned against drift by
# test_input_sanitization_middleware.py::test_denylist_covers_framework_authority_blocks.
# Both spellings of the reminder block are covered: "system-reminder"
# (dynamic-context) and "system_reminder" (todo/terminal middlewares).
#
# Subagents share this denylist: build_subagent_runtime_middlewares reuses
# the same _build_runtime_middlewares base, so both sanitization paths guard
# subagent model input too. The subagent system-prompt blocks
# (file_editing_workflow / guidelines / output_format / working_directory)
# are therefore authority blocks of the same class as the lead-agent ones.
"system-reminder",
"system_reminder",
"memory",
"current_date",
"think",
"analysis",
"role",
"soul",
"self_update",
"thinking_style",
"clarification_system",
"critical_reminders",
"response_style",
"citations",
"uploaded_files", # old uploads tag — still processed by deermem for backward-compat
"current_uploads",
"subagent_system",
"skill_system",
"skill_index",
"available_skills",
"disabled_skills",
"memory_tool_system",
"todo_list_system",
"durable_context_data",
"slash_skill_activation",
"mcp_routing_hints",
"available-deferred-tools",
"goal_continuation",
"file_editing_workflow",
"guidelines",
"output_format",
"working_directory",
# Subagent system-prompt block (general_purpose.py): declares the task
# tool off-limits. Forging this in untrusted input could trick the
# model into believing it has (or lacks) tool restrictions it does not.
"tool_restrictions",
# Common prompt-injection tag patterns
"system",
"instruction",
"important",
"override",
"ignore",
"prompt",
}
)
# Matches a full blocked tag: <tag>, </tag>, <tag attrs>, <tag/>, bare <tag
_BLOCKED_TAG_PATTERN = re.compile(
r"<\s*/?\s*(?:" + "|".join(re.escape(t) for t in sorted(_BLOCKED_TAG_NAMES)) + r")\b[^>]*>?",
re.IGNORECASE,
)
# Plain-text boundary markers (OWASP structured-prompt guidance).
_USER_INPUT_BEGIN = "--- BEGIN USER INPUT ---"
_USER_INPUT_END = "--- END USER INPUT ---"
# Neutralized forms injected when the user's text already contains a marker.
# These look visually similar but do not match the real boundary delimiters.
_NEUTRALIZED_BEGIN = "[BEGIN USER INPUT]"
_NEUTRALIZED_END = "[END USER INPUT]"
# Matches either boundary token as a standalone line or embedded in text.
_BOUNDARY_TOKEN_RE = re.compile(
re.escape(_USER_INPUT_BEGIN) + r"|" + re.escape(_USER_INPUT_END),
)
def _escape_tag_match(match: re.Match) -> str:
"""Escape < and > in a blocked-tag match so it renders as literal text."""
return match.group(0).replace("<", "&lt;").replace(">", "&gt;")
def _neutralize_boundary_tokens(text: str) -> str:
"""Replace real BEGIN/END USER INPUT markers with look-alike inert forms."""
return _BOUNDARY_TOKEN_RE.sub(
lambda m: _NEUTRALIZED_BEGIN if m.group(0) == _USER_INPUT_BEGIN else _NEUTRALIZED_END,
text,
)
def neutralize_untrusted_tags(text: str) -> str:
"""Neutralize framework/injection control tokens in untrusted text.
Shared primitive for any content that originates outside the trust boundary
and is about to enter the model context as *data* — currently the genuine
user message (via :func:`_check_user_content`) and remote tool results
(web_fetch / web_search and friends, via
:class:`ToolResultSanitizationMiddleware`).
Applies exactly the two structural defenses, and nothing else:
* blocked framework/injection tags (e.g. ``<system-reminder>``) are
HTML-escaped to ``&lt;system-reminder&gt;`` so they lose their structural
meaning while staying human-readable;
* the plain-text ``--- BEGIN/END USER INPUT ---`` boundary markers are
neutralized so untrusted content cannot forge or break out of the
user-input boundary.
It intentionally does **not** wrap the text in boundary markers: that
framing is specific to the user message. Empty/whitespace-only text is
returned unchanged so callers do not emit marker noise.
"""
if not text.strip():
return text
text = _BLOCKED_TAG_PATTERN.sub(_escape_tag_match, text)
return _neutralize_boundary_tokens(text)
def _is_genuine_user_message(message: object) -> bool:
"""Return True for real user messages, excluding system-injected HumanMessages.
``hide_from_ui`` is also used by hidden UI replies from HumanInputCard, so
only skip hidden HumanMessages that do not carry a valid user response.
"""
if not isinstance(message, HumanMessage):
return False
if message.name == _SUMMARY_MESSAGE_NAME:
return False
if message.additional_kwargs.get("hide_from_ui") and read_human_input_response(message.additional_kwargs) is None:
return False
return True
def _check_user_content(text: str) -> str:
"""Sanitize user content: escape blocked tags, then wrap in boundary markers.
* Empty/whitespace-only → return unchanged (no marker noise).
* Blocked tags → HTML-escape ``<``/``>`` (e.g. ``<system>`` → ``&lt;system&gt;``).
* Boundary tokens in user text → neutralized so they cannot forge boundaries.
* Already wrapped (strict prefix+suffix) → return text unchanged (idempotent).
* Otherwise → wrap in boundary markers.
"""
if not text.strip():
return text
text = _BLOCKED_TAG_PATTERN.sub(_escape_tag_match, text)
# Idempotency: only skip if text is *exactly* wrapped (prefix+suffix),
# not if the user merely typed the begin token somewhere.
if text.startswith(_USER_INPUT_BEGIN) and text.endswith(_USER_INPUT_END):
# Still neutralize boundary tokens in the inner content — a user
# can forge the outer wrapping to bypass the neutralization below
# and inject inner boundary markers (break-out attack).
inner = text[len(_USER_INPUT_BEGIN) : -len(_USER_INPUT_END)]
neutralized_inner = _neutralize_boundary_tokens(inner)
if neutralized_inner == inner:
return text
return f"{_USER_INPUT_BEGIN}{neutralized_inner}{_USER_INPUT_END}"
# Neutralize any boundary tokens the user may have embedded, preventing
# both self-suppression (begin token skips wrapping) and break-out
# (end token creates a premature boundary inside the payload).
text = _neutralize_boundary_tokens(text)
return f"{_USER_INPUT_BEGIN}\n{text}\n{_USER_INPUT_END}"
class InputSanitizationMiddleware(AgentMiddleware[AgentState]):
"""Guardrail middleware that escapes prompt-injection tags in user input.
Blocked tags are HTML-escaped (not rejected) so the user's intent is
preserved while the tags lose their semantic significance. Clean input
is wrapped in plain-text boundary markers. Transformation is temporary
(wrap_model_call) — never written to state.
"""
@staticmethod
def _extract_text_from_content(content: str | list) -> tuple[str, list | None]:
"""Extract concatenated text from a plain-string or content-block-list.
Returns ``(text, extracted_blocks)``. *extracted_blocks* is None when
*content* is a string, or the list of text-content-block dicts when a list.
"""
if isinstance(content, str):
return content, None
if not isinstance(content, list):
return "", None
text_parts: list[str] = []
text_blocks: list[dict] = []
for block in content:
if isinstance(block, dict) and block.get("type") == "text" and isinstance(block.get("text"), str):
text = block["text"]
if not text: # skip empty blocks — matches message_content_to_text behaviour
continue
text_parts.append(text)
text_blocks.append(block)
return "\n".join(text_parts), text_blocks
@staticmethod
def _rebuild_content(
original_content: list,
processed_text: str,
text_blocks: list[dict],
) -> list:
"""Replace text blocks with a single merged text block, preserving interleaved non-text blocks.
For ``[text, image, text]`` the image block between the two text blocks
is kept in place — only the text blocks are collapsed into one.
"""
text_block_ids = {id(b) for b in text_blocks}
first = last = None
for i, block in enumerate(original_content):
if id(block) in text_block_ids:
if first is None:
first = i
last = i
if first is None:
return original_content
result: list = [*original_content[:first], {"type": "text", "text": processed_text}]
# Re-insert any non-text blocks that sat between text blocks
for i in range(first + 1, last + 1):
if id(original_content[i]) not in text_block_ids:
result.append(original_content[i])
result.extend(original_content[last + 1 :])
return result
def _process_request(self, request: ModelRequest) -> ModelRequest:
"""Return a request with the last genuine user message sanitized.
Blocked tags are HTML-escaped (not rejected) so the user's intent is
preserved while the tags lose their semantic significance. Transformation
is temporary — the original request is never mutated.
"""
messages = list(request.messages)
for i in range(len(messages) - 1, -1, -1):
msg = messages[i]
if not _is_genuine_user_message(msg):
if isinstance(msg, HumanMessage):
logger.debug(
"_process_request: skipping non-genuine HumanMessage at pos=%d name=%s hide_from_ui=%s content_preview=%.80r",
i,
msg.name,
msg.additional_kwargs.get("hide_from_ui"),
msg.content,
)
continue
content = msg.content
logger.debug("_process_request: found genuine user message at pos=%d content=%.120r", i, content)
text_content, text_blocks = self._extract_text_from_content(content)
# No text at all (e.g. image-only message) — pass through
if not text_content and not isinstance(content, str):
logger.debug("_process_request: no text content in message — passing through")
return request
# Sanitize only the user's original input when available (set by
# UploadsMiddleware before it prepends the <current_uploads> block),
# so server-injected trusted blocks are never scanned for blocked
# tags. Fall back to full-content scanning only when the marker is
# absent — UploadsMiddleware sets it on upload turns, so plain text
# messages without uploads won't have it. Full-content scanning is
# safe for those: no server-injected <current_uploads> block exists
# to accidentally escape.
preserved_kwargs = dict(msg.additional_kwargs or {})
original_user_content = preserved_kwargs.get(ORIGINAL_USER_CONTENT_KEY)
if isinstance(original_user_content, str) and original_user_content:
processed_user = _check_user_content(original_user_content)
if processed_user != original_user_content:
# Replace only the user's text suffix within the full
# content — server-prepended blocks stay untouched.
idx = text_content.rfind(original_user_content)
if idx >= 0:
processed = text_content[:idx] + processed_user
else:
# _extract_text_from_content and message_content_to_text
# disagreed on text extraction — rfind failed (only
# reachable for multimodal list content; see Decision 18).
if isinstance(content, list) and len(content) >= 2:
# content[0] is the server-injected
# <current_uploads> block (UploadsMiddleware
# prepends it as the first element for list
# content). Sanitize only user blocks (content[1:])
# and rebuild directly — _rebuild_content only
# handles type:"text" blocks and would miss raw
# strings or non-standard dict blocks that
# message_content_to_text sees.
logger.warning(
"rfind failed on multimodal content; sanitizing user content blocks individually",
)
new_content: list = [content[0]]
for block in content[1:]:
if isinstance(block, str):
new_content.append(neutralize_untrusted_tags(block))
elif isinstance(block, dict) and block.get("type") == "text" and isinstance(block.get("text"), str):
sanitized = neutralize_untrusted_tags(block["text"])
if sanitized != block["text"]:
new_content.append({**block, "text": sanitized})
else:
new_content.append(block)
else:
new_content.append(block)
messages[i] = HumanMessage(
content=new_content,
id=msg.id,
name=msg.name,
additional_kwargs=preserved_kwargs,
)
return request.override(messages=messages)
else:
# Cannot distinguish server block from user blocks
# (non-list content or len(content) < 2).
# Degrade to full-content sanitization — server
# block may be escaped (UX degradation) but user
# forgeries are still neutralized (no security
# regression).
logger.warning(
"rfind failed with original_user_content set; cannot distinguish blocks, falling back to full-content sanitization",
)
processed = _check_user_content(text_content)
else:
processed = text_content # no change needed
elif isinstance(original_user_content, str):
# Key is present but empty string (e.g. file upload with no
# text input). No user text to sanitize; server-injected
# blocks must survive untouched.
processed = text_content
else:
processed = _check_user_content(text_content) # fallback
if processed == text_content:
# Already clean / already wrapped — no override needed
return request
if text_blocks:
new_content = self._rebuild_content(content, processed, text_blocks)
else:
new_content = processed
# Preserve the pre-sanitization user text so downstream consumers that
# must see the genuine input (slash skill activation, regenerate) can
# recover it after the BEGIN/END wrapping. Keep a valid value set by
# UploadsMiddleware or an IM channel, but repair malformed metadata so
# persistence never falls back to the wrapped model-facing content.
if not isinstance(original_user_content, str):
if ORIGINAL_USER_CONTENT_KEY in preserved_kwargs:
logger.warning(
"InputSanitizationMiddleware replaced non-string %s metadata: type=%s",
ORIGINAL_USER_CONTENT_KEY,
type(original_user_content).__name__,
)
preserved_kwargs[ORIGINAL_USER_CONTENT_KEY] = message_content_to_text(content)
messages[i] = HumanMessage(
content=new_content,
id=msg.id,
name=msg.name,
additional_kwargs=preserved_kwargs,
)
logger.debug(
"InputSanitizationMiddleware: original=%r -> processed=%r",
content if isinstance(content, str) else "[content-blocks]",
processed,
)
return request.override(messages=messages)
return request
def _try_process(self, request: ModelRequest) -> ModelRequest:
"""Sanitize request; fail-open on unexpected errors.
GraphBubbleUp propagates; other exceptions return the original request.
"""
try:
return self._process_request(request)
except GraphBubbleUp:
raise
except Exception:
logger.warning(
"Input guardrail processing failed; passing original request to model",
exc_info=True,
)
return request
@override
def wrap_model_call(
self,
request: ModelRequest,
handler: Callable[[ModelRequest], ModelResponse],
) -> ModelCallResult:
return handler(self._try_process(request))
@override
async def awrap_model_call(
self,
request: ModelRequest,
handler: Callable[[ModelRequest], Awaitable[ModelResponse]],
) -> ModelCallResult:
return await handler(self._try_process(request))