/**************************************************************************** * drivers/syslog/syslog_channel.c * * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * 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. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include #ifdef CONFIG_RAMLOG_SYSLOG # include #endif #ifdef CONFIG_SYSLOG_RPMSG # include #endif #ifdef CONFIG_ARCH_LOWPUTC # include #endif #include "syslog.h" /**************************************************************************** * Private Function Prototypes ****************************************************************************/ /**************************************************************************** * Private Function Prototypes ****************************************************************************/ #if defined(CONFIG_SYSLOG_DEFAULT) static int syslog_default_putc(FAR struct syslog_channel_s *channel, int ch); static ssize_t syslog_default_write(FAR struct syslog_channel_s *channel, FAR const char *buffer, size_t buflen); #endif /**************************************************************************** * Private Data ****************************************************************************/ #if defined(CONFIG_RAMLOG_SYSLOG) static const struct syslog_channel_ops_s g_ramlog_channel_ops = { ramlog_putc, ramlog_putc, NULL, ramlog_write }; static struct syslog_channel_s g_ramlog_channel = { &g_ramlog_channel_ops }; #endif #if defined(CONFIG_SYSLOG_RPMSG) static const struct syslog_channel_ops_s g_rpmsg_channel_ops = { syslog_rpmsg_putc, syslog_rpmsg_putc, syslog_rpmsg_flush, syslog_rpmsg_write }; static struct syslog_channel_s g_rpmsg_channel = { &g_rpmsg_channel_ops }; #endif #if defined(CONFIG_SYSLOG_DEFAULT) static sem_t g_syslog_default_sem = SEM_INITIALIZER(1); static const struct syslog_channel_ops_s g_default_channel_ops = { syslog_default_putc, syslog_default_putc, NULL, syslog_default_write }; static struct syslog_channel_s g_default_channel = { &g_default_channel_ops }; #endif /* This is the current syslog channel in use */ FAR struct syslog_channel_s *g_syslog_channel[CONFIG_SYSLOG_MAX_CHANNELS] = { #if defined(CONFIG_SYSLOG_DEFAULT) &g_default_channel, #endif #if defined(CONFIG_RAMLOG_SYSLOG) &g_ramlog_channel, #endif #if defined(CONFIG_SYSLOG_RPMSG) &g_rpmsg_channel #endif }; /**************************************************************************** * Private Functions ****************************************************************************/ /**************************************************************************** * Name: syslog_default_putc * * Description: * If the arch supports a low-level putc function, output will be * redirected there. Else acts as a dummy, no-nothing channel. * ****************************************************************************/ #if defined(CONFIG_SYSLOG_DEFAULT) static int syslog_default_putc(FAR struct syslog_channel_s *channel, int ch) { UNUSED(channel); #if defined(CONFIG_ARCH_LOWPUTC) return up_putc(ch); #endif return ch; } static ssize_t syslog_default_write(FAR struct syslog_channel_s *channel, FAR const char *buffer, size_t buflen) { #if defined(CONFIG_ARCH_LOWPUTC) size_t nwritten; nxsem_wait(&g_syslog_default_sem); for (nwritten = 0; nwritten < buflen; nwritten++) { up_putc(buffer[nwritten]); } nxsem_post(&g_syslog_default_sem); #endif return OK; } #endif /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: syslog_channel * * Description: * Configure the SYSLOGging function to use the provided channel to * generate SYSLOG output. * * Input Parameters: * channel - Provides the interface to the channel to be used. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on any failure. * ****************************************************************************/ int syslog_channel(FAR struct syslog_channel_s *channel) { #if (CONFIG_SYSLOG_MAX_CHANNELS != 1) int i; #endif DEBUGASSERT(channel != NULL); if (channel != NULL) { DEBUGASSERT(channel->sc_ops->sc_putc != NULL && channel->sc_ops->sc_force != NULL); #if (CONFIG_SYSLOG_MAX_CHANNELS == 1) g_syslog_channel[0] = channel; return OK; #else for (i = 0; i < CONFIG_SYSLOG_MAX_CHANNELS; i++) { if (g_syslog_channel[i] == NULL) { g_syslog_channel[i] = channel; return OK; } else if (g_syslog_channel[i] == channel) { return OK; } } #endif } return -EINVAL; } /**************************************************************************** * Name: syslog_channel_remove * * Description: * Removes an already configured SYSLOG channel from the list of used * channels. * * Input Parameters: * channel - Provides the interface to the channel to be removed. * * Returned Value: * Zero (OK) is returned on success. A negated errno value is returned * on any failure. * ****************************************************************************/ int syslog_channel_remove(FAR struct syslog_channel_s *channel) { int i; DEBUGASSERT(channel != NULL); if (channel != NULL) { for (i = 0; i < CONFIG_SYSLOG_MAX_CHANNELS; i++) { if (g_syslog_channel[i] == channel) { /* Get the rest of the channels one position back * to ensure that there are no holes in the list. */ while (i < (CONFIG_SYSLOG_MAX_CHANNELS - 1) && g_syslog_channel[i + 1] != NULL) { g_syslog_channel[i] = g_syslog_channel[i + 1]; i++; } g_syslog_channel[i] = NULL; /* The channel is now removed from the list and its driver * can be safely uninitialized. */ if (channel->sc_ops->sc_close) { channel->sc_ops->sc_close(channel); } return OK; } } } return -EINVAL; }