nuttx/drivers/syslog
Michal Lenc 1685e8ff7b syslog: avoid an infinite loop if one channel fails
The current implementation exits syslog_write_foreach function
if write to one channel fails, causing other channels not being written
and returning negated errno. libc syslog functions then stay in
an infinite loop, because error is returned and the same bytes
are still passed to syslograwstream_flush and syslog_write_foreach.

The channel write may fail for many reasons - disconnected USB if
CDC ACM syslog is enabled, lost networking if telnet syslog is enabled,
error on NOR flash etc. This shouldn't lead to an ininite loop in the
code though.

The solution ensures all channels in syslog_write_foreach are tried,
therefore the user get the output to the working channels even if
the first one is broken. It also updates syslograwstream_addchar and
syslograwstream_addstring to skip the bytes if all channels fails. This
ensures syslog call won't result in an infinite loop, but the user may
lost the debugging output.

Co-authored-by: Martin Krasula <mkrasula@elektroline.cz>
Signed-off-by: Michal Lenc <michallenc@seznam.cz>
2026-06-23 22:45:01 +08:00
..
CMakeLists.txt
Kconfig drivers/syslog: add millisecond option for syslog timestamp formatting 2026-02-27 08:09:31 -03:00
Make.defs
ramlog.c include/debug.h: Move to include/nuttx/debug.h 2026-04-07 07:50:06 -03:00
syslog.h
syslog_channel.c
syslog_chardev.c
syslog_console.c include/debug.h: Move to include/nuttx/debug.h 2026-04-07 07:50:06 -03:00
syslog_consolechannel.c
syslog_devchannel.c
syslog_device.c
syslog_early.c
syslog_filechannel.c
syslog_flush.c
syslog_initialize.c
syslog_intbuffer.c
syslog_rpmsg.c
syslog_rpmsg.h
syslog_rpmsg_server.c
syslog_stream.c
syslog_write.c syslog: avoid an infinite loop if one channel fails 2026-06-23 22:45:01 +08:00
vsyslog.c !nuttx: drop redundant casts on tv_sec/tv_nsec and fix printf formats 2026-05-19 16:21:28 +08:00
vsyslog_rfc5424.c