1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
12 DECLARE_GLOBAL_DATA_PTR;
14 #define BUFFER_SIZE 480
16 static void append(char **buf, char *buf_end, const char *fmt, ...)
19 size_t size = buf_end - *buf;
22 vsnprintf(*buf, size, fmt, args);
27 static int log_syslog_emit(struct log_device *ldev, struct log_rec *rec)
30 int fmt = gd->log_fmt;
31 char msg[BUFFER_SIZE];
32 char *msg_end = msg + BUFFER_SIZE;
37 struct in_addr bcast_ip;
38 unsigned int log_level;
41 /* Setup packet buffers */
43 /* Disable hardware and put it into the reset state */
45 /* Set current device according to environment variables */
47 /* Get hardware ready for send and receive operations */
54 memset(msg, 0, BUFFER_SIZE);
56 /* Set ethernet header */
57 eth_hdr_size = net_set_ether((uchar *)ptr, net_bcast_ethaddr, PROT_IP);
60 ptr += IP_UDP_HDR_SIZE;
64 * The syslog log levels defined in RFC 5424 match the U-Boot ones up to
67 log_level = rec->level;
70 /* Leave high bits as 0 to write a 'kernel message' */
72 /* Write log message to buffer */
73 append(&ptr, msg_end, "<%u>", log_level);
74 log_hostname = env_get("log_hostname");
76 append(&ptr, msg_end, "%s ", log_hostname);
77 append(&ptr, msg_end, "uboot: ");
78 if (fmt & BIT(LOGF_LEVEL))
79 append(&ptr, msg_end, "%s.",
80 log_get_level_name(rec->level));
81 if (fmt & BIT(LOGF_CAT))
82 append(&ptr, msg_end, "%s,",
83 log_get_cat_name(rec->cat));
84 if (fmt & BIT(LOGF_FILE))
85 append(&ptr, msg_end, "%s:", rec->file);
86 if (fmt & BIT(LOGF_LINE))
87 append(&ptr, msg_end, "%d-", rec->line);
88 if (fmt & BIT(LOGF_FUNC))
89 append(&ptr, msg_end, "%s()", rec->func);
90 if (fmt & BIT(LOGF_MSG))
91 append(&ptr, msg_end, "%s%s",
92 fmt != BIT(LOGF_MSG) ? " " : "", rec->msg);
93 /* Consider trailing 0x00 */
96 debug("log message: '%s'\n", log_msg);
98 /* Broadcast message */
99 bcast_ip.s_addr = 0xFFFFFFFFL;
100 net_set_udp_header((uchar *)iphdr, bcast_ip, 514, 514, ptr - log_msg);
101 net_send_packet((uchar *)msg, ptr - msg);
107 LOG_DRIVER(syslog) = {
109 .emit = log_syslog_emit,