281 lines
6.2 KiB
C
281 lines
6.2 KiB
C
/*
|
|
* Copyright (c) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/logging/log.h>
|
|
LOG_MODULE_REGISTER(log_backend_net, CONFIG_LOG_DEFAULT_LEVEL);
|
|
|
|
#include <zephyr/logging/log_backend.h>
|
|
#include <zephyr/logging/log_core.h>
|
|
#include <zephyr/logging/log_output.h>
|
|
#include <zephyr/logging/log_backend_net.h>
|
|
#include <zephyr/net/socket.h>
|
|
|
|
/* Set this to 1 if you want to see what is being sent to server */
|
|
#define DEBUG_PRINTING 0
|
|
|
|
#if DEBUG_PRINTING
|
|
#define DBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
|
|
#else
|
|
#define DBG(fmt, ...)
|
|
#endif
|
|
|
|
#if defined(CONFIG_NET_IPV6) || CONFIG_NET_HOSTNAME_ENABLE
|
|
#define MAX_HOSTNAME_LEN NET_IPV6_ADDR_LEN
|
|
#else
|
|
#define MAX_HOSTNAME_LEN NET_IPV4_ADDR_LEN
|
|
#endif
|
|
|
|
static char dev_hostname[MAX_HOSTNAME_LEN + 1];
|
|
|
|
static uint8_t output_buf[CONFIG_LOG_BACKEND_NET_MAX_BUF_SIZE];
|
|
static bool net_init_done;
|
|
struct sockaddr server_addr;
|
|
static bool panic_mode;
|
|
static uint32_t log_format_current = CONFIG_LOG_BACKEND_NET_OUTPUT_DEFAULT;
|
|
|
|
static struct log_backend_net_ctx {
|
|
int sock;
|
|
} ctx = {
|
|
.sock = -1,
|
|
};
|
|
|
|
const struct log_backend *log_backend_net_get(void);
|
|
|
|
static int line_out(uint8_t *data, size_t length, void *output_ctx)
|
|
{
|
|
struct log_backend_net_ctx *ctx = (struct log_backend_net_ctx *)output_ctx;
|
|
int ret = -ENOMEM;
|
|
|
|
if (ctx == NULL) {
|
|
return length;
|
|
}
|
|
|
|
ret = zsock_send(ctx->sock, data, length, ZSOCK_MSG_DONTWAIT);
|
|
if (ret < 0) {
|
|
goto fail;
|
|
}
|
|
|
|
DBG(data);
|
|
fail:
|
|
return length;
|
|
}
|
|
|
|
LOG_OUTPUT_DEFINE(log_output_net, line_out, output_buf, sizeof(output_buf));
|
|
|
|
static int do_net_init(struct log_backend_net_ctx *ctx)
|
|
{
|
|
struct sockaddr *local_addr = NULL;
|
|
struct sockaddr_in6 local_addr6 = {0};
|
|
struct sockaddr_in local_addr4 = {0};
|
|
socklen_t server_addr_len;
|
|
int ret;
|
|
|
|
if (IS_ENABLED(CONFIG_NET_IPV4) && server_addr.sa_family == AF_INET) {
|
|
local_addr = (struct sockaddr *)&local_addr4;
|
|
server_addr_len = sizeof(struct sockaddr_in);
|
|
local_addr4.sin_port = 0U;
|
|
}
|
|
|
|
if (IS_ENABLED(CONFIG_NET_IPV6) && server_addr.sa_family == AF_INET6) {
|
|
local_addr = (struct sockaddr *)&local_addr6;
|
|
server_addr_len = sizeof(struct sockaddr_in6);
|
|
local_addr6.sin6_port = 0U;
|
|
}
|
|
|
|
if (local_addr == NULL) {
|
|
DBG("Server address unknown\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
local_addr->sa_family = server_addr.sa_family;
|
|
|
|
ret = zsock_socket(server_addr.sa_family, SOCK_DGRAM, IPPROTO_UDP);
|
|
if (ret < 0) {
|
|
ret = -errno;
|
|
DBG("Cannot get socket (%d)\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
ctx->sock = ret;
|
|
|
|
if (IS_ENABLED(CONFIG_NET_HOSTNAME_ENABLE)) {
|
|
(void)strncpy(dev_hostname, net_hostname_get(), MAX_HOSTNAME_LEN);
|
|
|
|
} else if (IS_ENABLED(CONFIG_NET_IPV6) &&
|
|
server_addr.sa_family == AF_INET6) {
|
|
const struct in6_addr *src;
|
|
|
|
src = net_if_ipv6_select_src_addr(
|
|
NULL, &net_sin6(&server_addr)->sin6_addr);
|
|
if (src) {
|
|
net_addr_ntop(AF_INET6, src, dev_hostname,
|
|
MAX_HOSTNAME_LEN);
|
|
|
|
net_ipaddr_copy(&local_addr6.sin6_addr, src);
|
|
} else {
|
|
goto unknown;
|
|
}
|
|
|
|
} else if (IS_ENABLED(CONFIG_NET_IPV4) &&
|
|
server_addr.sa_family == AF_INET) {
|
|
const struct in_addr *src;
|
|
|
|
src = net_if_ipv4_select_src_addr(
|
|
NULL, &net_sin(&server_addr)->sin_addr);
|
|
|
|
if (src) {
|
|
net_addr_ntop(AF_INET, src, dev_hostname,
|
|
MAX_HOSTNAME_LEN);
|
|
|
|
net_ipaddr_copy(&local_addr4.sin_addr, src);
|
|
} else {
|
|
goto unknown;
|
|
}
|
|
|
|
} else {
|
|
unknown:
|
|
DBG("Cannot setup local socket\n");
|
|
ret = -EINVAL;
|
|
goto err;
|
|
}
|
|
|
|
ret = zsock_bind(ctx->sock, local_addr, server_addr_len);
|
|
if (ret < 0) {
|
|
ret = -errno;
|
|
DBG("Cannot bind socket (%d)\n", ret);
|
|
goto err;
|
|
}
|
|
|
|
ret = zsock_connect(ctx->sock, &server_addr, server_addr_len);
|
|
if (ret < 0) {
|
|
ret = -errno;
|
|
DBG("Cannot connect socket (%d)\n", ret);
|
|
goto err;
|
|
}
|
|
|
|
log_output_ctx_set(&log_output_net, ctx);
|
|
log_output_hostname_set(&log_output_net, dev_hostname);
|
|
|
|
return 0;
|
|
|
|
err:
|
|
(void)zsock_close(ctx->sock);
|
|
ctx->sock = -1;
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void process(const struct log_backend *const backend,
|
|
union log_msg_generic *msg)
|
|
{
|
|
uint32_t flags = LOG_OUTPUT_FLAG_FORMAT_SYSLOG | LOG_OUTPUT_FLAG_TIMESTAMP;
|
|
|
|
if (panic_mode) {
|
|
return;
|
|
}
|
|
|
|
if (!net_init_done && do_net_init(&ctx) == 0) {
|
|
net_init_done = true;
|
|
}
|
|
|
|
log_format_func_t log_output_func = log_format_func_t_get(log_format_current);
|
|
|
|
log_output_func(&log_output_net, &msg->log, flags);
|
|
}
|
|
|
|
static int format_set(const struct log_backend *const backend, uint32_t log_type)
|
|
{
|
|
log_format_current = log_type;
|
|
return 0;
|
|
}
|
|
|
|
bool log_backend_net_set_addr(const char *addr)
|
|
{
|
|
bool ret = false;
|
|
|
|
if (net_init_done) {
|
|
/* Release context so it can be recreated with the specified ip address
|
|
* next time process() is called
|
|
*/
|
|
struct log_backend_net_ctx *ctx = log_output_net.control_block->ctx;
|
|
int released;
|
|
|
|
released = zsock_close(ctx->sock);
|
|
if (released < 0) {
|
|
LOG_ERR("Cannot release socket (%d)", ret);
|
|
ret = false;
|
|
} else {
|
|
/* The socket is successfully closed so we flag it
|
|
* to be recreated with the new ip address
|
|
*/
|
|
net_init_done = false;
|
|
ret = true;
|
|
}
|
|
|
|
ctx->sock = -1;
|
|
|
|
if (!ret) {
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
net_sin(&server_addr)->sin_port = htons(514);
|
|
|
|
ret = net_ipaddr_parse(addr, strlen(addr), &server_addr);
|
|
if (!ret) {
|
|
LOG_ERR("Cannot parse syslog server address");
|
|
return ret;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
#if defined(CONFIG_NET_HOSTNAME_ENABLE)
|
|
void log_backend_net_hostname_set(char *hostname, size_t len)
|
|
{
|
|
(void)strncpy(dev_hostname, hostname, MIN(len, MAX_HOSTNAME_LEN));
|
|
log_output_hostname_set(&log_output_net, dev_hostname);
|
|
}
|
|
#endif
|
|
|
|
static void init_net(struct log_backend const *const backend)
|
|
{
|
|
ARG_UNUSED(backend);
|
|
|
|
if (strlen(CONFIG_LOG_BACKEND_NET_SERVER) != 0) {
|
|
bool ret = log_backend_net_set_addr(CONFIG_LOG_BACKEND_NET_SERVER);
|
|
|
|
if (!ret) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
log_backend_deactivate(log_backend_net_get());
|
|
}
|
|
|
|
static void panic(struct log_backend const *const backend)
|
|
{
|
|
panic_mode = true;
|
|
}
|
|
|
|
const struct log_backend_api log_backend_net_api = {
|
|
.panic = panic,
|
|
.init = init_net,
|
|
.process = process,
|
|
.format_set = format_set,
|
|
};
|
|
|
|
/* Note that the backend can be activated only after we have networking
|
|
* subsystem ready so we must not start it immediately.
|
|
*/
|
|
LOG_BACKEND_DEFINE(log_backend_net, log_backend_net_api,
|
|
IS_ENABLED(CONFIG_LOG_BACKEND_NET_AUTOSTART));
|
|
|
|
const struct log_backend *log_backend_net_get(void)
|
|
{
|
|
return &log_backend_net;
|
|
}
|