mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-08-22 19:08:17 +00:00
Three more routes into the generated source, plus a fix to one of my own tests
that was checking the wrong branch.
Prefixed colour channels were interpolated raw
----------------------------------------------
Five tuples were built without coercion:
p['fill_tuple'] = f"({el.get('r', 100)}, {el.get('g', 200)}, ...)"
p['empty_tuple'] = f"({el.get('emptyR', 50)}, ...)"
p['label_tuple'] = f"({el.get('labelR', 200)}, ...)"
so progress_bar, pips, sparkline and gauge took arbitrary expressions the same
way width/height did. Confirmed: every one of the five put __import__ into the
generated source. They now go through a new _rgb_tuple helper, which _rgb_expr
also delegates to.
The pre-existing colour test only covered r/g/b on a text element, which is why
the prefixed channels and these four types were never exercised.
Non-finite numbers escaped as a 500
-----------------------------------
json.loads accepts Infinity/-Infinity/NaN by default and Flask's get_json
passes them straight through, so a payload can hand _safe_int a non-finite
float. int(inf) raises OverflowError, which is neither ValueError nor
ComposerInputError, so it escaped both handlers and surfaced as a 500 with a
traceback rather than a 422. Verified end to end through Flask's parser.
Marquee ids reached the source as identifiers
---------------------------------------------
data_key is spliced UNQUOTED into variable names (_{{ data_key }}_text = ...)
and only '-' was normalised. A punctuated id landed in the generated source as
code. ast.parse caught it, so this was not exploitable, but the caller got an
opaque "Generated code has a syntax error" instead of being told the id was
unusable -- the same failure mode as the empty-block bug. Now restricted to
identifier characters and bounded to 64.
The line-anchor test was testing the wrong branch
-------------------------------------------------
test_line_branch_applies_the_anchor_offset searched the whole file for
"case 'line': {". getBoundingBox has one too and comes first, so the assertion
was reading the bounding-box branch: stripping the anchor offset from
_drawElement left all 11 checks green. Both line tests are now scoped to their
own function via tree-sitter, so they cannot be satisfied by the same branch.
Tests: 35 of the injection suite's checks fail against the reverted fixes; the
scoped line test fails when _drawElement's offset is removed. Full suite 4059
passed, the one failure being test_install_lowmem (pre-existing, awaiting #492).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01STMbQE4YctTacQXfbYqKuW
302 lines
13 KiB
Python
302 lines
13 KiB
Python
"""The composer generates Python that the plugin loader imports and executes.
|
|
|
|
/api/install writes the generated manager.py into plugins_dir and the loader
|
|
imports it, so anything the payload can splice into that source runs on the
|
|
device. The ast.parse check in _generate_plugin_files rejects only *invalid*
|
|
syntax -- an injected `import os` is perfectly valid and passed it.
|
|
|
|
Two ways in, both confirmed against the code before it was fixed:
|
|
|
|
metadata.name = a name containing a triple-quote, a newline, then
|
|
`import os; PWNED = os.getuid()`, then another triple-quote
|
|
-> closes the module docstring; the rest became module-level statements
|
|
(spelled out rather than shown literally -- writing the payload into
|
|
this docstring closes *this* file's docstring, which is the bug)
|
|
|
|
element x = '0 or __import__("os").system("id")'
|
|
-> f-string interpolated it verbatim: x=0 or __import__("os").system("id")
|
|
"""
|
|
import ast
|
|
import re
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
|
|
|
|
from web_interface.blueprints import composer as C # noqa: E402
|
|
|
|
BASE_META = {"id": "test-plugin", "name": "Clock", "author": "a",
|
|
"version": "1.0.0", "description": "d"}
|
|
|
|
#: Values that terminate a Python expression and start a new statement.
|
|
EXPR_PAYLOADS = [
|
|
'0 or __import__("os").system("id")',
|
|
'0);import os;os.system("id");(',
|
|
'__import__("subprocess").run(["id"])',
|
|
"0 if False else exec('x=1')",
|
|
"1e999", "nan", "0x41", "0__0",
|
|
]
|
|
|
|
#: Values that close a string literal in the generated source.
|
|
LITERAL_PAYLOADS = [
|
|
'Clock"""\nimport os; PWNED = os.getuid()\n"""',
|
|
"Clock'''\nimport os\n'''",
|
|
'Clock" + __import__("os").system("id") + "',
|
|
"Clock\\", "Clock\nimport os",
|
|
]
|
|
|
|
|
|
def _payload(**over):
|
|
# dataModel.configVars is the key _generate_plugin_files reads; "config_vars"
|
|
# was never looked at, so anything passed through it tested nothing.
|
|
p = {"metadata": dict(BASE_META), "elements": [],
|
|
"dataModel": {"configVars": over.pop("config_vars", [])}}
|
|
p["metadata"].update(over.pop("metadata", {}))
|
|
p.update(over)
|
|
return p
|
|
|
|
|
|
def _generated(payload):
|
|
return C._generate_plugin_files(payload)["manager.py"]
|
|
|
|
|
|
def _module_level_code(src):
|
|
"""Statements at module level that are not the docstring/imports/classes."""
|
|
tree = ast.parse(src)
|
|
out = []
|
|
for node in tree.body:
|
|
if isinstance(node, (ast.ClassDef, ast.FunctionDef, ast.ImportFrom)):
|
|
continue
|
|
if isinstance(node, ast.Expr) and isinstance(node.value, ast.Constant):
|
|
continue # the docstring
|
|
out.append(ast.unparse(node))
|
|
return out
|
|
|
|
|
|
@pytest.mark.parametrize("payload", LITERAL_PAYLOADS)
|
|
def test_a_name_that_breaks_out_of_a_literal_is_refused(payload):
|
|
with pytest.raises(C.ComposerInputError):
|
|
_generated(_payload(metadata={"name": payload}))
|
|
|
|
|
|
#: Types with a drawing branch in manager.py.j2. An injection test using any
|
|
#: other type proves nothing: _preprocess_elements drops it, so its values
|
|
#: never reach the generated source and every assertion passes trivially.
|
|
#: This test previously used "line", which has never had a branch.
|
|
RENDERED_GEOMETRY_CASES = [
|
|
("rectangle", {"x": 0, "y": 0, "width": 10, "height": 8}),
|
|
("arc", {"x": 0, "y": 0, "width": 24, "height": 24}),
|
|
("ellipse", {"x": 0, "y": 0, "width": 24, "height": 12}),
|
|
("rounded_rectangle", {"x": 0, "y": 0, "width": 24, "height": 10}),
|
|
("gauge", {"x": 0, "y": 0, "width": 32, "height": 32}),
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize("etype,base", RENDERED_GEOMETRY_CASES)
|
|
@pytest.mark.parametrize("evil", EXPR_PAYLOADS)
|
|
@pytest.mark.parametrize("field", ["x", "y", "width", "height"])
|
|
def test_a_non_numeric_geometry_value_cannot_reach_the_source(etype, base, evil, field):
|
|
"""width/height were interpolated raw into the generated source.
|
|
|
|
p['x2_expr'] = f"({x_expr}) + {w}" with w straight off the payload, so a
|
|
rectangle with width='0 or __import__("os").system("id")' produced
|
|
|
|
[0, 0, (0) + 0 or __import__("os").system("id"), (0) + 8],
|
|
|
|
in a manager.py that /api/install writes to disk and the loader imports.
|
|
"""
|
|
el = {"type": etype, "id": "e1", **base}
|
|
el[field] = evil
|
|
src = _generated(_payload(elements=[el]))
|
|
assert "__import__" not in src, f"{etype}.{field}={evil!r} reached the generated source"
|
|
assert "os.system" not in src
|
|
assert not _module_level_code(src), \
|
|
f"{etype}.{field}={evil!r} produced module-level statements: {_module_level_code(src)}"
|
|
|
|
|
|
def test_every_injection_case_uses_a_type_that_actually_renders():
|
|
"""Guards against the whole suite quietly going vacuous again.
|
|
|
|
An element type with no template branch is dropped before generation, so
|
|
an injection test written against one asserts nothing and still passes.
|
|
"""
|
|
used = {etype for etype, _ in RENDERED_GEOMETRY_CASES}
|
|
missing = used - set(C._RENDERABLE_ELEMENT_TYPES)
|
|
assert not missing, f"injection tests use non-rendering types: {sorted(missing)}"
|
|
|
|
|
|
@pytest.mark.parametrize("evil", EXPR_PAYLOADS)
|
|
@pytest.mark.parametrize("channel", ["r", "g", "b"])
|
|
def test_a_non_numeric_colour_channel_cannot_reach_the_source(evil, channel):
|
|
el = {"type": "text", "id": "t1", "x": 0, "y": 0, "text": "hi",
|
|
"font": "press_start", "r": 255, "g": 255, "b": 255}
|
|
el[channel] = evil
|
|
src = _generated(_payload(elements=[el]))
|
|
assert "__import__" not in src and "os.system" not in src
|
|
assert not _module_level_code(src)
|
|
|
|
|
|
def test_colour_channels_are_clamped_to_a_byte():
|
|
el = {"type": "text", "id": "t1", "x": 0, "y": 0, "text": "hi",
|
|
"font": "press_start", "r": 99999, "g": -5, "b": 128}
|
|
src = _generated(_payload(elements=[el]))
|
|
assert "(255, 0, 128)" in src, "channels were not clamped to 0-255"
|
|
|
|
|
|
def test_the_generated_module_still_has_no_top_level_statements():
|
|
"""The clean case: a normal payload produces only imports and a class."""
|
|
el = {"type": "text", "id": "t1", "x": 4, "y": 4, "text": "hi",
|
|
"font": "press_start", "r": 1, "g": 2, "b": 3}
|
|
src = _generated(_payload(elements=[el]))
|
|
assert not _module_level_code(src)
|
|
assert "(1, 2, 3)" in src
|
|
|
|
|
|
# --- config variable keys ---------------------------------------------------
|
|
|
|
def _with_key(key):
|
|
return {"metadata": dict(BASE_META), "elements": [],
|
|
"dataModel": {"configVars": [{"key": key, "type": "string",
|
|
"default": "x", "label": "L"}]}}
|
|
|
|
|
|
@pytest.mark.parametrize("key", ["class", "def", "import", "None", "True",
|
|
"lambda", "pass", "match", "case"])
|
|
def test_a_keyword_config_key_is_named_in_the_error(key):
|
|
"""ast.parse already rejected these, but as an unhelpful line number.
|
|
|
|
"Generated code has a syntax error: invalid syntax (line 17)" tells the
|
|
user nothing about which field to fix.
|
|
"""
|
|
with pytest.raises(C.ComposerInputError) as exc:
|
|
_generated(_with_key(key))
|
|
assert key in str(exc.value) and "keyword" in str(exc.value).lower()
|
|
|
|
|
|
@pytest.mark.parametrize("key", ["config", "logger", "display_manager",
|
|
"cache_manager", "plugin_id", "enabled",
|
|
"self", "update", "display"])
|
|
def test_a_reserved_attribute_config_key_is_refused(key):
|
|
"""These generate *valid* Python that silently clobbers plugin state.
|
|
|
|
The worst is `config`: the assignment lands right after super().__init__(),
|
|
so `self.config = config.get("config", "x")` replaces the plugin's config
|
|
dict with a string and every later self.config.get(...) fails at runtime.
|
|
"""
|
|
with pytest.raises(C.ComposerInputError) as exc:
|
|
_generated(_with_key(key))
|
|
assert key in str(exc.value) and "reserved" in str(exc.value).lower()
|
|
|
|
|
|
@pytest.mark.parametrize("key", ["brightness", "my_var", "_private", "x1",
|
|
"update_interval_seconds"])
|
|
def test_ordinary_config_keys_are_still_accepted(key):
|
|
src = _generated(_with_key(key))
|
|
assert f"self.{key} = config.get(" in src
|
|
|
|
|
|
def test_the_generated_config_assignment_does_not_precede_super_init():
|
|
"""Guards the reasoning behind the reserved list, not just the list."""
|
|
src = _generated(_with_key("brightness"))
|
|
body = src.splitlines()
|
|
super_at = next(i for i, line in enumerate(body) if "super().__init__(" in line)
|
|
assign_at = next(i for i, line in enumerate(body)
|
|
if "self.brightness = config.get(" in line)
|
|
assert assign_at > super_at, (
|
|
"config vars are assigned before super().__init__(); the reserved-name "
|
|
"list assumes they land after it")
|
|
|
|
|
|
# --- optional keys ----------------------------------------------------------
|
|
|
|
@pytest.mark.parametrize("el_type,missing", [
|
|
("text", "text"), ("text", "text2"), ("clock", "format"),
|
|
])
|
|
def test_an_element_missing_an_optional_key_does_not_500(el_type, missing):
|
|
"""`p` is a copy of the raw element, so an absent key stays absent.
|
|
|
|
The defaults were applied to locals only, so manager.py.j2 rendered
|
|
`{{ el.text | tojson }}` over a jinja2.Undefined and tojson raised
|
|
TypeError -- which no handler catches, making a missing key a 500 rather
|
|
than a validation error or a sensible default.
|
|
"""
|
|
el = {"type": el_type, "id": "e1", "x": 0, "y": 0, "font": "press_start"}
|
|
src = _generated(_payload(elements=[el]))
|
|
ast.parse(src) # must still be valid Python
|
|
assert "Undefined" not in src
|
|
|
|
|
|
def test_a_clock_without_a_format_uses_the_documented_default():
|
|
el = {"type": "clock", "id": "c1", "x": 0, "y": 0, "font": "press_start"}
|
|
src = _generated(_payload(elements=[el]))
|
|
assert '"%H:%M"' in src, "the %H:%M default did not reach the generated source"
|
|
|
|
|
|
#: (element type, channel key, base element) for colour channels that were
|
|
#: interpolated raw rather than through _rgb_expr/_safe_int. Prefixed channels
|
|
#: (emptyR/G/B, labelR/G/B) were the ones the original r/g/b test never reached.
|
|
RAW_COLOUR_CASES = [
|
|
("progress_bar", "r", {"x": 0, "y": 0}),
|
|
("progress_bar", "g", {"x": 0, "y": 0}),
|
|
("pips", "b", {"x": 0, "y": 0}),
|
|
("pips", "emptyR", {"x": 0, "y": 0}),
|
|
("pips", "emptyG", {"x": 0, "y": 0}),
|
|
("sparkline", "r", {"x": 0, "y": 0}),
|
|
("gauge", "labelR", {"x": 0, "y": 0, "width": 32, "height": 32}),
|
|
("gauge", "labelB", {"x": 0, "y": 0, "width": 32, "height": 32}),
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize("etype,channel,base", RAW_COLOUR_CASES)
|
|
@pytest.mark.parametrize("evil", EXPR_PAYLOADS)
|
|
def test_a_prefixed_colour_channel_cannot_reach_the_source(etype, channel, base, evil):
|
|
"""Five tuples were built with f"({el.get('r', 100)}, ...)" -- no coercion.
|
|
|
|
The pre-existing colour test only covered r/g/b on a text element, so the
|
|
prefixed channels and the four other types were never exercised.
|
|
"""
|
|
el = {"type": etype, "id": "e1", **base}
|
|
el[channel] = evil
|
|
src = _generated(_payload(elements=[el]))
|
|
assert "__import__" not in src, f"{etype}.{channel}={evil!r} reached the source"
|
|
assert "os.system" not in src
|
|
assert not _module_level_code(src)
|
|
|
|
|
|
@pytest.mark.parametrize("value", [float("inf"), float("-inf"), float("nan")])
|
|
@pytest.mark.parametrize("field", ["x", "y", "width", "height"])
|
|
def test_a_non_finite_dimension_does_not_escape_as_an_unhandled_error(field, value):
|
|
"""json.loads accepts Infinity/NaN and Flask passes them through, so a
|
|
payload can hand _safe_int a non-finite float. int(inf) raises
|
|
OverflowError -- neither ValueError nor ComposerInputError -- so it escaped
|
|
both handlers and surfaced as a 500 with a traceback instead of a 422."""
|
|
el = {"type": "rectangle", "id": "r1", "x": 0, "y": 0, "width": 10, "height": 8}
|
|
el[field] = value
|
|
src = _generated(_payload(elements=[el])) # must not raise
|
|
# A non-finite value must be replaced by the default, not spelled into the
|
|
# source. Word-boundary match: "info" in self.logger.info contains "inf".
|
|
assert not re.search(r"\b(inf|nan|Infinity|NaN)\b", src), \
|
|
f"{field}={value!r} leaked a non-finite literal into the source"
|
|
assert not _module_level_code(src)
|
|
|
|
|
|
@pytest.mark.parametrize("bad_id", [
|
|
'x = __import__("os").system("id") #',
|
|
"x\nimport os\n_y",
|
|
"x[0]",
|
|
"",
|
|
"a" * 200,
|
|
])
|
|
def test_a_marquee_id_cannot_become_code(bad_id):
|
|
"""data_key is spliced UNQUOTED into variable names
|
|
(_{{ data_key }}_text = ...), so a non-identifier id landed in the source
|
|
as code. ast.parse caught it, but the caller then got an opaque
|
|
"Generated code has a syntax error" rather than being told the id is bad."""
|
|
el = {"type": "marquee", "id": bad_id, "x": 0, "y": 0, "text": "hi"}
|
|
src = _generated(_payload(elements=[el])) # must not raise
|
|
assert "__import__(" not in src
|
|
assert "os.system(" not in src
|
|
assert not _module_level_code(src)
|