2016-06-19 15:56:24 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* drivers/syslog/vsyslog.c
|
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-06-19 15:56:24 +02:00
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-06-19 15:56:24 +02:00
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-06-19 15:56:24 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <syslog.h>
|
2017-05-11 15:15:57 +02:00
|
|
|
#include <errno.h>
|
2016-06-19 15:56:24 +02:00
|
|
|
|
2021-05-24 05:59:22 +02:00
|
|
|
#include <nuttx/arch.h>
|
2016-06-19 15:56:24 +02:00
|
|
|
#include <nuttx/init.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
|
|
#include <nuttx/clock.h>
|
|
|
|
#include <nuttx/streams.h>
|
|
|
|
#include <nuttx/syslog/syslog.h>
|
|
|
|
|
2021-01-14 16:43:20 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(CONFIG_SYSLOG_PRIORITY)
|
|
|
|
static FAR const char * g_priority_str[] =
|
|
|
|
{
|
|
|
|
"EMERG", "ALERT", "CRIT", "ERROR",
|
|
|
|
"WARN", "NOTICE", "INFO", "DEBUG"
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2016-06-19 15:56:24 +02:00
|
|
|
/****************************************************************************
|
2016-06-19 21:59:43 +02:00
|
|
|
* Public Functions
|
2016-06-19 15:56:24 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2018-03-04 15:07:07 +01:00
|
|
|
* Name: nx_vsyslog
|
2016-06-19 15:56:24 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2018-03-04 15:07:07 +01:00
|
|
|
* nx_vsyslog() handles the system logging system calls. It is functionally
|
2016-06-21 00:11:50 +02:00
|
|
|
* equivalent to vsyslog() except that (1) the per-process priority
|
|
|
|
* filtering has already been performed and the va_list parameter is
|
|
|
|
* passed by reference. That is because the va_list is a structure in
|
|
|
|
* some compilers and passing of structures in the NuttX sycalls does
|
|
|
|
* not work.
|
2016-06-20 14:10:56 +02:00
|
|
|
*
|
2016-06-19 15:56:24 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2018-03-04 15:07:07 +01:00
|
|
|
int nx_vsyslog(int priority, FAR const IPTR char *fmt, FAR va_list *ap)
|
2016-06-19 15:56:24 +02:00
|
|
|
{
|
2017-05-10 22:42:43 +02:00
|
|
|
struct lib_syslogstream_s stream;
|
2021-06-21 05:32:32 +02:00
|
|
|
int ret = 0;
|
2021-03-10 21:21:28 +01:00
|
|
|
#if CONFIG_TASK_NAME_SIZE > 0 && defined(CONFIG_SYSLOG_PROCESS_NAME)
|
|
|
|
struct tcb_s *tcb;
|
|
|
|
#endif
|
2021-06-21 05:32:32 +02:00
|
|
|
#ifdef CONFIG_SYSLOG_TIMESTAMP
|
|
|
|
struct timespec ts =
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2020-12-29 15:23:27 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_TIMESTAMP_FORMATTED)
|
2021-06-21 05:32:32 +02:00
|
|
|
struct tm tm =
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2020-12-29 15:23:27 +01:00
|
|
|
char date_buf[CONFIG_SYSLOG_TIMESTAMP_BUFFER];
|
2021-06-21 05:32:32 +02:00
|
|
|
#endif
|
2020-12-29 15:23:27 +01:00
|
|
|
#endif
|
2017-05-11 01:36:08 +02:00
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
/* Wrap the low-level output in a stream object and let lib_vsprintf
|
|
|
|
* do the work.
|
|
|
|
*/
|
2016-06-19 15:56:24 +02:00
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
syslogstream_create(&stream);
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYSLOG_TIMESTAMP
|
2016-06-19 15:56:24 +02:00
|
|
|
/* Get the current time. Since debug output may be generated very early
|
|
|
|
* in the start-up sequence, hardware timer support may not yet be
|
|
|
|
* available.
|
|
|
|
*/
|
|
|
|
|
2017-04-26 18:38:15 +02:00
|
|
|
if (OSINIT_HW_READY())
|
2016-06-19 15:56:24 +02:00
|
|
|
{
|
2017-08-04 16:02:52 +02:00
|
|
|
#if defined(CONFIG_SYSLOG_TIMESTAMP_REALTIME)
|
|
|
|
/* Use CLOCK_REALTIME if so configured */
|
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
2017-08-04 16:02:52 +02:00
|
|
|
|
|
|
|
#elif defined(CONFIG_CLOCK_MONOTONIC)
|
2017-04-26 18:38:15 +02:00
|
|
|
/* Prefer monotonic when enabled, as it can be synchronized to
|
|
|
|
* RTC with clock_resynchronize.
|
|
|
|
*/
|
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
2017-08-04 16:02:52 +02:00
|
|
|
|
2017-04-26 18:38:15 +02:00
|
|
|
#else
|
2017-08-04 16:02:52 +02:00
|
|
|
/* Otherwise, fall back to the system timer */
|
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
clock_systime_timespec(&ts);
|
2017-04-26 18:38:15 +02:00
|
|
|
#endif
|
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
/* Prepend the message with the current time, if available */
|
2016-06-19 15:56:24 +02:00
|
|
|
|
2020-12-29 15:23:27 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_TIMESTAMP_FORMATTED)
|
|
|
|
#if defined(CONFIG_SYSLOG_TIMESTAMP_LOCALTIME)
|
2021-06-21 05:32:32 +02:00
|
|
|
localtime_r(&ts.tv_sec, &tm);
|
2020-12-29 15:23:27 +01:00
|
|
|
#else
|
2021-06-21 05:32:32 +02:00
|
|
|
gmtime_r(&ts.tv_sec, &tm);
|
|
|
|
#endif
|
2020-12-29 15:23:27 +01:00
|
|
|
#endif
|
2021-06-21 05:32:32 +02:00
|
|
|
}
|
2020-12-29 15:23:27 +01:00
|
|
|
|
2021-06-21 05:32:32 +02:00
|
|
|
#if defined(CONFIG_SYSLOG_TIMESTAMP_FORMATTED)
|
2020-12-29 15:23:27 +01:00
|
|
|
ret = strftime(date_buf, CONFIG_SYSLOG_TIMESTAMP_BUFFER,
|
|
|
|
CONFIG_SYSLOG_TIMESTAMP_FORMAT, &tm);
|
|
|
|
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
|
|
|
ret = lib_sprintf(&stream.public, "[%s] ", date_buf);
|
|
|
|
}
|
|
|
|
#else
|
2020-11-10 15:18:01 +01:00
|
|
|
ret = lib_sprintf(&stream.public, "[%5jd.%06ld] ",
|
|
|
|
(uintmax_t)ts.tv_sec, ts.tv_nsec / 1000);
|
2020-12-29 15:23:27 +01:00
|
|
|
#endif
|
2016-06-19 15:56:24 +02:00
|
|
|
#endif
|
|
|
|
|
2021-05-24 05:59:22 +02:00
|
|
|
#if defined(CONFIG_SMP)
|
|
|
|
ret += lib_sprintf(&stream.public, "[CPU%d] ", up_cpu_index());
|
|
|
|
#endif
|
|
|
|
|
2021-01-16 12:24:53 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_PROCESSID)
|
2021-03-10 21:21:28 +01:00
|
|
|
/* Prepend the Process ID */
|
2021-01-16 12:24:53 +01:00
|
|
|
|
|
|
|
ret += lib_sprintf(&stream.public, "[%2d] ", (int)getpid());
|
|
|
|
#endif
|
|
|
|
|
2021-01-16 15:20:49 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_COLOR_OUTPUT)
|
|
|
|
/* Set the terminal style according to message priority. */
|
|
|
|
|
|
|
|
switch (priority)
|
|
|
|
{
|
|
|
|
case LOG_EMERG: /* Red, Bold, Blinking */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[31;1;5m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_ALERT: /* Red, Bold */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[31;1m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_CRIT: /* Red, Bold */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[31;1m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_ERR: /* Red */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[31m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_WARNING: /* Yellow */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[33m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_NOTICE: /* Bold */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[1m");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_INFO: /* Normal */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOG_DEBUG: /* Dim */
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[2m");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-01-18 10:38:41 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_PRIORITY)
|
2021-03-10 21:21:28 +01:00
|
|
|
/* Prepend the message priority. */
|
2021-01-18 10:38:41 +01:00
|
|
|
|
|
|
|
ret += lib_sprintf(&stream.public, "[%6s] ", g_priority_str[priority]);
|
|
|
|
#endif
|
|
|
|
|
2018-08-26 14:49:35 +02:00
|
|
|
#if defined(CONFIG_SYSLOG_PREFIX)
|
2021-03-10 21:21:28 +01:00
|
|
|
/* Prepend the prefix, if available */
|
2018-08-26 14:49:35 +02:00
|
|
|
|
2018-11-09 15:35:20 +01:00
|
|
|
ret += lib_sprintf(&stream.public, "%s", CONFIG_SYSLOG_PREFIX_STRING);
|
2018-08-26 14:49:35 +02:00
|
|
|
#endif
|
|
|
|
|
2021-03-10 21:21:28 +01:00
|
|
|
#if CONFIG_TASK_NAME_SIZE > 0 && defined(CONFIG_SYSLOG_PROCESS_NAME)
|
|
|
|
/* Prepend the process name */
|
|
|
|
|
|
|
|
tcb = nxsched_get_tcb(getpid());
|
2021-07-08 18:57:57 +02:00
|
|
|
ret += lib_sprintf(&stream.public, "%s: ",
|
|
|
|
(tcb != NULL) ? tcb->name : "(null)");
|
2021-03-10 21:21:28 +01:00
|
|
|
#endif
|
|
|
|
|
2017-05-11 01:36:08 +02:00
|
|
|
/* Generate the output */
|
|
|
|
|
2018-08-26 14:49:35 +02:00
|
|
|
ret += lib_vsprintf(&stream.public, fmt, *ap);
|
2017-05-11 01:36:08 +02:00
|
|
|
|
2021-01-16 15:20:49 +01:00
|
|
|
#if defined(CONFIG_SYSLOG_COLOR_OUTPUT)
|
|
|
|
/* Reset the terminal style back to normal. */
|
|
|
|
|
|
|
|
ret += lib_sprintf(&stream.public, "\e[0m");
|
|
|
|
#endif
|
|
|
|
|
2017-05-11 01:36:08 +02:00
|
|
|
#ifdef CONFIG_SYSLOG_BUFFER
|
2017-05-12 14:58:33 +02:00
|
|
|
/* Flush and destroy the syslog stream buffer */
|
2017-05-11 01:36:08 +02:00
|
|
|
|
2021-06-02 04:25:18 +02:00
|
|
|
syslogstream_destroy(&stream);
|
2017-05-11 01:36:08 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
2016-06-19 15:56:24 +02:00
|
|
|
}
|