]> git.ipfire.org Git - thirdparty/freeradius-server.git/log
thirdparty/freeradius-server.git
4 weeks agofree children entries after they are used
Alan T. DeKok [Thu, 7 May 2026 01:41:49 +0000 (21:41 -0400)] 
free children entries after they are used

i.e. after vasprintf() is called.  otherwise the children are
freed, adn then the pointer which is passed to vasprintf is then
pointing to unused memory

4 weeks agoparent events from the RB tree that they are inserted into
Alan T. DeKok [Wed, 6 May 2026 12:11:38 +0000 (08:11 -0400)] 
parent events from the RB tree that they are inserted into

4 weeks agoadd definitions for extension libraries 5374/head
Alan T. DeKok [Tue, 5 May 2026 20:14:04 +0000 (16:14 -0400)] 
add definitions for extension libraries

because we already add our own wrappers, and we want to be sure
that they are compatible with the upstream code.

4 weeks agoUse existing thread names
Arran Cudbard-Bell [Tue, 5 May 2026 22:32:55 +0000 (18:32 -0400)] 
Use existing thread names

Set the OS thread name for network and worker threads via
pthread_setname_np so they appear in ps/top/htop output.

Adds a configure check for pthread_setname_np (from pthread.h).
Linux and macOS have different signatures (2-arg vs 1-arg), handled
with an __APPLE__ guard matching the existing pattern in thread.c.

4 weeks agoAdd thread names
Arran Cudbard-Bell [Tue, 5 May 2026 20:20:52 +0000 (16:20 -0400)] 
Add thread names

4 weeks agoupdate RB tree freeing process
Alan T. DeKok [Tue, 5 May 2026 16:29:36 +0000 (12:29 -0400)] 
update RB tree freeing process

There are conflicts between the behavior of "free the tree", and
the talloc destructors for a node.  For simplicity / laziness,
the "free tree walker" just walks over the tree, freeing the
node data.  It expects that the tree nodes themselves remain
active during this walk, as the tree is not rebalanced.

The free walker will free the node data, which should NOT free
the individual node.  The node may, in fact, be inside of the
block which is being freed!

We therefore free the talloc children before mangling the tree
structure, so that any talloc destructors can look at the "clean"
tree structure.

We update the various destructors for tree data to check if the
tree is being freed, and then don't try to find / remove the entry
in the tree.

We also update the allocations so that the nodes in the tree are
always parented from the tree.  That way they are cleaned up before
the tree is cleaned up.

If (as before) the tree and nodes are both parented from the same
parent, then the nodes / tree are freed in essentially random order,
and the nodes might stick around after the tree is freed

4 weeks agotypo
Alan T. DeKok [Tue, 5 May 2026 18:34:27 +0000 (14:34 -0400)] 
typo

4 weeks agorlm_ldap: fix call_env safe_for token mismatch causing double-escape of DN/filter...
Arran Cudbard-Bell [Tue, 5 May 2026 17:33:10 +0000 (13:33 -0400)] 
rlm_ldap: fix call_env safe_for token mismatch causing double-escape of DN/filter values

LDAP_DN_CALL_ENV_ESCAPE and LDAP_FILTER_CALL_ENV_ESCAPE were using
fr_ldap_dn_box_escape and fr_ldap_filter_box_escape as their safe_for
tokens, but %ldap.dn.safe and %ldap.filter.safe mark values with
LDAP_DN_SAFE_FOR (fr_ldap_dn_escape_func) and LDAP_FILTER_SAFE_FOR
(fr_ldap_filter_escape_func) respectively.

The mismatched tokens meant pre-marked-safe values (e.g. dc=example,dc=com
passed through %ldap.dn.safe) were not recognised as safe by the call_env
escape check and got re-escaped to dc\3dexample\2cdc\3dcom, producing an
invalid DN syntax error.

Fix: move LDAP_DN_SAFE_FOR / LDAP_FILTER_SAFE_FOR before the call_env
macros and use them consistently in .safe_for and .literals_safe_for.

Also add missing radprofile attributes to profile_injection.attrs: the
filter listed only Idle-Timeout but radprofile for user "john" also sets
Session-Timeout, Acct-Interim-Interval and Framed-IP-Netmask.

4 weeks agoldap xlat_profile test: drop bogus notfound rcode check
Arran Cudbard-Bell [Tue, 5 May 2026 16:37:55 +0000 (12:37 -0400)] 
ldap xlat_profile test: drop bogus notfound rcode check

%ldap.profile() is an xlat, not a module call.  It returns a bool but
does not write the unlang rcode, so checking (!notfound) after the xlat
always sees whatever rcode was current from a prior statement.  The bool
check immediately above already verifies the injection payload does not
match any profile; the rcode check was both wrong and redundant.

4 weeks agorlm_ldap: Add examples to filter.safe, filter.unescape, and uri.* xlat doc sections
Arran Cudbard-Bell [Sun, 3 May 2026 04:52:44 +0000 (00:52 -0400)] 
rlm_ldap: Add examples to filter.safe, filter.unescape, and uri.* xlat doc sections

Split the combined ldap.uri.escape/safe/unescape alias blurb into three
separate sections, each with a concrete example.  Add examples to the
previously bare ldap.filter.safe and ldap.filter.unescape sections.

4 weeks agoLDAP requires _two_ safety schemes, one for DNs one for filters
Arran Cudbard-Bell [Sun, 3 May 2026 04:38:10 +0000 (00:38 -0400)] 
LDAP requires _two_ safety schemes, one for DNs one for filters

- The DN safety scheme would escape '+', which is the RDN separator char.  This would break instances where usernames were extracted directly from certificates, as '+' would become \2c and would not correctly be broken into its constituent RDN values.

- The existing filter schemes were not correctly applied in a number of places, meaning that if the administrator did not escape values with %ldap.uri.escape(), content from unsafe attributes could become structural elements of filters or DNs.

4 weeks agoclean up cf_data_add() usages
Alan T. DeKok [Tue, 5 May 2026 01:20:39 +0000 (21:20 -0400)] 
clean up cf_data_add() usages

* client / unlang code marked the data as "to free", even though
  the data was already parented by a talloc'd chunk.  So any call
  to decrease_ref_count() would result in a use after free

* update cf_data_free() set / destructor so that the destructor
  is set only when the data needs to be freed.  which means that
  the destructor doesn't need to check the "do_free" flag

4 weeks agopass correct parameters to pooled_object()
Alan T. DeKok [Sun, 3 May 2026 15:40:19 +0000 (11:40 -0400)] 
pass correct parameters to pooled_object()

because that API is weird and confusing.

4 weeks agoupdate valgrind.h path to <valgrind/valgrind.h>
Marc-Andre Casavant [Fri, 1 May 2026 17:48:04 +0000 (13:48 -0400)] 
update valgrind.h path to <valgrind/valgrind.h>

4 weeks agomore ${Q}
Alan T. DeKok [Sat, 2 May 2026 14:52:51 +0000 (10:52 -0400)] 
more ${Q}

4 weeks agouse our internal header, which wraps the public one
Alan T. DeKok [Sat, 2 May 2026 13:11:30 +0000 (09:11 -0400)] 
use our internal header, which wraps the public one

4 weeks agoci: switch from luajit to luajit2 (OpenResty fork) for CI dependencies
Arran Cudbard-Bell [Mon, 4 May 2026 12:58:36 +0000 (08:58 -0400)] 
ci: switch from luajit to luajit2 (OpenResty fork) for CI dependencies

libnginx-mod-http-lua (the nginx Lua module used for rlm_rest testing)
depends on libluajit2-5.1-2 from the OpenResty luajit2 fork. This package
conflicts with libluajit-5.1-2 from the canonical luajit source, so both
package families cannot be installed simultaneously.

The CI Docker image was built with libnginx-mod-http-lua installed, so
libluajit2-5.1-2 is already present and libluajit-5.1-2 / luajit are
absent. mk-build-deps for extra-packages.debian.control was failing because
installing luajit would require removing libluajit2-5.1-2 (and thus
libnginx-mod-http-lua).

Switch extra-packages.debian.control to request libluajit2-5.1-dev and
luajit2 instead. They coexist with the already-installed libluajit2-5.1-2,
provide the same headers and soname for rlm_lua compilation, and the luajit2
interpreter binary is equivalent for any runtime use.

Remove the now-irrelevant apt preferences pin from freeradius-deps/action.yml:
the libluajit-5.1-* packages are not installed in the Docker image at all,
so there was nothing to hold back.

4 weeks agoci: pin all luajit binary packages to dfsg-1
Arran Cudbard-Bell [Mon, 4 May 2026 12:26:23 +0000 (08:26 -0400)] 
ci: pin all luajit binary packages to dfsg-1

The first pin only covered libluajit-5.1-2, but the Ubuntu security
rebuild produced build1 versions of all four binary packages from the
luajit source (libluajit-5.1-2, libluajit-5.1-common, libluajit-5.1-dev,
luajit).  luajit and libluajit-5.1-dev carry strict (= dfsg-1) deps on
BOTH libluajit-5.1-2 and libluajit-5.1-common, so full-upgrade upgrading
libluajit-5.1-common to build1 still removed luajit as a casualty.

Extend the apt preferences pin to cover libluajit-5.1-* (glob) and luajit
explicitly, keeping the entire package set at dfsg-1 until Ubuntu ships a
coherent build1 rebuild of all four.

4 weeks agoci: Add Ubuntu archive mirrors and switch from OpenResty to stock nginx+lua
Arran Cudbard-Bell [Sun, 3 May 2026 18:25:04 +0000 (14:25 -0400)] 
ci: Add Ubuntu archive mirrors and switch from OpenResty to stock nginx+lua

Add ubuntu-mirrors-setup.sh which rewrites /etc/apt/sources.list.d/ubuntu.sources
to use mirror+file: lists for the main archive, ports (arm64), and security suites.
Mirrors are ordered by proximity to Ottawa with the canonical servers as last-resort
fallbacks.  Also drops the apt connect timeout to 5s so dead hosts fail over quickly
rather than stalling for the 120s default.

Remove the ubuntu-toolchain-r/test PPA: gcc-13 and gcc-14 are both in Ubuntu 24.04
universe, so the PPA adds nothing for those versions and has no public mirrors.

Remove the OpenResty apt repo and replace the openresty package with nginx +
libnginx-mod-http-lua + lua-cjson, all from Ubuntu's own repos.  All Lua primitives
used by the rlm_rest test API are standard ngx_lua.  Update openresty-setup.sh to
detect OpenResty vs stock nginx at runtime (macOS dev vs CI), inject the lua
load_module directive when needed, and replace the OpenResty-specific
ngx.ctx.openresty_request_time_us with ngx.now() elapsed timing.

5 weeks agoPacify Coverity (CID 1692449)
Nick Porter [Fri, 1 May 2026 07:18:05 +0000 (08:18 +0100)] 
Pacify Coverity (CID 1692449)

5 weeks agoDon't assing an instruction number twice
Nick Porter [Thu, 30 Apr 2026 13:36:31 +0000 (14:36 +0100)] 
Don't assing an instruction number twice

5 weeks agoEnsure instructions being freed are removed from the tree
Nick Porter [Thu, 30 Apr 2026 13:36:06 +0000 (14:36 +0100)] 
Ensure instructions being freed are removed from the tree

5 weeks agoReplies that come in during a zombie period mean a home server is alive
Nick Porter [Thu, 30 Apr 2026 09:51:03 +0000 (10:51 +0100)] 
Replies that come in during a zombie period mean a home server is alive

5 weeks agoUse unlang_interpret_force_result for dead home servers
Nick Porter [Thu, 30 Apr 2026 09:49:52 +0000 (10:49 +0100)] 
Use unlang_interpret_force_result for dead home servers

In the case where there are no status checks and revive_interval is used
to assume a home server has come back to life.

This means that during the period when the home server is marked as
dead, the module fails immediately so failover is efficient.

A different approach is needed for dynamic home servers, since the same
instruction can be used for many different home servers.

5 weeks agoAdd all instructions to unlang_instruction_tree
Nick Porter [Wed, 29 Apr 2026 18:49:20 +0000 (19:49 +0100)] 
Add all instructions to unlang_instruction_tree

So that the instruction gets correctly populated in the
unlang_thread_array entries.

5 weeks agoCorrect comment
Nick Porter [Wed, 29 Apr 2026 18:06:52 +0000 (19:06 +0100)] 
Correct comment

5 weeks agoAdd AA-App-Service-Options to Nokia SR dictionary
Nick Porter [Wed, 29 Apr 2026 14:39:19 +0000 (15:39 +0100)] 
Add AA-App-Service-Options to Nokia SR dictionary

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/radius.tar
github-actions[bot] [Wed, 29 Apr 2026 05:34:13 +0000 (05:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/radius.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/cbor.tar
github-actions[bot] [Wed, 29 Apr 2026 05:32:28 +0000 (05:32 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/cbor.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv6.tar
github-actions[bot] [Wed, 29 Apr 2026 05:32:07 +0000 (05:32 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv6.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dns.tar
github-actions[bot] [Wed, 29 Apr 2026 05:31:04 +0000 (05:31 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dns.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv4.tar
github-actions[bot] [Wed, 29 Apr 2026 05:30:58 +0000 (05:30 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv4.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/util.tar
github-actions[bot] [Wed, 29 Apr 2026 05:30:43 +0000 (05:30 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/util.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/bfd.tar
github-actions[bot] [Wed, 29 Apr 2026 05:30:13 +0000 (05:30 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/bfd.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/der.tar
github-actions[bot] [Wed, 29 Apr 2026 05:25:23 +0000 (05:25 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/der.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/tftp.tar
github-actions[bot] [Wed, 29 Apr 2026 05:25:11 +0000 (05:25 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/tftp.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/vmps.tar
github-actions[bot] [Wed, 29 Apr 2026 05:24:35 +0000 (05:24 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/vmps.tar

5 weeks agoScheduled fuzzing: Update src/tests/fuzzer-corpus/tacacs.tar
github-actions[bot] [Wed, 29 Apr 2026 05:24:32 +0000 (05:24 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/tacacs.tar

5 weeks agoatexit: skip TLS-cached pools once shutdown has freed them
Arran Cudbard-Bell [Mon, 27 Apr 2026 18:01:35 +0000 (14:01 -0400)] 
atexit: skip TLS-cached pools once shutdown has freed them

`fr_atexit_thread_trigger_all()` runs each registered thread destructor
on the calling (main) thread, including ones that free `_Thread_local`
caches owned by threads outside our schedule (librdkafka's bg threads,
perl, etc.).  We can free their pool chunks but can't reset another
thread's TLS slot, so the next call from those threads dereferences a
dangling pointer and aborts with "Bad talloc magic value" - first seen
in `_kafka_log_cb` from the "Terminating instance" debug line emitted
inside `rd_kafka_destroy()` during `mod_detach`.

Add `fr_atexit_thread_local_disable_alloc()` / ..._alloc_disabled()` in
atexit.c as the single source of truth, called once from radiusd
*before* the trigger.  TLS-pool initialisers consult it before reading
their slot and fall back to `talloc_*(NULL, ...)` when set:

  - log.c:fr_log_pool_init returns NULL
  - sbuff.c:sbuff_scratch_init returns NULL

Other TLS pools registered the same way (md4/md5/hmac_*, strerror,
talloc autofree) can opt in as crashes surface; the single flag means
the fix is one extra check at the top of each initialiser.

5 weeks agolog: bypass per-thread pool once shutdown has freed it
Arran Cudbard-Bell [Mon, 27 Apr 2026 18:01:35 +0000 (14:01 -0400)] 
log: bypass per-thread pool once shutdown has freed it

`fr_atexit_thread_trigger_all()` runs each registered thread destructor
on the calling (main) thread, including `_fr_log_pool_free` for every
worker that ever logged.  That frees the underlying pool chunk but
can't reset the `_Thread_local fr_log_pool` slot in any thread other
than main, so threads spawned outside our schedule (librdkafka's bg
threads, perl, etc.) keep a dangling pointer.  The next log call from
those threads (typically the "Terminating instance" debug line that
librdkafka emits inside `rd_kafka_destroy()` during `mod_detach`) hands
the dead pointer to `talloc_new` and aborts with "Bad talloc magic
value".

Add `fr_log_disable_pools()` and call it from radiusd right after the
trigger.  `fr_log_pool_init()` short-circuits to NULL once set, so the
TLS read is skipped and downstream `talloc_new(NULL)` allocates a
top-level chunk for the duration of the line.  Relaxed atomic because
the flag is a single-writer signal with no other state to synchronise
through it.

5 weeks agototp: Use an output buffer to output
Arran Cudbard-Bell [Sun, 26 Apr 2026 22:11:43 +0000 (18:11 -0400)] 
totp:  Use an output buffer to output

5 weeks agorlm_kafka: Simpler, and arguably more correct way of handling kafka shutdown
Arran Cudbard-Bell [Sun, 26 Apr 2026 22:06:41 +0000 (18:06 -0400)] 
rlm_kafka:  Simpler, and arguably more correct way of handling kafka shutdown

5 weeks agoAllow modules to use the main event loop for low frequency I/O and timer events
Arran Cudbard-Bell [Fri, 24 Apr 2026 23:24:49 +0000 (19:24 -0400)] 
Allow modules to use the main event loop for low frequency I/O and timer events

Saves spawning dedicated threads... we may want to revisit this in future

5 weeks agokafka: Use the correct type of sbuff for writing out sizes and time deltas
Arran Cudbard-Bell [Fri, 24 Apr 2026 23:24:05 +0000 (19:24 -0400)] 
kafka: Use the correct type of sbuff for writing out sizes and time deltas

5 weeks agoTweaks to kafka tests
Arran Cudbard-Bell [Fri, 24 Apr 2026 23:23:34 +0000 (19:23 -0400)] 
Tweaks to kafka tests

5 weeks agorlm_kafka: continue the wake drain loop after a cancelled pctx
Arran Cudbard-Bell [Fri, 24 Apr 2026 16:15:14 +0000 (12:15 -0400)] 
rlm_kafka: continue the wake drain loop after a cancelled pctx

_kafka_wake loops over the atomic ring draining pctx the bg cb pushed,
checks pctx->request, and if the worker-side cancel handler has already
NULLed it, frees the pctx without marking a request runnable.  It was
using `return` on that branch (copy-pasted from the one-shot
kafka_delivery_notification()), which exits the whole drain loop as
soon as the first cancelled entry comes up, leaving any subsequent
live pctx stranded in the ring - their requests never get resumed and
end up cancelled by max_request_time instead.

Switch to `continue` so the rest of the ring still drains.

5 weeks agotests/multi-server: filter Status-Server from kafka-producer accept log
Arran Cudbard-Bell [Fri, 24 Apr 2026 14:59:56 +0000 (10:59 -0400)] 
tests/multi-server: filter Status-Server from kafka-producer accept log

The kafka-producer1 container's docker healthcheck pokes the UDP
listener with a Status-Server packet every 2s.  In the radius namespace
the reply code for a successful Status-Server is Access-Accept, so the
healthcheck also runs through send Access-Accept - and thus through the
test-framework linelog - producing a stream of
  kafka-producer-accept {"User-Name": null}
entries with no User-Name attribute set (radclient status only sends a
Message-Authenticator).

Gate the linelog on Packet-Type == ::Access-Request so only proto_load
traffic lands in the listener file.  Healthcheck chatter is invisible
to the test harness from here.

5 weeks agotests/multi-server: enable librdkafka auto_create_topic
Arran Cudbard-Bell [Fri, 24 Apr 2026 14:59:46 +0000 (10:59 -0400)] 
tests/multi-server: enable librdkafka auto_create_topic

librdkafka producers don't force broker auto-create: they query
metadata, see "Unknown topic or partition" for a topic the broker
hasn't materialised yet, and sit on the produce call for up to 30s
waiting for metadata propagation.  In the multi-server test
kafka-producer1 was hitting that window on the first burst of
proto_load traffic, every yielded request reached max_request_time
and was cancelled before any delivery report arrived, and the test
timed out with zero messages on the topic.

Setting auto_create_topic = yes on the rlm_kafka producer tells
librdkafka to request topic auto-creation as part of its metadata
fetch, so the very first PRODUCE sees the topic already live.

5 weeks agotests/multi-server: don't auto-restart kafka-producer1
Arran Cudbard-Bell [Fri, 24 Apr 2026 14:59:20 +0000 (10:59 -0400)] 
tests/multi-server: don't auto-restart kafka-producer1

proto_load on kafka-producer1 runs its generator to completion and then
radiusd exits normally.  With restart: unless-stopped docker would bring
the container straight back up, rerun apt-get install / radiusd startup
(~30s each time), fire a fresh batch of traffic, and race the test
framework's verify phase - the listener file ended up with a mix of
in-flight and post-restart events.

Set restart: "no" so the container exits once and stays exited; the
test completes based on the consumer's summary line.

5 weeks agotests/multi-server: collapse log/listener failure-dump loops
Arran Cudbard-Bell [Fri, 24 Apr 2026 14:59:10 +0000 (10:59 -0400)] 
tests/multi-server: collapse log/listener failure-dump loops

Both loops called tail -200 on every file; only the listener branch
needed the extra line-type counts header.  Fold them into one loop and
switch on the path for listener-specific output.  Behaviour is
unchanged - the failure report still shows log tails plus listener
histograms.

6 weeks agojust discard the data instead of saving it.
Alan T. DeKok [Sat, 25 Apr 2026 01:20:13 +0000 (21:20 -0400)] 
just discard the data instead of saving it.

write of 0 means something other than "we saved the data"

6 weeks agoENETDOWN and ENETUNREACH are temporary failures
Alan T. DeKok [Fri, 24 Apr 2026 17:27:09 +0000 (13:27 -0400)] 
ENETDOWN and ENETUNREACH are temporary failures

We might want to discard the data instead of saving it,
especially for UDP.  Or, put the packet into a pending queue,
which can then be written later, or else timed out.

6 weeks agoENET* are temporary failures
Alan T. DeKok [Fri, 24 Apr 2026 17:11:53 +0000 (13:11 -0400)] 
ENET* are temporary failures

6 weeks agotests/multi-server: dump listener files too on failure
Arran Cudbard-Bell [Thu, 23 Apr 2026 23:13:55 +0000 (19:13 -0400)] 
tests/multi-server: dump listener files too on failure

We already tail logs/* on a failed test, but the per-suite
listener/*.txt is where the consumer (and producer linelog) writes
structured events the framework validates against.  Dumping logs
alone tells us the containers ran; dumping listeners tells us
whether the pipeline actually produced the events we were waiting
for.  Counts-by-prefix header makes it easy to spot 'no
kafka-consumer-received lines at all' vs 'got some but not the
expected count'.

6 weeks agotests/multi-server: reconnect test expects all 200 delivered, not 200/250
Arran Cudbard-Bell [Thu, 23 Apr 2026 23:03:01 +0000 (19:03 -0400)] 
tests/multi-server: reconnect test expects all 200 delivered, not 200/250

Over-provisioning num_messages above expected_messages masks real
losses - we want the test to catch regressions in the reconnect
path, not tolerate them.  Drop the override so num_messages
defaults to expected_messages (200) and the test fails if any
message goes missing across the disconnect / reconnect cycle.

6 weeks agocoverity: silence CID 1691836 / 1691837
Arran Cudbard-Bell [Thu, 23 Apr 2026 21:49:49 +0000 (17:49 -0400)] 
coverity: silence CID 1691836 / 1691837

CID 1691837 (NULL_RETURNS) in rlm_kafka's kafka_xlat_produce():
Coverity doesn't trust the xlat framework's required=true contract
and flags the downstream derefs of key_vb and value_vb.  Add an
fr_assert after the vars to document the invariant and silence it.

CID 1691836 (RESOURCE_LEAK) in fr_atomic_ring_push():
Coverity doesn't track atomic stores as reference publication, so
when we atomic_store_explicit() `n` into h->next and ring->head it
still considers `n` leaked once the local goes out of scope.  It
isn't - the consumer frees it via atomic_ring_entry_free() once it
advances past.  Annotate with /* coverity[leaked_storage] */.

6 weeks agotests/multi-server: embed proto_load in kafka-producer1, add reconnect suite
Arran Cudbard-Bell [Thu, 23 Apr 2026 21:49:26 +0000 (17:49 -0400)] 
tests/multi-server: embed proto_load in kafka-producer1, add reconnect suite

Topology simplification: move the proto_load listener directly into
kafka-producer1's virtual server, so generated Access-Requests flow
straight into `recv Access-Request` -> kafka.produce without going
over the wire.  One fewer container, one fewer RADIUS hop, and the
test still exercises exactly the produce path end-to-end.

Changes:

 * environments/kafka.yml.j2
   - Drop the load-generator service.
   - Feed the proto_load profile (start_pps / max_pps / duration /
     step / parallel / num_messages) to kafka-producer1 via env vars;
     Jinja pulls them from the test's loadgen: block.
   - Re-declare TEST_PROJECT_NAME / TEST_SUBNET inline on
     kafka-producer1 because YAML's <<: anchor merge doesn't union
     nested dicts - a service-level environment: replaces the one
     inherited from x-common-config.
   - New `loadgen_num_messages` knob, defaulting to
     `expected_messages`, so tests that expect loss (reconnect) can
     generate more than the consumer will count.

 * configs/freeradius/kafka-producer1/radiusd.conf.j2
   - Add `listen load { handler = load; transport = step; step { ... } }`
     inside the existing kafka-producer server.

 * configs/freeradius/kafka-producer1/load-generator-packets/packet.conf
   - Default Access-Request packet skeleton proto_load sends.

 * tests/kafka-produce/{short.ci,heavy}.test.yml + template.yml.j2
   - Collapse to a single state that waits for kafka-consumer-summary.
     No more two-phase load-gen orchestration; proto_load fires on
     freeradius startup and finishes long before the summary arrives.

 * tests/kafka-produce-reconnect/
   - New suite exercising broker disconnect / reconnect.  Applies 100%
     packet loss on kafka-producer1's egress mid-stream (packet_loss
     action from the framework's NetworkEvents), holds for
     `outage_seconds`, then removes it.  Queued produces inside
     librdkafka drain after reconnect, request threads that yielded
     waiting on their delivery reports resume, and the consumer
     eventually sees >= expected_messages on the topic.

6 weeks agotests/multi-server: bump kafka-produce CI timeouts for DinD runners
Arran Cudbard-Bell [Thu, 23 Apr 2026 20:13:59 +0000 (16:13 -0400)] 
tests/multi-server: bump kafka-produce CI timeouts for DinD runners

Apache Kafka's JVM startup through the healthcheck takes ~20-30s on
the self-hosted CI DinD runners (vs a few seconds on local Docker
Desktop).  By the time state_1 actually starts load-generation,
most of the previous 10s test_verify_timeout is already gone, so
the kafka-consumer-summary trigger emits too late and state_1
fails the validator even though the whole pipeline eventually
succeeds.

Bump to 120s total / 60s per-state / 90s consumer.  Generous but
not so generous that a genuine hang would go undiagnosed.

6 weeks agotests/multi-server: run kafka-consumer as root
Arran Cudbard-Bell [Thu, 23 Apr 2026 20:02:07 +0000 (16:02 -0400)] 
tests/multi-server: run kafka-consumer as root

The confluentinc/cp-kcat image defaults to uid 1000 (appuser).  On
the self-hosted CI runners the bind-mounted listener dir is owned
by root with mode 0755, so the consumer script can't write its
summary line and the test never observes kafka-consumer-summary.

Pin the consumer to uid 0 to sidestep the ownership mismatch.
Local Docker Desktop on macOS hides this because its bind mount
layer maps ownership loosely; on Linux DinD the permissions are
real.

6 weeks agotests/multi-server: switch broker from redpanda to apache kafka
Arran Cudbard-Bell [Thu, 23 Apr 2026 19:54:29 +0000 (15:54 -0400)] 
tests/multi-server: switch broker from redpanda to apache kafka

Redpanda's seastar reactor aborts during init with "close() syscall
failed: Invalid argument" on the self-hosted CI runners, regardless
of:

  - redpanda image version (v26.1.6 via :latest and v24.3.15 pinned
    both fail the same way);
  - sandbox configuration (default, seccomp:unconfined +
    apparmor:unconfined, and privileged:true all hit the same error);
  - seastar tuning (--mode dev-container, explicit
    --overprovisioned / --unsafe-bypass-fsync / --reserve-memory=0M).

This is a seastar + runner-kernel interaction we can't unblock from
the compose side.

apache/kafka:3.9.1 is the official Apache Kafka Docker image, runs
the JVM implementation (not seastar), and starts cleanly in the
same DinD environment.  The wire protocol is identical so kcat on
the consumer side and rlm_kafka via librdkafka on the producer
side don't care which broker is serving.

6 weeks agotests/multi-server: pin redpanda to v24.3.15
Arran Cudbard-Bell [Thu, 23 Apr 2026 19:46:58 +0000 (15:46 -0400)] 
tests/multi-server: pin redpanda to v24.3.15

`:latest` resolves to v26.1.6, which aborts during seastar reactor
init with "close() syscall failed: Invalid argument" on the
self-hosted CI runners - even with the container running privileged
(so seccomp/AppArmor/capability bounding are all off).  That's a
regression in the image itself, not a sandbox problem.

Pin to v24.3.15 which starts cleanly.  Bump when a newer tag is
verified to work.

6 weeks agotests/multi-server: run the kafka broker privileged
Arran Cudbard-Bell [Thu, 23 Apr 2026 19:39:08 +0000 (15:39 -0400)] 
tests/multi-server: run the kafka broker privileged

seccomp:unconfined + apparmor:unconfined wasn't enough to get
redpanda past seastar's reactor init on the self-hosted CI runners
(close() still failed with EINVAL on an internal fd).  Replace the
narrow security_opt overrides with `privileged: true`, which turns
off seccomp + AppArmor + capability bounding + /dev restrictions in
one go - the minimum that reliably starts the broker across DinD
runner configurations.  Test-only scope, compose-network-only
exposure.

6 weeks agotests/multi-server: also unconfine apparmor on the kafka broker
Arran Cudbard-Bell [Thu, 23 Apr 2026 19:31:11 +0000 (15:31 -0400)] 
tests/multi-server: also unconfine apparmor on the kafka broker

The previous seccomp:unconfined change flipped redpanda's first-stage
failure mode (perf_event_open now EACCES from the kernel sysctl,
instead of EPERM from seccomp) but the fatal close() EINVAL during
seastar reactor init still fired.  On DinD runners the inner
containers inherit the default docker-default AppArmor profile in
addition to seccomp, and that profile is what's driving the EINVAL.
Opt out of both sandboxes for the test broker.

6 weeks agotests/multi-server: relax seccomp for the redpanda kafka broker
Arran Cudbard-Bell [Thu, 23 Apr 2026 19:20:50 +0000 (15:20 -0400)] 
tests/multi-server: relax seccomp for the redpanda kafka broker

The self-hosted CI runners' Docker seccomp profile is stricter than
Docker Desktop's; it blocks enough of redpanda/seastar's startup
syscalls (io_uring / eventfd / perf_event_open) that the reactor
aborts during init with "close() syscall failed: Invalid argument"
and the broker container exits non-zero.  The dependent
kafka-producer1 container then never starts and compose up reports
"dependency failed to start: container ... is unhealthy".

Opt the kafka service out of the seccomp sandbox - it's a test
broker on an isolated compose network, no host access implications.

6 weeks agoMissing const
Arran Cudbard-Bell [Thu, 23 Apr 2026 17:58:05 +0000 (13:58 -0400)] 
Missing const

6 weeks agoQuiet clang scan
Arran Cudbard-Bell [Thu, 23 Apr 2026 17:58:00 +0000 (13:58 -0400)] 
Quiet clang scan

6 weeks agokafka: Use a single producer handler and atomic queues to return the DRs
Arran Cudbard-Bell [Thu, 23 Apr 2026 17:25:27 +0000 (13:25 -0400)] 
kafka: Use a single producer handler and atomic queues to return the DRs

6 weeks agoJiggle functions in kafka/base.h/c
Arran Cudbard-Bell [Thu, 23 Apr 2026 17:25:00 +0000 (13:25 -0400)] 
Jiggle functions in kafka/base.h/c

6 weeks agoFix fr_event_user_trigger so it works over multiple calls
Arran Cudbard-Bell [Thu, 23 Apr 2026 13:45:08 +0000 (09:45 -0400)] 
Fix fr_event_user_trigger so it works over multiple calls

6 weeks agoAdd a simple SPSC atomic, expandable queue chain
Arran Cudbard-Bell [Thu, 23 Apr 2026 13:43:01 +0000 (09:43 -0400)] 
Add a simple SPSC atomic, expandable queue chain

6 weeks agorlm_kafka: prime librdkafka's lazy globals from .onload
Arran Cudbard-Bell [Wed, 22 Apr 2026 20:18:17 +0000 (16:18 -0400)] 
rlm_kafka: prime librdkafka's lazy globals from .onload

Call fr_kafka_init() from mod_load (paired with fr_kafka_free() in
mod_unload) so librdkafka's one-shot SSL/SASL init happens
deterministically at module load time, before any worker thread gets
to rd_kafka_new().  Ref-counted through libfreeradius-kafka so future
kafka-family modules can share the hook.

6 weeks agolib/kafka: expose fr_kafka_init() / fr_kafka_free()
Arran Cudbard-Bell [Wed, 22 Apr 2026 20:18:07 +0000 (16:18 -0400)] 
lib/kafka: expose fr_kafka_init() / fr_kafka_free()

librdkafka lazily initialises its SSL (lock callbacks on legacy
OpenSSL) and SASL globals on the first rd_kafka_new() call.  In a
server that owns its own OpenSSL setup that creates a race at
thread_instantiate time, and the ordering is non-deterministic.

Give kafka-using modules a deterministic hook they can call from
their .onload: fr_kafka_init() runs the lazy paths by creating and
immediately destroying a throwaway producer, fr_kafka_free() pairs
it.  Both are ref-counted against other kafka modules (same shape
as fr_openssl_init / fr_openssl_free in src/lib/tls/base.c) so a
future rlm_kafka_consumer sharing the lib doesn't double-init.

A no-op log callback is attached to the dummy conf so librdkafka's
"no bootstrap brokers" warning from the dummy producer doesn't leak
into the server log at startup.

6 weeks agorlm_kafka: wrap thread-owner fr_assert() calls in #ifndef NDEBUG
Arran Cudbard-Bell [Wed, 22 Apr 2026 20:17:54 +0000 (16:17 -0400)] 
rlm_kafka: wrap thread-owner fr_assert() calls in #ifndef NDEBUG

The worker_tid field on rlm_kafka_thread_t and rlm_kafka_msg_ctx_t->t
only exists under #ifndef NDEBUG (see ffad24d4d1), and the two
fr_assert() calls that reference it compile to nothing under NDEBUG.
With -Werror=unused-variable the ndebug build then failed because
the `t` unboxed at the head of _kafka_error_cb had no remaining use.

Move both assertions - plus the `t` local in _kafka_error_cb - under
the same #ifndef NDEBUG guard that protects the field itself.

6 weeks agorlm_kafka: recognise a null key box on the xlat path
Arran Cudbard-Bell [Wed, 22 Apr 2026 18:32:56 +0000 (14:32 -0400)] 
rlm_kafka: recognise a null key box on the xlat path

With the framework now carrying FR_TYPE_NULL boxes through to the
xlat body, check for fr_type_is_null() in addition to the zero-length
check so an explicit `null` key, an empty '' literal, and an
attribute that expanded to nothing all resolve to "no key on the wire"
without any of them needing to coerce into a zero-length octets value.

6 weeks agotmpl, value, xlat: carry null through arg lists instead of casting it
Arran Cudbard-Bell [Wed, 22 Apr 2026 18:32:48 +0000 (14:32 -0400)] 
tmpl, value, xlat: carry null through arg lists instead of casting it

Reverses the cast coercion added in 3b5165084f.  An explicit `null`
should not silently become "" or zero-length octets - callers that
wrote `null` meant "no value at all", which is a different shape
from "the empty string".

value.c: fr_value_box_cast_to_{string,octets} now return a clean
fr_strerror() on FR_TYPE_NULL source instead of falling through to
the catch-all fr_assert(0).

xlat_tokenize.c: xlat_validate_function_arg skips the compile-time
cast for FR_TYPE_NULL literals so a bareword `null` survives arg
validation.

xlat_eval.c: the runtime concat and per-box cast paths both pass an
FR_TYPE_NULL source through to the xlat body unchanged, so
implementations can check fr_type_is_null() on the incoming box
and react accordingly.

6 weeks agotests/modules/kafka: exercise the `null` keyword on the xlat key arg
Arran Cudbard-Bell [Wed, 22 Apr 2026 18:23:48 +0000 (14:23 -0400)] 
tests/modules/kafka: exercise the `null` keyword on the xlat key arg

Now that tmpl parsing recognises `null` as an explicit FR_TYPE_NULL
placeholder, swap the zero-length-value produce's key from `''` to
`null` so the test doubles as regression coverage for the keyword
end-to-end (tokenize -> xlat arg list -> cast to octets -> zero-
length key -> "no key on the wire").

6 weeks agotmpl, value: accept `null` as an explicit keyword
Arran Cudbard-Bell [Wed, 22 Apr 2026 18:23:40 +0000 (14:23 -0400)] 
tmpl, value: accept `null` as an explicit keyword

Adds tmpl_afrom_null_substr so the bareword `null` is recognised at
tmpl-tokenize time and builds a TMPL_TYPE_DATA wrapping an
FR_TYPE_NULL box.  Wired in before the numeric / address / bool /
attribute branches in tmpl_afrom_substr so a dictionary attribute
named "null" can't shadow it.

FR_TYPE_NULL previously doubled as the "uninitialised box" sentinel,
which is why TMPL_VERIFY panicked when it saw one inside a
TMPL_TYPE_DATA and why fr_value_box_cast_to_{string,octets} lacked
a source case for it.  With the null keyword those encounters are
now deliberate, so:

  - Drop the "FR_TYPE_NULL inside TMPL_TYPE_DATA is uninitialised"
    assertion in tmpl_tokenize.c's TMPL_VERIFY.
  - Cast FR_TYPE_NULL to an empty string / zero-length octets box.

The result is that positional xlat arguments can carry an explicit
"no value" placeholder without the framework dropping the slot or
the type system tripping over it.

6 weeks agorlm_kafka: accept a key as the middle xlat argument
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:53:59 +0000 (13:53 -0400)] 
rlm_kafka: accept a key as the middle xlat argument

%kafka.produce now takes (topic, key, value) instead of (topic, value),
so xlat callers can pick a partition the same way the method form does
via a declared topic `key = ...`.  Zero-length octets (the literal
empty string, or an attribute that expands to nothing) mean "no key"
on the wire - librdkafka falls back to its configured partitioner.

Updated existing xlat tests to pass an explicit '' key, and
xlat.unlang now covers the non-empty case too: produce to
freeradius-test-xlat-alt with a `"xlat-key"` key and assert it
round-trips byte-for-byte through the broker.

6 weeks agorlm_kafka: unbox the self-pipe uctx with talloc_get_type_abort
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:53:47 +0000 (13:53 -0400)] 
rlm_kafka: unbox the self-pipe uctx with talloc_get_type_abort

Follow-up to the audit pass in cb2ee227c3: _kafka_fd_readable was
still casting uctx straight to rlm_kafka_thread_t *.  Bring it in
line with the other callbacks so a mismatched uctx aborts loudly at
the callsite instead of crashing deeper in rd_kafka_poll.

6 weeks agorlm_kafka: cast topic_name_cmp params to the actual struct type
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:53:33 +0000 (13:53 -0400)] 
rlm_kafka: cast topic_name_cmp params to the actual struct type

The tree stores rlm_kafka_topic_t entries and only worked by casting
the void pointers to `char const **` because `name` happens to be the
first field.  Spell the struct out so the dependency on field
ordering isn't encoded in the comparator.

6 weeks agorlm_kafka: use the cached log_prefix in the self-pipe error cb
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:13:43 +0000 (13:13 -0400)] 
rlm_kafka: use the cached log_prefix in the self-pipe error cb

_kafka_fd_error was hard-coding the literal "kafka" prefix.  Pull the
thread context off the event's uctx and format against the same
"rlm_kafka (<instance>)" prefix the rest of the module uses, so
multi-instance configurations show which instance's self-pipe fell
over.

6 weeks agorlm_kafka: debug-build sanity check that dr / error cbs run on-thread
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:12:50 +0000 (13:12 -0400)] 
rlm_kafka: debug-build sanity check that dr / error cbs run on-thread

Capture pthread_self() into rlm_kafka_thread_t at thread_instantiate,
then assert the same tid in _kafka_delivery_report_cb and
_kafka_error_cb.  librdkafka only wakes us via the main queue (which
we poll from the worker's event loop), so a cross-thread hit would
mean an event slipped a different path and the no-lock handling of
the inflight list is unsafe.

Field and assertions are #ifndef NDEBUG so release builds carry
neither the extra tid nor the check - fr_assert(_x) expands to
nothing under NDEBUG so the missing field doesn't matter.

6 weeks agorlm_kafka: tidy header includes to match the module standard
Arran Cudbard-Bell [Wed, 22 Apr 2026 17:12:40 +0000 (13:12 -0400)] 
rlm_kafka: tidy header includes to match the module standard

Move RCSID / USES_APPLE_DEPRECATED_API above the includes, switch
the three `#include "lib/util/..."` to `<freeradius-devel/util/...>`
to match every other module, group includes by subsystem, and pull
pthread.h in alongside the other system headers in anticipation of
the upcoming thread-ownership sanity check.

6 weeks agoallow instruction results to be forced
Alan T. DeKok [Wed, 22 Apr 2026 18:22:56 +0000 (14:22 -0400)] 
allow instruction results to be forced

cache forced result in thread-specific data.

check it in the interpreter hot loop.

allow modules to get their current instruction, so that it can
be later be used in timer / event callbacks

allow instructions to be forced.

6 weeks agomove interpreter thread-local data into the interpreter C file
Alan T. DeKok [Wed, 22 Apr 2026 18:14:23 +0000 (14:14 -0400)] 
move interpreter thread-local data into the interpreter C file

which means that we can avoid function calls in the fast case

6 weeks agolib/kafka, rlm_kafka: drop trailing periods from Doxygen block titles
Arran Cudbard-Bell [Wed, 22 Apr 2026 16:39:43 +0000 (12:39 -0400)] 
lib/kafka, rlm_kafka: drop trailing periods from Doxygen block titles

House style: the brief / title line of a /** */ block is a heading,
not a sentence, so no trailing period.  Body prose sentences after the
title keep their periods as normal.

6 weeks agorlm_kafka: mark rare produce error paths unlikely
Arran Cudbard-Bell [Wed, 22 Apr 2026 16:39:09 +0000 (12:39 -0400)] 
rlm_kafka: mark rare produce error paths unlikely

rd_kafka_produce can only fail on queue pressure or a rejected
message, kafka_produce_enqueue then signals that back as NULL.  The
topic-not-declared check in the xlat fast path and the cancelled-
request check in dr_msg_cb are both paths we only take in error or
shutdown cases.  Hinting the optimiser lets it lay the hot path out
straight and push the error bodies out-of-line - matches the
unlikely() idiom already used across src/lib/util/.

6 weeks agorlm_kafka: unbox async opaques with talloc_get_type_abort
Arran Cudbard-Bell [Wed, 22 Apr 2026 16:38:33 +0000 (12:38 -0400)] 
rlm_kafka: unbox async opaques with talloc_get_type_abort

xctx->inst / xctx->thread / msg->_private are all void pointers that
we know at the call-site should point back at our typed talloc chunks.
Using talloc_get_type_abort turns a subtle type-system hole into a
loud abort at the exact callsite if the opaque ever gets crossed over,
instead of a mystery crash deep in the function body.

The DR callback keeps its NULL-guard first - a NULL opaque is the
documented signal for fire-and-forget produces, so it's part of the
contract, not an error worth asserting on.

6 weeks agorlm_kafka: bridge librdkafka log output into the server log
Arran Cudbard-Bell [Wed, 22 Apr 2026 16:38:03 +0000 (12:38 -0400)] 
rlm_kafka: bridge librdkafka log output into the server log

Register an rd_kafka_conf_set_log_cb on the shared producer conf in
mod_instantiate.  Every per-thread rd_kafka_conf_dup inherits it, so
broker errors, protocol traces, and any categories enabled via the
top-level `debug` knob now feed through the server's ERROR / WARN /
INFO / DEBUG macros with a pre-rendered "rlm_kafka (<instance>)"
prefix instead of going to librdkafka's default stderr sink.

Callback runs on librdkafka's internal threads so no mctx is in
scope; we stash the prefix on rlm_kafka_t at instantiate time and
reach for it via the producer's opaque (rlm_kafka_thread_t) on each
line.

6 weeks agokafka: Basic unreachable test, and cancellation race
Arran Cudbard-Bell [Wed, 22 Apr 2026 16:10:07 +0000 (12:10 -0400)] 
kafka: Basic unreachable test, and cancellation race

6 weeks agokafka: Actually verify the data made it though
Arran Cudbard-Bell [Wed, 22 Apr 2026 15:55:43 +0000 (11:55 -0400)] 
kafka: Actually verify the data made it though

6 weeks agotests/multi-server: put kafka-produce back in the CI short suite
Arran Cudbard-Bell [Wed, 22 Apr 2026 13:31:05 +0000 (09:31 -0400)] 
tests/multi-server: put kafka-produce back in the CI short suite

The client-cache fix in b56deabae7 ("Create different client cache
lists for TCP and UDP") addresses the underlying reason the
kafka-produce test was timing out in CI - the load-generator's own
Status-Server client lookup was failing the same way as
proxy-multihop-accept's.  Rename short.test.yml back to
short.ci.test.yml so it runs under test.multi-server.ci again.

6 weeks agokafka: Minor style fixes.
Arran Cudbard-Bell [Wed, 22 Apr 2026 13:07:55 +0000 (09:07 -0400)] 
kafka: Minor style fixes.

6 weeks agoCreate different client cache lists for TCP and UDP
Arran Cudbard-Bell [Wed, 22 Apr 2026 13:07:02 +0000 (09:07 -0400)] 
Create different client cache lists for TCP and UDP

If we had both TCP and UDP listeners, one would end up getting an empty client list.

6 weeks agotests/multi-server: drop kafka-produce from the CI short suite
Arran Cudbard-Bell [Wed, 22 Apr 2026 04:15:47 +0000 (00:15 -0400)] 
tests/multi-server: drop kafka-produce from the CI short suite

The kafka-produce multi-server test runs green locally against a
docker-compose redpanda, but on the shared GitHub Actions runners the
redpanda container fails to reach a healthy state reliably, even with
Redpanda's own dev-container preset.  Rather than leave a perennially
red CI job, rename short.ci.test.yml to short.test.yml so the test
runs from `make test.multi-server` but not from
`test.multi-server.ci`.  Local runs and future dedicated kafka
infrastructure can still exercise it.

6 weeks agoci: skip kafka module tests; switch multi-server broker to dev-container mode
Arran Cudbard-Bell [Wed, 22 Apr 2026 03:17:27 +0000 (23:17 -0400)] 
ci: skip kafka module tests; switch multi-server broker to dev-container mode

CI rounds 1-2 showed two different redpanda startup failures:

 - In the ci.yml / ci-sanitizers.yml `services:` stanzas, seastar
   exits EINVAL on the self-hosted runners because GitHub Actions
   services give us no way to override the default command line.
   There's no good workaround via `options:` so drop the redpanda
   service container, remove the kafka_test_server passthrough, and
   let the kafka module tests skip cleanly (the existing
   kafka_require_test_server gate already handles the empty-server
   case).  The multi-server kafka-produce test still exercises the
   full produce path end-to-end.

 - The multi-server docker-compose had a hand-rolled list of redpanda
   start flags (`--overprovisioned --smp=1 ... --unsafe-bypass-fsync`)
   which still failed to boot on the shared runner.  Replace it with
   Redpanda's official single-node preset `--mode dev-container`,
   which sets the right seastar probing and IO defaults for a
   containerised CI environment, and keep only the overrides we
   actually need on top (smp/memory/node-id and the advertised
   listener address).

6 weeks agoci: pull redpanda from its own registry and give it a longer health window
Arran Cudbard-Bell [Wed, 22 Apr 2026 02:47:13 +0000 (22:47 -0400)] 
ci: pull redpanda from its own registry and give it a longer health window

Two things tripped up the first CI run on developer/arr2036:

 - The ci.yml and ci-sanitizers.yml workflows pulled redpanda through
   the FreeRADIUS internal docker mirror (docker.internal.networkradius.com),
   but redpandadata/redpanda is not mirrored there, so every job with a
   redpanda service container died at 'Initialize containers'.  Pull
   directly from docker.redpanda.com, matching what the multi-server
   docker-compose already does.

 - The multi-server redpanda service had a 60s start window and 30s of
   retries.  On a busy self-hosted runner that's marginal - we saw
   kafka-produce-short_ci fail the compose-up health gate.  Bump the
   start_period to 120s and extend retries so we allow up to ~4 minutes
   for the broker to come up.

6 weeks agotests/kafka: cover method dispatch forms, keys, binary and edge payloads
Arran Cudbard-Bell [Wed, 22 Apr 2026 02:17:30 +0000 (22:17 -0400)] 
tests/kafka: cover method dispatch forms, keys, binary and edge payloads

Extend the kafka test harness to exercise:

 - method form with explicit name2 (kafka.produce / send / recv .topic)
 - method form with implicit name2 (bare 'kafka' inside a recv section
   that matches a topic named after the packet type)
 - keyed produces (deterministic partitioning by key attr)
 - binary payloads with embedded NULs and high-bit bytes
 - edge-case xlat inputs (empty string, 16 KiB payload, embedded
   control characters, UTF-8 / multibyte)

Topics referenced by the new tests are declared in module.conf so
unknown-topic handling continues to fail at parse time.

6 weeks agorlm_kafka: tighten error handling and xlat register ctx
Arran Cudbard-Bell [Wed, 22 Apr 2026 01:19:29 +0000 (21:19 -0400)] 
rlm_kafka: tighten error handling and xlat register ctx

A grab-bag of cleanups surfaced while refactoring the module:

 - Trust MEM() for talloc-only failures in kafka_topic_thread_handles
   (rb_tree_alloc, rd_kafka_topic_conf_dup).
 - Duplicate topic handle is now an fr_cond_assert_msg - it cannot
   happen if the declared-topic tree was built correctly.
 - Drop the redundant kafka.produce xlat NULL-arg guard; the xlat
   arg parser already enforces required=true.
 - Register the produce xlat against mi->boot rather than mi->data -
   xlat registration happens in bootstrap, before mi->data is
   allocated and mprotected.
 - Move xlat_arg_parser_t below the signal callback so the xlat
   function and its args sit together.
 - Drop the 'rlm_kafka:' prefix from logger calls; the logging layer
   already tags module-originated messages.

6 weeks agorlm_kafka: type value and key as octets
Arran Cudbard-Bell [Wed, 22 Apr 2026 01:17:09 +0000 (21:17 -0400)] 
rlm_kafka: type value and key as octets

Kafka payloads and keys are opaque byte strings on the wire.  Typing
value/key as FR_TYPE_STRING worked accidentally because fr_value_box_t
carries an explicit length, but it invited NUL-termination or UTF-8
assumptions to creep in from intermediate tmpl expansion.

Switch both the per-topic call_env rules and the xlat value argument
to FR_TYPE_OCTETS, and read .vb_octets instead of .vb_strvalue on the
produce paths.  As a bonus, an integer-typed key attribute now
serialises in network byte order - matching what other Kafka clients
do - so the same numeric key hashes to the same partition regardless
of producer.