docs(daemon): tcpdump comparison for daemon-side server filter pull (#1697)#3516
Merged
Merged
Conversation
…1697) Adds wire-byte audit for server-side filter rules (filter / exclude / include / exclude from / include from in oc-rsyncd.conf module sections) during a pull. Headline finding: no active divergence today; daemon rules are applied process-locally and never serialised. Documents the load-bearing invariants and divergence sentinels. Companion to docs/audits/tcpdump-daemon-proto28-29.md (PR #3513) and docs/daemon/filter-precedence.md (PR #1888).
oferchen
added a commit
that referenced
this pull request
May 5, 2026
…1697) (#3516) Adds wire-byte audit for server-side filter rules (filter / exclude / include / exclude from / include from in oc-rsyncd.conf module sections) during a pull. Headline finding: no active divergence today; daemon rules are applied process-locally and never serialised. Documents the load-bearing invariants and divergence sentinels. Companion to docs/audits/tcpdump-daemon-proto28-29.md (PR #3513) and docs/daemon/filter-precedence.md (PR #1888).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
docs/audits/tcpdump-daemon-server-side-filter-pull.md, a wire-byte audit comparing upstream rsync 3.4.1 with oc-rsync as a daemon serving a pull when the module has server-side filter directives (filter/exclude/include/exclude from/include frominoc-rsyncd.conf).Headline: No active wire-byte divergence today. Daemon-side filter rules are applied process-locally on the sender side as the file list is built; they never traverse the wire in either upstream or oc-rsync. The wire surface for phases 1-8 and 11 is byte-equivalent to a daemon configured with no filter directives. Phases 9-10 differ only by absence of filtered entries, with framing unchanged.
Scope
oc-rsyncd.confonly; client-side CLI filters are covered bydocs/audits/tcpdump-daemon-filter-pull.md.Tracker
Closes #1697.
Related
docs/audits/tcpdump-daemon-proto28-29.md(PR docs(daemon): tcpdump comparison for proto 28/29 daemon transfers (#1699) #3513) - the proto-28/29 wire-byte audit. Establishes baseline daemon byte-equivalence; this audit builds on it.docs/daemon/filter-precedence.md(PR Align CI cross-compile matrix with workspace metadata #1888) - the precedence/evaluation order this audit complements at the wire-trace level.Test plan