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 static int processing_msg;
39 unsigned int log_level;
42 /* Fend off messages from the network stack while writing a message */
48 /* Setup packet buffers */
50 /* Disable hardware and put it into the reset state */
52 /* Set current device according to environment variables */
54 /* Get hardware ready for send and receive operations */
61 memset(msg, 0, BUFFER_SIZE);
63 /* Set ethernet header */
64 eth_hdr_size = net_set_ether((uchar *)ptr, net_bcast_ethaddr, PROT_IP);
67 ptr += IP_UDP_HDR_SIZE;
71 * The syslog log levels defined in RFC 5424 match the U-Boot ones up to
74 log_level = rec->level;
77 /* Leave high bits as 0 to write a 'kernel message' */
79 /* Write log message to buffer */
80 append(&ptr, msg_end, "<%u>", log_level);
81 log_hostname = env_get("log_hostname");
83 append(&ptr, msg_end, "%s ", log_hostname);
84 append(&ptr, msg_end, "uboot: ");
85 if (fmt & BIT(LOGF_LEVEL))
86 append(&ptr, msg_end, "%s.",
87 log_get_level_name(rec->level));
88 if (fmt & BIT(LOGF_CAT))
89 append(&ptr, msg_end, "%s,",
90 log_get_cat_name(rec->cat));
91 if (fmt & BIT(LOGF_FILE))
92 append(&ptr, msg_end, "%s:", rec->file);
93 if (fmt & BIT(LOGF_LINE))
94 append(&ptr, msg_end, "%d-", rec->line);
95 if (fmt & BIT(LOGF_FUNC))
96 append(&ptr, msg_end, "%s()", rec->func);
97 if (fmt & BIT(LOGF_MSG))
98 append(&ptr, msg_end, "%s%s",
99 fmt != BIT(LOGF_MSG) ? " " : "", rec->msg);
100 /* Consider trailing 0x00 */
103 debug("log message: '%s'\n", log_msg);
105 /* Broadcast message */
106 bcast_ip.s_addr = 0xFFFFFFFFL;
107 net_set_udp_header((uchar *)iphdr, bcast_ip, 514, 514, ptr - log_msg);
108 net_send_packet((uchar *)msg, ptr - msg);
115 LOG_DRIVER(syslog) = {
117 .emit = log_syslog_emit,