mbox

[v2,0/7] Use RFC5424 for syslog

Message ID 20220218142322.432304-1-adhemerval.zanella@linaro.org
Headers

Message

Adhemerval Zanella Feb. 18, 2022, 2:23 p.m. UTC
  This is an update of my previous patchset.  The main driver of this
change is to move away of using 32-bit timestamps and for syslog it
would require to use an ad-hoc format.  Instead, since RFC5424 does
define a better way to format the timestamp, it is used instead.

Along with the RFC5424 change, the patch simplifies the code to use
a static buffer on default case (so no dynamic allocation for
messages up to 1024) and add a proper syslog() testscase.

Adhemerval Zanella (7):
  support: Add xmkfifo
  misc: Add syslog test
  misc: syslog: Fix indentation and style
  misc: syslog: Simplify implementation
  misc: syslog: Use static buffer
  misc: syslog: Move SYSLOG_NAME to USE_MISC (BZ #16355)
  misc: syslog: Use RFC5424

 misc/Makefile     |   2 +
 misc/sys/syslog.h |   4 +-
 misc/syslog.c     | 497 +++++++++++++++++++++++-----------------------
 misc/tst-syslog.c | 475 ++++++++++++++++++++++++++++++++++++++++++++
 support/Makefile  |   1 +
 support/xmkfifo.c |  29 +++
 support/xunistd.h |   1 +
 7 files changed, 763 insertions(+), 246 deletions(-)
 create mode 100644 misc/tst-syslog.c
 create mode 100644 support/xmkfifo.c