The compose pinned 172.31.0.0/24 with a per-container ipv4_address, so two concurrent runs of this suite asked docker for the same address space and the second failed with a pool-overlap error. Request no subnet instead and let docker assign one from the daemon pool, which leaves nothing for two runs to contend for. Peers now address each other by the docker hostname the compose already sets (host-a through host-f) rather than by literal IP, and docker's embedded DNS is per-network, so the same hostname in two runs resolves inside each run's own subnet. The generated config directory moves under the run suffix in the same change, because it has to: the generator does rm -rf on it, so a shared directory means one run deletes the fixtures another is still using, which fails silently rather than loudly at bring-up. Scoping it requires the generator output path, all five bind-mount sources per service, and the gitignore entry together; scoping only the generator leaves the compose reading the unscoped path. The floating subnet removes one of the two obstacles to running this suite twice at once, not both: the compose project name is still fixed, and nothing scopes it for this suite. Recorded at the site so the comment does not claim more than the change delivers.
5.9 KiB
ACL Allowlist Test
Six Docker nodes use per-node ACL files mounted at the hardcoded runtime paths:
node-aandnode-bcarry the insider allowlist (node-a,node-b,node-e,node-f)node-candnode-deach carry a broad allowlist containing every node aliasnode-eandnode-fdo not mount any ACL files locally- every node gets a generated
/etc/fips/hostswith aliases fornode-athroughnode-f
This lets us test three different node behaviors at once:
- insiders (
a,b) explicitly allowa,b,e, andf - outsiders (
c,d) allow everyone locally, but still cannot join because insiders reject them - allowed remotes (
e,f) rely on the insider ACLs and do not need local ACL files
Test Identities
Allowed:
node-anpub1sjlh2c3x9w7kjsqg2ay080n2lff2uvt325vpan33ke34rn8l5jcqawh57m0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
node-bnpub1tdwa4vjrjl33pcjdpf2t4p027nl86xrx24g4d3avg4vwvayr3g8qhd84leb102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1fb0
Denied:
node-cnpub1cld9yay0u24davpu6c35l4vldrhzvaq66pcqtg9a0j2cnjrn9rtsxx2pe6c102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1fc0
node-dnpub1n9lpnv0592cc2ps6nm0ca3qls642vx7yjsv35rkxqzj2vgds52sqgpverld102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1fd0
Additional allowed:
node-enpub1x5z9rwzzm26q9verutx4aajhf2zw2pyp34c6whhde2zduxqav40qgq36l6nsec1egyrmekfw3u4l88v8zhrak9uht503s2kvn9v49tqgp6c5l2yuxgsv386l0
node-fnpub1ytrut7gjncn2zfnhn56c0zgftf0w6p99gf6fu8j73hzw5603zglqc9av6cnsec1afh3nysthqh47awpdewcw59wvvp499f8dvlyclmnv4gvpxdk56dsa6eqsn
The generated fips.key fixtures use a mix of bare hex and nsec1... values.
FIPS accepts either format in key files.
Run
Build the Linux binaries and test image:
./testing/scripts/build.sh --no-docker
Start the ACL test mesh:
./testing/acl-allowlist/generate-configs.sh
docker compose -f testing/acl-allowlist/docker-compose.yml up -d --build
Or run the full integration check:
./testing/acl-allowlist/test.sh
test.sh regenerates the ACL fixtures automatically before starting Docker.
The generated ACL files use alias names, and the generated hosts file makes
those aliases resolvable at runtime.
The ACL harness pins the expected test entrypoint explicitly so it does not
accidentally reuse an older fips-test:latest image with a different startup
script.
Docker service/container/hostname identifiers in this harness intentionally use
service-*, fips-acl-container-*, and host-* names so they do not collide with the logical FIPS aliases
node-a through node-f. For data-plane checks and operator examples, use the
explicit FIPS names such as node-a.fips and node-d.fips.
The bridge network requests no subnet, so docker assigns one from its own
address pool and two concurrent runs of this harness never contend for a fixed
range. Consequently no node's IPv4 address is known before startup, and the
generated peer stanzas address each other by docker hostname (host-a …
host-f), resolved through the container's dnsmasq to docker's embedded DNS.
ACL paths are fixed in this branch:
/etc/fips/peers.allow/etc/fips/peers.deny
Mounted ACL files in this harness:
node-aandnode-b: insider allowlist plusALLdeny fallbacknode-candnode-d: broad local allowlist used by outsider nodes trying to blend innode-eandnode-f: no ACL files mounted- all nodes:
/etc/fips/hostsaliases fornode-athroughnode-f
Generated fixture location:
testing/acl-allowlist/generated-configs/, orgenerated-configs<suffix>/whenFIPS_CI_NAME_SUFFIXis set, which is how concurrent runs keep their fixtures apart
Inspect peer state:
docker exec fips-acl-container-a fipsctl show peers
docker exec fips-acl-container-b fipsctl show peers
docker exec fips-acl-container-c fipsctl show peers
docker exec fips-acl-container-d fipsctl show peers
docker exec fips-acl-container-e fipsctl show peers
docker exec fips-acl-container-f fipsctl show peers
Inspect the loaded ACL state directly:
docker exec fips-acl-container-a fipsctl acl show
Use explicit .fips names when checking reachability through the FIPS overlay:
docker exec fips-acl-container-a ping node-d.fips
docker exec fips-acl-container-a ping npub1n9lpnv0592cc2ps6nm0ca3qls642vx7yjsv35rkxqzj2vgds52sqgpverl.fips
The output shows both the original ACL file entries and the resolved effective npub entries.
Expected:
node-aseesnode-b,node-e, andnode-fnode-bseesnode-anode-csees no peersnode-dsees no peersnode-eseesnode-anode-fseesnode-a
Visible rejection logs:
docker compose -f testing/acl-allowlist/docker-compose.yml logs -f service-a service-b service-c service-d service-e service-f
On startup, node-c and node-d immediately try their configured outbound
static connection to node-a. Their own ACLs permit that attempt, but the
insider ACL on node-a still rejects both peers. Because node-a also has
static peer stanzas for node-c and node-d, you may see both
outbound_connect and inbound_handshake rejection messages during startup.
The outsider-initiated path emits messages like:
Rejected peer by ACL ... context=inbound_handshake decision=denylist match
Those messages are now emitted at debug level. This harness enables
RUST_LOG=info,fips::node=debug so the ACL rejection details stay visible in
test logs, and operators can temporarily raise log level the same way when
diagnosing ACL issues locally.
A later ping6 from node-c.fips does not emit a new inbound_handshake message.
The ping uses the data-plane session path, and since no peer session to
node-a.fips was established, it just times out.
Stop and clean up:
docker compose -f testing/acl-allowlist/docker-compose.yml down