docs(lxmf): enumerate FIELD_*/AM_*/RENDERER_*/PN_META_*/SF_* constants in §5.9

Adds a new §5.9 "LXMF field constants and helper specifiers" that
documents every numeric allocation in upstream LXMF/LXMF.py — the
20 top-level fields dict keys (0x01..0x0F + 0xFB..0xFF), the 20
FIELD_AUDIO mode bytes (Codec2 + Opus families), the 4 renderer
bytes, the 7 propagation-node metadata keys, and the
SF_COMPRESSION capability flag. Each entry is cross-referenced
against the section that describes its byte-level shape where one
exists (e.g. §5.9.2 for FIELD_IMAGE, §5.9.4 for FIELD_RENDERER).

Verifier in tools/verify_lxmf_fields.py loads upstream LXMF (0.9.7
in this run) and confirms every constant numerically — and fails if
upstream adds a new FIELD_/AM_/RENDERER_/PN_META_/SF_ constant that
isn't yet enumerated in the spec. Per agent.md §1, this promotes
the inventory from "implicit in code" to "verified against upstream."

The byte-level value shapes for fields whose contents are
application-defined (FIELD_EMBEDDED_LXMS, FIELD_TELEMETRY*,
FIELD_FILE_ATTACHMENTS, FIELD_COMMANDS, FIELD_RESULTS, FIELD_GROUP,
FIELD_EVENT, FIELD_RNR_REFS) are marked UNVERIFIED — future PRs
should pin them with captured test vectors.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Rob 2026-05-13 13:12:41 -04:00
commit 3eea25977a
2 changed files with 263 additions and 3 deletions

120
SPEC.md
View file

@ -43,7 +43,8 @@ Source citations refer to the standard `pip install rns lxmf` install layout (`R
- [5.6 Signature verification — msgpack variant tolerance](#56-signature-verification-msgpack-variant-tolerance)
- [5.7 LXMF stamps and tickets (anti-spam)](#57-lxmf-stamps-and-tickets-anti-spam)
- [5.8 Propagation node protocol (offline message store-and-forward)](#58-propagation-node-protocol-offline-message-store-and-forward)
- [5.9 Source](#59-source)
- [5.9 LXMF field constants and helper specifiers](#59-lxmf-field-constants-and-helper-specifiers)
- [5.10 Source](#510-source)
- [6. Reticulum Link protocol](#6-reticulum-link-protocol)
- [6.1 LINKREQUEST (initiator → responder)](#61-linkrequest-initiator-responder)
- [6.2 LRPROOF (responder → initiator)](#62-lrproof-responder-initiator)
@ -947,9 +948,122 @@ Receivers parse this via `pn_announce_data_is_valid` (`LXMF/LXMF.py:191-206`), w
| `LXMF/LXStamper.py::validate_peering_key` | peering-key PoW validation |
| `LXMF/LXMF.py:191-206` | `pn_announce_data_is_valid` parser |
### 5.9 Source
### 5.9 LXMF field constants and helper specifiers
`LXMF/LXMessage.py` for pack/unpack; `LXMF/LXMF.py` for the app_data extraction helpers; `LXMF/LXStamper.py` for stamps; `LXMF/LXMRouter.py` for receive-side stamp/ticket dispatch and propagation handlers; `LXMF/LXMPeer.py` for the propagation peer-to-peer state machine.
The `fields` dict inside an LXMF message (the 4th element of the msgpack array described in §5.3) is keyed by 1-byte integers. Upstream `LXMF/LXMF.py` (verified against LXMF 0.9.7 by `tools/verify_lxmf_fields.py`) defines the following allocations.
#### 5.9.1 Top-level `fields` dict keys
Sender and receiver agree on these keys; each value's structure is field-specific (described below where it matters at byte level).
| Key | Constant | Purpose |
|---|---|---|
| `0x01` | `FIELD_EMBEDDED_LXMS` | A list of further LXMF messages embedded inside this one (used for forwarding / bundling). |
| `0x02` | `FIELD_TELEMETRY` | A single telemetry snapshot (Sideband telemetry — see Sideband for the inner format; LXMF is opaque to the contents). |
| `0x03` | `FIELD_TELEMETRY_STREAM` | A list of telemetry snapshots (history flush). |
| `0x04` | `FIELD_ICON_APPEARANCE` | Sender-supplied avatar / appearance hint. |
| `0x05` | `FIELD_FILE_ATTACHMENTS` | A list of attached files (multiple attachments per message). |
| `0x06` | `FIELD_IMAGE` | Single embedded image — `[extension_string, image_bytes]`. See §5.9.2 for the wire shape. |
| `0x07` | `FIELD_AUDIO` | Single embedded audio clip — `[mode_byte, audio_bytes]`. Mode byte chooses the codec; see §5.9.3. |
| `0x08` | `FIELD_THREAD` | Conversation thread ID (links related messages). |
| `0x09` | `FIELD_COMMANDS` | List of commands the sender is requesting the receiver execute (Sideband node/command protocol). |
| `0x0A` | `FIELD_RESULTS` | List of results for commands previously requested via `FIELD_COMMANDS`. |
| `0x0B` | `FIELD_GROUP` | Group / channel association metadata. |
| `0x0C` | `FIELD_TICKET` | Stamp ticket grant — `[expires_unix_seconds(int), ticket_bytes(16)]`. See §5.7 for the anti-spam protocol. |
| `0x0D` | `FIELD_EVENT` | Event-style payload (alert, state change). |
| `0x0E` | `FIELD_RNR_REFS` | Reticulum Node Registry references. |
| `0x0F` | `FIELD_RENDERER` | Renderer hint for the message `content` body — see §5.9.4 for accepted values. |
| `0xFB` | `FIELD_CUSTOM_TYPE` | App-defined type identifier accompanying `FIELD_CUSTOM_DATA`. |
| `0xFC` | `FIELD_CUSTOM_DATA` | App-defined opaque data — meaning given by `FIELD_CUSTOM_TYPE`. |
| `0xFD` | `FIELD_CUSTOM_META` | App-defined metadata alongside `FIELD_CUSTOM_DATA`. |
| `0xFE` | `FIELD_NON_SPECIFIC` | Development / unstructured payload — not for production. |
| `0xFF` | `FIELD_DEBUG` | Debug payload — not for production. |
> ⚠️ **UNVERIFIED:** the byte-level shape of `FIELD_EMBEDDED_LXMS`, `FIELD_TELEMETRY*`, `FIELD_FILE_ATTACHMENTS`, `FIELD_COMMANDS`, `FIELD_RESULTS`, `FIELD_GROUP`, `FIELD_EVENT`, and `FIELD_RNR_REFS` is not described here because no test vectors have been captured against upstream Sideband emissions for these. The constants are verified (see `tools/verify_lxmf_fields.py`) but the value structures are application-defined and not pinned by LXMF itself. Future PRs should add per-field byte layouts as test vectors arrive.
#### 5.9.2 `FIELD_IMAGE` (`0x06`) value shape
```
fields[0x06] = [extension_string(bytes-or-str), image_bytes(bytes)]
```
The `extension_string` is the lowercase file extension WITHOUT a leading dot ("jpg", "png", "webp"). The `image_bytes` is the raw image file content. Receivers must tolerate the extension arriving as either msgpack `str` (`0xa0..0xbf` / `0xd9..0xdb`) or msgpack `bin` (`0xc4..0xc6`) — different encoders pick differently. See §9.3 for the `str`-vs-`bin` distinction and §10 for how images larger than a single Reticulum DATA packet are delivered via Resource over a Link.
#### 5.9.3 `FIELD_AUDIO` (`0x07`) value shape
```
fields[0x07] = [mode_byte(int), audio_bytes(bytes)]
```
`mode_byte` is one of the `AM_*` constants defined in `LXMF/LXMF.py` (verified by `tools/verify_lxmf_fields.py`):
| Byte | Constant | Codec | Notes |
|---|---|---|---|
| `0x01` | `AM_CODEC2_450PWB` | Codec2 450 bps pseudo-wideband | |
| `0x02` | `AM_CODEC2_450` | Codec2 450 bps | |
| `0x03` | `AM_CODEC2_700C` | Codec2 700C | |
| `0x04` | `AM_CODEC2_1200` | Codec2 1200 bps | |
| `0x05` | `AM_CODEC2_1300` | Codec2 1300 bps | |
| `0x06` | `AM_CODEC2_1400` | Codec2 1400 bps | |
| `0x07` | `AM_CODEC2_1600` | Codec2 1600 bps | |
| `0x08` | `AM_CODEC2_2400` | Codec2 2400 bps | |
| `0x09` | `AM_CODEC2_3200` | Codec2 3200 bps | |
| `0x10` | `AM_OPUS_OGG` | Opus in OGG container | |
| `0x11` | `AM_OPUS_LBW` | Opus low-bandwidth | |
| `0x12` | `AM_OPUS_MBW` | Opus medium-bandwidth | |
| `0x13` | `AM_OPUS_PTT` | Opus push-to-talk profile | |
| `0x14` | `AM_OPUS_RT_HDX` | Opus realtime half-duplex | |
| `0x15` | `AM_OPUS_RT_FDX` | Opus realtime full-duplex | |
| `0x16` | `AM_OPUS_STANDARD` | Opus standard | |
| `0x17` | `AM_OPUS_HQ` | Opus high-quality | |
| `0x18` | `AM_OPUS_BROADCAST` | Opus broadcast | |
| `0x19` | `AM_OPUS_LOSSLESS` | Opus lossless | |
| `0xFF` | `AM_CUSTOM` | Client-detected — inspect `audio_bytes` to determine the codec |
#### 5.9.4 `FIELD_RENDERER` (`0x0F`) value shape
```
fields[0x0F] = renderer_byte(int)
```
One of the `RENDERER_*` constants:
| Byte | Constant | Rendering |
|---|---|---|
| `0x00` | `RENDERER_PLAIN` | Plain text — no formatting |
| `0x01` | `RENDERER_MICRON` | NomadNet Micron markup (see NomadNet docs) |
| `0x02` | `RENDERER_MARKDOWN` | CommonMark / GitHub-flavored Markdown |
| `0x03` | `RENDERER_BBCODE` | BBCode-style tags |
Implementations should fall back to `RENDERER_PLAIN` for any unknown renderer byte rather than rejecting the message.
#### 5.9.5 Propagation-node metadata keys
Distinct from the top-level `fields` dict, these `PN_META_*` keys are used inside the `fields[0x02]` element of a propagation-node announce (§5.8.5 element [2]) or in `/get`-flow metadata responses. Allocations may change before LXMF 1.0.0 — code defensively.
| Byte | Constant | Purpose |
|---|---|---|
| `0x00` | `PN_META_VERSION` | Propagation protocol version |
| `0x01` | `PN_META_NAME` | Operator-supplied node name |
| `0x02` | `PN_META_SYNC_STRATUM` | Sync tier in the propagation mesh |
| `0x03` | `PN_META_SYNC_THROTTLE` | Operator-imposed sync throttle |
| `0x04` | `PN_META_AUTH_BAND` | Auth requirement (open / restricted / private) |
| `0x05` | `PN_META_UTIL_PRESSURE` | Utilization back-pressure hint |
| `0xFF` | `PN_META_CUSTOM` | Operator-defined extensions |
> ⚠️ **UNVERIFIED:** the value type for each `PN_META_*` key is not yet pinned by this spec — upstream still treats them as a soft contract. Implementations should preserve unknown keys round-trip rather than dropping them.
#### 5.9.6 Functionality signalling keys
For announce-level capability negotiation:
| Byte | Constant | Meaning |
|---|---|---|
| `0x00` | `SF_COMPRESSION` | Sender supports compressed message bodies (see §10.12) |
### 5.10 Source
`LXMF/LXMessage.py` for pack/unpack; `LXMF/LXMF.py` for the app_data extraction helpers and the field/audio/renderer constants enumerated in §5.9; `LXMF/LXStamper.py` for stamps; `LXMF/LXMRouter.py` for receive-side stamp/ticket dispatch and propagation handlers; `LXMF/LXMPeer.py` for the propagation peer-to-peer state machine.
---

146
tools/verify_lxmf_fields.py Normal file
View file

@ -0,0 +1,146 @@
"""
Verifier for SPEC.md §5.9 (LXMF field constants and helper specifiers).
Loads upstream `LXMF.LXMF` and confirms that the numeric allocations of
every `FIELD_*`, `AM_*`, `RENDERER_*`, `PN_META_*`, and `SF_*` constant
match the values listed in §5.9 byte-for-byte. If upstream renumbers a
constant or adds a new one, this verifier fails and the spec section
needs an update.
Exit code 0 on PASS, non-zero on FAIL.
"""
from __future__ import annotations
import sys
import LXMF # noqa: F401 — needed so `from LXMF import LXMF` resolves
from LXMF import LXMF as LXMF_consts
def fail(msg: str) -> None:
print(f"FAIL: {msg}")
sys.exit(1)
EXPECTED_FIELDS = {
"FIELD_EMBEDDED_LXMS": 0x01,
"FIELD_TELEMETRY": 0x02,
"FIELD_TELEMETRY_STREAM": 0x03,
"FIELD_ICON_APPEARANCE": 0x04,
"FIELD_FILE_ATTACHMENTS": 0x05,
"FIELD_IMAGE": 0x06,
"FIELD_AUDIO": 0x07,
"FIELD_THREAD": 0x08,
"FIELD_COMMANDS": 0x09,
"FIELD_RESULTS": 0x0A,
"FIELD_GROUP": 0x0B,
"FIELD_TICKET": 0x0C,
"FIELD_EVENT": 0x0D,
"FIELD_RNR_REFS": 0x0E,
"FIELD_RENDERER": 0x0F,
"FIELD_CUSTOM_TYPE": 0xFB,
"FIELD_CUSTOM_DATA": 0xFC,
"FIELD_CUSTOM_META": 0xFD,
"FIELD_NON_SPECIFIC": 0xFE,
"FIELD_DEBUG": 0xFF,
}
EXPECTED_AUDIO_MODES = {
"AM_CODEC2_450PWB": 0x01,
"AM_CODEC2_450": 0x02,
"AM_CODEC2_700C": 0x03,
"AM_CODEC2_1200": 0x04,
"AM_CODEC2_1300": 0x05,
"AM_CODEC2_1400": 0x06,
"AM_CODEC2_1600": 0x07,
"AM_CODEC2_2400": 0x08,
"AM_CODEC2_3200": 0x09,
"AM_OPUS_OGG": 0x10,
"AM_OPUS_LBW": 0x11,
"AM_OPUS_MBW": 0x12,
"AM_OPUS_PTT": 0x13,
"AM_OPUS_RT_HDX": 0x14,
"AM_OPUS_RT_FDX": 0x15,
"AM_OPUS_STANDARD": 0x16,
"AM_OPUS_HQ": 0x17,
"AM_OPUS_BROADCAST": 0x18,
"AM_OPUS_LOSSLESS": 0x19,
"AM_CUSTOM": 0xFF,
}
EXPECTED_RENDERERS = {
"RENDERER_PLAIN": 0x00,
"RENDERER_MICRON": 0x01,
"RENDERER_MARKDOWN": 0x02,
"RENDERER_BBCODE": 0x03,
}
EXPECTED_PN_META = {
"PN_META_VERSION": 0x00,
"PN_META_NAME": 0x01,
"PN_META_SYNC_STRATUM": 0x02,
"PN_META_SYNC_THROTTLE": 0x03,
"PN_META_AUTH_BAND": 0x04,
"PN_META_UTIL_PRESSURE": 0x05,
"PN_META_CUSTOM": 0xFF,
}
EXPECTED_SF = {
"SF_COMPRESSION": 0x00,
}
def verify_group(label: str, expected: dict[str, int]) -> None:
print(f"== {label} ==")
for name, want in expected.items():
got = getattr(LXMF_consts, name, None)
if got is None:
fail(f"upstream LXMF.LXMF is missing constant `{name}` — spec §5.9 references it")
if got != want:
fail(
f"upstream `LXMF.LXMF.{name}` = 0x{got:02x}, spec §5.9 says 0x{want:02x}. "
"Either upstream renumbered (update the spec table AND this verifier) or "
"the spec is wrong."
)
print(f" {name:<24s} = 0x{got:02x} (matches spec)")
def verify_no_unknown_field_constants() -> None:
"""Fail if upstream has added a FIELD_* / AM_* / RENDERER_* / PN_META_* /
SF_* constant that isn't enumerated in §5.9. The spec needs to stay in
sync with upstream as new field allocations land."""
print("== unknown-constant audit ==")
known = (
set(EXPECTED_FIELDS) | set(EXPECTED_AUDIO_MODES) |
set(EXPECTED_RENDERERS) | set(EXPECTED_PN_META) | set(EXPECTED_SF)
)
prefixes = ("FIELD_", "AM_", "RENDERER_", "PN_META_", "SF_")
for attr in dir(LXMF_consts):
if not any(attr.startswith(p) for p in prefixes):
continue
# Skip non-int attributes (function helpers, etc.)
val = getattr(LXMF_consts, attr)
if not isinstance(val, int):
continue
if attr not in known:
fail(
f"upstream `LXMF.LXMF.{attr}` = 0x{val:02x} is not enumerated in spec §5.9. "
"Add it to the appropriate table and to this verifier."
)
print(" (no unknown FIELD_/AM_/RENDERER_/PN_META_/SF_ constants)")
def main() -> None:
verify_group("FIELD_* (top-level fields dict keys)", EXPECTED_FIELDS)
verify_group("AM_* (FIELD_AUDIO mode bytes)", EXPECTED_AUDIO_MODES)
verify_group("RENDERER_* (FIELD_RENDERER values)", EXPECTED_RENDERERS)
verify_group("PN_META_* (propagation-node metadata keys)", EXPECTED_PN_META)
verify_group("SF_* (functionality signalling)", EXPECTED_SF)
verify_no_unknown_field_constants()
print()
print("PASS")
if __name__ == "__main__":
main()